From 2b8c97913e5373cade04bf45cdd75ad1d3c9f500 Mon Sep 17 00:00:00 2001 From: Mattias Jonsson Date: Tue, 15 Nov 2022 10:51:56 +0100 Subject: [PATCH] *: merge master to feature/reorganize-partition (#38613) ref pingcap/tidb#38535 --- .bazelrc | 2 +- .bazelversion | 2 +- .dockerignore | 10 + .github/licenserc.yml | 1 + .../integration-test-br-compatibility.yml | 3 + .../workflows/integration-test-compile-br.yml | 3 + .../workflows/integration-test-dumpling.yml | 3 + .github/workflows/misc.yml | 7 + DEPS.bzl | 133 +- Dockerfile | 46 +- Makefile | 32 +- Makefile.common | 2 +- WORKSPACE | 2 +- autoid_service/BUILD.bazel | 23 + autoid_service/autoid.go | 480 + bindinfo/bind_test.go | 14 +- bindinfo/handle.go | 24 +- bindinfo/handle_test.go | 1 + bindinfo/main_test.go | 2 + br/pkg/backup/client.go | 26 +- br/pkg/backup/main_test.go | 1 + br/pkg/backup/schema.go | 2 +- br/pkg/checksum/main_test.go | 1 + br/pkg/conn/main_test.go | 1 + br/pkg/glue/BUILD.bazel | 8 +- br/pkg/glue/console_glue.go | 116 +- br/pkg/glue/console_glue_test.go | 4 +- br/pkg/glue/glue.go | 5 +- br/pkg/glue/progressing.go | 142 + br/pkg/gluetidb/glue.go | 13 +- br/pkg/lightning/checkpoints/checkpoints.go | 20 +- br/pkg/lightning/checkpoints/main_test.go | 1 + br/pkg/lightning/common/main_test.go | 1 + br/pkg/lightning/common/util.go | 51 +- br/pkg/lightning/common/util_test.go | 69 +- br/pkg/lightning/config/BUILD.bazel | 1 - br/pkg/lightning/config/config.go | 14 +- br/pkg/lightning/config/config_test.go | 5 +- br/pkg/lightning/mydump/loader.go | 131 +- br/pkg/lightning/mydump/loader_test.go | 63 + br/pkg/lightning/mydump/main_test.go | 1 + br/pkg/lightning/mydump/parquet_parser.go | 16 +- .../lightning/mydump/parquet_parser_test.go | 2 +- br/pkg/lightning/mydump/parser.go | 27 + br/pkg/lightning/mydump/region.go | 16 +- br/pkg/lightning/mydump/region_test.go | 57 + br/pkg/lightning/mydump/router.go | 55 +- br/pkg/lightning/mydump/router_test.go | 42 +- br/pkg/lightning/restore/BUILD.bazel | 3 + .../lightning/restore/chunk_restore_test.go | 190 + br/pkg/lightning/restore/get_pre_info.go | 27 +- br/pkg/lightning/restore/get_pre_info_test.go | 6 +- br/pkg/lightning/restore/meta_manager.go | 9 +- br/pkg/lightning/restore/precheck_impl.go | 61 +- br/pkg/lightning/restore/restore.go | 166 +- br/pkg/lightning/restore/restore_test.go | 162 + .../lightning/restore/table_restore_test.go | 297 +- br/pkg/metautil/main_test.go | 1 + br/pkg/mock/mock_cluster_test.go | 4 +- br/pkg/pdutil/main_test.go | 1 + br/pkg/restore/BUILD.bazel | 8 +- br/pkg/restore/client.go | 280 +- br/pkg/restore/client_test.go | 43 + br/pkg/restore/data.go | 151 +- br/pkg/restore/data_test.go | 2 +- br/pkg/restore/db.go | 26 +- br/pkg/restore/log_client.go | 342 + br/pkg/restore/log_client_test.go | 356 +- br/pkg/restore/main_test.go | 1 + br/pkg/restore/prealloc_table_id/BUILD.bazel | 22 + br/pkg/restore/prealloc_table_id/alloc.go | 88 + .../restore/prealloc_table_id/alloc_test.go | 91 + br/pkg/restore/stream_metas.go | 314 +- br/pkg/restore/stream_metas_test.go | 2077 +- br/pkg/rtree/main_test.go | 1 + br/pkg/storage/BUILD.bazel | 2 + br/pkg/storage/compress.go | 11 +- br/pkg/storage/writer.go | 37 +- br/pkg/storage/writer_test.go | 9 +- br/pkg/streamhelper/client.go | 13 +- br/pkg/streamhelper/integration_test.go | 44 +- br/pkg/summary/main_test.go | 1 + br/pkg/task/BUILD.bazel | 1 + br/pkg/task/backup.go | 2 +- br/pkg/task/backup_ebs.go | 4 +- br/pkg/task/backup_raw.go | 2 +- br/pkg/task/restore.go | 2 + br/pkg/task/restore_data.go | 12 +- br/pkg/task/stream.go | 232 +- br/pkg/task/stream_test.go | 49 + br/pkg/trace/main_test.go | 1 + br/pkg/utils/db.go | 2 +- br/pkg/utils/iter/BUILD.bazel | 30 + br/pkg/utils/iter/combinator_test.go | 100 + br/pkg/utils/iter/combinator_types.go | 129 + br/pkg/utils/iter/combinators.go | 94 + br/pkg/utils/iter/iter.go | 111 + br/pkg/utils/iter/source.go | 28 + br/pkg/utils/iter/source_types.go | 52 + br/pkg/utils/main_test.go | 1 + br/tests/_utils/make_tiflash_config | 4 +- br/tests/_utils/run_services | 1 - .../data/xfn.etn-schema.sql | 2 +- .../data/zwk.zwb-schema.sql | 2 +- br/tests/lightning_extend_routes/config.toml | 25 + .../data/routes_a0-schema-create.sql | 1 + .../data/routes_a0.t0-schema.sql | 1 + .../data/routes_a0.t0.1.sql | 1 + .../data/routes_a0.t0.2.sql | 1 + .../data/routes_a0.t1-schema.sql | 1 + .../data/routes_a0.t1.1.sql | 1 + .../data/routes_a1-schema-create.sql | 1 + .../data/routes_a1.s1-schema.sql | 1 + .../data/routes_a1.s1.sql | 1 + .../data/routes_a1.t2-schema.sql | 1 + .../data/routes_a1.t2.sql | 1 + br/tests/lightning_extend_routes/run.sh | 41 + br/tests/lightning_fail_fast/run.sh | 2 +- br/tests/lightning_ignore_columns/config.toml | 27 + .../data/routes_a0-schema-create.sql | 1 + .../data/routes_a0.t0-schema.sql | 1 + .../data/routes_a0.t0.1.sql | 1 + .../data/routes_a0.t0.2.sql | 1 + .../data/routes_a0.t1-schema.sql | 1 + .../data/routes_a0.t1.1.sql | 1 + .../data/routes_a1-schema-create.sql | 1 + .../data/routes_a1.s1-schema.sql | 1 + .../data/routes_a1.s1.sql | 1 + .../data/routes_a1.t2-schema.sql | 1 + .../data/routes_a1.t2.sql | 1 + br/tests/lightning_ignore_columns/run.sh | 45 + .../data/shard_rowid.shr-schema.sql | 4 +- .../data/rowid.non_pk-schema.sql | 2 +- .../data/rowid.non_pk_auto_inc-schema.sql | 2 +- build/BUILD.bazel | 2 +- build/linter/revive/analyzer.go | 31 - build/nogo_config.json | 43 +- cmd/ddltest/main_test.go | 1 + cmd/explaintest/BUILD.bazel | 1 - cmd/explaintest/main.go | 1 + .../r/access_path_selection.result | 1 + .../r/agg_predicate_pushdown.result | 1 + cmd/explaintest/r/black_list.result | 1 + cmd/explaintest/r/clustered_index.result | 1 + .../r/collation_agg_func_disabled.result | 1 + .../r/collation_agg_func_enabled.result | 1 + ...lation_check_use_collation_disabled.result | 1 + ...llation_check_use_collation_enabled.result | 1 + .../r/collation_misc_disabled.result | 1 + .../r/collation_misc_enabled.result | 1 + .../r/collation_pointget_disabled.result | 1 + .../r/collation_pointget_enabled.result | 1 + cmd/explaintest/r/common_collation.result | 1 + cmd/explaintest/r/cte.result | 27 +- .../r/explain-non-select-stmt.result | 1 + cmd/explaintest/r/explain.result | 1 + cmd/explaintest/r/explain_complex.result | 33 +- .../r/explain_complex_stats.result | 17 +- cmd/explaintest/r/explain_cte.result | 17 +- cmd/explaintest/r/explain_easy.result | 145 +- cmd/explaintest/r/explain_easy_stats.result | 11 +- .../explain_generate_column_substitute.result | 1 + cmd/explaintest/r/explain_indexmerge.result | 1 + cmd/explaintest/r/explain_join_stats.result | 11 +- cmd/explaintest/r/explain_shard_index.result | 1 + cmd/explaintest/r/explain_stats.result | 1 + cmd/explaintest/r/explain_union_scan.result | 11 +- cmd/explaintest/r/generated_columns.result | 1 + cmd/explaintest/r/imdbload.result | 5 +- cmd/explaintest/r/index_join.result | 11 +- cmd/explaintest/r/index_merge.result | 27 +- cmd/explaintest/r/naaj.result | 1 + cmd/explaintest/r/new_character_set.result | 1 + .../r/new_character_set_builtin.result | 1 + .../r/new_character_set_invalid.result | 1 + cmd/explaintest/r/select.result | 1 + cmd/explaintest/r/show.result | 1 + cmd/explaintest/r/subquery.result | 21 +- cmd/explaintest/r/topn_push_down.result | 47 +- cmd/explaintest/r/topn_pushdown.result | 1 + cmd/explaintest/r/tpch.result | 73 +- cmd/explaintest/r/vitess_hash.result | 1 + cmd/explaintest/r/window_function.result | 1 + cmd/explaintest/t/access_path_selection.test | 1 + cmd/explaintest/t/agg_predicate_pushdown.test | 1 + cmd/explaintest/t/black_list.test | 1 + cmd/explaintest/t/clustered_index.test | 1 + cmd/explaintest/t/collation_agg_func.test | 1 + .../t/collation_check_use_collation.test | 1 + cmd/explaintest/t/collation_misc.test | 1 + cmd/explaintest/t/collation_pointget.test | 1 + cmd/explaintest/t/common_collation.test | 1 + cmd/explaintest/t/cte.test | 1 + .../t/explain-non-select-stmt.test | 1 + cmd/explaintest/t/explain.test | 1 + cmd/explaintest/t/explain_complex.test | 1 + cmd/explaintest/t/explain_complex_stats.test | 1 + cmd/explaintest/t/explain_cte.test | 1 + cmd/explaintest/t/explain_easy.test | 1 + cmd/explaintest/t/explain_easy_stats.test | 1 + .../t/explain_generate_column_substitute.test | 1 + cmd/explaintest/t/explain_indexmerge.test | 1 + cmd/explaintest/t/explain_join_stats.test | 1 + cmd/explaintest/t/explain_shard_index.test | 1 + cmd/explaintest/t/explain_stats.test | 1 + cmd/explaintest/t/explain_union_scan.test | 1 + cmd/explaintest/t/generated_columns.test | 1 + cmd/explaintest/t/imdbload.test | 1 + cmd/explaintest/t/index_join.test | 1 + cmd/explaintest/t/index_merge.test | 1 + cmd/explaintest/t/naaj.test | 1 + cmd/explaintest/t/new_character_set.test | 1 + .../t/new_character_set_builtin.test | 1 + .../t/new_character_set_invalid.test | 1 + cmd/explaintest/t/select.test | 1 + cmd/explaintest/t/show.test | 1 + cmd/explaintest/t/subquery.test | 1 + cmd/explaintest/t/topn_push_down.test | 1 + cmd/explaintest/t/topn_pushdown.test | 1 + cmd/explaintest/t/tpch.test | 1 + cmd/explaintest/t/vitess_hash.test | 1 + cmd/explaintest/t/window_function.test | 1 + cmd/importer/db.go | 15 +- config/config.go | 67 +- config/config_test.go | 4 + config/main_test.go | 1 + ddl/BUILD.bazel | 5 +- ddl/attributes_sql_test.go | 6 +- ddl/backfilling.go | 415 +- ddl/backfilling_test.go | 45 + ddl/callback.go | 8 +- ddl/callback_test.go | 22 +- ddl/cancel_test.go | 2 +- ddl/cluster.go | 383 +- ddl/cluster_test.go | 116 +- ddl/column.go | 2 +- ddl/column_type_change_test.go | 2 +- ddl/concurrentddltest/main_test.go | 1 + ddl/concurrentddltest/switch_test.go | 4 + ddl/db_cache_test.go | 9 +- ddl/db_integration_test.go | 4 +- ddl/db_partition_test.go | 114 +- ddl/db_table_test.go | 45 + ddl/db_test.go | 2 +- ddl/ddl.go | 89 +- ddl/ddl_api.go | 285 +- ddl/ddl_tiflash_api.go | 99 +- ddl/ddl_tiflash_test.go | 221 +- ddl/ddl_worker.go | 56 +- ddl/ddl_workerpool_test.go | 3 +- ddl/failtest/main_test.go | 1 + ddl/foreign_key.go | 75 +- ddl/foreign_key_test.go | 161 +- ddl/index.go | 17 +- ddl/index_merge_tmp.go | 2 +- ddl/index_modify_test.go | 25 +- ddl/job_table.go | 2 +- ddl/label/main_test.go | 1 + ddl/main_test.go | 2 + ddl/metadatalocktest/main_test.go | 1 + ddl/multi_schema_change.go | 15 +- ddl/multi_schema_change_test.go | 27 + ddl/partition.go | 70 +- ddl/rollingback.go | 3 +- ddl/schema.go | 85 + ddl/schematracker/checker.go | 34 +- ddl/schematracker/dm_tracker.go | 121 +- ddl/schematracker/dm_tracker_test.go | 92 +- ddl/schematracker/info_store.go | 9 + ddl/serial_test.go | 52 +- ddl/split_region.go | 14 +- ddl/syncer/syncer.go | 25 +- ddl/table.go | 123 +- ddl/tiflash_replica_test.go | 46 +- ddl/util/main_test.go | 1 + distsql/distsql.go | 2 +- distsql/main_test.go | 1 + distsql/request_builder.go | 9 +- distsql/request_builder_test.go | 21 +- docs/design/2022-07-20-session-manager.md | 2 +- .../2022-09-22-global-memory-control.md | 66 + .../2022-09-28-flashback-to-timestamp.md | 120 + domain/BUILD.bazel | 7 + domain/domain.go | 117 +- domain/domain_sysvars.go | 12 + domain/globalconfigsync/globalconfig_test.go | 1 + domain/infosync/info.go | 171 +- domain/infosync/info_test.go | 1 + domain/infosync/tiflash_manager.go | 226 +- domain/main_test.go | 1 + domain/plan_replayer.go | 209 +- domain/plan_replayer_dump.go | 661 + domain/plan_replayer_handle_test.go | 64 + domain/schema_validator.go | 3 + domain/sysvar_cache.go | 2 +- dumpling/export/BUILD.bazel | 1 + dumpling/export/config.go | 41 +- dumpling/export/conn.go | 1 + dumpling/export/consistency.go | 23 +- dumpling/export/consistency_test.go | 33 + dumpling/export/dump.go | 95 +- dumpling/export/dump_test.go | 3 +- dumpling/export/main_test.go | 1 + dumpling/export/metrics.go | 5 + dumpling/export/sql.go | 27 +- dumpling/export/sql_test.go | 2 +- dumpling/export/status.go | 70 + dumpling/export/status_test.go | 25 +- dumpling/export/task.go | 4 +- dumpling/export/util.go | 41 + dumpling/export/util_test.go | 14 + dumpling/export/writer.go | 1 + dumpling/export/writer_util.go | 5 + dumpling/install.sh | 8 + dumpling/tests/_utils/run_services | 1 + dumpling/tests/basic/run.sh | 11 + dumpling/tests/conn_timeout/run.sh | 37 + dumpling/tests/rows_extreme_int/run.sh | 9 +- dumpling/tests/s3/import.go | 4 +- dumpling/tests/s3/run.sh | 57 +- errno/errcode.go | 3 +- errno/errname.go | 3 +- errors.toml | 7 +- executor/BUILD.bazel | 5 + executor/adapter.go | 206 +- executor/admin.go | 10 +- executor/aggfuncs/builder.go | 3 +- executor/aggfuncs/main_test.go | 1 + executor/aggregate.go | 19 +- executor/aggregate_test.go | 4 +- executor/analyze.go | 252 +- executor/analyze_global_stats.go | 87 +- executor/analyze_test.go | 79 + executor/analyze_utils.go | 3 +- executor/analyze_worker.go | 79 + executor/analyzetest/analyze_test.go | 14 +- executor/analyzetest/main_test.go | 1 + executor/batch_checker.go | 5 +- executor/benchmark_test.go | 16 +- executor/bind.go | 7 +- executor/brie.go | 4 +- executor/builder.go | 93 +- executor/charset_test.go | 4 +- executor/checksum.go | 2 +- executor/compiler.go | 2 +- executor/coprocessor.go | 8 +- executor/cte.go | 6 +- executor/ddl.go | 136 +- executor/ddl_test.go | 21 +- executor/delete.go | 41 +- executor/distsql.go | 6 +- executor/errors.go | 21 +- executor/executor.go | 89 +- executor/executor_issue_test.go | 4 +- executor/executor_pkg_test.go | 18 +- executor/executor_test.go | 84 +- executor/explain.go | 25 +- executor/explain_test.go | 1 + executor/explainfor_test.go | 36 +- executor/fktest/BUILD.bazel | 8 + executor/fktest/foreign_key_test.go | 1246 +- executor/fktest/main_test.go | 1 + executor/foreign_key.go | 318 +- executor/grant.go | 53 +- executor/grant_test.go | 13 + executor/index_lookup_hash_join.go | 18 +- executor/index_lookup_join.go | 15 +- executor/index_lookup_join_test.go | 9 +- executor/index_lookup_merge_join.go | 4 +- executor/index_merge_reader.go | 4 +- executor/index_merge_reader_test.go | 10 +- executor/infoschema_cluster_table_test.go | 2 +- executor/infoschema_reader.go | 158 +- executor/infoschema_reader_test.go | 71 +- executor/insert.go | 28 +- executor/insert_common.go | 26 +- executor/insert_test.go | 43 +- executor/join.go | 314 +- executor/join_test.go | 146 +- executor/kvtest/main_test.go | 1 + executor/lock_stats.go | 157 + executor/main_test.go | 2 + executor/mem_reader.go | 6 +- executor/memtest/main_test.go | 1 + executor/merge_join.go | 4 +- executor/merge_join_test.go | 26 +- executor/metrics_reader_test.go | 2 +- executor/oomtest/BUILD.bazel | 2 + executor/oomtest/oom_test.go | 8 + executor/parallel_apply.go | 4 +- executor/partition_table_test.go | 149 +- executor/pipelined_window.go | 4 +- executor/plan_replayer.go | 587 +- executor/prepared_test.go | 20 +- executor/projection.go | 2 +- executor/recover_test.go | 93 +- executor/revoke.go | 45 +- executor/revoke_test.go | 72 +- executor/select_into.go | 2 +- executor/seqtest/BUILD.bazel | 2 +- executor/seqtest/main_test.go | 1 + executor/seqtest/prepared_test.go | 4 +- executor/seqtest/seq_executor_test.go | 15 +- executor/set.go | 10 +- executor/set_test.go | 70 +- executor/show.go | 89 +- executor/show_stats.go | 43 + executor/show_stats_test.go | 33 + executor/showtest/main_test.go | 1 + executor/showtest/show_test.go | 27 +- executor/shuffle.go | 2 +- executor/simple.go | 180 +- executor/simple_test.go | 48 +- executor/simpletest/main_test.go | 1 + executor/simpletest/simple_test.go | 72 + executor/sort.go | 17 +- executor/splittest/BUILD.bazel | 1 + executor/splittest/main_test.go | 1 + executor/table_reader.go | 18 + executor/testdata/executor_suite_out.json | 74 +- executor/testdata/tiflash_v640_dt_tables.json | 241 + executor/tiflashtest/main_test.go | 1 + executor/tiflashtest/tiflash_test.go | 1 + executor/union_scan.go | 2 +- executor/union_scan_test.go | 6 +- executor/update.go | 21 +- executor/window.go | 4 +- executor/write.go | 8 +- executor/write_test.go | 70 +- expression/BUILD.bazel | 4 + expression/aggregation/agg_to_pb.go | 3 +- expression/aggregation/descriptor.go | 3 +- expression/aggregation/main_test.go | 1 + expression/builtin.go | 17 +- expression/builtin_control.go | 5 + expression/builtin_json.go | 61 +- expression/builtin_json_test.go | 53 +- expression/builtin_json_vec.go | 43 +- expression/builtin_math.go | 2 +- expression/builtin_time.go | 3 +- expression/builtin_time_test.go | 3 +- expression/column.go | 6 +- expression/constant.go | 5 +- expression/constant_propagation_test.go | 1 + expression/expression.go | 49 +- expression/extension.go | 207 + expression/helper.go | 3 +- expression/integration_serial_test.go | 3 +- expression/integration_test.go | 63 +- expression/main_test.go | 2 + expression/scalar_function.go | 16 +- expression/testdata/expression_suite_out.json | 8 +- expression/typeinfer_test.go | 2 +- expression/util.go | 53 +- extension/BUILD.bazel | 59 + extension/bootstrap_test.go | 48 + extension/event_listener_test.go | 468 + extension/extensionimpl/BUILD.bazel | 17 + extension/extensionimpl/bootstrap.go | 95 + extension/extensions.go | 54 + extension/function.go | 76 + extension/function_test.go | 406 + extension/main_test.go | 33 + extension/manifest.go | 213 + extension/registry.go | 170 + extension/registry_test.go | 186 + extension/session.go | 147 + extension/util.go | 42 + go.mod | 36 +- go.sum | 77 +- infoschema/BUILD.bazel | 2 + infoschema/builder.go | 24 +- infoschema/cluster.go | 46 +- infoschema/infoschema.go | 2 +- infoschema/infoschema_test.go | 4 +- infoschema/main_test.go | 1 + infoschema/perfschema/main_test.go | 1 + infoschema/perfschema/tables.go | 24 +- infoschema/tables.go | 70 +- infoschema/tables_test.go | 109 +- kv/kv.go | 2 + kv/main_test.go | 1 + meta/autoid/BUILD.bazel | 6 + meta/autoid/autoid.go | 52 + meta/autoid/autoid_service.go | 236 + meta/autoid/errors.go | 6 +- meta/autoid/main_test.go | 1 + meta/main_test.go | 1 + meta/meta.go | 87 +- metrics/grafana/performance_overview.json | 53 +- metrics/grafana/tidb.json | 322 + metrics/main_test.go | 1 + metrics/metrics.go | 8 +- metrics/server.go | 25 + metrics/session.go | 18 +- metrics/telemetry.go | 25 +- owner/main_test.go | 1 + parser/ast/ddl.go | 72 +- parser/ast/ddl_test.go | 13 + parser/ast/dml.go | 109 +- parser/ast/functions.go | 1 + parser/ast/misc.go | 167 +- parser/ast/misc_test.go | 6 +- parser/ast/stats.go | 99 +- parser/hintparser.go | 1309 +- parser/hintparser.y | 48 + parser/lexer.go | 35 + parser/misc.go | 6 + parser/model/ddl.go | 19 +- parser/model/model.go | 3 + parser/mysql/const.go | 4 + parser/parser.go | 21169 ++++++++-------- parser/parser.y | 210 +- parser/parser_test.go | 116 +- parser/types/field_type.go | 5 +- parser/yy_parser.go | 2 + planner/cascades/main_test.go | 2 + planner/cascades/transformation_rules.go | 4 +- planner/core/BUILD.bazel | 6 + planner/core/binary_plan_test.go | 1 + planner/core/cbo_test.go | 20 +- planner/core/collect_column_stats_usage.go | 20 + .../core/collect_column_stats_usage_test.go | 4 +- planner/core/common_plans.go | 62 +- planner/core/encode.go | 14 +- planner/core/enforce_mpp_test.go | 10 + planner/core/exhaust_physical_plans.go | 33 +- planner/core/expression_rewriter.go | 4 +- planner/core/expression_rewriter_test.go | 5 + planner/core/find_best_task.go | 100 +- planner/core/flat_plan.go | 6 +- planner/core/foreign_key.go | 146 +- planner/core/indexmerge_test.go | 2 +- planner/core/integration_partition_test.go | 1 + planner/core/integration_test.go | 345 +- planner/core/logical_plan_builder.go | 103 +- planner/core/logical_plan_test.go | 34 +- planner/core/logical_plan_trace_test.go | 2 +- planner/core/logical_plans.go | 11 +- planner/core/main_test.go | 2 + planner/core/optimizer.go | 188 +- planner/core/optimizer_test.go | 103 + planner/core/partition_pruner_test.go | 5 +- planner/core/physical_plan_test.go | 118 +- planner/core/physical_plan_trace_test.go | 7 +- planner/core/physical_plans.go | 61 +- planner/core/plan.go | 88 +- planner/core/plan_cache.go | 7 +- planner/core/plan_cache_lru.go | 72 +- planner/core/plan_cache_lru_test.go | 187 +- planner/core/plan_cache_test.go | 48 +- planner/core/plan_cache_utils.go | 70 +- planner/core/plan_cost_detail_test.go | 3 +- planner/core/plan_cost_ver1.go | 18 +- planner/core/plan_cost_ver2.go | 274 +- planner/core/plan_cost_ver2_test.go | 48 +- planner/core/plan_replayer_capture_test.go | 83 + planner/core/plan_stats.go | 34 +- planner/core/plan_test.go | 14 +- planner/core/plan_to_pb.go | 36 +- planner/core/planbuilder.go | 59 +- planner/core/point_get_plan.go | 48 +- planner/core/point_get_plan_test.go | 9 +- planner/core/prepare_test.go | 19 +- planner/core/preprocess.go | 111 +- planner/core/preprocess_test.go | 5 +- planner/core/resolve_indices.go | 53 +- planner/core/rule_column_pruning.go | 8 + planner/core/rule_join_reorder_test.go | 6 + planner/core/rule_predicate_push_down.go | 4 +- planner/core/rule_result_reorder_test.go | 4 + planner/core/stats.go | 2 +- planner/core/stats_test.go | 3 +- planner/core/task.go | 69 +- planner/core/testdata/analyze_suite_out.json | 98 +- .../core/testdata/binary_plan_suite_out.json | 62 +- .../core/testdata/enforce_mpp_suite_out.json | 232 +- .../expression_rewriter_suite_out.json | 22 +- .../integration_partition_suite_out.json | 24 +- .../core/testdata/integration_suite_in.json | 114 +- .../core/testdata/integration_suite_out.json | 3258 ++- .../core/testdata/join_reorder_suite_out.json | 1890 +- .../ordered_result_mode_suite_out.json | 33 +- .../core/testdata/partition_pruner_out.json | 88 +- .../testdata/plan_normalized_suite_out.json | 2 +- planner/core/testdata/plan_suite_in.json | 13 +- planner/core/testdata/plan_suite_out.json | 652 +- planner/core/testdata/stats_suite_out.json | 62 +- .../testdata/window_push_down_suite_out.json | 43 +- planner/core/util.go | 3 + planner/core/window_push_down_test.go | 1 + planner/funcdep/extract_fd_test.go | 10 +- planner/funcdep/main_test.go | 2 + planner/implementation/main_test.go | 1 + planner/memo/main_test.go | 2 + planner/optimize.go | 8 +- planner/util/main_test.go | 1 + plugin/conn_ip_example/conn_ip_example.go | 2 +- plugin/conn_ip_example/main_test.go | 1 + plugin/main_test.go | 1 + privilege/privileges/BUILD.bazel | 15 +- privilege/privileges/cache.go | 22 +- privilege/privileges/cache_test.go | 7 +- privilege/privileges/main_test.go | 2 + privilege/privileges/privileges.go | 112 +- privilege/privileges/tidb_auth_token.go | 117 + privilege/privileges/tidb_auth_token_test.go | 410 + server/BUILD.bazel | 9 +- server/conn.go | 99 +- server/conn_stmt.go | 15 +- server/conn_test.go | 221 +- server/driver.go | 3 +- server/driver_tidb.go | 8 +- server/extension.go | 247 + server/http_handler.go | 63 +- server/http_handler_serial_test.go | 13 +- server/http_status.go | 26 + server/main_test.go | 1 + server/mock_conn.go | 8 +- server/rpc_server.go | 15 +- server/server.go | 95 +- server/server_test.go | 16 +- server/statistics_handler.go | 24 +- server/statistics_handler_test.go | 45 + server/tidb_serial_test.go | 6 +- server/tidb_test.go | 237 +- session/BUILD.bazel | 4 + session/advisory_locks.go | 2 +- session/bench_test.go | 20 + session/bootstrap.go | 161 +- session/bootstrap_test.go | 66 +- session/clustered_index_test.go | 3 +- session/main_test.go | 1 + session/nontransactional.go | 210 +- session/nontransactional_test.go | 586 +- session/schema_amender.go | 2 +- session/session.go | 156 +- session/session_test.go | 23 + session/session_test/main_test.go | 1 + session/session_test/session_test.go | 49 +- .../testdata/clustered_index_suite_out.json | 12 +- session/txnmanager.go | 11 +- sessionctx/BUILD.bazel | 1 + sessionctx/binloginfo/binloginfo.go | 8 +- sessionctx/binloginfo/main_test.go | 1 + sessionctx/context.go | 4 + sessionctx/main_test.go | 1 + sessionctx/sessionstates/session_token.go | 2 - sessionctx/stmtctx/main_test.go | 1 + sessionctx/stmtctx/stmtctx.go | 116 +- sessionctx/variable/BUILD.bazel | 6 + sessionctx/variable/main_test.go | 2 + sessionctx/variable/mock_globalaccessor.go | 8 +- .../variable/mock_globalaccessor_test.go | 11 +- sessionctx/variable/session.go | 119 +- sessionctx/variable/session_test.go | 62 + sessionctx/variable/sysvar.go | 397 +- sessionctx/variable/sysvar_test.go | 249 +- sessionctx/variable/tidb_vars.go | 87 +- sessionctx/variable/variable.go | 21 +- sessionctx/variable/variable_test.go | 17 +- sessionctx/variable/varsutil.go | 80 +- sessionctx/variable/varsutil_test.go | 57 +- sessiontxn/failpoint.go | 14 + sessiontxn/isolation/base.go | 6 + sessiontxn/isolation/main_test.go | 1 + sessiontxn/isolation/readcommitted.go | 7 +- sessiontxn/staleread/BUILD.bazel | 3 + sessiontxn/staleread/externalts_test.go | 135 + sessiontxn/staleread/main_test.go | 1 + sessiontxn/staleread/processor.go | 48 +- sessiontxn/staleread/processor_test.go | 91 +- sessiontxn/staleread/util.go | 17 + sessiontxn/txn_context_test.go | 1 + statistics/BUILD.bazel | 2 + statistics/cmsketch.go | 33 +- statistics/column.go | 5 - statistics/feedback.go | 2 +- statistics/handle/ddl.go | 4 +- statistics/handle/dump.go | 66 +- statistics/handle/dump_test.go | 24 +- statistics/handle/handle.go | 455 +- statistics/handle/handle_hist.go | 15 +- statistics/handle/handle_hist_test.go | 22 + statistics/handle/handle_test.go | 130 +- statistics/handle/main_test.go | 2 + statistics/handle/update.go | 31 +- statistics/handle/update_test.go | 222 + statistics/histogram.go | 2 +- statistics/index.go | 28 +- statistics/integration_test.go | 1 + statistics/main_test.go | 1 + statistics/merge_worker.go | 198 + statistics/selectivity.go | 2 +- statistics/selectivity_test.go | 7 +- statistics/table.go | 24 +- .../testdata/integration_suite_out.json | 18 +- statistics/testdata/stats_suite_out.json | 108 +- store/copr/copr_test/BUILD.bazel | 21 + store/copr/copr_test/coprocessor_test.go | 100 + store/copr/copr_test/main_test.go | 61 + store/copr/coprocessor.go | 209 +- store/copr/coprocessor_test.go | 159 +- store/copr/main_test.go | 1 + store/driver/error/error_test.go | 1 + store/driver/main_test.go | 1 + store/driver/txn/error.go | 4 +- store/driver/txn/main_test.go | 1 + store/gcworker/gc_worker_test.go | 5 + store/gcworker/main_test.go | 1 + store/helper/helper.go | 33 - store/helper/main_test.go | 2 + store/main_test.go | 1 + store/mockstore/main_test.go | 1 + store/mockstore/mockcopr/main_test.go | 1 + .../unistore/cophandler/main_test.go | 1 + .../mockstore/unistore/lockstore/main_test.go | 1 + store/mockstore/unistore/main_test.go | 1 + store/mockstore/unistore/tikv/main_test.go | 1 + store/mockstore/unistore/tikv/mock_region.go | 27 + store/mockstore/unistore/tikv/server.go | 104 +- .../unistore/util/lockwaiter/main_test.go | 1 + structure/main_test.go | 1 + table/index.go | 2 + table/main_test.go | 1 + table/tables/cache_test.go | 2 +- table/tables/index.go | 8 +- table/tables/main_test.go | 2 + table/tables/mutation_checker_test.go | 2 +- table/tables/tables.go | 52 +- table/tables/tables_test.go | 6 +- table/temptable/main_test.go | 1 + tablecodec/main_test.go | 1 + tablecodec/rowindexcodec/main_test.go | 1 + telemetry/BUILD.bazel | 1 + telemetry/cte_test/cte_test.go | 1 + telemetry/data_feature_usage.go | 61 +- telemetry/data_feature_usage_test.go | 61 + telemetry/main_test.go | 2 + testkit/BUILD.bazel | 3 + testkit/mocksessionmanager.go | 24 + testkit/mockstore.go | 7 + testkit/testkit.go | 25 +- tests/graceshutdown/main_test.go | 1 + tests/readonlytest/main_test.go | 1 + tests/readonlytest/readonly_test.go | 5 + tests/realtikvtest/addindextest/BUILD.bazel | 2 +- .../addindextest/integration_test.go | 99 + .../realtikvtest/addindextest/memory_test.go | 53 - tests/realtikvtest/brietest/BUILD.bazel | 3 + tests/realtikvtest/brietest/flashback_test.go | 7 +- tests/realtikvtest/brietest/main_test.go | 14 + .../pessimistictest/pessimistic_test.go | 20 +- .../sessiontest/session_fail_test.go | 7 + tests/realtikvtest/statisticstest/BUILD.bazel | 2 + .../realtikvtest/statisticstest/main_test.go | 11 + tests/realtikvtest/testkit.go | 1 + tests/realtikvtest/txntest/txn_test.go | 48 + .../driver/example/kafkaReader/pom.xml | 2 +- tidb-server/BUILD.bazel | 9 +- tidb-server/main.go | 27 +- tidb-server/main_test.go | 2 + tools/check/check-bazel-prepare.sh | 31 + tools/check/ut.go | 9 +- types/core_time.go | 51 +- types/core_time_test.go | 43 +- types/json_binary_functions.go | 97 +- types/json_binary_test.go | 35 +- types/json_constants.go | 6 +- types/json_path_expr.go | 270 +- types/json_path_expr_test.go | 32 +- types/main_test.go | 2 + types/parser_driver/main_test.go | 1 + util/BUILD.bazel | 2 + util/admin/main_test.go | 1 + util/arena/main_test.go | 1 + util/benchdaily/main_test.go | 1 + util/bitmap/main_test.go | 1 + util/checksum/main_test.go | 1 + util/chunk/alloc.go | 154 +- util/chunk/alloc_test.go | 89 +- util/chunk/iterator.go | 50 +- util/chunk/row_container.go | 25 +- util/codec/main_test.go | 1 + util/collate/main_test.go | 1 + util/cteutil/main_test.go | 1 + util/dbterror/main_test.go | 1 + util/dbutil/common.go | 25 +- util/deadlockhistory/main_test.go | 1 + util/disjointset/main_test.go | 1 + util/disk/main_test.go | 1 + util/execdetails/execdetails.go | 25 +- util/execdetails/main_test.go | 1 + util/expensivequery/expensivequerey_test.go | 1 + util/expensivequery/expensivequery.go | 8 +- util/fastrand/main_test.go | 1 + util/format/main_test.go | 1 + util/gctuner/mem.go | 6 +- util/gctuner/memory_limit_tuner.go | 23 +- util/gctuner/tuner.go | 41 +- util/gctuner/tuner_test.go | 28 +- util/gcutil/gcutil.go | 4 +- util/generatedexpr/main_test.go | 1 + util/hack/main_test.go | 1 + util/hint/hint_processor.go | 93 +- util/keydecoder/main_test.go | 1 + util/kvcache/main_test.go | 1 + util/localpool/main_test.go | 1 + util/logutil/hex_test.go | 2 +- util/logutil/main_test.go | 1 + util/main_test.go | 1 + util/mathutil/main_test.go | 1 + util/memory/BUILD.bazel | 3 + util/memory/action.go | 14 +- util/memory/meminfo.go | 21 +- util/memory/memstats.go | 49 + util/memory/tracker.go | 59 + util/memory/tracker_test.go | 3 - util/memoryusagealarm/BUILD.bazel | 2 +- util/memoryusagealarm/memoryusagealarm.go | 80 +- .../memoryusagealarm/memoryusagealarm_test.go | 54 +- util/mock/BUILD.bazel | 1 + util/mock/context.go | 32 +- util/mock/main_test.go | 1 + util/mvmap/main_test.go | 1 + util/paging/main_test.go | 1 + util/parser/main_test.go | 1 + util/plancodec/main_test.go | 1 + util/printer/main_test.go | 1 + util/processinfo.go | 50 +- util/profile/main_test.go | 1 + util/ranger/bench_test.go | 2 +- util/ranger/checker.go | 129 +- util/ranger/detacher.go | 72 +- util/ranger/main_test.go | 2 + util/ranger/ranger_test.go | 140 +- util/ranger/testdata/ranger_suite_out.json | 30 +- util/resourcegrouptag/main_test.go | 1 + util/rowDecoder/main_test.go | 1 + util/rowcodec/main_test.go | 1 + util/security.go | 14 +- util/selection/main_test.go | 1 + util/sem/main_test.go | 1 + util/servermemorylimit/BUILD.bazel | 18 +- util/servermemorylimit/servermemorylimit.go | 106 +- .../servermemorylimit_test.go | 71 + util/set/main_test.go | 1 + util/slice/main_test.go | 1 + util/sqlexec/main_test.go | 1 + util/stmtsummary/main_test.go | 1 + util/stringutil/main_test.go | 1 + util/sys/linux/main_test.go | 1 + util/sys/storage/main_test.go | 1 + util/systimemon/main_test.go | 1 + util/texttree/main_test.go | 1 + util/timeutil/main_test.go | 1 + util/topsql/collector/main_test.go | 1 + util/topsql/main_test.go | 1 + util/topsql/reporter/main_test.go | 1 + util/topsql/stmtstats/main_test.go | 1 + util/tracing/main_test.go | 1 + util/util.go | 2 +- util/util_test.go | 7 +- util/vitess/main_test.go | 1 + util/wait_group_wrapper.go | 2 +- 865 files changed, 45570 insertions(+), 20269 deletions(-) create mode 100644 .dockerignore create mode 100644 autoid_service/BUILD.bazel create mode 100644 autoid_service/autoid.go create mode 100644 br/pkg/glue/progressing.go create mode 100644 br/pkg/restore/log_client.go create mode 100644 br/pkg/restore/prealloc_table_id/BUILD.bazel create mode 100644 br/pkg/restore/prealloc_table_id/alloc.go create mode 100644 br/pkg/restore/prealloc_table_id/alloc_test.go create mode 100644 br/pkg/utils/iter/BUILD.bazel create mode 100644 br/pkg/utils/iter/combinator_test.go create mode 100644 br/pkg/utils/iter/combinator_types.go create mode 100644 br/pkg/utils/iter/combinators.go create mode 100644 br/pkg/utils/iter/iter.go create mode 100644 br/pkg/utils/iter/source.go create mode 100644 br/pkg/utils/iter/source_types.go create mode 100644 br/tests/lightning_extend_routes/config.toml create mode 100644 br/tests/lightning_extend_routes/data/routes_a0-schema-create.sql create mode 100644 br/tests/lightning_extend_routes/data/routes_a0.t0-schema.sql create mode 100644 br/tests/lightning_extend_routes/data/routes_a0.t0.1.sql create mode 100644 br/tests/lightning_extend_routes/data/routes_a0.t0.2.sql create mode 100644 br/tests/lightning_extend_routes/data/routes_a0.t1-schema.sql create mode 100644 br/tests/lightning_extend_routes/data/routes_a0.t1.1.sql create mode 100644 br/tests/lightning_extend_routes/data/routes_a1-schema-create.sql create mode 100644 br/tests/lightning_extend_routes/data/routes_a1.s1-schema.sql create mode 100644 br/tests/lightning_extend_routes/data/routes_a1.s1.sql create mode 100644 br/tests/lightning_extend_routes/data/routes_a1.t2-schema.sql create mode 100644 br/tests/lightning_extend_routes/data/routes_a1.t2.sql create mode 100755 br/tests/lightning_extend_routes/run.sh create mode 100644 br/tests/lightning_ignore_columns/config.toml create mode 100644 br/tests/lightning_ignore_columns/data/routes_a0-schema-create.sql create mode 100644 br/tests/lightning_ignore_columns/data/routes_a0.t0-schema.sql create mode 100644 br/tests/lightning_ignore_columns/data/routes_a0.t0.1.sql create mode 100644 br/tests/lightning_ignore_columns/data/routes_a0.t0.2.sql create mode 100644 br/tests/lightning_ignore_columns/data/routes_a0.t1-schema.sql create mode 100644 br/tests/lightning_ignore_columns/data/routes_a0.t1.1.sql create mode 100644 br/tests/lightning_ignore_columns/data/routes_a1-schema-create.sql create mode 100644 br/tests/lightning_ignore_columns/data/routes_a1.s1-schema.sql create mode 100644 br/tests/lightning_ignore_columns/data/routes_a1.s1.sql create mode 100644 br/tests/lightning_ignore_columns/data/routes_a1.t2-schema.sql create mode 100644 br/tests/lightning_ignore_columns/data/routes_a1.t2.sql create mode 100755 br/tests/lightning_ignore_columns/run.sh create mode 100644 ddl/backfilling_test.go create mode 100644 docs/design/2022-09-22-global-memory-control.md create mode 100644 docs/design/2022-09-28-flashback-to-timestamp.md create mode 100644 domain/plan_replayer_dump.go create mode 100644 domain/plan_replayer_handle_test.go create mode 100644 dumpling/tests/conn_timeout/run.sh create mode 100644 executor/analyze_worker.go create mode 100644 executor/lock_stats.go create mode 100644 executor/testdata/tiflash_v640_dt_tables.json create mode 100644 expression/extension.go create mode 100644 extension/BUILD.bazel create mode 100644 extension/bootstrap_test.go create mode 100644 extension/event_listener_test.go create mode 100644 extension/extensionimpl/BUILD.bazel create mode 100644 extension/extensionimpl/bootstrap.go create mode 100644 extension/extensions.go create mode 100644 extension/function.go create mode 100644 extension/function_test.go create mode 100644 extension/main_test.go create mode 100644 extension/manifest.go create mode 100644 extension/registry.go create mode 100644 extension/registry_test.go create mode 100644 extension/session.go create mode 100644 extension/util.go create mode 100644 meta/autoid/autoid_service.go create mode 100644 planner/core/plan_replayer_capture_test.go create mode 100644 privilege/privileges/tidb_auth_token.go create mode 100644 privilege/privileges/tidb_auth_token_test.go create mode 100644 server/extension.go create mode 100644 sessiontxn/staleread/externalts_test.go create mode 100644 statistics/merge_worker.go create mode 100644 store/copr/copr_test/BUILD.bazel create mode 100644 store/copr/copr_test/coprocessor_test.go create mode 100644 store/copr/copr_test/main_test.go create mode 100644 tests/realtikvtest/addindextest/integration_test.go delete mode 100644 tests/realtikvtest/addindextest/memory_test.go create mode 100755 tools/check/check-bazel-prepare.sh create mode 100644 util/memory/memstats.go create mode 100644 util/servermemorylimit/servermemorylimit_test.go diff --git a/.bazelrc b/.bazelrc index e7bddacdda211..8339fc80e2d67 100644 --- a/.bazelrc +++ b/.bazelrc @@ -1,4 +1,4 @@ -startup --host_jvm_args=-Xmx6g +startup --host_jvm_args=-Xmx5g startup --unlimit_coredumps run:ci --color=yes diff --git a/.bazelversion b/.bazelversion index c7cb1311a645f..84197c89467dd 100644 --- a/.bazelversion +++ b/.bazelversion @@ -1 +1 @@ -5.3.1 +5.3.2 diff --git a/.dockerignore b/.dockerignore new file mode 100644 index 0000000000000..d114ba901dc2b --- /dev/null +++ b/.dockerignore @@ -0,0 +1,10 @@ +.git/ +bazel-bin/ +bazel-out/ +bazel-tidb/ +bazel-testlogs/ +bin/ +tidb-server/tidb-server +*.test.bin +cmd/ +Dockerfile diff --git a/.github/licenserc.yml b/.github/licenserc.yml index 68e70685a12f8..e1add7017983b 100644 --- a/.github/licenserc.yml +++ b/.github/licenserc.yml @@ -6,6 +6,7 @@ header: - "docs/" - "br/" - ".gitignore" + - ".dockerignore" - ".gitattributes" - ".cilinter.yaml" - ".golangci.yml" diff --git a/.github/workflows/integration-test-br-compatibility.yml b/.github/workflows/integration-test-br-compatibility.yml index b455799b91afa..5df7168467005 100644 --- a/.github/workflows/integration-test-br-compatibility.yml +++ b/.github/workflows/integration-test-br-compatibility.yml @@ -22,6 +22,9 @@ concurrency: group: ${{ github.ref }}-${{ github.workflow }} cancel-in-progress: true +permissions: + contents: read # to fetch code (actions/checkout) + jobs: check: runs-on: ubuntu-latest diff --git a/.github/workflows/integration-test-compile-br.yml b/.github/workflows/integration-test-compile-br.yml index 17cbd48b25d7b..7b22aa4e24bbe 100644 --- a/.github/workflows/integration-test-compile-br.yml +++ b/.github/workflows/integration-test-compile-br.yml @@ -36,6 +36,9 @@ concurrency: group: ${{ github.ref }}-${{ github.workflow }} cancel-in-progress: true +permissions: + contents: read # to fetch code (actions/checkout) + jobs: compile-windows: if: github.event_name == 'push' || github.event_name == 'pull_request' && github.event.label.name == 'action/run-br-cross-platform-build' diff --git a/.github/workflows/integration-test-dumpling.yml b/.github/workflows/integration-test-dumpling.yml index e1dd6a58d3e6d..14bae6e6b7115 100644 --- a/.github/workflows/integration-test-dumpling.yml +++ b/.github/workflows/integration-test-dumpling.yml @@ -40,6 +40,9 @@ concurrency: group: ${{ github.workflow }}-${{ github.ref }} cancel-in-progress: true +permissions: + contents: read # to fetch code (actions/checkout) + jobs: integration-test: strategy: diff --git a/.github/workflows/misc.yml b/.github/workflows/misc.yml index 78e0f9a46d4a7..94b68e9c95510 100644 --- a/.github/workflows/misc.yml +++ b/.github/workflows/misc.yml @@ -12,8 +12,15 @@ concurrency: group: ${{ github.workflow }}-${{ github.ref }} cancel-in-progress: true +permissions: + contents: read # to fetch code (actions/checkout) + jobs: check: + permissions: + contents: read # to fetch code (actions/checkout) + pull-requests: write # to comment on pull-requests + runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 diff --git a/DEPS.bzl b/DEPS.bzl index 2e78e45f88b6e..4c3e94cca5a14 100644 --- a/DEPS.bzl +++ b/DEPS.bzl @@ -44,6 +44,13 @@ def go_deps(): sum = "h1:zeZSRqj5yCg28tCkIV/z/lWbwvNm5qnKVS15PI8nhD0=", version = "v0.1.0", ) + go_repository( + name = "com_github_acarl005_stripansi", + build_file_proto_mode = "disable", + importpath = "github.com/acarl005/stripansi", + sum = "h1:licZJFw2RwpHMqeKTCYkitsPqHNxTmd4SNR5r94FGM8=", + version = "v0.0.0-20180116102854-5a71ef0e047d", + ) go_repository( name = "com_github_ajg_form", @@ -711,6 +718,21 @@ def go_deps(): sum = "h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c=", version = "v1.1.1", ) + go_repository( + name = "com_github_decred_dcrd_crypto_blake256", + build_file_proto_mode = "disable", + importpath = "github.com/decred/dcrd/crypto/blake256", + sum = "h1:/8DMNYp9SGi5f0w7uCm6d6M4OU2rGFK09Y2A4Xv7EE0=", + version = "v1.0.0", + ) + go_repository( + name = "com_github_decred_dcrd_dcrec_secp256k1_v4", + build_file_proto_mode = "disable", + importpath = "github.com/decred/dcrd/dcrec/secp256k1/v4", + sum = "h1:HbphB4TFFXpv7MNrT52FGrrgVXF1owhMVTHFZIlnvd4=", + version = "v4.1.0", + ) + go_repository( name = "com_github_denis_tingaikin_go_header", build_file_proto_mode = "disable", @@ -1235,6 +1257,14 @@ def go_deps(): sum = "h1:CoAavW/wd/kulfZmSIBt6p24n4j7tHgNVCjsfHVNUbo=", version = "v1.0.2", ) + go_repository( + name = "com_github_goccy_go_json", + build_file_proto_mode = "disable", + importpath = "github.com/goccy/go-json", + sum = "h1:/pAaQDLHEoCq/5FFmSKBswWmK6H0e8g4159Kc/X/nqk=", + version = "v0.9.11", + ) + go_repository( name = "com_github_godbus_dbus_v5", build_file_proto_mode = "disable_global", @@ -2239,6 +2269,49 @@ def go_deps(): sum = "h1:tC2y/ygPbMFSBOs3DcyaEMKnnwH7eYKzohOtRrf0SAg=", version = "v1.1.0", ) + go_repository( + name = "com_github_lestrrat_go_blackmagic", + build_file_proto_mode = "disable", + importpath = "github.com/lestrrat-go/blackmagic", + sum = "h1:lS5Zts+5HIC/8og6cGHb0uCcNCa3OUt1ygh3Qz2Fe80=", + version = "v1.0.1", + ) + go_repository( + name = "com_github_lestrrat_go_httpcc", + build_file_proto_mode = "disable", + importpath = "github.com/lestrrat-go/httpcc", + sum = "h1:ydWCStUeJLkpYyjLDHihupbn2tYmZ7m22BGkcvZZrIE=", + version = "v1.0.1", + ) + go_repository( + name = "com_github_lestrrat_go_httprc", + build_file_proto_mode = "disable", + importpath = "github.com/lestrrat-go/httprc", + sum = "h1:bAZymwoZQb+Oq8MEbyipag7iSq6YIga8Wj6GOiJGdI8=", + version = "v1.0.4", + ) + go_repository( + name = "com_github_lestrrat_go_iter", + build_file_proto_mode = "disable", + importpath = "github.com/lestrrat-go/iter", + sum = "h1:gMXo1q4c2pHmC3dn8LzRhJfP1ceCbgSiT9lUydIzltI=", + version = "v1.0.2", + ) + go_repository( + name = "com_github_lestrrat_go_jwx_v2", + build_file_proto_mode = "disable", + importpath = "github.com/lestrrat-go/jwx/v2", + sum = "h1:RlyYNLV892Ed7+FTfj1ROoF6x7WxL965PGTHso/60G0=", + version = "v2.0.6", + ) + go_repository( + name = "com_github_lestrrat_go_option", + build_file_proto_mode = "disable", + importpath = "github.com/lestrrat-go/option", + sum = "h1:WqAWL8kh8VcSoD6xjSH34/1m8yxluXQbDeKNfvFeEO4=", + version = "v1.0.0", + ) + go_repository( name = "com_github_lib_pq", build_file_proto_mode = "disable", @@ -2818,15 +2891,15 @@ def go_deps(): name = "com_github_pingcap_kvproto", build_file_proto_mode = "disable_global", importpath = "github.com/pingcap/kvproto", - sum = "h1:ceg4xjEEXNgPsScTQ5dtidiltLF4h17Y/jUqfyLAy9E=", - version = "v0.0.0-20220929075948-06e08d5ed64c", + sum = "h1:ho5XUD8DVCnkpEj8oiTR57FXDTXnH6znyLe0gyrtzKk=", + version = "v0.0.0-20221103025916-e7e21f0e9cd9", ) go_repository( name = "com_github_pingcap_log", build_file_proto_mode = "disable_global", importpath = "github.com/pingcap/log", - sum = "h1:ELiPxACz7vdo1qAvvaWJg1NrYFoY6gqAh/+Uo6aXdD8=", - version = "v1.1.0", + sum = "h1:T7e5Low0BU2ZazI2dz2mh3W1qv+w8wtvq1YR8DneA0c=", + version = "v1.1.1-0.20221110065318-21a4942860b3", ) go_repository( name = "com_github_pingcap_sysutil", @@ -2839,8 +2912,8 @@ def go_deps(): name = "com_github_pingcap_tipb", build_file_proto_mode = "disable_global", importpath = "github.com/pingcap/tipb", - sum = "h1:kWYridgsn8xSKYJ2EkXp7uj5HwJnG5snpY3XP8oYmPU=", - version = "v0.0.0-20220824081009-0714a57aff1d", + sum = "h1:Yoo8j5xQGxjlsC3yt0ndsiAz0WZXED9rzsKmEN0U0DY=", + version = "v0.0.0-20221020071514-cd933387bcb5", ) go_repository( name = "com_github_pkg_browser", @@ -3205,8 +3278,8 @@ def go_deps(): name = "com_github_shurcool_vfsgen", build_file_proto_mode = "disable_global", importpath = "github.com/shurcooL/vfsgen", - sum = "h1:y0cMJ0qjii33BnD6tMGcF/+gHYsoKQ6tbwQpy233OII=", - version = "v0.0.0-20180711163814-62bca832be04", + sum = "h1:ug7PpSOB5RBPK1Kg6qskGBoP3Vnj/aNYFTznWvlkGo0=", + version = "v0.0.0-20181202132449-6a9ea43bcacd", ) go_repository( name = "com_github_sirupsen_logrus", @@ -3422,15 +3495,15 @@ def go_deps(): name = "com_github_tikv_client_go_v2", build_file_proto_mode = "disable_global", importpath = "github.com/tikv/client-go/v2", - sum = "h1:/13jzD/AR7v3dCLweFQ2JG8bihh3HLVIci2tbOHHGW0=", - version = "v2.0.1-0.20221012074856-6def8d7b90c4", + sum = "h1:nFVdyTXcQYZwQQCdSJcFI1vBFyzG1hVuZ39MAK6wqK4=", + version = "v2.0.3-0.20221108030801-9c0835c80eba", ) go_repository( name = "com_github_tikv_pd_client", build_file_proto_mode = "disable_global", importpath = "github.com/tikv/pd/client", - sum = "h1:REQOR1XraH1fT9BCoNBPZs1CAe+w7VPLU+d+si7DLYo=", - version = "v0.0.0-20221010134149-d50e5fe43f14", + sum = "h1:ckPpxKcl75mO2N6a4cJXiZH43hvcHPpqc9dh1TmH1nc=", + version = "v0.0.0-20221031025758-80f0d8ca4d07", ) go_repository( name = "com_github_timakin_bodyclose", @@ -3584,12 +3657,20 @@ def go_deps(): sum = "h1:0R4NLDRDZX6JcmhJgXi5E4b8Wg84ihbmUKp/GvSPEzc=", version = "v0.0.0-20161114210144-ceec8f93295a", ) + go_repository( + name = "com_github_vbauerster_mpb_v7", + build_file_proto_mode = "disable", + importpath = "github.com/vbauerster/mpb/v7", + sum = "h1:BkGfmb6nMrrBQDFECR/Q7RkKCw7ylMetCb4079CGs4w=", + version = "v7.5.3", + ) + go_repository( name = "com_github_vividcortex_ewma", build_file_proto_mode = "disable_global", importpath = "github.com/VividCortex/ewma", - sum = "h1:MnEK4VOv6n0RSY4vtRe3h11qjxL3+t0B8yOL8iMXdcM=", - version = "v1.1.1", + sum = "h1:f58SaIzcDXrSy3kWaHNvuJgJ3Nmz59Zji6XoJR/q1ow=", + version = "v1.2.0", ) go_repository( name = "com_github_wangjohn_quickselect", @@ -4250,8 +4331,8 @@ def go_deps(): name = "org_golang_x_crypto", build_file_proto_mode = "disable_global", importpath = "golang.org/x/crypto", - sum = "h1:kUhD7nTDoI3fVd9G4ORWrbV5NY0liEs/Jg2pv5f+bBA=", - version = "v0.0.0-20220411220226-7b82a4e95df4", + sum = "h1:MDRAIl0xIo9Io2xV565hzXHw3zVseKrJKodhohM5CjU=", + version = "v0.1.0", ) go_repository( name = "org_golang_x_exp", @@ -4300,8 +4381,8 @@ def go_deps(): name = "org_golang_x_net", build_file_proto_mode = "disable_global", importpath = "golang.org/x/net", - sum = "h1:PxfKdU9lEEDYjdIzOtC4qFWgkU2rGHdKlKowJSMN9h0=", - version = "v0.0.0-20220722155237-a158d28d115b", + sum = "h1:hZ/3BUoy5aId7sCpA/Tc5lt8DkFgdVS2onTpJsZ/fl0=", + version = "v0.1.0", ) go_repository( name = "org_golang_x_oauth2", @@ -4321,22 +4402,22 @@ def go_deps(): name = "org_golang_x_sys", build_file_proto_mode = "disable_global", importpath = "golang.org/x/sys", - sum = "h1:BkDtF2Ih9xZ7le9ndzTA7KJow28VbQW3odyk/8drmuI=", - version = "v0.0.0-20220928140112-f11e5e49a4ec", + sum = "h1:kunALQeHf1/185U1i0GOB/fy1IPRDDpuoOOqRReG57U=", + version = "v0.1.0", ) go_repository( name = "org_golang_x_term", build_file_proto_mode = "disable_global", importpath = "golang.org/x/term", - sum = "h1:JGgROgKl9N8DuW20oFS5gxc+lE67/N3FcwmBPMe7ArY=", - version = "v0.0.0-20210927222741-03fcf44c2211", + sum = "h1:g6Z6vPFA9dYBAF7DWcH6sCcOntplXsDKcliusYijMlw=", + version = "v0.1.0", ) go_repository( name = "org_golang_x_text", build_file_proto_mode = "disable_global", importpath = "golang.org/x/text", - sum = "h1:olpwvP2KacW1ZWvsR7uQhoyTYvKAupfQrRGBFM352Gk=", - version = "v0.3.7", + sum = "h1:BrVqGRd7+k1DiOgtnFvAkoQEWQvBc25ouMJM6429SFg=", + version = "v0.4.0", ) go_repository( name = "org_golang_x_time", @@ -4489,6 +4570,6 @@ def go_deps(): name = "org_uber_go_zap", build_file_proto_mode = "disable_global", importpath = "go.uber.org/zap", - sum = "h1:WefMeulhovoZ2sYXz7st6K0sLj7bBhpiFaud4r4zST8=", - version = "v1.21.0", + sum = "h1:OjGQ5KQDEUawVHxNwQgPpiypGHOxo2mNZsOqTak4fFY=", + version = "v1.23.0", ) diff --git a/Dockerfile b/Dockerfile index e96254e0dd126..8416ef542a3d3 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -# Copyright 2019 PingCAP, Inc. +# Copyright 2022 PingCAP, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. @@ -13,45 +13,19 @@ # limitations under the License. # Builder image -FROM golang:1.19.1-alpine as builder +FROM alpine:edge as builder -RUN apk add --no-cache \ - wget \ - make \ - git \ - gcc \ - binutils-gold \ - musl-dev +ADD . https://raw.githubusercontent.com/njhallett/apk-fastest-mirror/c4ca44caef3385d830fea34df2dbc2ba4a17e021/apk-fastest-mirror.sh ./proxy +RUN sh ./proxy/apk-fastest-mirror.sh -t 50 && apk add --no-cache git build-base go -RUN wget -O /usr/local/bin/dumb-init https://github.com/Yelp/dumb-init/releases/download/v1.2.2/dumb-init_1.2.2_amd64 \ - && chmod +x /usr/local/bin/dumb-init +COPY . /tidb +ARG GOPROXY +RUN export GOPROXY=${GOPROXY} && cd /tidb && make server -RUN mkdir -p /go/src/github.com/pingcap/tidb -WORKDIR /go/src/github.com/pingcap/tidb +FROM alpine:latest -# Cache dependencies -COPY go.mod . -COPY go.sum . -COPY parser/go.mod parser/go.mod -COPY parser/go.sum parser/go.sum - -RUN GO111MODULE=on go mod download - -# Build real binaries -COPY . . -RUN make - -# Executable image -FROM alpine - -RUN apk add --no-cache \ - curl - -COPY --from=builder /go/src/github.com/pingcap/tidb/bin/tidb-server /tidb-server -COPY --from=builder /usr/local/bin/dumb-init /usr/local/bin/dumb-init +COPY --from=builder /tidb/bin/tidb-server /tidb-server WORKDIR / - EXPOSE 4000 - -ENTRYPOINT ["/usr/local/bin/dumb-init", "/tidb-server"] +ENTRYPOINT ["/tidb-server"] diff --git a/Makefile b/Makefile index bc350cea3a255..66b3ba0686917 100644 --- a/Makefile +++ b/Makefile @@ -14,7 +14,7 @@ include Makefile.common -.PHONY: all clean test server dev benchkv benchraw check checklist parser tidy ddltest build_br build_lightning build_lightning-ctl build_dumpling ut bazel_build bazel_prepare bazel_test check-file-perm bazel_lint +.PHONY: all clean test server dev benchkv benchraw check checklist parser tidy ddltest build_br build_lightning build_lightning-ctl build_dumpling ut bazel_build bazel_prepare bazel_test check-file-perm check-bazel-prepare bazel_lint default: server buildsucc @@ -31,7 +31,7 @@ dev: checklist check explaintest gogenerate br_unit_test test_part_parser_dev ut # Install the check tools. check-setup:tools/bin/revive -check: parser_yacc check-parallel lint tidy testSuite errdoc +check: parser_yacc check-parallel lint tidy testSuite errdoc check-bazel-prepare fmt: @echo "gofmt (simplify)" @@ -140,30 +140,30 @@ race: failpoint-enable server: ifeq ($(TARGET), "") - CGO_ENABLED=1 $(GOBUILD) $(RACE_FLAG) -ldflags '$(LDFLAGS) $(CHECK_FLAG)' -o bin/tidb-server tidb-server/main.go + CGO_ENABLED=1 $(GOBUILD) $(RACE_FLAG) -ldflags '$(LDFLAGS) $(CHECK_FLAG)' -o bin/tidb-server ./tidb-server else - CGO_ENABLED=1 $(GOBUILD) $(RACE_FLAG) -ldflags '$(LDFLAGS) $(CHECK_FLAG)' -o '$(TARGET)' tidb-server/main.go + CGO_ENABLED=1 $(GOBUILD) $(RACE_FLAG) -ldflags '$(LDFLAGS) $(CHECK_FLAG)' -o '$(TARGET)' ./tidb-server endif server_debug: ifeq ($(TARGET), "") - CGO_ENABLED=1 $(GOBUILD) -gcflags="all=-N -l" $(RACE_FLAG) -ldflags '$(LDFLAGS) $(CHECK_FLAG)' -o bin/tidb-server-debug tidb-server/main.go + CGO_ENABLED=1 $(GOBUILD) -gcflags="all=-N -l" $(RACE_FLAG) -ldflags '$(LDFLAGS) $(CHECK_FLAG)' -o bin/tidb-server-debug ./tidb-server else - CGO_ENABLED=1 $(GOBUILD) -gcflags="all=-N -l" $(RACE_FLAG) -ldflags '$(LDFLAGS) $(CHECK_FLAG)' -o '$(TARGET)' tidb-server/main.go + CGO_ENABLED=1 $(GOBUILD) -gcflags="all=-N -l" $(RACE_FLAG) -ldflags '$(LDFLAGS) $(CHECK_FLAG)' -o '$(TARGET)' ./tidb-server endif server_check: ifeq ($(TARGET), "") - $(GOBUILD) $(RACE_FLAG) -ldflags '$(CHECK_LDFLAGS)' -o bin/tidb-server tidb-server/main.go + $(GOBUILD) $(RACE_FLAG) -ldflags '$(CHECK_LDFLAGS)' -o bin/tidb-server ./tidb-server else - $(GOBUILD) $(RACE_FLAG) -ldflags '$(CHECK_LDFLAGS)' -o '$(TARGET)' tidb-server/main.go + $(GOBUILD) $(RACE_FLAG) -ldflags '$(CHECK_LDFLAGS)' -o '$(TARGET)' ./tidb-server endif linux: ifeq ($(TARGET), "") - GOOS=linux $(GOBUILD) $(RACE_FLAG) -ldflags '$(LDFLAGS) $(CHECK_FLAG)' -o bin/tidb-server-linux tidb-server/main.go + GOOS=linux $(GOBUILD) $(RACE_FLAG) -ldflags '$(LDFLAGS) $(CHECK_FLAG)' -o bin/tidb-server-linux ./tidb-server else - GOOS=linux $(GOBUILD) $(RACE_FLAG) -ldflags '$(LDFLAGS) $(CHECK_FLAG)' -o '$(TARGET)' tidb-server/main.go + GOOS=linux $(GOBUILD) $(RACE_FLAG) -ldflags '$(LDFLAGS) $(CHECK_FLAG)' -o '$(TARGET)' ./tidb-server endif server_coverage: @@ -393,6 +393,10 @@ bazel_prepare: bazel run //:gazelle bazel run //:gazelle -- update-repos -from_file=go.mod -to_macro DEPS.bzl%go_deps -build_file_proto_mode=disable +check-bazel-prepare: + @echo "make bazel_prepare" + ./tools/check/check-bazel-prepare.sh + bazel_test: failpoint-enable bazel_ci_prepare bazel $(BAZEL_GLOBAL_CONFIG) test $(BAZEL_CMD_CONFIG) \ -- //... -//cmd/... -//tests/graceshutdown/... \ @@ -413,6 +417,8 @@ bazel_build: bazel_ci_prepare mkdir -p bin bazel $(BAZEL_GLOBAL_CONFIG) build $(BAZEL_CMD_CONFIG) \ //... --//build:with_nogo_flag=true + bazel $(BAZEL_GLOBAL_CONFIG) build $(BAZEL_CMD_CONFIG) \ + //cmd/importer:importer //tidb-server:tidb-server //tidb-server:tidb-server-check --//build:with_nogo_flag=true cp bazel-out/k8-fastbuild/bin/tidb-server/tidb-server_/tidb-server ./bin cp bazel-out/k8-fastbuild/bin/cmd/importer/importer_/importer ./bin cp bazel-out/k8-fastbuild/bin/tidb-server/tidb-server-check_/tidb-server-check ./bin @@ -461,3 +467,9 @@ bazel_addindextest: failpoint-enable bazel_ci_prepare bazel_lint: bazel_prepare bazel build //... --//build:with_nogo_flag=true + +docker: + docker build -t "$(DOCKERPREFIX)tidb:latest" --build-arg 'GOPROXY=$(shell go env GOPROXY),' -f Dockerfile . + +docker-test: + docker buildx build --platform linux/amd64,linux/arm64 --push -t "$(DOCKERPREFIX)tidb:latest" --build-arg 'GOPROXY=$(shell go env GOPROXY),' -f Dockerfile . diff --git a/Makefile.common b/Makefile.common index 0df4b8e0ff289..e1ff465336c59 100644 --- a/Makefile.common +++ b/Makefile.common @@ -115,6 +115,6 @@ DUMPLING_GOTEST := CGO_ENABLED=1 GO111MODULE=on go test -ldflags '$(DUMPLING_LD TEST_COVERAGE_DIR := "test_coverage" ifneq ("$(CI)", "0") - BAZEL_GLOBAL_CONFIG := --output_user_root=/home/jenkins/.tidb/tmp + BAZEL_GLOBAL_CONFIG := --output_user_root=/home/jenkins/.tidb/tmp --host_jvm_args=-XX:+UnlockExperimentalVMOptions --host_jvm_args=-XX:+UseZGC BAZEL_CMD_CONFIG := --config=ci --repository_cache=/home/jenkins/.tidb/tmp endif diff --git a/WORKSPACE b/WORKSPACE index 35ae55b7388a3..e6df7760f5d5e 100644 --- a/WORKSPACE +++ b/WORKSPACE @@ -29,7 +29,7 @@ go_rules_dependencies() go_register_toolchains( nogo = "@//build:tidb_nogo", - version = "1.19.2", + version = "1.19.3", ) gazelle_dependencies() diff --git a/autoid_service/BUILD.bazel b/autoid_service/BUILD.bazel new file mode 100644 index 0000000000000..df3d361d412ed --- /dev/null +++ b/autoid_service/BUILD.bazel @@ -0,0 +1,23 @@ +load("@io_bazel_rules_go//go:def.bzl", "go_library") + +go_library( + name = "autoid_service", + srcs = ["autoid.go"], + importpath = "github.com/pingcap/tidb/autoid_service", + visibility = ["//visibility:public"], + deps = [ + "//config", + "//kv", + "//meta", + "//metrics", + "//owner", + "//util/logutil", + "//util/mathutil", + "@com_github_pingcap_errors//:errors", + "@com_github_pingcap_kvproto//pkg/autoid", + "@io_etcd_go_etcd_client_v3//:client", + "@org_golang_google_grpc//:grpc", + "@org_golang_google_grpc//keepalive", + "@org_uber_go_zap//:zap", + ], +) diff --git a/autoid_service/autoid.go b/autoid_service/autoid.go new file mode 100644 index 0000000000000..d20c78fd06098 --- /dev/null +++ b/autoid_service/autoid.go @@ -0,0 +1,480 @@ +// Copyright 2022 PingCAP, Inc. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +package autoid + +import ( + "context" + "crypto/tls" + "math" + "sync" + "time" + + "github.com/pingcap/errors" + "github.com/pingcap/kvproto/pkg/autoid" + "github.com/pingcap/tidb/config" + "github.com/pingcap/tidb/kv" + "github.com/pingcap/tidb/meta" + "github.com/pingcap/tidb/metrics" + "github.com/pingcap/tidb/owner" + "github.com/pingcap/tidb/util/logutil" + "github.com/pingcap/tidb/util/mathutil" + clientv3 "go.etcd.io/etcd/client/v3" + "go.uber.org/zap" + "google.golang.org/grpc" + "google.golang.org/grpc/keepalive" +) + +var ( + errAutoincReadFailed = errors.New("auto increment action failed") +) + +const ( + autoIDLeaderPath = "tidb/autoid/leader" +) + +type autoIDKey struct { + dbID int64 + tblID int64 +} + +type autoIDValue struct { + sync.Mutex + base int64 + end int64 + isUnsigned bool + token chan struct{} +} + +func (alloc *autoIDValue) alloc4Unsigned(ctx context.Context, store kv.Storage, dbID, tblID int64, isUnsigned bool, + n uint64, increment, offset int64) (min int64, max int64, err error) { + // Check offset rebase if necessary. + if uint64(offset-1) > uint64(alloc.base) { + if err := alloc.rebase4Unsigned(ctx, store, dbID, tblID, uint64(offset-1)); err != nil { + return 0, 0, err + } + } + // calcNeededBatchSize calculates the total batch size needed. + n1 := calcNeededBatchSize(alloc.base, int64(n), increment, offset, isUnsigned) + + // The local rest is not enough for alloc, skip it. + if uint64(alloc.base)+uint64(n1) > uint64(alloc.end) || alloc.base == 0 { + var newBase, newEnd int64 + nextStep := int64(batch) + // Although it may skip a segment here, we still treat it as consumed. + + ctx = kv.WithInternalSourceType(ctx, kv.InternalTxnMeta) + err := kv.RunInNewTxn(ctx, store, true, func(ctx context.Context, txn kv.Transaction) error { + idAcc := meta.NewMeta(txn).GetAutoIDAccessors(dbID, tblID).RowID() + var err1 error + newBase, err1 = idAcc.Get() + if err1 != nil { + return err1 + } + // calcNeededBatchSize calculates the total batch size needed on new base. + n1 = calcNeededBatchSize(newBase, int64(n), increment, offset, isUnsigned) + // Although the step is customized by user, we still need to make sure nextStep is big enough for insert batch. + if nextStep < n1 { + nextStep = n1 + } + tmpStep := int64(mathutil.Min(math.MaxUint64-uint64(newBase), uint64(nextStep))) + // The global rest is not enough for alloc. + if tmpStep < n1 { + return errAutoincReadFailed + } + newEnd, err1 = idAcc.Inc(tmpStep) + return err1 + }) + if err != nil { + return 0, 0, err + } + if uint64(newBase) == math.MaxUint64 { + return 0, 0, errAutoincReadFailed + } + alloc.base, alloc.end = newBase, newEnd + } + min = alloc.base + // Use uint64 n directly. + alloc.base = int64(uint64(alloc.base) + uint64(n1)) + return min, alloc.base, nil +} + +func (alloc *autoIDValue) alloc4Signed(ctx context.Context, + store kv.Storage, + dbID, tblID int64, + isUnsigned bool, + n uint64, increment, offset int64) (min int64, max int64, err error) { + // Check offset rebase if necessary. + if offset-1 > alloc.base { + if err := alloc.rebase4Signed(ctx, store, dbID, tblID, offset-1); err != nil { + return 0, 0, err + } + } + // calcNeededBatchSize calculates the total batch size needed. + n1 := calcNeededBatchSize(alloc.base, int64(n), increment, offset, isUnsigned) + + // Condition alloc.base+N1 > alloc.end will overflow when alloc.base + N1 > MaxInt64. So need this. + if math.MaxInt64-alloc.base <= n1 { + return 0, 0, errAutoincReadFailed + } + + // The local rest is not enough for allocN, skip it. + // If alloc.base is 0, the alloc may not be initialized, force fetch from remote. + if alloc.base+n1 > alloc.end || alloc.base == 0 { + var newBase, newEnd int64 + nextStep := int64(batch) + + ctx = kv.WithInternalSourceType(ctx, kv.InternalTxnMeta) + err := kv.RunInNewTxn(ctx, store, true, func(ctx context.Context, txn kv.Transaction) error { + idAcc := meta.NewMeta(txn).GetAutoIDAccessors(dbID, tblID).RowID() + var err1 error + newBase, err1 = idAcc.Get() + if err1 != nil { + return err1 + } + // calcNeededBatchSize calculates the total batch size needed on global base. + n1 = calcNeededBatchSize(newBase, int64(n), increment, offset, isUnsigned) + // Although the step is customized by user, we still need to make sure nextStep is big enough for insert batch. + if nextStep < n1 { + nextStep = n1 + } + tmpStep := mathutil.Min(math.MaxInt64-newBase, nextStep) + // The global rest is not enough for alloc. + if tmpStep < n1 { + return errAutoincReadFailed + } + newEnd, err1 = idAcc.Inc(tmpStep) + return err1 + }) + if err != nil { + return 0, 0, err + } + if newBase == math.MaxInt64 { + return 0, 0, errAutoincReadFailed + } + alloc.base, alloc.end = newBase, newEnd + } + min = alloc.base + alloc.base += n1 + return min, alloc.base, nil +} + +func (alloc *autoIDValue) rebase4Unsigned(ctx context.Context, + store kv.Storage, + dbID, tblID int64, + requiredBase uint64) error { + // Satisfied by alloc.base, nothing to do. + if requiredBase <= uint64(alloc.base) { + return nil + } + // Satisfied by alloc.end, need to update alloc.base. + if requiredBase <= uint64(alloc.end) { + alloc.base = int64(requiredBase) + return nil + } + + var newBase, newEnd uint64 + startTime := time.Now() + ctx = kv.WithInternalSourceType(ctx, kv.InternalTxnMeta) + err := kv.RunInNewTxn(ctx, store, true, func(ctx context.Context, txn kv.Transaction) error { + idAcc := meta.NewMeta(txn).GetAutoIDAccessors(dbID, tblID).RowID() + currentEnd, err1 := idAcc.Get() + if err1 != nil { + return err1 + } + uCurrentEnd := uint64(currentEnd) + newBase = mathutil.Max(uCurrentEnd, requiredBase) + newEnd = mathutil.Min(math.MaxUint64-uint64(batch), newBase) + uint64(batch) + _, err1 = idAcc.Inc(int64(newEnd - uCurrentEnd)) + return err1 + }) + metrics.AutoIDHistogram.WithLabelValues(metrics.TableAutoIDRebase, metrics.RetLabel(err)).Observe(time.Since(startTime).Seconds()) + if err != nil { + return err + } + alloc.base, alloc.end = int64(newBase), int64(newEnd) + return nil +} + +func (alloc *autoIDValue) rebase4Signed(ctx context.Context, store kv.Storage, dbID, tblID int64, requiredBase int64) error { + // Satisfied by alloc.base, nothing to do. + if requiredBase <= alloc.base { + return nil + } + // Satisfied by alloc.end, need to update alloc.base. + if requiredBase <= alloc.end { + alloc.base = requiredBase + return nil + } + + var newBase, newEnd int64 + ctx = kv.WithInternalSourceType(ctx, kv.InternalTxnMeta) + err := kv.RunInNewTxn(ctx, store, true, func(ctx context.Context, txn kv.Transaction) error { + idAcc := meta.NewMeta(txn).GetAutoIDAccessors(dbID, tblID).RowID() + currentEnd, err1 := idAcc.Get() + if err1 != nil { + return err1 + } + newBase = mathutil.Max(currentEnd, requiredBase) + newEnd = mathutil.Min(math.MaxInt64-batch, newBase) + batch + _, err1 = idAcc.Inc(newEnd - currentEnd) + return err1 + }) + if err != nil { + return err + } + alloc.base, alloc.end = newBase, newEnd + return nil +} + +// Service implement the grpc AutoIDAlloc service, defined in kvproto/pkg/autoid. +type Service struct { + autoIDLock sync.Mutex + autoIDMap map[autoIDKey]*autoIDValue + + leaderShip owner.Manager + store kv.Storage +} + +// New return a Service instance. +func New(selfAddr string, etcdAddr []string, store kv.Storage, tlsConfig *tls.Config) *Service { + cfg := config.GetGlobalConfig() + etcdLogCfg := zap.NewProductionConfig() + cli, err := clientv3.New(clientv3.Config{ + LogConfig: &etcdLogCfg, + Endpoints: etcdAddr, + AutoSyncInterval: 30 * time.Second, + DialTimeout: 5 * time.Second, + DialOptions: []grpc.DialOption{ + grpc.WithBackoffMaxDelay(time.Second * 3), + grpc.WithKeepaliveParams(keepalive.ClientParameters{ + Time: time.Duration(cfg.TiKVClient.GrpcKeepAliveTime) * time.Second, + Timeout: time.Duration(cfg.TiKVClient.GrpcKeepAliveTimeout) * time.Second, + }), + }, + TLS: tlsConfig, + }) + if err != nil { + panic(err) + } + + l := owner.NewOwnerManager(context.Background(), cli, "autoid", selfAddr, autoIDLeaderPath) + err = l.CampaignOwner() + if err != nil { + panic(err) + } + + return &Service{ + autoIDMap: make(map[autoIDKey]*autoIDValue), + leaderShip: l, + store: store, + } +} + +type mockClient struct { + Service +} + +func (m *mockClient) AllocAutoID(ctx context.Context, in *autoid.AutoIDRequest, opts ...grpc.CallOption) (*autoid.AutoIDResponse, error) { + return m.Service.AllocAutoID(ctx, in) +} + +func (m *mockClient) Rebase(ctx context.Context, in *autoid.RebaseRequest, opts ...grpc.CallOption) (*autoid.RebaseResponse, error) { + return m.Service.Rebase(ctx, in) +} + +var global = make(map[string]*mockClient) + +// MockForTest is used for testing, the UT test and unistore use this. +func MockForTest(store kv.Storage) *mockClient { + uuid := store.UUID() + ret, ok := global[uuid] + if !ok { + ret = &mockClient{ + Service{ + autoIDMap: make(map[autoIDKey]*autoIDValue), + leaderShip: nil, + store: store, + }, + } + global[uuid] = ret + } + return ret +} + +// Close closes the Service and clean up resource. +func (s *Service) Close() { + if s.leaderShip != nil { + for k, v := range s.autoIDMap { + if v.base > 0 { + err := v.forceRebase(context.Background(), s.store, k.dbID, k.tblID, v.base, v.isUnsigned) + if err != nil { + logutil.BgLogger().Warn("[autoid service] save cached ID fail when service exit", + zap.Int64("db id", k.dbID), + zap.Int64("table id", k.tblID), + zap.Int64("value", v.base), + zap.Error(err)) + } + } + } + s.leaderShip.Cancel() + } +} + +// seekToFirstAutoIDSigned seeks to the next valid signed position. +func seekToFirstAutoIDSigned(base, increment, offset int64) int64 { + nr := (base + increment - offset) / increment + nr = nr*increment + offset + return nr +} + +// seekToFirstAutoIDUnSigned seeks to the next valid unsigned position. +func seekToFirstAutoIDUnSigned(base, increment, offset uint64) uint64 { + nr := (base + increment - offset) / increment + nr = nr*increment + offset + return nr +} + +func calcNeededBatchSize(base, n, increment, offset int64, isUnsigned bool) int64 { + if increment == 1 { + return n + } + if isUnsigned { + // SeekToFirstAutoIDUnSigned seeks to the next unsigned valid position. + nr := seekToFirstAutoIDUnSigned(uint64(base), uint64(increment), uint64(offset)) + // calculate the total batch size needed. + nr += (uint64(n) - 1) * uint64(increment) + return int64(nr - uint64(base)) + } + nr := seekToFirstAutoIDSigned(base, increment, offset) + // calculate the total batch size needed. + nr += (n - 1) * increment + return nr - base +} + +const batch = 4000 + +// AllocAutoID implements gRPC AutoIDAlloc interface. +func (s *Service) AllocAutoID(ctx context.Context, req *autoid.AutoIDRequest) (*autoid.AutoIDResponse, error) { + var res *autoid.AutoIDResponse + for { + var err error + res, err = s.allocAutoID(ctx, req) + if err != nil { + return nil, errors.Trace(err) + } + if res != nil { + break + } + } + return res, nil +} + +func (s *Service) getAlloc(dbID, tblID int64, isUnsigned bool) *autoIDValue { + key := autoIDKey{dbID: dbID, tblID: tblID} + s.autoIDLock.Lock() + defer s.autoIDLock.Unlock() + + val, ok := s.autoIDMap[key] + if !ok { + val = &autoIDValue{ + isUnsigned: isUnsigned, + token: make(chan struct{}, 1), + } + s.autoIDMap[key] = val + } + + return val +} + +func (s *Service) allocAutoID(ctx context.Context, req *autoid.AutoIDRequest) (*autoid.AutoIDResponse, error) { + if s.leaderShip != nil && !s.leaderShip.IsOwner() { + return nil, errors.New("not leader") + } + + val := s.getAlloc(req.DbID, req.TblID, req.IsUnsigned) + + if req.N == 0 && val.base != 0 { + base := val.base + return &autoid.AutoIDResponse{ + Min: base, + Max: base, + }, nil + } + + val.Lock() + defer val.Unlock() + + var min, max int64 + var err error + if req.IsUnsigned { + min, max, err = val.alloc4Unsigned(ctx, s.store, req.DbID, req.TblID, req.IsUnsigned, req.N, req.Increment, req.Offset) + } else { + min, max, err = val.alloc4Signed(ctx, s.store, req.DbID, req.TblID, req.IsUnsigned, req.N, req.Increment, req.Offset) + } + + return &autoid.AutoIDResponse{ + Min: min, + Max: max, + }, err +} + +func (alloc *autoIDValue) forceRebase(ctx context.Context, store kv.Storage, dbID, tblID, requiredBase int64, isUnsigned bool) error { + ctx = kv.WithInternalSourceType(ctx, kv.InternalTxnMeta) + err := kv.RunInNewTxn(ctx, store, true, func(ctx context.Context, txn kv.Transaction) error { + idAcc := meta.NewMeta(txn).GetAutoIDAccessors(dbID, tblID).RowID() + currentEnd, err1 := idAcc.Get() + if err1 != nil { + return err1 + } + var step int64 + if !isUnsigned { + step = requiredBase - currentEnd + } else { + uRequiredBase, uCurrentEnd := uint64(requiredBase), uint64(currentEnd) + step = int64(uRequiredBase - uCurrentEnd) + } + _, err1 = idAcc.Inc(step) + return err1 + }) + if err != nil { + return err + } + alloc.base, alloc.end = requiredBase, requiredBase + return nil +} + +// Rebase implements gRPC AutoIDAlloc interface. +// req.N = 0 is handled specially, it is used to return the current auto ID value. +func (s *Service) Rebase(ctx context.Context, req *autoid.RebaseRequest) (*autoid.RebaseResponse, error) { + if s.leaderShip != nil && !s.leaderShip.IsOwner() { + return nil, errors.New("not leader") + } + + val := s.getAlloc(req.DbID, req.TblID, req.IsUnsigned) + if req.Force { + err := val.forceRebase(ctx, s.store, req.DbID, req.TblID, req.Base, req.IsUnsigned) + if err != nil { + return nil, errors.Trace(err) + } + } + + var err error + if req.IsUnsigned { + err = val.rebase4Unsigned(ctx, s.store, req.DbID, req.TblID, uint64(req.Base)) + } else { + err = val.rebase4Signed(ctx, s.store, req.DbID, req.TblID, req.Base) + } + return &autoid.RebaseResponse{}, err +} diff --git a/bindinfo/bind_test.go b/bindinfo/bind_test.go index f34c94ae44b5a..07e29923a9790 100644 --- a/bindinfo/bind_test.go +++ b/bindinfo/bind_test.go @@ -36,6 +36,7 @@ func TestPrepareCacheWithBinding(t *testing.T) { store := testkit.CreateMockStore(t) tk := testkit.NewTestKit(t, store) tk.MustExec(`set tidb_enable_prepared_plan_cache=1`) + tk.MustExec("set tidb_cost_model_version=2") tk.MustExec("use test") tk.MustExec("drop table if exists t1, t2") tk.MustExec("create table t1(a int, b int, c int, key idx_b(b), key idx_c(c))") @@ -240,7 +241,7 @@ func TestPrepareCacheWithBinding(t *testing.T) { ps = []*util.ProcessInfo{tkProcess} tk.Session().SetSessionManager(&testkit.MockSessionManager{PS: ps}) res = tk.MustQuery("explain for connection " + strconv.FormatUint(tkProcess.ID, 10)) - require.False(t, tk.HasPlan4ExplainFor(res, "IndexReader")) + require.True(t, tk.HasPlan4ExplainFor(res, "IndexReader")) tk.MustExec("execute stmt1;") tk.MustQuery("select @@last_plan_from_cache").Check(testkit.Rows("1")) @@ -297,6 +298,7 @@ func TestExplain(t *testing.T) { tk := testkit.NewTestKit(t, store) tk.MustExec("use test") + tk.MustExec("set tidb_cost_model_version=2") tk.MustExec("drop table if exists t1") tk.MustExec("drop table if exists t2") tk.MustExec("create table t1(id int)") @@ -313,7 +315,7 @@ func TestExplain(t *testing.T) { // Add test for SetOprStmt tk.MustExec("create index index_id on t1(id)") - require.False(t, tk.HasPlan("SELECT * from t1 union SELECT * from t1", "IndexReader")) + require.True(t, tk.HasPlan("SELECT * from t1 union SELECT * from t1", "IndexReader")) require.True(t, tk.HasPlan("SELECT * from t1 use index(index_id) union SELECT * from t1", "IndexReader")) tk.MustExec("create global binding for SELECT * from t1 union SELECT * from t1 using SELECT * from t1 use index(index_id) union SELECT * from t1") @@ -741,12 +743,12 @@ func TestStmtHints(t *testing.T) { tk.MustExec("use test") tk.MustExec("drop table if exists t") tk.MustExec("create table t(a int, b int, index idx(a))") - tk.MustExec("create global binding for select * from t using select /*+ MAX_EXECUTION_TIME(100), MEMORY_QUOTA(1 GB) */ * from t use index(idx)") + tk.MustExec("create global binding for select * from t using select /*+ MAX_EXECUTION_TIME(100), MEMORY_QUOTA(2 GB) */ * from t use index(idx)") tk.MustQuery("select * from t") - require.Equal(t, int64(1073741824), tk.Session().GetSessionVars().StmtCtx.MemQuotaQuery) + require.Equal(t, int64(2147483648), tk.Session().GetSessionVars().MemTracker.GetBytesLimit()) require.Equal(t, uint64(100), tk.Session().GetSessionVars().StmtCtx.MaxExecutionTime) tk.MustQuery("select a, b from t") - require.Equal(t, int64(0), tk.Session().GetSessionVars().StmtCtx.MemQuotaQuery) + require.Equal(t, int64(1073741824), tk.Session().GetSessionVars().MemTracker.GetBytesLimit()) require.Equal(t, uint64(0), tk.Session().GetSessionVars().StmtCtx.MaxExecutionTime) } @@ -874,6 +876,7 @@ func TestNotEvolvePlanForReadStorageHint(t *testing.T) { tk := testkit.NewTestKit(t, store) tk.MustExec("use test") + tk.MustExec("set tidb_cost_model_version=2") tk.MustExec("drop table if exists t") tk.MustExec("create table t(a int, b int, index idx_a(a), index idx_b(b))") tk.MustExec("insert into t values (1,1), (2,2), (3,3), (4,4), (5,5), (6,6), (7,7), (8,8), (9,9), (10,10)") @@ -918,6 +921,7 @@ func TestBindingWithIsolationRead(t *testing.T) { tk := testkit.NewTestKit(t, store) tk.MustExec("use test") + tk.MustExec("set tidb_cost_model_version=2") tk.MustExec("drop table if exists t") tk.MustExec("create table t(a int, b int, index idx_a(a), index idx_b(b))") tk.MustExec("insert into t values (1,1), (2,2), (3,3), (4,4), (5,5), (6,6), (7,7), (8,8), (9,9), (10,10)") diff --git a/bindinfo/handle.go b/bindinfo/handle.go index c69f3e45fb2bb..f4a9d372e9d85 100644 --- a/bindinfo/handle.go +++ b/bindinfo/handle.go @@ -121,7 +121,8 @@ func (h *BindHandle) Reset(ctx sessionctx.Context) { h.bindInfo.parser = parser.New() h.invalidBindRecordMap.Value.Store(make(map[string]*bindRecordUpdate)) h.invalidBindRecordMap.flushFunc = func(record *BindRecord) error { - return h.DropBindRecord(record.OriginalSQL, record.Db, &record.Bindings[0]) + _, err := h.DropBindRecord(record.OriginalSQL, record.Db, &record.Bindings[0]) + return err } h.pendingVerifyBindRecordMap.Value.Store(make(map[string]*bindRecordUpdate)) h.pendingVerifyBindRecordMap.flushFunc = func(record *BindRecord) error { @@ -368,7 +369,7 @@ func (h *BindHandle) AddBindRecord(sctx sessionctx.Context, record *BindRecord) } // DropBindRecord drops a BindRecord to the storage and BindRecord int the cache. -func (h *BindHandle) DropBindRecord(originalSQL, db string, binding *Binding) (err error) { +func (h *BindHandle) DropBindRecord(originalSQL, db string, binding *Binding) (deletedRows uint64, err error) { db = strings.ToLower(db) h.bindInfo.Lock() h.sctx.Lock() @@ -380,9 +381,8 @@ func (h *BindHandle) DropBindRecord(originalSQL, db string, binding *Binding) (e exec, _ := h.sctx.Context.(sqlexec.SQLExecutor) _, err = exec.ExecuteInternal(ctx, "BEGIN PESSIMISTIC") if err != nil { - return err + return 0, err } - var deleteRows int defer func() { if err != nil { _, err1 := exec.ExecuteInternal(ctx, "ROLLBACK") @@ -391,7 +391,7 @@ func (h *BindHandle) DropBindRecord(originalSQL, db string, binding *Binding) (e } _, err = exec.ExecuteInternal(ctx, "COMMIT") - if err != nil || deleteRows == 0 { + if err != nil || deletedRows == 0 { return } @@ -404,7 +404,7 @@ func (h *BindHandle) DropBindRecord(originalSQL, db string, binding *Binding) (e // Lock mysql.bind_info to synchronize with CreateBindRecord / AddBindRecord / DropBindRecord on other tidb instances. if err = h.lockBindInfoTable(); err != nil { - return err + return 0, err } updateTs := types.NewTime(types.FromGoTime(time.Now()), mysql.TypeTimestamp, 3).String() @@ -416,9 +416,11 @@ func (h *BindHandle) DropBindRecord(originalSQL, db string, binding *Binding) (e _, err = exec.ExecuteInternal(ctx, `UPDATE mysql.bind_info SET status = %?, update_time = %? WHERE original_sql = %? AND update_time < %? AND bind_sql = %? and status != %?`, deleted, updateTs, originalSQL, updateTs, binding.BindSQL, deleted) } + if err != nil { + return 0, err + } - deleteRows = int(h.sctx.Context.GetSessionVars().StmtCtx.AffectedRows()) - return err + return h.sctx.Context.GetSessionVars().StmtCtx.AffectedRows(), nil } // SetBindRecordStatus set a BindRecord's status to the storage and bind cache. @@ -1185,7 +1187,8 @@ func (h *BindHandle) HandleEvolvePlanTask(sctx sessionctx.Context, adminEvolve b // since it is still in the bind record. Now we just drop it and if it is actually retryable, // we will hope for that we can capture this evolve task again. if err != nil { - return h.DropBindRecord(originalSQL, db, &binding) + _, err = h.DropBindRecord(originalSQL, db, &binding) + return err } // If the accepted plan timeouts, it is hard to decide the timeout for verify plan. // Currently we simply mark the verify plan as `using` if it could run successfully within maxTime. @@ -1195,7 +1198,8 @@ func (h *BindHandle) HandleEvolvePlanTask(sctx sessionctx.Context, adminEvolve b sctx.GetSessionVars().UsePlanBaselines = false verifyPlanTime, err := h.getRunningDuration(sctx, db, binding.BindSQL, maxTime) if err != nil { - return h.DropBindRecord(originalSQL, db, &binding) + _, err = h.DropBindRecord(originalSQL, db, &binding) + return err } if verifyPlanTime == -1 || (float64(verifyPlanTime)*acceptFactor > float64(currentPlanTime)) { binding.Status = Rejected diff --git a/bindinfo/handle_test.go b/bindinfo/handle_test.go index 7831dc1358775..01ff0628feb5c 100644 --- a/bindinfo/handle_test.go +++ b/bindinfo/handle_test.go @@ -547,6 +547,7 @@ func TestGlobalBinding(t *testing.T) { require.NotNil(t, bind.UpdateTime) _, err = tk.Exec("drop global " + testSQL.dropSQL) + require.Equal(t, uint64(1), tk.Session().AffectedRows()) require.NoError(t, err) bindData = dom.BindHandle().GetBindRecord(hash, sql, "test") require.Nil(t, bindData) diff --git a/bindinfo/main_test.go b/bindinfo/main_test.go index 2d358809e8059..65d9859fbea21 100644 --- a/bindinfo/main_test.go +++ b/bindinfo/main_test.go @@ -25,7 +25,9 @@ func TestMain(m *testing.M) { testsetup.SetupForCommonTest() opts := []goleak.Option{ goleak.IgnoreTopFunction("github.com/golang/glog.(*loggingT).flushDaemon"), + goleak.IgnoreTopFunction("github.com/lestrrat-go/httprc.runFetchWorker"), goleak.IgnoreTopFunction("go.etcd.io/etcd/client/pkg/v3/logutil.(*MergeLogger).outputLoop"), + goleak.IgnoreTopFunction("go.opencensus.io/stats/view.(*worker).start"), } goleak.VerifyTestMain(m, opts...) } diff --git a/br/pkg/backup/client.go b/br/pkg/backup/client.go index 062fb771c0e5e..6ce3d24b0e209 100644 --- a/br/pkg/backup/client.go +++ b/br/pkg/backup/client.go @@ -183,13 +183,17 @@ func (bc *Client) GetStorage() storage.ExternalStorage { return bc.storage } -// SetStorage set ExternalStorage for client. -func (bc *Client) SetStorage(ctx context.Context, backend *backuppb.StorageBackend, opts *storage.ExternalStorageOptions) error { - var err error - bc.storage, err = storage.New(ctx, backend, opts) +// SetStorageAndCheckNotInUse sets ExternalStorage for client and check storage not in used by others. +func (bc *Client) SetStorageAndCheckNotInUse( + ctx context.Context, + backend *backuppb.StorageBackend, + opts *storage.ExternalStorageOptions, +) error { + err := bc.SetStorage(ctx, backend, opts) if err != nil { return errors.Trace(err) } + // backupmeta already exists exist, err := bc.storage.FileExists(ctx, metautil.MetaFile) if err != nil { @@ -204,10 +208,22 @@ func (bc *Client) SetStorage(ctx context.Context, backend *backuppb.StorageBacke if err != nil { return err } - bc.backend = backend return nil } +// SetStorage sets ExternalStorage for client. +func (bc *Client) SetStorage( + ctx context.Context, + backend *backuppb.StorageBackend, + opts *storage.ExternalStorageOptions, +) error { + var err error + + bc.backend = backend + bc.storage, err = storage.New(ctx, backend, opts) + return errors.Trace(err) +} + // GetClusterID returns the cluster ID of the tidb cluster to backup. func (bc *Client) GetClusterID() uint64 { return bc.clusterID diff --git a/br/pkg/backup/main_test.go b/br/pkg/backup/main_test.go index 86aab670ef61a..7c6c43a5743c4 100644 --- a/br/pkg/backup/main_test.go +++ b/br/pkg/backup/main_test.go @@ -25,6 +25,7 @@ func TestMain(m *testing.M) { testsetup.SetupForCommonTest() opts := []goleak.Option{ goleak.IgnoreTopFunction("github.com/golang/glog.(*loggingT).flushDaemon"), + goleak.IgnoreTopFunction("github.com/lestrrat-go/httprc.runFetchWorker"), goleak.IgnoreTopFunction("github.com/klauspost/compress/zstd.(*blockDec).startDecoder"), goleak.IgnoreTopFunction("github.com/pingcap/goleveldb/leveldb.(*DB).mpoolDrain"), goleak.IgnoreTopFunction("go.etcd.io/etcd/client/pkg/v3/logutil.(*MergeLogger).outputLoop"), diff --git a/br/pkg/backup/schema.go b/br/pkg/backup/schema.go index d3269980fdbb2..066043c224064 100644 --- a/br/pkg/backup/schema.go +++ b/br/pkg/backup/schema.go @@ -181,7 +181,7 @@ func (s *schemaInfo) calculateChecksum( func (s *schemaInfo) dumpStatsToJSON(statsHandle *handle.Handle) error { jsonTable, err := statsHandle.DumpStatsToJSON( - s.dbInfo.Name.String(), s.tableInfo, nil) + s.dbInfo.Name.String(), s.tableInfo, nil, true) if err != nil { return errors.Trace(err) } diff --git a/br/pkg/checksum/main_test.go b/br/pkg/checksum/main_test.go index 2ce42a4dc3266..f81a602724a92 100644 --- a/br/pkg/checksum/main_test.go +++ b/br/pkg/checksum/main_test.go @@ -24,6 +24,7 @@ import ( func TestMain(m *testing.M) { opts := []goleak.Option{ goleak.IgnoreTopFunction("github.com/golang/glog.(*loggingT).flushDaemon"), + goleak.IgnoreTopFunction("github.com/lestrrat-go/httprc.runFetchWorker"), goleak.IgnoreTopFunction("github.com/klauspost/compress/zstd.(*blockDec).startDecoder"), goleak.IgnoreTopFunction("go.etcd.io/etcd/client/pkg/v3/logutil.(*MergeLogger).outputLoop"), } diff --git a/br/pkg/conn/main_test.go b/br/pkg/conn/main_test.go index 9ab9ec0d31297..f6df9f2c568a4 100644 --- a/br/pkg/conn/main_test.go +++ b/br/pkg/conn/main_test.go @@ -24,6 +24,7 @@ import ( func TestMain(m *testing.M) { opts := []goleak.Option{ goleak.IgnoreTopFunction("github.com/golang/glog.(*loggingT).flushDaemon"), + goleak.IgnoreTopFunction("github.com/lestrrat-go/httprc.runFetchWorker"), goleak.IgnoreTopFunction("go.etcd.io/etcd/client/pkg/v3/logutil.(*MergeLogger).outputLoop"), goleak.IgnoreTopFunction("go.opencensus.io/stats/view.(*worker).start"), } diff --git a/br/pkg/glue/BUILD.bazel b/br/pkg/glue/BUILD.bazel index 0e8dc90913d8c..dc993f47c31d8 100644 --- a/br/pkg/glue/BUILD.bazel +++ b/br/pkg/glue/BUILD.bazel @@ -5,20 +5,22 @@ go_library( srcs = [ "console_glue.go", "glue.go", + "progressing.go", ], importpath = "github.com/pingcap/tidb/br/pkg/glue", visibility = ["//visibility:public"], deps = [ - "//br/pkg/logutil", + "//br/pkg/utils", + "//ddl", "//domain", "//kv", "//parser/model", "//sessionctx", "@com_github_fatih_color//:color", - "@com_github_pingcap_log//:log", "@com_github_tikv_pd_client//:client", + "@com_github_vbauerster_mpb_v7//:mpb", + "@com_github_vbauerster_mpb_v7//decor", "@org_golang_x_term//:term", - "@org_uber_go_zap//:zap", ], ) diff --git a/br/pkg/glue/console_glue.go b/br/pkg/glue/console_glue.go index c69e24302e5ad..7a2ed1127ec5c 100644 --- a/br/pkg/glue/console_glue.go +++ b/br/pkg/glue/console_glue.go @@ -5,19 +5,17 @@ package glue import ( "fmt" "io" - "math" "os" "regexp" "strings" "time" "github.com/fatih/color" - "github.com/pingcap/log" - "github.com/pingcap/tidb/br/pkg/logutil" - "go.uber.org/zap" "golang.org/x/term" ) +const defaultTerminalWidth = 80 + // ConsoleOperations are some operations based on ConsoleGlue. type ConsoleOperations struct { ConsoleGlue @@ -35,7 +33,7 @@ type ExtraField func() [2]string func WithTimeCost() ExtraField { start := time.Now() return func() [2]string { - return [2]string{"take", time.Since(start).String()} + return [2]string{"take", time.Since(start).Round(time.Millisecond).String()} } } @@ -46,6 +44,24 @@ func WithConstExtraField(key string, value interface{}) ExtraField { } } +// WithCallbackExtraField adds an extra field with the callback. +func WithCallbackExtraField(key string, value func() string) ExtraField { + return func() [2]string { + return [2]string{key, value()} + } +} + +func printFinalMessage(extraFields []ExtraField) func() string { + return func() string { + fields := make([]string, 0, len(extraFields)) + for _, fieldFunc := range extraFields { + field := fieldFunc() + fields = append(fields, fmt.Sprintf("%s = %s", field[0], color.New(color.Bold).Sprint(field[1]))) + } + return fmt.Sprintf("%s { %s }", color.HiGreenString("DONE"), strings.Join(fields, ", ")) + } +} + // ShowTask prints a task start information, and mark as finished when the returned function called. // This is for TUI presenting. func (ops ConsoleOperations) ShowTask(message string, extraFields ...ExtraField) func() { @@ -56,7 +72,7 @@ func (ops ConsoleOperations) ShowTask(message string, extraFields ...ExtraField) field := fieldFunc() fields = append(fields, fmt.Sprintf("%s = %s", field[0], color.New(color.Bold).Sprint(field[1]))) } - ops.Printf("%s; %s\n", color.HiGreenString("DONE"), strings.Join(fields, ", ")) + ops.Printf("%s { %s }\n", color.HiGreenString("DONE"), strings.Join(fields, ", ")) } } @@ -90,26 +106,50 @@ func (ops ConsoleOperations) PromptBool(p string) bool { } } -func (ops *ConsoleOperations) CreateTable() *Table { +func (ops ConsoleOperations) IsInteractive() bool { + f, ok := ops.In().(*os.File) + if !ok { + return false + } + return term.IsTerminal(int(f.Fd())) +} + +func (ops ConsoleOperations) Scanln(args ...interface{}) (int, error) { + return fmt.Fscanln(ops.In(), args...) +} + +func (ops ConsoleOperations) GetWidth() int { + f, ok := ops.In().(*os.File) + if !ok { + return defaultTerminalWidth + } + w, _, err := term.GetSize(int(f.Fd())) + if err != nil { + return defaultTerminalWidth + } + return w +} + +func (ops ConsoleOperations) CreateTable() *Table { return &Table{ console: ops, } } func (ops ConsoleOperations) Print(args ...interface{}) { - fmt.Fprint(ops, args...) + _, _ = fmt.Fprint(ops.Out(), args...) } func (ops ConsoleOperations) Println(args ...interface{}) { - fmt.Fprintln(ops, args...) + _, _ = fmt.Fprintln(ops.Out(), args...) } func (ops ConsoleOperations) Printf(format string, args ...interface{}) { - fmt.Fprintf(ops, format, args...) + _, _ = fmt.Fprintf(ops.Out(), format, args...) } type Table struct { - console *ConsoleOperations + console ConsoleOperations items [][2]string } @@ -161,31 +201,25 @@ func (t *Table) Print() { // ConsoleGlue is the glue between BR and some type of console, // which is the port for interact with the user. +// Generally, this is a abstraction of an UNIX terminal. type ConsoleGlue interface { - io.Writer - - // IsInteractive checks whether the shell supports input. - IsInteractive() bool - Scanln(args ...interface{}) (int, error) - GetWidth() int + // Out returns the output port of the console. + Out() io.Writer + // In returns the input of the console. + // Usually is should be an *os.File. + In() io.Reader } +// NoOPConsoleGlue is the glue for "embedded" BR, say, BRIE via SQL. +// This Glue simply drop all console operations. type NoOPConsoleGlue struct{} -func (NoOPConsoleGlue) Write(bs []byte) (int, error) { - return len(bs), nil -} - -func (NoOPConsoleGlue) IsInteractive() bool { - return false -} - -func (NoOPConsoleGlue) Scanln(args ...interface{}) (int, error) { - return 0, nil +func (NoOPConsoleGlue) In() io.Reader { + return strings.NewReader("") } -func (NoOPConsoleGlue) GetWidth() int { - return math.MaxUint32 +func (NoOPConsoleGlue) Out() io.Writer { + return io.Discard } func GetConsole(g Glue) ConsoleOperations { @@ -195,30 +229,16 @@ func GetConsole(g Glue) ConsoleOperations { return ConsoleOperations{ConsoleGlue: NoOPConsoleGlue{}} } +// StdIOGlue is the console glue for CLI applications, like the BR CLI. type StdIOGlue struct{} -func (s StdIOGlue) Write(p []byte) (n int, err error) { - return os.Stdout.Write(p) +func (s StdIOGlue) Out() io.Writer { + return os.Stdout } -// IsInteractive checks whether the shell supports input. -func (s StdIOGlue) IsInteractive() bool { +func (s StdIOGlue) In() io.Reader { // should we detach whether we are in a interactive tty here? - return term.IsTerminal(int(os.Stdin.Fd())) -} - -func (s StdIOGlue) Scanln(args ...interface{}) (int, error) { - return fmt.Scanln(args...) -} - -func (s StdIOGlue) GetWidth() int { - width, _, err := term.GetSize(int(os.Stdin.Fd())) - if err != nil { - log.Warn("failed to get terminal size, using infinity", logutil.ShortError(err), zap.Int("fd", int(os.Stdin.Fd()))) - return math.MaxUint32 - } - log.Debug("terminal width got.", zap.Int("width", width)) - return width + return os.Stdin } // PrettyString is a string with ANSI escape sequence which would change its color. diff --git a/br/pkg/glue/console_glue_test.go b/br/pkg/glue/console_glue_test.go index 61a07ac6fc7ed..871e193ee0998 100644 --- a/br/pkg/glue/console_glue_test.go +++ b/br/pkg/glue/console_glue_test.go @@ -108,8 +108,8 @@ type writerGlue struct { w io.Writer } -func (w writerGlue) Write(b []byte) (int, error) { - return w.w.Write(b) +func (w writerGlue) Out() io.Writer { + return w.w } func testPrintFrame(t *testing.T) { diff --git a/br/pkg/glue/glue.go b/br/pkg/glue/glue.go index cb4681dad4226..450a0b73ec659 100644 --- a/br/pkg/glue/glue.go +++ b/br/pkg/glue/glue.go @@ -5,6 +5,7 @@ package glue import ( "context" + "github.com/pingcap/tidb/ddl" "github.com/pingcap/tidb/domain" "github.com/pingcap/tidb/kv" "github.com/pingcap/tidb/parser/model" @@ -42,7 +43,7 @@ type Session interface { Execute(ctx context.Context, sql string) error ExecuteInternal(ctx context.Context, sql string, args ...interface{}) error CreateDatabase(ctx context.Context, schema *model.DBInfo) error - CreateTable(ctx context.Context, dbName model.CIStr, table *model.TableInfo) error + CreateTable(ctx context.Context, dbName model.CIStr, table *model.TableInfo, cs ...ddl.CreateTableWithInfoConfigurier) error CreatePlacementPolicy(ctx context.Context, policy *model.PolicyInfo) error Close() GetGlobalVariable(name string) (string, error) @@ -51,7 +52,7 @@ type Session interface { // BatchCreateTableSession is an interface to batch create table parallelly type BatchCreateTableSession interface { - CreateTables(ctx context.Context, tables map[string][]*model.TableInfo) error + CreateTables(ctx context.Context, tables map[string][]*model.TableInfo, cs ...ddl.CreateTableWithInfoConfigurier) error } // Progress is an interface recording the current execution progress. diff --git a/br/pkg/glue/progressing.go b/br/pkg/glue/progressing.go new file mode 100644 index 0000000000000..8d5808c00c39a --- /dev/null +++ b/br/pkg/glue/progressing.go @@ -0,0 +1,142 @@ +// Copyright 2022 PingCAP, Inc. Licensed under Apache-2.0. + +package glue + +import ( + "context" + "fmt" + "io" + "os" + "time" + + "github.com/fatih/color" + "github.com/pingcap/tidb/br/pkg/utils" + "github.com/vbauerster/mpb/v7" + "github.com/vbauerster/mpb/v7/decor" + "golang.org/x/term" +) + +type pbProgress struct { + bar *mpb.Bar + progress *mpb.Progress + ops ConsoleOperations +} + +// Inc increases the progress. This method must be goroutine-safe, and can +// be called from any goroutine. +func (p pbProgress) Inc() { + p.bar.Increment() +} + +// IncBy increases the progress by n. +func (p pbProgress) IncBy(n int64) { + p.bar.IncrBy(int(n)) +} + +func (p pbProgress) GetCurrent() int64 { + return p.bar.Current() +} + +// Close marks the progress as 100% complete and that Inc() can no longer be +// called. +func (p pbProgress) Close() { + if p.bar.Completed() || p.bar.Aborted() { + return + } + p.bar.Abort(false) +} + +// Wait implements the ProgressWaiter interface. +func (p pbProgress) Wait(ctx context.Context) error { + ch := make(chan struct{}) + go func() { + p.progress.Wait() + close(ch) + }() + select { + case <-ctx.Done(): + return ctx.Err() + case <-ch: + return nil + } +} + +// ProgressWaiter is the extended `Progress“: which provides a `wait` method to +// allow caller wait until all unit in the progress finished. +type ProgressWaiter interface { + Progress + Wait(context.Context) error +} + +type noOPWaiter struct { + Progress +} + +func (nw noOPWaiter) Wait(context.Context) error { + return nil +} + +// cbOnComplete like `decor.OnComplete`, however allow the message provided by a function. +func cbOnComplete(decl decor.Decorator, cb func() string) decor.DecorFunc { + return func(s decor.Statistics) string { + if s.Completed { + return cb() + } + return decl.Decor(s) + } +} + +func (ops ConsoleOperations) OutputIsTTY() bool { + f, ok := ops.Out().(*os.File) + if !ok { + return false + } + return term.IsTerminal(int(f.Fd())) +} + +// StartProgressBar starts a progress bar with the console operations. +// Note: This function has overlapped function with `glue.StartProgress`, however this supports display extra fields +// +// after success, and implement by `mpb` (instead of `pb`). +// +// Note': Maybe replace the old `StartProgress` with `mpb` too. +func (ops ConsoleOperations) StartProgressBar(title string, total int, extraFields ...ExtraField) ProgressWaiter { + if !ops.OutputIsTTY() { + return ops.startProgressBarOverDummy(title, total, extraFields...) + } + return ops.startProgressBarOverTTY(title, total, extraFields...) +} + +func (ops ConsoleOperations) startProgressBarOverDummy(title string, total int, extraFields ...ExtraField) ProgressWaiter { + return noOPWaiter{utils.StartProgress(context.TODO(), title, int64(total), true, nil)} +} + +func (ops ConsoleOperations) startProgressBarOverTTY(title string, total int, extraFields ...ExtraField) ProgressWaiter { + pb := mpb.New(mpb.WithOutput(ops.Out()), mpb.WithRefreshRate(400*time.Millisecond)) + greenTitle := color.GreenString(title) + bar := pb.New(int64(total), + // Play as if the old BR style. + mpb.BarStyle().Lbound("<").Filler("-").Padding(".").Rbound(">").Tip("-", "\\", "|", "/", "-").TipOnComplete("-"), + mpb.BarFillerMiddleware(func(bf mpb.BarFiller) mpb.BarFiller { + return mpb.BarFillerFunc(func(w io.Writer, reqWidth int, stat decor.Statistics) { + if stat.Aborted || stat.Completed { + return + } + bf.Fill(w, reqWidth, stat) + }) + }), + mpb.PrependDecorators(decor.OnAbort(decor.OnComplete(decor.Name(greenTitle), fmt.Sprintf("%s ::", title)), fmt.Sprintf("%s ::", title))), + mpb.AppendDecorators(decor.OnAbort(decor.Any(cbOnComplete(decor.NewPercentage("%02.2f"), printFinalMessage(extraFields))), color.RedString("ABORTED"))), + ) + + // If total is zero, finish right now. + if total == 0 { + bar.SetTotal(0, true) + } + + return pbProgress{ + bar: bar, + ops: ops, + progress: pb, + } +} diff --git a/br/pkg/gluetidb/glue.go b/br/pkg/gluetidb/glue.go index 459437e33b091..5483380d03e65 100644 --- a/br/pkg/gluetidb/glue.go +++ b/br/pkg/gluetidb/glue.go @@ -204,7 +204,7 @@ func (gs *tidbSession) CreatePlacementPolicy(ctx context.Context, policy *model. } // CreateTables implements glue.BatchCreateTableSession. -func (gs *tidbSession) CreateTables(ctx context.Context, tables map[string][]*model.TableInfo) error { +func (gs *tidbSession) CreateTables(ctx context.Context, tables map[string][]*model.TableInfo, cs ...ddl.CreateTableWithInfoConfigurier) error { d := domain.GetDomain(gs.se).DDL() var dbName model.CIStr @@ -231,7 +231,7 @@ func (gs *tidbSession) CreateTables(ctx context.Context, tables map[string][]*mo cloneTables = append(cloneTables, table) } gs.se.SetValue(sessionctx.QueryString, queryBuilder.String()) - err := d.BatchCreateTableWithInfo(gs.se, dbName, cloneTables, ddl.OnExistIgnore) + err := d.BatchCreateTableWithInfo(gs.se, dbName, cloneTables, append(cs, ddl.OnExistIgnore)...) if err != nil { //It is possible to failure when TiDB does not support model.ActionCreateTables. //In this circumstance, BatchCreateTableWithInfo returns errno.ErrInvalidDDLJob, @@ -245,7 +245,7 @@ func (gs *tidbSession) CreateTables(ctx context.Context, tables map[string][]*mo } // CreateTable implements glue.Session. -func (gs *tidbSession) CreateTable(ctx context.Context, dbName model.CIStr, table *model.TableInfo) error { +func (gs *tidbSession) CreateTable(ctx context.Context, dbName model.CIStr, table *model.TableInfo, cs ...ddl.CreateTableWithInfoConfigurier) error { d := domain.GetDomain(gs.se).DDL() query, err := gs.showCreateTable(table) if err != nil { @@ -259,7 +259,8 @@ func (gs *tidbSession) CreateTable(ctx context.Context, dbName model.CIStr, tabl newPartition.Definitions = append([]model.PartitionDefinition{}, table.Partition.Definitions...) table.Partition = &newPartition } - return d.CreateTableWithInfo(gs.se, dbName, table, ddl.OnExistIgnore) + + return d.CreateTableWithInfo(gs.se, dbName, table, append(cs, ddl.OnExistIgnore)...) } // Close implements glue.Session. @@ -349,13 +350,13 @@ func (s *mockSession) CreatePlacementPolicy(ctx context.Context, policy *model.P } // CreateTables implements glue.BatchCreateTableSession. -func (s *mockSession) CreateTables(ctx context.Context, tables map[string][]*model.TableInfo) error { +func (s *mockSession) CreateTables(ctx context.Context, tables map[string][]*model.TableInfo, cs ...ddl.CreateTableWithInfoConfigurier) error { log.Fatal("unimplemented CreateDatabase for mock session") return nil } // CreateTable implements glue.Session. -func (s *mockSession) CreateTable(ctx context.Context, dbName model.CIStr, table *model.TableInfo) error { +func (s *mockSession) CreateTable(ctx context.Context, dbName model.CIStr, table *model.TableInfo, cs ...ddl.CreateTableWithInfoConfigurier) error { log.Fatal("unimplemented CreateDatabase for mock session") return nil } diff --git a/br/pkg/lightning/checkpoints/checkpoints.go b/br/pkg/lightning/checkpoints/checkpoints.go index 44f2349b672b2..13817e28eb668 100644 --- a/br/pkg/lightning/checkpoints/checkpoints.go +++ b/br/pkg/lightning/checkpoints/checkpoints.go @@ -517,7 +517,15 @@ func OpenCheckpointsDB(ctx context.Context, cfg *config.Config) (DB, error) { switch cfg.Checkpoint.Driver { case config.CheckpointDriverMySQL: - db, err := common.ConnectMySQL(cfg.Checkpoint.DSN) + var ( + db *sql.DB + err error + ) + if cfg.Checkpoint.MySQLParam != nil { + db, err = cfg.Checkpoint.MySQLParam.Connect() + } else { + db, err = sql.Open("mysql", cfg.Checkpoint.DSN) + } if err != nil { return nil, errors.Trace(err) } @@ -546,7 +554,15 @@ func IsCheckpointsDBExists(ctx context.Context, cfg *config.Config) (bool, error } switch cfg.Checkpoint.Driver { case config.CheckpointDriverMySQL: - db, err := sql.Open("mysql", cfg.Checkpoint.DSN) + var ( + db *sql.DB + err error + ) + if cfg.Checkpoint.MySQLParam != nil { + db, err = cfg.Checkpoint.MySQLParam.Connect() + } else { + db, err = sql.Open("mysql", cfg.Checkpoint.DSN) + } if err != nil { return false, errors.Trace(err) } diff --git a/br/pkg/lightning/checkpoints/main_test.go b/br/pkg/lightning/checkpoints/main_test.go index aa707ae68ea51..2d281fb84dd1e 100644 --- a/br/pkg/lightning/checkpoints/main_test.go +++ b/br/pkg/lightning/checkpoints/main_test.go @@ -25,6 +25,7 @@ func TestMain(m *testing.M) { testsetup.SetupForCommonTest() opts := []goleak.Option{ goleak.IgnoreTopFunction("github.com/golang/glog.(*loggingT).flushDaemon"), + goleak.IgnoreTopFunction("github.com/lestrrat-go/httprc.runFetchWorker"), goleak.IgnoreTopFunction("github.com/klauspost/compress/zstd.(*blockDec).startDecoder"), goleak.IgnoreTopFunction("go.opencensus.io/stats/view.(*worker).start"), } diff --git a/br/pkg/lightning/common/main_test.go b/br/pkg/lightning/common/main_test.go index 89c3779ccc1b2..be6188947f62c 100644 --- a/br/pkg/lightning/common/main_test.go +++ b/br/pkg/lightning/common/main_test.go @@ -25,6 +25,7 @@ func TestMain(m *testing.M) { testsetup.SetupForCommonTest() opts := []goleak.Option{ goleak.IgnoreTopFunction("github.com/golang/glog.(*loggingT).flushDaemon"), + goleak.IgnoreTopFunction("github.com/lestrrat-go/httprc.runFetchWorker"), goleak.IgnoreTopFunction("go.opencensus.io/stats/view.(*worker).start"), } goleak.VerifyTestMain(m, opts...) diff --git a/br/pkg/lightning/common/util.go b/br/pkg/lightning/common/util.go index cc03f0ec68dca..679ba6cc5d48b 100644 --- a/br/pkg/lightning/common/util.go +++ b/br/pkg/lightning/common/util.go @@ -23,7 +23,6 @@ import ( "io" "net" "net/http" - "net/url" "os" "strconv" "strings" @@ -58,28 +57,38 @@ type MySQLConnectParam struct { Vars map[string]string } -func (param *MySQLConnectParam) ToDSN() string { - hostPort := net.JoinHostPort(param.Host, strconv.Itoa(param.Port)) - dsn := fmt.Sprintf("%s:%s@tcp(%s)/?charset=utf8mb4&sql_mode='%s'&maxAllowedPacket=%d&tls=%s", - param.User, param.Password, hostPort, - param.SQLMode, param.MaxAllowedPacket, param.TLS) +func (param *MySQLConnectParam) ToDriverConfig() *mysql.Config { + cfg := mysql.NewConfig() + cfg.Params = make(map[string]string) + + cfg.User = param.User + cfg.Passwd = param.Password + cfg.Net = "tcp" + cfg.Addr = net.JoinHostPort(param.Host, strconv.Itoa(param.Port)) + cfg.Params["charset"] = "utf8mb4" + cfg.Params["sql_mode"] = fmt.Sprintf("'%s'", param.SQLMode) + cfg.MaxAllowedPacket = int(param.MaxAllowedPacket) + cfg.TLSConfig = param.TLS for k, v := range param.Vars { - dsn += fmt.Sprintf("&%s='%s'", k, url.QueryEscape(v)) + cfg.Params[k] = fmt.Sprintf("'%s'", v) } - - return dsn + return cfg } -func tryConnectMySQL(dsn string) (*sql.DB, error) { - driverName := "mysql" - failpoint.Inject("MockMySQLDriver", func(val failpoint.Value) { - driverName = val.(string) +func tryConnectMySQL(cfg *mysql.Config) (*sql.DB, error) { + failpoint.Inject("MustMySQLPassword", func(val failpoint.Value) { + pwd := val.(string) + if cfg.Passwd != pwd { + failpoint.Return(nil, &mysql.MySQLError{Number: tmysql.ErrAccessDenied, Message: "access denied"}) + } + failpoint.Return(nil, nil) }) - db, err := sql.Open(driverName, dsn) + c, err := mysql.NewConnector(cfg) if err != nil { return nil, errors.Trace(err) } + db := sql.OpenDB(c) if err = db.Ping(); err != nil { _ = db.Close() return nil, errors.Trace(err) @@ -89,13 +98,9 @@ func tryConnectMySQL(dsn string) (*sql.DB, error) { // ConnectMySQL connects MySQL with the dsn. If access is denied and the password is a valid base64 encoding, // we will try to connect MySQL with the base64 decoding of the password. -func ConnectMySQL(dsn string) (*sql.DB, error) { - cfg, err := mysql.ParseDSN(dsn) - if err != nil { - return nil, errors.Trace(err) - } +func ConnectMySQL(cfg *mysql.Config) (*sql.DB, error) { // Try plain password first. - db, firstErr := tryConnectMySQL(dsn) + db, firstErr := tryConnectMySQL(cfg) if firstErr == nil { return db, nil } @@ -104,9 +109,9 @@ func ConnectMySQL(dsn string) (*sql.DB, error) { // If password is encoded by base64, try the decoded string as well. if password, decodeErr := base64.StdEncoding.DecodeString(cfg.Passwd); decodeErr == nil && string(password) != cfg.Passwd { cfg.Passwd = string(password) - db, err = tryConnectMySQL(cfg.FormatDSN()) + db2, err := tryConnectMySQL(cfg) if err == nil { - return db, nil + return db2, nil } } } @@ -115,7 +120,7 @@ func ConnectMySQL(dsn string) (*sql.DB, error) { } func (param *MySQLConnectParam) Connect() (*sql.DB, error) { - db, err := ConnectMySQL(param.ToDSN()) + db, err := ConnectMySQL(param.ToDriverConfig()) if err != nil { return nil, errors.Trace(err) } diff --git a/br/pkg/lightning/common/util_test.go b/br/pkg/lightning/common/util_test.go index c7c95b44f69bf..a192ecea11906 100644 --- a/br/pkg/lightning/common/util_test.go +++ b/br/pkg/lightning/common/util_test.go @@ -16,16 +16,12 @@ package common_test import ( "context" - "database/sql" - "database/sql/driver" "encoding/base64" "encoding/json" "fmt" "io" - "math/rand" "net/http" "net/http/httptest" - "strconv" "testing" "time" @@ -35,7 +31,6 @@ import ( "github.com/pingcap/failpoint" "github.com/pingcap/tidb/br/pkg/lightning/common" "github.com/pingcap/tidb/br/pkg/lightning/log" - tmysql "github.com/pingcap/tidb/errno" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" ) @@ -85,66 +80,14 @@ func TestGetJSON(t *testing.T) { require.Regexp(t, ".*http status code != 200.*", err.Error()) } -func TestToDSN(t *testing.T) { - param := common.MySQLConnectParam{ - Host: "127.0.0.1", - Port: 4000, - User: "root", - Password: "123456", - SQLMode: "strict", - MaxAllowedPacket: 1234, - TLS: "cluster", - Vars: map[string]string{ - "tidb_distsql_scan_concurrency": "1", - }, - } - require.Equal(t, "root:123456@tcp(127.0.0.1:4000)/?charset=utf8mb4&sql_mode='strict'&maxAllowedPacket=1234&tls=cluster&tidb_distsql_scan_concurrency='1'", param.ToDSN()) - - param.Host = "::1" - require.Equal(t, "root:123456@tcp([::1]:4000)/?charset=utf8mb4&sql_mode='strict'&maxAllowedPacket=1234&tls=cluster&tidb_distsql_scan_concurrency='1'", param.ToDSN()) -} - -type mockDriver struct { - driver.Driver - plainPsw string -} - -func (m *mockDriver) Open(dsn string) (driver.Conn, error) { - cfg, err := mysql.ParseDSN(dsn) - if err != nil { - return nil, err - } - accessDenied := cfg.Passwd != m.plainPsw - return &mockConn{accessDenied: accessDenied}, nil -} - -type mockConn struct { - driver.Conn - driver.Pinger - accessDenied bool -} - -func (c *mockConn) Ping(ctx context.Context) error { - if c.accessDenied { - return &mysql.MySQLError{Number: tmysql.ErrAccessDenied, Message: "access denied"} - } - return nil -} - -func (c *mockConn) Close() error { - return nil -} - func TestConnect(t *testing.T) { plainPsw := "dQAUoDiyb1ucWZk7" - driverName := "mysql-mock-" + strconv.Itoa(rand.Int()) - sql.Register(driverName, &mockDriver{plainPsw: plainPsw}) require.NoError(t, failpoint.Enable( - "github.com/pingcap/tidb/br/pkg/lightning/common/MockMySQLDriver", - fmt.Sprintf("return(\"%s\")", driverName))) + "github.com/pingcap/tidb/br/pkg/lightning/common/MustMySQLPassword", + fmt.Sprintf("return(\"%s\")", plainPsw))) defer func() { - require.NoError(t, failpoint.Disable("github.com/pingcap/tidb/br/pkg/lightning/common/MockMySQLDriver")) + require.NoError(t, failpoint.Disable("github.com/pingcap/tidb/br/pkg/lightning/common/MustMySQLPassword")) }() param := common.MySQLConnectParam{ @@ -155,13 +98,11 @@ func TestConnect(t *testing.T) { SQLMode: "strict", MaxAllowedPacket: 1234, } - db, err := param.Connect() + _, err := param.Connect() require.NoError(t, err) - require.NoError(t, db.Close()) param.Password = base64.StdEncoding.EncodeToString([]byte(plainPsw)) - db, err = param.Connect() + _, err = param.Connect() require.NoError(t, err) - require.NoError(t, db.Close()) } func TestIsContextCanceledError(t *testing.T) { diff --git a/br/pkg/lightning/config/BUILD.bazel b/br/pkg/lightning/config/BUILD.bazel index fba6b5abd7b0c..6d2cb32a9ccc7 100644 --- a/br/pkg/lightning/config/BUILD.bazel +++ b/br/pkg/lightning/config/BUILD.bazel @@ -43,7 +43,6 @@ go_test( deps = [ ":config", "//br/pkg/lightning/common", - "//parser/mysql", "@com_github_burntsushi_toml//:toml", "@com_github_stretchr_testify//require", ], diff --git a/br/pkg/lightning/config/config.go b/br/pkg/lightning/config/config.go index 4c1af0d2baff3..fdbe962433806 100644 --- a/br/pkg/lightning/config/config.go +++ b/br/pkg/lightning/config/config.go @@ -454,6 +454,7 @@ type MydumperRuntime struct { ReadBlockSize ByteSize `toml:"read-block-size" json:"read-block-size"` BatchSize ByteSize `toml:"batch-size" json:"batch-size"` BatchImportRatio float64 `toml:"batch-import-ratio" json:"batch-import-ratio"` + SourceID string `toml:"source-id" json:"source-id"` SourceDir string `toml:"data-source-dir" json:"data-source-dir"` CharacterSet string `toml:"character-set" json:"character-set"` CSV CSVConfig `toml:"csv" json:"csv"` @@ -553,11 +554,12 @@ type TikvImporter struct { } type Checkpoint struct { - Schema string `toml:"schema" json:"schema"` - DSN string `toml:"dsn" json:"-"` // DSN may contain password, don't expose this to JSON. - Driver string `toml:"driver" json:"driver"` - Enable bool `toml:"enable" json:"enable"` - KeepAfterSuccess CheckpointKeepStrategy `toml:"keep-after-success" json:"keep-after-success"` + Schema string `toml:"schema" json:"schema"` + DSN string `toml:"dsn" json:"-"` // DSN may contain password, don't expose this to JSON. + MySQLParam *common.MySQLConnectParam `toml:"-" json:"-"` // For some security reason, we use MySQLParam instead of DSN. + Driver string `toml:"driver" json:"driver"` + Enable bool `toml:"enable" json:"enable"` + KeepAfterSuccess CheckpointKeepStrategy `toml:"keep-after-success" json:"keep-after-success"` } type Cron struct { @@ -1142,7 +1144,7 @@ func (cfg *Config) AdjustCheckPoint() { MaxAllowedPacket: defaultMaxAllowedPacket, TLS: cfg.TiDB.TLS, } - cfg.Checkpoint.DSN = param.ToDSN() + cfg.Checkpoint.MySQLParam = ¶m case CheckpointDriverFile: cfg.Checkpoint.DSN = "/tmp/" + cfg.Checkpoint.Schema + ".pb" } diff --git a/br/pkg/lightning/config/config_test.go b/br/pkg/lightning/config/config_test.go index 2a4dcbe7cdad9..e74094a6b9066 100644 --- a/br/pkg/lightning/config/config_test.go +++ b/br/pkg/lightning/config/config_test.go @@ -32,7 +32,6 @@ import ( "github.com/BurntSushi/toml" "github.com/pingcap/tidb/br/pkg/lightning/common" "github.com/pingcap/tidb/br/pkg/lightning/config" - "github.com/pingcap/tidb/parser/mysql" "github.com/stretchr/testify/require" ) @@ -626,7 +625,9 @@ func TestLoadConfig(t *testing.T) { taskCfg.TiDB.DistSQLScanConcurrency = 1 err = taskCfg.Adjust(context.Background()) require.NoError(t, err) - require.Equal(t, "guest:12345@tcp(172.16.30.11:4001)/?charset=utf8mb4&sql_mode='"+mysql.DefaultSQLMode+"'&maxAllowedPacket=67108864&tls=false", taskCfg.Checkpoint.DSN) + equivalentDSN := taskCfg.Checkpoint.MySQLParam.ToDriverConfig().FormatDSN() + expectedDSN := "guest:12345@tcp(172.16.30.11:4001)/?tls=false&maxAllowedPacket=67108864&charset=utf8mb4&sql_mode=%27ONLY_FULL_GROUP_BY%2CSTRICT_TRANS_TABLES%2CNO_ZERO_IN_DATE%2CNO_ZERO_DATE%2CERROR_FOR_DIVISION_BY_ZERO%2CNO_AUTO_CREATE_USER%2CNO_ENGINE_SUBSTITUTION%27" + require.Equal(t, expectedDSN, equivalentDSN) result := taskCfg.String() require.Regexp(t, `.*"pd-addr":"172.16.30.11:2379,172.16.30.12:2379".*`, result) diff --git a/br/pkg/lightning/mydump/loader.go b/br/pkg/lightning/mydump/loader.go index 5b77af8f851c2..98661d3a46f8c 100644 --- a/br/pkg/lightning/mydump/loader.go +++ b/br/pkg/lightning/mydump/loader.go @@ -82,6 +82,7 @@ type SourceFileMeta struct { Compression Compression SortKey string FileSize int64 + ExtendData ExtendColumnData } // NewMDTableMeta creates an Mydumper table meta with specified character set. @@ -124,6 +125,8 @@ type MDLoaderSetupConfig struct { // ReturnPartialResultOnError specifies whether the currently scanned files are analyzed, // and return the partial result. ReturnPartialResultOnError bool + // FileIter controls the file iteration policy when constructing a MDLoader. + FileIter FileIterator } // DefaultMDLoaderSetupConfig generates a default MDLoaderSetupConfig. @@ -131,6 +134,7 @@ func DefaultMDLoaderSetupConfig() *MDLoaderSetupConfig { return &MDLoaderSetupConfig{ MaxScanFiles: 0, // By default, the loader will scan all the files. ReturnPartialResultOnError: false, + FileIter: nil, } } @@ -155,6 +159,13 @@ func ReturnPartialResultOnError(supportPartialResult bool) MDLoaderSetupOption { } } +// WithFileIterator generates an option that specifies the file iteration policy. +func WithFileIterator(fileIter FileIterator) MDLoaderSetupOption { + return func(cfg *MDLoaderSetupConfig) { + cfg.FileIter = fileIter + } +} + // MDLoader is for 'Mydumper File Loader', which loads the files in the data source and generates a set of metadata. type MDLoader struct { store storage.ExternalStorage @@ -167,6 +178,7 @@ type MDLoader struct { } type mdLoaderSetup struct { + sourceID string loader *MDLoader dbSchemas []FileInfo tableSchemas []FileInfo @@ -200,6 +212,12 @@ func NewMyDumpLoaderWithStore(ctx context.Context, cfg *config.Config, store sto for _, o := range opts { o(mdLoaderSetupCfg) } + if mdLoaderSetupCfg.FileIter == nil { + mdLoaderSetupCfg.FileIter = &allFileIterator{ + store: store, + maxScanFiles: mdLoaderSetupCfg.MaxScanFiles, + } + } if len(cfg.Routes) > 0 && len(cfg.Mydumper.FileRouters) > 0 { return nil, common.ErrInvalidConfig.GenWithStack("table route is deprecated, can't config both [routes] and [mydumper.files]") @@ -245,13 +263,14 @@ func NewMyDumpLoaderWithStore(ctx context.Context, cfg *config.Config, store sto } setup := mdLoaderSetup{ + sourceID: cfg.Mydumper.SourceID, loader: mdl, dbIndexMap: make(map[string]int), tableIndexMap: make(map[filter.Table]int), setupCfg: mdLoaderSetupCfg, } - if err := setup.setup(ctx, mdl.store); err != nil { + if err := setup.setup(ctx); err != nil { if mdLoaderSetupCfg.ReturnPartialResultOnError { return mdl, errors.Trace(err) } @@ -289,6 +308,12 @@ type FileInfo struct { FileMeta SourceFileMeta } +// ExtendColumnData contains the extended column names and values information for a table. +type ExtendColumnData struct { + Columns []string + Values []string +} + // setup the `s.loader.dbs` slice by scanning all *.sql files inside `dir`. // // The database and tables are inserted in a consistent order, so creating an @@ -303,7 +328,7 @@ type FileInfo struct { // Will sort tables by table size, this means that the big table is imported // at the latest, which to avoid large table take a long time to import and block // small table to release index worker. -func (s *mdLoaderSetup) setup(ctx context.Context, store storage.ExternalStorage) error { +func (s *mdLoaderSetup) setup(ctx context.Context) error { /* Mydumper file names format db —— {db}-schema-create.sql @@ -311,7 +336,11 @@ func (s *mdLoaderSetup) setup(ctx context.Context, store storage.ExternalStorage sql —— {db}.{table}.{part}.sql / {db}.{table}.sql */ var gerr error - if err := s.listFiles(ctx, store); err != nil { + fileIter := s.setupCfg.FileIter + if fileIter == nil { + return errors.New("file iterator is not defined") + } + if err := fileIter.IterateFiles(ctx, s.constructFileInfo); err != nil { if s.setupCfg.ReturnPartialResultOnError { gerr = err } else { @@ -380,55 +409,74 @@ func (s *mdLoaderSetup) setup(ctx context.Context, store storage.ExternalStorage return gerr } -func (s *mdLoaderSetup) listFiles(ctx context.Context, store storage.ExternalStorage) error { +// FileHandler is the interface to handle the file give the path and size. +// It is mainly used in the `FileIterator` as parameters. +type FileHandler func(ctx context.Context, path string, size int64) error + +// FileIterator is the interface to iterate files in a data source. +// Use this interface to customize the file iteration policy. +type FileIterator interface { + IterateFiles(ctx context.Context, hdl FileHandler) error +} + +type allFileIterator struct { + store storage.ExternalStorage + maxScanFiles int +} + +func (iter *allFileIterator) IterateFiles(ctx context.Context, hdl FileHandler) error { // `filepath.Walk` yields the paths in a deterministic (lexicographical) order, // meaning the file and chunk orders will be the same everytime it is called // (as long as the source is immutable). totalScannedFileCount := 0 - err := store.WalkDir(ctx, &storage.WalkOption{}, func(path string, size int64) error { - logger := log.FromContext(ctx).With(zap.String("path", path)) + err := iter.store.WalkDir(ctx, &storage.WalkOption{}, func(path string, size int64) error { totalScannedFileCount++ - if s.setupCfg.MaxScanFiles > 0 && totalScannedFileCount > s.setupCfg.MaxScanFiles { + if iter.maxScanFiles > 0 && totalScannedFileCount > iter.maxScanFiles { return common.ErrTooManySourceFiles } - res, err := s.loader.fileRouter.Route(filepath.ToSlash(path)) - if err != nil { - return errors.Annotatef(err, "apply file routing on file '%s' failed", path) - } - if res == nil { - logger.Info("[loader] file is filtered by file router") - return nil - } - - info := FileInfo{ - TableName: filter.Table{Schema: res.Schema, Name: res.Name}, - FileMeta: SourceFileMeta{Path: path, Type: res.Type, Compression: res.Compression, SortKey: res.Key, FileSize: size}, - } + return hdl(ctx, path, size) + }) - if s.loader.shouldSkip(&info.TableName) { - logger.Debug("[filter] ignoring table file") + return errors.Trace(err) +} - return nil - } +func (s *mdLoaderSetup) constructFileInfo(ctx context.Context, path string, size int64) error { + logger := log.FromContext(ctx).With(zap.String("path", path)) + res, err := s.loader.fileRouter.Route(filepath.ToSlash(path)) + if err != nil { + return errors.Annotatef(err, "apply file routing on file '%s' failed", path) + } + if res == nil { + logger.Info("[loader] file is filtered by file router") + return nil + } - switch res.Type { - case SourceTypeSchemaSchema: - s.dbSchemas = append(s.dbSchemas, info) - case SourceTypeTableSchema: - s.tableSchemas = append(s.tableSchemas, info) - case SourceTypeViewSchema: - s.viewSchemas = append(s.viewSchemas, info) - case SourceTypeSQL, SourceTypeCSV, SourceTypeParquet: - s.tableDatas = append(s.tableDatas, info) - } + info := FileInfo{ + TableName: filter.Table{Schema: res.Schema, Name: res.Name}, + FileMeta: SourceFileMeta{Path: path, Type: res.Type, Compression: res.Compression, SortKey: res.Key, FileSize: size}, + } - logger.Debug("file route result", zap.String("schema", res.Schema), - zap.String("table", res.Name), zap.Stringer("type", res.Type)) + if s.loader.shouldSkip(&info.TableName) { + logger.Debug("[filter] ignoring table file") return nil - }) + } - return errors.Trace(err) + switch res.Type { + case SourceTypeSchemaSchema: + s.dbSchemas = append(s.dbSchemas, info) + case SourceTypeTableSchema: + s.tableSchemas = append(s.tableSchemas, info) + case SourceTypeViewSchema: + s.viewSchemas = append(s.viewSchemas, info) + case SourceTypeSQL, SourceTypeCSV, SourceTypeParquet: + s.tableDatas = append(s.tableDatas, info) + } + + logger.Debug("file route result", zap.String("schema", res.Schema), + zap.String("table", res.Name), zap.Stringer("type", res.Type)) + + return nil } func (l *MDLoader) shouldSkip(table *filter.Table) bool { @@ -488,6 +536,13 @@ func (s *mdLoaderSetup) route() error { knownDBNames[targetDB] = newInfo } arr[i].TableName = filter.Table{Schema: targetDB, Name: targetTable} + extendCols, extendVals := r.FetchExtendColumn(rawDB, rawTable, s.sourceID) + if len(extendCols) > 0 { + arr[i].FileMeta.ExtendData = ExtendColumnData{ + Columns: extendCols, + Values: extendVals, + } + } } return nil } diff --git a/br/pkg/lightning/mydump/loader_test.go b/br/pkg/lightning/mydump/loader_test.go index 81a10fb078efc..da910c70bedc0 100644 --- a/br/pkg/lightning/mydump/loader_test.go +++ b/br/pkg/lightning/mydump/loader_test.go @@ -990,3 +990,66 @@ func TestMaxScanFilesOption(t *testing.T) { tbl = dbMeta.Tables[0] require.Equal(t, maxScanFilesCount-2, len(tbl.DataFiles)) } + +func TestExternalDataRoutes(t *testing.T) { + s := newTestMydumpLoaderSuite(t) + + s.touch(t, "test_1-schema-create.sql") + s.touch(t, "test_1.t1-schema.sql") + s.touch(t, "test_1.t1.sql") + s.touch(t, "test_2-schema-create.sql") + s.touch(t, "test_2.t2-schema.sql") + s.touch(t, "test_2.t2.sql") + s.touch(t, "test_3-schema-create.sql") + s.touch(t, "test_3.t1-schema.sql") + s.touch(t, "test_3.t1.sql") + s.touch(t, "test_3.t3-schema.sql") + s.touch(t, "test_3.t3.sql") + + s.cfg.Mydumper.SourceID = "mysql-01" + s.cfg.Routes = []*router.TableRule{ + { + TableExtractor: &router.TableExtractor{ + TargetColumn: "c_table", + TableRegexp: "t(.*)", + }, + SchemaExtractor: &router.SchemaExtractor{ + TargetColumn: "c_schema", + SchemaRegexp: "test_(.*)", + }, + SourceExtractor: &router.SourceExtractor{ + TargetColumn: "c_source", + SourceRegexp: "mysql-(.*)", + }, + SchemaPattern: "test_*", + TablePattern: "t*", + TargetSchema: "test", + TargetTable: "t", + }, + } + + mdl, err := md.NewMyDumpLoader(context.Background(), s.cfg) + + require.NoError(t, err) + var database *md.MDDatabaseMeta + for _, db := range mdl.GetDatabases() { + if db.Name == "test" { + require.Nil(t, database) + database = db + } + } + require.NotNil(t, database) + require.Len(t, database.Tables, 1) + require.Len(t, database.Tables[0].DataFiles, 4) + expectExtendCols := []string{"c_table", "c_schema", "c_source"} + expectedExtendVals := [][]string{ + {"1", "1", "01"}, + {"2", "2", "01"}, + {"1", "3", "01"}, + {"3", "3", "01"}, + } + for i, fileInfo := range database.Tables[0].DataFiles { + require.Equal(t, expectExtendCols, fileInfo.FileMeta.ExtendData.Columns) + require.Equal(t, expectedExtendVals[i], fileInfo.FileMeta.ExtendData.Values) + } +} diff --git a/br/pkg/lightning/mydump/main_test.go b/br/pkg/lightning/mydump/main_test.go index f2672cd1bbc89..d4a29a47175d3 100644 --- a/br/pkg/lightning/mydump/main_test.go +++ b/br/pkg/lightning/mydump/main_test.go @@ -25,6 +25,7 @@ func TestMain(m *testing.M) { testsetup.SetupForCommonTest() opts := []goleak.Option{ goleak.IgnoreTopFunction("github.com/golang/glog.(*loggingT).flushDaemon"), + goleak.IgnoreTopFunction("github.com/lestrrat-go/httprc.runFetchWorker"), goleak.IgnoreTopFunction("go.opencensus.io/stats/view.(*worker).start"), goleak.IgnoreTopFunction("github.com/klauspost/compress/zstd.(*blockDec).startDecoder"), } diff --git a/br/pkg/lightning/mydump/parquet_parser.go b/br/pkg/lightning/mydump/parquet_parser.go index 4c8318aa3efb5..e7ac2baa6d80f 100644 --- a/br/pkg/lightning/mydump/parquet_parser.go +++ b/br/pkg/lightning/mydump/parquet_parser.go @@ -458,7 +458,7 @@ func setDatumByString(d *types.Datum, v string, meta *parquet.SchemaElement) { ts = ts.UTC() v = ts.Format(utcTimeLayout) } - d.SetString(v, "") + d.SetString(v, "utf8mb4_bin") } func binaryToDecimalStr(rawBytes []byte, scale int) string { @@ -515,20 +515,20 @@ func setDatumByInt(d *types.Datum, v int64, meta *parquet.SchemaElement) error { } val := fmt.Sprintf("%0*d", minLen, v) dotIndex := len(val) - int(*meta.Scale) - d.SetString(val[:dotIndex]+"."+val[dotIndex:], "") + d.SetString(val[:dotIndex]+"."+val[dotIndex:], "utf8mb4_bin") case logicalType.DATE != nil: dateStr := time.Unix(v*86400, 0).Format("2006-01-02") - d.SetString(dateStr, "") + d.SetString(dateStr, "utf8mb4_bin") case logicalType.TIMESTAMP != nil: // convert all timestamp types (datetime/timestamp) to string timeStr := formatTime(v, logicalType.TIMESTAMP.Unit, timeLayout, utcTimeLayout, logicalType.TIMESTAMP.IsAdjustedToUTC) - d.SetString(timeStr, "") + d.SetString(timeStr, "utf8mb4_bin") case logicalType.TIME != nil: // convert all timestamp types (datetime/timestamp) to string timeStr := formatTime(v, logicalType.TIME.Unit, "15:04:05.999999", "15:04:05.999999Z", logicalType.TIME.IsAdjustedToUTC) - d.SetString(timeStr, "") + d.SetString(timeStr, "utf8mb4_bin") default: d.SetInt64(v) } @@ -579,6 +579,12 @@ func (pp *ParquetParser) SetLogger(l log.Logger) { pp.logger = l } +// SetRowID sets the rowID in a parquet file when we start a compressed file. +// It implements the Parser interface. +func (pp *ParquetParser) SetRowID(rowID int64) { + pp.lastRow.RowID = rowID +} + func jdToTime(jd int32, nsec int64) time.Time { sec := int64(jd-jan011970) * secPerDay // it's fine not to check the value of nsec diff --git a/br/pkg/lightning/mydump/parquet_parser_test.go b/br/pkg/lightning/mydump/parquet_parser_test.go index 0475e922f0507..5574ef1dd0ce7 100644 --- a/br/pkg/lightning/mydump/parquet_parser_test.go +++ b/br/pkg/lightning/mydump/parquet_parser_test.go @@ -54,7 +54,7 @@ func TestParquetParser(t *testing.T) { verifyRow := func(i int) { require.Equal(t, int64(i+1), reader.lastRow.RowID) require.Len(t, reader.lastRow.Row, 2) - require.Equal(t, types.NewCollationStringDatum(strconv.Itoa(i), ""), reader.lastRow.Row[0]) + require.Equal(t, types.NewCollationStringDatum(strconv.Itoa(i), "utf8mb4_bin"), reader.lastRow.Row[0]) require.Equal(t, types.NewIntDatum(int64(i)), reader.lastRow.Row[1]) } diff --git a/br/pkg/lightning/mydump/parser.go b/br/pkg/lightning/mydump/parser.go index 1560dd4c14a44..73f84424bf5e3 100644 --- a/br/pkg/lightning/mydump/parser.go +++ b/br/pkg/lightning/mydump/parser.go @@ -138,6 +138,8 @@ type Parser interface { SetColumns([]string) SetLogger(log.Logger) + + SetRowID(rowID int64) } // NewChunkParser creates a new parser which can read chunks out of a file. @@ -174,6 +176,7 @@ func (parser *blockParser) SetPos(pos int64, rowID int64) error { } // Pos returns the current file offset. +// Attention: for compressed sql/csv files, pos is the position in uncompressed files func (parser *blockParser) Pos() (pos int64, lastRowID int64) { return parser.pos, parser.lastRow.RowID } @@ -205,6 +208,11 @@ func (parser *blockParser) SetLogger(logger log.Logger) { parser.Logger = logger } +// SetRowID changes the reported row ID when we firstly read compressed files. +func (parser *blockParser) SetRowID(rowID int64) { + parser.lastRow.RowID = rowID +} + type token byte const ( @@ -592,3 +600,22 @@ func ReadChunks(parser Parser, minSize int64) ([]Chunk, error) { } } } + +// ReadUntil parses the entire file and splits it into continuous chunks of +// size >= minSize. +func ReadUntil(parser Parser, pos int64) error { + var curOffset int64 + for curOffset < pos { + switch err := parser.ReadRow(); errors.Cause(err) { + case nil: + curOffset, _ = parser.Pos() + + case io.EOF: + return nil + + default: + return errors.Trace(err) + } + } + return nil +} diff --git a/br/pkg/lightning/mydump/region.go b/br/pkg/lightning/mydump/region.go index 7e77c9df2a05b..8562acc2867b3 100644 --- a/br/pkg/lightning/mydump/region.go +++ b/br/pkg/lightning/mydump/region.go @@ -40,9 +40,10 @@ const ( type TableRegion struct { EngineID int32 - DB string - Table string - FileMeta SourceFileMeta + DB string + Table string + FileMeta SourceFileMeta + ExtendData ExtendColumnData Chunk Chunk } @@ -170,7 +171,7 @@ func MakeTableRegions( go func() { defer wg.Done() for info := range fileChan { - regions, sizes, err := makeSourceFileRegion(execCtx, meta, info, columns, cfg, ioWorkers, store) + regions, sizes, err := MakeSourceFileRegion(execCtx, meta, info, columns, cfg, ioWorkers, store) select { case resultChan <- fileRegionRes{info: info, regions: regions, sizes: sizes, err: err}: case <-ctx.Done(): @@ -255,7 +256,8 @@ func MakeTableRegions( return filesRegions, nil } -func makeSourceFileRegion( +// MakeSourceFileRegion create a new source file region. +func MakeSourceFileRegion( ctx context.Context, meta *MDTableMeta, fi FileInfo, @@ -283,7 +285,9 @@ func makeSourceFileRegion( // We increase the check threshold by 1/10 of the `max-region-size` because the source file size dumped by tools // like dumpling might be slight exceed the threshold when it is equal `max-region-size`, so we can // avoid split a lot of small chunks. - if isCsvFile && cfg.Mydumper.StrictFormat && dataFileSize > int64(cfg.Mydumper.MaxRegionSize+cfg.Mydumper.MaxRegionSize/largeCSVLowerThresholdRation) { + // If a csv file is compressed, we can't split it now because we can't get the exact size of a row. + if isCsvFile && cfg.Mydumper.StrictFormat && fi.FileMeta.Compression == CompressionNone && + dataFileSize > int64(cfg.Mydumper.MaxRegionSize+cfg.Mydumper.MaxRegionSize/largeCSVLowerThresholdRation) { _, regions, subFileSizes, err := SplitLargeFile(ctx, meta, cfg, fi, divisor, 0, ioWorkers, store) return regions, subFileSizes, err } diff --git a/br/pkg/lightning/mydump/region_test.go b/br/pkg/lightning/mydump/region_test.go index 5c4bc1c7734b5..0830d378f47ff 100644 --- a/br/pkg/lightning/mydump/region_test.go +++ b/br/pkg/lightning/mydump/region_test.go @@ -164,6 +164,63 @@ func TestAllocateEngineIDs(t *testing.T) { }) } +func TestMakeSourceFileRegion(t *testing.T) { + meta := &MDTableMeta{ + DB: "csv", + Name: "large_csv_file", + } + cfg := &config.Config{ + Mydumper: config.MydumperRuntime{ + ReadBlockSize: config.ReadBlockSize, + MaxRegionSize: 1, + CSV: config.CSVConfig{ + Separator: ",", + Delimiter: "", + Header: true, + TrimLastSep: false, + NotNull: false, + Null: "NULL", + BackslashEscape: true, + }, + StrictFormat: true, + Filter: []string{"*.*"}, + }, + } + filePath := "./csv/split_large_file.csv" + dataFileInfo, err := os.Stat(filePath) + require.NoError(t, err) + fileSize := dataFileInfo.Size() + fileInfo := FileInfo{FileMeta: SourceFileMeta{Path: filePath, Type: SourceTypeCSV, FileSize: fileSize}} + colCnt := 3 + columns := []string{"a", "b", "c"} + + ctx := context.Background() + ioWorkers := worker.NewPool(ctx, 4, "io") + store, err := storage.NewLocalStorage(".") + assert.NoError(t, err) + + // test - no compression + fileInfo.FileMeta.Compression = CompressionNone + regions, _, err := MakeSourceFileRegion(ctx, meta, fileInfo, colCnt, cfg, ioWorkers, store) + assert.NoError(t, err) + offsets := [][]int64{{6, 12}, {12, 18}, {18, 24}, {24, 30}} + assert.Len(t, regions, len(offsets)) + for i := range offsets { + assert.Equal(t, offsets[i][0], regions[i].Chunk.Offset) + assert.Equal(t, offsets[i][1], regions[i].Chunk.EndOffset) + assert.Equal(t, columns, regions[i].Chunk.Columns) + } + + // test - gzip compression + fileInfo.FileMeta.Compression = CompressionGZ + regions, _, err = MakeSourceFileRegion(ctx, meta, fileInfo, colCnt, cfg, ioWorkers, store) + assert.NoError(t, err) + assert.Len(t, regions, 1) + assert.Equal(t, int64(0), regions[0].Chunk.Offset) + assert.Equal(t, fileInfo.FileMeta.FileSize, regions[0].Chunk.EndOffset) + assert.Len(t, regions[0].Chunk.Columns, 0) +} + func TestSplitLargeFile(t *testing.T) { meta := &MDTableMeta{ DB: "csv", diff --git a/br/pkg/lightning/mydump/router.go b/br/pkg/lightning/mydump/router.go index 75a9c61a98553..bdc2a922f12f7 100644 --- a/br/pkg/lightning/mydump/router.go +++ b/br/pkg/lightning/mydump/router.go @@ -9,6 +9,7 @@ import ( "github.com/pingcap/errors" "github.com/pingcap/tidb/br/pkg/lightning/config" "github.com/pingcap/tidb/br/pkg/lightning/log" + "github.com/pingcap/tidb/br/pkg/storage" "github.com/pingcap/tidb/util/filter" "github.com/pingcap/tidb/util/slice" "go.uber.org/zap" @@ -65,8 +66,28 @@ const ( CompressionZStd // CompressionXZ is the compression type that uses XZ algorithm. CompressionXZ + // CompressionLZO is the compression type that uses LZO algorithm. + CompressionLZO + // CompressionSnappy is the compression type that uses Snappy algorithm. + CompressionSnappy ) +// ToStorageCompressType converts Compression to storage.CompressType. +func ToStorageCompressType(compression Compression) (storage.CompressType, error) { + switch compression { + case CompressionGZ: + return storage.Gzip, nil + case CompressionSnappy: + return storage.Snappy, nil + case CompressionZStd: + return storage.Zstd, nil + case CompressionNone: + return storage.NoCompression, nil + default: + return storage.NoCompression, errors.Errorf("compression %d doesn't have related storage compressType", compression) + } +} + func parseSourceType(t string) (SourceType, error) { switch strings.ToLower(strings.TrimSpace(t)) { case SchemaSchema: @@ -109,7 +130,7 @@ func (s SourceType) String() string { func parseCompressionType(t string) (Compression, error) { switch strings.ToLower(strings.TrimSpace(t)) { - case "gz": + case "gz", "gzip": return CompressionGZ, nil case "lz4": return CompressionLZ4, nil @@ -117,6 +138,10 @@ func parseCompressionType(t string) (Compression, error) { return CompressionZStd, nil case "xz": return CompressionXZ, nil + case "lzo": + return CompressionLZO, nil + case "snappy": + return CompressionSnappy, nil case "": return CompressionNone, nil default: @@ -128,15 +153,17 @@ var expandVariablePattern = regexp.MustCompile(`\$(?:\$|[\pL\p{Nd}_]+|\{[\pL\p{N var defaultFileRouteRules = []*config.FileRouteRule{ // ignore *-schema-trigger.sql, *-schema-post.sql files - {Pattern: `(?i).*(-schema-trigger|-schema-post)\.sql$`, Type: "ignore"}, - // db schema create file pattern, matches files like '{schema}-schema-create.sql' - {Pattern: `(?i)^(?:[^/]*/)*([^/.]+)-schema-create\.sql$`, Schema: "$1", Table: "", Type: SchemaSchema, Unescape: true}, - // table schema create file pattern, matches files like '{schema}.{table}-schema.sql' - {Pattern: `(?i)^(?:[^/]*/)*([^/.]+)\.(.*?)-schema\.sql$`, Schema: "$1", Table: "$2", Type: TableSchema, Unescape: true}, - // view schema create file pattern, matches files like '{schema}.{table}-schema-view.sql' - {Pattern: `(?i)^(?:[^/]*/)*([^/.]+)\.(.*?)-schema-view\.sql$`, Schema: "$1", Table: "$2", Type: ViewSchema, Unescape: true}, - // source file pattern, matches files like '{schema}.{table}.0001.{sql|csv}' - {Pattern: `(?i)^(?:[^/]*/)*([^/.]+)\.(.*?)(?:\.([0-9]+))?\.(sql|csv|parquet)$`, Schema: "$1", Table: "$2", Type: "$4", Key: "$3", Unescape: true}, + {Pattern: `(?i).*(-schema-trigger|-schema-post)\.sql(?:\.(\w*?))?$`, Type: "ignore"}, + // ignore backup files + {Pattern: `(?i).*\.(sql|csv|parquet)(\.(\w+))?\.(bak|BAK)$`, Type: "ignore"}, + // db schema create file pattern, matches files like '{schema}-schema-create.sql[.{compress}]' + {Pattern: `(?i)^(?:[^/]*/)*([^/.]+)-schema-create\.sql(?:\.(\w*?))?$`, Schema: "$1", Table: "", Type: SchemaSchema, Compression: "$2", Unescape: true}, + // table schema create file pattern, matches files like '{schema}.{table}-schema.sql[.{compress}]' + {Pattern: `(?i)^(?:[^/]*/)*([^/.]+)\.(.*?)-schema\.sql(?:\.(\w*?))?$`, Schema: "$1", Table: "$2", Type: TableSchema, Compression: "$3", Unescape: true}, + // view schema create file pattern, matches files like '{schema}.{table}-schema-view.sql[.{compress}]' + {Pattern: `(?i)^(?:[^/]*/)*([^/.]+)\.(.*?)-schema-view\.sql(?:\.(\w*?))?$`, Schema: "$1", Table: "$2", Type: ViewSchema, Compression: "$3", Unescape: true}, + // source file pattern, matches files like '{schema}.{table}.0001.{sql|csv}[.{compress}]' + {Pattern: `(?i)^(?:[^/]*/)*([^/.]+)\.(.*?)(?:\.([0-9]+))?\.(sql|csv|parquet)(?:\.(\w+))?$`, Schema: "$1", Table: "$2", Type: "$4", Key: "$3", Compression: "$5", Unescape: true}, } // FileRouter provides some operations to apply a rule to route file path to target schema/table @@ -176,6 +203,11 @@ func NewFileRouter(cfg []*config.FileRouteRule, logger log.Logger) (FileRouter, return chainRouters(res), nil } +// NewDefaultFileRouter creates a new file router with the default file route rules. +func NewDefaultFileRouter(logger log.Logger) (FileRouter, error) { + return NewFileRouter(defaultFileRouteRules, logger) +} + // RegexRouter is a `FileRouter` implement that apply specific regex pattern to filepath. // if regex pattern match, then each extractors with capture the matched regexp pattern and // set value to target field in `RouteResult` @@ -292,9 +324,6 @@ func (p regexRouterParser) Parse(r *config.FileRouteRule, logger log.Logger) (*R if err != nil { return err } - if compression != CompressionNone { - return errors.New("Currently we don't support restore compressed source file yet") - } result.Compression = compression return nil }) diff --git a/br/pkg/lightning/mydump/router_test.go b/br/pkg/lightning/mydump/router_test.go index 7401027cfbd36..4e3d8a4215a0d 100644 --- a/br/pkg/lightning/mydump/router_test.go +++ b/br/pkg/lightning/mydump/router_test.go @@ -38,6 +38,42 @@ func TestRouteParser(t *testing.T) { } } +func TestDefaultRouter(t *testing.T) { + r, err := NewFileRouter(defaultFileRouteRules, log.L()) + assert.NoError(t, err) + + inputOutputMap := map[string][]string{ + "a/test-schema-create.sql.bak": nil, + "my_schema.my_table.0001.sql.snappy.BAK": nil, + "a/test-schema-create.sql": {"test", "", "", "", SchemaSchema}, + "test-schema-create.sql.gz": {"test", "", "", "gz", SchemaSchema}, + "c/d/test.t-schema.sql": {"test", "t", "", "", TableSchema}, + "test.t-schema.sql.lzo": {"test", "t", "", "lzo", TableSchema}, + "/bc/dc/test.v1-schema-view.sql": {"test", "v1", "", "", ViewSchema}, + "test.v1-schema-view.sql.snappy": {"test", "v1", "", "snappy", ViewSchema}, + "my_schema.my_table.sql": {"my_schema", "my_table", "", "", "sql"}, + "/test/123/my_schema.my_table.sql.gz": {"my_schema", "my_table", "", "gz", "sql"}, + "my_dir/my_schema.my_table.csv.lzo": {"my_schema", "my_table", "", "lzo", "csv"}, + "my_schema.my_table.0001.sql.snappy": {"my_schema", "my_table", "0001", "snappy", "sql"}, + } + for path, fields := range inputOutputMap { + res, err := r.Route(path) + assert.NoError(t, err) + if len(fields) == 0 { + assert.Equal(t, res.Type, SourceTypeIgnore) + assert.Len(t, res.Schema, 0) + assert.Len(t, res.Name, 0) + continue + } + compress, e := parseCompressionType(fields[3]) + assert.NoError(t, e) + ty, e := parseSourceType(fields[4]) + assert.NoError(t, e) + exp := &RouteResult{filter.Table{Schema: fields[0], Name: fields[1]}, fields[2], compress, ty} + assert.Equal(t, exp, res) + } +} + func TestInvalidRouteRule(t *testing.T) { rule := &config.FileRouteRule{} rules := []*config.FileRouteRule{rule} @@ -112,7 +148,6 @@ func TestSingleRouteRule(t *testing.T) { require.NoError(t, err) require.NotNil(t, r) invalidMatchPaths := []string{ - "my_schema.my_table.sql.gz", "my_schema.my_table.sql.rar", "my_schema.my_table.txt", } @@ -121,6 +156,11 @@ func TestSingleRouteRule(t *testing.T) { assert.Nil(t, res) assert.Error(t, err) } + + res, err := r.Route("my_schema.my_table.sql.gz") + assert.NoError(t, err) + exp := &RouteResult{filter.Table{Schema: "my_schema", Name: "my_table"}, "", CompressionGZ, SourceTypeSQL} + assert.Equal(t, exp, res) } func TestMultiRouteRule(t *testing.T) { diff --git a/br/pkg/lightning/restore/BUILD.bazel b/br/pkg/lightning/restore/BUILD.bazel index fbe316705933e..175e69e22d02f 100644 --- a/br/pkg/lightning/restore/BUILD.bazel +++ b/br/pkg/lightning/restore/BUILD.bazel @@ -62,6 +62,8 @@ go_library( "//util/engine", "//util/mathutil", "//util/mock", + "//util/regexpr-router", + "//util/set", "@com_github_coreos_go_semver//semver", "@com_github_docker_go_units//:go-units", "@com_github_go_sql_driver_mysql//:mysql", @@ -140,6 +142,7 @@ go_test( "//util/mock", "//util/promutil", "//util/table-filter", + "//util/table-router", "@com_github_data_dog_go_sqlmock//:go-sqlmock", "@com_github_docker_go_units//:go-units", "@com_github_go_sql_driver_mysql//:mysql", diff --git a/br/pkg/lightning/restore/chunk_restore_test.go b/br/pkg/lightning/restore/chunk_restore_test.go index 7a0d0826c6a07..452e82821c9fa 100644 --- a/br/pkg/lightning/restore/chunk_restore_test.go +++ b/br/pkg/lightning/restore/chunk_restore_test.go @@ -15,9 +15,13 @@ package restore import ( + "compress/gzip" "context" + "fmt" + "io" "os" "path/filepath" + "strconv" "sync" "testing" @@ -36,7 +40,14 @@ import ( "github.com/pingcap/tidb/br/pkg/lightning/worker" "github.com/pingcap/tidb/br/pkg/mock" "github.com/pingcap/tidb/br/pkg/storage" + "github.com/pingcap/tidb/ddl" + "github.com/pingcap/tidb/parser" + "github.com/pingcap/tidb/parser/ast" + "github.com/pingcap/tidb/parser/model" + "github.com/pingcap/tidb/parser/mysql" "github.com/pingcap/tidb/types" + tmock "github.com/pingcap/tidb/util/mock" + filter "github.com/pingcap/tidb/util/table-filter" "github.com/stretchr/testify/require" "github.com/stretchr/testify/suite" ) @@ -273,6 +284,65 @@ func (s *chunkRestoreSuite) TestEncodeLoop() { require.Equal(s.T(), s.cr.chunk.Chunk.EndOffset, kvs[0].offset) } +func (s *chunkRestoreSuite) TestEncodeLoopWithExtendData() { + ctx := context.Background() + kvsCh := make(chan []deliveredKVs, 2) + deliverCompleteCh := make(chan deliverResult) + + p := parser.New() + se := tmock.NewContext() + + lastTi := s.tr.tableInfo + defer func() { + s.tr.tableInfo = lastTi + }() + + node, err := p.ParseOneStmt("CREATE TABLE `t1` (`c1` varchar(5) NOT NULL, `c_table` varchar(5), `c_schema` varchar(5), `c_source` varchar(5))", "utf8mb4", "utf8mb4_bin") + require.NoError(s.T(), err) + tableInfo, err := ddl.MockTableInfo(se, node.(*ast.CreateTableStmt), int64(1)) + require.NoError(s.T(), err) + tableInfo.State = model.StatePublic + + schema := "test_1" + tb := "t1" + ti := &checkpoints.TidbTableInfo{ + ID: tableInfo.ID, + DB: schema, + Name: tb, + Core: tableInfo, + } + s.tr.tableInfo = ti + s.cr.chunk.FileMeta.ExtendData = mydump.ExtendColumnData{ + Columns: []string{"c_table", "c_schema", "c_source"}, + Values: []string{"1", "1", "01"}, + } + defer func() { + s.cr.chunk.FileMeta.ExtendData = mydump.ExtendColumnData{} + }() + + kvEncoder, err := kv.NewTableKVEncoder(s.tr.encTable, &kv.SessionOptions{ + SQLMode: s.cfg.TiDB.SQLMode, + Timestamp: 1234567895, + }, nil, log.L()) + require.NoError(s.T(), err) + cfg := config.NewConfig() + rc := &Controller{pauser: DeliverPauser, cfg: cfg} + _, _, err = s.cr.encodeLoop(ctx, kvsCh, s.tr, s.tr.logger, kvEncoder, deliverCompleteCh, rc) + require.NoError(s.T(), err) + require.Len(s.T(), kvsCh, 2) + + kvs := <-kvsCh + require.Len(s.T(), kvs, 1) + require.Equal(s.T(), int64(19), kvs[0].rowID) + require.Equal(s.T(), int64(36), kvs[0].offset) + require.Equal(s.T(), []string{"c1", "c_table", "c_schema", "c_source"}, kvs[0].columns) + + kvs = <-kvsCh + require.Equal(s.T(), 1, len(kvs)) + require.Nil(s.T(), kvs[0].kvs) + require.Equal(s.T(), s.cr.chunk.Chunk.EndOffset, kvs[0].offset) +} + func (s *chunkRestoreSuite) TestEncodeLoopCanceled() { ctx, cancel := context.WithCancel(context.Background()) kvsCh := make(chan []deliveredKVs) @@ -590,3 +660,123 @@ func (s *chunkRestoreSuite) TestRestore() { require.NoError(s.T(), err) require.Len(s.T(), saveCpCh, 2) } + +func TestCompressChunkRestore(t *testing.T) { + // Produce a mock table info + p := parser.New() + p.SetSQLMode(mysql.ModeANSIQuotes) + node, err := p.ParseOneStmt(` + CREATE TABLE "table" ( + a INT, + b INT, + c INT, + KEY (b) + ) +`, "", "") + require.NoError(t, err) + core, err := ddl.BuildTableInfoFromAST(node.(*ast.CreateTableStmt)) + require.NoError(t, err) + core.State = model.StatePublic + + // Write some sample CSV dump + fakeDataDir := t.TempDir() + store, err := storage.NewLocalStorage(fakeDataDir) + require.NoError(t, err) + + fakeDataFiles := make([]mydump.FileInfo, 0) + + csvName := "db.table.1.csv.gz" + file, err := os.Create(filepath.Join(fakeDataDir, csvName)) + require.NoError(t, err) + gzWriter := gzip.NewWriter(file) + + var totalBytes int64 + for i := 0; i < 300; i += 3 { + n, err := gzWriter.Write([]byte(fmt.Sprintf("%d,%d,%d\r\n", i, i+1, i+2))) + require.NoError(t, err) + totalBytes += int64(n) + } + + err = gzWriter.Close() + require.NoError(t, err) + err = file.Close() + require.NoError(t, err) + + fakeDataFiles = append(fakeDataFiles, mydump.FileInfo{ + TableName: filter.Table{Schema: "db", Name: "table"}, + FileMeta: mydump.SourceFileMeta{ + Path: csvName, + Type: mydump.SourceTypeCSV, + Compression: mydump.CompressionGZ, + SortKey: "99", + FileSize: totalBytes, + }, + }) + + chunk := checkpoints.ChunkCheckpoint{ + Key: checkpoints.ChunkCheckpointKey{Path: fakeDataFiles[0].FileMeta.Path, Offset: 0}, + FileMeta: fakeDataFiles[0].FileMeta, + Chunk: mydump.Chunk{ + Offset: 0, + EndOffset: totalBytes, + PrevRowIDMax: 0, + RowIDMax: 100, + }, + } + ctx, cancel := context.WithCancel(context.Background()) + defer cancel() + w := worker.NewPool(ctx, 5, "io") + cfg := config.NewConfig() + cfg.Mydumper.BatchSize = 111 + cfg.App.TableConcurrency = 2 + cfg.Mydumper.CSV.Header = false + + cr, err := newChunkRestore(ctx, 1, cfg, &chunk, w, store, nil) + require.NoError(t, err) + var ( + id, lastID int + offset int64 = 0 + rowID int64 = 0 + ) + for id < 100 { + offset, rowID = cr.parser.Pos() + err = cr.parser.ReadRow() + require.NoError(t, err) + rowData := cr.parser.LastRow().Row + require.Len(t, rowData, 3) + lastID = id + for i := 0; id < 100 && i < 3; i++ { + require.Equal(t, strconv.Itoa(id), rowData[i].GetString()) + id++ + } + } + require.Equal(t, int64(33), rowID) + + // test read starting from compress files' middle + chunk = checkpoints.ChunkCheckpoint{ + Key: checkpoints.ChunkCheckpointKey{Path: fakeDataFiles[0].FileMeta.Path, Offset: offset}, + FileMeta: fakeDataFiles[0].FileMeta, + Chunk: mydump.Chunk{ + Offset: offset, + EndOffset: totalBytes, + PrevRowIDMax: rowID, + RowIDMax: 100, + }, + } + cr, err = newChunkRestore(ctx, 1, cfg, &chunk, w, store, nil) + require.NoError(t, err) + for id = lastID; id < 300; { + err = cr.parser.ReadRow() + require.NoError(t, err) + rowData := cr.parser.LastRow().Row + require.Len(t, rowData, 3) + for i := 0; id < 300 && i < 3; i++ { + require.Equal(t, strconv.Itoa(id), rowData[i].GetString()) + id++ + } + } + _, rowID = cr.parser.Pos() + require.Equal(t, int64(100), rowID) + err = cr.parser.ReadRow() + require.Equal(t, io.EOF, errors.Cause(err)) +} diff --git a/br/pkg/lightning/restore/get_pre_info.go b/br/pkg/lightning/restore/get_pre_info.go index c604b7a5d88b8..287d59c6145a4 100644 --- a/br/pkg/lightning/restore/get_pre_info.go +++ b/br/pkg/lightning/restore/get_pre_info.go @@ -648,9 +648,12 @@ func (p *PreRestoreInfoGetterImpl) sampleDataFromTable( } initializedColumns := false - var columnPermutation []int - var kvSize uint64 = 0 - var rowSize uint64 = 0 + var ( + columnPermutation []int + kvSize uint64 = 0 + rowSize uint64 = 0 + extendVals []types.Datum + ) rowCount := 0 dataKVs := p.encBuilder.MakeEmptyRows() indexKVs := p.encBuilder.MakeEmptyRows() @@ -665,17 +668,32 @@ outloop: switch errors.Cause(err) { case nil: if !initializedColumns { + ignoreColsMap := igCols.ColumnsMap() if len(columnPermutation) == 0 { columnPermutation, err = createColumnPermutation( columnNames, - igCols.ColumnsMap(), + ignoreColsMap, tableInfo, log.FromContext(ctx)) if err != nil { return 0.0, false, errors.Trace(err) } } + if len(sampleFile.ExtendData.Columns) > 0 { + _, extendVals = filterColumns(columnNames, sampleFile.ExtendData, ignoreColsMap, tableInfo) + } initializedColumns = true + lastRow := parser.LastRow() + lastRowLen := len(lastRow.Row) + extendColsMap := make(map[string]int) + for i, c := range sampleFile.ExtendData.Columns { + extendColsMap[c] = lastRowLen + i + } + for i, col := range tableInfo.Columns { + if p, ok := extendColsMap[col.Name.O]; ok { + columnPermutation[i] = p + } + } } case io.EOF: break outloop @@ -685,6 +703,7 @@ outloop: } lastRow := parser.LastRow() rowCount++ + lastRow.Row = append(lastRow.Row, extendVals...) var dataChecksum, indexChecksum verification.KVChecksum kvs, encodeErr := kvEncoder.Encode(logTask.Logger, lastRow.Row, lastRow.RowID, columnPermutation, sampleFile.Path, offset) diff --git a/br/pkg/lightning/restore/get_pre_info_test.go b/br/pkg/lightning/restore/get_pre_info_test.go index 07195286369e1..8ea57d023c679 100644 --- a/br/pkg/lightning/restore/get_pre_info_test.go +++ b/br/pkg/lightning/restore/get_pre_info_test.go @@ -349,15 +349,15 @@ INSERT INTO db01.tbl01 (ival, sval) VALUES (444, 'ddd');` ExpectFirstRowDatums: [][]types.Datum{ { types.NewIntDatum(1), - types.NewCollationStringDatum("name_1", ""), + types.NewCollationStringDatum("name_1", "utf8mb4_bin"), }, { types.NewIntDatum(2), - types.NewCollationStringDatum("name_2", ""), + types.NewCollationStringDatum("name_2", "utf8mb4_bin"), }, { types.NewIntDatum(3), - types.NewCollationStringDatum("name_3", ""), + types.NewCollationStringDatum("name_3", "utf8mb4_bin"), }, }, ExpectColumns: []string{"id", "name"}, diff --git a/br/pkg/lightning/restore/meta_manager.go b/br/pkg/lightning/restore/meta_manager.go index 659a33c579ef0..2d9875ad56960 100644 --- a/br/pkg/lightning/restore/meta_manager.go +++ b/br/pkg/lightning/restore/meta_manager.go @@ -1186,9 +1186,12 @@ func getGlobalAutoIDAlloc(store kv.Storage, dbID int64, tblInfo *model.TableInfo return nil, errors.New("internal error: dbID should not be 0") } - // We don't need the cache here because we allocate all IDs at once. - // The argument for CustomAutoIncCacheOption is the cache step. step 1 means no cache. - noCache := autoid.CustomAutoIncCacheOption(1) + // We don't need autoid cache here because we allocate all IDs at once. + // The argument for CustomAutoIncCacheOption is the cache step. Step 1 means no cache, + // but step 1 will enable an experimental feature, so we use step 2 here. + // + // See https://github.com/pingcap/tidb/issues/38442 for more details. + noCache := autoid.CustomAutoIncCacheOption(2) tblVer := autoid.AllocOptionTableInfoVersion(tblInfo.Version) hasRowID := common.TableHasAutoRowID(tblInfo) diff --git a/br/pkg/lightning/restore/precheck_impl.go b/br/pkg/lightning/restore/precheck_impl.go index 9305b676e0279..64e15d5aa828a 100644 --- a/br/pkg/lightning/restore/precheck_impl.go +++ b/br/pkg/lightning/restore/precheck_impl.go @@ -39,6 +39,7 @@ import ( "github.com/pingcap/tidb/types" "github.com/pingcap/tidb/util/engine" "github.com/pingcap/tidb/util/mathutil" + "github.com/pingcap/tidb/util/set" "go.uber.org/zap" "golang.org/x/exp/slices" "golang.org/x/sync/errgroup" @@ -749,15 +750,73 @@ func (ci *schemaCheckItem) SchemaIsValid(ctx context.Context, tableInfo *mydump. } igCols := igCol.ColumnsMap() + fullExtendColsSet := make(set.StringSet) + for _, fileInfo := range tableInfo.DataFiles { + for _, col := range fileInfo.FileMeta.ExtendData.Columns { + if _, ok = igCols[col]; ok { + msgs = append(msgs, fmt.Sprintf("extend column %s is also assigned in ignore-column for table `%s`.`%s`, "+ + "please keep only either one of them", col, tableInfo.DB, tableInfo.Name)) + } + fullExtendColsSet.Insert(col) + } + } + if len(msgs) > 0 { + return msgs, nil + } + colCountFromTiDB := len(info.Core.Columns) + if len(fullExtendColsSet) > 0 { + log.FromContext(ctx).Info("check extend column count through data files", zap.String("db", tableInfo.DB), + zap.String("table", tableInfo.Name)) + igColCnt := 0 + for _, col := range info.Core.Columns { + if _, ok = igCols[col.Name.L]; ok { + igColCnt++ + } + } + for _, f := range tableInfo.DataFiles { + cols, previewRows, err := ci.preInfoGetter.ReadFirstNRowsByFileMeta(ctx, f.FileMeta, 1) + if err != nil { + return nil, errors.Trace(err) + } + if len(cols) > 0 { + colsSet := set.NewStringSet(cols...) + for _, extendCol := range f.FileMeta.ExtendData.Columns { + if colsSet.Exist(strings.ToLower(extendCol)) { + msgs = append(msgs, fmt.Sprintf("extend column %s is contained in table `%s`.`%s`'s header, "+ + "please remove this column in data or remove this extend rule", extendCol, tableInfo.DB, tableInfo.Name)) + } + } + } else if len(previewRows) > 0 && len(previewRows[0])+len(f.FileMeta.ExtendData.Columns) > colCountFromTiDB+igColCnt { + msgs = append(msgs, fmt.Sprintf("row count %d adding with extend column length %d is larger than columnCount %d plus ignore column count %d for table `%s`.`%s`, "+ + "please make sure your source data don't have extend columns and target schema has all of them", len(previewRows[0]), len(f.FileMeta.ExtendData.Columns), colCountFromTiDB, igColCnt, tableInfo.DB, tableInfo.Name)) + } + } + } + if len(msgs) > 0 { + return msgs, nil + } + core := info.Core defaultCols := make(map[string]struct{}) for _, col := range core.Columns { - if hasDefault(col) || (info.Core.ContainsAutoRandomBits() && mysql.HasPriKeyFlag(col.GetFlag())) { + // we can extend column the same with columns with default values + if _, isExtendCol := fullExtendColsSet[col.Name.O]; isExtendCol || hasDefault(col) || (info.Core.ContainsAutoRandomBits() && mysql.HasPriKeyFlag(col.GetFlag())) { // this column has default value or it's auto random id, so we can ignore it defaultCols[col.Name.L] = struct{}{} } + delete(fullExtendColsSet, col.Name.O) } + if len(fullExtendColsSet) > 0 { + extendCols := make([]string, 0, len(fullExtendColsSet)) + for col := range fullExtendColsSet { + extendCols = append(extendCols, col) + } + msgs = append(msgs, fmt.Sprintf("extend column [%s] don't exist in target table `%s`.`%s` schema, "+ + "please add these extend columns manually in downstream database/schema file", strings.Join(extendCols, ","), tableInfo.DB, tableInfo.Name)) + return msgs, nil + } + // tidb_rowid have a default value. defaultCols[model.ExtraHandleName.String()] = struct{}{} diff --git a/br/pkg/lightning/restore/restore.go b/br/pkg/lightning/restore/restore.go index ba8faac2996a3..0a0e05b45ac5d 100644 --- a/br/pkg/lightning/restore/restore.go +++ b/br/pkg/lightning/restore/restore.go @@ -21,6 +21,7 @@ import ( "io" "math" "os" + "path/filepath" "strings" "sync" "time" @@ -57,8 +58,11 @@ import ( "github.com/pingcap/tidb/meta/autoid" "github.com/pingcap/tidb/parser/model" "github.com/pingcap/tidb/store/driver" + "github.com/pingcap/tidb/types" "github.com/pingcap/tidb/util/collate" "github.com/pingcap/tidb/util/mathutil" + regexprrouter "github.com/pingcap/tidb/util/regexpr-router" + "github.com/pingcap/tidb/util/set" pd "github.com/tikv/pd/client" "go.uber.org/atomic" "go.uber.org/multierr" @@ -1657,6 +1661,53 @@ func (rc *Controller) restoreTables(ctx context.Context) (finalErr error) { return nil } +func addExtendDataForCheckpoint( + ctx context.Context, + cfg *config.Config, + cp *checkpoints.TableCheckpoint, +) error { + if len(cfg.Routes) == 0 { + return nil + } + hasExtractor := false + for _, route := range cfg.Routes { + hasExtractor = hasExtractor || route.TableExtractor != nil || route.SchemaExtractor != nil || route.SourceExtractor != nil + if hasExtractor { + break + } + } + if !hasExtractor { + return nil + } + + // Use default file router directly because fileRouter and router are not compatible + fileRouter, err := mydump.NewDefaultFileRouter(log.FromContext(ctx)) + if err != nil { + return err + } + var router *regexprrouter.RouteTable + router, err = regexprrouter.NewRegExprRouter(cfg.Mydumper.CaseSensitive, cfg.Routes) + if err != nil { + return err + } + for _, engine := range cp.Engines { + for _, chunk := range engine.Chunks { + _, file := filepath.Split(chunk.FileMeta.Path) + var res *mydump.RouteResult + res, err = fileRouter.Route(file) + if err != nil { + return err + } + extendCols, extendData := router.FetchExtendColumn(res.Schema, res.Name, cfg.Mydumper.SourceID) + chunk.FileMeta.ExtendData = mydump.ExtendColumnData{ + Columns: extendCols, + Values: extendData, + } + } + } + return nil +} + func (tr *TableRestore) restoreTable( ctx context.Context, rc *Controller, @@ -1676,6 +1727,10 @@ func (tr *TableRestore) restoreTable( zap.Int("enginesCnt", len(cp.Engines)), zap.Int("filesCnt", cp.CountChunks()), ) + err := addExtendDataForCheckpoint(ctx, rc.cfg, cp) + if err != nil { + return false, errors.Trace(err) + } } else if cp.Status < checkpoints.CheckpointStatusAllWritten { if err := tr.populateChunks(ctx, rc, cp); err != nil { return false, errors.Trace(err) @@ -2135,11 +2190,21 @@ func newChunkRestore( ) (*chunkRestore, error) { blockBufSize := int64(cfg.Mydumper.ReadBlockSize) - var reader storage.ReadSeekCloser - var err error - if chunk.FileMeta.Type == mydump.SourceTypeParquet { + var ( + reader storage.ReadSeekCloser + compressType storage.CompressType + err error + ) + switch { + case chunk.FileMeta.Type == mydump.SourceTypeParquet: reader, err = mydump.OpenParquetReader(ctx, store, chunk.FileMeta.Path, chunk.FileMeta.FileSize) - } else { + case chunk.FileMeta.Compression != mydump.CompressionNone: + compressType, err = mydump.ToStorageCompressType(chunk.FileMeta.Compression) + if err != nil { + break + } + reader, err = storage.WithCompression(store, compressType).Open(ctx, chunk.FileMeta.Path) + default: reader, err = store.Open(ctx, chunk.FileMeta.Path) } if err != nil { @@ -2170,8 +2235,15 @@ func newChunkRestore( panic(fmt.Sprintf("file '%s' with unknown source type '%s'", chunk.Key.Path, chunk.FileMeta.Type.String())) } - if err = parser.SetPos(chunk.Chunk.Offset, chunk.Chunk.PrevRowIDMax); err != nil { - return nil, errors.Trace(err) + if chunk.FileMeta.Compression == mydump.CompressionNone { + if err = parser.SetPos(chunk.Chunk.Offset, chunk.Chunk.PrevRowIDMax); err != nil { + return nil, errors.Trace(err) + } + } else { + if err = mydump.ReadUntil(parser, chunk.Chunk.Offset); err != nil { + return nil, errors.Trace(err) + } + parser.SetRowID(chunk.Chunk.PrevRowIDMax) } if len(chunk.ColumnPermutation) > 0 { parser.SetColumns(getColumnNames(tableInfo.Core, chunk.ColumnPermutation)) @@ -2431,6 +2503,52 @@ func saveCheckpoint(rc *Controller, t *TableRestore, engineID int32, chunk *chec } } +// filterColumns filter columns and extend columns. +// It accepts: +// - columnsNames, header in the data files; +// - extendData, extendData fetched through data file name, that is to say, table info; +// - ignoreColsMap, columns to be ignored when we import; +// - tableInfo, tableInfo of the target table; +// It returns: +// - filteredColumns, columns of the original data to import. +// - extendValueDatums, extended Data to import. +// The data we import will use filteredColumns as columns, use (parser.LastRow+extendValueDatums) as data +// ColumnPermutation will be modified to make sure the correspondence relationship is correct. +// if len(columnsNames) > 0, it means users has specified each field definition, we can just use users +func filterColumns(columnNames []string, extendData mydump.ExtendColumnData, ignoreColsMap map[string]struct{}, tableInfo *model.TableInfo) ([]string, []types.Datum) { + extendCols, extendVals := extendData.Columns, extendData.Values + extendColsSet := set.NewStringSet(extendCols...) + filteredColumns := make([]string, 0, len(columnNames)) + if len(columnNames) > 0 { + if len(ignoreColsMap) > 0 { + for _, c := range columnNames { + _, ok := ignoreColsMap[c] + if !ok { + filteredColumns = append(filteredColumns, c) + } + } + } else { + filteredColumns = columnNames + } + } else if len(ignoreColsMap) > 0 || len(extendCols) > 0 { + // init column names by table schema + // after filtered out some columns, we must explicitly set the columns for TiDB backend + for _, col := range tableInfo.Columns { + _, ok := ignoreColsMap[col.Name.L] + // ignore all extend row values specified by users + if !col.Hidden && !ok && !extendColsSet.Exist(col.Name.O) { + filteredColumns = append(filteredColumns, col.Name.O) + } + } + } + extendValueDatums := make([]types.Datum, 0) + filteredColumns = append(filteredColumns, extendCols...) + for _, extendVal := range extendVals { + extendValueDatums = append(extendValueDatums, types.NewStringDatum(extendVal)) + } + return filteredColumns, extendValueDatums +} + //nolint:nakedret // TODO: refactor func (cr *chunkRestore) encodeLoop( ctx context.Context, @@ -2467,7 +2585,10 @@ func (cr *chunkRestore) encodeLoop( // WARN: this might be not correct when different SQL statements contains different fields, // but since ColumnPermutation also depends on the hypothesis that the columns in one source file is the same // so this should be ok. - var filteredColumns []string + var ( + filteredColumns []string + extendVals []types.Datum + ) ignoreColumns, err1 := rc.cfg.Mydumper.IgnoreColumns.GetIgnoreColumns(t.dbInfo.Name, t.tableInfo.Core.Name.O, rc.cfg.Mydumper.CaseSensitive) if err1 != nil { err = err1 @@ -2504,23 +2625,19 @@ func (cr *chunkRestore) encodeLoop( } } filteredColumns = columnNames - if ignoreColumns != nil && len(ignoreColumns.Columns) > 0 { - filteredColumns = make([]string, 0, len(columnNames)) - ignoreColsMap := ignoreColumns.ColumnsMap() - if len(columnNames) > 0 { - for _, c := range columnNames { - if _, ok := ignoreColsMap[c]; !ok { - filteredColumns = append(filteredColumns, c) - } - } - } else { - // init column names by table schema - // after filtered out some columns, we must explicitly set the columns for TiDB backend - for _, col := range t.tableInfo.Core.Columns { - if _, ok := ignoreColsMap[col.Name.L]; !col.Hidden && !ok { - filteredColumns = append(filteredColumns, col.Name.O) - } - } + ignoreColsMap := ignoreColumns.ColumnsMap() + if len(ignoreColsMap) > 0 || len(cr.chunk.FileMeta.ExtendData.Columns) > 0 { + filteredColumns, extendVals = filterColumns(columnNames, cr.chunk.FileMeta.ExtendData, ignoreColsMap, t.tableInfo.Core) + } + lastRow := cr.parser.LastRow() + lastRowLen := len(lastRow.Row) + extendColsMap := make(map[string]int) + for i, c := range cr.chunk.FileMeta.ExtendData.Columns { + extendColsMap[c] = lastRowLen + i + } + for i, col := range t.tableInfo.Core.Columns { + if p, ok := extendColsMap[col.Name.O]; ok { + cr.chunk.ColumnPermutation[i] = p } } initializedColumns = true @@ -2535,6 +2652,7 @@ func (cr *chunkRestore) encodeLoop( readDur += time.Since(readDurStart) encodeDurStart := time.Now() lastRow := cr.parser.LastRow() + lastRow.Row = append(lastRow.Row, extendVals...) // sql -> kv kvs, encodeErr := kvEncoder.Encode(logger, lastRow.Row, lastRow.RowID, cr.chunk.ColumnPermutation, cr.chunk.Key.Path, curOffset) encodeDur += time.Since(encodeDurStart) diff --git a/br/pkg/lightning/restore/restore_test.go b/br/pkg/lightning/restore/restore_test.go index 0fb74c068700b..82613b64fe662 100644 --- a/br/pkg/lightning/restore/restore_test.go +++ b/br/pkg/lightning/restore/restore_test.go @@ -36,7 +36,9 @@ import ( "github.com/pingcap/tidb/parser/ast" "github.com/pingcap/tidb/parser/model" "github.com/pingcap/tidb/parser/mysql" + "github.com/pingcap/tidb/types" tmock "github.com/pingcap/tidb/util/mock" + router "github.com/pingcap/tidb/util/table-router" "github.com/stretchr/testify/require" ) @@ -260,3 +262,163 @@ func TestPreCheckFailed(t *testing.T) { require.Equal(t, err.Error(), err1.Error()) require.NoError(t, mock.ExpectationsWereMet()) } + +func TestAddExtendDataForCheckpoint(t *testing.T) { + cfg := config.NewConfig() + + cfg.Mydumper.SourceID = "mysql-01" + cfg.Routes = []*router.TableRule{ + { + TableExtractor: &router.TableExtractor{ + TargetColumn: "c_table", + TableRegexp: "t(.*)", + }, + SchemaExtractor: &router.SchemaExtractor{ + TargetColumn: "c_schema", + SchemaRegexp: "test_(.*)", + }, + SourceExtractor: &router.SourceExtractor{ + TargetColumn: "c_source", + SourceRegexp: "mysql-(.*)", + }, + SchemaPattern: "test_*", + TablePattern: "t*", + TargetSchema: "test", + TargetTable: "t", + }, + } + + cp := &checkpoints.TableCheckpoint{ + Engines: map[int32]*checkpoints.EngineCheckpoint{ + -1: { + Status: checkpoints.CheckpointStatusLoaded, + Chunks: []*checkpoints.ChunkCheckpoint{}, + }, + 0: { + Status: checkpoints.CheckpointStatusImported, + Chunks: []*checkpoints.ChunkCheckpoint{{ + FileMeta: mydump.SourceFileMeta{ + Path: "tmp/test_1.t1.000000000.sql", + }, + }, { + FileMeta: mydump.SourceFileMeta{ + Path: "./test/tmp/test_1.t2.000000000.sql", + }, + }, { + FileMeta: mydump.SourceFileMeta{ + Path: "test_2.t3.000000000.sql", + }, + }}, + }, + }, + } + require.NoError(t, addExtendDataForCheckpoint(context.Background(), cfg, cp)) + expectExtendCols := []string{"c_table", "c_schema", "c_source"} + expectedExtendVals := [][]string{ + {"1", "1", "01"}, + {"2", "1", "01"}, + {"3", "2", "01"}, + } + chunks := cp.Engines[0].Chunks + require.Len(t, chunks, 3) + for i, chunk := range chunks { + require.Equal(t, expectExtendCols, chunk.FileMeta.ExtendData.Columns) + require.Equal(t, expectedExtendVals[i], chunk.FileMeta.ExtendData.Values) + } +} + +func TestFilterColumns(t *testing.T) { + p := parser.New() + se := tmock.NewContext() + + testCases := []struct { + columnNames []string + extendData mydump.ExtendColumnData + ignoreColsMap map[string]struct{} + createTableSql string + + expectedFilteredColumns []string + expectedExtendValues []string + }{ + { + []string{"a", "b"}, + mydump.ExtendColumnData{}, + nil, + "CREATE TABLE t (a int primary key, b int)", + []string{"a", "b"}, + []string{}, + }, + { + []string{}, + mydump.ExtendColumnData{}, + nil, + "CREATE TABLE t (a int primary key, b int)", + []string{}, + []string{}, + }, + { + columnNames: []string{"a", "b"}, + extendData: mydump.ExtendColumnData{ + Columns: []string{"c_source", "c_schema", "c_table"}, + Values: []string{"01", "1", "1"}, + }, + createTableSql: "CREATE TABLE t (a int primary key, b int, c_source varchar(11), c_schema varchar(11), c_table varchar(11))", + expectedFilteredColumns: []string{"a", "b", "c_source", "c_schema", "c_table"}, + expectedExtendValues: []string{"01", "1", "1"}, + }, + { + columnNames: []string{}, + extendData: mydump.ExtendColumnData{ + Columns: []string{"c_source", "c_schema", "c_table"}, + Values: []string{"01", "1", "1"}, + }, + createTableSql: "CREATE TABLE t (a int primary key, b int, c_source varchar(11), c_schema varchar(11), c_table varchar(11))", + expectedFilteredColumns: []string{"a", "b", "c_source", "c_schema", "c_table"}, + expectedExtendValues: []string{"01", "1", "1"}, + }, + { + []string{"a", "b"}, + mydump.ExtendColumnData{}, + map[string]struct{}{"a": {}}, + "CREATE TABLE t (a int primary key, b int)", + []string{"b"}, + []string{}, + }, + { + []string{}, + mydump.ExtendColumnData{}, + map[string]struct{}{"a": {}}, + "CREATE TABLE t (a int primary key, b int)", + []string{"b"}, + []string{}, + }, + { + columnNames: []string{"a", "b"}, + extendData: mydump.ExtendColumnData{ + Columns: []string{"c_source", "c_schema", "c_table"}, + Values: []string{"01", "1", "1"}, + }, + ignoreColsMap: map[string]struct{}{"a": {}}, + createTableSql: "CREATE TABLE t (a int primary key, b int, c_source varchar(11), c_schema varchar(11), c_table varchar(11))", + expectedFilteredColumns: []string{"b", "c_source", "c_schema", "c_table"}, + expectedExtendValues: []string{"01", "1", "1"}, + }, + } + for i, tc := range testCases { + t.Logf("test case #%d", i) + node, err := p.ParseOneStmt(tc.createTableSql, "utf8mb4", "utf8mb4_bin") + require.NoError(t, err) + tableInfo, err := ddl.MockTableInfo(se, node.(*ast.CreateTableStmt), int64(i+1)) + require.NoError(t, err) + tableInfo.State = model.StatePublic + + expectedDatums := make([]types.Datum, 0, len(tc.expectedExtendValues)) + for _, expectedValue := range tc.expectedExtendValues { + expectedDatums = append(expectedDatums, types.NewStringDatum(expectedValue)) + } + + filteredColumns, extendDatums := filterColumns(tc.columnNames, tc.extendData, tc.ignoreColsMap, tableInfo) + require.Equal(t, tc.expectedFilteredColumns, filteredColumns) + require.Equal(t, expectedDatums, extendDatums) + } +} diff --git a/br/pkg/lightning/restore/table_restore_test.go b/br/pkg/lightning/restore/table_restore_test.go index fb9f3df8a1ab2..17fb97e346e36 100644 --- a/br/pkg/lightning/restore/table_restore_test.go +++ b/br/pkg/lightning/restore/table_restore_test.go @@ -1469,6 +1469,10 @@ func (s *tableRestoreSuite) TestSchemaIsValid() { err = mockStore.WriteFile(ctx, case2File, []byte("\"colA\",\"colB\"\n\"a\",\"b\"")) require.NoError(s.T(), err) + case3File := "db1.table3.csv" + err = mockStore.WriteFile(ctx, case3File, []byte("\"a\",\"b\"")) + require.NoError(s.T(), err) + cases := []struct { ignoreColumns []*config.IgnoreColumns expectMsg string @@ -1830,9 +1834,300 @@ func (s *tableRestoreSuite) TestSchemaIsValid() { }, }, }, + // Case 5: + // table has two datafiles for table. + // ignore column and extended column are overlapped, + // we expect the check failed. + { + []*config.IgnoreColumns{ + { + DB: "db", + Table: "table", + Columns: []string{"colA"}, + }, + }, + "extend column colA is also assigned in ignore-column(.*)", + 1, + true, + map[string]*checkpoints.TidbDBInfo{ + "db": { + Name: "db", + Tables: map[string]*checkpoints.TidbTableInfo{ + "table": { + ID: 1, + DB: "db1", + Name: "table2", + Core: &model.TableInfo{ + Columns: []*model.ColumnInfo{ + { + Name: model.NewCIStr("colA"), + }, + { + Name: model.NewCIStr("colB"), + }, + }, + }, + }, + }, + }, + }, + &mydump.MDTableMeta{ + DB: "db", + Name: "table", + DataFiles: []mydump.FileInfo{ + { + FileMeta: mydump.SourceFileMeta{ + FileSize: 1 * units.TiB, + Path: case2File, + Type: mydump.SourceTypeCSV, + ExtendData: mydump.ExtendColumnData{ + Columns: []string{"colA"}, + Values: []string{"a"}, + }, + }, + }, + { + FileMeta: mydump.SourceFileMeta{ + FileSize: 1 * units.TiB, + Path: case2File, + Type: mydump.SourceTypeCSV, + ExtendData: mydump.ExtendColumnData{ + Columns: []string{}, + Values: []string{}, + }, + }, + }, + }, + }, + }, + // Case 6: + // table has one datafile for table. + // we expect the check failed because csv header contains extend column. + { + nil, + "extend column colA is contained in table(.*)", + 1, + true, + map[string]*checkpoints.TidbDBInfo{ + "db": { + Name: "db", + Tables: map[string]*checkpoints.TidbTableInfo{ + "table": { + ID: 1, + DB: "db1", + Name: "table2", + Core: &model.TableInfo{ + Columns: []*model.ColumnInfo{ + { + Name: model.NewCIStr("colA"), + }, + { + Name: model.NewCIStr("colB"), + }, + }, + }, + }, + }, + }, + }, + &mydump.MDTableMeta{ + DB: "db", + Name: "table", + DataFiles: []mydump.FileInfo{ + { + FileMeta: mydump.SourceFileMeta{ + FileSize: 1 * units.TiB, + Path: case2File, + Type: mydump.SourceTypeCSV, + ExtendData: mydump.ExtendColumnData{ + Columns: []string{"colA"}, + Values: []string{"a"}, + }, + }, + }, + }, + }, + }, + // Case 7: + // table has one datafile for table. + // we expect the check failed because csv data columns plus extend columns is greater than target schema's columns. + { + nil, + "row count 2 adding with extend column length 1 is larger than columnCount 2 plus ignore column count 0 for(.*)", + 1, + false, + map[string]*checkpoints.TidbDBInfo{ + "db": { + Name: "db", + Tables: map[string]*checkpoints.TidbTableInfo{ + "table": { + ID: 1, + DB: "db1", + Name: "table2", + Core: &model.TableInfo{ + Columns: []*model.ColumnInfo{ + { + Name: model.NewCIStr("colA"), + }, + { + Name: model.NewCIStr("colB"), + }, + }, + }, + }, + }, + }, + }, + &mydump.MDTableMeta{ + DB: "db", + Name: "table", + DataFiles: []mydump.FileInfo{ + { + FileMeta: mydump.SourceFileMeta{ + FileSize: 1 * units.TiB, + Path: case3File, + Type: mydump.SourceTypeCSV, + ExtendData: mydump.ExtendColumnData{ + Columns: []string{"colA"}, + Values: []string{"a"}, + }, + }, + }, + }, + }, + }, + // Case 8: + // table has two datafiles for table. + // we expect the check failed because target schema doesn't contain extend column. + { + nil, + "extend column \\[colC\\] don't exist in target table(.*)", + 1, + true, + map[string]*checkpoints.TidbDBInfo{ + "db": { + Name: "db", + Tables: map[string]*checkpoints.TidbTableInfo{ + "table": { + ID: 1, + DB: "db1", + Name: "table2", + Core: &model.TableInfo{ + Columns: []*model.ColumnInfo{ + { + Name: model.NewCIStr("colA"), + }, + { + Name: model.NewCIStr("colB"), + }, + }, + }, + }, + }, + }, + }, + &mydump.MDTableMeta{ + DB: "db", + Name: "table", + DataFiles: []mydump.FileInfo{ + { + FileMeta: mydump.SourceFileMeta{ + FileSize: 1 * units.TiB, + Path: case2File, + Type: mydump.SourceTypeCSV, + ExtendData: mydump.ExtendColumnData{ + Columns: []string{"colC"}, + Values: []string{"a"}, + }, + }, + }, + { + FileMeta: mydump.SourceFileMeta{ + FileSize: 1 * units.TiB, + Path: case2File, + Type: mydump.SourceTypeCSV, + ExtendData: mydump.ExtendColumnData{ + Columns: []string{"colC"}, + Values: []string{"b"}, + }, + }, + }, + }, + }, + }, + // Case 9: + // table has two datafiles and extend data for table. + // we expect the check succeed. + { + []*config.IgnoreColumns{ + { + DB: "db", + Table: "table", + Columns: []string{"colb"}, + }, + }, + "", + 0, + true, + map[string]*checkpoints.TidbDBInfo{ + "db": { + Name: "db", + Tables: map[string]*checkpoints.TidbTableInfo{ + "table": { + ID: 1, + DB: "db1", + Name: "table2", + Core: &model.TableInfo{ + Columns: []*model.ColumnInfo{ + { + Name: model.NewCIStr("colA"), + }, + { + Name: model.NewCIStr("colB"), + DefaultIsExpr: true, + }, + { + Name: model.NewCIStr("colC"), + }, + }, + }, + }, + }, + }, + }, + &mydump.MDTableMeta{ + DB: "db", + Name: "table", + DataFiles: []mydump.FileInfo{ + { + FileMeta: mydump.SourceFileMeta{ + FileSize: 1 * units.TiB, + Path: case2File, + Type: mydump.SourceTypeCSV, + ExtendData: mydump.ExtendColumnData{ + Columns: []string{"colC"}, + Values: []string{"a"}, + }, + }, + }, + { + FileMeta: mydump.SourceFileMeta{ + FileSize: 1 * units.TiB, + Path: case2File, + Type: mydump.SourceTypeCSV, + ExtendData: mydump.ExtendColumnData{ + Columns: []string{"colC"}, + Values: []string{"b"}, + }, + }, + }, + }, + }, + }, } - for _, ca := range cases { + for i, ca := range cases { + s.T().Logf("running testCase: #%d", i+1) cfg := &config.Config{ Mydumper: config.MydumperRuntime{ ReadBlockSize: config.ReadBlockSize, diff --git a/br/pkg/metautil/main_test.go b/br/pkg/metautil/main_test.go index 700d234b0182d..2b87f6047b950 100644 --- a/br/pkg/metautil/main_test.go +++ b/br/pkg/metautil/main_test.go @@ -24,6 +24,7 @@ import ( func TestMain(m *testing.M) { opts := []goleak.Option{ goleak.IgnoreTopFunction("github.com/golang/glog.(*loggingT).flushDaemon"), + goleak.IgnoreTopFunction("github.com/lestrrat-go/httprc.runFetchWorker"), goleak.IgnoreTopFunction("go.opencensus.io/stats/view.(*worker).start"), } testsetup.SetupForCommonTest() diff --git a/br/pkg/mock/mock_cluster_test.go b/br/pkg/mock/mock_cluster_test.go index 8a81c6e1ef6ee..37f24e8a7eca6 100644 --- a/br/pkg/mock/mock_cluster_test.go +++ b/br/pkg/mock/mock_cluster_test.go @@ -14,9 +14,11 @@ func TestSmoke(t *testing.T) { defer goleak.VerifyNone( t, goleak.IgnoreTopFunction("github.com/golang/glog.(*loggingT).flushDaemon"), + goleak.IgnoreTopFunction("github.com/lestrrat-go/httprc.runFetchWorker"), goleak.IgnoreTopFunction("github.com/klauspost/compress/zstd.(*blockDec).startDecoder"), goleak.IgnoreTopFunction("go.etcd.io/etcd/client/pkg/v3/logutil.(*MergeLogger).outputLoop"), - goleak.IgnoreTopFunction("go.opencensus.io/stats/view.(*worker).start")) + goleak.IgnoreTopFunction("go.opencensus.io/stats/view.(*worker).start"), + ) m, err := mock.NewCluster() require.NoError(t, err) require.NoError(t, m.Start()) diff --git a/br/pkg/pdutil/main_test.go b/br/pkg/pdutil/main_test.go index 86b9c6e1a61ad..8af7ac001aaa4 100644 --- a/br/pkg/pdutil/main_test.go +++ b/br/pkg/pdutil/main_test.go @@ -25,6 +25,7 @@ func TestMain(m *testing.M) { testsetup.SetupForCommonTest() opts := []goleak.Option{ goleak.IgnoreTopFunction("github.com/golang/glog.(*loggingT).flushDaemon"), + goleak.IgnoreTopFunction("github.com/lestrrat-go/httprc.runFetchWorker"), goleak.IgnoreTopFunction("go.etcd.io/etcd/client/pkg/v3/logutil.(*MergeLogger).outputLoop"), goleak.IgnoreTopFunction("go.opencensus.io/stats/view.(*worker).start"), } diff --git a/br/pkg/restore/BUILD.bazel b/br/pkg/restore/BUILD.bazel index d470d9d5a2655..2c42717bafe36 100644 --- a/br/pkg/restore/BUILD.bazel +++ b/br/pkg/restore/BUILD.bazel @@ -9,6 +9,7 @@ go_library( "db.go", "import.go", "import_retry.go", + "log_client.go", "merge.go", "pipeline_items.go", "range.go", @@ -33,6 +34,7 @@ go_library( "//br/pkg/metautil", "//br/pkg/pdutil", "//br/pkg/redact", + "//br/pkg/restore/prealloc_table_id", "//br/pkg/restore/split", "//br/pkg/restore/tiflashrec", "//br/pkg/rtree", @@ -40,7 +42,9 @@ go_library( "//br/pkg/stream", "//br/pkg/summary", "//br/pkg/utils", + "//br/pkg/utils/iter", "//config", + "//ddl", "//ddl/util", "//domain", "//kv", @@ -74,6 +78,8 @@ go_library( "@com_github_tikv_client_go_v2//kv", "@com_github_tikv_client_go_v2//oracle", "@com_github_tikv_client_go_v2//rawkv", + "@com_github_tikv_client_go_v2//tikv", + "@com_github_tikv_client_go_v2//txnkv/rangetask", "@com_github_tikv_pd_client//:client", "@org_golang_google_grpc//:grpc", "@org_golang_google_grpc//backoff", @@ -129,6 +135,7 @@ go_test( "//br/pkg/storage", "//br/pkg/stream", "//br/pkg/utils", + "//br/pkg/utils/iter", "//infoschema", "//kv", "//meta/autoid", @@ -142,7 +149,6 @@ go_test( "//testkit/testsetup", "//types", "//util/codec", - "//util/mathutil", "@com_github_fsouza_fake_gcs_server//fakestorage", "@com_github_golang_protobuf//proto", "@com_github_pingcap_errors//:errors", diff --git a/br/pkg/restore/client.go b/br/pkg/restore/client.go index 17a788f0e0cf2..81215e675c8c0 100644 --- a/br/pkg/restore/client.go +++ b/br/pkg/restore/client.go @@ -5,7 +5,6 @@ package restore import ( "bytes" "context" - "crypto/sha256" "crypto/tls" "encoding/hex" "encoding/json" @@ -32,6 +31,7 @@ import ( "github.com/pingcap/tidb/br/pkg/metautil" "github.com/pingcap/tidb/br/pkg/pdutil" "github.com/pingcap/tidb/br/pkg/redact" + tidalloc "github.com/pingcap/tidb/br/pkg/restore/prealloc_table_id" "github.com/pingcap/tidb/br/pkg/restore/split" "github.com/pingcap/tidb/br/pkg/restore/tiflashrec" "github.com/pingcap/tidb/br/pkg/rtree" @@ -136,24 +136,13 @@ type Client struct { supportPolicy bool - // startTS and restoreTS are used for kv file restore. - // TiKV will filter the key space that don't belong to [startTS, restoreTS]. - startTS uint64 - restoreTS uint64 - - // If the commitTS of txn-entry belong to [startTS, restoreTS], - // the startTS of txn-entry may be smaller than startTS. - // We need maintain and restore more entries in default cf - // (the startTS in these entries belong to [shiftStartTS, startTS]). - shiftStartTS uint64 - // currentTS is used for rewrite meta kv when restore stream. // Can not use `restoreTS` directly, because schema created in `full backup` maybe is new than `restoreTS`. currentTS uint64 - storage storage.ExternalStorage + *logFileManager - helper *stream.MetadataHelper + storage storage.ExternalStorage // if fullClusterRestore = true: // - if there's system tables in the backup(backup data since br 5.1.0), the cluster should be a fresh cluster @@ -173,6 +162,9 @@ type Client struct { // see RestoreCommonConfig.WithSysTable withSysTable bool + + // the successfully preallocated table IDs. + preallocedTableIDs *tidalloc.PreallocIDs } // NewRestoreClient returns a new RestoreClient. @@ -237,6 +229,26 @@ func (rc *Client) Init(g glue.Glue, store kv.Storage) error { return errors.Trace(err) } +func (rc *Client) allocTableIDs(ctx context.Context, tables []*metautil.Table) error { + rc.preallocedTableIDs = tidalloc.New(tables) + ctx = kv.WithInternalSourceType(ctx, kv.InternalTxnBR) + err := kv.RunInNewTxn(ctx, rc.GetDomain().Store(), true, func(_ context.Context, txn kv.Transaction) error { + return rc.preallocedTableIDs.Alloc(meta.NewMeta(txn)) + }) + if err != nil { + return err + } + + log.Info("registering the table IDs", zap.Stringer("ids", rc.preallocedTableIDs)) + for i := range rc.dbPool { + rc.dbPool[i].registerPreallocatedIDs(rc.preallocedTableIDs) + } + if rc.db != nil { + rc.db.registerPreallocatedIDs(rc.preallocedTableIDs) + } + return nil +} + // SetPlacementPolicyMode to policy mode. func (rc *Client) SetPlacementPolicyMode(withPlacementPolicy string) { switch strings.ToUpper(withPlacementPolicy) { @@ -314,14 +326,6 @@ func (rc *Client) Close() { log.Info("Restore client closed") } -func (rc *Client) SetRestoreRangeTS(startTs, restoreTS, shiftStartTS uint64) { - rc.startTS = startTs - rc.restoreTS = restoreTS - rc.shiftStartTS = shiftStartTS - log.Info("set restore range ts", zap.Uint64("shift-start-ts", shiftStartTS), - zap.Uint64("start-ts", startTs), zap.Uint64("restored-ts", restoreTS)) -} - func (rc *Client) SetCurrentTS(ts uint64) { rc.currentTS = ts } @@ -384,10 +388,6 @@ func (rc *Client) IsRawKvMode() bool { return rc.backupMeta.IsRawKv } -func (rc *Client) InitMetadataHelper() { - rc.helper = stream.NewMetadataHelper() -} - // GetFilesInRawRange gets all files that are in the given range or intersects with the given range. func (rc *Client) GetFilesInRawRange(startKey []byte, endKey []byte, cf string) ([]*backuppb.File, error) { if !rc.IsRawKvMode() { @@ -470,6 +470,35 @@ func (rc *Client) GetTS(ctx context.Context) (uint64, error) { return restoreTS, nil } +// GetTSWithRetry gets a new timestamp with retry from PD. +func (rc *Client) GetTSWithRetry(ctx context.Context) (uint64, error) { + var ( + startTS uint64 + getTSErr error + retry uint + ) + + err := utils.WithRetry(ctx, func() error { + startTS, getTSErr = rc.GetTS(ctx) + failpoint.Inject("get-ts-error", func(val failpoint.Value) { + if val.(bool) && retry < 3 { + getTSErr = errors.Errorf("rpc error: code = Unknown desc = [PD:tso:ErrGenerateTimestamp]generate timestamp failed, requested pd is not leader of cluster") + } + }) + + retry++ + if getTSErr != nil { + log.Warn("failed to get TS, retry it", zap.Uint("retry time", retry), logutil.ShortError(getTSErr)) + } + return getTSErr + }, utils.NewPDReqBackoffer()) + + if err != nil { + log.Error("failed to get TS", zap.Error(err)) + } + return startTS, errors.Trace(err) +} + // ResetTS resets the timestamp of PD to a bigger value. func (rc *Client) ResetTS(ctx context.Context, pdCtrl *pdutil.PdController) error { restoreTS := rc.backupMeta.GetEndVersion() @@ -724,6 +753,11 @@ func (rc *Client) GoCreateTables( } outCh := make(chan CreatedTable, len(tables)) rater := logutil.TraceRateOver(logutil.MetricTableCreatedCounter) + if err := rc.allocTableIDs(ctx, tables); err != nil { + errCh <- err + close(outCh) + return outCh + } var err error @@ -1345,7 +1379,7 @@ func (rc *Client) execChecksum( ctx = opentracing.ContextWithSpan(ctx, span1) } - startTS, err := rc.GetTS(ctx) + startTS, err := rc.GetTSWithRetry(ctx) if err != nil { return errors.Trace(err) } @@ -1700,109 +1734,18 @@ func (rc *Client) PreCheckTableClusterIndex( return nil } -func (rc *Client) GetShiftTS(ctx context.Context, startTS uint64, restoreTS uint64) (uint64, error) { - shiftTS := struct { - sync.Mutex - value uint64 - exists bool - }{} - err := stream.FastUnmarshalMetaData(ctx, rc.storage, func(path string, raw []byte) error { - m, err := rc.helper.ParseToMetadata(raw) - if err != nil { - return err - } - shiftTS.Lock() - defer shiftTS.Unlock() - - ts, ok := UpdateShiftTS(m, startTS, restoreTS) - if ok && (!shiftTS.exists || shiftTS.value > ts) { - shiftTS.value = ts - shiftTS.exists = true - } - return nil - }) - if err != nil { - return 0, err +func (rc *Client) InstallLogFileManager(ctx context.Context, startTS, restoreTS uint64) error { + init := LogFileManagerInit{ + StartTS: startTS, + RestoreTS: restoreTS, + Storage: rc.storage, } - if !shiftTS.exists { - return startTS, nil - } - return shiftTS.value, nil -} - -// ReadStreamMetaByTS is used for streaming task. collect all meta file by TS. -func (rc *Client) ReadStreamMetaByTS(ctx context.Context, shiftedStartTS uint64, restoreTS uint64) ([]*backuppb.Metadata, error) { - streamBackupMetaFiles := struct { - sync.Mutex - metas []*backuppb.Metadata - }{} - streamBackupMetaFiles.metas = make([]*backuppb.Metadata, 0, 128) - - err := stream.FastUnmarshalMetaData(ctx, rc.storage, func(path string, raw []byte) error { - metadata, err := rc.helper.ParseToMetadata(raw) - if err != nil { - return err - } - streamBackupMetaFiles.Lock() - if restoreTS >= metadata.MinTs && metadata.MaxTs >= shiftedStartTS { - streamBackupMetaFiles.metas = append(streamBackupMetaFiles.metas, metadata) - } - streamBackupMetaFiles.Unlock() - return nil - }) + var err error + rc.logFileManager, err = CreateLogFileManager(ctx, init) if err != nil { - return nil, errors.Trace(err) - } - return streamBackupMetaFiles.metas, nil -} - -// ReadStreamDataFiles is used for streaming task. collect all meta file by TS. -func (rc *Client) ReadStreamDataFiles( - ctx context.Context, - metas []*backuppb.Metadata, -) (dataFiles, metaFiles []*backuppb.DataFileInfo, err error) { - dFiles := make([]*backuppb.DataFileInfo, 0) - mFiles := make([]*backuppb.DataFileInfo, 0) - - for _, m := range metas { - _, exists := backuppb.MetaVersion_name[int32(m.MetaVersion)] - if !exists { - log.Warn("metaversion too new", zap.Reflect("version id", m.MetaVersion)) - } - for _, ds := range m.FileGroups { - metaRef := 0 - for _, d := range ds.DataFilesInfo { - if d.MinTs > rc.restoreTS { - continue - } else if d.Cf == stream.WriteCF && d.MaxTs < rc.startTS { - continue - } else if d.Cf == stream.DefaultCF && d.MaxTs < rc.shiftStartTS { - continue - } - - // If ds.Path is empty, it is MetadataV1. - // Try to be compatible with newer metadata version - if m.MetaVersion > backuppb.MetaVersion_V1 { - d.Path = ds.Path - } - - if d.IsMeta { - mFiles = append(mFiles, d) - metaRef += 1 - } else { - dFiles = append(dFiles, d) - } - log.Debug("backup stream collect data partition", zap.Uint64("offset", d.RangeOffset), zap.Uint64("length", d.Length)) - } - // metadatav1 doesn't use cache - // Try to be compatible with newer metadata version - if m.MetaVersion > backuppb.MetaVersion_V1 { - rc.helper.InitCacheEntry(ds.Path, metaRef) - } - } + return err } - - return dFiles, mFiles, nil + return nil } // FixIndex tries to fix a single index. @@ -1867,22 +1810,21 @@ func (rc *Client) FixIndicesOfTable(ctx context.Context, schema string, table *m func (rc *Client) RestoreKVFiles( ctx context.Context, rules map[int64]*RewriteRules, - files []*backuppb.DataFileInfo, + files LogIter, updateStats func(kvCount uint64, size uint64), onProgress func(), ) error { var err error + fileCount := 0 start := time.Now() defer func() { elapsed := time.Since(start) if err == nil { log.Info("Restore KV files", zap.Duration("take", elapsed)) - summary.CollectSuccessUnit("files", len(files), elapsed) + summary.CollectSuccessUnit("files", fileCount, elapsed) } }() - log.Debug("start to restore files", zap.Int("files", len(files))) - if span := opentracing.SpanFromContext(ctx); span != nil && span.Tracer() != nil { span1 := span.Tracer().StartSpan("Client.RestoreKVFiles", opentracing.ChildOf(span.Context())) defer span1.Finish() @@ -1922,13 +1864,19 @@ func (rc *Client) RestoreKVFiles( }) } } - for _, file := range files { + for r := files.TryNext(ctx); !r.Finished; r = files.TryNext(ctx) { + if r.Err != nil { + return err + } + file := r.Item if file.Type == backuppb.FileType_Delete { // collect delete type file and apply it later. deleteFiles = append(deleteFiles, file) continue } fileReplica := file + // applyFunc blocks once there aren't enough workers. + // this would help us don't load too many DML file info. applyFunc(fileReplica) } if len(deleteFiles) > 0 { @@ -2216,7 +2164,7 @@ func (rc *Client) RestoreBatchMetaKVFiles( // read all of entries from files. for _, f := range files { - es, nextEs, err := rc.readAllEntries(ctx, f, filterTS) + es, nextEs, err := rc.ReadAllEntries(ctx, f, filterTS) if err != nil { return nextKvEntries, errors.Trace(err) } @@ -2243,72 +2191,6 @@ func (rc *Client) RestoreBatchMetaKVFiles( return nextKvEntries, nil } -func (rc *Client) readAllEntries( - ctx context.Context, - file *backuppb.DataFileInfo, - filterTS uint64, -) ([]*KvEntryWithTS, []*KvEntryWithTS, error) { - kvEntries := make([]*KvEntryWithTS, 0) - nextKvEntries := make([]*KvEntryWithTS, 0) - - buff, err := rc.helper.ReadFile(ctx, file.Path, file.RangeOffset, file.RangeLength, file.CompressionType, rc.storage) - if err != nil { - return nil, nil, errors.Trace(err) - } - - if checksum := sha256.Sum256(buff); !bytes.Equal(checksum[:], file.GetSha256()) { - return nil, nil, errors.Annotatef(berrors.ErrInvalidMetaFile, - "checksum mismatch expect %x, got %x", file.GetSha256(), checksum[:]) - } - - iter := stream.NewEventIterator(buff) - for iter.Valid() { - iter.Next() - if iter.GetError() != nil { - return nil, nil, errors.Trace(iter.GetError()) - } - - txnEntry := kv.Entry{Key: iter.Key(), Value: iter.Value()} - - if !stream.MaybeDBOrDDLJobHistoryKey(txnEntry.Key) { - // only restore mDB and mDDLHistory - continue - } - - ts, err := GetKeyTS(txnEntry.Key) - if err != nil { - return nil, nil, errors.Trace(err) - } - - // The commitTs in write CF need be limited on [startTs, restoreTs]. - // We can restore more key-value in default CF. - if ts > rc.restoreTS { - continue - } else if file.Cf == stream.WriteCF && ts < rc.startTS { - continue - } else if file.Cf == stream.DefaultCF && ts < rc.shiftStartTS { - continue - } - - if len(txnEntry.Value) == 0 { - // we might record duplicated prewrite keys in some conor cases. - // the first prewrite key has the value but the second don't. - // so we can ignore the empty value key. - // see details at https://github.com/pingcap/tiflow/issues/5468. - log.Warn("txn entry is null", zap.Uint64("key-ts", ts), zap.ByteString("tnxKey", txnEntry.Key)) - continue - } - - if ts < filterTS { - kvEntries = append(kvEntries, &KvEntryWithTS{e: txnEntry, ts: ts}) - } else { - nextKvEntries = append(nextKvEntries, &KvEntryWithTS{e: txnEntry, ts: ts}) - } - } - - return kvEntries, nextKvEntries, nil -} - func (rc *Client) restoreMetaKvEntries( ctx context.Context, sr *stream.SchemasReplace, diff --git a/br/pkg/restore/client_test.go b/br/pkg/restore/client_test.go index f44eff5d36b67..c43c3c80c2452 100644 --- a/br/pkg/restore/client_test.go +++ b/br/pkg/restore/client_test.go @@ -12,6 +12,7 @@ import ( "testing" "time" + "github.com/pingcap/errors" "github.com/pingcap/failpoint" backuppb "github.com/pingcap/kvproto/pkg/brpb" "github.com/pingcap/kvproto/pkg/import_sstpb" @@ -330,12 +331,54 @@ func TestPreCheckTableClusterIndex(t *testing.T) { type fakePDClient struct { pd.Client stores []*metapb.Store + + notLeader bool } +var retryTimes int + func (fpdc fakePDClient) GetAllStores(context.Context, ...pd.GetStoreOption) ([]*metapb.Store, error) { return append([]*metapb.Store{}, fpdc.stores...), nil } +func (fpdc fakePDClient) GetTS(ctx context.Context) (int64, int64, error) { + retryTimes++ + if retryTimes >= 3 { // the mock PD leader switched successfully + fpdc.notLeader = false + } + + if fpdc.notLeader { + return 0, 0, errors.Errorf("rpc error: code = Unknown desc = [PD:tso:ErrGenerateTimestamp]generate timestamp failed, requested pd is not leader of cluster") + } + return 1, 1, nil +} + +func TestGetTSWithRetry(t *testing.T) { + t.Run("PD leader is healthy:", func(t *testing.T) { + retryTimes = -1000 + pDClient := fakePDClient{notLeader: false} + client := restore.NewRestoreClient(pDClient, nil, defaultKeepaliveCfg, false) + _, err := client.GetTSWithRetry(context.Background()) + require.NoError(t, err) + }) + + t.Run("PD leader failure:", func(t *testing.T) { + retryTimes = -1000 + pDClient := fakePDClient{notLeader: true} + client := restore.NewRestoreClient(pDClient, nil, defaultKeepaliveCfg, false) + _, err := client.GetTSWithRetry(context.Background()) + require.Error(t, err) + }) + + t.Run("PD leader switch successfully", func(t *testing.T) { + retryTimes = 0 + pDClient := fakePDClient{notLeader: true} + client := restore.NewRestoreClient(pDClient, nil, defaultKeepaliveCfg, false) + _, err := client.GetTSWithRetry(context.Background()) + require.NoError(t, err) + }) +} + func TestPreCheckTableTiFlashReplicas(t *testing.T) { m := mc mockStores := []*metapb.Store{ diff --git a/br/pkg/restore/data.go b/br/pkg/restore/data.go index 73ef3130f2a20..f7efce83362f5 100644 --- a/br/pkg/restore/data.go +++ b/br/pkg/restore/data.go @@ -4,6 +4,7 @@ package restore import ( "context" "io" + "sync/atomic" "github.com/pingcap/errors" "github.com/pingcap/kvproto/pkg/metapb" @@ -13,7 +14,11 @@ import ( "github.com/pingcap/tidb/br/pkg/conn" "github.com/pingcap/tidb/br/pkg/glue" "github.com/pingcap/tidb/br/pkg/utils" + "github.com/pingcap/tidb/ddl" "github.com/pingcap/tidb/util/mathutil" + tikvstore "github.com/tikv/client-go/v2/kv" + "github.com/tikv/client-go/v2/tikv" + "github.com/tikv/client-go/v2/txnkv/rangetask" "go.uber.org/zap" "golang.org/x/sync/errgroup" "google.golang.org/grpc" @@ -25,9 +30,10 @@ import ( // 2. make recovery plan and then recovery max allocate ID firstly // 3. send the recover plan and the wait tikv to apply, in waitapply, all assigned region leader will check apply log to the last log // 4. ensure all region apply to last log -// 5. send the resolvedTs to tikv for deleting data. -func RecoverData(ctx context.Context, resolvedTs uint64, allStores []*metapb.Store, mgr *conn.Mgr, progress glue.Progress) (int, error) { - var recovery = NewRecovery(allStores, mgr, progress) +// 5. prepare the flashback +// 6. flashback to resolveTS +func RecoverData(ctx context.Context, resolveTS uint64, allStores []*metapb.Store, mgr *conn.Mgr, progress glue.Progress, restoreTS uint64, concurrency uint32) (int, error) { + var recovery = NewRecovery(allStores, mgr, progress, concurrency) if err := recovery.ReadRegionMeta(ctx); err != nil { return 0, errors.Trace(err) } @@ -51,7 +57,11 @@ func RecoverData(ctx context.Context, resolvedTs uint64, allStores []*metapb.Sto return totalRegions, errors.Trace(err) } - if err := recovery.ResolveData(ctx, resolvedTs); err != nil { + if err := recovery.PrepareFlashbackToVersion(ctx); err != nil { + return totalRegions, errors.Trace(err) + } + + if err := recovery.FlashbackToVersion(ctx, resolveTS, restoreTS); err != nil { return totalRegions, errors.Trace(err) } @@ -70,33 +80,36 @@ func NewStoreMeta(storeId uint64) StoreMeta { // for test type Recovery struct { - allStores []*metapb.Store - StoreMetas []StoreMeta - RecoveryPlan map[uint64][]*recovpb.RecoverRegionRequest - MaxAllocID uint64 - mgr *conn.Mgr - progress glue.Progress + allStores []*metapb.Store + StoreMetas []StoreMeta + RecoveryPlan map[uint64][]*recovpb.RecoverRegionRequest + MaxAllocID uint64 + mgr *conn.Mgr + progress glue.Progress + concurrency uint32 + totalFlashbackRegions uint64 } -func NewRecovery(allStores []*metapb.Store, mgr *conn.Mgr, progress glue.Progress) Recovery { +func NewRecovery(allStores []*metapb.Store, mgr *conn.Mgr, progress glue.Progress, concurrency uint32) Recovery { totalStores := len(allStores) var StoreMetas = make([]StoreMeta, totalStores) var regionRecovers = make(map[uint64][]*recovpb.RecoverRegionRequest, totalStores) return Recovery{ - allStores: allStores, - StoreMetas: StoreMetas, - RecoveryPlan: regionRecovers, - MaxAllocID: 0, - mgr: mgr, - progress: progress} + allStores: allStores, + StoreMetas: StoreMetas, + RecoveryPlan: regionRecovers, + MaxAllocID: 0, + mgr: mgr, + progress: progress, + concurrency: concurrency, + totalFlashbackRegions: 0} } func (recovery *Recovery) newRecoveryClient(ctx context.Context, storeAddr string) (recovpb.RecoverDataClient, *grpc.ClientConn, error) { // Connect to the Recovery service on the given TiKV node. bfConf := backoff.DefaultConfig bfConf.MaxDelay = gRPCBackOffMaxDelay - //TODO: connection may need some adjust - //keepaliveConf keepalive.ClientParameters + conn, err := utils.GRPCConn(ctx, storeAddr, recovery.mgr.GetTLSConfig(), grpc.WithConnectParams(grpc.ConnectParams{Backoff: bfConf}), grpc.WithKeepaliveParams(recovery.mgr.GetKeepalive()), @@ -190,8 +203,6 @@ func (recovery *Recovery) ReadRegionMeta(ctx context.Context) error { return eg.Wait() } -// TODO: map may be more suitable for this function - func (recovery *Recovery) GetTotalRegions() int { // Group region peer info by region id. var regions = make(map[uint64]struct{}, 0) @@ -292,51 +303,63 @@ func (recovery *Recovery) WaitApply(ctx context.Context) (err error) { return eg.Wait() } -// ResolveData a worker pool to all tikv for execute delete all data whose has ts > resolvedTs -func (recovery *Recovery) ResolveData(ctx context.Context, resolvedTs uint64) (err error) { - eg, ectx := errgroup.WithContext(ctx) - totalStores := len(recovery.allStores) - workers := utils.NewWorkerPool(uint(mathutil.Min(totalStores, common.MaxStoreConcurrency)), "resolve data from tikv") +// prepare the region for flashback the data, the purpose is to stop region service, put region in flashback state +func (recovery *Recovery) PrepareFlashbackToVersion(ctx context.Context) (err error) { + var totalRegions atomic.Uint64 + totalRegions.Store(0) - // TODO: what if the resolved data take long time take long time?, it look we need some handling here, at least some retry may necessary - // TODO: what if the network disturbing, a retry machanism may need here - for _, store := range recovery.allStores { - if err := ectx.Err(); err != nil { - break - } - storeAddr := getStoreAddress(recovery.allStores, store.Id) - storeId := store.Id - workers.ApplyOnErrorGroup(eg, func() error { - recoveryClient, conn, err := recovery.newRecoveryClient(ectx, storeAddr) - if err != nil { - return errors.Trace(err) - } - defer conn.Close() - log.Info("resolve data to tikv", zap.String("tikv address", storeAddr), zap.Uint64("store id", storeId)) - req := &recovpb.ResolveKvDataRequest{ResolvedTs: resolvedTs} - stream, err := recoveryClient.ResolveKvData(ectx, req) - if err != nil { - log.Error("send the resolve kv data failed", zap.Uint64("store id", storeId)) - return errors.Trace(err) - } - // for a TiKV, received the stream - for { - var resp *recovpb.ResolveKvDataResponse - if resp, err = stream.Recv(); err == nil { - log.Info("current delete key", zap.Uint64("resolved key num", resp.ResolvedKeyCount), zap.Uint64("store id", resp.StoreId)) - } else if err == io.EOF { - break - } else { - return errors.Trace(err) - } - } - recovery.progress.Inc() - log.Info("resolve kv data done", zap.String("tikv address", storeAddr), zap.Uint64("store id", storeId)) - return nil - }) + handler := func(ctx context.Context, r tikvstore.KeyRange) (rangetask.TaskStat, error) { + stats, err := ddl.SendPrepareFlashbackToVersionRPC(ctx, recovery.mgr.GetStorage().(tikv.Storage), r) + totalRegions.Add(uint64(stats.CompletedRegions)) + return stats, err } - // Wait for all TiKV instances force leader and wait apply to last log. - return eg.Wait() + + runner := rangetask.NewRangeTaskRunner("br-flashback-prepare-runner", recovery.mgr.GetStorage().(tikv.Storage), int(recovery.concurrency), handler) + // Run prepare flashback on the entire TiKV cluster. Empty keys means the range is unbounded. + err = runner.RunOnRange(ctx, []byte(""), []byte("")) + if err != nil { + log.Error("region flashback prepare get error") + return errors.Trace(err) + } + + recovery.totalFlashbackRegions = totalRegions.Load() + log.Info("region flashback prepare complete", zap.Int("regions", runner.CompletedRegions())) + + return nil +} + +// flashback the region data to version resolveTS +func (recovery *Recovery) FlashbackToVersion(ctx context.Context, resolveTS uint64, commitTS uint64) (err error) { + var completedRegions atomic.Uint64 + + // only know the total progress of tikv, progress is total state of the whole restore flow. + ratio := int(recovery.totalFlashbackRegions) / len(recovery.allStores) + + handler := func(ctx context.Context, r tikvstore.KeyRange) (rangetask.TaskStat, error) { + stats, err := ddl.SendFlashbackToVersionRPC(ctx, recovery.mgr.GetStorage().(tikv.Storage), resolveTS, commitTS-1, commitTS, r) + completedRegions.Add(uint64(stats.CompletedRegions)) + return stats, err + } + + runner := rangetask.NewRangeTaskRunner("br-flashback-runner", recovery.mgr.GetStorage().(tikv.Storage), int(recovery.concurrency), handler) + // Run flashback on the entire TiKV cluster. Empty keys means the range is unbounded. + err = runner.RunOnRange(ctx, []byte(""), []byte("")) + if err != nil { + log.Error("region flashback get error", + zap.Uint64("resolveTS", resolveTS), + zap.Uint64("commitTS", commitTS), + zap.Int("regions", runner.CompletedRegions())) + return errors.Trace(err) + } + + recovery.progress.IncBy(int64(completedRegions.Load()) / int64(ratio)) + + log.Info("region flashback complete", + zap.Uint64("resolveTS", resolveTS), + zap.Uint64("commitTS", commitTS), + zap.Int("regions", runner.CompletedRegions())) + + return nil } type RecoverRegion struct { diff --git a/br/pkg/restore/data_test.go b/br/pkg/restore/data_test.go index a864494249308..bb85ab1c6e7a4 100644 --- a/br/pkg/restore/data_test.go +++ b/br/pkg/restore/data_test.go @@ -97,7 +97,7 @@ func createDataSuite(t *testing.T) *testData { fakeProgress := mockGlue.StartProgress(ctx, "Restore Data", int64(numOnlineStore*3), false) - var recovery = restore.NewRecovery(createStores(), mockMgr, fakeProgress) + var recovery = restore.NewRecovery(createStores(), mockMgr, fakeProgress, 64) tikvClient.Close() return &testData{ ctx: ctx, diff --git a/br/pkg/restore/db.go b/br/pkg/restore/db.go index c761d53693364..ae62162c3e890 100644 --- a/br/pkg/restore/db.go +++ b/br/pkg/restore/db.go @@ -11,7 +11,9 @@ import ( "github.com/pingcap/log" "github.com/pingcap/tidb/br/pkg/glue" "github.com/pingcap/tidb/br/pkg/metautil" + prealloctableid "github.com/pingcap/tidb/br/pkg/restore/prealloc_table_id" "github.com/pingcap/tidb/br/pkg/utils" + "github.com/pingcap/tidb/ddl" "github.com/pingcap/tidb/domain" "github.com/pingcap/tidb/kv" "github.com/pingcap/tidb/parser/model" @@ -24,7 +26,8 @@ import ( // DB is a TiDB instance, not thread-safe. type DB struct { - se glue.Session + se glue.Session + preallocedIDs *prealloctableid.PreallocIDs } type UniqueTableName struct { @@ -78,6 +81,10 @@ func NewDB(g glue.Glue, store kv.Storage, policyMode string) (*DB, bool, error) }, supportPolicy, nil } +func (db *DB) registerPreallocatedIDs(ids *prealloctableid.PreallocIDs) { + db.preallocedIDs = ids +} + // ExecDDL executes the query of a ddl job. func (db *DB) ExecDDL(ctx context.Context, ddlJob *model.Job) error { var err error @@ -272,6 +279,19 @@ func (db *DB) CreateTablePostRestore(ctx context.Context, table *metautil.Table, return nil } +func (db *DB) tableIDAllocFilter() ddl.AllocTableIDIf { + return func(ti *model.TableInfo) bool { + if db.preallocedIDs == nil { + return true + } + prealloced := db.preallocedIDs.Prealloced(ti.ID) + if prealloced { + log.Info("reusing table ID", zap.Stringer("table", ti.Name)) + } + return !prealloced + } +} + // CreateTables execute a internal CREATE TABLES. func (db *DB) CreateTables(ctx context.Context, tables []*metautil.Table, ddlTables map[UniqueTableName]bool, supportPolicy bool, policyMap *sync.Map) error { @@ -289,7 +309,7 @@ func (db *DB) CreateTables(ctx context.Context, tables []*metautil.Table, } } } - if err := batchSession.CreateTables(ctx, m); err != nil { + if err := batchSession.CreateTables(ctx, m, db.tableIDAllocFilter()); err != nil { return err } @@ -316,7 +336,7 @@ func (db *DB) CreateTable(ctx context.Context, table *metautil.Table, } } - err := db.se.CreateTable(ctx, table.DB.Name, table.Info) + err := db.se.CreateTable(ctx, table.DB.Name, table.Info, db.tableIDAllocFilter()) if err != nil { log.Error("create table failed", zap.Stringer("db", table.DB.Name), diff --git a/br/pkg/restore/log_client.go b/br/pkg/restore/log_client.go new file mode 100644 index 0000000000000..7c01897741ba2 --- /dev/null +++ b/br/pkg/restore/log_client.go @@ -0,0 +1,342 @@ +// Copyright 2022 PingCAP, Inc. Licensed under Apache-2.0. + +package restore + +import ( + "bytes" + "context" + "crypto/sha256" + "strings" + "sync" + + "github.com/pingcap/errors" + backuppb "github.com/pingcap/kvproto/pkg/brpb" + "github.com/pingcap/log" + berrors "github.com/pingcap/tidb/br/pkg/errors" + "github.com/pingcap/tidb/br/pkg/storage" + "github.com/pingcap/tidb/br/pkg/stream" + "github.com/pingcap/tidb/br/pkg/utils/iter" + "github.com/pingcap/tidb/kv" + "go.uber.org/zap" +) + +const ( + readMetaConcurrency = 128 + readMetaBatchSize = 512 +) + +// MetaIter is the type of iterator of metadata files' content. +type MetaIter = iter.TryNextor[*backuppb.Metadata] + +// LogIter is the type of iterator of each log files' meta information. +type LogIter = iter.TryNextor[*backuppb.DataFileInfo] + +// MetaGroupIter is the iterator of flushes of metadata. +type MetaGroupIter = iter.TryNextor[DDLMetaGroup] + +// Meta is the metadata of files. +type Meta = *backuppb.Metadata + +// Log is the metadata of one file recording KV sequences. +type Log = *backuppb.DataFileInfo + +// logFileManager is the manager for log files of a certain restoration, +// which supports read / filter from the log backup archive with static start TS / restore TS. +type logFileManager struct { + // startTS and restoreTS are used for kv file restore. + // TiKV will filter the key space that don't belong to [startTS, restoreTS]. + startTS uint64 + restoreTS uint64 + + // If the commitTS of txn-entry belong to [startTS, restoreTS], + // the startTS of txn-entry may be smaller than startTS. + // We need maintain and restore more entries in default cf + // (the startTS in these entries belong to [shiftStartTS, startTS]). + shiftStartTS uint64 + + storage storage.ExternalStorage + helper *stream.MetadataHelper +} + +// LogFileManagerInit is the config needed for initializing the log file manager. +type LogFileManagerInit struct { + StartTS uint64 + RestoreTS uint64 + Storage storage.ExternalStorage +} + +type DDLMetaGroup struct { + Path string + FileMetas []*backuppb.DataFileInfo +} + +// CreateLogFileManager creates a log file manager using the specified config. +// Generally the config cannot be changed during its lifetime. +func CreateLogFileManager(ctx context.Context, init LogFileManagerInit) (*logFileManager, error) { + fm := &logFileManager{ + startTS: init.StartTS, + restoreTS: init.RestoreTS, + storage: init.Storage, + helper: stream.NewMetadataHelper(), + } + err := fm.loadShiftTS(ctx) + if err != nil { + return nil, err + } + return fm, nil +} + +func (rc *logFileManager) ShiftTS() uint64 { + return rc.shiftStartTS +} + +func (rc *logFileManager) loadShiftTS(ctx context.Context) error { + shiftTS := struct { + sync.Mutex + value uint64 + exists bool + }{} + err := stream.FastUnmarshalMetaData(ctx, rc.storage, func(path string, raw []byte) error { + m, err := rc.helper.ParseToMetadata(raw) + if err != nil { + return err + } + shiftTS.Lock() + defer shiftTS.Unlock() + + ts, ok := UpdateShiftTS(m, rc.startTS, rc.restoreTS) + if ok && (!shiftTS.exists || shiftTS.value > ts) { + shiftTS.value = ts + shiftTS.exists = true + } + return nil + }) + if err != nil { + return err + } + if !shiftTS.exists { + rc.shiftStartTS = rc.startTS + return nil + } + rc.shiftStartTS = shiftTS.value + return nil +} + +func (rc *logFileManager) streamingMeta(ctx context.Context) (MetaIter, error) { + return rc.streamingMetaByTS(ctx, rc.restoreTS) +} + +func (rc *logFileManager) streamingMetaByTS(ctx context.Context, restoreTS uint64) (MetaIter, error) { + it, err := rc.createMetaIterOver(ctx, rc.storage) + if err != nil { + return nil, err + } + filtered := iter.FilterOut(it, func(metadata *backuppb.Metadata) bool { + return restoreTS < metadata.MinTs || metadata.MaxTs < rc.shiftStartTS + }) + return filtered, nil +} + +func (rc *logFileManager) createMetaIterOver(ctx context.Context, s storage.ExternalStorage) (MetaIter, error) { + opt := &storage.WalkOption{SubDir: stream.GetStreamBackupMetaPrefix()} + names := []string{} + err := s.WalkDir(ctx, opt, func(path string, size int64) error { + if !strings.HasSuffix(path, ".meta") { + return nil + } + names = append(names, path) + return nil + }) + if err != nil { + return nil, err + } + namesIter := iter.FromSlice(names) + readMeta := func(ctx context.Context, name string) (*backuppb.Metadata, error) { + f, err := s.ReadFile(ctx, name) + if err != nil { + return nil, errors.Annotatef(err, "failed during reading file %s", name) + } + meta, err := rc.helper.ParseToMetadata(f) + if err != nil { + return nil, errors.Annotatef(err, "failed to parse metadata of file %s", name) + } + return meta, nil + } + reader := iter.Transform(namesIter, readMeta, + iter.WithChunkSize(readMetaBatchSize), iter.WithConcurrency(readMetaConcurrency)) + return reader, nil +} + +func (rc *logFileManager) FilterDataFiles(ms MetaIter) LogIter { + return iter.FlatMap(ms, func(m *backuppb.Metadata) LogIter { + return iter.FlatMap(iter.FromSlice(m.FileGroups), func(g *backuppb.DataFileGroup) LogIter { + return iter.FilterOut(iter.FromSlice(g.DataFilesInfo), func(d *backuppb.DataFileInfo) bool { + // Modify the data internally, a little hacky. + if m.MetaVersion > backuppb.MetaVersion_V1 { + d.Path = g.Path + } + return d.IsMeta || rc.ShouldFilterOut(d) + }) + }) + }) +} + +// ShouldFilterOut checks whether a file should be filtered out via the current client. +func (rc *logFileManager) ShouldFilterOut(d *backuppb.DataFileInfo) bool { + return d.MinTs > rc.restoreTS || + (d.Cf == stream.WriteCF && d.MaxTs < rc.startTS) || + (d.Cf == stream.DefaultCF && d.MaxTs < rc.shiftStartTS) +} + +func (rc *logFileManager) collectDDLFilesAndPrepareCache( + ctx context.Context, + files MetaGroupIter, +) ([]Log, error) { + fs := iter.CollectAll(ctx, files) + if fs.Err != nil { + return nil, errors.Annotatef(fs.Err, "failed to collect from files") + } + + dataFileInfos := make([]*backuppb.DataFileInfo, 0) + for _, g := range fs.Item { + rc.helper.InitCacheEntry(g.Path, len(g.FileMetas)) + dataFileInfos = append(dataFileInfos, g.FileMetas...) + } + + return dataFileInfos, nil +} + +// LoadDDLFilesAndCountDMLFiles loads all DDL files needs to be restored in the restoration. +// At the same time, if the `counter` isn't nil, counting the DML file needs to be restored into `counter`. +// This function returns all DDL files needing directly because we need sort all of them. +func (rc *logFileManager) LoadDDLFilesAndCountDMLFiles(ctx context.Context, counter *int) ([]Log, error) { + m, err := rc.streamingMeta(ctx) + if err != nil { + return nil, err + } + if counter != nil { + m = iter.Tap(m, func(m Meta) { + for _, fg := range m.FileGroups { + for _, f := range fg.DataFilesInfo { + if !f.IsMeta && !rc.ShouldFilterOut(f) { + *counter += 1 + } + } + } + }) + } + mg := rc.FilterMetaFiles(m) + + return rc.collectDDLFilesAndPrepareCache(ctx, mg) +} + +// LoadDMLFiles loads all DML files needs to be restored in the restoration. +// This function returns a stream, because there are usually many DML files need to be restored. +func (rc *logFileManager) LoadDMLFiles(ctx context.Context) (LogIter, error) { + m, err := rc.streamingMeta(ctx) + if err != nil { + return nil, err + } + + mg := rc.FilterDataFiles(m) + return mg, nil +} + +// readStreamMetaByTS is used for streaming task. collect all meta file by TS, it is for test usage. +func (rc *logFileManager) readStreamMeta(ctx context.Context) ([]Meta, error) { + metas, err := rc.streamingMeta(ctx) + if err != nil { + return nil, err + } + r := iter.CollectAll(ctx, metas) + if r.Err != nil { + return nil, errors.Trace(r.Err) + } + return r.Item, nil +} + +func (rc *logFileManager) FilterMetaFiles(ms MetaIter) MetaGroupIter { + return iter.FlatMap(ms, func(m Meta) MetaGroupIter { + return iter.Map(iter.FromSlice(m.FileGroups), func(g *backuppb.DataFileGroup) DDLMetaGroup { + metas := iter.FilterOut(iter.FromSlice(g.DataFilesInfo), func(d Log) bool { + // Modify the data internally, a little hacky. + if m.MetaVersion > backuppb.MetaVersion_V1 { + d.Path = g.Path + } + return !d.IsMeta || rc.ShouldFilterOut(d) + }) + return DDLMetaGroup{ + Path: g.Path, + // NOTE: the metas iterator is pure. No context or cancel needs. + FileMetas: iter.CollectAll(context.Background(), metas).Item, + } + }) + }) +} + +// ReadAllEntries loads content of a log file, with filtering out no needed entries. +func (rc *logFileManager) ReadAllEntries( + ctx context.Context, + file Log, + filterTS uint64, +) ([]*KvEntryWithTS, []*KvEntryWithTS, error) { + kvEntries := make([]*KvEntryWithTS, 0) + nextKvEntries := make([]*KvEntryWithTS, 0) + + buff, err := rc.helper.ReadFile(ctx, file.Path, file.RangeOffset, file.RangeLength, file.CompressionType, rc.storage) + if err != nil { + return nil, nil, errors.Trace(err) + } + + if checksum := sha256.Sum256(buff); !bytes.Equal(checksum[:], file.GetSha256()) { + return nil, nil, errors.Annotatef(berrors.ErrInvalidMetaFile, + "checksum mismatch expect %x, got %x", file.GetSha256(), checksum[:]) + } + + iter := stream.NewEventIterator(buff) + for iter.Valid() { + iter.Next() + if iter.GetError() != nil { + return nil, nil, errors.Trace(iter.GetError()) + } + + txnEntry := kv.Entry{Key: iter.Key(), Value: iter.Value()} + + if !stream.MaybeDBOrDDLJobHistoryKey(txnEntry.Key) { + // only restore mDB and mDDLHistory + continue + } + + ts, err := GetKeyTS(txnEntry.Key) + if err != nil { + return nil, nil, errors.Trace(err) + } + + // The commitTs in write CF need be limited on [startTs, restoreTs]. + // We can restore more key-value in default CF. + if ts > rc.restoreTS { + continue + } else if file.Cf == stream.WriteCF && ts < rc.startTS { + continue + } else if file.Cf == stream.DefaultCF && ts < rc.shiftStartTS { + continue + } + + if len(txnEntry.Value) == 0 { + // we might record duplicated prewrite keys in some conor cases. + // the first prewrite key has the value but the second don't. + // so we can ignore the empty value key. + // see details at https://github.com/pingcap/tiflow/issues/5468. + log.Warn("txn entry is null", zap.Uint64("key-ts", ts), zap.ByteString("tnxKey", txnEntry.Key)) + continue + } + + if ts < filterTS { + kvEntries = append(kvEntries, &KvEntryWithTS{e: txnEntry, ts: ts}) + } else { + nextKvEntries = append(nextKvEntries, &KvEntryWithTS{e: txnEntry, ts: ts}) + } + } + + return kvEntries, nextKvEntries, nil +} diff --git a/br/pkg/restore/log_client_test.go b/br/pkg/restore/log_client_test.go index b6240819dad71..71db52cf7678f 100644 --- a/br/pkg/restore/log_client_test.go +++ b/br/pkg/restore/log_client_test.go @@ -11,6 +11,8 @@ import ( "math" "os" "path" + "sort" + "strings" "sync/atomic" "testing" @@ -19,6 +21,7 @@ import ( "github.com/pingcap/log" "github.com/pingcap/tidb/br/pkg/storage" "github.com/pingcap/tidb/br/pkg/stream" + "github.com/pingcap/tidb/br/pkg/utils/iter" "github.com/stretchr/testify/require" "go.uber.org/zap" "go.uber.org/zap/zapcore" @@ -26,8 +29,22 @@ import ( var id uint64 -// wd is the shortcut for making a fake data file from write CF. -func wd(start, end uint64, minBegin uint64) *backuppb.DataFileInfo { +type metaMaker = func(files ...*backuppb.DataFileInfo) *backuppb.Metadata + +func wm(start, end, minBegin uint64) *backuppb.DataFileInfo { + i := wr(start, end, minBegin) + i.IsMeta = true + return i +} + +func dm(start, end uint64) *backuppb.DataFileInfo { + i := dr(start, end) + i.IsMeta = true + return i +} + +// wr is the shortcut for making a fake data file from write CF. +func wr(start, end uint64, minBegin uint64) *backuppb.DataFileInfo { id := atomic.AddUint64(&id, 1) return &backuppb.DataFileInfo{ Path: fmt.Sprintf("default-%06d", id), @@ -38,8 +55,8 @@ func wd(start, end uint64, minBegin uint64) *backuppb.DataFileInfo { } } -// dd is the shortcut for making a fake data file from default CF. -func dd(start, end uint64) *backuppb.DataFileInfo { +// dr is the shortcut for making a fake data file from default CF. +func dr(start, end uint64) *backuppb.DataFileInfo { id := atomic.AddUint64(&id, 1) return &backuppb.DataFileInfo{ Path: fmt.Sprintf("write-%06d", id), @@ -76,12 +93,14 @@ func m2(files ...*backuppb.DataFileInfo) *backuppb.Metadata { MinTs: uint64(math.MaxUint64), MetaVersion: backuppb.MetaVersion_V2, } - fileGroups := &backuppb.DataFileGroup{} + fileGroups := &backuppb.DataFileGroup{ + MinTs: uint64(math.MaxUint64), + } for _, file := range files { - if meta.MaxTs < file.MaxTs { + if fileGroups.MaxTs < file.MaxTs { fileGroups.MaxTs = file.MaxTs } - if meta.MinTs > file.MinTs { + if fileGroups.MinTs > file.MinTs { fileGroups.MinTs = file.MinTs } fileGroups.DataFilesInfo = append(fileGroups.DataFilesInfo, file) @@ -138,7 +157,7 @@ func (b *mockMetaBuilder) b(useV2 bool) (*storage.LocalStorage, string) { return s, path } -func TestReadMetaBetweenTS(t *testing.T) { +func testReadMetaBetweenTSWithVersion(t *testing.T, m metaMaker) { log.SetLevel(zapcore.DebugLevel) type Case struct { items []*backuppb.Metadata @@ -151,9 +170,9 @@ func TestReadMetaBetweenTS(t *testing.T) { cases := []Case{ { items: []*backuppb.Metadata{ - m(wd(4, 10, 3), wd(5, 13, 5)), - m(dd(1, 3)), - m(wd(10, 42, 9), dd(6, 9)), + m(wr(4, 10, 3), wr(5, 13, 5)), + m(dr(1, 3)), + m(wr(10, 42, 9), dr(6, 9)), }, startTS: 4, endTS: 5, @@ -162,8 +181,8 @@ func TestReadMetaBetweenTS(t *testing.T) { }, { items: []*backuppb.Metadata{ - m(wd(1, 100, 1), wd(5, 13, 5), dd(1, 101)), - m(wd(100, 200, 98), dd(100, 200)), + m(wr(1, 100, 1), wr(5, 13, 5), dr(1, 101)), + m(wr(100, 200, 98), dr(100, 200)), }, startTS: 50, endTS: 99, @@ -172,9 +191,9 @@ func TestReadMetaBetweenTS(t *testing.T) { }, { items: []*backuppb.Metadata{ - m(wd(1, 100, 1), wd(5, 13, 5), dd(1, 101)), - m(wd(100, 200, 98), dd(100, 200)), - m(wd(200, 300, 200), dd(200, 300)), + m(wr(1, 100, 1), wr(5, 13, 5), dr(1, 101)), + m(wr(100, 200, 98), dr(100, 200)), + m(wr(200, 300, 200), dr(200, 300)), }, startTS: 150, endTS: 199, @@ -183,9 +202,9 @@ func TestReadMetaBetweenTS(t *testing.T) { }, { items: []*backuppb.Metadata{ - m(wd(1, 100, 1), wd(5, 13, 5)), - m(wd(101, 200, 101), dd(100, 200)), - m(wd(200, 300, 200), dd(200, 300)), + m(wr(1, 100, 1), wr(5, 13, 5)), + m(wr(101, 200, 101), dr(100, 200)), + m(wr(200, 300, 200), dr(200, 300)), }, startTS: 150, endTS: 199, @@ -206,14 +225,15 @@ func TestReadMetaBetweenTS(t *testing.T) { os.RemoveAll(temp) } }() - cli := Client{ - storage: loc, - helper: stream.NewMetadataHelper(), + init := LogFileManagerInit{ + StartTS: c.startTS, + RestoreTS: c.endTS, + Storage: loc, } - shift, err := cli.GetShiftTS(ctx, c.startTS, c.endTS) - req.Equal(shift, c.expectedShiftTS) + cli, err := CreateLogFileManager(ctx, init) + req.Equal(cli.ShiftTS(), c.expectedShiftTS) req.NoError(err) - metas, err := cli.ReadStreamMetaByTS(ctx, shift, c.endTS) + metas, err := cli.readStreamMeta(ctx) req.NoError(err) actualStoreIDs := make([]int64, 0, len(metas)) for _, meta := range metas { @@ -233,102 +253,12 @@ func TestReadMetaBetweenTS(t *testing.T) { } } -func TestReadMetaBetweenTSV2(t *testing.T) { - log.SetLevel(zapcore.DebugLevel) - type Case struct { - items []*backuppb.Metadata - startTS uint64 - endTS uint64 - expectedShiftTS uint64 - expected []int - } - - cases := []Case{ - { - items: []*backuppb.Metadata{ - m2(wd(4, 10, 3), wd(5, 13, 5)), - m2(dd(1, 3)), - m2(wd(10, 42, 9), dd(6, 9)), - }, - startTS: 4, - endTS: 5, - expectedShiftTS: 3, - expected: []int{0, 1}, - }, - { - items: []*backuppb.Metadata{ - m2(wd(1, 100, 1), wd(5, 13, 5), dd(1, 101)), - m2(wd(100, 200, 98), dd(100, 200)), - }, - startTS: 50, - endTS: 99, - expectedShiftTS: 1, - expected: []int{0}, - }, - { - items: []*backuppb.Metadata{ - m2(wd(1, 100, 1), wd(5, 13, 5), dd(1, 101)), - m2(wd(100, 200, 98), dd(100, 200)), - m2(wd(200, 300, 200), dd(200, 300)), - }, - startTS: 150, - endTS: 199, - expectedShiftTS: 98, - expected: []int{1, 0}, - }, - { - items: []*backuppb.Metadata{ - m2(wd(1, 100, 1), wd(5, 13, 5)), - m2(wd(101, 200, 101), dd(100, 200)), - m2(wd(200, 300, 200), dd(200, 300)), - }, - startTS: 150, - endTS: 199, - expectedShiftTS: 101, - expected: []int{1}, - }, - } - - run := func(t *testing.T, c Case) { - req := require.New(t) - ctx := context.Background() - loc, temp := (&mockMetaBuilder{ - metas: c.items, - }).b(true) - defer func() { - t.Log("temp dir", temp) - if !t.Failed() { - os.RemoveAll(temp) - } - }() - cli := Client{ - storage: loc, - helper: stream.NewMetadataHelper(), - } - shift, err := cli.GetShiftTS(ctx, c.startTS, c.endTS) - req.Equal(shift, c.expectedShiftTS) - req.NoError(err) - metas, err := cli.ReadStreamMetaByTS(ctx, shift, c.endTS) - req.NoError(err) - actualStoreIDs := make([]int64, 0, len(metas)) - for _, meta := range metas { - actualStoreIDs = append(actualStoreIDs, meta.StoreId) - } - expectedStoreIDs := make([]int64, 0, len(c.expected)) - for _, meta := range c.expected { - expectedStoreIDs = append(expectedStoreIDs, c.items[meta].StoreId) - } - req.ElementsMatch(actualStoreIDs, expectedStoreIDs) - } - - for i, c := range cases { - t.Run(fmt.Sprintf("case#%d", i), func(t *testing.T) { - run(t, c) - }) - } +func TestReadMetaBetweenTS(t *testing.T) { + t.Run("MetaV1", func(t *testing.T) { testReadMetaBetweenTSWithVersion(t, m) }) + t.Run("MetaV2", func(t *testing.T) { testReadMetaBetweenTSWithVersion(t, m2) }) } -func TestReadFromMetadata(t *testing.T) { +func testReadFromMetadataWithVersion(t *testing.T, m metaMaker) { type Case struct { items []*backuppb.Metadata untilTS uint64 @@ -338,17 +268,17 @@ func TestReadFromMetadata(t *testing.T) { cases := []Case{ { items: []*backuppb.Metadata{ - m(wd(4, 10, 3), wd(5, 13, 5)), - m(dd(1, 3)), - m(wd(10, 42, 9), dd(6, 9)), + m(wr(4, 10, 3), wr(5, 13, 5)), + m(dr(1, 3)), + m(wr(10, 42, 9), dr(6, 9)), }, untilTS: 10, expected: []int{0, 1, 2}, }, { items: []*backuppb.Metadata{ - m(wd(1, 100, 1), wd(5, 13, 5), dd(1, 101)), - m(wd(100, 200, 98), dd(100, 200)), + m(wr(1, 100, 1), wr(5, 13, 5), dr(1, 101)), + m(wr(100, 200, 98), dr(100, 200)), }, untilTS: 99, expected: []int{0}, @@ -370,12 +300,19 @@ func TestReadFromMetadata(t *testing.T) { meta := new(StreamMetadataSet) meta.Helper = stream.NewMetadataHelper() - meta.LoadUntil(ctx, loc, c.untilTS) + meta.LoadUntilAndCalculateShiftTS(ctx, loc, c.untilTS) var metas []*backuppb.Metadata - for _, m := range meta.metadata { + for path := range meta.metadataInfos { + data, err := loc.ReadFile(ctx, path) + require.NoError(t, err) + + m, err := meta.Helper.ParseToMetadataHard(data) + require.NoError(t, err) + metas = append(metas, m) } + actualStoreIDs := make([]int64, 0, len(metas)) for _, meta := range metas { actualStoreIDs = append(actualStoreIDs, meta.StoreId) @@ -394,38 +331,122 @@ func TestReadFromMetadata(t *testing.T) { } } -func TestReadFromMetadataV2(t *testing.T) { +func TestReadFromMetadata(t *testing.T) { + t.Run("MetaV1", func(t *testing.T) { testReadFromMetadataWithVersion(t, m) }) + t.Run("MetaV2", func(t *testing.T) { testReadFromMetadataWithVersion(t, m2) }) +} + +func dataFileInfoMatches(t *testing.T, listA []*backuppb.DataFileInfo, listB ...*backuppb.DataFileInfo) { + sortL := func(l []*backuppb.DataFileInfo) { + sort.Slice(l, func(i, j int) bool { + return l[i].MinTs < l[j].MinTs + }) + } + + sortL(listA) + sortL(listB) + + if len(listA) != len(listB) { + t.Fatalf("failed: list length not match: %s vs %s", formatL(listA), formatL(listB)) + } + + for i := range listA { + require.True(t, equals(listA[i], listB[i]), "remaining: %s vs %s", formatL(listA[i:]), formatL(listB[i:])) + } +} + +func equals(a, b *backuppb.DataFileInfo) bool { + return a.IsMeta == b.IsMeta && + a.MinTs == b.MinTs && + a.MaxTs == b.MaxTs && + a.Cf == b.Cf && + a.MinBeginTsInDefaultCf == b.MinBeginTsInDefaultCf +} + +func formatI(i *backuppb.DataFileInfo) string { + ty := "d" + if i.Cf == "write" { + ty = "w" + } + isMeta := "r" + if i.IsMeta { + isMeta = "m" + } + shift := "" + if i.MinBeginTsInDefaultCf > 0 { + shift = fmt.Sprintf(", %d", i.MinBeginTsInDefaultCf) + } + + return fmt.Sprintf("%s%s(%d, %d%s)", ty, isMeta, i.MinTs, i.MaxTs, shift) +} + +func formatL(l []*backuppb.DataFileInfo) string { + r := iter.CollectAll(context.TODO(), iter.Map(iter.FromSlice(l), formatI)) + return "[" + strings.Join(r.Item, ", ") + "]" +} + +func testFileManagerWithMeta(t *testing.T, m metaMaker) { type Case struct { - items []*backuppb.Metadata - untilTS uint64 - expected []int + Metadata []*backuppb.Metadata + StartTS int + RestoreTS int + + SearchMeta bool + DMLFileCount *int + + Requires []*backuppb.DataFileInfo } + indirect := func(i int) *int { return &i } cases := []Case{ { - items: []*backuppb.Metadata{ - m2(wd(4, 10, 3), wd(5, 13, 5)), - m2(dd(1, 3)), - m2(wd(10, 42, 9), dd(6, 9)), + Metadata: []*backuppb.Metadata{ + m(wm(5, 10, 1), dm(1, 8), dr(2, 6), wr(4, 5, 2)), + m(wr(50, 54, 42), dr(42, 50), wr(70, 78, 0)), + m(dr(100, 101), wr(102, 104, 100)), + }, + StartTS: 2, + RestoreTS: 60, + Requires: []*backuppb.DataFileInfo{ + dr(2, 6), wr(4, 5, 2), wr(50, 54, 42), dr(42, 50), }, - untilTS: 10, - expected: []int{0, 1, 2}, }, { - items: []*backuppb.Metadata{ - m2(wd(1, 100, 1), wd(5, 13, 5), dd(1, 101)), - m2(wd(100, 200, 98), dd(100, 200)), + Metadata: []*backuppb.Metadata{ + m(wm(4, 10, 1), dm(1, 8), dr(2, 6), wr(4, 5, 2)), + m(wr(50, 54, 42), dr(42, 50), wr(70, 78, 0), wm(80, 81, 0), wm(90, 92, 0)), + m(dr(100, 101), wr(102, 104, 100)), }, - untilTS: 99, - expected: []int{0}, + StartTS: 5, + RestoreTS: 80, + Requires: []*backuppb.DataFileInfo{ + wm(80, 81, 0), wm(4, 10, 1), dm(1, 8), + }, + SearchMeta: true, + DMLFileCount: indirect(5), + }, + { + Metadata: []*backuppb.Metadata{ + m(wm(5, 10, 1), dm(1, 8), dr(2, 6), wr(4, 5, 2)), + m(wr(50, 54, 42), dr(42, 50), wr(70, 78, 0), wm(80, 81, 0), wm(90, 92, 0)), + m(dr(100, 101), wr(102, 104, 100)), + }, + StartTS: 6, + RestoreTS: 80, + Requires: []*backuppb.DataFileInfo{ + wm(80, 81, 0), wm(5, 10, 1), dm(1, 8), + }, + SearchMeta: true, }, } run := func(t *testing.T, c Case) { req := require.New(t) - ctx := context.Background() + items := c.Metadata + start := uint64(c.StartTS) + end := uint64(c.RestoreTS) loc, temp := (&mockMetaBuilder{ - metas: c.items, + metas: items, }).b(true) defer func() { t.Log("temp dir", temp) @@ -433,29 +454,40 @@ func TestReadFromMetadataV2(t *testing.T) { os.RemoveAll(temp) } }() + ctx := context.Background() + fm, err := CreateLogFileManager(ctx, LogFileManagerInit{ + StartTS: start, + RestoreTS: end, + Storage: loc, + }) + req.NoError(err) - meta := new(StreamMetadataSet) - meta.Helper = stream.NewMetadataHelper() - meta.LoadUntil(ctx, loc, c.untilTS) - - var metas []*backuppb.Metadata - for _, m := range meta.metadata { - metas = append(metas, m) - } - actualStoreIDs := make([]int64, 0, len(metas)) - for _, meta := range metas { - actualStoreIDs = append(actualStoreIDs, meta.StoreId) - } - expectedStoreIDs := make([]int64, 0, len(c.expected)) - for _, meta := range c.expected { - expectedStoreIDs = append(expectedStoreIDs, c.items[meta].StoreId) + var datas LogIter + if !c.SearchMeta { + datas, err = fm.LoadDMLFiles(ctx) + req.NoError(err) + } else { + var counter *int + if c.DMLFileCount != nil { + counter = new(int) + } + data, err := fm.LoadDDLFilesAndCountDMLFiles(ctx, counter) + req.NoError(err) + if counter != nil { + req.Equal(*c.DMLFileCount, *counter) + } + datas = iter.FromSlice(data) } - req.ElementsMatch(actualStoreIDs, expectedStoreIDs) + r := iter.CollectAll(ctx, datas) + dataFileInfoMatches(t, r.Item, c.Requires...) } for i, c := range cases { - t.Run(fmt.Sprintf("case#%d", i), func(t *testing.T) { - run(t, c) - }) + t.Run(fmt.Sprintf("#%d", i), func(t *testing.T) { run(t, c) }) } } + +func TestFileManger(t *testing.T) { + t.Run("MetaV1", func(t *testing.T) { testFileManagerWithMeta(t, m) }) + t.Run("MetaV2", func(t *testing.T) { testFileManagerWithMeta(t, m2) }) +} diff --git a/br/pkg/restore/main_test.go b/br/pkg/restore/main_test.go index 43df5b07d486d..a71c8db57c79f 100644 --- a/br/pkg/restore/main_test.go +++ b/br/pkg/restore/main_test.go @@ -28,6 +28,7 @@ func TestMain(m *testing.M) { testsetup.SetupForCommonTest() opts := []goleak.Option{ goleak.IgnoreTopFunction("github.com/golang/glog.(*loggingT).flushDaemon"), + goleak.IgnoreTopFunction("github.com/lestrrat-go/httprc.runFetchWorker"), goleak.IgnoreTopFunction("github.com/klauspost/compress/zstd.(*blockDec).startDecoder"), goleak.IgnoreTopFunction("go.etcd.io/etcd/client/pkg/v3/logutil.(*MergeLogger).outputLoop"), goleak.IgnoreTopFunction("go.opencensus.io/stats/view.(*worker).start"), diff --git a/br/pkg/restore/prealloc_table_id/BUILD.bazel b/br/pkg/restore/prealloc_table_id/BUILD.bazel new file mode 100644 index 0000000000000..8ce80b039178a --- /dev/null +++ b/br/pkg/restore/prealloc_table_id/BUILD.bazel @@ -0,0 +1,22 @@ +load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test") + +go_library( + name = "prealloc_table_id", + srcs = ["alloc.go"], + importpath = "github.com/pingcap/tidb/br/pkg/restore/prealloc_table_id", + visibility = ["//visibility:public"], + deps = ["//br/pkg/metautil"], +) + +go_test( + name = "prealloc_table_id_test", + srcs = ["alloc_test.go"], + flaky = True, + race = "on", + deps = [ + ":prealloc_table_id", + "//br/pkg/metautil", + "//parser/model", + "@com_github_stretchr_testify//require", + ], +) diff --git a/br/pkg/restore/prealloc_table_id/alloc.go b/br/pkg/restore/prealloc_table_id/alloc.go new file mode 100644 index 0000000000000..9232ed84a8fc8 --- /dev/null +++ b/br/pkg/restore/prealloc_table_id/alloc.go @@ -0,0 +1,88 @@ +// Copyright 2022 PingCAP, Inc. Licensed under Apache-2.0. + +package prealloctableid + +import ( + "fmt" + "math" + + "github.com/pingcap/tidb/br/pkg/metautil" +) + +const ( + // insaneTableIDThreshold is the threshold for "normal" table ID. + // Sometimes there might be some tables with huge table ID. + // For example, DDL metadata relative tables may have table ID up to 1 << 48. + // When calculating the max table ID, we would ignore tables with table ID greater than this. + // NOTE: In fact this could be just `1 << 48 - 1000` (the max available global ID), + // however we are going to keep some gap here for some not-yet-known scenario, which means + // at least, BR won't exhaust all global IDs. + insaneTableIDThreshold = math.MaxUint32 +) + +// Allocator is the interface needed to allocate table IDs. +type Allocator interface { + GetGlobalID() (int64, error) + AdvanceGlobalIDs(n int) (int64, error) +} + +// PreallocIDs mantains the state of preallocated table IDs. +type PreallocIDs struct { + end int64 + + allocedFrom int64 +} + +// New collects the requirement of prealloc IDs and return a +// not-yet-allocated PreallocIDs. +func New(tables []*metautil.Table) *PreallocIDs { + if len(tables) == 0 { + return &PreallocIDs{ + allocedFrom: math.MaxInt64, + } + } + + max := int64(0) + + for _, t := range tables { + if t.Info.ID > max && t.Info.ID < insaneTableIDThreshold { + max = t.Info.ID + } + } + return &PreallocIDs{ + end: max + 1, + + allocedFrom: math.MaxInt64, + } +} + +// String implements fmt.Stringer. +func (p *PreallocIDs) String() string { + if p.allocedFrom >= p.end { + return fmt.Sprintf("ID:empty(end=%d)", p.end) + } + return fmt.Sprintf("ID:[%d,%d)", p.allocedFrom, p.end) +} + +// preallocTableIDs peralloc the id for [start, end) +func (p *PreallocIDs) Alloc(m Allocator) error { + currentId, err := m.GetGlobalID() + if err != nil { + return err + } + if currentId > p.end { + return nil + } + + alloced, err := m.AdvanceGlobalIDs(int(p.end - currentId)) + if err != nil { + return err + } + p.allocedFrom = alloced + return nil +} + +// Prealloced checks whether a table ID has been successfully allocated. +func (p *PreallocIDs) Prealloced(tid int64) bool { + return p.allocedFrom <= tid && tid < p.end +} diff --git a/br/pkg/restore/prealloc_table_id/alloc_test.go b/br/pkg/restore/prealloc_table_id/alloc_test.go new file mode 100644 index 0000000000000..8cf6b95fb070e --- /dev/null +++ b/br/pkg/restore/prealloc_table_id/alloc_test.go @@ -0,0 +1,91 @@ +// Copyright 2022 PingCAP, Inc. Licensed under Apache-2.0. + +package prealloctableid_test + +import ( + "fmt" + "testing" + + "github.com/pingcap/tidb/br/pkg/metautil" + prealloctableid "github.com/pingcap/tidb/br/pkg/restore/prealloc_table_id" + "github.com/pingcap/tidb/parser/model" + "github.com/stretchr/testify/require" +) + +type testAllocator int64 + +func (t *testAllocator) GetGlobalID() (int64, error) { + return int64(*t), nil +} + +func (t *testAllocator) AdvanceGlobalIDs(n int) (int64, error) { + old := int64(*t) + *t = testAllocator(int64(*t) + int64(n)) + return old, nil +} + +func TestAllocator(t *testing.T) { + type Case struct { + tableIDs []int64 + hasAllocatedTo int64 + successfullyAllocated []int64 + shouldAllocatedTo int64 + } + + cases := []Case{ + { + tableIDs: []int64{1, 2, 5, 6, 7}, + hasAllocatedTo: 6, + successfullyAllocated: []int64{6, 7}, + shouldAllocatedTo: 8, + }, + { + tableIDs: []int64{4, 6, 9, 2}, + hasAllocatedTo: 1, + successfullyAllocated: []int64{2, 4, 6, 9}, + shouldAllocatedTo: 10, + }, + { + tableIDs: []int64{1, 2, 3, 4}, + hasAllocatedTo: 5, + successfullyAllocated: []int64{}, + shouldAllocatedTo: 5, + }, + { + tableIDs: []int64{1, 2, 5, 6, 1 << 50, 1<<50 + 2479}, + hasAllocatedTo: 3, + successfullyAllocated: []int64{5, 6}, + shouldAllocatedTo: 7, + }, + } + + run := func(t *testing.T, c Case) { + tables := make([]*metautil.Table, 0, len(c.tableIDs)) + for _, id := range c.tableIDs { + tables = append(tables, &metautil.Table{ + Info: &model.TableInfo{ + ID: id, + }, + }) + } + + ids := prealloctableid.New(tables) + allocator := testAllocator(c.hasAllocatedTo) + require.NoError(t, ids.Alloc(&allocator)) + + allocated := make([]int64, 0, len(c.successfullyAllocated)) + for _, t := range c.tableIDs { + if ids.Prealloced(t) { + allocated = append(allocated, t) + } + } + require.ElementsMatch(t, allocated, c.successfullyAllocated) + require.Equal(t, int64(allocator), c.shouldAllocatedTo) + } + + for i, c := range cases { + t.Run(fmt.Sprintf("#%d", i), func(t *testing.T) { + run(t, c) + }) + } +} diff --git a/br/pkg/restore/stream_metas.go b/br/pkg/restore/stream_metas.go index 7468573ce6ba8..2aa9c8f11a9db 100644 --- a/br/pkg/restore/stream_metas.go +++ b/br/pkg/restore/stream_metas.go @@ -12,62 +12,116 @@ import ( backuppb "github.com/pingcap/kvproto/pkg/brpb" "github.com/pingcap/log" berrors "github.com/pingcap/tidb/br/pkg/errors" + "github.com/pingcap/tidb/br/pkg/logutil" "github.com/pingcap/tidb/br/pkg/storage" "github.com/pingcap/tidb/br/pkg/stream" + "github.com/pingcap/tidb/br/pkg/utils" "github.com/pingcap/tidb/util/mathutil" "go.uber.org/zap" + "golang.org/x/sync/errgroup" ) +const notDeletedBecameFatalThreshold = 128 + type StreamMetadataSet struct { - metadata map[string]*backuppb.Metadata - // The metadata after changed that needs to be write back. - writeback map[string]*backuppb.Metadata + // if set true, the metadata and datafile won't be removed + DryRun bool + + // keeps the meta-information of metadata as little as possible + // to save the memory + metadataInfos map[string]*MetadataInfo + // a parser of metadata Helper *stream.MetadataHelper - BeforeDoWriteBack func(path string, last, current *backuppb.Metadata) (skip bool) + // for test + BeforeDoWriteBack func(path string, replaced *backuppb.Metadata) (skip bool) } -// LoadUntil loads the metadata until the specified timestamp. -// This would load all metadata files that *may* contain data from transaction committed before that TS. -// Note: maybe record the timestamp and reject reading data files after this TS? -func (ms *StreamMetadataSet) LoadUntil(ctx context.Context, s storage.ExternalStorage, until uint64) error { +// keep these meta-information for statistics and filtering +type FileGroupInfo struct { + MaxTS uint64 + Length uint64 + KVCount int64 +} + +// keep these meta-information for statistics and filtering +type MetadataInfo struct { + MinTS uint64 + FileGroupInfos []*FileGroupInfo +} + +// LoadUntilAndCalculateShiftTS loads the metadata until the specified timestamp and calculate the shift-until-ts by the way. +// This would record all metadata files that *may* contain data from transaction committed before that TS. +func (ms *StreamMetadataSet) LoadUntilAndCalculateShiftTS(ctx context.Context, s storage.ExternalStorage, until uint64) (uint64, error) { metadataMap := struct { sync.Mutex - metas map[string]*backuppb.Metadata + metas map[string]*MetadataInfo + shiftUntilTS uint64 }{} - ms.writeback = make(map[string]*backuppb.Metadata) - metadataMap.metas = make(map[string]*backuppb.Metadata) + metadataMap.metas = make(map[string]*MetadataInfo) + // `shiftUntilTS` must be less than `until` + metadataMap.shiftUntilTS = until err := stream.FastUnmarshalMetaData(ctx, s, func(path string, raw []byte) error { m, err := ms.Helper.ParseToMetadataHard(raw) if err != nil { return err } - metadataMap.Lock() // If the meta file contains only files with ts grater than `until`, when the file is from // `Default`: it should be kept, because its corresponding `write` must has commit ts grater than it, which should not be considered. // `Write`: it should trivially not be considered. if m.MinTs <= until { - metadataMap.metas[path] = m + // record these meta-information for statistics and filtering + fileGroupInfos := make([]*FileGroupInfo, 0, len(m.FileGroups)) + for _, group := range m.FileGroups { + var kvCount int64 = 0 + for _, file := range group.DataFilesInfo { + kvCount += file.NumberOfEntries + } + fileGroupInfos = append(fileGroupInfos, &FileGroupInfo{ + MaxTS: group.MaxTs, + Length: group.Length, + KVCount: kvCount, + }) + } + metadataMap.Lock() + metadataMap.metas[path] = &MetadataInfo{ + MinTS: m.MinTs, + FileGroupInfos: fileGroupInfos, + } + metadataMap.Unlock() + } + // filter out the metadatas whose ts-range is overlap with [until, +inf) + // and calculate their minimum begin-default-ts + ts, ok := UpdateShiftTS(m, until, mathutil.MaxUint) + if ok { + metadataMap.Lock() + if ts < metadataMap.shiftUntilTS { + metadataMap.shiftUntilTS = ts + } + metadataMap.Unlock() } - metadataMap.Unlock() return nil }) if err != nil { - return errors.Trace(err) + return 0, errors.Trace(err) } - ms.metadata = metadataMap.metas - return nil + ms.metadataInfos = metadataMap.metas + if metadataMap.shiftUntilTS != until { + log.Warn("calculate shift-ts", zap.Uint64("start-ts", until), zap.Uint64("shift-ts", metadataMap.shiftUntilTS)) + } + return metadataMap.shiftUntilTS, nil } -// LoadFrom loads data from an external storage into the stream metadata set. +// LoadFrom loads data from an external storage into the stream metadata set. (Now only for test) func (ms *StreamMetadataSet) LoadFrom(ctx context.Context, s storage.ExternalStorage) error { - return ms.LoadUntil(ctx, s, math.MaxUint64) + _, err := ms.LoadUntilAndCalculateShiftTS(ctx, s, math.MaxUint64) + return err } -func (ms *StreamMetadataSet) iterateDataFiles(f func(d *backuppb.DataFileGroup) (shouldBreak bool)) { - for _, m := range ms.metadata { - for _, d := range m.FileGroups { +func (ms *StreamMetadataSet) iterateDataFiles(f func(d *FileGroupInfo) (shouldBreak bool)) { + for _, m := range ms.metadataInfos { + for _, d := range m.FileGroupInfos { if f(d) { return } @@ -75,21 +129,6 @@ func (ms *StreamMetadataSet) iterateDataFiles(f func(d *backuppb.DataFileGroup) } } -// CalculateShiftTS calculates the shift-ts. -func (ms *StreamMetadataSet) CalculateShiftTS(startTS uint64) uint64 { - metadatas := make([]*backuppb.Metadata, 0, len(ms.metadata)) - for _, m := range ms.metadata { - metadatas = append(metadatas, m) - } - - minBeginTS, exist := CalculateShiftTS(metadatas, startTS, mathutil.MaxUint) - if !exist { - minBeginTS = startTS - } - log.Warn("calculate shift-ts", zap.Uint64("start-ts", startTS), zap.Uint64("shift-ts", minBeginTS)) - return minBeginTS -} - // IterateFilesFullyBefore runs the function over all files contain data before the timestamp only. // // 0 before @@ -98,78 +137,145 @@ func (ms *StreamMetadataSet) CalculateShiftTS(startTS uint64) uint64 { // |-file2--------------| <- File contains any record out of this won't be found. // // This function would call the `f` over file1 only. -func (ms *StreamMetadataSet) IterateFilesFullyBefore(before uint64, f func(d *backuppb.DataFileGroup) (shouldBreak bool)) { - ms.iterateDataFiles(func(d *backuppb.DataFileGroup) (shouldBreak bool) { - if d.MaxTs >= before { +func (ms *StreamMetadataSet) IterateFilesFullyBefore(before uint64, f func(d *FileGroupInfo) (shouldBreak bool)) { + ms.iterateDataFiles(func(d *FileGroupInfo) (shouldBreak bool) { + if d.MaxTS >= before { return false } return f(d) }) } -// RemoveDataBefore would find files contains only records before the timestamp, mark them as removed from meta, -// and returning their information. -func (ms *StreamMetadataSet) RemoveDataBefore(from uint64) []*backuppb.DataFileGroup { - removed := []*backuppb.DataFileGroup{} - for metaPath, m := range ms.metadata { - remainedDataFiles := make([]*backuppb.DataFileGroup, 0) - // can we assume those files are sorted to avoid traversing here? (by what?) - for _, ds := range m.FileGroups { - if ds.MaxTs < from { - removed = append(removed, ds) - } else { - remainedDataFiles = append(remainedDataFiles, ds) +// RemoveDataFilesAndUpdateMetadataInBatch concurrently remove datafilegroups and update metadata. +// Only one metadata is processed in each thread, including deleting its datafilegroup and updating it. +// Returns the not deleted datafilegroups. +func (ms *StreamMetadataSet) RemoveDataFilesAndUpdateMetadataInBatch(ctx context.Context, from uint64, storage storage.ExternalStorage, updateFn func(num int64)) ([]string, error) { + var notDeleted struct { + item []string + sync.Mutex + } + worker := utils.NewWorkerPool(128, "delete files") + eg, cx := errgroup.WithContext(ctx) + for path, metaInfo := range ms.metadataInfos { + path := path + minTS := metaInfo.MinTS + // It's safety to remove the item within a range loop + delete(ms.metadataInfos, path) + if minTS >= from { + // That means all the datafiles wouldn't be removed, + // so that the metadata is skipped. + continue + } + worker.ApplyOnErrorGroup(eg, func() error { + if cx.Err() != nil { + return cx.Err() + } + + data, err := storage.ReadFile(ctx, path) + if err != nil { + return err + } + + meta, err := ms.Helper.ParseToMetadataHard(data) + if err != nil { + return err + } + + num, notDeletedItems, err := ms.removeDataFilesAndUpdateMetadata(ctx, storage, from, meta, path) + if err != nil { + return err } + + updateFn(num) + + notDeleted.Lock() + notDeleted.item = append(notDeleted.item, notDeletedItems...) + notDeleted.Unlock() + return nil + }) + } + + if err := eg.Wait(); err != nil { + return nil, errors.Trace(err) + } + + return notDeleted.item, nil +} + +// removeDataFilesAndUpdateMetadata removes some datafilegroups of the metadata, if their max-ts is less than `from` +func (ms *StreamMetadataSet) removeDataFilesAndUpdateMetadata(ctx context.Context, storage storage.ExternalStorage, from uint64, meta *backuppb.Metadata, metaPath string) (num int64, notDeleted []string, err error) { + removed := make([]*backuppb.DataFileGroup, 0) + remainedDataFiles := make([]*backuppb.DataFileGroup, 0) + notDeleted = make([]string, 0) + // can we assume those files are sorted to avoid traversing here? (by what?) + for _, ds := range meta.FileGroups { + if ds.MaxTs < from { + removed = append(removed, ds) + } else { + // That means some kvs in the datafilegroup shouldn't be removed, + // so it will be kept out being removed. + remainedDataFiles = append(remainedDataFiles, ds) } - if len(remainedDataFiles) != len(m.FileGroups) { - mCopy := *m - mCopy.FileGroups = remainedDataFiles - ms.WriteBack(metaPath, &mCopy) + } + + num = int64(len(removed)) + + if ms.DryRun { + log.Debug("dry run, skip deletion ...") + return num, notDeleted, nil + } + + // remove data file groups + for _, f := range removed { + log.Debug("Deleting file", zap.String("path", f.Path)) + if err := storage.DeleteFile(ctx, f.Path); err != nil { + log.Warn("File not deleted.", zap.String("path", f.Path), logutil.ShortError(err)) + notDeleted = append(notDeleted, f.Path) + if len(notDeleted) > notDeletedBecameFatalThreshold { + return num, notDeleted, errors.Annotatef(berrors.ErrPiTRMalformedMetadata, "too many failure when truncating") + } } } - return removed -} -func (ms *StreamMetadataSet) WriteBack(path string, file *backuppb.Metadata) { - ms.writeback[path] = file -} + // update metadata + if len(remainedDataFiles) != len(meta.FileGroups) { + // rewrite metadata + log.Info("Updating metadata.", zap.String("file", metaPath), + zap.Int("data-file-before", len(meta.FileGroups)), + zap.Int("data-file-after", len(remainedDataFiles))) + + // replace the filegroups and update the ts of the replaced metadata + ReplaceMetadata(meta, remainedDataFiles) -func (ms *StreamMetadataSet) doWriteBackForFile(ctx context.Context, s storage.ExternalStorage, path string) error { - data, ok := ms.writeback[path] - if !ok { - return errors.Annotatef(berrors.ErrInvalidArgument, "There is no write back for path %s", path) + if ms.BeforeDoWriteBack != nil && ms.BeforeDoWriteBack(metaPath, meta) { + return num, notDeleted, nil + } + + if err := ms.doWriteBackForFile(ctx, storage, metaPath, meta); err != nil { + // NOTE: Maybe we'd better roll back all writebacks? (What will happen if roll back fails too?) + return num, notDeleted, errors.Annotatef(err, "failed to write back file %s", metaPath) + } } + + return num, notDeleted, nil +} + +func (ms *StreamMetadataSet) doWriteBackForFile(ctx context.Context, s storage.ExternalStorage, path string, meta *backuppb.Metadata) error { // If the metadata file contains no data file, remove it due to it is meanless. - if len(data.FileGroups) == 0 { + if len(meta.FileGroups) == 0 { if err := s.DeleteFile(ctx, path); err != nil { return errors.Annotatef(err, "failed to remove the empty meta %s", path) } return nil } - bs, err := ms.Helper.Marshal(data) + bs, err := ms.Helper.Marshal(meta) if err != nil { return errors.Annotatef(err, "failed to marshal the file %s", path) } return truncateAndWrite(ctx, s, path, bs) } -func (ms *StreamMetadataSet) DoWriteBack(ctx context.Context, s storage.ExternalStorage) error { - for path := range ms.writeback { - if ms.BeforeDoWriteBack != nil && ms.BeforeDoWriteBack(path, ms.metadata[path], ms.writeback[path]) { - return nil - } - err := ms.doWriteBackForFile(ctx, s, path) - // NOTE: Maybe we'd better roll back all writebacks? (What will happen if roll back fails too?) - if err != nil { - return errors.Annotatef(err, "failed to write back file %s", path) - } - - delete(ms.writeback, path) - } - return nil -} - func truncateAndWrite(ctx context.Context, s storage.ExternalStorage, path string, data []byte) error { // Performance hack: the `Write` implemention would truncate the file if it exists. if err := s.WriteFile(ctx, path, data); err != nil { @@ -248,26 +354,30 @@ func UpdateShiftTS(m *backuppb.Metadata, startTS uint64, restoreTS uint64) (uint return minBeginTS, isExist } -// CalculateShiftTS gets the minimal begin-ts about transaction according to the kv-event in write-cf. -func CalculateShiftTS( - metas []*backuppb.Metadata, - startTS uint64, - restoreTS uint64, -) (uint64, bool) { - var ( - minBeginTS uint64 - isExist bool - ) - for _, m := range metas { - if len(m.FileGroups) == 0 || m.MinTs > restoreTS || m.MaxTs < startTS { - continue +// replace the filegroups and update the ts of the replaced metadata +func ReplaceMetadata(meta *backuppb.Metadata, filegroups []*backuppb.DataFileGroup) { + // replace the origin metadata + meta.FileGroups = filegroups + + if len(meta.FileGroups) == 0 { + meta.MinTs = 0 + meta.MaxTs = 0 + meta.ResolvedTs = 0 + return + } + + meta.MinTs = meta.FileGroups[0].MinTs + meta.MaxTs = meta.FileGroups[0].MaxTs + meta.ResolvedTs = meta.FileGroups[0].MinResolvedTs + for _, group := range meta.FileGroups { + if group.MinTs < meta.MinTs { + meta.MinTs = group.MinTs + } + if group.MaxTs > meta.MaxTs { + meta.MaxTs = group.MaxTs } - ts, ok := UpdateShiftTS(m, startTS, restoreTS) - if ok && (!isExist || ts < minBeginTS) { - minBeginTS = ts - isExist = true + if group.MinResolvedTs < meta.ResolvedTs { + meta.ResolvedTs = group.MinResolvedTs } } - - return minBeginTS, isExist } diff --git a/br/pkg/restore/stream_metas_test.go b/br/pkg/restore/stream_metas_test.go index 8e75f7544885e..5b75e9de6b3d8 100644 --- a/br/pkg/restore/stream_metas_test.go +++ b/br/pkg/restore/stream_metas_test.go @@ -6,7 +6,10 @@ import ( "context" "fmt" "math/rand" + "os" + "path" "path/filepath" + "sync" "testing" "github.com/fsouza/fake-gcs-server/fakestorage" @@ -16,7 +19,6 @@ import ( "github.com/pingcap/tidb/br/pkg/restore" "github.com/pingcap/tidb/br/pkg/storage" "github.com/pingcap/tidb/br/pkg/stream" - "github.com/pingcap/tidb/util/mathutil" "github.com/stretchr/testify/require" "go.uber.org/zap" ) @@ -36,13 +38,59 @@ func fakeDataFiles(s storage.ExternalStorage, base, item int) (result []*backupp return } +func fakeDataFilesV2(s storage.ExternalStorage, base, item int) (result []*backuppb.DataFileGroup) { + ctx := context.Background() + for i := base; i < base+item; i++ { + path := fmt.Sprintf("%04d_to_%04d.log", i, i+2) + s.WriteFile(ctx, path, []byte("test")) + data := &backuppb.DataFileGroup{ + Path: path, + MinTs: uint64(i), + MaxTs: uint64(i + 2), + } + result = append(result, data) + } + return +} + +func tsOfFile(dfs []*backuppb.DataFileInfo) (uint64, uint64) { + var minTS uint64 = 9876543210 + var maxTS uint64 = 0 + for _, df := range dfs { + if df.MaxTs > maxTS { + maxTS = df.MaxTs + } + if df.MinTs < minTS { + minTS = df.MinTs + } + } + return minTS, maxTS +} + +func tsOfFileGroup(dfs []*backuppb.DataFileGroup) (uint64, uint64) { + var minTS uint64 = 9876543210 + var maxTS uint64 = 0 + for _, df := range dfs { + if df.MaxTs > maxTS { + maxTS = df.MaxTs + } + if df.MinTs < minTS { + minTS = df.MinTs + } + } + return minTS, maxTS +} + func fakeStreamBackup(s storage.ExternalStorage) error { ctx := context.Background() base := 0 for i := 0; i < 6; i++ { dfs := fakeDataFiles(s, base, 4) base += 4 + minTS, maxTS := tsOfFile(dfs) meta := &backuppb.Metadata{ + MinTs: minTS, + MaxTs: maxTS, Files: dfs, StoreId: int64(i%3 + 1), } @@ -64,43 +112,13 @@ func fakeStreamBackupV2(s storage.ExternalStorage) error { ctx := context.Background() base := 0 for i := 0; i < 6; i++ { - dfs := fakeDataFiles(s, base, 4) - minTs1 := uint64(18446744073709551615) - maxTs1 := uint64(0) - for _, f := range dfs[0:2] { - f.Path = fmt.Sprintf("%d", i) - if minTs1 > f.MinTs { - minTs1 = f.MinTs - } - if maxTs1 < f.MaxTs { - maxTs1 = f.MaxTs - } - } - minTs2 := uint64(18446744073709551615) - maxTs2 := uint64(0) - for _, f := range dfs[2:] { - f.Path = fmt.Sprintf("%d", i) - if minTs2 > f.MinTs { - minTs2 = f.MinTs - } - if maxTs2 < f.MaxTs { - maxTs2 = f.MaxTs - } - } + dfs := fakeDataFilesV2(s, base, 4) base += 4 + minTS, maxTS := tsOfFileGroup(dfs) meta := &backuppb.Metadata{ - FileGroups: []*backuppb.DataFileGroup{ - { - DataFilesInfo: dfs[0:2], - MinTs: minTs1, - MaxTs: maxTs1, - }, - { - DataFilesInfo: dfs[2:], - MinTs: minTs2, - MaxTs: maxTs2, - }, - }, + MinTs: minTS, + MaxTs: maxTS, + FileGroups: dfs, StoreId: int64(i%3 + 1), MetaVersion: backuppb.MetaVersion_V2, } @@ -135,42 +153,59 @@ func TestTruncateLog(t *testing.T) { } require.NoError(t, s.LoadFrom(ctx, l)) - fs := []*backuppb.DataFileGroup{} - s.IterateFilesFullyBefore(17, func(d *backuppb.DataFileGroup) (shouldBreak bool) { + fs := []*restore.FileGroupInfo{} + s.IterateFilesFullyBefore(17, func(d *restore.FileGroupInfo) (shouldBreak bool) { fs = append(fs, d) - require.Less(t, d.MaxTs, uint64(17)) + require.Less(t, d.MaxTS, uint64(17)) return false }) require.Len(t, fs, 15) - s.RemoveDataBefore(17) - deletedFiles := []string{} - modifiedFiles := []string{} - s.BeforeDoWriteBack = func(path string, last, current *backuppb.Metadata) bool { - require.NotNil(t, last) - if len(current.GetFileGroups()) == 0 { - deletedFiles = append(deletedFiles, path) - } else if len(current.GetFileGroups()) != len(last.GetFileGroups()) { - modifiedFiles = append(modifiedFiles, path) + var lock sync.Mutex + remainedFiles := []string{} + remainedDataFiles := []string{} + removedMetaFiles := []string{} + s.BeforeDoWriteBack = func(path string, replaced *backuppb.Metadata) bool { + lock.Lock() + require.NotNil(t, replaced) + if len(replaced.GetFileGroups()) > 0 { + remainedFiles = append(remainedFiles, path) + for _, ds := range replaced.FileGroups { + remainedDataFiles = append(remainedDataFiles, ds.Path) + } + } else { + removedMetaFiles = append(removedMetaFiles, path) } + lock.Unlock() return false } - require.NoError(t, s.DoWriteBack(ctx, l)) - require.ElementsMatch(t, deletedFiles, []string{"v1/backupmeta/0000.meta", "v1/backupmeta/0001.meta", "v1/backupmeta/0002.meta"}) - require.ElementsMatch(t, modifiedFiles, []string{"v1/backupmeta/0003.meta"}) + + var total int64 = 0 + notDeleted, err := s.RemoveDataFilesAndUpdateMetadataInBatch(ctx, 17, l, func(num int64) { + lock.Lock() + total += num + lock.Unlock() + }) + require.NoError(t, err) + require.Equal(t, len(notDeleted), 0) + require.ElementsMatch(t, remainedFiles, []string{"v1/backupmeta/0003.meta"}) + require.ElementsMatch(t, removedMetaFiles, []string{"v1/backupmeta/0000.meta", "v1/backupmeta/0001.meta", "v1/backupmeta/0002.meta"}) + require.ElementsMatch(t, remainedDataFiles, []string{"0015_to_0017.log"}) + require.Equal(t, total, int64(15)) require.NoError(t, s.LoadFrom(ctx, l)) - s.IterateFilesFullyBefore(17, func(d *backuppb.DataFileGroup) (shouldBreak bool) { + s.IterateFilesFullyBefore(17, func(d *restore.FileGroupInfo) (shouldBreak bool) { t.Errorf("some of log files still not truncated, it is %#v", d) return true }) - l.WalkDir(ctx, &storage.WalkOption{ + err = l.WalkDir(ctx, &storage.WalkOption{ SubDir: stream.GetStreamBackupMetaPrefix(), }, func(s string, i int64) error { - require.NotContains(t, deletedFiles, s) + require.NotContains(t, removedMetaFiles, s) return nil }) + require.NoError(t, err) } func TestTruncateLogV2(t *testing.T) { @@ -190,42 +225,59 @@ func TestTruncateLogV2(t *testing.T) { } require.NoError(t, s.LoadFrom(ctx, l)) - fs := []*backuppb.DataFileGroup{} - s.IterateFilesFullyBefore(17, func(d *backuppb.DataFileGroup) (shouldBreak bool) { + fs := []*restore.FileGroupInfo{} + s.IterateFilesFullyBefore(17, func(d *restore.FileGroupInfo) (shouldBreak bool) { fs = append(fs, d) - require.Less(t, d.MaxTs, uint64(17)) + require.Less(t, d.MaxTS, uint64(17)) return false }) - require.Len(t, fs, 7) - - s.RemoveDataBefore(17) - deletedFiles := []string{} - modifiedFiles := []string{} - s.BeforeDoWriteBack = func(path string, last, current *backuppb.Metadata) bool { - require.NotNil(t, last) - if len(current.GetFileGroups()) == 0 { - deletedFiles = append(deletedFiles, path) - } else if len(current.GetFileGroups()) != len(last.GetFileGroups()) { - modifiedFiles = append(modifiedFiles, path) + require.Len(t, fs, 15) + + var lock sync.Mutex + remainedFiles := []string{} + remainedDataFiles := []string{} + removedMetaFiles := []string{} + s.BeforeDoWriteBack = func(path string, replaced *backuppb.Metadata) bool { + lock.Lock() + require.NotNil(t, replaced) + if len(replaced.GetFileGroups()) > 0 { + remainedFiles = append(remainedFiles, path) + for _, ds := range replaced.FileGroups { + remainedDataFiles = append(remainedDataFiles, ds.Path) + } + } else { + removedMetaFiles = append(removedMetaFiles, path) } + lock.Unlock() return false } - require.NoError(t, s.DoWriteBack(ctx, l)) - require.ElementsMatch(t, deletedFiles, []string{"v1/backupmeta/0000.meta", "v1/backupmeta/0001.meta", "v1/backupmeta/0002.meta"}) - require.ElementsMatch(t, modifiedFiles, []string{"v1/backupmeta/0003.meta"}) + + var total int64 = 0 + notDeleted, err := s.RemoveDataFilesAndUpdateMetadataInBatch(ctx, 17, l, func(num int64) { + lock.Lock() + total += num + lock.Unlock() + }) + require.NoError(t, err) + require.Equal(t, len(notDeleted), 0) + require.ElementsMatch(t, remainedFiles, []string{"v1/backupmeta/0003.meta"}) + require.ElementsMatch(t, removedMetaFiles, []string{"v1/backupmeta/0000.meta", "v1/backupmeta/0001.meta", "v1/backupmeta/0002.meta"}) + require.ElementsMatch(t, remainedDataFiles, []string{"0015_to_0017.log"}) + require.Equal(t, total, int64(15)) require.NoError(t, s.LoadFrom(ctx, l)) - s.IterateFilesFullyBefore(17, func(d *backuppb.DataFileGroup) (shouldBreak bool) { + s.IterateFilesFullyBefore(17, func(d *restore.FileGroupInfo) (shouldBreak bool) { t.Errorf("some of log files still not truncated, it is %#v", d) return true }) - l.WalkDir(ctx, &storage.WalkOption{ + err = l.WalkDir(ctx, &storage.WalkOption{ SubDir: stream.GetStreamBackupMetaPrefix(), }, func(s string, i int64) error { - require.NotContains(t, deletedFiles, s) + require.NotContains(t, removedMetaFiles, s) return nil }) + require.NoError(t, err) } func TestTruncateSafepoint(t *testing.T) { @@ -425,52 +477,1835 @@ func fakeMetaDataV2s(t *testing.T, helper *stream.MetadataHelper, cf string) []* return m2s } +func ff(minTS, maxTS uint64) *backuppb.DataFileGroup { + return f(0, minTS, maxTS, stream.DefaultCF, 0) +} + +func TestReplaceMetadataTs(t *testing.T) { + m := &backuppb.Metadata{} + restore.ReplaceMetadata(m, []*backuppb.DataFileGroup{ + ff(1, 3), + ff(4, 5), + }) + require.Equal(t, m.MinTs, uint64(1)) + require.Equal(t, m.MaxTs, uint64(5)) + + restore.ReplaceMetadata(m, []*backuppb.DataFileGroup{ + ff(1, 4), + ff(3, 5), + }) + require.Equal(t, m.MinTs, uint64(1)) + require.Equal(t, m.MaxTs, uint64(5)) + + restore.ReplaceMetadata(m, []*backuppb.DataFileGroup{ + ff(1, 6), + ff(0, 5), + }) + require.Equal(t, m.MinTs, uint64(0)) + require.Equal(t, m.MaxTs, uint64(6)) + + restore.ReplaceMetadata(m, []*backuppb.DataFileGroup{ + ff(1, 3), + }) + require.Equal(t, m.MinTs, uint64(1)) + require.Equal(t, m.MaxTs, uint64(3)) + + restore.ReplaceMetadata(m, []*backuppb.DataFileGroup{}) + require.Equal(t, m.MinTs, uint64(0)) + require.Equal(t, m.MaxTs, uint64(0)) + + restore.ReplaceMetadata(m, []*backuppb.DataFileGroup{ + ff(1, 3), + ff(2, 4), + ff(0, 2), + }) + require.Equal(t, m.MinTs, uint64(0)) + require.Equal(t, m.MaxTs, uint64(4)) +} + +func m(storeId int64, minTS, maxTS uint64) *backuppb.Metadata { + return &backuppb.Metadata{ + StoreId: storeId, + MinTs: minTS, + MaxTs: maxTS, + MetaVersion: backuppb.MetaVersion_V2, + } +} + +func f(storeId int64, minTS, maxTS uint64, cf string, defaultTS uint64) *backuppb.DataFileGroup { + return &backuppb.DataFileGroup{ + Path: logName(storeId, minTS, maxTS), + DataFilesInfo: []*backuppb.DataFileInfo{ + { + NumberOfEntries: 1, + MinTs: minTS, + MaxTs: maxTS, + Cf: cf, + MinBeginTsInDefaultCf: defaultTS, + }, + }, + MinTs: minTS, + MaxTs: maxTS, + } +} + +// get the metadata with only one datafilegroup +func m_1(storeId int64, minTS, maxTS uint64, cf string, defaultTS uint64) *backuppb.Metadata { + meta := m(storeId, minTS, maxTS) + meta.FileGroups = []*backuppb.DataFileGroup{ + f(storeId, minTS, maxTS, cf, defaultTS), + } + return meta +} + +// get the metadata with 2 datafilegroup +func m_2( + storeId int64, + minTSL, maxTSL uint64, cfL string, defaultTSL uint64, + minTSR, maxTSR uint64, cfR string, defaultTSR uint64, +) *backuppb.Metadata { + meta := m(storeId, minTSL, maxTSR) + meta.FileGroups = []*backuppb.DataFileGroup{ + f(storeId, minTSL, maxTSL, cfL, defaultTSL), + f(storeId, minTSR, maxTSR, cfR, defaultTSR), + } + return meta +} + +// clean the files in the external storage +func cleanFiles(ctx context.Context, s storage.ExternalStorage) error { + names := make([]string, 0) + err := s.WalkDir(ctx, &storage.WalkOption{}, func(path string, size int64) error { + names = append(names, path) + return nil + }) + if err != nil { + return err + } + for _, path := range names { + err := s.DeleteFile(ctx, path) + if err != nil { + return err + } + } + return nil +} + +func metaName(storeId int64) string { + return fmt.Sprintf("%s/%04d.meta", stream.GetStreamBackupMetaPrefix(), storeId) +} + +func logName(storeId int64, minTS, maxTS uint64) string { + return fmt.Sprintf("%04d_%04d_%04d.log", storeId, minTS, maxTS) +} + +// generate the files to the external storage +func generateFiles(ctx context.Context, s storage.ExternalStorage, metas []*backuppb.Metadata, tmpDir string) error { + if err := cleanFiles(ctx, s); err != nil { + return err + } + fname := path.Join(tmpDir, stream.GetStreamBackupMetaPrefix()) + os.MkdirAll(fname, 0777) + for _, meta := range metas { + data, err := meta.Marshal() + if err != nil { + return err + } + + fname := metaName(meta.StoreId) + err = s.WriteFile(ctx, fname, data) + if err != nil { + return err + } + + for _, group := range meta.FileGroups { + fname := logName(meta.StoreId, group.MinTs, group.MaxTs) + err = s.WriteFile(ctx, fname, []byte("test")) + if err != nil { + return err + } + } + } + + return nil +} + +// check the files in the external storage +func checkFiles(ctx context.Context, s storage.ExternalStorage, metas []*backuppb.Metadata, t *testing.T) { + pathSet := make(map[string]struct{}) + for _, meta := range metas { + metaPath := metaName(meta.StoreId) + pathSet[metaPath] = struct{}{} + exists, err := s.FileExists(ctx, metaPath) + require.NoError(t, err) + require.True(t, exists) + + data, err := s.ReadFile(ctx, metaPath) + require.NoError(t, err) + metaRead := &backuppb.Metadata{} + err = metaRead.Unmarshal(data) + require.NoError(t, err) + require.Equal(t, meta.MinTs, metaRead.MinTs) + require.Equal(t, meta.MaxTs, metaRead.MaxTs) + for i, group := range meta.FileGroups { + require.Equal(t, metaRead.FileGroups[i].Path, group.Path) + logPath := logName(meta.StoreId, group.MinTs, group.MaxTs) + pathSet[logPath] = struct{}{} + exists, err := s.FileExists(ctx, logPath) + require.NoError(t, err) + require.True(t, exists) + } + } + + err := s.WalkDir(ctx, &storage.WalkOption{}, func(path string, size int64) error { + _, exists := pathSet[path] + require.True(t, exists, path) + return nil + }) + require.NoError(t, err) +} + +type testParam struct { + until []uint64 + shiftUntilTS uint64 + restMetadata []*backuppb.Metadata +} + +func TestTruncate1(t *testing.T) { + ctx := context.Background() + tmpDir := t.TempDir() + s, err := storage.NewLocalStorage(tmpDir) + require.NoError(t, err) + + cases := []struct { + metas []*backuppb.Metadata + testParams []*testParam + }{ + { + // metadata 10-----------20 + // ↑ ↑ + // +-----------+ + // ↓ ↓ + // filegroup 10-----d-----20 + metas: []*backuppb.Metadata{ + m_1(1, 10, 20, stream.DefaultCF, 0), + }, + testParams: []*testParam{ + { + until: []uint64{5}, + shiftUntilTS: 5, restMetadata: []*backuppb.Metadata{ + m_1(1, 10, 20, stream.DefaultCF, 0), + }, + }, { + until: []uint64{10}, + shiftUntilTS: 10, restMetadata: []*backuppb.Metadata{ + m_1(1, 10, 20, stream.DefaultCF, 0), + }, + }, { + until: []uint64{15}, + shiftUntilTS: 15, restMetadata: []*backuppb.Metadata{ + m_1(1, 10, 20, stream.DefaultCF, 0), + }, + }, { + until: []uint64{20}, + shiftUntilTS: 20, restMetadata: []*backuppb.Metadata{ + m_1(1, 10, 20, stream.DefaultCF, 0), + }, + }, { + until: []uint64{25}, + shiftUntilTS: 25, restMetadata: []*backuppb.Metadata{}, + }, + }, + }, { + // metadata 10-----------20 + // ↑ ↑ + // +-----------+ + // ↓ ↓ + // filegroup 5-d--10-----w-----20 + metas: []*backuppb.Metadata{ + m_1(1, 10, 20, stream.WriteCF, 5), + }, + testParams: []*testParam{ + { + until: []uint64{3}, + shiftUntilTS: 3, restMetadata: []*backuppb.Metadata{ + m_1(1, 10, 20, stream.WriteCF, 5), + }, + }, { + until: []uint64{5, 7, 10, 15, 20}, + shiftUntilTS: 5, restMetadata: []*backuppb.Metadata{ + m_1(1, 10, 20, stream.WriteCF, 5), + }, + }, { + until: []uint64{25}, + shiftUntilTS: 25, restMetadata: []*backuppb.Metadata{}, + }, + }, + }, { + // metadata 5----8 10-----------20 + // ↑ ↑ ↑ ↑ + // +----+ +-----------+ + // ↓ ↓ ↓ ↓ + // filegroup 5--d-8 ↓ ↓ + // filegroup 5--d---10-----w-----20 + metas: []*backuppb.Metadata{ + m_1(1, 5, 8, stream.DefaultCF, 0), + m_1(2, 10, 20, stream.WriteCF, 5), + }, + testParams: []*testParam{ + { + until: []uint64{3}, + shiftUntilTS: 3, restMetadata: []*backuppb.Metadata{ + m_1(1, 5, 8, stream.DefaultCF, 0), + m_1(2, 10, 20, stream.WriteCF, 5), + }, + }, { + until: []uint64{5, 8, 9, 10, 15, 20}, + shiftUntilTS: 5, restMetadata: []*backuppb.Metadata{ + m_1(1, 5, 8, stream.DefaultCF, 0), + m_1(2, 10, 20, stream.WriteCF, 5), + }, + }, { + until: []uint64{25}, + shiftUntilTS: 25, restMetadata: []*backuppb.Metadata{}, + }, + }, + }, { + // metadata 10-----------20 + // metadata 5------10 ↑ + // ↑ ↑ ↑ + // +-------+-----------+ + // ↓ ↓ ↓ + // filegroup 5--d---10 ↓ + // filegroup 5--d---10-----w-----20 + metas: []*backuppb.Metadata{ + m_1(1, 5, 10, stream.DefaultCF, 0), + m_1(2, 10, 20, stream.WriteCF, 5), + }, + testParams: []*testParam{ + { + until: []uint64{3}, + shiftUntilTS: 3, restMetadata: []*backuppb.Metadata{ + m_1(1, 5, 10, stream.DefaultCF, 0), + m_1(2, 10, 20, stream.WriteCF, 5), + }, + }, { + until: []uint64{5, 8, 9, 10, 15, 20}, + shiftUntilTS: 5, restMetadata: []*backuppb.Metadata{ + m_1(1, 5, 10, stream.DefaultCF, 0), + m_1(2, 10, 20, stream.WriteCF, 5), + }, + }, { + until: []uint64{25}, + shiftUntilTS: 25, restMetadata: []*backuppb.Metadata{}, + }, + }, + }, { + // metadata 10-----------20 + // metadata 5-------↑-12 ↑ + // ↑ ↑ ↑ ↑ + // +-------+-+---------+ + // ↓ ↓ ↓ ↓ + // filegroup 5--d----↓-12 ↓ + // filegroup 5--d---10-----w-----20 + metas: []*backuppb.Metadata{ + m_1(1, 5, 12, stream.DefaultCF, 0), + m_1(2, 10, 20, stream.WriteCF, 5), + }, + testParams: []*testParam{ + { + until: []uint64{3}, + shiftUntilTS: 3, restMetadata: []*backuppb.Metadata{ + m_1(1, 5, 12, stream.DefaultCF, 0), + m_1(2, 10, 20, stream.WriteCF, 5), + }, + }, { + until: []uint64{5, 8, 9, 10, 15, 20}, + shiftUntilTS: 5, restMetadata: []*backuppb.Metadata{ + m_1(1, 5, 12, stream.DefaultCF, 0), + m_1(2, 10, 20, stream.WriteCF, 5), + }, + }, { + until: []uint64{25}, + shiftUntilTS: 25, restMetadata: []*backuppb.Metadata{}, + }, + }, + }, { + // metadata 10-----------20 + // metadata 5-------↑-----------20 + // ↑ ↑ ↑ + // +-------+-----------+ + // ↓ ↓ ↓ + // filegroup 5--d----↓-----------20 + // filegroup 5--d---10-----w-----20 + metas: []*backuppb.Metadata{ + m_1(1, 5, 20, stream.DefaultCF, 0), + m_1(2, 10, 20, stream.WriteCF, 5), + }, + testParams: []*testParam{ + { + until: []uint64{3}, + shiftUntilTS: 3, restMetadata: []*backuppb.Metadata{ + m_1(1, 5, 20, stream.DefaultCF, 0), + m_1(2, 10, 20, stream.WriteCF, 5), + }, + }, { + until: []uint64{5, 8, 10, 15, 20}, + shiftUntilTS: 5, restMetadata: []*backuppb.Metadata{ + m_1(1, 5, 20, stream.DefaultCF, 0), + m_1(2, 10, 20, stream.WriteCF, 5), + }, + }, { + until: []uint64{25}, + shiftUntilTS: 25, restMetadata: []*backuppb.Metadata{}, + }, + }, + }, { + // metadata 10-----------20 + // metadata 5-------↑-----------↑--22 + // ↑ ↑ ↑ ↑ + // +-------+-----------+--+ + // ↓ ↓ ↓ ↓ + // filegroup 5--d----↓-----------↓--22 + // filegroup 5--d---10-----w-----20 + metas: []*backuppb.Metadata{ + m_1(1, 5, 22, stream.DefaultCF, 0), + m_1(2, 10, 20, stream.WriteCF, 5), + }, + testParams: []*testParam{ + { + until: []uint64{3}, + shiftUntilTS: 3, restMetadata: []*backuppb.Metadata{ + m_1(1, 5, 22, stream.DefaultCF, 0), + m_1(2, 10, 20, stream.WriteCF, 5), + }, + }, { + until: []uint64{5, 8, 10, 15, 20}, + shiftUntilTS: 5, restMetadata: []*backuppb.Metadata{ + m_1(1, 5, 22, stream.DefaultCF, 0), + m_1(2, 10, 20, stream.WriteCF, 5), + }, + }, { + until: []uint64{21}, + shiftUntilTS: 21, restMetadata: []*backuppb.Metadata{ + m_1(1, 5, 22, stream.DefaultCF, 0), + }, + }, { + until: []uint64{22}, + shiftUntilTS: 22, restMetadata: []*backuppb.Metadata{ + m_1(1, 5, 22, stream.DefaultCF, 0), + }, + }, { + until: []uint64{25}, + shiftUntilTS: 25, restMetadata: []*backuppb.Metadata{}, + }, + }, + }, { + // metadata 10-----------20 + // metadata 10---14 ↑ + // ↑ ↑ ↑ + // +----+-------+ + // ↓ ↓ ↓ + // filegroup 10-d-14 ↓ + // filegroup 5--d---10-----w-----20 + metas: []*backuppb.Metadata{ + m_1(1, 10, 14, stream.DefaultCF, 0), + m_1(2, 10, 20, stream.WriteCF, 5), + }, + testParams: []*testParam{ + { + until: []uint64{3}, + shiftUntilTS: 3, restMetadata: []*backuppb.Metadata{ + m_1(1, 10, 14, stream.DefaultCF, 0), + m_1(2, 10, 20, stream.WriteCF, 5), + }, + }, { + until: []uint64{5, 8, 10, 12, 14, 18, 20}, + shiftUntilTS: 5, restMetadata: []*backuppb.Metadata{ + m_1(1, 10, 14, stream.DefaultCF, 0), + m_1(2, 10, 20, stream.WriteCF, 5), + }, + }, { + until: []uint64{25}, + shiftUntilTS: 25, restMetadata: []*backuppb.Metadata{}, + }, + }, + }, { + // metadata 10-----------20 + // metadata 10-----------20 + // ↑ ↑ + // +------------+ + // ↓ ↓ + // filegroup 10----d------20 + // filegroup 5--d---10-----w-----20 + metas: []*backuppb.Metadata{ + m_1(1, 10, 20, stream.DefaultCF, 0), + m_1(2, 10, 20, stream.WriteCF, 5), + }, + testParams: []*testParam{ + { + until: []uint64{3}, + shiftUntilTS: 3, restMetadata: []*backuppb.Metadata{ + m_1(1, 10, 20, stream.DefaultCF, 0), + m_1(2, 10, 20, stream.WriteCF, 5), + }, + }, { + until: []uint64{5, 8, 10, 14, 20}, + shiftUntilTS: 5, restMetadata: []*backuppb.Metadata{ + m_1(1, 10, 20, stream.DefaultCF, 0), + m_1(2, 10, 20, stream.WriteCF, 5), + }, + }, { + until: []uint64{25}, + shiftUntilTS: 25, restMetadata: []*backuppb.Metadata{}, + }, + }, + }, { + // metadata 10-----------20 + // metadata 10------------↑--22 + // ↑ ↑ ↑ + // +------------+---+ + // ↓ ↓ ↓ + // filegroup 10----d-------↓--22 + // filegroup 5--d---10-----w-----20 + metas: []*backuppb.Metadata{ + m_1(1, 10, 22, stream.DefaultCF, 0), + m_1(2, 10, 20, stream.WriteCF, 5), + }, + testParams: []*testParam{ + { + until: []uint64{3}, + shiftUntilTS: 3, restMetadata: []*backuppb.Metadata{ + m_1(1, 10, 22, stream.DefaultCF, 0), + m_1(2, 10, 20, stream.WriteCF, 5), + }, + }, { + until: []uint64{5, 8, 10, 14, 20}, + shiftUntilTS: 5, restMetadata: []*backuppb.Metadata{ + m_1(1, 10, 22, stream.DefaultCF, 0), + m_1(2, 10, 20, stream.WriteCF, 5), + }, + }, { + until: []uint64{21}, + shiftUntilTS: 21, restMetadata: []*backuppb.Metadata{ + m_1(1, 10, 22, stream.DefaultCF, 0), + }, + }, { + until: []uint64{22}, + shiftUntilTS: 22, restMetadata: []*backuppb.Metadata{ + m_1(1, 10, 22, stream.DefaultCF, 0), + }, + }, { + until: []uint64{25}, + shiftUntilTS: 25, restMetadata: []*backuppb.Metadata{}, + }, + }, + }, { + // metadata 10-----------20 + // metadata ↑ 12-----18 ↑ + // ↑ ↑ ↑ ↑ + // +--+------+--+ + // ↓ ↓ ↓ ↓ + // filegroup ↓ 12--d--18 ↓ + // filegroup 5--d---10-----w-----20 + metas: []*backuppb.Metadata{ + m_1(1, 12, 18, stream.DefaultCF, 0), + m_1(2, 10, 20, stream.WriteCF, 5), + }, + testParams: []*testParam{ + { + until: []uint64{3}, + shiftUntilTS: 3, restMetadata: []*backuppb.Metadata{ + m_1(1, 12, 18, stream.DefaultCF, 0), + m_1(2, 10, 20, stream.WriteCF, 5), + }, + }, { + until: []uint64{5, 8, 10, 11, 12, 15, 18, 19, 20}, + shiftUntilTS: 5, restMetadata: []*backuppb.Metadata{ + m_1(1, 12, 18, stream.DefaultCF, 0), + m_1(2, 10, 20, stream.WriteCF, 5), + }, + }, { + until: []uint64{25}, + shiftUntilTS: 25, restMetadata: []*backuppb.Metadata{}, + }, + }, + }, { + // metadata 10-----------20 + // metadata ↑ 14----20 + // ↑ ↑ ↑ + // +------+-----+ + // ↓ ↓ ↓ + // filegroup ↓ 14--d-20 + // filegroup 5--d---10-----w-----20 + metas: []*backuppb.Metadata{ + m_1(1, 14, 20, stream.DefaultCF, 0), + m_1(2, 10, 20, stream.WriteCF, 5), + }, + testParams: []*testParam{ + { + until: []uint64{3}, + shiftUntilTS: 3, restMetadata: []*backuppb.Metadata{ + m_1(1, 14, 20, stream.DefaultCF, 0), + m_1(2, 10, 20, stream.WriteCF, 5), + }, + }, { + until: []uint64{5, 8, 10, 14, 20}, + shiftUntilTS: 5, restMetadata: []*backuppb.Metadata{ + m_1(1, 14, 20, stream.DefaultCF, 0), + m_1(2, 10, 20, stream.WriteCF, 5), + }, + }, { + until: []uint64{25}, + shiftUntilTS: 25, restMetadata: []*backuppb.Metadata{}, + }, + }, + }, { + // metadata 10-----------20 + // metadata ↑ 14-----↑--22 + // ↑ ↑ ↑ ↑ + // +------+-----+---+ + // ↓ ↓ ↓ ↓ + // filegroup ↓ 14-d--↓--22 + // filegroup 5--d---10-----w-----20 + metas: []*backuppb.Metadata{ + m_1(1, 14, 22, stream.DefaultCF, 0), + m_1(2, 10, 20, stream.WriteCF, 5), + }, + testParams: []*testParam{ + { + until: []uint64{3}, + shiftUntilTS: 3, restMetadata: []*backuppb.Metadata{ + m_1(1, 14, 22, stream.DefaultCF, 0), + m_1(2, 10, 20, stream.WriteCF, 5), + }, + }, { + until: []uint64{5, 8, 10, 14, 20}, + shiftUntilTS: 5, restMetadata: []*backuppb.Metadata{ + m_1(1, 14, 22, stream.DefaultCF, 0), + m_1(2, 10, 20, stream.WriteCF, 5), + }, + }, { + until: []uint64{21}, + shiftUntilTS: 21, restMetadata: []*backuppb.Metadata{ + m_1(1, 14, 22, stream.DefaultCF, 0), + }, + }, { + until: []uint64{22}, + shiftUntilTS: 22, restMetadata: []*backuppb.Metadata{ + m_1(1, 14, 22, stream.DefaultCF, 0), + }, + }, { + until: []uint64{25}, + shiftUntilTS: 25, restMetadata: []*backuppb.Metadata{}, + }, + }, + }, { + // metadata 10-----------20 + // metadata ↑ 20--22 + // ↑ ↑ ↑ + // +------------+---+ + // ↓ ↓ ↓ + // filegroup ↓ 20--22 + // filegroup 5--d---10-----w-----20 + metas: []*backuppb.Metadata{ + m_1(1, 20, 22, stream.DefaultCF, 0), + m_1(2, 10, 20, stream.WriteCF, 5), + }, + testParams: []*testParam{ + { + until: []uint64{3}, + shiftUntilTS: 3, restMetadata: []*backuppb.Metadata{ + m_1(1, 20, 22, stream.DefaultCF, 0), + m_1(2, 10, 20, stream.WriteCF, 5), + }, + }, { + until: []uint64{5, 8, 10, 14, 20}, + shiftUntilTS: 5, restMetadata: []*backuppb.Metadata{ + m_1(1, 20, 22, stream.DefaultCF, 0), + m_1(2, 10, 20, stream.WriteCF, 5), + }, + }, { + until: []uint64{21}, + shiftUntilTS: 21, restMetadata: []*backuppb.Metadata{ + m_1(1, 20, 22, stream.DefaultCF, 0), + }, + }, { + until: []uint64{22}, + shiftUntilTS: 22, restMetadata: []*backuppb.Metadata{ + m_1(1, 20, 22, stream.DefaultCF, 0), + }, + }, { + until: []uint64{25}, + shiftUntilTS: 25, restMetadata: []*backuppb.Metadata{}, + }, + }, + }, { + // metadata 10-----------20 + // metadata ↑ ↑ 21---24 + // ↑ ↑ ↑ ↑ + // +------------+--+----+ + // ↓ ↓ ↓ ↓ + // filegroup ↓ ↓ 21-d-24 + // filegroup 5--d---10-----w-----20 + metas: []*backuppb.Metadata{ + m_1(1, 21, 24, stream.DefaultCF, 0), + m_1(2, 10, 20, stream.WriteCF, 5), + }, + testParams: []*testParam{ + { + until: []uint64{3}, + shiftUntilTS: 3, restMetadata: []*backuppb.Metadata{ + m_1(1, 21, 24, stream.DefaultCF, 0), + m_1(2, 10, 20, stream.WriteCF, 5), + }, + }, { + until: []uint64{5, 8, 10, 14, 20}, + shiftUntilTS: 5, restMetadata: []*backuppb.Metadata{ + m_1(1, 21, 24, stream.DefaultCF, 0), + m_1(2, 10, 20, stream.WriteCF, 5), + }, + }, { + until: []uint64{21}, + shiftUntilTS: 21, restMetadata: []*backuppb.Metadata{ + m_1(1, 21, 24, stream.DefaultCF, 0), + }, + }, { + until: []uint64{22}, + shiftUntilTS: 22, restMetadata: []*backuppb.Metadata{ + m_1(1, 21, 24, stream.DefaultCF, 0), + }, + }, { + until: []uint64{25}, + shiftUntilTS: 25, restMetadata: []*backuppb.Metadata{}, + }, + }, + }, + } + + for i, cs := range cases { + for j, ts := range cs.testParams { + for _, until := range ts.until { + t.Logf("case %d, param %d, until %d", i, j, until) + metas := restore.StreamMetadataSet{ + Helper: stream.NewMetadataHelper(), + } + err := generateFiles(ctx, s, cs.metas, tmpDir) + require.NoError(t, err) + shiftUntilTS, err := metas.LoadUntilAndCalculateShiftTS(ctx, s, until) + require.NoError(t, err) + require.Equal(t, shiftUntilTS, ts.shiftUntilTS) + n, err := metas.RemoveDataFilesAndUpdateMetadataInBatch(ctx, shiftUntilTS, s, func(num int64) {}) + require.Equal(t, len(n), 0) + require.NoError(t, err) + + // check the result + checkFiles(ctx, s, ts.restMetadata, t) + } + } + } +} + +type testParam2 struct { + until []uint64 + shiftUntilTS func(uint64) uint64 + restMetadata []*backuppb.Metadata +} + +func returnV(v uint64) func(uint64) uint64 { + return func(uint64) uint64 { + return v + } +} + +func returnSelf() func(uint64) uint64 { + return func(u uint64) uint64 { + return u + } +} + +func TestTruncate2(t *testing.T) { + ctx := context.Background() + tmpDir := t.TempDir() + s, err := storage.NewLocalStorage(tmpDir) + require.NoError(t, err) + + cases := []struct { + metas []*backuppb.Metadata + testParams []*testParam2 + }{ + { + // metadata 10-----------20 + // ↑ ↑ + // +-----------+ + // ↓ ↓ ↓ ↓ + // filegroup 10-d-13 ↓ ↓ + // filegroup 8----d--15-w-20 + metas: []*backuppb.Metadata{ + m_2(1, + 10, 13, stream.DefaultCF, 0, + 15, 20, stream.WriteCF, 8, + ), + }, + testParams: []*testParam2{ + { + until: []uint64{5}, + shiftUntilTS: returnV(5), restMetadata: []*backuppb.Metadata{ + m_2(1, + 10, 13, stream.DefaultCF, 0, + 15, 20, stream.WriteCF, 8, + ), + }, + }, { + until: []uint64{8, 9, 10, 12, 13, 14, 15, 18, 20}, + shiftUntilTS: returnV(8), restMetadata: []*backuppb.Metadata{ + m_2(1, + 10, 13, stream.DefaultCF, 0, + 15, 20, stream.WriteCF, 8, + ), + }, + }, { + until: []uint64{25}, + shiftUntilTS: returnV(25), restMetadata: []*backuppb.Metadata{}, + }, + }, + }, { + // metadata 3---6 10----------20 + // ↑ ↑ ↑ ↑ + // +---+ +-----------+ + // ↓ ↓ ↓ ↓ ↓ ↓ + // filegroup 3 6 10-d-13 ↓ ↓ + // filegroup 1-----------d--15-w-20 + metas: []*backuppb.Metadata{ + m_1(1, 3, 6, stream.DefaultCF, 0), + m_2(2, + 10, 13, stream.DefaultCF, 0, + 15, 20, stream.WriteCF, 1, + ), + }, + testParams: []*testParam2{ + { + until: []uint64{0}, + shiftUntilTS: returnV(0), restMetadata: []*backuppb.Metadata{ + m_1(1, 3, 6, stream.DefaultCF, 0), + m_2(2, + 10, 13, stream.DefaultCF, 0, + 15, 20, stream.WriteCF, 8, + ), + }, + }, { + until: []uint64{1, 2, 3, 4, 6, 9, 10, 12, 13, 14, 15, 18, 20}, + shiftUntilTS: returnV(1), restMetadata: []*backuppb.Metadata{ + m_1(1, 3, 6, stream.DefaultCF, 0), + m_2(2, + 10, 13, stream.DefaultCF, 0, + 15, 20, stream.WriteCF, 8, + ), + }, + }, { + until: []uint64{25}, + shiftUntilTS: returnV(25), restMetadata: []*backuppb.Metadata{}, + }, + }, + }, { + // metadata 3---6 10----------20 + // ↑ ↑ ↑ ↑ + // +---+ +-----------+ + // ↓ ↓ ↓ ↓ ↓ ↓ + // filegroup 3 6 10-d-13 ↓ ↓ + // filegroup 3----------d--15-w-20 + metas: []*backuppb.Metadata{ + m_1(1, 3, 6, stream.DefaultCF, 0), + m_2(2, + 10, 13, stream.DefaultCF, 0, + 15, 20, stream.WriteCF, 3, + ), + }, + testParams: []*testParam2{ + { + until: []uint64{2}, + shiftUntilTS: returnV(2), restMetadata: []*backuppb.Metadata{ + m_1(1, 3, 6, stream.DefaultCF, 0), + m_2(2, + 10, 13, stream.DefaultCF, 0, + 15, 20, stream.WriteCF, 3, + ), + }, + }, { + until: []uint64{3, 4, 6, 9, 10, 12, 13, 14, 15, 18, 20}, + shiftUntilTS: returnV(3), restMetadata: []*backuppb.Metadata{ + m_1(1, 3, 6, stream.DefaultCF, 0), + m_2(2, + 10, 13, stream.DefaultCF, 0, + 15, 20, stream.WriteCF, 3, + ), + }, + }, { + until: []uint64{25}, + shiftUntilTS: returnV(25), restMetadata: []*backuppb.Metadata{}, + }, + }, + }, { + // metadata 3---7 10----------20 + // ↑ ↑ ↑ ↑ + // +---+ +----+-+----+ + // ↓ ↓ ↓ ↓ ↓ ↓ + // filegroup 3 7 10-d-13 ↓ ↓ + // filegroup 5--------d--15-w-20 + metas: []*backuppb.Metadata{ + m_1(1, 3, 7, stream.DefaultCF, 0), + m_2(2, + 10, 13, stream.DefaultCF, 0, + 15, 20, stream.WriteCF, 5, + ), + }, + testParams: []*testParam2{ + { + until: []uint64{2, 3, 4}, + shiftUntilTS: returnSelf(), restMetadata: []*backuppb.Metadata{ + m_1(1, 3, 7, stream.DefaultCF, 0), + m_2(2, + 10, 13, stream.DefaultCF, 0, + 15, 20, stream.WriteCF, 5, + ), + }, + }, { + until: []uint64{5, 6, 7, 9, 10, 12, 13, 14, 15, 18, 20}, + shiftUntilTS: returnV(5), restMetadata: []*backuppb.Metadata{ + m_1(1, 3, 7, stream.DefaultCF, 0), + m_2(2, + 10, 13, stream.DefaultCF, 0, + 15, 20, stream.WriteCF, 5, + ), + }, + }, { + until: []uint64{25}, + shiftUntilTS: returnV(25), restMetadata: []*backuppb.Metadata{}, + }, + }, + }, { + // metadata 3---7 10----------20 + // ↑ ↑ ↑ ↑ + // +---+ +----+-+----+ + // ↓ ↓ ↓ ↓ ↓ ↓ + // filegroup 3 7 10-d-13 ↓ ↓ + // filegroup 7------d--15-w-20 + metas: []*backuppb.Metadata{ + m_1(1, 3, 7, stream.DefaultCF, 0), + m_2(2, + 10, 13, stream.DefaultCF, 0, + 15, 20, stream.WriteCF, 7, + ), + }, + testParams: []*testParam2{ + { + until: []uint64{2, 3, 4, 6, 7}, + shiftUntilTS: returnSelf(), restMetadata: []*backuppb.Metadata{ + m_1(1, 3, 7, stream.DefaultCF, 0), + m_2(2, + 10, 13, stream.DefaultCF, 0, + 15, 20, stream.WriteCF, 7, + ), + }, + }, { + until: []uint64{9, 10, 12, 13, 14, 15, 18, 20}, + shiftUntilTS: returnV(7), restMetadata: []*backuppb.Metadata{ + m_1(1, 3, 7, stream.DefaultCF, 0), + m_2(2, + 10, 13, stream.DefaultCF, 0, + 15, 20, stream.WriteCF, 7, + ), + }, + }, { + until: []uint64{25}, + shiftUntilTS: returnV(25), restMetadata: []*backuppb.Metadata{}, + }, + }, + }, { + // metadata 3---6 10----------20 + // ↑ ↑ ↑ ↑ + // +---+ +----+-+----+ + // ↓ ↓ ↓ ↓ ↓ ↓ + // filegroup 3-d-6 10-d-13 ↓ ↓ + // filegroup 8----d--15-w-20 + metas: []*backuppb.Metadata{ + m_1(1, 3, 6, stream.DefaultCF, 0), + m_2(2, + 10, 13, stream.DefaultCF, 0, + 15, 20, stream.WriteCF, 8, + ), + }, + testParams: []*testParam2{ + { + until: []uint64{2, 3, 4, 6}, + shiftUntilTS: returnSelf(), restMetadata: []*backuppb.Metadata{ + m_1(1, 3, 6, stream.DefaultCF, 0), + m_2(2, + 10, 13, stream.DefaultCF, 0, + 15, 20, stream.WriteCF, 8, + ), + }, + }, { + until: []uint64{7}, + shiftUntilTS: returnSelf(), restMetadata: []*backuppb.Metadata{ + m_2(2, + 10, 13, stream.DefaultCF, 0, + 15, 20, stream.WriteCF, 8, + ), + }, + }, { + until: []uint64{8, 9, 10, 12, 13, 14, 15, 18, 20}, + shiftUntilTS: returnV(8), restMetadata: []*backuppb.Metadata{ + m_2(2, + 10, 13, stream.DefaultCF, 0, + 15, 20, stream.WriteCF, 8, + ), + }, + }, { + until: []uint64{25}, + shiftUntilTS: returnV(25), restMetadata: []*backuppb.Metadata{}, + }, + }, + }, { + // metadata 3---6 10----------20 + // ↑ ↑ ↑ ↑ + // +---+ +----+-+----+ + // ↓ ↓ ↓ ↓ ↓ ↓ + // filegroup 3-d-6 10-d-13 ↓ ↓ + // filegroup 10--d--15-w-20 + metas: []*backuppb.Metadata{ + m_1(1, 3, 6, stream.DefaultCF, 0), + m_2(2, + 10, 13, stream.DefaultCF, 0, + 15, 20, stream.WriteCF, 10, + ), + }, + testParams: []*testParam2{ + { + until: []uint64{2, 3, 4, 6}, + shiftUntilTS: returnSelf(), restMetadata: []*backuppb.Metadata{ + m_1(1, 3, 6, stream.DefaultCF, 0), + m_2(2, + 10, 13, stream.DefaultCF, 0, + 15, 20, stream.WriteCF, 10, + ), + }, + }, { + until: []uint64{7, 8, 9}, + shiftUntilTS: returnSelf(), restMetadata: []*backuppb.Metadata{ + m_2(2, + 10, 13, stream.DefaultCF, 0, + 15, 20, stream.WriteCF, 10, + ), + }, + }, { + until: []uint64{10, 12, 13, 14, 15, 18, 20}, + shiftUntilTS: returnV(10), restMetadata: []*backuppb.Metadata{ + m_2(2, + 10, 13, stream.DefaultCF, 0, + 15, 20, stream.WriteCF, 10, + ), + }, + }, { + until: []uint64{25}, + shiftUntilTS: returnV(25), restMetadata: []*backuppb.Metadata{}, + }, + }, + }, { + // metadata 3---6 10----------20 + // ↑ ↑ ↑ ↑ + // +---+ +----+-+----+ + // ↓ ↓ ↓ ↓ ↓ ↓ + // filegroup 3-d-6 9-d-13 ↓ ↓ + // filegroup 11-d-15-w-20 + metas: []*backuppb.Metadata{ + m_1(1, 3, 6, stream.DefaultCF, 0), + m_2(2, + 9, 13, stream.DefaultCF, 0, + 15, 20, stream.WriteCF, 11, + ), + }, + testParams: []*testParam2{ + { + until: []uint64{2, 3, 4, 6}, + shiftUntilTS: returnSelf(), restMetadata: []*backuppb.Metadata{ + m_1(1, 3, 6, stream.DefaultCF, 0), + m_2(2, + 9, 13, stream.DefaultCF, 0, + 15, 20, stream.WriteCF, 11, + ), + }, + }, { + until: []uint64{7, 8, 9, 10}, + shiftUntilTS: returnSelf(), restMetadata: []*backuppb.Metadata{ + m_2(2, + 9, 13, stream.DefaultCF, 0, + 15, 20, stream.WriteCF, 11, + ), + }, + }, { + until: []uint64{11, 12, 13, 14, 15, 18, 20}, + shiftUntilTS: returnV(11), restMetadata: []*backuppb.Metadata{ + m_2(2, + 9, 13, stream.DefaultCF, 0, + 15, 20, stream.WriteCF, 11, + ), + }, + }, { + until: []uint64{25}, + shiftUntilTS: returnV(25), restMetadata: []*backuppb.Metadata{}, + }, + }, + }, { + // metadata 3---6 10----------20 + // ↑ ↑ ↑ ↑ + // +---+ +----+-+----+ + // ↓ ↓ ↓ ↓ ↓ ↓ + // filegroup 3-d-6 10-d-13 ↓ ↓ + // filegroup 13d15-w-20 + metas: []*backuppb.Metadata{ + m_1(1, 3, 6, stream.DefaultCF, 0), + m_2(2, + 10, 13, stream.DefaultCF, 0, + 15, 20, stream.WriteCF, 13, + ), + }, + testParams: []*testParam2{ + { + until: []uint64{2, 3, 4, 6}, + shiftUntilTS: returnSelf(), restMetadata: []*backuppb.Metadata{ + m_1(1, 3, 6, stream.DefaultCF, 0), + m_2(2, + 10, 13, stream.DefaultCF, 0, + 15, 20, stream.WriteCF, 13, + ), + }, + }, { + until: []uint64{7, 8, 9, 10, 12}, + shiftUntilTS: returnSelf(), restMetadata: []*backuppb.Metadata{ + m_2(2, + 10, 13, stream.DefaultCF, 0, + 15, 20, stream.WriteCF, 13, + ), + }, + }, { + until: []uint64{13, 14, 15, 18, 20}, + shiftUntilTS: returnV(13), restMetadata: []*backuppb.Metadata{ + m_2(2, + 10, 13, stream.DefaultCF, 0, + 15, 20, stream.WriteCF, 13, + ), + }, + }, { + until: []uint64{25}, + shiftUntilTS: returnV(25), restMetadata: []*backuppb.Metadata{}, + }, + }, + }, { + // metadata 3---6 10----------20 + // ↑ ↑ ↑ ↑ + // +---+ +----+--+---+ + // ↓ ↓ ↓ ↓ ↓ ↓ + // filegroup 3-d-6 10-d-12 ↓ ↓ + // filegroup 14d16-w-20 + metas: []*backuppb.Metadata{ + m_1(1, 3, 6, stream.DefaultCF, 0), + m_2(2, + 10, 12, stream.DefaultCF, 0, + 16, 20, stream.WriteCF, 14, + ), + }, + testParams: []*testParam2{ + { + until: []uint64{2, 3, 4, 6}, + shiftUntilTS: returnSelf(), restMetadata: []*backuppb.Metadata{ + m_1(1, 3, 6, stream.DefaultCF, 0), + m_2(2, + 10, 12, stream.DefaultCF, 0, + 16, 20, stream.WriteCF, 14, + ), + }, + }, { + until: []uint64{7, 8, 9, 10, 11, 12}, + shiftUntilTS: returnSelf(), restMetadata: []*backuppb.Metadata{ + m_2(2, + 10, 12, stream.DefaultCF, 0, + 16, 20, stream.WriteCF, 14, + ), + }, + }, { + until: []uint64{13}, + shiftUntilTS: returnSelf(), restMetadata: []*backuppb.Metadata{ + m_1(2, 16, 20, stream.WriteCF, 14), + }, + }, { + until: []uint64{14, 15, 18, 20}, + shiftUntilTS: returnV(14), restMetadata: []*backuppb.Metadata{ + m_1(2, 16, 20, stream.WriteCF, 14), + }, + }, { + until: []uint64{25}, + shiftUntilTS: returnV(25), restMetadata: []*backuppb.Metadata{}, + }, + }, + }, { + // metadata 3---6 10----------20 + // ↑ ↑ ↑ ↑ + // +---+ +----+--+---+ + // ↓ ↓ ↓ ↓ ↓ ↓ + // filegroup 3-d-6 10-d-12 ↓ ↓ + // filegroup 14d16-w-20 + metas: []*backuppb.Metadata{ + m_1(1, 3, 6, stream.DefaultCF, 0), + m_2(2, + 10, 12, stream.DefaultCF, 0, + 16, 20, stream.WriteCF, 14, + ), + }, + testParams: []*testParam2{ + { + until: []uint64{2, 3, 4, 6}, + shiftUntilTS: returnSelf(), restMetadata: []*backuppb.Metadata{ + m_1(1, 3, 6, stream.DefaultCF, 0), + m_2(2, + 10, 12, stream.DefaultCF, 0, + 16, 20, stream.WriteCF, 14, + ), + }, + }, { + until: []uint64{7, 8, 9, 10, 11, 12}, + shiftUntilTS: returnSelf(), restMetadata: []*backuppb.Metadata{ + m_2(2, + 10, 12, stream.DefaultCF, 0, + 16, 20, stream.WriteCF, 14, + ), + }, + }, { + until: []uint64{13}, + shiftUntilTS: returnSelf(), restMetadata: []*backuppb.Metadata{ + m_1(2, 16, 20, stream.WriteCF, 14), + }, + }, { + until: []uint64{14, 15, 18, 20}, + shiftUntilTS: returnV(14), restMetadata: []*backuppb.Metadata{ + m_1(2, 16, 20, stream.WriteCF, 14), + }, + }, { + until: []uint64{25}, + shiftUntilTS: returnV(25), restMetadata: []*backuppb.Metadata{}, + }, + }, + }, + } + + for i, cs := range cases { + for j, ts := range cs.testParams { + for _, until := range ts.until { + t.Logf("case %d, param %d, until %d", i, j, until) + metas := restore.StreamMetadataSet{ + Helper: stream.NewMetadataHelper(), + } + err := generateFiles(ctx, s, cs.metas, tmpDir) + require.NoError(t, err) + shiftUntilTS, err := metas.LoadUntilAndCalculateShiftTS(ctx, s, until) + require.NoError(t, err) + require.Equal(t, shiftUntilTS, ts.shiftUntilTS(until)) + n, err := metas.RemoveDataFilesAndUpdateMetadataInBatch(ctx, shiftUntilTS, s, func(num int64) {}) + require.Equal(t, len(n), 0) + require.NoError(t, err) + + // check the result + checkFiles(ctx, s, ts.restMetadata, t) + } + } + } +} + +func TestTruncate3(t *testing.T) { + ctx := context.Background() + tmpDir := t.TempDir() + s, err := storage.NewLocalStorage(tmpDir) + require.NoError(t, err) + + cases := []struct { + metas []*backuppb.Metadata + testParams []*testParam2 + }{ + { + // metadata 3------10 12----------20 + // ↑ ↑ ↑ ↑ + // +-+--+--+ +----+--+---+ + // ↓ ↓ ↓ ↓ ↓ ↓ ↓ ↓ + // filegroup 3--d-7 ↓ ↓ ↓ ↓ ↓ + // filegroup 5--d-10 ↓ ↓ ↓ ↓ + // filegroup 3----d-----12---w--18 ↓ + // filegroup 5----d--------15--w--20 + metas: []*backuppb.Metadata{ + m_2(1, + 3, 7, stream.DefaultCF, 0, + 5, 10, stream.DefaultCF, 0, + ), + m_2(2, + 12, 18, stream.WriteCF, 3, + 15, 20, stream.WriteCF, 5, + ), + }, + testParams: []*testParam2{ + { + until: []uint64{2}, + shiftUntilTS: returnV(2), restMetadata: []*backuppb.Metadata{ + m_2(1, + 3, 7, stream.DefaultCF, 0, + 5, 10, stream.DefaultCF, 0, + ), + m_2(2, + 12, 18, stream.WriteCF, 3, + 15, 20, stream.WriteCF, 5, + ), + }, + }, { + until: []uint64{3, 4, 5, 6, 7, 8, 10, 11, 12, 13, 14, 15, 16, 18}, + shiftUntilTS: returnV(3), restMetadata: []*backuppb.Metadata{ + m_2(1, + 3, 7, stream.DefaultCF, 0, + 5, 10, stream.DefaultCF, 0, + ), + m_2(2, + 12, 18, stream.WriteCF, 3, + 15, 20, stream.WriteCF, 5, + ), + }, + }, { + until: []uint64{19, 20}, + shiftUntilTS: returnV(5), restMetadata: []*backuppb.Metadata{ + m_2(1, + 3, 7, stream.DefaultCF, 0, + 5, 10, stream.DefaultCF, 0, + ), + m_2(2, + 12, 18, stream.WriteCF, 3, + 15, 20, stream.WriteCF, 5, + ), + }, + }, { + until: []uint64{25}, + shiftUntilTS: returnV(25), restMetadata: []*backuppb.Metadata{}, + }, + }, + }, { + // metadata 2------10 12----------20 + // ↑ ↑ ↑ ↑ + // +-+--+--+ +----+--+---+ + // ↓ ↓ ↓ ↓ ↓ ↓ ↓ ↓ + // filegroup 2--d-6 ↓ ↓ ↓ ↓ ↓ + // filegroup 4--d-10 ↓ ↓ ↓ ↓ + // filegroup 2----d-----12---w--18 ↓ + // filegroup 8---d----15--w--20 + metas: []*backuppb.Metadata{ + m_2(1, + 2, 6, stream.DefaultCF, 0, + 4, 10, stream.DefaultCF, 0, + ), + m_2(2, + 12, 18, stream.WriteCF, 2, + 15, 20, stream.WriteCF, 8, + ), + }, + testParams: []*testParam2{ + { + until: []uint64{1}, + shiftUntilTS: returnV(1), restMetadata: []*backuppb.Metadata{ + m_2(1, + 2, 6, stream.DefaultCF, 0, + 4, 10, stream.DefaultCF, 0, + ), + m_2(2, + 12, 18, stream.WriteCF, 2, + 15, 20, stream.WriteCF, 8, + ), + }, + }, { + until: []uint64{2, 3, 4, 5, 6, 7, 8, 10, 11, 12, 13, 14, 15, 16, 18}, + shiftUntilTS: returnV(2), restMetadata: []*backuppb.Metadata{ + m_2(1, + 2, 6, stream.DefaultCF, 0, + 4, 10, stream.DefaultCF, 0, + ), + m_2(2, + 12, 18, stream.WriteCF, 2, + 15, 20, stream.WriteCF, 8, + ), + }, + }, { + until: []uint64{19, 20}, + shiftUntilTS: returnV(8), restMetadata: []*backuppb.Metadata{ + m_1(1, + 4, 10, stream.DefaultCF, 0, + ), + m_2(2, + 12, 18, stream.WriteCF, 2, + 15, 20, stream.WriteCF, 8, + ), + }, + }, { + until: []uint64{25}, + shiftUntilTS: returnV(25), restMetadata: []*backuppb.Metadata{}, + }, + }, + }, { + // metadata 2------10 14----------20 + // ↑ ↑ ↑ ↑ + // +-+--+--+ +----+--+---+ + // ↓ ↓ ↓ ↓ ↓ ↓ ↓ ↓ + // filegroup 2--d-6 ↓ ↓ ↓ ↓ ↓ + // filegroup 4--d-10 ↓ ↓ ↓ ↓ + // filegroup 2----d-------14---w--18 ↓ + // filegroup 12---d--16--w--20 + metas: []*backuppb.Metadata{ + m_2(1, + 2, 6, stream.DefaultCF, 0, + 4, 10, stream.DefaultCF, 0, + ), + m_2(2, + 14, 18, stream.WriteCF, 2, + 16, 20, stream.WriteCF, 12, + ), + }, + testParams: []*testParam2{ + { + until: []uint64{1}, + shiftUntilTS: returnV(1), restMetadata: []*backuppb.Metadata{ + m_2(1, + 2, 6, stream.DefaultCF, 0, + 4, 10, stream.DefaultCF, 0, + ), + m_2(2, + 14, 18, stream.WriteCF, 2, + 16, 20, stream.WriteCF, 12, + ), + }, + }, { + until: []uint64{2, 3, 4, 5, 6, 7, 8, 10, 11, 12, 13, 14, 15, 16, 18}, + shiftUntilTS: returnV(2), restMetadata: []*backuppb.Metadata{ + m_2(1, + 2, 6, stream.DefaultCF, 0, + 4, 10, stream.DefaultCF, 0, + ), + m_2(2, + 14, 18, stream.WriteCF, 2, + 16, 20, stream.WriteCF, 12, + ), + }, + }, { + until: []uint64{19, 20}, + shiftUntilTS: returnV(12), restMetadata: []*backuppb.Metadata{ + m_2(2, + 14, 18, stream.WriteCF, 2, + 16, 20, stream.WriteCF, 8, + ), + }, + }, { + until: []uint64{25}, + shiftUntilTS: returnV(25), restMetadata: []*backuppb.Metadata{}, + }, + }, + }, { + // metadata 2-------10 14----------20 + // ↑ ↑ ↑ ↑ + // +-+--+---+ +----+--+---+ + // ↓ ↓ ↓ ↓ ↓ ↓ ↓ ↓ + // filegroup 2--d-6 ↓ ↓ ↓ ↓ ↓ + // filegroup 4-d-8w10 ↓ ↓ ↓ ↓ + // filegroup 14--d---18 ↓ + // filegroup 14-d--16-w--20 + metas: []*backuppb.Metadata{ + m_2(1, + 2, 6, stream.DefaultCF, 0, + 8, 10, stream.WriteCF, 4, + ), + m_2(2, + 14, 18, stream.DefaultCF, 0, + 16, 20, stream.WriteCF, 14, + ), + }, + testParams: []*testParam2{ + { + until: []uint64{1}, + shiftUntilTS: returnV(1), restMetadata: []*backuppb.Metadata{ + m_2(1, + 2, 6, stream.DefaultCF, 0, + 8, 10, stream.WriteCF, 4, + ), + m_2(2, + 14, 18, stream.DefaultCF, 0, + 16, 20, stream.WriteCF, 14, + ), + }, + }, { + until: []uint64{2, 3}, + shiftUntilTS: returnSelf(), restMetadata: []*backuppb.Metadata{ + m_2(1, + 2, 6, stream.DefaultCF, 0, + 8, 10, stream.WriteCF, 4, + ), + m_2(2, + 14, 18, stream.DefaultCF, 0, + 16, 20, stream.WriteCF, 14, + ), + }, + }, { + until: []uint64{4, 5, 6, 7, 8, 9, 10}, + shiftUntilTS: returnV(4), restMetadata: []*backuppb.Metadata{ + m_2(1, + 2, 6, stream.DefaultCF, 0, + 8, 10, stream.WriteCF, 4, + ), + m_2(2, + 14, 18, stream.DefaultCF, 0, + 16, 20, stream.WriteCF, 14, + ), + }, + }, { + until: []uint64{12}, + shiftUntilTS: returnV(12), restMetadata: []*backuppb.Metadata{ + m_2(2, + 14, 18, stream.DefaultCF, 0, + 16, 20, stream.WriteCF, 14, + ), + }, + }, { + until: []uint64{14, 15, 16, 17, 18, 19, 20}, + shiftUntilTS: returnV(14), restMetadata: []*backuppb.Metadata{ + m_2(2, + 14, 18, stream.DefaultCF, 0, + 16, 20, stream.WriteCF, 14, + ), + }, + }, { + until: []uint64{25}, + shiftUntilTS: returnV(25), restMetadata: []*backuppb.Metadata{}, + }, + }, + }, { + // metadata 2-------10 14----------22 24-w-26 + // ↑ ↑ ↑ ↑ ↑ ↑ + // +-+--+---+ +----+--+---+ +----+ + // ↓ ↓ ↓ ↓ ↓ ↓ ↓ ↓ ↓ ↓ + // filegroup 2--d-6 ↓ ↓ ↓ ↓ ↓ ↓ ↓ + // filegroup 8d10 ↓ ↓ ↓ ↓ ↓ ↓ + // filegroup 9--d--14--w---18 ↓ ↓ ↓ + // filegroup 16-d--22 ↓ ↓ + // filegroup 20---d-24-w-26 + metas: []*backuppb.Metadata{ + m_2(1, + 2, 6, stream.DefaultCF, 0, + 8, 10, stream.DefaultCF, 0, + ), + m_2(2, + 14, 18, stream.WriteCF, 9, + 16, 22, stream.DefaultCF, 0, + ), + m_1(3, + 24, 26, stream.WriteCF, 20, + ), + }, + testParams: []*testParam2{ + { + until: []uint64{1, 2, 3, 6}, + shiftUntilTS: returnSelf(), restMetadata: []*backuppb.Metadata{ + m_2(1, + 2, 6, stream.DefaultCF, 0, + 8, 10, stream.DefaultCF, 0, + ), + m_2(2, + 14, 18, stream.WriteCF, 9, + 16, 22, stream.DefaultCF, 0, + ), + m_1(3, + 24, 26, stream.WriteCF, 20, + ), + }, + }, { + until: []uint64{7, 8}, + shiftUntilTS: returnSelf(), restMetadata: []*backuppb.Metadata{ + m_1(1, + 8, 10, stream.DefaultCF, 0, + ), + m_2(2, + 14, 18, stream.WriteCF, 9, + 16, 22, stream.DefaultCF, 0, + ), + m_1(3, + 24, 26, stream.WriteCF, 20, + ), + }, + }, { + until: []uint64{9, 10, 11, 14, 15, 16, 17, 18}, + shiftUntilTS: returnV(9), restMetadata: []*backuppb.Metadata{ + m_1(1, + 8, 10, stream.DefaultCF, 0, + ), + m_2(2, + 14, 18, stream.WriteCF, 9, + 16, 22, stream.DefaultCF, 0, + ), + m_1(3, + 24, 26, stream.WriteCF, 20, + ), + }, + }, { + until: []uint64{19}, + shiftUntilTS: returnV(19), restMetadata: []*backuppb.Metadata{ + m_1(2, + 16, 22, stream.DefaultCF, 0, + ), + m_1(3, + 24, 26, stream.WriteCF, 20, + ), + }, + }, { + until: []uint64{20, 21, 22, 23, 24, 25, 26}, + shiftUntilTS: returnV(20), restMetadata: []*backuppb.Metadata{ + m_1(2, + 16, 22, stream.DefaultCF, 0, + ), + m_1(3, + 24, 26, stream.WriteCF, 20, + ), + }, + }, { + until: []uint64{28}, + shiftUntilTS: returnV(28), restMetadata: []*backuppb.Metadata{}, + }, + }, + }, + } + + for i, cs := range cases { + for j, ts := range cs.testParams { + for _, until := range ts.until { + t.Logf("case %d, param %d, until %d", i, j, until) + metas := restore.StreamMetadataSet{ + Helper: stream.NewMetadataHelper(), + } + err := generateFiles(ctx, s, cs.metas, tmpDir) + require.NoError(t, err) + shiftUntilTS, err := metas.LoadUntilAndCalculateShiftTS(ctx, s, until) + require.NoError(t, err) + require.Equal(t, shiftUntilTS, ts.shiftUntilTS(until)) + n, err := metas.RemoveDataFilesAndUpdateMetadataInBatch(ctx, shiftUntilTS, s, func(num int64) {}) + require.Equal(t, len(n), 0) + require.NoError(t, err) + + // check the result + checkFiles(ctx, s, ts.restMetadata, t) + } + } + } +} + +type testParam3 struct { + until []uint64 + shiftUntilTS func(uint64) uint64 +} + +func fi(minTS, maxTS uint64, cf string, defaultTS uint64) *backuppb.DataFileInfo { + return &backuppb.DataFileInfo{ + NumberOfEntries: 1, + MinTs: minTS, + MaxTs: maxTS, + Cf: cf, + MinBeginTsInDefaultCf: defaultTS, + } +} + +func getTsFromFiles(files []*backuppb.DataFileInfo) (uint64, uint64, uint64) { + if len(files) == 0 { + return 0, 0, 0 + } + f := files[0] + minTs, maxTs, resolvedTs := f.MinTs, f.MaxTs, f.ResolvedTs + for _, file := range files { + if file.MinTs < minTs { + minTs = file.MinTs + } + if file.MaxTs > maxTs { + maxTs = file.MaxTs + } + if file.ResolvedTs < resolvedTs { + resolvedTs = file.ResolvedTs + } + } + return minTs, maxTs, resolvedTs +} + +func mf(id int64, filess [][]*backuppb.DataFileInfo) *backuppb.Metadata { + filegroups := make([]*backuppb.DataFileGroup, 0) + for _, files := range filess { + minTs, maxTs, resolvedTs := getTsFromFiles(files) + filegroups = append(filegroups, &backuppb.DataFileGroup{ + DataFilesInfo: files, + MinTs: minTs, + MaxTs: maxTs, + MinResolvedTs: resolvedTs, + }) + } + + m := &backuppb.Metadata{ + StoreId: id, + MetaVersion: backuppb.MetaVersion_V2, + } + restore.ReplaceMetadata(m, filegroups) + return m +} + func TestCalculateShiftTS(t *testing.T) { - var ( - startTs uint64 = 2900 - restoreTS uint64 = 4500 - ) - - helper := stream.NewMetadataHelper() - ms := fakeMetaDatas(t, helper, stream.WriteCF) - shiftTS, exist := restore.CalculateShiftTS(ms, startTs, restoreTS) - require.Equal(t, shiftTS, uint64(2000)) - require.Equal(t, exist, true) - - shiftTS, exist = restore.CalculateShiftTS(ms, startTs, mathutil.MaxUint) - require.Equal(t, shiftTS, uint64(1800)) - require.Equal(t, exist, true) - - shiftTS, exist = restore.CalculateShiftTS(ms, 1999, 3001) - require.Equal(t, shiftTS, uint64(800)) - require.Equal(t, exist, true) - - ms = fakeMetaDatas(t, helper, stream.DefaultCF) - _, exist = restore.CalculateShiftTS(ms, startTs, restoreTS) - require.Equal(t, exist, false) -} - -func TestCalculateShiftTSV2(t *testing.T) { - var ( - startTs uint64 = 2900 - restoreTS uint64 = 5100 - ) - - helper := stream.NewMetadataHelper() - ms := fakeMetaDataV2s(t, helper, stream.WriteCF) - shiftTS, exist := restore.CalculateShiftTS(ms, startTs, restoreTS) - require.Equal(t, shiftTS, uint64(1800)) - require.Equal(t, exist, true) - - shiftTS, exist = restore.CalculateShiftTS(ms, startTs, mathutil.MaxUint) - require.Equal(t, shiftTS, uint64(1700)) - require.Equal(t, exist, true) - - shiftTS, exist = restore.CalculateShiftTS(ms, 1999, 3001) - require.Equal(t, shiftTS, uint64(800)) - require.Equal(t, exist, true) - - ms = fakeMetaDataV2s(t, helper, stream.DefaultCF) - _, exist = restore.CalculateShiftTS(ms, startTs, restoreTS) - require.Equal(t, exist, false) + ctx := context.Background() + tmpDir := t.TempDir() + s, err := storage.NewLocalStorage(tmpDir) + require.NoError(t, err) + + cases := []struct { + metas []*backuppb.Metadata + testParams []*testParam3 + }{ + { + // filegroup 10 35 + // ↑ ↑ + // +----+-++---+ + // ↓ ↓ ↓↓ ↓ + // fileinfo 10-d-20 + // fileinfo 8--d-15--w-30 + // fileinfo 11-d-25-w-35 + metas: []*backuppb.Metadata{ + mf(1, [][]*backuppb.DataFileInfo{ + { + fi(10, 20, stream.DefaultCF, 0), + fi(15, 30, stream.WriteCF, 8), + fi(25, 35, stream.WriteCF, 11), + }, + }), + }, + testParams: []*testParam3{ + { + until: []uint64{3}, + shiftUntilTS: returnV(3), + }, { + until: []uint64{8, 9, 10, 11, 12, 15, 16, 20, 21, 25, 26, 30}, + shiftUntilTS: returnV(8), + }, { + until: []uint64{31, 35}, + shiftUntilTS: returnV(11), + }, { + until: []uint64{36}, + shiftUntilTS: returnV(36), + }, + }, + }, { + // filegroup 50 85 + // ↑ ↑ + // +-+-+--+--+------+ + // ↓ ↓ ↓ ↓ ↓ ↓ + // fileinfo 55-d-65-70 + // fileinfo 50-d60 + // fileinfo 72d80w85 + metas: []*backuppb.Metadata{ + mf(1, [][]*backuppb.DataFileInfo{ + { + fi(65, 70, stream.WriteCF, 55), + fi(50, 60, stream.DefaultCF, 0), + fi(80, 85, stream.WriteCF, 72), + }, + }), + }, + testParams: []*testParam3{ + { + until: []uint64{45, 50, 52}, + shiftUntilTS: returnSelf(), + }, { + until: []uint64{55, 56, 60, 61, 65, 66, 70}, + shiftUntilTS: returnV(55), + }, { + until: []uint64{71}, + shiftUntilTS: returnV(71), + }, { + until: []uint64{72, 73, 80, 81, 85}, + shiftUntilTS: returnV(72), + }, { + until: []uint64{86}, + shiftUntilTS: returnV(86), + }, + }, + }, { + // filegroup 10 35 50 85 + // ↑ ↑ ↑ ↑ + // +----+-++---+ +-+-+--+--+------+ + // ↓ ↓ ↓↓ ↓ ↓ ↓ ↓ ↓ ↓ ↓ + // fileinfo 10-d-20 55-d-65-70 + // fileinfo 8--d-15--w-30 50-d60 + // fileinfo 11-d-25-w-35 72d80w85 + metas: []*backuppb.Metadata{ + mf(1, [][]*backuppb.DataFileInfo{ + { + fi(10, 20, stream.DefaultCF, 0), + fi(15, 30, stream.WriteCF, 8), + fi(25, 35, stream.WriteCF, 11), + }, + }), + mf(2, [][]*backuppb.DataFileInfo{ + { + fi(65, 70, stream.WriteCF, 55), + fi(50, 60, stream.DefaultCF, 0), + fi(80, 85, stream.WriteCF, 72), + }, + }), + }, + testParams: []*testParam3{ + { + until: []uint64{3}, + shiftUntilTS: returnV(3), + }, { + until: []uint64{8, 9, 10, 11, 12, 15, 16, 20, 21, 25, 26, 30}, + shiftUntilTS: returnV(8), + }, { + until: []uint64{31, 35}, + shiftUntilTS: returnV(11), + }, { + until: []uint64{36}, + shiftUntilTS: returnV(36), + }, { + until: []uint64{45, 50, 52}, + shiftUntilTS: returnSelf(), + }, { + until: []uint64{55, 56, 60, 61, 65, 66, 70}, + shiftUntilTS: returnV(55), + }, { + until: []uint64{71}, + shiftUntilTS: returnV(71), + }, { + until: []uint64{72, 73, 80, 81, 85}, + shiftUntilTS: returnV(72), + }, { + until: []uint64{86}, + shiftUntilTS: returnV(86), + }, + }, + }, + } + + for i, cs := range cases { + for j, ts := range cs.testParams { + for _, until := range ts.until { + t.Logf("case %d, param %d, until %d", i, j, until) + metas := restore.StreamMetadataSet{ + Helper: stream.NewMetadataHelper(), + } + err := generateFiles(ctx, s, cs.metas, tmpDir) + require.NoError(t, err) + shiftUntilTS, err := metas.LoadUntilAndCalculateShiftTS(ctx, s, until) + require.NoError(t, err) + require.Equal(t, shiftUntilTS, ts.shiftUntilTS(until), cs.metas) + } + } + } } diff --git a/br/pkg/rtree/main_test.go b/br/pkg/rtree/main_test.go index 6c415ec6e7593..dc57d20e599d0 100644 --- a/br/pkg/rtree/main_test.go +++ b/br/pkg/rtree/main_test.go @@ -25,6 +25,7 @@ func TestMain(m *testing.M) { testsetup.SetupForCommonTest() opts := []goleak.Option{ goleak.IgnoreTopFunction("github.com/golang/glog.(*loggingT).flushDaemon"), + goleak.IgnoreTopFunction("github.com/lestrrat-go/httprc.runFetchWorker"), goleak.IgnoreTopFunction("go.etcd.io/etcd/client/pkg/v3/logutil.(*MergeLogger).outputLoop"), goleak.IgnoreTopFunction("go.opencensus.io/stats/view.(*worker).start"), } diff --git a/br/pkg/storage/BUILD.bazel b/br/pkg/storage/BUILD.bazel index e7773cb35c149..c67a17713b2ca 100644 --- a/br/pkg/storage/BUILD.bazel +++ b/br/pkg/storage/BUILD.bazel @@ -37,7 +37,9 @@ go_library( "@com_github_aws_aws_sdk_go//service/s3/s3manager", "@com_github_azure_azure_sdk_for_go_sdk_azidentity//:azidentity", "@com_github_azure_azure_sdk_for_go_sdk_storage_azblob//:azblob", + "@com_github_golang_snappy//:snappy", "@com_github_google_uuid//:uuid", + "@com_github_klauspost_compress//zstd", "@com_github_pingcap_errors//:errors", "@com_github_pingcap_kvproto//pkg/brpb", "@com_github_pingcap_log//:log", diff --git a/br/pkg/storage/compress.go b/br/pkg/storage/compress.go index 96258221d9b62..1d5300cfa8d55 100644 --- a/br/pkg/storage/compress.go +++ b/br/pkg/storage/compress.go @@ -81,7 +81,8 @@ func (w *withCompression) ReadFile(ctx context.Context, name string) ([]byte, er } type compressReader struct { - io.ReadCloser + io.Reader + io.Closer } // nolint:interfacer @@ -94,7 +95,8 @@ func newInterceptReader(fileReader ExternalFileReader, compressType CompressType return nil, errors.Trace(err) } return &compressReader{ - ReadCloser: r, + Reader: r, + Closer: fileReader, }, nil } @@ -102,6 +104,11 @@ func (*compressReader) Seek(_ int64, _ int) (int64, error) { return int64(0), errors.Annotatef(berrors.ErrStorageInvalidConfig, "compressReader doesn't support Seek now") } +func (c *compressReader) Close() error { + err := c.Closer.Close() + return err +} + type flushStorageWriter struct { writer io.Writer flusher flusher diff --git a/br/pkg/storage/writer.go b/br/pkg/storage/writer.go index 455cc9c3c3411..f61d30fa530d9 100644 --- a/br/pkg/storage/writer.go +++ b/br/pkg/storage/writer.go @@ -6,7 +6,11 @@ import ( "context" "io" + "github.com/golang/snappy" + "github.com/klauspost/compress/zstd" "github.com/pingcap/errors" + "github.com/pingcap/log" + "go.uber.org/zap" ) // CompressType represents the type of compression. @@ -17,6 +21,10 @@ const ( NoCompression CompressType = iota // Gzip will compress given bytes in gzip format. Gzip + // Snappy will compress given bytes in snappy format. + Snappy + // Zstd will compress given bytes in zstd format. + Zstd ) type flusher interface { @@ -39,6 +47,21 @@ type interceptBuffer interface { Compressed() bool } +func createSuffixString(compressType CompressType) string { + txtSuffix := ".txt" + switch compressType { + case Gzip: + txtSuffix += ".gz" + case Snappy: + txtSuffix += ".snappy" + case Zstd: + txtSuffix += ".zst" + default: + return "" + } + return txtSuffix +} + func newInterceptBuffer(chunkSize int, compressType CompressType) interceptBuffer { if compressType == NoCompression { return newNoCompressionBuffer(chunkSize) @@ -50,15 +73,27 @@ func newCompressWriter(compressType CompressType, w io.Writer) simpleCompressWri switch compressType { case Gzip: return gzip.NewWriter(w) + case Snappy: + return snappy.NewBufferedWriter(w) + case Zstd: + newWriter, err := zstd.NewWriter(w) + if err != nil { + log.Warn("Met error when creating new writer for Zstd type file", zap.Error(err)) + } + return newWriter default: return nil } } -func newCompressReader(compressType CompressType, r io.Reader) (io.ReadCloser, error) { +func newCompressReader(compressType CompressType, r io.Reader) (io.Reader, error) { switch compressType { case Gzip: return gzip.NewReader(r) + case Snappy: + return snappy.NewReader(r), nil + case Zstd: + return zstd.NewReader(r) default: return nil, nil } diff --git a/br/pkg/storage/writer_test.go b/br/pkg/storage/writer_test.go index c3d4080123f4f..22fa87d34de47 100644 --- a/br/pkg/storage/writer_test.go +++ b/br/pkg/storage/writer_test.go @@ -102,8 +102,9 @@ func TestCompressReaderWriter(t *testing.T) { ctx := context.Background() storage, err := Create(ctx, backend, true) require.NoError(t, err) - storage = WithCompression(storage, Gzip) - fileName := strings.ReplaceAll(test.name, " ", "-") + ".txt.gz" + storage = WithCompression(storage, test.compressType) + suffix := createSuffixString(test.compressType) + fileName := strings.ReplaceAll(test.name, " ", "-") + suffix writer, err := storage.Create(ctx, fileName) require.NoError(t, err) for _, str := range test.content { @@ -124,7 +125,6 @@ func TestCompressReaderWriter(t *testing.T) { _, err = bf.ReadFrom(r) require.NoError(t, err) require.Equal(t, strings.Join(test.content, ""), bf.String()) - require.Nil(t, r.Close()) // test withCompression Open r, err = storage.Open(ctx, fileName) @@ -135,7 +135,8 @@ func TestCompressReaderWriter(t *testing.T) { require.Nil(t, file.Close()) } - compressTypeArr := []CompressType{Gzip} + compressTypeArr := []CompressType{Gzip, Snappy, Zstd} + tests := []testcase{ { name: "long text medium chunks", diff --git a/br/pkg/streamhelper/client.go b/br/pkg/streamhelper/client.go index 2e27bf97a399e..4b52f590dce21 100644 --- a/br/pkg/streamhelper/client.go +++ b/br/pkg/streamhelper/client.go @@ -404,13 +404,22 @@ func (t *Task) GetGlobalCheckPointTS(ctx context.Context) (uint64, error) { initialized := false checkpoint := t.Info.StartTs for _, cp := range checkPointMap { - if !initialized || cp.TS < checkpoint { + if cp.Type() == CheckpointTypeGlobal { + return cp.TS, nil + } + + if cp.Type() == CheckpointTypeStore && (!initialized || cp.TS < checkpoint) { initialized = true checkpoint = cp.TS } } - return checkpoint, nil + ts, err := t.GetStorageCheckpoint(ctx) + if err != nil { + return 0, errors.Trace(err) + } + + return mathutil.Max(checkpoint, ts), nil } // Step forwards the progress (next_backup_ts) of some region. diff --git a/br/pkg/streamhelper/integration_test.go b/br/pkg/streamhelper/integration_test.go index 8485bac19ce0f..b3baf433c43f6 100644 --- a/br/pkg/streamhelper/integration_test.go +++ b/br/pkg/streamhelper/integration_test.go @@ -13,6 +13,7 @@ import ( "testing" "github.com/pingcap/errors" + backup "github.com/pingcap/kvproto/pkg/brpb" "github.com/pingcap/log" berrors "github.com/pingcap/tidb/br/pkg/errors" "github.com/pingcap/tidb/br/pkg/logutil" @@ -138,7 +139,8 @@ func TestIntegration(t *testing.T) { metaCli := streamhelper.MetaDataClient{Client: cli} t.Run("TestBasic", func(t *testing.T) { testBasic(t, metaCli, etcd) }) t.Run("TestForwardProgress", func(t *testing.T) { testForwardProgress(t, metaCli, etcd) }) - t.Run("testGetStorageCheckpoint", func(t *testing.T) { testGetStorageCheckpoint(t, metaCli, etcd) }) + t.Run("testGetStorageCheckpoint", func(t *testing.T) { testGetStorageCheckpoint(t, metaCli) }) + t.Run("testGetGlobalCheckPointTS", func(t *testing.T) { testGetGlobalCheckPointTS(t, metaCli) }) t.Run("TestStreamListening", func(t *testing.T) { testStreamListening(t, streamhelper.AdvancerExt{MetaDataClient: metaCli}) }) t.Run("TestStreamCheckpoint", func(t *testing.T) { testStreamCheckpoint(t, streamhelper.AdvancerExt{MetaDataClient: metaCli}) }) } @@ -233,7 +235,7 @@ func testForwardProgress(t *testing.T, metaCli streamhelper.MetaDataClient, etcd require.Equal(t, store2Checkpoint, uint64(40)) } -func testGetStorageCheckpoint(t *testing.T, metaCli streamhelper.MetaDataClient, etcd *embed.Etcd) { +func testGetStorageCheckpoint(t *testing.T, metaCli streamhelper.MetaDataClient) { var ( taskName = "my_task" ctx = context.Background() @@ -264,6 +266,44 @@ func testGetStorageCheckpoint(t *testing.T, metaCli streamhelper.MetaDataClient, ts, err := task.GetStorageCheckpoint(ctx) require.NoError(t, err) require.Equal(t, uint64(10002), ts) + + ts, err = task.GetGlobalCheckPointTS(ctx) + require.NoError(t, err) + require.Equal(t, uint64(10002), ts) +} + +func testGetGlobalCheckPointTS(t *testing.T, metaCli streamhelper.MetaDataClient) { + var ( + taskName = "my_task" + ctx = context.Background() + value = make([]byte, 8) + ) + + cases := []struct { + storeID string + storageCheckPoint uint64 + }{ + { + "1", + 10001, + }, { + "2", + 10002, + }, + } + for _, c := range cases { + key := path.Join(streamhelper.StorageCheckpointOf(taskName), c.storeID) + binary.BigEndian.PutUint64(value, c.storageCheckPoint) + _, err := metaCli.Put(ctx, key, string(value)) + require.NoError(t, err) + } + + task := streamhelper.NewTask(&metaCli, backup.StreamBackupTaskInfo{Name: taskName}) + task.UploadGlobalCheckpoint(ctx, 1003) + + globalTS, err := task.GetGlobalCheckPointTS(ctx) + require.NoError(t, err) + require.Equal(t, globalTS, uint64(1003)) } func testStreamListening(t *testing.T, metaCli streamhelper.AdvancerExt) { diff --git a/br/pkg/summary/main_test.go b/br/pkg/summary/main_test.go index 48d22e0e5ea11..e167e079b78ff 100644 --- a/br/pkg/summary/main_test.go +++ b/br/pkg/summary/main_test.go @@ -25,6 +25,7 @@ func TestMain(m *testing.M) { testsetup.SetupForCommonTest() opts := []goleak.Option{ goleak.IgnoreTopFunction("github.com/golang/glog.(*loggingT).flushDaemon"), + goleak.IgnoreTopFunction("github.com/lestrrat-go/httprc.runFetchWorker"), goleak.IgnoreTopFunction("go.etcd.io/etcd/client/pkg/v3/logutil.(*MergeLogger).outputLoop"), goleak.IgnoreTopFunction("go.opencensus.io/stats/view.(*worker).start"), } diff --git a/br/pkg/task/BUILD.bazel b/br/pkg/task/BUILD.bazel index a1703ac98a2ff..979afd1ba9110 100644 --- a/br/pkg/task/BUILD.bazel +++ b/br/pkg/task/BUILD.bazel @@ -96,6 +96,7 @@ go_test( flaky = True, deps = [ "//br/pkg/conn", + "//br/pkg/errors", "//br/pkg/metautil", "//br/pkg/restore", "//br/pkg/storage", diff --git a/br/pkg/task/backup.go b/br/pkg/task/backup.go index 6654409c46a6a..8b3a03c9a8719 100644 --- a/br/pkg/task/backup.go +++ b/br/pkg/task/backup.go @@ -329,7 +329,7 @@ func RunBackup(c context.Context, g glue.Glue, cmdName string, cfg *BackupConfig SendCredentials: cfg.SendCreds, CheckS3ObjectLockOptions: true, } - if err = client.SetStorage(ctx, u, &opts); err != nil { + if err = client.SetStorageAndCheckNotInUse(ctx, u, &opts); err != nil { return errors.Trace(err) } err = client.SetLockFile(ctx) diff --git a/br/pkg/task/backup_ebs.go b/br/pkg/task/backup_ebs.go index ec836fa83722c..5d9a262d7cce6 100644 --- a/br/pkg/task/backup_ebs.go +++ b/br/pkg/task/backup_ebs.go @@ -120,7 +120,7 @@ func RunBackupEBS(c context.Context, g glue.Glue, cfg *BackupConfig) error { NoCredentials: cfg.NoCreds, SendCredentials: cfg.SendCreds, } - if err = client.SetStorage(ctx, backend, &opts); err != nil { + if err = client.SetStorageAndCheckNotInUse(ctx, backend, &opts); err != nil { return errors.Trace(err) } err = client.SetLockFile(ctx) @@ -186,7 +186,7 @@ func RunBackupEBS(c context.Context, g glue.Glue, cfg *BackupConfig) error { // Step.2 starts call ebs snapshot api to back up volume data. // NOTE: we should start snapshot in specify order. - progress := g.StartProgress(ctx, "backup", int64(storeCount), !cfg.LogProgress) + progress := g.StartProgress(ctx, "backup", int64(storeCount)*100, !cfg.LogProgress) go progressFileWriterRoutine(ctx, progress, int64(storeCount)*100, cfg.ProgressFile) ec2Session, err := aws.NewEC2Session(cfg.CloudAPIConcurrency) diff --git a/br/pkg/task/backup_raw.go b/br/pkg/task/backup_raw.go index 8a3ca2b17b622..9d46c151d23c7 100644 --- a/br/pkg/task/backup_raw.go +++ b/br/pkg/task/backup_raw.go @@ -153,7 +153,7 @@ func RunBackupRaw(c context.Context, g glue.Glue, cmdName string, cfg *RawKvConf SendCredentials: cfg.SendCreds, CheckS3ObjectLockOptions: true, } - if err = client.SetStorage(ctx, u, &opts); err != nil { + if err = client.SetStorageAndCheckNotInUse(ctx, u, &opts); err != nil { return errors.Trace(err) } diff --git a/br/pkg/task/restore.go b/br/pkg/task/restore.go index 7dcdc1274413a..cf1ce4682a09f 100644 --- a/br/pkg/task/restore.go +++ b/br/pkg/task/restore.go @@ -550,6 +550,7 @@ func RunRestore(c context.Context, g glue.Glue, cmdName string, cfg *RestoreConf if len(dbs) == 0 && len(tables) != 0 { return errors.Annotate(berrors.ErrRestoreInvalidBackup, "contain tables but no databases") } + archiveSize := reader.ArchiveSize(ctx, files) g.Record(summary.RestoreDataSize, archiveSize) //restore from tidb will fetch a general Size issue https://github.com/pingcap/tidb/issues/27247 @@ -652,6 +653,7 @@ func RunRestore(c context.Context, g glue.Glue, cmdName string, cfg *RestoreConf // We make bigger errCh so we won't block on multi-part failed. errCh := make(chan error, 32) + tableStream := client.GoCreateTables(ctx, mgr.GetDomain(), tables, newTS, errCh) if len(files) == 0 { log.Info("no files, empty databases and tables are restored") diff --git a/br/pkg/task/restore_data.go b/br/pkg/task/restore_data.go index 27b038110f5bb..f8e286dd0e72b 100644 --- a/br/pkg/task/restore_data.go +++ b/br/pkg/task/restore_data.go @@ -51,17 +51,17 @@ func RunResolveKvData(c context.Context, g glue.Glue, cmdName string, cfg *Resto } // read the backup meta resolved ts and total tikvs from backup storage - var resolveTs uint64 + var resolveTS uint64 _, externStorage, err := GetStorage(ctx, cfg.Config.Storage, &cfg.Config) if err != nil { return errors.Trace(err) } - resolveTs, numBackupStore, err := ReadBackupMetaData(ctx, externStorage) + resolveTS, numBackupStore, err := ReadBackupMetaData(ctx, externStorage) if err != nil { return errors.Trace(err) } - summary.CollectUint("resolve-ts", resolveTs) + summary.CollectUint("resolve-ts", resolveTS) keepaliveCfg := GetKeepalive(&cfg.Config) mgr, err := NewMgr(ctx, g, cfg.PD, cfg.TLS, keepaliveCfg, cfg.CheckRequirements, false, conn.NormalVersionChecker) @@ -85,6 +85,8 @@ func RunResolveKvData(c context.Context, g glue.Glue, cmdName string, cfg *Resto ID: utils.MakeSafePointID(), } + // TODO: since data restore does not have tidb up, it looks we can remove this keeper + // it requires to do more test, then remove this part of code. err = utils.StartServiceSafePointKeeper(ctx, mgr.GetPDClient(), sp) if err != nil { return errors.Trace(err) @@ -131,14 +133,14 @@ func RunResolveKvData(c context.Context, g glue.Glue, cmdName string, cfg *Resto } log.Debug("total tikv", zap.Int("total", numBackupStore), zap.String("progress file", cfg.ProgressFile)) - // progress = read meta + send recovery + iterate tikv + resolve kv data. + // progress = read meta + send recovery + iterate tikv + flashback. progress := g.StartProgress(ctx, cmdName, int64(numBackupStore*4), !cfg.LogProgress) go progressFileWriterRoutine(ctx, progress, int64(numBackupStore*4), cfg.ProgressFile) // restore tikv data from a snapshot volume var totalRegions int - totalRegions, err = restore.RecoverData(ctx, resolveTs, allStores, mgr, progress) + totalRegions, err = restore.RecoverData(ctx, resolveTS, allStores, mgr, progress, restoreTS, cfg.Concurrency) if err != nil { return errors.Trace(err) } diff --git a/br/pkg/task/stream.go b/br/pkg/task/stream.go index 9a1a06eff9693..a259452b14b2d 100644 --- a/br/pkg/task/stream.go +++ b/br/pkg/task/stream.go @@ -307,6 +307,11 @@ func NewStreamMgr(ctx context.Context, cfg *StreamConfig, g glue.Glue, isStreamS mgr: mgr, } if isStreamStart { + client, err := backup.NewBackupClient(ctx, mgr) + if err != nil { + return nil, errors.Trace(err) + } + backend, err := storage.ParseBackend(cfg.Storage, &cfg.BackendOptions) if err != nil { return nil, errors.Trace(err) @@ -316,11 +321,6 @@ func NewStreamMgr(ctx context.Context, cfg *StreamConfig, g glue.Glue, isStreamS NoCredentials: cfg.NoCreds, SendCredentials: cfg.SendCreds, } - client, err := backup.NewBackupClient(ctx, mgr) - if err != nil { - return nil, errors.Trace(err) - } - if err = client.SetStorage(ctx, backend, &opts); err != nil { return nil, errors.Trace(err) } @@ -336,6 +336,10 @@ func (s *streamMgr) close() { s.mgr.Close() } +func (s *streamMgr) checkLock(ctx context.Context) (bool, error) { + return s.bc.GetStorage().FileExists(ctx, metautil.LockFile) +} + func (s *streamMgr) setLock(ctx context.Context) error { return s.bc.SetLockFile(ctx) } @@ -352,7 +356,7 @@ func (s *streamMgr) adjustAndCheckStartTS(ctx context.Context) error { s.cfg.StartTS = currentTS } - if currentTS < s.cfg.StartTS || s.cfg.EndTS <= currentTS { + if currentTS < s.cfg.StartTS { return errors.Annotatef(berrors.ErrInvalidArgument, "invalid timestamps, startTS %d should be smaller than currentTS %d", s.cfg.StartTS, currentTS) @@ -435,6 +439,28 @@ func (s *streamMgr) backupFullSchemas(ctx context.Context, g glue.Glue) error { return nil } +func (s *streamMgr) checkStreamStartEnable(g glue.Glue) error { + se, err := g.CreateSession(s.mgr.GetStorage()) + if err != nil { + return errors.Trace(err) + } + execCtx := se.GetSessionCtx().(sqlexec.RestrictedSQLExecutor) + supportStream, err := utils.IsLogBackupEnabled(execCtx) + if err != nil { + return errors.Trace(err) + } + if !supportStream { + return errors.New("Unable to create task about log-backup. " + + "please set TiKV config `log-backup.enable` to true and restart TiKVs.") + } + if !ddl.IngestJobsNotExisted(se.GetSessionCtx()) { + return errors.Annotate(berrors.ErrUnknown, + "Unable to create log backup task. Please wait until the DDL jobs(add index with ingest method) are finished.") + } + + return nil +} + // RunStreamCommand run all kinds of `stream task` func RunStreamCommand( ctx context.Context, @@ -485,38 +511,13 @@ func RunStreamStart( } defer streamMgr.close() - se, err := g.CreateSession(streamMgr.mgr.GetStorage()) - if err != nil { + if err = streamMgr.checkStreamStartEnable(g); err != nil { return errors.Trace(err) } - execCtx := se.GetSessionCtx().(sqlexec.RestrictedSQLExecutor) - supportStream, err := utils.IsLogBackupEnabled(execCtx) - if err != nil { - return errors.Trace(err) - } - if !supportStream { - return errors.New("Unable to create task about log-backup. " + - "please set TiKV config `log-backup.enable` to true and restart TiKVs.") - } - if !ddl.IngestJobsNotExisted(se.GetSessionCtx()) { - return errors.Annotate(berrors.ErrUnknown, "Unable to create log backup task. Please wait until the DDL jobs(add index with ingest method) are finished.") - } - if err = streamMgr.adjustAndCheckStartTS(ctx); err != nil { return errors.Trace(err) } - if err = streamMgr.setGCSafePoint( - ctx, - utils.BRServiceSafePoint{ - ID: utils.MakeSafePointID(), - TTL: cfg.SafePointTTL, - BackupTS: cfg.StartTS, - }, - ); err != nil { - return errors.Trace(err) - } - cli := streamhelper.NewMetaDataClient(streamMgr.mgr.GetDomain().GetEtcdClient()) // It supports single stream log task currently. if count, err := cli.GetTaskCount(ctx); err != nil { @@ -525,12 +526,50 @@ func RunStreamStart( return errors.Annotate(berrors.ErrStreamLogTaskExist, "It supports single stream log task currently") } - if err = streamMgr.setLock(ctx); err != nil { + exist, err := streamMgr.checkLock(ctx) + if err != nil { return errors.Trace(err) } + // exist is true, which represents restart a stream task. Or create a new stream task. + if exist { + logInfo, err := getLogRange(ctx, &cfg.Config) + if err != nil { + return errors.Trace(err) + } + if logInfo.clusterID > 0 && logInfo.clusterID != streamMgr.bc.GetClusterID() { + return errors.Annotatef(berrors.ErrInvalidArgument, + "the stream log files from cluster ID:%v and current cluster ID:%v ", + logInfo.clusterID, streamMgr.bc.GetClusterID()) + } - if err = streamMgr.backupFullSchemas(ctx, g); err != nil { - return errors.Trace(err) + cfg.StartTS = logInfo.logMaxTS + if err = streamMgr.setGCSafePoint( + ctx, + utils.BRServiceSafePoint{ + ID: utils.MakeSafePointID(), + TTL: cfg.SafePointTTL, + BackupTS: cfg.StartTS, + }, + ); err != nil { + return errors.Trace(err) + } + } else { + if err = streamMgr.setGCSafePoint( + ctx, + utils.BRServiceSafePoint{ + ID: utils.MakeSafePointID(), + TTL: cfg.SafePointTTL, + BackupTS: cfg.StartTS, + }, + ); err != nil { + return errors.Trace(err) + } + if err = streamMgr.setLock(ctx); err != nil { + return errors.Trace(err) + } + if err = streamMgr.backupFullSchemas(ctx, g); err != nil { + return errors.Trace(err) + } } ranges, err := streamMgr.buildObserveRanges(ctx) @@ -556,7 +595,6 @@ func RunStreamStart( Ranges: ranges, Pausing: false, } - if err = cli.PutTask(ctx, ti); err != nil { return errors.Trace(err) } @@ -636,7 +674,7 @@ func RunStreamStop( if err := streamMgr.setGCSafePoint(ctx, utils.BRServiceSafePoint{ ID: buildPauseSafePointName(ti.Info.Name), - TTL: 0, + TTL: utils.DefaultStreamStartSafePointTTL, BackupTS: 0, }, ); err != nil { @@ -690,7 +728,7 @@ func RunStreamPause( utils.BRServiceSafePoint{ ID: buildPauseSafePointName(ti.Info.Name), TTL: cfg.SafePointTTL, - BackupTS: globalCheckPointTS - 1, + BackupTS: globalCheckPointTS, }, ); err != nil { return errors.Trace(err) @@ -763,7 +801,7 @@ func RunStreamResume( if err := streamMgr.setGCSafePoint(ctx, utils.BRServiceSafePoint{ ID: buildPauseSafePointName(ti.Info.Name), - TTL: 0, + TTL: utils.DefaultStreamStartSafePointTTL, BackupTS: globalCheckPointTS, }, ); err != nil { @@ -896,31 +934,24 @@ func RunStreamTruncate(c context.Context, g glue.Glue, cmdName string, cfg *Stre readMetaDone := console.ShowTask("Reading Metadata... ", glue.WithTimeCost()) metas := restore.StreamMetadataSet{ Helper: stream.NewMetadataHelper(), - BeforeDoWriteBack: func(path string, last, current *backuppb.Metadata) (skip bool) { - log.Info("Updating metadata.", zap.String("file", path), - zap.Int("data-file-before", len(last.GetFileGroups())), - zap.Int("data-file-after", len(current.GetFileGroups()))) - return cfg.DryRun - }, + DryRun: cfg.DryRun, } - if err := metas.LoadUntil(ctx, storage, cfg.Until); err != nil { + shiftUntilTS, err := metas.LoadUntilAndCalculateShiftTS(ctx, storage, cfg.Until) + if err != nil { return err } readMetaDone() var ( - fileCount uint64 = 0 - kvCount int64 = 0 - totalSize uint64 = 0 - shiftUntilTS = metas.CalculateShiftTS(cfg.Until) + fileCount int = 0 + kvCount int64 = 0 + totalSize uint64 = 0 ) - metas.IterateFilesFullyBefore(shiftUntilTS, func(d *backuppb.DataFileGroup) (shouldBreak bool) { + metas.IterateFilesFullyBefore(shiftUntilTS, func(d *restore.FileGroupInfo) (shouldBreak bool) { fileCount++ totalSize += d.Length - for _, f := range d.DataFilesInfo { - kvCount += f.NumberOfEntries - } + kvCount += d.KVCount return }) console.Printf("We are going to remove %s files, until %s.\n", @@ -938,40 +969,38 @@ func RunStreamTruncate(c context.Context, g glue.Glue, cmdName string, cfg *Stre } } - removed := metas.RemoveDataBefore(shiftUntilTS) - - // remove log - clearDataFileDone := console.ShowTask( - "Clearing data files... ", glue.WithTimeCost(), + // begin to remove + p := console.StartProgressBar( + "Clearing Data Files and Metadata", fileCount, + glue.WithTimeCost(), glue.WithConstExtraField("kv-count", kvCount), glue.WithConstExtraField("kv-size", fmt.Sprintf("%d(%s)", totalSize, units.HumanSize(float64(totalSize)))), ) - worker := utils.NewWorkerPool(128, "delete files") - wg := new(sync.WaitGroup) - for _, f := range removed { - if !cfg.DryRun { - wg.Add(1) - finalFile := f - worker.Apply(func() { - defer wg.Done() - if err := storage.DeleteFile(ctx, finalFile.Path); err != nil { - log.Warn("File not deleted.", zap.String("path", finalFile.Path), logutil.ShortError(err)) - console.Print("\n"+em(finalFile.Path), "not deleted, you may clear it manually:", warn(err)) - } - }) - } + defer p.Close() + + notDeleted, err := metas.RemoveDataFilesAndUpdateMetadataInBatch(ctx, shiftUntilTS, storage, p.IncBy) + if err != nil { + return err } - wg.Wait() - clearDataFileDone() - // remove metadata - removeMetaDone := console.ShowTask("Removing metadata... ", glue.WithTimeCost()) - if !cfg.DryRun { - if err := metas.DoWriteBack(ctx, storage); err != nil { - return err + if err := p.Wait(ctx); err != nil { + return err + } + + if len(notDeleted) > 0 { + const keepFirstNFailure = 16 + console.Println("Files below are not deleted due to error, you may clear it manually, check log for detail error:") + console.Println("- Total", em(len(notDeleted)), "items.") + if len(notDeleted) > keepFirstNFailure { + console.Println("-", em(len(notDeleted)-keepFirstNFailure), "items omitted.") + // TODO: maybe don't add them at the very first. + notDeleted = notDeleted[:keepFirstNFailure] + } + for _, f := range notDeleted { + console.Println(f) } } - removeMetaDone() + return nil } @@ -1117,31 +1146,9 @@ func restoreStream( // mode or emptied schedulers defer restorePostWork(ctx, client, restoreSchedulers) - shiftStartTS, err := client.GetShiftTS(ctx, cfg.StartTS, cfg.RestoreTS) - if err != nil { - return errors.Annotate(err, "failed to get shift TS") - } - - // read meta by given ts. - metas, err := client.ReadStreamMetaByTS(ctx, shiftStartTS, cfg.RestoreTS) - if err != nil { - return errors.Trace(err) - } - if len(metas) == 0 { - log.Info("nothing to restore.") - return nil - } - - client.SetRestoreRangeTS(cfg.StartTS, cfg.RestoreTS, shiftStartTS) - - // read data file by given ts. - dmlFiles, ddlFiles, err := client.ReadStreamDataFiles(ctx, metas) + err = client.InstallLogFileManager(ctx, cfg.StartTS, cfg.RestoreTS) if err != nil { - return errors.Trace(err) - } - if len(dmlFiles) == 0 && len(ddlFiles) == 0 { - log.Info("nothing to restore.") - return nil + return err } // get full backup meta to generate rewrite rules. @@ -1173,6 +1180,11 @@ func restoreStream( totalKVCount += kvCount totalSize += size } + dataFileCount := 0 + ddlFiles, err := client.LoadDDLFilesAndCountDMLFiles(ctx, &dataFileCount) + if err != nil { + return err + } pm := g.StartProgress(ctx, "Restore Meta Files", int64(len(ddlFiles)), !cfg.LogProgress) if err = withProgress(pm, func(p glue.Progress) error { client.RunGCRowsLoader(ctx) @@ -1188,7 +1200,8 @@ func restoreStream( } updateRewriteRules(rewriteRules, schemasReplace) - pd := g.StartProgress(ctx, "Restore KV Files", int64(len(dmlFiles)), !cfg.LogProgress) + dmlFiles, err := client.LoadDMLFiles(ctx) + pd := g.StartProgress(ctx, "Restore KV Files", int64(dataFileCount), !cfg.LogProgress) err = withProgress(pd, func(p glue.Progress) error { return client.RestoreKVFiles(ctx, rewriteRules, dmlFiles, updateStats, p.Inc) }) @@ -1275,8 +1288,6 @@ func createRestoreClient(ctx context.Context, g glue.Glue, cfg *RestoreConfig, m return nil, errors.Trace(err) } - client.InitMetadataHelper() - return client, nil } @@ -1336,6 +1347,11 @@ func getLogRange( if err = backupMeta.Unmarshal(metaData); err != nil { return backupLogInfo{}, errors.Trace(err) } + // endVersion > 0 represents that the storage has been used for `br backup` + if backupMeta.GetEndVersion() > 0 { + return backupLogInfo{}, errors.Annotate(berrors.ErrStorageUnknown, + "the storage has been used for full backup") + } logStartTS := backupMeta.GetStartVersion() // truncateTS: get log truncate ts from TruncateSafePointFileName. diff --git a/br/pkg/task/stream_test.go b/br/pkg/task/stream_test.go index 7477e5d622096..3ef57a71a07ef 100644 --- a/br/pkg/task/stream_test.go +++ b/br/pkg/task/stream_test.go @@ -21,8 +21,11 @@ import ( "path/filepath" "testing" + "github.com/golang/protobuf/proto" "github.com/pingcap/errors" backuppb "github.com/pingcap/kvproto/pkg/brpb" + berrors "github.com/pingcap/tidb/br/pkg/errors" + "github.com/pingcap/tidb/br/pkg/metautil" "github.com/pingcap/tidb/br/pkg/storage" "github.com/pingcap/tidb/br/pkg/stream" "github.com/stretchr/testify/require" @@ -261,3 +264,49 @@ func TestGetGlobalCheckpointFromStorage(t *testing.T) { require.Nil(t, err) require.Equal(t, ts, uint64(99)) } + +func TestGetLogRangeWithFullBackupDir(t *testing.T) { + var fullBackupTS uint64 = 123456 + testDir := t.TempDir() + storage, err := storage.NewLocalStorage(testDir) + require.Nil(t, err) + + m := backuppb.BackupMeta{ + EndVersion: fullBackupTS, + } + data, err := proto.Marshal(&m) + require.Nil(t, err) + + err = storage.WriteFile(context.TODO(), metautil.MetaFile, data) + require.Nil(t, err) + + cfg := Config{ + Storage: testDir, + } + _, err = getLogRange(context.TODO(), &cfg) + require.Error(t, err, errors.Annotate(berrors.ErrStorageUnknown, + "the storage has been used for full backup")) +} + +func TestGetLogRangeWithLogBackupDir(t *testing.T) { + var startLogBackupTS uint64 = 123456 + testDir := t.TempDir() + storage, err := storage.NewLocalStorage(testDir) + require.Nil(t, err) + + m := backuppb.BackupMeta{ + StartVersion: startLogBackupTS, + } + data, err := proto.Marshal(&m) + require.Nil(t, err) + + err = storage.WriteFile(context.TODO(), metautil.MetaFile, data) + require.Nil(t, err) + + cfg := Config{ + Storage: testDir, + } + logInfo, err := getLogRange(context.TODO(), &cfg) + require.Nil(t, err) + require.Equal(t, logInfo.logMinTS, startLogBackupTS) +} diff --git a/br/pkg/trace/main_test.go b/br/pkg/trace/main_test.go index 3447b03df11db..299dc7a11398f 100644 --- a/br/pkg/trace/main_test.go +++ b/br/pkg/trace/main_test.go @@ -25,6 +25,7 @@ func TestMain(m *testing.M) { testsetup.SetupForCommonTest() opts := []goleak.Option{ goleak.IgnoreTopFunction("github.com/golang/glog.(*loggingT).flushDaemon"), + goleak.IgnoreTopFunction("github.com/lestrrat-go/httprc.runFetchWorker"), goleak.IgnoreTopFunction("go.etcd.io/etcd/client/pkg/v3/logutil.(*MergeLogger).outputLoop"), goleak.IgnoreTopFunction("go.opencensus.io/stats/view.(*worker).start"), } diff --git a/br/pkg/utils/db.go b/br/pkg/utils/db.go index be2bd87a6ccb8..23911fa6f0a93 100644 --- a/br/pkg/utils/db.go +++ b/br/pkg/utils/db.go @@ -71,7 +71,7 @@ func CheckLogBackupEnabled(ctx sessionctx.Context) bool { // we use `sqlexec.RestrictedSQLExecutor` as parameter because it's easy to mock. // it should return error. func IsLogBackupEnabled(ctx sqlexec.RestrictedSQLExecutor) (bool, error) { - valStr := "show config where name = 'log-backup.enable'" + valStr := "show config where name = 'log-backup.enable' and type = 'tikv'" internalCtx := kv.WithInternalSourceType(context.Background(), kv.InternalTxnBR) rows, fields, errSQL := ctx.ExecRestrictedSQL(internalCtx, nil, valStr) if errSQL != nil { diff --git a/br/pkg/utils/iter/BUILD.bazel b/br/pkg/utils/iter/BUILD.bazel new file mode 100644 index 0000000000000..0e4c55ed67d56 --- /dev/null +++ b/br/pkg/utils/iter/BUILD.bazel @@ -0,0 +1,30 @@ +load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test") + +go_library( + name = "iter", + srcs = [ + "combinator_types.go", + "combinators.go", + "iter.go", + "source.go", + "source_types.go", + ], + importpath = "github.com/pingcap/tidb/br/pkg/utils/iter", + visibility = ["//visibility:public"], + deps = [ + "//br/pkg/utils", + "@org_golang_x_exp//constraints", + "@org_golang_x_sync//errgroup", + ], +) + +go_test( + name = "iter_test", + srcs = ["combinator_test.go"], + flaky = True, + race = "on", + deps = [ + ":iter", + "@com_github_stretchr_testify//require", + ], +) diff --git a/br/pkg/utils/iter/combinator_test.go b/br/pkg/utils/iter/combinator_test.go new file mode 100644 index 0000000000000..97d847f769783 --- /dev/null +++ b/br/pkg/utils/iter/combinator_test.go @@ -0,0 +1,100 @@ +// Copyright 2022 PingCAP, Inc. Licensed under Apache-2.0. + +package iter_test + +import ( + "context" + "errors" + "sync/atomic" + "testing" + "time" + + "github.com/pingcap/tidb/br/pkg/utils/iter" + "github.com/stretchr/testify/require" +) + +func TestParTrans(t *testing.T) { + items := iter.OfRange(0, 200) + mapped := iter.Transform(items, func(c context.Context, i int) (int, error) { + select { + case <-c.Done(): + return 0, c.Err() + case <-time.After(100 * time.Millisecond): + } + return i + 100, nil + }, iter.WithChunkSize(128), iter.WithConcurrency(64)) + cx, cancel := context.WithTimeout(context.Background(), 1*time.Second) + defer cancel() + r := iter.CollectAll(cx, mapped) + require.NoError(t, r.Err) + require.Len(t, r.Item, 200) + require.Equal(t, r.Item, iter.CollectAll(cx, iter.OfRange(100, 300)).Item) +} + +func TestFilter(t *testing.T) { + items := iter.OfRange(0, 10) + items = iter.FlatMap(items, func(n int) iter.TryNextor[int] { + return iter.Map(iter.OfRange(n, 10), func(i int) int { return n * i }) + }) + items = iter.FilterOut(items, func(n int) bool { return n == 0 || (n+1)%13 != 0 }) + coll := iter.CollectAll(context.Background(), items) + require.Equal(t, []int{12, 12, 25, 64}, coll.Item, "%s", coll) +} + +func TestFailure(t *testing.T) { + items := iter.ConcatAll(iter.OfRange(0, 5), iter.Fail[int](errors.New("meow?")), iter.OfRange(5, 10)) + items = iter.FlatMap(items, func(n int) iter.TryNextor[int] { + return iter.Map(iter.OfRange(n, 10), func(i int) int { return n * i }) + }) + items = iter.FilterOut(items, func(n int) bool { return n == 0 || (n+1)%13 != 0 }) + coll := iter.CollectAll(context.Background(), items) + require.Error(t, coll.Err, "%s", coll) + require.Nil(t, coll.Item) +} + +func TestCollect(t *testing.T) { + items := iter.OfRange(0, 100) + ctx := context.Background() + coll := iter.CollectMany(ctx, items, 10) + require.Len(t, coll.Item, 10, "%s", coll) + require.Equal(t, coll.Item, iter.CollectAll(ctx, iter.OfRange(0, 10)).Item) +} + +func TestTapping(t *testing.T) { + items := iter.OfRange(0, 101) + ctx := context.Background() + n := 0 + + items = iter.Tap(items, func(i int) { n += i }) + iter.CollectAll(ctx, items) + require.Equal(t, 5050, n) +} + +func TestSome(t *testing.T) { + req := require.New(t) + it := iter.OfRange(0, 2) + c := context.Background() + req.Equal(it.TryNext(c), iter.Emit(0)) + req.Equal(it.TryNext(c), iter.Emit(1)) + req.Equal(it.TryNext(c), iter.Done[int]()) + req.Equal(it.TryNext(c), iter.Done[int]()) +} + +func TestErrorDuringTransforming(t *testing.T) { + req := require.New(t) + items := iter.OfRange(1, 20) + running := new(atomic.Int32) + items = iter.Transform(items, func(ctx context.Context, i int) (int, error) { + if i == 10 { + return 0, errors.New("meow") + } + running.Add(1) + return i, nil + }, iter.WithChunkSize(16), iter.WithConcurrency(8)) + + coll := iter.CollectAll(context.TODO(), items) + req.Greater(running.Load(), int32(8)) + // Should be melted down. + req.Less(running.Load(), int32(16)) + req.ErrorContains(coll.Err, "meow") +} diff --git a/br/pkg/utils/iter/combinator_types.go b/br/pkg/utils/iter/combinator_types.go new file mode 100644 index 0000000000000..c08f37e81a655 --- /dev/null +++ b/br/pkg/utils/iter/combinator_types.go @@ -0,0 +1,129 @@ +// Copyright 2022 PingCAP, Inc. Licensed under Apache-2.0. + +package iter + +import ( + "context" + + "github.com/pingcap/tidb/br/pkg/utils" + "golang.org/x/sync/errgroup" +) + +type chunkMappingCfg struct { + chunkSize uint + quota *utils.WorkerPool +} + +type chunkMapping[T, R any] struct { + chunkMappingCfg + inner TryNextor[T] + mapper func(context.Context, T) (R, error) + + buffer fromSlice[R] +} + +func (m *chunkMapping[T, R]) fillChunk(ctx context.Context) IterResult[fromSlice[R]] { + eg, cx := errgroup.WithContext(ctx) + s := CollectMany(ctx, m.inner, m.chunkSize) + if s.FinishedOrError() { + return DoneBy[fromSlice[R]](s) + } + r := make([]R, len(s.Item)) + for i := 0; i < len(s.Item); i++ { + i := i + m.quota.ApplyOnErrorGroup(eg, func() error { + var err error + r[i], err = m.mapper(cx, s.Item[i]) + return err + }) + } + if err := eg.Wait(); err != nil { + return Throw[fromSlice[R]](err) + } + if len(r) > 0 { + return Emit(fromSlice[R](r)) + } + return Done[fromSlice[R]]() +} + +func (m *chunkMapping[T, R]) TryNext(ctx context.Context) IterResult[R] { + r := m.buffer.TryNext(ctx) + if !r.FinishedOrError() { + return Emit(r.Item) + } + + r2 := m.fillChunk(ctx) + if !r2.FinishedOrError() { + m.buffer = r2.Item + return m.TryNext(ctx) + } + + return DoneBy[R](r2) +} + +type filter[T any] struct { + inner TryNextor[T] + filterOutIf func(T) bool +} + +func (f filter[T]) TryNext(ctx context.Context) IterResult[T] { + for { + r := f.inner.TryNext(ctx) + if r.Err != nil || r.Finished || !f.filterOutIf(r.Item) { + return r + } + } +} + +type take[T any] struct { + n uint + inner TryNextor[T] +} + +func (t *take[T]) TryNext(ctx context.Context) IterResult[T] { + if t.n == 0 { + return Done[T]() + } + + t.n-- + return t.inner.TryNext(ctx) +} + +type join[T any] struct { + inner TryNextor[TryNextor[T]] + + current TryNextor[T] +} + +type pureMap[T, R any] struct { + inner TryNextor[T] + + mapper func(T) R +} + +func (p pureMap[T, R]) TryNext(ctx context.Context) IterResult[R] { + r := p.inner.TryNext(ctx) + + if r.FinishedOrError() { + return DoneBy[R](r) + } + return Emit(p.mapper(r.Item)) +} + +func (j *join[T]) TryNext(ctx context.Context) IterResult[T] { + r := j.current.TryNext(ctx) + if r.Err != nil { + j.inner = empty[TryNextor[T]]{} + return r + } + if !r.Finished { + return r + } + + nr := j.inner.TryNext(ctx) + if nr.FinishedOrError() { + return DoneBy[T](nr) + } + j.current = nr.Item + return j.TryNext(ctx) +} diff --git a/br/pkg/utils/iter/combinators.go b/br/pkg/utils/iter/combinators.go new file mode 100644 index 0000000000000..e852add07d7a4 --- /dev/null +++ b/br/pkg/utils/iter/combinators.go @@ -0,0 +1,94 @@ +// Copyright 2022 PingCAP, Inc. Licensed under Apache-2.0. + +package iter + +import ( + "context" + + "github.com/pingcap/tidb/br/pkg/utils" +) + +// TransformConfig is the config for the combinator "transform". +type TransformConfig func(*chunkMappingCfg) + +func WithConcurrency(n uint) TransformConfig { + return func(c *chunkMappingCfg) { + c.quota = utils.NewWorkerPool(n, "transforming") + } +} + +func WithChunkSize(n uint) TransformConfig { + return func(c *chunkMappingCfg) { + c.chunkSize = n + } +} + +// Transform returns an iterator that performs an impure procedure for each element, +// then emitting the result of that procedure. +// The execution of that procedure can be paralleled with the config `WithConcurrency`. +// You may also need to config the `WithChunkSize`, because the concurrent execution is only available intra-batch. +func Transform[T, R any](it TryNextor[T], with func(context.Context, T) (R, error), cs ...TransformConfig) TryNextor[R] { + r := &chunkMapping[T, R]{ + inner: it, + mapper: with, + chunkMappingCfg: chunkMappingCfg{ + chunkSize: 1, + }, + } + for _, c := range cs { + c(&r.chunkMappingCfg) + } + if r.quota == nil { + r.quota = utils.NewWorkerPool(r.chunkSize, "max-concurrency") + } + if r.quota.Limit() > int(r.chunkSize) { + r.chunkSize = uint(r.quota.Limit()) + } + return r +} + +// FilterOut returns an iterator that yields all elements the original iterator +// generated and DOESN'T satisfies the predicate. +func FilterOut[T any](it TryNextor[T], f func(T) bool) TryNextor[T] { + return filter[T]{ + inner: it, + filterOutIf: f, + } +} + +// TakeFirst takes the first n elements of the iterator. +func TakeFirst[T any](inner TryNextor[T], n uint) TryNextor[T] { + return &take[T]{ + n: n, + inner: inner, + } +} + +// FlapMap applies the mapper over every elements the origin iterator generates, +// then flatten them. +func FlatMap[T, R any](it TryNextor[T], mapper func(T) TryNextor[R]) TryNextor[R] { + return &join[R]{ + inner: pureMap[T, TryNextor[R]]{ + inner: it, + mapper: mapper, + }, + current: empty[R]{}, + } +} + +// Map applies the mapper over every elements the origin iterator yields. +func Map[T, R any](it TryNextor[T], mapper func(T) R) TryNextor[R] { + return pureMap[T, R]{ + inner: it, + mapper: mapper, + } +} + +// ConcatAll concatenates all elements yields by the iterators. +// In another word, it 'chains' all the input iterators. +func ConcatAll[T any](items ...TryNextor[T]) TryNextor[T] { + return &join[T]{ + inner: FromSlice(items), + current: empty[T]{}, + } +} diff --git a/br/pkg/utils/iter/iter.go b/br/pkg/utils/iter/iter.go new file mode 100644 index 0000000000000..069b37c4f369e --- /dev/null +++ b/br/pkg/utils/iter/iter.go @@ -0,0 +1,111 @@ +// Copyright 2022 PingCAP, Inc. Licensed under Apache-2.0. + +package iter + +import ( + "context" + "fmt" +) + +// IterResult is the result of try to advancing an impure iterator. +// Generally it is a "sum type", which only one field would be filled. +// You can create it via `Done`, `Emit` and `Throw`. +type IterResult[T any] struct { + Item T + Err error + Finished bool +} + +func (r IterResult[T]) String() string { + if r.Err != nil { + return fmt.Sprintf("IterResult.Throw(%s)", r.Err) + } + if r.Finished { + return "IterResult.Done()" + } + return fmt.Sprintf("IterResult.Emit(%v)", r.Item) +} + +// TryNextor is the general interface for "impure" iterators: +// which may trigger some error or block the caller when advancing. +type TryNextor[T any] interface { + TryNext(ctx context.Context) IterResult[T] +} + +func (r IterResult[T]) FinishedOrError() bool { + return r.Err != nil || r.Finished +} + +// DoneBy creates a finished or error IterResult by its argument. +func DoneBy[T, O any](r IterResult[O]) IterResult[T] { + return IterResult[T]{ + Err: r.Err, + Finished: r.Finished, + } +} + +// Done creates an IterResult which indices the iteration has finished. +func Done[T any]() IterResult[T] { + return IterResult[T]{ + Finished: true, + } +} + +// Emit creates an IterResult which contains normal data. +func Emit[T any](t T) IterResult[T] { + return IterResult[T]{ + Item: t, + } +} + +// Throw creates an IterResult which contains the err. +func Throw[T any](err error) IterResult[T] { + return IterResult[T]{ + Err: err, + } +} + +// CollectMany collects the first n items of the iterator. +// When the iterator contains less data than N, it emits as many items as it can and won't set `Finished`. +func CollectMany[T any](ctx context.Context, it TryNextor[T], n uint) IterResult[[]T] { + return CollectAll(ctx, TakeFirst(it, n)) +} + +// CollectAll fully consumes the iterator, collecting all items the iterator emitted. +// When the iterator has been finished, it emits empty slice and won't set `Finished`. +func CollectAll[T any](ctx context.Context, it TryNextor[T]) IterResult[[]T] { + r := IterResult[[]T]{} + + for ir := it.TryNext(ctx); !ir.Finished; ir = it.TryNext(ctx) { + if ir.Err != nil { + return DoneBy[[]T](ir) + } + r.Item = append(r.Item, ir.Item) + } + return r +} + +type tap[T any] struct { + inner TryNextor[T] + + tapper func(T) +} + +func (t tap[T]) TryNext(ctx context.Context) IterResult[T] { + n := t.inner.TryNext(ctx) + if n.FinishedOrError() { + return n + } + + t.tapper(n.Item) + return Emit(n.Item) +} + +// Tap adds a hook into the iterator, it would execute the function +// anytime the iterator emits an item. +func Tap[T any](i TryNextor[T], with func(T)) TryNextor[T] { + return tap[T]{ + inner: i, + tapper: with, + } +} diff --git a/br/pkg/utils/iter/source.go b/br/pkg/utils/iter/source.go new file mode 100644 index 0000000000000..f2ea2fd8fb173 --- /dev/null +++ b/br/pkg/utils/iter/source.go @@ -0,0 +1,28 @@ +// Copyright 2022 PingCAP, Inc. Licensed under Apache-2.0. + +package iter + +import ( + "golang.org/x/exp/constraints" +) + +// FromSlice creates an iterator from a slice, the iterator would +func FromSlice[T any](s []T) TryNextor[T] { + sa := fromSlice[T](s) + return &sa +} + +// OfRange creates an iterator that yields elements in the integer range. +func OfRange[T constraints.Integer](begin, end T) TryNextor[T] { + return &ofRange[T]{ + end: end, + endExclusive: true, + + current: begin, + } +} + +// Fail creates an iterator always fail. +func Fail[T any](err error) TryNextor[T] { + return failure[T]{error: err} +} diff --git a/br/pkg/utils/iter/source_types.go b/br/pkg/utils/iter/source_types.go new file mode 100644 index 0000000000000..41e9810de5286 --- /dev/null +++ b/br/pkg/utils/iter/source_types.go @@ -0,0 +1,52 @@ +// Copyright 2022 PingCAP, Inc. Licensed under Apache-2.0. + +package iter + +import ( + "context" + + "golang.org/x/exp/constraints" +) + +type fromSlice[T any] []T + +func (s *fromSlice[T]) TryNext(ctx context.Context) IterResult[T] { + if s == nil || len(*s) == 0 { + return Done[T]() + } + + var item T + item, *s = (*s)[0], (*s)[1:] + return Emit(item) +} + +type ofRange[T constraints.Integer] struct { + end T + endExclusive bool + + current T +} + +func (r *ofRange[T]) TryNext(ctx context.Context) IterResult[T] { + if r.current > r.end || (r.current == r.end && r.endExclusive) { + return Done[T]() + } + + result := Emit(r.current) + r.current++ + return result +} + +type empty[T any] struct{} + +func (empty[T]) TryNext(ctx context.Context) IterResult[T] { + return Done[T]() +} + +type failure[T any] struct { + error +} + +func (f failure[T]) TryNext(ctx context.Context) IterResult[T] { + return Throw[T](f) +} diff --git a/br/pkg/utils/main_test.go b/br/pkg/utils/main_test.go index b575947bf44f8..f1a0e7c1e39e5 100644 --- a/br/pkg/utils/main_test.go +++ b/br/pkg/utils/main_test.go @@ -24,6 +24,7 @@ import ( func TestMain(m *testing.M) { opts := []goleak.Option{ goleak.IgnoreTopFunction("github.com/golang/glog.(*loggingT).flushDaemon"), + goleak.IgnoreTopFunction("github.com/lestrrat-go/httprc.runFetchWorker"), goleak.IgnoreTopFunction("go.opencensus.io/stats/view.(*worker).start"), } testsetup.SetupForCommonTest() diff --git a/br/tests/_utils/make_tiflash_config b/br/tests/_utils/make_tiflash_config index f759a990f6be9..6f0d41d800f78 100755 --- a/br/tests/_utils/make_tiflash_config +++ b/br/tests/_utils/make_tiflash_config @@ -12,8 +12,8 @@ key-path = "$TEST_DIR/certs/tiflash.key" [server] addr = "0.0.0.0:20170" advertise-addr = "127.0.0.1:20170" +status-addr = "127.0.0.1:20292" engine-addr = "127.0.0.1:3930" -status-addr = "$TIFLASH_STATUS" [storage] data-dir = "$TEST_DIR/tiflash/data" @@ -93,4 +93,4 @@ result_rows = 0 ca_path = "$TEST_DIR/certs/ca.pem" cert_path = "$TEST_DIR/certs/tiflash.pem" key_path = "$TEST_DIR/certs/tiflash.key" -EOF \ No newline at end of file +EOF diff --git a/br/tests/_utils/run_services b/br/tests/_utils/run_services index a7449cb229bf2..7e1917150b263 100644 --- a/br/tests/_utils/run_services +++ b/br/tests/_utils/run_services @@ -26,7 +26,6 @@ export TIDB_STATUS_ADDR="127.0.0.1:10080" export TIKV_ADDR="127.0.0.1:2016" export TIKV_STATUS_ADDR="127.0.0.1:2018" export TIKV_COUNT=3 -export TIFLASH_STATUS="127.0.0.1:17000" export TIFLASH_HTTP="127.0.0.1:8125" export TIKV_PIDS="${TEST_DIR:?}/tikv_pids.txt" diff --git a/br/tests/lightning_exotic_filenames/data/xfn.etn-schema.sql b/br/tests/lightning_exotic_filenames/data/xfn.etn-schema.sql index e2d94bbdf8f32..d004fa92e0b64 100644 --- a/br/tests/lightning_exotic_filenames/data/xfn.etn-schema.sql +++ b/br/tests/lightning_exotic_filenames/data/xfn.etn-schema.sql @@ -1 +1 @@ -create table `exotic``table````name` (a varchar(6) primary key, b int unique auto_increment) auto_increment=80000; \ No newline at end of file +create table `exotic``table````name` (a varchar(6) primary key /*T![clustered_index] NONCLUSTERED */, b int unique auto_increment) auto_increment=80000; diff --git a/br/tests/lightning_exotic_filenames/data/zwk.zwb-schema.sql b/br/tests/lightning_exotic_filenames/data/zwk.zwb-schema.sql index 449584777c299..d9fae1aad0373 100644 --- a/br/tests/lightning_exotic_filenames/data/zwk.zwb-schema.sql +++ b/br/tests/lightning_exotic_filenames/data/zwk.zwb-schema.sql @@ -1 +1 @@ -create table 中文表(a int primary key); +create table 中文表(a int primary key /*T![clustered_index] NONCLUSTERED */); diff --git a/br/tests/lightning_extend_routes/config.toml b/br/tests/lightning_extend_routes/config.toml new file mode 100644 index 0000000000000..2010453870113 --- /dev/null +++ b/br/tests/lightning_extend_routes/config.toml @@ -0,0 +1,25 @@ +[tikv-importer] +sorted-kv-dir = "/tmp/tidb-lightning/sorted-kv-dir" + +[mydumper] +source-id = "mysql-01" + +# the complicated routing rules should be tested in tidb-tools repo already +# here we're just verifying the basic things do work. +[[routes]] +schema-pattern = "routes_a*" +table-pattern = "t*" +target-schema = "routes_b" +target-table = "u" + +[routes.extract-table] +table-regexp = "t(.*)" +target-column = "c_table" + +[routes.extract-schema] +schema-regexp = "routes_a(.*)" +target-column = "c_schema" + +[routes.extract-source] +source-regexp = "mysql-(.*)" +target-column = "c_source" diff --git a/br/tests/lightning_extend_routes/data/routes_a0-schema-create.sql b/br/tests/lightning_extend_routes/data/routes_a0-schema-create.sql new file mode 100644 index 0000000000000..13ae4918b6098 --- /dev/null +++ b/br/tests/lightning_extend_routes/data/routes_a0-schema-create.sql @@ -0,0 +1 @@ +create database routes_a0; diff --git a/br/tests/lightning_extend_routes/data/routes_a0.t0-schema.sql b/br/tests/lightning_extend_routes/data/routes_a0.t0-schema.sql new file mode 100644 index 0000000000000..0df8bb24c5ac0 --- /dev/null +++ b/br/tests/lightning_extend_routes/data/routes_a0.t0-schema.sql @@ -0,0 +1 @@ +create table t0 (x real primary key); diff --git a/br/tests/lightning_extend_routes/data/routes_a0.t0.1.sql b/br/tests/lightning_extend_routes/data/routes_a0.t0.1.sql new file mode 100644 index 0000000000000..e6fe0676be1c7 --- /dev/null +++ b/br/tests/lightning_extend_routes/data/routes_a0.t0.1.sql @@ -0,0 +1 @@ +insert into t0 values (1.0); \ No newline at end of file diff --git a/br/tests/lightning_extend_routes/data/routes_a0.t0.2.sql b/br/tests/lightning_extend_routes/data/routes_a0.t0.2.sql new file mode 100644 index 0000000000000..c5ebd7ac4e224 --- /dev/null +++ b/br/tests/lightning_extend_routes/data/routes_a0.t0.2.sql @@ -0,0 +1 @@ +insert into t0 values (6.0); \ No newline at end of file diff --git a/br/tests/lightning_extend_routes/data/routes_a0.t1-schema.sql b/br/tests/lightning_extend_routes/data/routes_a0.t1-schema.sql new file mode 100644 index 0000000000000..640043cdd0405 --- /dev/null +++ b/br/tests/lightning_extend_routes/data/routes_a0.t1-schema.sql @@ -0,0 +1 @@ +create table t1 (x real primary key); diff --git a/br/tests/lightning_extend_routes/data/routes_a0.t1.1.sql b/br/tests/lightning_extend_routes/data/routes_a0.t1.1.sql new file mode 100644 index 0000000000000..ca471aa6698ff --- /dev/null +++ b/br/tests/lightning_extend_routes/data/routes_a0.t1.1.sql @@ -0,0 +1 @@ +insert into t1 (x) values (36.0); diff --git a/br/tests/lightning_extend_routes/data/routes_a1-schema-create.sql b/br/tests/lightning_extend_routes/data/routes_a1-schema-create.sql new file mode 100644 index 0000000000000..7f76665e1fed8 --- /dev/null +++ b/br/tests/lightning_extend_routes/data/routes_a1-schema-create.sql @@ -0,0 +1 @@ +create database routes_a1; diff --git a/br/tests/lightning_extend_routes/data/routes_a1.s1-schema.sql b/br/tests/lightning_extend_routes/data/routes_a1.s1-schema.sql new file mode 100644 index 0000000000000..9f6be476718e9 --- /dev/null +++ b/br/tests/lightning_extend_routes/data/routes_a1.s1-schema.sql @@ -0,0 +1 @@ +create table s1 (x real primary key); \ No newline at end of file diff --git a/br/tests/lightning_extend_routes/data/routes_a1.s1.sql b/br/tests/lightning_extend_routes/data/routes_a1.s1.sql new file mode 100644 index 0000000000000..51826fc361836 --- /dev/null +++ b/br/tests/lightning_extend_routes/data/routes_a1.s1.sql @@ -0,0 +1 @@ +insert into s1 values (1296.0); \ No newline at end of file diff --git a/br/tests/lightning_extend_routes/data/routes_a1.t2-schema.sql b/br/tests/lightning_extend_routes/data/routes_a1.t2-schema.sql new file mode 100644 index 0000000000000..f07b1f26737a3 --- /dev/null +++ b/br/tests/lightning_extend_routes/data/routes_a1.t2-schema.sql @@ -0,0 +1 @@ +create table t2 (x real primary key); \ No newline at end of file diff --git a/br/tests/lightning_extend_routes/data/routes_a1.t2.sql b/br/tests/lightning_extend_routes/data/routes_a1.t2.sql new file mode 100644 index 0000000000000..48f0da53eb7f5 --- /dev/null +++ b/br/tests/lightning_extend_routes/data/routes_a1.t2.sql @@ -0,0 +1 @@ +insert into t2 values (216.0); \ No newline at end of file diff --git a/br/tests/lightning_extend_routes/run.sh b/br/tests/lightning_extend_routes/run.sh new file mode 100755 index 0000000000000..1d7daa71a49e1 --- /dev/null +++ b/br/tests/lightning_extend_routes/run.sh @@ -0,0 +1,41 @@ +#!/bin/bash + +# Basic check for whether routing rules work + +set -eux + +for BACKEND in tidb local; do + run_sql 'DROP DATABASE IF EXISTS routes_a0;' + run_sql 'DROP DATABASE IF EXISTS routes_a1;' + run_sql 'DROP DATABASE IF EXISTS routes_b;' + + run_sql 'CREATE DATABASE routes_b;' + run_sql 'CREATE TABLE routes_b.u (x real primary key, c_source varchar(11) not null, c_schema varchar(11) not null, c_table varchar(11) not null);' + + run_lightning --config "tests/$TEST_NAME/config.toml" --backend $BACKEND + echo Import using $BACKEND finished + + run_sql 'SELECT count(1), sum(x) FROM routes_b.u;' + check_contains 'count(1): 4' + check_contains 'sum(x): 259' + + run_sql 'SELECT count(1), sum(x) FROM routes_a1.s1;' + check_contains 'count(1): 1' + check_contains 'sum(x): 1296' + + run_sql 'SELECT count(1) FROM routes_b.u where c_table = "0";' + check_contains 'count(1): 2' + run_sql 'SELECT count(1) FROM routes_b.u where c_table = "1";' + check_contains 'count(1): 1' + run_sql 'SELECT count(1) FROM routes_b.u where c_table = "2";' + check_contains 'count(1): 1' + run_sql 'SELECT count(1) FROM routes_b.u where c_schema = "0";' + check_contains 'count(1): 3' + run_sql 'SELECT count(1) FROM routes_b.u where c_schema = "1";' + check_contains 'count(1): 1' + run_sql 'SELECT count(1) FROM routes_b.u where c_source = "01";' + check_contains 'count(1): 4' + + run_sql 'SHOW TABLES IN routes_a1;' + check_not_contains 'Tables_in_routes_a1: t2' +done diff --git a/br/tests/lightning_fail_fast/run.sh b/br/tests/lightning_fail_fast/run.sh index a1723b3e2cffd..7e057e3ee999c 100755 --- a/br/tests/lightning_fail_fast/run.sh +++ b/br/tests/lightning_fail_fast/run.sh @@ -25,7 +25,7 @@ for CFG in chunk engine; do ! run_lightning --backend tidb --enable-checkpoint=0 --log-file "$TEST_DIR/lightning-tidb.log" --config "tests/$TEST_NAME/$CFG.toml" [ $? -eq 0 ] - tail -n 10 $TEST_DIR/lightning-tidb.log | grep "ERROR" | tail -n 1 | grep -Fq "Error 1062: Duplicate entry '1-1' for key 'uq'" + tail -n 10 $TEST_DIR/lightning-tidb.log | grep "ERROR" | tail -n 1 | grep -Fq "Error 1062: Duplicate entry '1-1' for key 'tb.uq'" ! grep -Fq "restore file completed" $TEST_DIR/lightning-tidb.log [ $? -eq 0 ] diff --git a/br/tests/lightning_ignore_columns/config.toml b/br/tests/lightning_ignore_columns/config.toml new file mode 100644 index 0000000000000..081814e3bc2fd --- /dev/null +++ b/br/tests/lightning_ignore_columns/config.toml @@ -0,0 +1,27 @@ +[mydumper] +source-id = "mysql-01" + +[[mydumper.ignore-columns]] +db = "routes_b" +table = "u" +columns = ["b", "c"] + +# the complicated routing rules should be tested in tidb-tools repo already +# here we're just verifying the basic things do work. +[[routes]] +schema-pattern = "routes_a*" +table-pattern = "t*" +target-schema = "routes_b" +target-table = "u" + +[routes.extract-table] +table-regexp = "t(.*)" +target-column = "c_table" + +[routes.extract-schema] +schema-regexp = "routes_a(.*)" +target-column = "c_schema" + +[routes.extract-source] +source-regexp = "mysql-(.*)" +target-column = "c_source" diff --git a/br/tests/lightning_ignore_columns/data/routes_a0-schema-create.sql b/br/tests/lightning_ignore_columns/data/routes_a0-schema-create.sql new file mode 100644 index 0000000000000..13ae4918b6098 --- /dev/null +++ b/br/tests/lightning_ignore_columns/data/routes_a0-schema-create.sql @@ -0,0 +1 @@ +create database routes_a0; diff --git a/br/tests/lightning_ignore_columns/data/routes_a0.t0-schema.sql b/br/tests/lightning_ignore_columns/data/routes_a0.t0-schema.sql new file mode 100644 index 0000000000000..721808e895288 --- /dev/null +++ b/br/tests/lightning_ignore_columns/data/routes_a0.t0-schema.sql @@ -0,0 +1 @@ +create table t0 (a int primary key, b int, c int); diff --git a/br/tests/lightning_ignore_columns/data/routes_a0.t0.1.sql b/br/tests/lightning_ignore_columns/data/routes_a0.t0.1.sql new file mode 100644 index 0000000000000..8423d6272c5f5 --- /dev/null +++ b/br/tests/lightning_ignore_columns/data/routes_a0.t0.1.sql @@ -0,0 +1 @@ +insert into t0 values (1,1,1); diff --git a/br/tests/lightning_ignore_columns/data/routes_a0.t0.2.sql b/br/tests/lightning_ignore_columns/data/routes_a0.t0.2.sql new file mode 100644 index 0000000000000..6ece03887605b --- /dev/null +++ b/br/tests/lightning_ignore_columns/data/routes_a0.t0.2.sql @@ -0,0 +1 @@ +insert into t0 values (2,2,2); diff --git a/br/tests/lightning_ignore_columns/data/routes_a0.t1-schema.sql b/br/tests/lightning_ignore_columns/data/routes_a0.t1-schema.sql new file mode 100644 index 0000000000000..2f5757afe3f3d --- /dev/null +++ b/br/tests/lightning_ignore_columns/data/routes_a0.t1-schema.sql @@ -0,0 +1 @@ +create table t1 (a int primary key, b int, c int); diff --git a/br/tests/lightning_ignore_columns/data/routes_a0.t1.1.sql b/br/tests/lightning_ignore_columns/data/routes_a0.t1.1.sql new file mode 100644 index 0000000000000..6e0c62bf6a774 --- /dev/null +++ b/br/tests/lightning_ignore_columns/data/routes_a0.t1.1.sql @@ -0,0 +1 @@ +insert into t1 (a,b,c) values (3,3,3); diff --git a/br/tests/lightning_ignore_columns/data/routes_a1-schema-create.sql b/br/tests/lightning_ignore_columns/data/routes_a1-schema-create.sql new file mode 100644 index 0000000000000..7f76665e1fed8 --- /dev/null +++ b/br/tests/lightning_ignore_columns/data/routes_a1-schema-create.sql @@ -0,0 +1 @@ +create database routes_a1; diff --git a/br/tests/lightning_ignore_columns/data/routes_a1.s1-schema.sql b/br/tests/lightning_ignore_columns/data/routes_a1.s1-schema.sql new file mode 100644 index 0000000000000..c4e55cac7a713 --- /dev/null +++ b/br/tests/lightning_ignore_columns/data/routes_a1.s1-schema.sql @@ -0,0 +1 @@ +create table s1 (a int primary key, b int, c int); diff --git a/br/tests/lightning_ignore_columns/data/routes_a1.s1.sql b/br/tests/lightning_ignore_columns/data/routes_a1.s1.sql new file mode 100644 index 0000000000000..9f0a0a8e98e77 --- /dev/null +++ b/br/tests/lightning_ignore_columns/data/routes_a1.s1.sql @@ -0,0 +1 @@ +insert into s1 values (4,4,4); diff --git a/br/tests/lightning_ignore_columns/data/routes_a1.t2-schema.sql b/br/tests/lightning_ignore_columns/data/routes_a1.t2-schema.sql new file mode 100644 index 0000000000000..cfa986fec7f95 --- /dev/null +++ b/br/tests/lightning_ignore_columns/data/routes_a1.t2-schema.sql @@ -0,0 +1 @@ +create table t2 (a int primary key, b int, c int); diff --git a/br/tests/lightning_ignore_columns/data/routes_a1.t2.sql b/br/tests/lightning_ignore_columns/data/routes_a1.t2.sql new file mode 100644 index 0000000000000..1087175aef150 --- /dev/null +++ b/br/tests/lightning_ignore_columns/data/routes_a1.t2.sql @@ -0,0 +1 @@ +insert into t2 values (5,5,5); diff --git a/br/tests/lightning_ignore_columns/run.sh b/br/tests/lightning_ignore_columns/run.sh new file mode 100755 index 0000000000000..f11d216567512 --- /dev/null +++ b/br/tests/lightning_ignore_columns/run.sh @@ -0,0 +1,45 @@ +#!/bin/bash + +# Basic check for whether routing rules work + +set -eux + +for BACKEND in tidb local; do + run_sql 'DROP DATABASE IF EXISTS routes_a0;' + run_sql 'DROP DATABASE IF EXISTS routes_a1;' + run_sql 'DROP DATABASE IF EXISTS routes_b;' + + run_sql 'CREATE DATABASE routes_b;' + run_sql 'CREATE TABLE routes_b.u (a int primary key, b int, c int, c_source varchar(11), c_schema varchar(11) not null, c_table varchar(11) not null);' + + run_lightning --config "tests/$TEST_NAME/config.toml" --backend $BACKEND + echo Import using $BACKEND finished + + run_sql 'SELECT count(1), sum(a), sum(b), sum(c) FROM routes_b.u;' + check_contains 'count(1): 4' + check_contains 'sum(a): 11' + check_contains 'sum(b): NULL' + check_contains 'sum(c): NULL' + + run_sql 'SELECT count(1), sum(a), sum(b), sum(c) FROM routes_a1.s1;' + check_contains 'count(1): 1' + check_contains 'sum(a): 4' + check_contains 'sum(b): 4' + check_contains 'sum(c): 4' + + run_sql 'SELECT count(1) FROM routes_b.u where c_table = "0";' + check_contains 'count(1): 2' + run_sql 'SELECT count(1) FROM routes_b.u where c_table = "1";' + check_contains 'count(1): 1' + run_sql 'SELECT count(1) FROM routes_b.u where c_table = "2";' + check_contains 'count(1): 1' + run_sql 'SELECT count(1) FROM routes_b.u where c_schema = "0";' + check_contains 'count(1): 3' + run_sql 'SELECT count(1) FROM routes_b.u where c_schema = "1";' + check_contains 'count(1): 1' + run_sql 'SELECT count(1) FROM routes_b.u where c_source = "01";' + check_contains 'count(1): 4' + + run_sql 'SHOW TABLES IN routes_a1;' + check_not_contains 'Tables_in_routes_a1: t2' +done diff --git a/br/tests/lightning_shard_rowid/data/shard_rowid.shr-schema.sql b/br/tests/lightning_shard_rowid/data/shard_rowid.shr-schema.sql index 312b13c1c1118..d544b7fdb84c1 100644 --- a/br/tests/lightning_shard_rowid/data/shard_rowid.shr-schema.sql +++ b/br/tests/lightning_shard_rowid/data/shard_rowid.shr-schema.sql @@ -3,5 +3,5 @@ CREATE TABLE `test` ( `s1` char(10) NOT NULL, `s2` char(10) NOT NULL, `s3` char(10) DEFAULT NULL, - PRIMARY KEY (`s1`,`s2`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin/*!90000 SHARD_ROW_ID_BITS=3 PRE_SPLIT_REGIONS=3 */; \ No newline at end of file + PRIMARY KEY (`s1`,`s2`) /*T![clustered_index] NONCLUSTERED */ +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin/*!90000 SHARD_ROW_ID_BITS=3 PRE_SPLIT_REGIONS=3 */; diff --git a/br/tests/lightning_tidb_rowid/data/rowid.non_pk-schema.sql b/br/tests/lightning_tidb_rowid/data/rowid.non_pk-schema.sql index 5b5757644b6dd..52ee2729417a3 100644 --- a/br/tests/lightning_tidb_rowid/data/rowid.non_pk-schema.sql +++ b/br/tests/lightning_tidb_rowid/data/rowid.non_pk-schema.sql @@ -1 +1 @@ -create table non_pk (pk varchar(6) primary key); +create table non_pk (pk varchar(6) primary key /*T![clustered_index] NONCLUSTERED */); diff --git a/br/tests/lightning_tidb_rowid/data/rowid.non_pk_auto_inc-schema.sql b/br/tests/lightning_tidb_rowid/data/rowid.non_pk_auto_inc-schema.sql index a71be02c9e8f1..97aa81838b1bc 100644 --- a/br/tests/lightning_tidb_rowid/data/rowid.non_pk_auto_inc-schema.sql +++ b/br/tests/lightning_tidb_rowid/data/rowid.non_pk_auto_inc-schema.sql @@ -4,6 +4,6 @@ CREATE TABLE `non_pk_auto_inc` ( `pk` char(36) NOT NULL, `id` int(11) NOT NULL AUTO_INCREMENT, - PRIMARY KEY (`pk`), + PRIMARY KEY (`pk`) /*T![clustered_index] NONCLUSTERED */, UNIQUE KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_bin; diff --git a/build/BUILD.bazel b/build/BUILD.bazel index a90a76bf3bf81..23cf263d525e3 100644 --- a/build/BUILD.bazel +++ b/build/BUILD.bazel @@ -124,7 +124,6 @@ nogo( "//build/linter/bodyclose:bodyclose", "//build/linter/durationcheck:durationcheck", "//build/linter/exportloopref:exportloopref", - "//build/linter/filepermission:filepermission", "//build/linter/forcetypeassert:forcetypeassert", "//build/linter/gofmt:gofmt", "//build/linter/gci:gci", @@ -140,6 +139,7 @@ nogo( ] + staticcheck_analyzers(STATICHECK_ANALYZERS) + select({ "//build:with_nogo": [ + "//build/linter/filepermission:filepermission", "//build/linter/allrevive:allrevive", "//build/linter/errcheck:errcheck", "//build/linter/revive:revive", diff --git a/build/linter/revive/analyzer.go b/build/linter/revive/analyzer.go index 19d44a95558e7..a3d269aad48e9 100644 --- a/build/linter/revive/analyzer.go +++ b/build/linter/revive/analyzer.go @@ -50,21 +50,11 @@ var defaultRules = []lint.Rule{ &rule.VarDeclarationsRule{}, //&rule.PackageCommentsRule{}, &rule.DotImportsRule{}, - &rule.BlankImportsRule{}, &rule.ExportedRule{}, &rule.VarNamingRule{}, - &rule.IndentErrorFlowRule{}, - &rule.RangeRule{}, - &rule.ErrorfRule{}, - &rule.ErrorNamingRule{}, - &rule.ErrorStringsRule{}, - &rule.ReceiverNamingRule{}, &rule.IncrementDecrementRule{}, - &rule.ErrorReturnRule{}, //&rule.UnexportedReturnRule{}, - &rule.TimeNamingRule{}, &rule.ContextKeysType{}, - &rule.ContextAsArgumentRule{}, } var allRules = append([]lint.Rule{ @@ -72,52 +62,31 @@ var allRules = append([]lint.Rule{ //&rule.CyclomaticRule{}, //&rule.FileHeaderRule{}, &rule.EmptyBlockRule{}, - &rule.SuperfluousElseRule{}, //&rule.ConfusingNamingRule{}, - &rule.GetReturnRule{}, - &rule.ModifiesParamRule{}, &rule.ConfusingResultsRule{}, //&rule.DeepExitRule{}, &rule.UnusedParamRule{}, - &rule.UnreachableCodeRule{}, //&rule.AddConstantRule{}, //&rule.FlagParamRule{}, &rule.UnnecessaryStmtRule{}, //&rule.StructTagRule{}, //&rule.ModifiesValRecRule{}, - &rule.ConstantLogicalExprRule{}, - &rule.BoolLiteralRule{}, //&rule.RedefinesBuiltinIDRule{}, - &rule.ImportsBlacklistRule{}, //&rule.FunctionResultsLimitRule{}, //&rule.MaxPublicStructsRule{}, - &rule.RangeValInClosureRule{}, - &rule.RangeValAddress{}, - &rule.WaitGroupByValueRule{}, - &rule.AtomicRule{}, - &rule.EmptyLinesRule{}, //&rule.LineLengthLimitRule{}, &rule.CallToGCRule{}, - &rule.DuplicatedImportsRule{}, //&rule.ImportShadowingRule{}, //&rule.BareReturnRule{}, &rule.UnusedReceiverRule{}, //&rule.UnhandledErrorRule{}, //&rule.CognitiveComplexityRule{}, - &rule.StringOfIntRule{}, - &rule.StringFormatRule{}, //&rule.EarlyReturnRule{}, - &rule.UnconditionalRecursionRule{}, - &rule.IdenticalBranchesRule{}, - &rule.DeferRule{}, &rule.UnexportedNamingRule{}, //&rule.FunctionLength{}, //&rule.NestedStructs{}, - &rule.IfReturnRule{}, &rule.UselessBreak{}, - &rule.TimeEqualRule{}, //&rule.BannedCharsRule{}, - &rule.OptimizeOperandsOrderRule{}, }, defaultRules...) func run(pass *analysis.Pass) (any, error) { diff --git a/build/nogo_config.json b/build/nogo_config.json index 2a5fe64ba3e49..731eed4c54f00 100644 --- a/build/nogo_config.json +++ b/build/nogo_config.json @@ -198,22 +198,23 @@ ".*_generated\\.go$": "ignore generated code" }, "only_files": { - "util/gctuner": "util/gctuner", - "br/pkg/lightning/mydump/": "br/pkg/lightning/mydump/", - "br/pkg/lightning/restore/opts": "br/pkg/lightning/restore/opts", - "executor/aggregate.go": "executor/aggregate.go", - "types/json_binary_functions.go": "types/json_binary_functions.go", - "types/json_binary_test.go": "types/json_binary_test.go", - "ddl/backfilling.go": "ddl/backfilling.go", - "ddl/column.go": "ddl/column.go", - "ddl/index.go": "ddl/index.go", - "ddl/ingest/": "ddl/ingest/", - "util/cgroup": "util/cgroup code", - "server/conn.go": "server/conn.go", - "server/conn_stmt.go": "server/conn_stmt.go", - "server/conn_test.go": "server/conn_test.go", - "planner/core/plan.go": "planner/core/plan.go", - "errno/": "only table code" + "util/gctuner": "only for util/gctuner", + "br/pkg/lightning/mydump/": "only for br/pkg/lightning/mydump/", + "br/pkg/lightning/restore/opts": "only for br/pkg/lightning/restore/opts", + "executor/aggregate.go": "only for executor/aggregate.go", + "types/json_binary_functions.go": "only for types/json_binary_functions.go", + "types/json_binary_test.go": "only for types/json_binary_test.go", + "ddl/backfilling.go": "only for ddl/backfilling.go", + "ddl/column.go": "only for ddl/column.go", + "ddl/index.go": "only for ddl/index.go", + "ddl/ingest/": "only for ddl/ingest/", + "util/cgroup": "only for util/cgroup code", + "server/conn.go": "only for server/conn.go", + "server/conn_stmt.go": "only for server/conn_stmt.go", + "server/conn_test.go": "only for server/conn_test.go", + "planner/core/plan.go": "only for planner/core/plan.go", + "errno/": "only for errno/", + "extension/": "extension code" } }, "gofmt": { @@ -316,7 +317,6 @@ "nilness": { "exclude_files": { "/external/": "no need to vet third party code", - "planner/core/physical_plan_test.go": "please fix it", ".*_generated\\.go$": "ignore generated code", "/cgo/": "ignore cgo" } @@ -332,7 +332,8 @@ "kv/": "kv code", "util/memory": "util/memory", "ddl/": "ddl", - "planner/": "planner" + "planner/": "planner", + "extension/": "extension code" } }, "pkgfact": { @@ -399,7 +400,8 @@ "planner/core/util.go": "planner/core/util.go", "util/": "util code", "parser/": "parser code", - "meta/": "parser code" + "meta/": "parser code", + "extension/": "extension code" } }, "shift": { @@ -757,7 +759,8 @@ "planner/core/plan.go": "planner/core/plan.go", "server/conn.go": "server/conn.go", "server/conn_stmt.go": "server/conn_stmt.go", - "server/conn_test.go": "server/conn_test.go" + "server/conn_test.go": "server/conn_test.go", + "extension/": "extension code" } }, "SA2000": { diff --git a/cmd/ddltest/main_test.go b/cmd/ddltest/main_test.go index 6016cb9c8d12a..7f6815d4f6340 100644 --- a/cmd/ddltest/main_test.go +++ b/cmd/ddltest/main_test.go @@ -34,6 +34,7 @@ func TestMain(m *testing.M) { } opts := []goleak.Option{ goleak.IgnoreTopFunction("github.com/golang/glog.(*loggingT).flushDaemon"), + goleak.IgnoreTopFunction("github.com/lestrrat-go/httprc.runFetchWorker"), goleak.IgnoreTopFunction("go.etcd.io/etcd/client/pkg/v3/logutil.(*MergeLogger).outputLoop"), goleak.IgnoreTopFunction("go.opencensus.io/stats/view.(*worker).start"), goleak.IgnoreTopFunction("internal/poll.runtime_pollWait"), diff --git a/cmd/explaintest/BUILD.bazel b/cmd/explaintest/BUILD.bazel index babd3c0d00ed6..106574214f047 100644 --- a/cmd/explaintest/BUILD.bazel +++ b/cmd/explaintest/BUILD.bazel @@ -28,7 +28,6 @@ go_test( name = "explaintest_test", timeout = "short", srcs = ["main_test.go"], - data = ["//tidb-server:tidb-server-raw"], embed = [":explaintest_lib"], flaky = True, ) diff --git a/cmd/explaintest/main.go b/cmd/explaintest/main.go index 32f88dc30a6bc..d5f7f0c98b0a1 100644 --- a/cmd/explaintest/main.go +++ b/cmd/explaintest/main.go @@ -724,6 +724,7 @@ func main() { "set @@tidb_window_concurrency=4", "set @@tidb_projection_concurrency=4", "set @@tidb_distsql_scan_concurrency=15", + "set @@tidb_enable_clustered_index='int_only';", "set @@global.tidb_enable_clustered_index=0;", "set @@global.tidb_mem_quota_query=34359738368", "set @@tidb_mem_quota_query=34359738368", diff --git a/cmd/explaintest/r/access_path_selection.result b/cmd/explaintest/r/access_path_selection.result index bbf5dcb8627a2..cafdc72269eed 100644 --- a/cmd/explaintest/r/access_path_selection.result +++ b/cmd/explaintest/r/access_path_selection.result @@ -1,3 +1,4 @@ +set tidb_cost_model_version=1; CREATE TABLE `access_path_selection` ( `a` int, `b` int, diff --git a/cmd/explaintest/r/agg_predicate_pushdown.result b/cmd/explaintest/r/agg_predicate_pushdown.result index 52d0c115aec4b..1e2bedfa2fe34 100644 --- a/cmd/explaintest/r/agg_predicate_pushdown.result +++ b/cmd/explaintest/r/agg_predicate_pushdown.result @@ -1,3 +1,4 @@ +set tidb_cost_model_version=1; drop database if exists agg_predicate_pushdown; create database agg_predicate_pushdown; create table t(a int, b int, c int); diff --git a/cmd/explaintest/r/black_list.result b/cmd/explaintest/r/black_list.result index 96879cfd47379..f62979b567ee9 100644 --- a/cmd/explaintest/r/black_list.result +++ b/cmd/explaintest/r/black_list.result @@ -1,3 +1,4 @@ +set tidb_cost_model_version=1; use test; drop table if exists t; create table t (a int); diff --git a/cmd/explaintest/r/clustered_index.result b/cmd/explaintest/r/clustered_index.result index 5412b0c50cfb7..bd1824d07edb3 100644 --- a/cmd/explaintest/r/clustered_index.result +++ b/cmd/explaintest/r/clustered_index.result @@ -1,3 +1,4 @@ +set tidb_cost_model_version=1; set @@tidb_enable_outer_join_reorder=true; drop database if exists with_cluster_index; create database with_cluster_index; diff --git a/cmd/explaintest/r/collation_agg_func_disabled.result b/cmd/explaintest/r/collation_agg_func_disabled.result index d2503250f063f..4b4a9d1074af8 100644 --- a/cmd/explaintest/r/collation_agg_func_disabled.result +++ b/cmd/explaintest/r/collation_agg_func_disabled.result @@ -1,3 +1,4 @@ +set tidb_cost_model_version=1; create database collation_agg_func; use collation_agg_func; create table t(id int, value varchar(20) charset utf8mb4 collate utf8mb4_general_ci, value1 varchar(20) charset utf8mb4 collate utf8mb4_bin); diff --git a/cmd/explaintest/r/collation_agg_func_enabled.result b/cmd/explaintest/r/collation_agg_func_enabled.result index 35c21a1ec469a..ea345c13ede58 100644 --- a/cmd/explaintest/r/collation_agg_func_enabled.result +++ b/cmd/explaintest/r/collation_agg_func_enabled.result @@ -1,3 +1,4 @@ +set tidb_cost_model_version=1; create database collation_agg_func; use collation_agg_func; create table t(id int, value varchar(20) charset utf8mb4 collate utf8mb4_general_ci, value1 varchar(20) charset utf8mb4 collate utf8mb4_bin); diff --git a/cmd/explaintest/r/collation_check_use_collation_disabled.result b/cmd/explaintest/r/collation_check_use_collation_disabled.result index 06af2890faa8f..493b26812bfbb 100644 --- a/cmd/explaintest/r/collation_check_use_collation_disabled.result +++ b/cmd/explaintest/r/collation_check_use_collation_disabled.result @@ -1,3 +1,4 @@ +set tidb_cost_model_version=1; create database collation_check_use_collation; use collation_check_use_collation; CREATE TABLE `t` ( diff --git a/cmd/explaintest/r/collation_check_use_collation_enabled.result b/cmd/explaintest/r/collation_check_use_collation_enabled.result index 5bf70a6a73a09..838c6beba6535 100644 --- a/cmd/explaintest/r/collation_check_use_collation_enabled.result +++ b/cmd/explaintest/r/collation_check_use_collation_enabled.result @@ -1,3 +1,4 @@ +set tidb_cost_model_version=1; create database collation_check_use_collation; use collation_check_use_collation; CREATE TABLE `t` ( diff --git a/cmd/explaintest/r/collation_misc_disabled.result b/cmd/explaintest/r/collation_misc_disabled.result index a9ee8ac04631f..eff046aa33009 100644 --- a/cmd/explaintest/r/collation_misc_disabled.result +++ b/cmd/explaintest/r/collation_misc_disabled.result @@ -1,3 +1,4 @@ +set tidb_cost_model_version=1; create database collation_misc; use collation_misc; create table t1(a varchar(20) charset utf8); diff --git a/cmd/explaintest/r/collation_misc_enabled.result b/cmd/explaintest/r/collation_misc_enabled.result index 38161ba4ca6a6..235d5896380ee 100644 --- a/cmd/explaintest/r/collation_misc_enabled.result +++ b/cmd/explaintest/r/collation_misc_enabled.result @@ -1,3 +1,4 @@ +set tidb_cost_model_version=1; create database collation_misc; use collation_misc; create table t1(a varchar(20) charset utf8); diff --git a/cmd/explaintest/r/collation_pointget_disabled.result b/cmd/explaintest/r/collation_pointget_disabled.result index 96b2a7aa58ca5..a763c54c96344 100644 --- a/cmd/explaintest/r/collation_pointget_disabled.result +++ b/cmd/explaintest/r/collation_pointget_disabled.result @@ -1,3 +1,4 @@ +set tidb_cost_model_version=1; create database collation_point_get; use collation_point_get; drop table if exists t; diff --git a/cmd/explaintest/r/collation_pointget_enabled.result b/cmd/explaintest/r/collation_pointget_enabled.result index c5bcd58c15ba2..156e4d87f931c 100644 --- a/cmd/explaintest/r/collation_pointget_enabled.result +++ b/cmd/explaintest/r/collation_pointget_enabled.result @@ -1,3 +1,4 @@ +set tidb_cost_model_version=1; create database collation_point_get; use collation_point_get; drop table if exists t; diff --git a/cmd/explaintest/r/common_collation.result b/cmd/explaintest/r/common_collation.result index 235ce7fce3d0d..d686c5008bbd9 100644 --- a/cmd/explaintest/r/common_collation.result +++ b/cmd/explaintest/r/common_collation.result @@ -1,3 +1,4 @@ +set tidb_cost_model_version=1; drop table if exists t; create table t(a char(10) collate utf8mb4_unicode_ci, b char(10) collate utf8mb4_general_ci); insert into t values ('啊', '撒旦'); diff --git a/cmd/explaintest/r/cte.result b/cmd/explaintest/r/cte.result index cf427c05a181c..7a8677c848294 100644 --- a/cmd/explaintest/r/cte.result +++ b/cmd/explaintest/r/cte.result @@ -1,3 +1,4 @@ +set tidb_cost_model_version=1; use test; drop table if exists tbl_0; create table tbl_0(a int); @@ -594,11 +595,11 @@ Projection_16 10000.00 root test.t1.c1, test.t1.c2 └─Apply_18 10000.00 root CARTESIAN inner join, other cond:or(and(gt(test.t1.c1, Column#11), if(ne(Column#12, 0), NULL, 1)), or(eq(Column#13, 0), if(isnull(test.t1.c1), NULL, 0))) ├─TableReader_20(Build) 10000.00 root data:TableFullScan_19 │ └─TableFullScan_19 10000.00 cop[tikv] table:t1 keep order:false, stats:pseudo - └─StreamAgg_35(Probe) 1.00 root funcs:max(Column#19)->Column#11, funcs:sum(Column#20)->Column#12, funcs:count(Column#21)->Column#13 - └─TableReader_36 1.00 root data:StreamAgg_24 - └─StreamAgg_24 1.00 cop[tikv] funcs:max(test.t2.c1)->Column#19, funcs:sum(isnull(test.t2.c1))->Column#20, funcs:count(1)->Column#21 - └─Selection_34 10.00 cop[tikv] eq(test.t2.c2, test.t1.c2) - └─TableFullScan_33 10000.00 cop[tikv] table:t2 keep order:false, stats:pseudo + └─StreamAgg_35(Probe) 10000.00 root funcs:max(Column#19)->Column#11, funcs:sum(Column#20)->Column#12, funcs:count(Column#21)->Column#13 + └─TableReader_36 10000.00 root data:StreamAgg_24 + └─StreamAgg_24 10000.00 cop[tikv] funcs:max(test.t2.c1)->Column#19, funcs:sum(isnull(test.t2.c1))->Column#20, funcs:count(1)->Column#21 + └─Selection_34 100000.00 cop[tikv] eq(test.t2.c2, test.t1.c2) + └─TableFullScan_33 100000000.00 cop[tikv] table:t2 keep order:false, stats:pseudo select * from t1 where c1 > all(with cte1 as (select c1 from t2 where t2.c2 = t1.c2) select c1 from cte1); c1 c2 2 1 @@ -624,9 +625,9 @@ Projection_26 10000.00 root test.t1.c1, test.t1.c2 └─Apply_28 10000.00 root CARTESIAN inner join, other cond:or(and(gt(test.t1.c1, Column#14), if(ne(Column#15, 0), NULL, 1)), or(eq(Column#16, 0), if(isnull(test.t1.c1), NULL, 0))) ├─TableReader_30(Build) 10000.00 root data:TableFullScan_29 │ └─TableFullScan_29 10000.00 cop[tikv] table:t1 keep order:false, stats:pseudo - └─HashAgg_31(Probe) 1.00 root funcs:max(Column#19)->Column#14, funcs:sum(Column#20)->Column#15, funcs:count(1)->Column#16 - └─Projection_35 20.00 root test.t2.c1, cast(isnull(test.t2.c1), decimal(20,0) BINARY)->Column#20 - └─CTEFullScan_33 20.00 root CTE:cte1 data:CTE_0 + └─HashAgg_31(Probe) 10000.00 root funcs:max(Column#19)->Column#14, funcs:sum(Column#20)->Column#15, funcs:count(1)->Column#16 + └─Projection_35 200000.00 root test.t2.c1, cast(isnull(test.t2.c1), decimal(20,0) BINARY)->Column#20 + └─CTEFullScan_33 200000.00 root CTE:cte1 data:CTE_0 CTE_0 20.00 root Recursive CTE, limit(offset:0, count:1) ├─Projection_19(Seed Part) 10.00 root test.t2.c1 │ └─TableReader_22 10.00 root data:Selection_21 @@ -643,7 +644,7 @@ id estRows task access object operator info Apply_25 10000.00 root CARTESIAN semi join ├─TableReader_27(Build) 10000.00 root data:TableFullScan_26 │ └─TableFullScan_26 10000.00 cop[tikv] table:t1 keep order:false, stats:pseudo -└─CTEFullScan_28(Probe) 20.00 root CTE:cte1 data:CTE_0 +└─CTEFullScan_28(Probe) 200000.00 root CTE:cte1 data:CTE_0 CTE_0 20.00 root Recursive CTE, limit(offset:0, count:10) ├─Projection_17(Seed Part) 10.00 root test.t2.c1 │ └─TableReader_20 10.00 root data:Selection_19 @@ -662,9 +663,9 @@ Projection_24 10000.00 root test.t1.c1, test.t1.c2 └─Apply_26 10000.00 root CARTESIAN inner join, other cond:or(and(gt(test.t1.c1, Column#18), if(ne(Column#19, 0), NULL, 1)), or(eq(Column#20, 0), if(isnull(test.t1.c1), NULL, 0))) ├─TableReader_28(Build) 10000.00 root data:TableFullScan_27 │ └─TableFullScan_27 10000.00 cop[tikv] table:t1 keep order:false, stats:pseudo - └─HashAgg_29(Probe) 1.00 root funcs:max(Column#23)->Column#18, funcs:sum(Column#24)->Column#19, funcs:count(1)->Column#20 - └─Projection_33 18000.00 root test.t2.c1, cast(isnull(test.t2.c1), decimal(20,0) BINARY)->Column#24 - └─CTEFullScan_31 18000.00 root CTE:cte1 data:CTE_0 + └─HashAgg_29(Probe) 10000.00 root funcs:max(Column#23)->Column#18, funcs:sum(Column#24)->Column#19, funcs:count(1)->Column#20 + └─Projection_33 180000000.00 root test.t2.c1, cast(isnull(test.t2.c1), decimal(20,0) BINARY)->Column#24 + └─CTEFullScan_31 180000000.00 root CTE:cte1 data:CTE_0 CTE_0 18000.00 root Recursive CTE ├─TableReader_19(Seed Part) 10000.00 root data:TableFullScan_18 │ └─TableFullScan_18 10000.00 cop[tikv] table:t2 keep order:false, stats:pseudo @@ -678,7 +679,7 @@ id estRows task access object operator info Apply_23 10000.00 root CARTESIAN semi join ├─TableReader_25(Build) 10000.00 root data:TableFullScan_24 │ └─TableFullScan_24 10000.00 cop[tikv] table:t1 keep order:false, stats:pseudo -└─CTEFullScan_26(Probe) 18000.00 root CTE:cte1 data:CTE_0 +└─CTEFullScan_26(Probe) 180000000.00 root CTE:cte1 data:CTE_0 CTE_0 18000.00 root Recursive CTE ├─TableReader_17(Seed Part) 10000.00 root data:TableFullScan_16 │ └─TableFullScan_16 10000.00 cop[tikv] table:t2 keep order:false, stats:pseudo diff --git a/cmd/explaintest/r/explain-non-select-stmt.result b/cmd/explaintest/r/explain-non-select-stmt.result index 025733884b0b8..d5e18f7d85cf3 100644 --- a/cmd/explaintest/r/explain-non-select-stmt.result +++ b/cmd/explaintest/r/explain-non-select-stmt.result @@ -1,3 +1,4 @@ +set tidb_cost_model_version=1; use test; drop table if exists t; create table t(a bigint, b bigint); diff --git a/cmd/explaintest/r/explain.result b/cmd/explaintest/r/explain.result index 2556051099efc..78f7d289eb39d 100644 --- a/cmd/explaintest/r/explain.result +++ b/cmd/explaintest/r/explain.result @@ -1,3 +1,4 @@ +set tidb_cost_model_version=1; drop table if exists t; create table t (id int, c1 timestamp); show columns from t; diff --git a/cmd/explaintest/r/explain_complex.result b/cmd/explaintest/r/explain_complex.result index b68393c99fcfe..8d8b47237b453 100644 --- a/cmd/explaintest/r/explain_complex.result +++ b/cmd/explaintest/r/explain_complex.result @@ -1,3 +1,4 @@ +set tidb_cost_model_version=1; CREATE TABLE `dt` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT , `aid` varchar(32) NOT NULL, @@ -138,9 +139,9 @@ Projection 0.00 root test.st.id, test.dd.id, test.st.aid, test.st.cm, test.dd.d │ └─Selection(Probe) 0.00 cop[tikv] eq(test.st.bm, 0), eq(test.st.dit, "mac"), eq(test.st.pt, "ios"), not(isnull(test.st.dic)) │ └─TableRowIDScan 3333.33 cop[tikv] table:gad keep order:false, stats:pseudo └─IndexLookUp(Probe) 0.00 root - ├─IndexRangeScan(Build) 10000.00 cop[tikv] table:sdk, index:aid(aid, dic) range: decided by [eq(test.dd.aid, test.st.aid)], keep order:false, stats:pseudo + ├─IndexRangeScan(Build) 0.03 cop[tikv] table:sdk, index:aid(aid, dic) range: decided by [eq(test.dd.aid, test.st.aid)], keep order:false, stats:pseudo └─Selection(Probe) 0.00 cop[tikv] eq(test.dd.bm, 0), eq(test.dd.pt, "ios"), gt(test.dd.t, 1477971479), not(isnull(test.dd.mac)), not(isnull(test.dd.t)) - └─TableRowIDScan 10000.00 cop[tikv] table:sdk keep order:false, stats:pseudo + └─TableRowIDScan 0.03 cop[tikv] table:sdk keep order:false, stats:pseudo explain format = 'brief' SELECT cm, p1, p2, p3, p4, p5, p6_md5, p7_md5, count(1) as click_pv, count(DISTINCT ip) as click_ip FROM st WHERE (t between 1478188800 and 1478275200) and aid='cn.sbkcq' and pt='android' GROUP BY cm, p1, p2, p3, p4, p5, p6_md5, p7_md5; id estRows task access object operator info Projection 1.00 root test.st.cm, test.st.p1, test.st.p2, test.st.p3, test.st.p4, test.st.p5, test.st.p6_md5, test.st.p7_md5, Column#20, Column#21 @@ -157,11 +158,11 @@ Projection 0.01 root test.dt.id, test.dt.aid, test.dt.pt, test.dt.dic, test.dt. ├─TableReader(Build) 3.33 root data:Selection │ └─Selection 3.33 cop[tikv] eq(test.rr.pt, "ios"), gt(test.rr.t, 1478185592) │ └─TableFullScan 10000.00 cop[tikv] table:rr keep order:false, stats:pseudo - └─IndexLookUp(Probe) 0.00 root - ├─Selection(Build) 1.00 cop[tikv] not(isnull(test.dt.dic)) - │ └─IndexRangeScan 1.00 cop[tikv] table:dt, index:aid(aid, dic) range: decided by [eq(test.dt.aid, test.rr.aid) eq(test.dt.dic, test.rr.dic)], keep order:false, stats:pseudo - └─Selection(Probe) 0.00 cop[tikv] eq(test.dt.bm, 0), eq(test.dt.pt, "ios"), gt(test.dt.t, 1478185592) - └─TableRowIDScan 1.00 cop[tikv] table:dt keep order:false, stats:pseudo + └─IndexLookUp(Probe) 0.01 root + ├─Selection(Build) 3.33 cop[tikv] not(isnull(test.dt.dic)) + │ └─IndexRangeScan 3.33 cop[tikv] table:dt, index:aid(aid, dic) range: decided by [eq(test.dt.aid, test.rr.aid) eq(test.dt.dic, test.rr.dic)], keep order:false, stats:pseudo + └─Selection(Probe) 0.01 cop[tikv] eq(test.dt.bm, 0), eq(test.dt.pt, "ios"), gt(test.dt.t, 1478185592) + └─TableRowIDScan 3.33 cop[tikv] table:dt keep order:false, stats:pseudo explain format = 'brief' select pc,cr,count(DISTINCT uid) as pay_users,count(oid) as pay_times,sum(am) as am from pp where ps=2 and ppt>=1478188800 and ppt<1478275200 and pi in ('510017','520017') and uid in ('18089709','18090780') group by pc,cr; id estRows task access object operator info Projection 1.00 root test.pp.pc, test.pp.cr, Column#22, Column#23, Column#24 @@ -253,11 +254,11 @@ Sort 1.00 root test.org_department.left_value │ │ ├─IndexRangeScan(Build) 10.00 cop[tikv] table:d, index:org_department_ctx_index(ctx) range:[1,1], keep order:false, stats:pseudo │ │ └─Selection(Probe) 0.01 cop[tikv] eq(test.org_department.status, 1000) │ │ └─TableRowIDScan 10.00 cop[tikv] table:d keep order:false, stats:pseudo - │ └─IndexLookUp(Probe) 1.25 root - │ ├─Selection(Build) 1250.00 cop[tikv] not(isnull(test.org_position.department_id)) - │ │ └─IndexRangeScan 1251.25 cop[tikv] table:p, index:org_position_department_id_index(department_id) range: decided by [eq(test.org_position.department_id, test.org_department.id)], keep order:false, stats:pseudo - │ └─Selection(Probe) 1.25 cop[tikv] eq(test.org_position.status, 1000) - │ └─TableRowIDScan 1250.00 cop[tikv] table:p keep order:false, stats:pseudo + │ └─IndexLookUp(Probe) 0.01 root + │ ├─Selection(Build) 12.50 cop[tikv] not(isnull(test.org_position.department_id)) + │ │ └─IndexRangeScan 12.51 cop[tikv] table:p, index:org_position_department_id_index(department_id) range: decided by [eq(test.org_position.department_id, test.org_department.id)], keep order:false, stats:pseudo + │ └─Selection(Probe) 0.01 cop[tikv] eq(test.org_position.status, 1000) + │ └─TableRowIDScan 12.50 cop[tikv] table:p keep order:false, stats:pseudo └─TableReader(Probe) 9.99 root data:Selection └─Selection 9.99 cop[tikv] eq(test.org_employee_position.status, 1000), not(isnull(test.org_employee_position.position_id)) └─TableFullScan 10000.00 cop[tikv] table:ep keep order:false, stats:pseudo @@ -278,10 +279,10 @@ Projection_8 15.62 root test.tab_a.name, test.tab_b.name, test.tab_a.amt, test. │ ├─TableReader_33(Build) 10.00 root data:Selection_32 │ │ └─Selection_32 10.00 cop[tikv] eq(test.tab_a.num, 112) │ │ └─TableFullScan_31 10000.00 cop[tikv] table:Tab_A keep order:false, stats:pseudo - │ └─TableReader_21(Probe) 1.00 root data:TableRangeScan_20 - │ └─TableRangeScan_20 1.00 cop[tikv] table:Tab_B range: decided by [test.tab_a.bid], keep order:false, stats:pseudo - └─TableReader_10(Probe) 1.00 root data:TableRangeScan_9 - └─TableRangeScan_9 1.00 cop[tikv] table:Tab_C range: decided by [test.tab_a.cid], keep order:false, stats:pseudo + │ └─TableReader_21(Probe) 10.00 root data:TableRangeScan_20 + │ └─TableRangeScan_20 10.00 cop[tikv] table:Tab_B range: decided by [test.tab_a.bid], keep order:false, stats:pseudo + └─TableReader_10(Probe) 12.50 root data:TableRangeScan_9 + └─TableRangeScan_9 12.50 cop[tikv] table:Tab_C range: decided by [test.tab_a.cid], keep order:false, stats:pseudo select Tab_A.name AAA,Tab_B.name BBB,Tab_A.amt Aamt, Tab_C.amt Bamt,IFNULL(Tab_C.amt, 0) FROM Tab_A left join Tab_B on Tab_A.bid=Tab_B.id left join Tab_C on Tab_A.cid=Tab_C.id and Tab_A.type='01' where Tab_A.num=112; AAA BBB Aamt Bamt IFNULL(Tab_C.amt, 0) A01 B01 111.00 22.00 22.00 diff --git a/cmd/explaintest/r/explain_complex_stats.result b/cmd/explaintest/r/explain_complex_stats.result index ed7021dbbfba2..d6d753a7ef6bb 100644 --- a/cmd/explaintest/r/explain_complex_stats.result +++ b/cmd/explaintest/r/explain_complex_stats.result @@ -1,3 +1,4 @@ +set tidb_cost_model_version=1; drop table if exists dt; CREATE TABLE dt ( id int(11) unsigned NOT NULL, @@ -143,10 +144,10 @@ Projection 170.34 root test.st.id, test.dd.id, test.st.aid, test.st.cm, test.dd ├─TableReader(Build) 170.34 root data:Selection │ └─Selection 170.34 cop[tikv] eq(test.st.bm, 0), eq(test.st.dit, "mac"), eq(test.st.pt, "ios"), gt(test.st.t, 1477971479), not(isnull(test.st.dic)) │ └─TableFullScan 1999.00 cop[tikv] table:gad keep order:false - └─IndexLookUp(Probe) 1.00 root - ├─IndexRangeScan(Build) 3.93 cop[tikv] table:sdk, index:aid(aid, dic) range: decided by [eq(test.dd.aid, test.st.aid)], keep order:false - └─Selection(Probe) 1.00 cop[tikv] eq(test.dd.bm, 0), eq(test.dd.pt, "ios"), gt(test.dd.t, 1477971479), not(isnull(test.dd.mac)), not(isnull(test.dd.t)) - └─TableRowIDScan 3.93 cop[tikv] table:sdk keep order:false + └─IndexLookUp(Probe) 170.34 root + ├─IndexRangeScan(Build) 669.25 cop[tikv] table:sdk, index:aid(aid, dic) range: decided by [eq(test.dd.aid, test.st.aid)], keep order:false + └─Selection(Probe) 170.34 cop[tikv] eq(test.dd.bm, 0), eq(test.dd.pt, "ios"), gt(test.dd.t, 1477971479), not(isnull(test.dd.mac)), not(isnull(test.dd.t)) + └─TableRowIDScan 669.25 cop[tikv] table:sdk keep order:false explain format = 'brief' SELECT cm, p1, p2, p3, p4, p5, p6_md5, p7_md5, count(1) as click_pv, count(DISTINCT ip) as click_ip FROM st WHERE (t between 1478188800 and 1478275200) and aid='cn.sbkcq' and pt='android' GROUP BY cm, p1, p2, p3, p4, p5, p6_md5, p7_md5; id estRows task access object operator info Projection 39.28 root test.st.cm, test.st.p1, test.st.p2, test.st.p3, test.st.p4, test.st.p5, test.st.p6_md5, test.st.p7_md5, Column#20, Column#21 @@ -163,10 +164,10 @@ Projection 428.32 root test.dt.id, test.dt.aid, test.dt.pt, test.dt.dic, test.d ├─TableReader(Build) 428.32 root data:Selection │ └─Selection 428.32 cop[tikv] eq(test.dt.bm, 0), eq(test.dt.pt, "ios"), gt(test.dt.t, 1478185592), not(isnull(test.dt.dic)) │ └─TableFullScan 2000.00 cop[tikv] table:dt keep order:false - └─IndexLookUp(Probe) 1.00 root - ├─IndexRangeScan(Build) 1.00 cop[tikv] table:rr, index:PRIMARY(aid, dic) range: decided by [eq(test.rr.aid, test.dt.aid) eq(test.rr.dic, test.dt.dic)], keep order:false - └─Selection(Probe) 1.00 cop[tikv] eq(test.rr.pt, "ios"), gt(test.rr.t, 1478185592) - └─TableRowIDScan 1.00 cop[tikv] table:rr keep order:false + └─IndexLookUp(Probe) 428.32 root + ├─IndexRangeScan(Build) 428.32 cop[tikv] table:rr, index:PRIMARY(aid, dic) range: decided by [eq(test.rr.aid, test.dt.aid) eq(test.rr.dic, test.dt.dic)], keep order:false + └─Selection(Probe) 428.32 cop[tikv] eq(test.rr.pt, "ios"), gt(test.rr.t, 1478185592) + └─TableRowIDScan 428.32 cop[tikv] table:rr keep order:false explain format = 'brief' select pc,cr,count(DISTINCT uid) as pay_users,count(oid) as pay_times,sum(am) as am from pp where ps=2 and ppt>=1478188800 and ppt<1478275200 and pi in ('510017','520017') and uid in ('18089709','18090780') group by pc,cr; id estRows task access object operator info Projection 207.02 root test.pp.pc, test.pp.cr, Column#22, Column#23, Column#24 diff --git a/cmd/explaintest/r/explain_cte.result b/cmd/explaintest/r/explain_cte.result index 1d0653c4a4490..7d8b328fb4c50 100644 --- a/cmd/explaintest/r/explain_cte.result +++ b/cmd/explaintest/r/explain_cte.result @@ -1,3 +1,4 @@ +set tidb_cost_model_version=1; use test; drop table if exists t1, t2; create table t1 (c1 int primary key, c2 int, index c2 (c2)); @@ -113,8 +114,8 @@ id estRows task access object operator info Apply_24 10000.00 root CARTESIAN semi join ├─TableReader_26(Build) 10000.00 root data:TableFullScan_25 │ └─TableFullScan_25 10000.00 cop[tikv] table:dt keep order:false, stats:pseudo -└─Selection_29(Probe) 1.44 root eq(Column#8, 1) - └─CTEFullScan_30 1.80 root CTE:qn data:CTE_0 +└─Selection_29(Probe) 14400.00 root eq(Column#8, 1) + └─CTEFullScan_30 18000.00 root CTE:qn data:CTE_0 CTE_0 1.80 root Recursive CTE ├─Projection_17(Seed Part) 1.00 root plus(mul(test.t1.c1, 0), 1)->Column#4 │ └─TableDual_18 1.00 root rows:1 @@ -417,9 +418,9 @@ CTE_0 50.00 root Non-Recursive CTE │ │ └─TableReader(Probe) 9980.01 root data:Selection │ │ └─Selection 9980.01 cop[tikv] not(isnull(test.store_sales.ss_customer_sk)), not(isnull(test.store_sales.ss_sold_date_sk)) │ │ └─TableFullScan 10000.00 cop[tikv] table:store_sales keep order:false, stats:pseudo - │ └─IndexLookUp(Probe) 1.00 root - │ ├─IndexRangeScan(Build) 1.00 cop[tikv] table:customer, index:PRIMARY(c_customer_sk) range: decided by [eq(test.customer.c_customer_sk, test.store_sales.ss_customer_sk)], keep order:false, stats:pseudo - │ └─TableRowIDScan(Probe) 1.00 cop[tikv] table:customer keep order:false, stats:pseudo + │ └─IndexLookUp(Probe) 25.00 root + │ ├─IndexRangeScan(Build) 25.00 cop[tikv] table:customer, index:PRIMARY(c_customer_sk) range: decided by [eq(test.customer.c_customer_sk, test.store_sales.ss_customer_sk)], keep order:false, stats:pseudo + │ └─TableRowIDScan(Probe) 25.00 cop[tikv] table:customer keep order:false, stats:pseudo └─Projection 25.00 root test.customer.c_customer_id, test.customer.c_first_name, test.customer.c_last_name, test.customer.c_preferred_cust_flag, test.customer.c_birth_country, test.customer.c_login, test.customer.c_email_address, test.date_dim.d_year, Column#158, w->Column#169 └─Selection 25.00 root or(0, or(and(1, and(eq(test.date_dim.d_year, 2001), gt(Column#158, 0))), and(1, eq(test.date_dim.d_year, 2002)))) └─HashAgg 31.25 root group by:Column#250, Column#251, Column#252, Column#253, Column#254, Column#255, Column#256, Column#257, funcs:sum(Column#241)->Column#158, funcs:firstrow(Column#242)->test.customer.c_customer_id, funcs:firstrow(Column#243)->test.customer.c_first_name, funcs:firstrow(Column#244)->test.customer.c_last_name, funcs:firstrow(Column#245)->test.customer.c_preferred_cust_flag, funcs:firstrow(Column#246)->test.customer.c_birth_country, funcs:firstrow(Column#247)->test.customer.c_login, funcs:firstrow(Column#248)->test.customer.c_email_address, funcs:firstrow(Column#249)->test.date_dim.d_year @@ -433,9 +434,9 @@ CTE_0 50.00 root Non-Recursive CTE │ └─TableReader(Probe) 9980.01 root data:Selection │ └─Selection 9980.01 cop[tikv] not(isnull(test.web_sales.ws_bill_customer_sk)), not(isnull(test.web_sales.ws_sold_date_sk)) │ └─TableFullScan 10000.00 cop[tikv] table:web_sales keep order:false, stats:pseudo - └─IndexLookUp(Probe) 1.00 root - ├─IndexRangeScan(Build) 1.00 cop[tikv] table:customer, index:PRIMARY(c_customer_sk) range: decided by [eq(test.customer.c_customer_sk, test.web_sales.ws_bill_customer_sk)], keep order:false, stats:pseudo - └─TableRowIDScan(Probe) 1.00 cop[tikv] table:customer keep order:false, stats:pseudo + └─IndexLookUp(Probe) 25.00 root + ├─IndexRangeScan(Build) 25.00 cop[tikv] table:customer, index:PRIMARY(c_customer_sk) range: decided by [eq(test.customer.c_customer_sk, test.web_sales.ws_bill_customer_sk)], keep order:false, stats:pseudo + └─TableRowIDScan(Probe) 25.00 cop[tikv] table:customer keep order:false, stats:pseudo drop table if exists t1; create table t1 (id int, bench_type varchar(10),version varchar(10),tps int(20)); insert into t1 (id,bench_type,version,tps) values (1,'sysbench','5.4.0',1111111); diff --git a/cmd/explaintest/r/explain_easy.result b/cmd/explaintest/r/explain_easy.result index b1fd300e9705f..6e367f1f1a0dc 100644 --- a/cmd/explaintest/r/explain_easy.result +++ b/cmd/explaintest/r/explain_easy.result @@ -1,3 +1,4 @@ +set tidb_cost_model_version=1; use test; drop table if exists t1, t2, t3, t4; create table t1 (c1 int primary key, c2 int, c3 int, index c2 (c2)); @@ -131,12 +132,12 @@ Projection 10000.00 root eq(test.t1.c2, test.t2.c2)->Column#11 └─Apply 10000.00 root CARTESIAN left outer join ├─TableReader(Build) 10000.00 root data:TableFullScan │ └─TableFullScan 10000.00 cop[tikv] table:t1 keep order:false, stats:pseudo - └─Limit(Probe) 1.00 root offset:0, count:1 - └─Projection 1.00 root test.t2.c1, test.t2.c2 - └─IndexLookUp 1.00 root - ├─Limit(Build) 1.00 cop[tikv] offset:0, count:1 - │ └─IndexRangeScan 1.00 cop[tikv] table:t2, index:c1(c1) range: decided by [eq(test.t1.c1, test.t2.c1)], keep order:true, stats:pseudo - └─TableRowIDScan(Probe) 1.00 cop[tikv] table:t2 keep order:false, stats:pseudo + └─Limit(Probe) 10000.00 root offset:0, count:1 + └─Projection 10000.00 root test.t2.c1, test.t2.c2 + └─IndexLookUp 10000.00 root + ├─Limit(Build) 10000.00 cop[tikv] offset:0, count:1 + │ └─IndexRangeScan 10000.00 cop[tikv] table:t2, index:c1(c1) range: decided by [eq(test.t1.c1, test.t2.c1)], keep order:true, stats:pseudo + └─TableRowIDScan(Probe) 10000.00 cop[tikv] table:t2 keep order:false, stats:pseudo explain format = 'brief' select * from t1 order by c1 desc limit 1; id estRows task access object operator info Limit 1.00 root offset:0, count:1 @@ -324,38 +325,38 @@ Projection 10000.00 root Column#17 └─Apply 10000.00 root CARTESIAN left outer semi join, other cond:eq(test.t.c, Column#16) ├─TableReader(Build) 10000.00 root data:TableFullScan │ └─TableFullScan 10000.00 cop[tikv] table:t keep order:false, stats:pseudo - └─StreamAgg(Probe) 1.00 root funcs:count(1)->Column#16 - └─MergeJoin 12.50 root inner join, left key:test.t.a, right key:test.t.a - ├─TableReader(Build) 1.00 root data:TableRangeScan - │ └─TableRangeScan 1.00 cop[tikv] table:t1 range: decided by [eq(test.t.a, test.t.a)], keep order:true, stats:pseudo - └─TableReader(Probe) 1.00 root data:TableRangeScan - └─TableRangeScan 1.00 cop[tikv] table:s range: decided by [eq(test.t.a, test.t.a)], keep order:true, stats:pseudo + └─StreamAgg(Probe) 10000.00 root funcs:count(1)->Column#16 + └─MergeJoin 125000.00 root inner join, left key:test.t.a, right key:test.t.a + ├─TableReader(Build) 10000.00 root data:TableRangeScan + │ └─TableRangeScan 10000.00 cop[tikv] table:t1 range: decided by [eq(test.t.a, test.t.a)], keep order:true, stats:pseudo + └─TableReader(Probe) 10000.00 root data:TableRangeScan + └─TableRangeScan 10000.00 cop[tikv] table:s range: decided by [eq(test.t.a, test.t.a)], keep order:true, stats:pseudo explain format = 'brief' select t.c in (select count(*) from t s use index(idx), t t1 where s.b = t.a and s.a = t1.a) from t; id estRows task access object operator info Projection 10000.00 root Column#17 └─Apply 10000.00 root CARTESIAN left outer semi join, other cond:eq(test.t.c, Column#16) ├─TableReader(Build) 10000.00 root data:TableFullScan │ └─TableFullScan 10000.00 cop[tikv] table:t keep order:false, stats:pseudo - └─StreamAgg(Probe) 1.00 root funcs:count(1)->Column#16 - └─IndexJoin 12.50 root inner join, inner:TableReader, outer key:test.t.a, inner key:test.t.a, equal cond:eq(test.t.a, test.t.a) - ├─IndexReader(Build) 10.00 root index:IndexRangeScan - │ └─IndexRangeScan 10.00 cop[tikv] table:s, index:idx(b) range: decided by [eq(test.t.b, test.t.a)], keep order:false, stats:pseudo - └─TableReader(Probe) 1.00 root data:TableRangeScan - └─TableRangeScan 1.00 cop[tikv] table:t1 range: decided by [test.t.a], keep order:false, stats:pseudo + └─StreamAgg(Probe) 10000.00 root funcs:count(1)->Column#16 + └─IndexJoin 125000.00 root inner join, inner:TableReader, outer key:test.t.a, inner key:test.t.a, equal cond:eq(test.t.a, test.t.a) + ├─IndexReader(Build) 100000.00 root index:IndexRangeScan + │ └─IndexRangeScan 100000.00 cop[tikv] table:s, index:idx(b) range: decided by [eq(test.t.b, test.t.a)], keep order:false, stats:pseudo + └─TableReader(Probe) 100000.00 root data:TableRangeScan + └─TableRangeScan 100000.00 cop[tikv] table:t1 range: decided by [test.t.a], keep order:false, stats:pseudo explain format = 'brief' select t.c in (select count(*) from t s use index(idx), t t1 where s.b = t.a and s.c = t1.a) from t; id estRows task access object operator info Projection 10000.00 root Column#17 └─Apply 10000.00 root CARTESIAN left outer semi join, other cond:eq(test.t.c, Column#16) ├─TableReader(Build) 10000.00 root data:TableFullScan │ └─TableFullScan 10000.00 cop[tikv] table:t keep order:false, stats:pseudo - └─StreamAgg(Probe) 1.00 root funcs:count(1)->Column#16 - └─IndexJoin 12.49 root inner join, inner:TableReader, outer key:test.t.c, inner key:test.t.a, equal cond:eq(test.t.c, test.t.a) - ├─IndexLookUp(Build) 9.99 root - │ ├─IndexRangeScan(Build) 10.00 cop[tikv] table:s, index:idx(b) range: decided by [eq(test.t.b, test.t.a)], keep order:false, stats:pseudo - │ └─Selection(Probe) 9.99 cop[tikv] not(isnull(test.t.c)) - │ └─TableRowIDScan 10.00 cop[tikv] table:s keep order:false, stats:pseudo - └─TableReader(Probe) 1.00 root data:TableRangeScan - └─TableRangeScan 1.00 cop[tikv] table:t1 range: decided by [test.t.c], keep order:false, stats:pseudo + └─StreamAgg(Probe) 10000.00 root funcs:count(1)->Column#16 + └─IndexJoin 124875.00 root inner join, inner:TableReader, outer key:test.t.c, inner key:test.t.a, equal cond:eq(test.t.c, test.t.a) + ├─IndexLookUp(Build) 99900.00 root + │ ├─IndexRangeScan(Build) 100000.00 cop[tikv] table:s, index:idx(b) range: decided by [eq(test.t.b, test.t.a)], keep order:false, stats:pseudo + │ └─Selection(Probe) 99900.00 cop[tikv] not(isnull(test.t.c)) + │ └─TableRowIDScan 100000.00 cop[tikv] table:s keep order:false, stats:pseudo + └─TableReader(Probe) 99900.00 root data:TableRangeScan + └─TableRangeScan 99900.00 cop[tikv] table:t1 range: decided by [test.t.c], keep order:false, stats:pseudo insert into t values(1, 1, 1), (2, 2 ,2), (3, 3, 3), (4, 3, 4),(5,3,5); analyze table t; explain format = 'brief' select t.c in (select count(*) from t s, t t1 where s.b = t.a and s.b = 3 and s.a = t1.a) from t; @@ -364,42 +365,42 @@ Projection 5.00 root Column#17 └─Apply 5.00 root CARTESIAN left outer semi join, other cond:eq(test.t.c, Column#16) ├─TableReader(Build) 5.00 root data:TableFullScan │ └─TableFullScan 5.00 cop[tikv] table:t keep order:false - └─StreamAgg(Probe) 1.00 root funcs:count(1)->Column#16 - └─MergeJoin 2.40 root inner join, left key:test.t.a, right key:test.t.a - ├─TableReader(Build) 4.00 root data:Selection - │ └─Selection 4.00 cop[tikv] eq(3, test.t.a) - │ └─TableFullScan 5.00 cop[tikv] table:t1 keep order:true - └─IndexReader(Probe) 2.40 root index:Selection - └─Selection 2.40 cop[tikv] eq(3, test.t.a) - └─IndexRangeScan 3.00 cop[tikv] table:s, index:idx(b) range:[3,3], keep order:true + └─StreamAgg(Probe) 5.00 root funcs:count(1)->Column#16 + └─MergeJoin 12.00 root inner join, left key:test.t.a, right key:test.t.a + ├─TableReader(Build) 20.00 root data:Selection + │ └─Selection 20.00 cop[tikv] eq(3, test.t.a) + │ └─TableFullScan 25.00 cop[tikv] table:t1 keep order:true + └─IndexReader(Probe) 12.00 root index:Selection + └─Selection 12.00 cop[tikv] eq(3, test.t.a) + └─IndexRangeScan 15.00 cop[tikv] table:s, index:idx(b) range:[3,3], keep order:true explain format = 'brief' select t.c in (select count(*) from t s left join t t1 on s.a = t1.a where 3 = t.a and s.b = 3) from t; id estRows task access object operator info Projection 5.00 root Column#17 └─Apply 5.00 root CARTESIAN left outer semi join, other cond:eq(test.t.c, Column#16) ├─TableReader(Build) 5.00 root data:TableFullScan │ └─TableFullScan 5.00 cop[tikv] table:t keep order:false - └─StreamAgg(Probe) 1.00 root funcs:count(1)->Column#16 - └─MergeJoin 2.40 root left outer join, left key:test.t.a, right key:test.t.a - ├─TableReader(Build) 4.00 root data:Selection - │ └─Selection 4.00 cop[tikv] eq(3, test.t.a) - │ └─TableFullScan 5.00 cop[tikv] table:t1 keep order:true - └─IndexReader(Probe) 2.40 root index:Selection - └─Selection 2.40 cop[tikv] eq(3, test.t.a) - └─IndexRangeScan 3.00 cop[tikv] table:s, index:idx(b) range:[3,3], keep order:true + └─StreamAgg(Probe) 5.00 root funcs:count(1)->Column#16 + └─MergeJoin 12.00 root left outer join, left key:test.t.a, right key:test.t.a + ├─TableReader(Build) 20.00 root data:Selection + │ └─Selection 20.00 cop[tikv] eq(3, test.t.a) + │ └─TableFullScan 25.00 cop[tikv] table:t1 keep order:true + └─IndexReader(Probe) 12.00 root index:Selection + └─Selection 12.00 cop[tikv] eq(3, test.t.a) + └─IndexRangeScan 15.00 cop[tikv] table:s, index:idx(b) range:[3,3], keep order:true explain format = 'brief' select t.c in (select count(*) from t s right join t t1 on s.a = t1.a where 3 = t.a and t1.b = 3) from t; id estRows task access object operator info Projection 5.00 root Column#17 └─Apply 5.00 root CARTESIAN left outer semi join, other cond:eq(test.t.c, Column#16) ├─TableReader(Build) 5.00 root data:TableFullScan │ └─TableFullScan 5.00 cop[tikv] table:t keep order:false - └─StreamAgg(Probe) 1.00 root funcs:count(1)->Column#16 - └─MergeJoin 2.40 root right outer join, left key:test.t.a, right key:test.t.a - ├─TableReader(Build) 4.00 root data:Selection - │ └─Selection 4.00 cop[tikv] eq(3, test.t.a) - │ └─TableFullScan 5.00 cop[tikv] table:s keep order:true - └─IndexReader(Probe) 2.40 root index:Selection - └─Selection 2.40 cop[tikv] eq(3, test.t.a) - └─IndexRangeScan 3.00 cop[tikv] table:t1, index:idx(b) range:[3,3], keep order:true + └─StreamAgg(Probe) 5.00 root funcs:count(1)->Column#16 + └─MergeJoin 12.00 root right outer join, left key:test.t.a, right key:test.t.a + ├─TableReader(Build) 20.00 root data:Selection + │ └─Selection 20.00 cop[tikv] eq(3, test.t.a) + │ └─TableFullScan 25.00 cop[tikv] table:s keep order:true + └─IndexReader(Probe) 12.00 root index:Selection + └─Selection 12.00 cop[tikv] eq(3, test.t.a) + └─IndexRangeScan 15.00 cop[tikv] table:t1, index:idx(b) range:[3,3], keep order:true drop table if exists t; create table t(a int unsigned not null); explain format = 'brief' select t.a = '123455' from t; @@ -525,8 +526,8 @@ StreamAgg 1.00 root funcs:count(1)->Column#22 │ └─TableReader 0.01 root data:Selection │ └─Selection 0.01 cop[tikv] eq(test.test01.period, 1), ge(test.test01.stat_date, 20191202), gt(cast(test.test01.registration_num, bigint(20) BINARY), 0), le(test.test01.stat_date, 20191202) │ └─TableFullScan 10000.00 cop[tikv] table:test01 keep order:false, stats:pseudo - └─TableReader(Probe) 1.00 root data:TableRangeScan - └─TableRangeScan 1.00 cop[tikv] table:b range: decided by [Column#16], keep order:false, stats:pseudo + └─TableReader(Probe) 2.00 root data:TableRangeScan + └─TableRangeScan 2.00 cop[tikv] table:b range: decided by [Column#16], keep order:false, stats:pseudo drop table if exists t; create table t(a int, nb int not null, nc int not null); explain format = 'brief' select ifnull(a, 0) from t; @@ -601,16 +602,16 @@ Projection 10000.00 root Column#22 └─Apply 10000.00 root left outer semi join, equal:[eq(test.t.nc, Column#21)] ├─TableReader(Build) 10000.00 root data:TableFullScan │ └─TableFullScan 10000.00 cop[tikv] table:t keep order:false, stats:pseudo - └─HashAgg(Probe) 1.00 root funcs:count(Column#23)->Column#21 - └─HashJoin 9.99 root inner join, equal:[eq(test.t.a, test.t.a)] - ├─HashAgg(Build) 7.99 root group by:test.t.a, funcs:count(Column#24)->Column#23, funcs:firstrow(test.t.a)->test.t.a - │ └─TableReader 7.99 root data:HashAgg - │ └─HashAgg 7.99 cop[tikv] group by:test.t.a, funcs:count(1)->Column#24 - │ └─Selection 9.99 cop[tikv] eq(test.t.a, test.t.a), not(isnull(test.t.a)) - │ └─TableFullScan 10000.00 cop[tikv] table:t1 keep order:false, stats:pseudo - └─TableReader(Probe) 9.99 root data:Selection - └─Selection 9.99 cop[tikv] eq(test.t.a, test.t.a), not(isnull(test.t.a)) - └─TableFullScan 10000.00 cop[tikv] table:s keep order:false, stats:pseudo + └─HashAgg(Probe) 10000.00 root funcs:count(Column#23)->Column#21 + └─HashJoin 99900.00 root inner join, equal:[eq(test.t.a, test.t.a)] + ├─HashAgg(Build) 79920.00 root group by:test.t.a, funcs:count(Column#24)->Column#23, funcs:firstrow(test.t.a)->test.t.a + │ └─TableReader 79920.00 root data:HashAgg + │ └─HashAgg 79920.00 cop[tikv] group by:test.t.a, funcs:count(1)->Column#24 + │ └─Selection 99900.00 cop[tikv] eq(test.t.a, test.t.a), not(isnull(test.t.a)) + │ └─TableFullScan 100000000.00 cop[tikv] table:t1 keep order:false, stats:pseudo + └─TableReader(Probe) 99900.00 root data:Selection + └─Selection 99900.00 cop[tikv] eq(test.t.a, test.t.a), not(isnull(test.t.a)) + └─TableFullScan 100000000.00 cop[tikv] table:s keep order:false, stats:pseudo explain format = 'brief' select * from t ta left outer join t tb on ta.nb = tb.nb and ta.a > 1 where ifnull(tb.a, 1) or tb.a is null; id estRows task access object operator info Selection 10000.00 root or(ifnull(test.t.a, 1), isnull(test.t.a)) @@ -635,16 +636,16 @@ Projection 10000.00 root Column#22 ├─Projection(Build) 10000.00 root test.t.a, ifnull(test.t.a, 1)->Column#23 │ └─TableReader 10000.00 root data:TableFullScan │ └─TableFullScan 10000.00 cop[tikv] table:t keep order:false, stats:pseudo - └─HashAgg(Probe) 1.00 root funcs:count(Column#25)->Column#21 - └─HashJoin 9.99 root inner join, equal:[eq(test.t.a, test.t.a)] - ├─HashAgg(Build) 7.99 root group by:test.t.a, funcs:count(Column#26)->Column#25, funcs:firstrow(test.t.a)->test.t.a - │ └─TableReader 7.99 root data:HashAgg - │ └─HashAgg 7.99 cop[tikv] group by:test.t.a, funcs:count(1)->Column#26 - │ └─Selection 9.99 cop[tikv] eq(test.t.a, test.t.a), not(isnull(test.t.a)) - │ └─TableFullScan 10000.00 cop[tikv] table:t1 keep order:false, stats:pseudo - └─TableReader(Probe) 9.99 root data:Selection - └─Selection 9.99 cop[tikv] eq(test.t.a, test.t.a), not(isnull(test.t.a)) - └─TableFullScan 10000.00 cop[tikv] table:s keep order:false, stats:pseudo + └─HashAgg(Probe) 10000.00 root funcs:count(Column#25)->Column#21 + └─HashJoin 99900.00 root inner join, equal:[eq(test.t.a, test.t.a)] + ├─HashAgg(Build) 79920.00 root group by:test.t.a, funcs:count(Column#26)->Column#25, funcs:firstrow(test.t.a)->test.t.a + │ └─TableReader 79920.00 root data:HashAgg + │ └─HashAgg 79920.00 cop[tikv] group by:test.t.a, funcs:count(1)->Column#26 + │ └─Selection 99900.00 cop[tikv] eq(test.t.a, test.t.a), not(isnull(test.t.a)) + │ └─TableFullScan 100000000.00 cop[tikv] table:t1 keep order:false, stats:pseudo + └─TableReader(Probe) 99900.00 root data:Selection + └─Selection 99900.00 cop[tikv] eq(test.t.a, test.t.a), not(isnull(test.t.a)) + └─TableFullScan 100000000.00 cop[tikv] table:s keep order:false, stats:pseudo drop table if exists t; create table t(a int); explain format = 'brief' select * from t where _tidb_rowid = 0; diff --git a/cmd/explaintest/r/explain_easy_stats.result b/cmd/explaintest/r/explain_easy_stats.result index c385377d512ff..d4bf4c9026156 100644 --- a/cmd/explaintest/r/explain_easy_stats.result +++ b/cmd/explaintest/r/explain_easy_stats.result @@ -1,3 +1,4 @@ +set tidb_cost_model_version=1; use test; drop table if exists t1, t2, t3; create table t1 (c1 int primary key, c2 int, c3 int, index c2 (c2)); @@ -107,11 +108,11 @@ Projection 1999.00 root eq(test.t1.c2, test.t2.c2)->Column#11 └─Apply 1999.00 root CARTESIAN left outer join ├─TableReader(Build) 1999.00 root data:TableFullScan │ └─TableFullScan 1999.00 cop[tikv] table:t1 keep order:false - └─TopN(Probe) 1.00 root test.t2.c1, offset:0, count:1 - └─IndexLookUp 1.00 root - ├─TopN(Build) 1.00 cop[tikv] test.t2.c1, offset:0, count:1 - │ └─IndexRangeScan 2.48 cop[tikv] table:t2, index:c1(c1) range: decided by [eq(test.t1.c1, test.t2.c1)], keep order:false - └─TableRowIDScan(Probe) 1.00 cop[tikv] table:t2 keep order:false + └─TopN(Probe) 1999.00 root test.t2.c1, offset:0, count:1 + └─IndexLookUp 1999.00 root + ├─TopN(Build) 1999.00 cop[tikv] test.t2.c1, offset:0, count:1 + │ └─IndexRangeScan 4960.02 cop[tikv] table:t2, index:c1(c1) range: decided by [eq(test.t1.c1, test.t2.c1)], keep order:false + └─TableRowIDScan(Probe) 1999.00 cop[tikv] table:t2 keep order:false explain format = 'brief' select * from t1 order by c1 desc limit 1; id estRows task access object operator info Limit 1.00 root offset:0, count:1 diff --git a/cmd/explaintest/r/explain_generate_column_substitute.result b/cmd/explaintest/r/explain_generate_column_substitute.result index 83422a318e619..9afb09538c3b5 100644 --- a/cmd/explaintest/r/explain_generate_column_substitute.result +++ b/cmd/explaintest/r/explain_generate_column_substitute.result @@ -1,3 +1,4 @@ +set tidb_cost_model_version=1; set names utf8mb4; use test; drop table if exists t; diff --git a/cmd/explaintest/r/explain_indexmerge.result b/cmd/explaintest/r/explain_indexmerge.result index 40e0cb4a1159d..07530b9596bb5 100644 --- a/cmd/explaintest/r/explain_indexmerge.result +++ b/cmd/explaintest/r/explain_indexmerge.result @@ -1,3 +1,4 @@ +set tidb_cost_model_version=1; drop table if exists t; create table t (a int primary key, b int, c int, d int, e int, f int); create index tb on t (b); diff --git a/cmd/explaintest/r/explain_join_stats.result b/cmd/explaintest/r/explain_join_stats.result index 15e68179c5085..e92f633b37f7f 100644 --- a/cmd/explaintest/r/explain_join_stats.result +++ b/cmd/explaintest/r/explain_join_stats.result @@ -1,3 +1,4 @@ +set tidb_cost_model_version=1; use test; drop table if exists e, lo; create table e(a int, b int, key idx_a(a), key idx_b(b)) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; @@ -20,8 +21,8 @@ StreamAgg 1.00 root funcs:count(1)->Column#5 └─IndexJoin 19977.00 root inner join, inner:IndexLookUp, outer key:test.lo.a, inner key:test.e.a, equal cond:eq(test.lo.a, test.e.a) ├─TableReader(Build) 250.00 root data:TableFullScan │ └─TableFullScan 250.00 cop[tikv] table:lo keep order:false - └─IndexLookUp(Probe) 79.91 root - ├─Selection(Build) 4080.00 cop[tikv] not(isnull(test.e.a)) - │ └─IndexRangeScan 4080.00 cop[tikv] table:e, index:idx_a(a) range: decided by [eq(test.e.a, test.lo.a)], keep order:false - └─Selection(Probe) 79.91 cop[tikv] eq(test.e.b, 22336) - └─TableRowIDScan 4080.00 cop[tikv] table:e keep order:false + └─IndexLookUp(Probe) 19977.00 root + ├─Selection(Build) 1020000.00 cop[tikv] not(isnull(test.e.a)) + │ └─IndexRangeScan 1020000.00 cop[tikv] table:e, index:idx_a(a) range: decided by [eq(test.e.a, test.lo.a)], keep order:false + └─Selection(Probe) 19977.00 cop[tikv] eq(test.e.b, 22336) + └─TableRowIDScan 1020000.00 cop[tikv] table:e keep order:false diff --git a/cmd/explaintest/r/explain_shard_index.result b/cmd/explaintest/r/explain_shard_index.result index 79276d331286c..a81e8e32d496b 100644 --- a/cmd/explaintest/r/explain_shard_index.result +++ b/cmd/explaintest/r/explain_shard_index.result @@ -1,3 +1,4 @@ +set tidb_cost_model_version=1; use test; drop table if exists test3, test5; create table test3(id int primary key clustered, a int, b int, unique key uk_expr((tidb_shard(a)),a)); diff --git a/cmd/explaintest/r/explain_stats.result b/cmd/explaintest/r/explain_stats.result index 34d7d2d719e7a..441150c11ffd0 100644 --- a/cmd/explaintest/r/explain_stats.result +++ b/cmd/explaintest/r/explain_stats.result @@ -1,3 +1,4 @@ +set tidb_cost_model_version=1; drop table if exists t; create table t (id int, c1 timestamp); load stats 's/explain_stats_t.json'; diff --git a/cmd/explaintest/r/explain_union_scan.result b/cmd/explaintest/r/explain_union_scan.result index 1ef48623efd4a..8ddc407829520 100644 --- a/cmd/explaintest/r/explain_union_scan.result +++ b/cmd/explaintest/r/explain_union_scan.result @@ -1,3 +1,4 @@ +set tidb_cost_model_version=1; drop table if exists city; CREATE TABLE `city` ( `id` varchar(70) NOT NULL, @@ -19,11 +20,11 @@ Limit 10.00 root offset:0, count:10 │ ├─UnionScan(Build) 10.00 root │ │ └─TableReader 10.00 root data:TableFullScan │ │ └─TableFullScan 10.00 cop[tikv] table:t2 keep order:false - │ └─UnionScan(Probe) 1.00 root gt(test.city.province_id, 1), lt(test.city.province_id, 100) - │ └─IndexLookUp 1.00 root - │ ├─IndexRangeScan(Build) 1.00 cop[tikv] table:t1, index:PRIMARY(id) range: decided by [eq(test.city.id, test.city.id)], keep order:false - │ └─Selection(Probe) 1.00 cop[tikv] gt(test.city.province_id, 1), lt(test.city.province_id, 100) - │ └─TableRowIDScan 1.00 cop[tikv] table:t1 keep order:false + │ └─UnionScan(Probe) 10.00 root gt(test.city.province_id, 1), lt(test.city.province_id, 100) + │ └─IndexLookUp 10.00 root + │ ├─IndexRangeScan(Build) 10.00 cop[tikv] table:t1, index:PRIMARY(id) range: decided by [eq(test.city.id, test.city.id)], keep order:false + │ └─Selection(Probe) 10.00 cop[tikv] gt(test.city.province_id, 1), lt(test.city.province_id, 100) + │ └─TableRowIDScan 10.00 cop[tikv] table:t1 keep order:false └─UnionScan(Probe) 536284.00 root gt(test.city.province_id, 1), lt(test.city.province_id, 100), not(isnull(test.city.province_id)) └─TableReader 536284.00 root data:Selection └─Selection 536284.00 cop[tikv] gt(test.city.province_id, 1), lt(test.city.province_id, 100), not(isnull(test.city.province_id)) diff --git a/cmd/explaintest/r/generated_columns.result b/cmd/explaintest/r/generated_columns.result index 59311e829ad41..d0334b401415d 100644 --- a/cmd/explaintest/r/generated_columns.result +++ b/cmd/explaintest/r/generated_columns.result @@ -1,3 +1,4 @@ +set tidb_cost_model_version=1; DROP TABLE IF EXISTS person; CREATE TABLE person ( id INT NOT NULL AUTO_INCREMENT PRIMARY KEY, diff --git a/cmd/explaintest/r/imdbload.result b/cmd/explaintest/r/imdbload.result index c3ee5badab7e6..066dc14b155ae 100644 --- a/cmd/explaintest/r/imdbload.result +++ b/cmd/explaintest/r/imdbload.result @@ -1,3 +1,4 @@ +set tidb_cost_model_version=1; CREATE DATABASE IF NOT EXISTS `imdbload`; USE `imdbload`; CREATE TABLE `kind_type` ( @@ -286,7 +287,7 @@ IndexLookUp_7 1005030.94 root └─TableRowIDScan_6(Probe) 1005030.94 cop[tikv] table:char_name keep order:false trace plan target = 'estimation' select * from char_name where ((imdb_index = 'I') and (surname_pcode < 'E436')) or ((imdb_index = 'L') and (surname_pcode < 'E436')); CE_trace -[{"table_name":"char_name","type":"Column Stats-Point","expr":"((imdb_index = 'I'))","row_count":0},{"table_name":"char_name","type":"Column Stats-Point","expr":"((imdb_index = 'L'))","row_count":0},{"table_name":"char_name","type":"Column Stats-Range","expr":"((id >= -9223372036854775808 and id <= 9223372036854775807))","row_count":4314864},{"table_name":"char_name","type":"Index Stats-Range","expr":"((imdb_index = 'I') and (surname_pcode < 'E436')) or ((imdb_index = 'L') and (surname_pcode < 'E436'))","row_count":0},{"table_name":"char_name","type":"Index Stats-Range","expr":"((surname_pcode < 'E436'))","row_count":1005030},{"table_name":"char_name","type":"Table Stats-Expression-CNF","expr":"`or`(`and`(`eq`(imdbload.char_name.imdb_index, 'I'), `lt`(imdbload.char_name.surname_pcode, 'E436')), `and`(`eq`(imdbload.char_name.imdb_index, 'L'), `lt`(imdbload.char_name.surname_pcode, 'E436')))","row_count":804024}] +[{"table_name":"char_name","type":"Column Stats-Point","expr":"((imdb_index = 'I'))","row_count":0},{"table_name":"char_name","type":"Column Stats-Point","expr":"((imdb_index = 'L'))","row_count":0},{"table_name":"char_name","type":"Column Stats-Range","expr":"((id >= -9223372036854775808 and id <= 9223372036854775807))","row_count":4314864},{"table_name":"char_name","type":"Column Stats-Range","expr":"((surname_pcode < 'E436'))","row_count":1005030},{"table_name":"char_name","type":"Index Stats-Range","expr":"((imdb_index = 'I') and (surname_pcode < 'E436')) or ((imdb_index = 'L') and (surname_pcode < 'E436'))","row_count":0},{"table_name":"char_name","type":"Index Stats-Range","expr":"((surname_pcode < 'E436'))","row_count":1005030},{"table_name":"char_name","type":"Table Stats-Expression-CNF","expr":"`or`(`and`(`eq`(imdbload.char_name.imdb_index, 'I'), `lt`(imdbload.char_name.surname_pcode, 'E436')), `and`(`eq`(imdbload.char_name.imdb_index, 'L'), `lt`(imdbload.char_name.surname_pcode, 'E436')))","row_count":804024}] explain select * from char_name where ((imdb_index = 'V') and (surname_pcode < 'L3416')); id estRows task access object operator info @@ -356,7 +357,7 @@ IndexLookUp_11 901.00 root └─TableRowIDScan_9 901.00 cop[tikv] table:keyword keep order:false trace plan target = 'estimation' select * from keyword where ((phonetic_code = 'R1652') and (keyword > 'ecg-monitor' and keyword < 'killers')); CE_trace -[{"table_name":"keyword","type":"Column Stats-Point","expr":"((phonetic_code = 'R1652'))","row_count":23480},{"table_name":"keyword","type":"Column Stats-Range","expr":"((id >= -9223372036854775808 and id <= 9223372036854775807))","row_count":236627},{"table_name":"keyword","type":"Column Stats-Range","expr":"((keyword > 'ecg-monitor' and keyword < 'killers'))","row_count":44075},{"table_name":"keyword","type":"Index Stats-Point","expr":"((phonetic_code = 'R1652'))","row_count":23480},{"table_name":"keyword","type":"Index Stats-Range","expr":"((keyword > 'ecg-monitor' and keyword < 'killers'))","row_count":44036},{"table_name":"keyword","type":"Index Stats-Range","expr":"((keyword >= 'ecg-m' and keyword <= 'kille'))","row_count":44036},{"table_name":"keyword","type":"Index Stats-Range","expr":"((phonetic_code = 'R1652') and (keyword > 'ecg-monitor' and keyword < 'killers'))","row_count":901},{"table_name":"keyword","type":"Table Stats-Expression-CNF","expr":"`and`(`eq`(imdbload.keyword.phonetic_code, 'R1652'), `and`(`gt`(imdbload.keyword.keyword, 'ecg-monitor'), `lt`(imdbload.keyword.keyword, 'killers')))","row_count":901}] +[{"table_name":"keyword","type":"Column Stats-Point","expr":"((phonetic_code = 'R1652'))","row_count":23480},{"table_name":"keyword","type":"Column Stats-Range","expr":"((id >= -9223372036854775808 and id <= 9223372036854775807))","row_count":236627},{"table_name":"keyword","type":"Column Stats-Range","expr":"((keyword > 'ecg-monitor' and keyword < 'killers'))","row_count":44075},{"table_name":"keyword","type":"Index Stats-Point","expr":"((phonetic_code = 'R1652'))","row_count":23480},{"table_name":"keyword","type":"Index Stats-Range","expr":"((keyword >= 'ecg-m' and keyword <= 'kille'))","row_count":44036},{"table_name":"keyword","type":"Index Stats-Range","expr":"((phonetic_code = 'R1652') and (keyword > 'ecg-monitor' and keyword < 'killers'))","row_count":901},{"table_name":"keyword","type":"Table Stats-Expression-CNF","expr":"`and`(`eq`(imdbload.keyword.phonetic_code, 'R1652'), `and`(`gt`(imdbload.keyword.keyword, 'ecg-monitor'), `lt`(imdbload.keyword.keyword, 'killers')))","row_count":901}] explain select * from cast_info where (nr_order is null) and (person_role_id = 2) and (note >= '(key set pa: Florida'); id estRows task access object operator info diff --git a/cmd/explaintest/r/index_join.result b/cmd/explaintest/r/index_join.result index 771c95ad5e8b1..413a726601f97 100644 --- a/cmd/explaintest/r/index_join.result +++ b/cmd/explaintest/r/index_join.result @@ -1,3 +1,4 @@ +set tidb_cost_model_version=1; use test; drop table if exists t1, t2; create table t1(a bigint, b bigint, index idx(a)); @@ -36,8 +37,8 @@ id estRows task access object operator info IndexJoin 8000.00 root semi join, inner:IndexReader, outer key:test.t1.a, inner key:test.t2.a, equal cond:eq(test.t1.a, test.t2.a) ├─TableReader(Build) 10000.00 root data:TableFullScan │ └─TableFullScan 10000.00 cop[tikv] table:t1 keep order:false, stats:pseudo -└─IndexReader(Probe) 1.25 root index:IndexRangeScan - └─IndexRangeScan 1.25 cop[tikv] table:t2, index:a(a) range: decided by [eq(test.t2.a, test.t1.a)], keep order:false, stats:pseudo +└─IndexReader(Probe) 12500.00 root index:IndexRangeScan + └─IndexRangeScan 12500.00 cop[tikv] table:t2, index:a(a) range: decided by [eq(test.t2.a, test.t1.a)], keep order:false, stats:pseudo show warnings; Level Code Message set @@tidb_opt_insubq_to_join_and_agg=1; @@ -50,6 +51,6 @@ IndexJoin 10000.00 root inner join, inner:IndexLookUp, outer key:test.t2.a, inn ├─StreamAgg(Build) 8000.00 root group by:test.t2.a, funcs:firstrow(test.t2.a)->test.t2.a │ └─IndexReader 10000.00 root index:IndexFullScan │ └─IndexFullScan 10000.00 cop[tikv] table:t2, index:a(a) keep order:true, stats:pseudo -└─IndexLookUp(Probe) 1.25 root - ├─IndexRangeScan(Build) 1.25 cop[tikv] table:t1, index:a(a) range: decided by [eq(test.t1.a, test.t2.a)], keep order:false, stats:pseudo - └─TableRowIDScan(Probe) 1.25 cop[tikv] table:t1 keep order:false, stats:pseudo +└─IndexLookUp(Probe) 10000.00 root + ├─IndexRangeScan(Build) 10000.00 cop[tikv] table:t1, index:a(a) range: decided by [eq(test.t1.a, test.t2.a)], keep order:false, stats:pseudo + └─TableRowIDScan(Probe) 10000.00 cop[tikv] table:t1 keep order:false, stats:pseudo diff --git a/cmd/explaintest/r/index_merge.result b/cmd/explaintest/r/index_merge.result index 3f2f26fd99e07..1870b6bcd8d5d 100644 --- a/cmd/explaintest/r/index_merge.result +++ b/cmd/explaintest/r/index_merge.result @@ -1,3 +1,4 @@ +set tidb_cost_model_version=1; ///// SUBQUERY drop table if exists t1; create table t1(c1 int, c2 int, c3 int, key(c1), key(c2)); @@ -511,11 +512,11 @@ Sort_12 1841.86 root test.t1.c1 │ ├─IndexRangeScan_19(Build) 3323.33 cop[tikv] table:t1, index:c2(c2) range:[-inf,-1), keep order:false, stats:pseudo │ └─Selection_21(Probe) 1841.86 cop[tikv] lt(test.t1.c3, 10) │ └─TableRowIDScan_20 5542.21 cop[tikv] table:t1 keep order:false, stats:pseudo - └─MaxOneRow_23(Probe) 1.00 root - └─StreamAgg_35 2.00 root group by:test.t2.c1, funcs:avg(Column#17, Column#18)->Column#9 - └─IndexReader_36 2.00 root index:StreamAgg_27 - └─StreamAgg_27 2.00 cop[tikv] group by:test.t2.c1, funcs:count(test.t2.c1)->Column#17, funcs:sum(test.t2.c1)->Column#18 - └─IndexRangeScan_34 2.50 cop[tikv] table:t2, index:c1(c1) range: decided by [eq(test.t1.c1, test.t2.c1)], keep order:true, stats:pseudo + └─MaxOneRow_23(Probe) 1841.86 root + └─StreamAgg_35 3683.72 root group by:test.t2.c1, funcs:avg(Column#17, Column#18)->Column#9 + └─IndexReader_36 3683.72 root index:StreamAgg_27 + └─StreamAgg_27 3683.72 cop[tikv] group by:test.t2.c1, funcs:count(test.t2.c1)->Column#17, funcs:sum(test.t2.c1)->Column#18 + └─IndexRangeScan_34 4604.65 cop[tikv] table:t2, index:c1(c1) range: decided by [eq(test.t1.c1, test.t2.c1)], keep order:true, stats:pseudo select /*+ use_index_merge(t1) */ * from t1 where t1.c1 = (select avg(t2.c1) from t2 where t1.c1 = t2.c1 group by t2.c1) and (c1 < 10 or c2 < -1) and c3 < 10 order by 1; c1 c2 c3 1 1 1 @@ -534,14 +535,14 @@ Sort_16 1841.86 root test.t1.c1 │ ├─IndexRangeScan_23(Build) 3323.33 cop[tikv] table:t1, index:c2(c2) range:[-inf,-1), keep order:false, stats:pseudo │ └─Selection_25(Probe) 1841.86 cop[tikv] lt(test.t1.c3, 10) │ └─TableRowIDScan_24 5542.21 cop[tikv] table:t1 keep order:false, stats:pseudo - └─TopN_29(Probe) 1.00 root test.t2.c1, offset:2, count:1 - └─HashAgg_36 2660.44 root group by:Column#21, funcs:avg(Column#19)->Column#9, funcs:firstrow(Column#20)->test.t2.c1 - └─Projection_48 3325.55 root cast(test.t2.c1, decimal(10,0) BINARY)->Column#19, test.t2.c1, test.t2.c1 - └─IndexMerge_41 3325.55 root - ├─Selection_38(Build) 3.32 cop[tikv] eq(test.t1.c1, test.t2.c1) - │ └─IndexRangeScan_37 3323.33 cop[tikv] table:t2, index:c1(c1) range:[-inf,10), keep order:false, stats:pseudo - ├─IndexRangeScan_39(Build) 3323.33 cop[tikv] table:t2, index:c2(c2) range:[-inf,10), keep order:false, stats:pseudo - └─TableRowIDScan_40(Probe) 3325.55 cop[tikv] table:t2 keep order:false, stats:pseudo + └─TopN_29(Probe) 1841.86 root test.t2.c1, offset:2, count:1 + └─HashAgg_36 4900166.23 root group by:Column#21, funcs:avg(Column#19)->Column#9, funcs:firstrow(Column#20)->test.t2.c1 + └─Projection_48 6125207.79 root cast(test.t2.c1, decimal(10,0) BINARY)->Column#19, test.t2.c1, test.t2.c1 + └─IndexMerge_41 6125207.79 root + ├─Selection_38(Build) 6121.12 cop[tikv] eq(test.t1.c1, test.t2.c1) + │ └─IndexRangeScan_37 6121120.92 cop[tikv] table:t2, index:c1(c1) range:[-inf,10), keep order:false, stats:pseudo + ├─IndexRangeScan_39(Build) 6121120.92 cop[tikv] table:t2, index:c2(c2) range:[-inf,10), keep order:false, stats:pseudo + └─TableRowIDScan_40(Probe) 6125207.79 cop[tikv] table:t2 keep order:false, stats:pseudo select /*+ use_index_merge(t1) */ * from t1 where t1.c1 = (select /*+ use_index_merge(t2) */ avg(t2.c1) from t2 where t1.c1 = t2.c1 and t2.c1 < 10 or t2.c2 < 10 group by t2.c1 order by c1 limit 1 offset 2) and (c1 < 10 or c2 < -1) and c3 < 10 order by 1; c1 c2 c3 3 3 3 diff --git a/cmd/explaintest/r/naaj.result b/cmd/explaintest/r/naaj.result index bc5bda03fbbc3..e46a16a489333 100644 --- a/cmd/explaintest/r/naaj.result +++ b/cmd/explaintest/r/naaj.result @@ -1,3 +1,4 @@ +set tidb_cost_model_version=1; use test; set @@session.tidb_enable_null_aware_anti_join=1; select "***************************************************** PART 1 *****************************************************************" as name; diff --git a/cmd/explaintest/r/new_character_set.result b/cmd/explaintest/r/new_character_set.result index 18b0f44662025..52a761d6a6da6 100644 --- a/cmd/explaintest/r/new_character_set.result +++ b/cmd/explaintest/r/new_character_set.result @@ -1,3 +1,4 @@ +set tidb_cost_model_version=1; drop table if exists t; set names utf8mb4; create table t (a varchar(255) charset utf8mb4); diff --git a/cmd/explaintest/r/new_character_set_builtin.result b/cmd/explaintest/r/new_character_set_builtin.result index 96f903a13ee1b..f044ecca1019c 100644 --- a/cmd/explaintest/r/new_character_set_builtin.result +++ b/cmd/explaintest/r/new_character_set_builtin.result @@ -1,3 +1,4 @@ +set tidb_cost_model_version=1; set names utf8mb4; set @@sql_mode = ''; drop table if exists t; diff --git a/cmd/explaintest/r/new_character_set_invalid.result b/cmd/explaintest/r/new_character_set_invalid.result index bb9ae4aa6db2b..7eea6348e2bc7 100644 --- a/cmd/explaintest/r/new_character_set_invalid.result +++ b/cmd/explaintest/r/new_character_set_invalid.result @@ -1,3 +1,4 @@ +set tidb_cost_model_version=1; set @@sql_mode = 'strict_trans_tables'; drop table if exists t; create table t (a varchar(255) charset gbk, b varchar(255) charset ascii, c varchar(255) charset utf8); diff --git a/cmd/explaintest/r/select.result b/cmd/explaintest/r/select.result index 9577b28e47c35..02f2486542f45 100644 --- a/cmd/explaintest/r/select.result +++ b/cmd/explaintest/r/select.result @@ -1,3 +1,4 @@ +set tidb_cost_model_version=1; set @@tidb_enable_outer_join_reorder=true; DROP TABLE IF EXISTS t; CREATE TABLE t ( diff --git a/cmd/explaintest/r/show.result b/cmd/explaintest/r/show.result index 6dfbf77c4af44..e434f794cb313 100644 --- a/cmd/explaintest/r/show.result +++ b/cmd/explaintest/r/show.result @@ -1,3 +1,4 @@ +set tidb_cost_model_version=1; show tables like '%xx'; Tables_in_test (%xx) show databases like '%xx'; diff --git a/cmd/explaintest/r/subquery.result b/cmd/explaintest/r/subquery.result index cfb170dabf0cd..0cf9302f425c0 100644 --- a/cmd/explaintest/r/subquery.result +++ b/cmd/explaintest/r/subquery.result @@ -1,3 +1,4 @@ +set tidb_cost_model_version=1; drop table if exists t1; drop table if exists t2; create table t1(a bigint, b bigint); @@ -21,12 +22,12 @@ Projection 5.00 root Column#22 └─Apply 5.00 root CARTESIAN left outer semi join, other cond:eq(test.t.c, Column#21) ├─TableReader(Build) 5.00 root data:TableFullScan │ └─TableFullScan 5.00 cop[tikv] table:t keep order:false - └─StreamAgg(Probe) 1.00 root funcs:count(1)->Column#21 - └─IndexJoin 0.22 root inner join, inner:TableReader, outer key:test.t.a, inner key:test.t.a, equal cond:eq(test.t.a, test.t.a) - ├─IndexReader(Build) 0.45 root index:IndexRangeScan - │ └─IndexRangeScan 0.45 cop[tikv] table:s, index:idx(b, c, d) range: decided by [eq(test.t.b, 1) eq(test.t.c, 1) eq(test.t.d, test.t.a)], keep order:false - └─TableReader(Probe) 1.00 root data:TableRangeScan - └─TableRangeScan 1.00 cop[tikv] table:t1 range: decided by [test.t.a], keep order:false + └─StreamAgg(Probe) 5.00 root funcs:count(1)->Column#21 + └─IndexJoin 1.12 root inner join, inner:TableReader, outer key:test.t.a, inner key:test.t.a, equal cond:eq(test.t.a, test.t.a) + ├─IndexReader(Build) 2.24 root index:IndexRangeScan + │ └─IndexRangeScan 2.24 cop[tikv] table:s, index:idx(b, c, d) range: decided by [eq(test.t.b, 1) eq(test.t.c, 1) eq(test.t.d, test.t.a)], keep order:false + └─TableReader(Probe) 2.24 root data:TableRangeScan + └─TableRangeScan 2.24 cop[tikv] table:t1 range: decided by [test.t.a], keep order:false drop table if exists t; create table t(a int, b int, c int); explain format = 'brief' select a from t t1 where t1.a = (select max(t2.a) from t t2 where t1.b=t2.b and t1.c=t2.b); @@ -58,10 +59,10 @@ id estRows task access object operator info Apply 10000.00 root CARTESIAN anti semi join, other cond:eq(test.stu.name, Column#8) ├─TableReader(Build) 10000.00 root data:TableFullScan │ └─TableFullScan 10000.00 cop[tikv] table:stu keep order:false, stats:pseudo -└─Projection(Probe) 10.00 root guo->Column#8 - └─TableReader 10.00 root data:Selection - └─Selection 10.00 cop[tikv] eq(test.exam.stu_id, test.stu.id) - └─TableFullScan 10000.00 cop[tikv] table:exam keep order:false, stats:pseudo +└─Projection(Probe) 100000.00 root guo->Column#8 + └─TableReader 100000.00 root data:Selection + └─Selection 100000.00 cop[tikv] eq(test.exam.stu_id, test.stu.id) + └─TableFullScan 100000000.00 cop[tikv] table:exam keep order:false, stats:pseudo select * from stu where stu.name not in (select 'guo' from exam where exam.stu_id = stu.id); id name set names utf8mb4; diff --git a/cmd/explaintest/r/topn_push_down.result b/cmd/explaintest/r/topn_push_down.result index f45d88ea56a5c..5317f0161aded 100644 --- a/cmd/explaintest/r/topn_push_down.result +++ b/cmd/explaintest/r/topn_push_down.result @@ -1,3 +1,4 @@ +set tidb_cost_model_version=1; CREATE TABLE `tr` ( `id` bigint(20) NOT NULL, `biz_date` date NOT NULL, @@ -176,13 +177,13 @@ Limit 0.00 root offset:0, count:5 │ │ │ └─IndexRangeScan 10.00 cop[tikv] table:tr, index:idx_shop_identy_trade_status_business_type(shop_identy, trade_status, business_type, trade_pay_status, trade_type, delivery_type, source, biz_date) range:[810094178,810094178], keep order:false, stats:pseudo │ │ └─Selection(Probe) 0.00 cop[tikv] eq(test.tr.brand_identy, 32314), eq(test.tr.domain_type, 2) │ │ └─TableRowIDScan 0.00 cop[tikv] table:tr keep order:false, stats:pseudo - │ └─IndexLookUp(Probe) 1.25 root - │ ├─IndexRangeScan(Build) 50.00 cop[tikv] table:te, index:idx_trade_id(trade_id) range: decided by [eq(test.te.trade_id, test.tr.id)], keep order:false, stats:pseudo - │ └─Selection(Probe) 1.25 cop[tikv] ge(test.te.expect_time, 2018-04-23 00:00:00.000000), le(test.te.expect_time, 2018-04-23 23:59:59.000000) - │ └─TableRowIDScan 50.00 cop[tikv] table:te keep order:false, stats:pseudo - └─IndexReader(Probe) 1.25 root index:Selection - └─Selection 1.25 cop[tikv] not(isnull(test.p.relate_id)) - └─IndexRangeScan 1.25 cop[tikv] table:p, index:payment_relate_id(relate_id) range: decided by [eq(test.p.relate_id, test.tr.id)], keep order:false, stats:pseudo + │ └─IndexLookUp(Probe) 0.00 root + │ ├─IndexRangeScan(Build) 0.00 cop[tikv] table:te, index:idx_trade_id(trade_id) range: decided by [eq(test.te.trade_id, test.tr.id)], keep order:false, stats:pseudo + │ └─Selection(Probe) 0.00 cop[tikv] ge(test.te.expect_time, 2018-04-23 00:00:00.000000), le(test.te.expect_time, 2018-04-23 23:59:59.000000) + │ └─TableRowIDScan 0.00 cop[tikv] table:te keep order:false, stats:pseudo + └─IndexReader(Probe) 0.00 root index:Selection + └─Selection 0.00 cop[tikv] not(isnull(test.p.relate_id)) + └─IndexRangeScan 0.00 cop[tikv] table:p, index:payment_relate_id(relate_id) range: decided by [eq(test.p.relate_id, test.tr.id)], keep order:false, stats:pseudo desc select 1 as a from dual order by a limit 1; id estRows task access object operator info Projection_6 1.00 root 1->Column#1 @@ -197,24 +198,24 @@ Apply_15 9990.00 root semi join, equal:[eq(test.t1.a, test.t2.a)] ├─TableReader_18(Build) 9990.00 root data:Selection_17 │ └─Selection_17 9990.00 cop[tikv] not(isnull(test.t1.a)) │ └─TableFullScan_16 10000.00 cop[tikv] table:t1 keep order:false, stats:pseudo -└─Selection_19(Probe) 0.80 root not(isnull(test.t2.a)) - └─Limit_20 1.00 root offset:0, count:1 - └─TableReader_25 1.00 root data:Limit_24 - └─Limit_24 1.00 cop[tikv] offset:0, count:1 - └─Selection_23 1.00 cop[tikv] gt(test.t2.b, test.t1.b) - └─TableFullScan_22 1.25 cop[tikv] table:t2 keep order:false, stats:pseudo +└─Selection_19(Probe) 7992.00 root not(isnull(test.t2.a)) + └─Limit_20 9990.00 root offset:0, count:1 + └─TableReader_25 9990.00 root data:Limit_24 + └─Limit_24 9990.00 cop[tikv] offset:0, count:1 + └─Selection_23 9990.00 cop[tikv] gt(test.t2.b, test.t1.b) + └─TableFullScan_22 12487.50 cop[tikv] table:t2 keep order:false, stats:pseudo desc select * from t1 where t1.a in (select a from (select t2.a as a, t1.b as b from t2 where t2.b > t1.b) x order by b limit 1); id estRows task access object operator info Apply_17 9990.00 root semi join, equal:[eq(test.t1.a, test.t2.a)] ├─TableReader_20(Build) 9990.00 root data:Selection_19 │ └─Selection_19 9990.00 cop[tikv] not(isnull(test.t1.a)) │ └─TableFullScan_18 10000.00 cop[tikv] table:t1 keep order:false, stats:pseudo -└─Selection_21(Probe) 0.80 root not(isnull(test.t2.a)) - └─Limit_23 1.00 root offset:0, count:1 - └─TableReader_28 1.00 root data:Limit_27 - └─Limit_27 1.00 cop[tikv] offset:0, count:1 - └─Selection_26 1.00 cop[tikv] gt(test.t2.b, test.t1.b) - └─TableFullScan_25 1.25 cop[tikv] table:t2 keep order:false, stats:pseudo +└─Selection_21(Probe) 7992.00 root not(isnull(test.t2.a)) + └─Limit_23 9990.00 root offset:0, count:1 + └─TableReader_28 9990.00 root data:Limit_27 + └─Limit_27 9990.00 cop[tikv] offset:0, count:1 + └─Selection_26 9990.00 cop[tikv] gt(test.t2.b, test.t1.b) + └─TableFullScan_25 12487.50 cop[tikv] table:t2 keep order:false, stats:pseudo drop table if exists t; create table t(a int not null, index idx(a)); explain format = 'brief' select /*+ TIDB_INLJ(t2) */ * from t t1 join t t2 on t1.a = t2.a limit 5; @@ -223,8 +224,8 @@ Limit 5.00 root offset:0, count:5 └─IndexJoin 5.00 root inner join, inner:IndexReader, outer key:test.t.a, inner key:test.t.a, equal cond:eq(test.t.a, test.t.a) ├─TableReader(Build) 4.00 root data:TableFullScan │ └─TableFullScan 4.00 cop[tikv] table:t1 keep order:false, stats:pseudo - └─IndexReader(Probe) 1.25 root index:IndexRangeScan - └─IndexRangeScan 1.25 cop[tikv] table:t2, index:idx(a) range: decided by [eq(test.t.a, test.t.a)], keep order:false, stats:pseudo + └─IndexReader(Probe) 5.00 root index:IndexRangeScan + └─IndexRangeScan 5.00 cop[tikv] table:t2, index:idx(a) range: decided by [eq(test.t.a, test.t.a)], keep order:false, stats:pseudo explain format = 'brief' select /*+ TIDB_INLJ(t2) */ * from t t1 left join t t2 on t1.a = t2.a where t2.a is null limit 5; id estRows task access object operator info Limit 5.00 root offset:0, count:5 @@ -232,8 +233,8 @@ Limit 5.00 root offset:0, count:5 └─IndexJoin 5.00 root left outer join, inner:IndexReader, outer key:test.t.a, inner key:test.t.a, equal cond:eq(test.t.a, test.t.a) ├─TableReader(Build) 4.00 root data:TableFullScan │ └─TableFullScan 4.00 cop[tikv] table:t1 keep order:false, stats:pseudo - └─IndexReader(Probe) 1.25 root index:IndexRangeScan - └─IndexRangeScan 1.25 cop[tikv] table:t2, index:idx(a) range: decided by [eq(test.t.a, test.t.a)], keep order:false, stats:pseudo + └─IndexReader(Probe) 5.00 root index:IndexRangeScan + └─IndexRangeScan 5.00 cop[tikv] table:t2, index:idx(a) range: decided by [eq(test.t.a, test.t.a)], keep order:false, stats:pseudo explain format = 'brief' select /*+ TIDB_SMJ(t1, t2) */ * from t t1 join t t2 on t1.a = t2.a limit 5; id estRows task access object operator info Limit 5.00 root offset:0, count:5 diff --git a/cmd/explaintest/r/topn_pushdown.result b/cmd/explaintest/r/topn_pushdown.result index 1b0be3c8e2190..e765953c727b3 100644 --- a/cmd/explaintest/r/topn_pushdown.result +++ b/cmd/explaintest/r/topn_pushdown.result @@ -1,3 +1,4 @@ +set tidb_cost_model_version=1; explain format = 'brief' select * from ((select 4 as a) union all (select 33 as a)) tmp order by a desc limit 1; id estRows task access object operator info TopN 1.00 root Column#3:desc, offset:0, count:1 diff --git a/cmd/explaintest/r/tpch.result b/cmd/explaintest/r/tpch.result index f1100126e8812..28328e4c63241 100644 --- a/cmd/explaintest/r/tpch.result +++ b/cmd/explaintest/r/tpch.result @@ -1,3 +1,4 @@ +set tidb_cost_model_version=1; CREATE DATABASE IF NOT EXISTS TPCH; USE TPCH; CREATE TABLE IF NOT EXISTS nation ( N_NATIONKEY INTEGER NOT NULL, @@ -262,10 +263,10 @@ Projection 10.00 root tpch.lineitem.l_orderkey, Column#35, tpch.orders.o_orderd │ └─TableReader(Probe) 36870000.00 root data:Selection │ └─Selection 36870000.00 cop[tikv] lt(tpch.orders.o_orderdate, 1995-03-13 00:00:00.000000) │ └─TableFullScan 75000000.00 cop[tikv] table:orders keep order:false - └─IndexLookUp(Probe) 4.05 root - ├─IndexRangeScan(Build) 7.45 cop[tikv] table:lineitem, index:PRIMARY(L_ORDERKEY, L_LINENUMBER) range: decided by [eq(tpch.lineitem.l_orderkey, tpch.orders.o_orderkey)], keep order:false - └─Selection(Probe) 4.05 cop[tikv] gt(tpch.lineitem.l_shipdate, 1995-03-13 00:00:00.000000) - └─TableRowIDScan 7.45 cop[tikv] table:lineitem keep order:false + └─IndexLookUp(Probe) 91515927.49 root + ├─IndexRangeScan(Build) 168388203.74 cop[tikv] table:lineitem, index:PRIMARY(L_ORDERKEY, L_LINENUMBER) range: decided by [eq(tpch.lineitem.l_orderkey, tpch.orders.o_orderkey)], keep order:false + └─Selection(Probe) 91515927.49 cop[tikv] gt(tpch.lineitem.l_shipdate, 1995-03-13 00:00:00.000000) + └─TableRowIDScan 168388203.74 cop[tikv] table:lineitem keep order:false /* Q4 Order Priority Checking Query This query determines how well the order priority system is working and gives an assessment of customer satisfaction. @@ -303,10 +304,10 @@ Sort 1.00 root tpch.orders.o_orderpriority ├─TableReader(Build) 2925937.50 root data:Selection │ └─Selection 2925937.50 cop[tikv] ge(tpch.orders.o_orderdate, 1995-01-01 00:00:00.000000), lt(tpch.orders.o_orderdate, 1995-04-01 00:00:00.000000) │ └─TableFullScan 75000000.00 cop[tikv] table:orders keep order:false - └─IndexLookUp(Probe) 4.05 root - ├─IndexRangeScan(Build) 5.06 cop[tikv] table:lineitem, index:PRIMARY(L_ORDERKEY, L_LINENUMBER) range: decided by [eq(tpch.lineitem.l_orderkey, tpch.orders.o_orderkey)], keep order:false - └─Selection(Probe) 4.05 cop[tikv] lt(tpch.lineitem.l_commitdate, tpch.lineitem.l_receiptdate) - └─TableRowIDScan 5.06 cop[tikv] table:lineitem keep order:false + └─IndexLookUp(Probe) 11851908.75 root + ├─IndexRangeScan(Build) 14814885.94 cop[tikv] table:lineitem, index:PRIMARY(L_ORDERKEY, L_LINENUMBER) range: decided by [eq(tpch.lineitem.l_orderkey, tpch.orders.o_orderkey)], keep order:false + └─Selection(Probe) 11851908.75 cop[tikv] lt(tpch.lineitem.l_commitdate, tpch.lineitem.l_receiptdate) + └─TableRowIDScan 14814885.94 cop[tikv] table:lineitem keep order:false /* Q5 Local Supplier Volume Query This query lists the revenue volume done through local suppliers. @@ -469,8 +470,8 @@ Sort 769.96 root tpch.nation.n_name, tpch.nation.n_name, Column#50 │ └─TableReader(Probe) 91446230.29 root data:Selection │ └─Selection 91446230.29 cop[tikv] ge(tpch.lineitem.l_shipdate, 1995-01-01 00:00:00.000000), le(tpch.lineitem.l_shipdate, 1996-12-31 00:00:00.000000) │ └─TableFullScan 300005811.00 cop[tikv] table:lineitem keep order:false - └─TableReader(Probe) 1.00 root data:TableRangeScan - └─TableRangeScan 1.00 cop[tikv] table:orders range: decided by [tpch.lineitem.l_orderkey], keep order:false + └─TableReader(Probe) 24465505.20 root data:TableRangeScan + └─TableRangeScan 24465505.20 cop[tikv] table:orders range: decided by [tpch.lineitem.l_orderkey], keep order:false /* Q8 National Market Share Query This query determines how the market share of a given nation within a given region has changed over two years for @@ -548,9 +549,9 @@ Sort 719.02 root Column#62 │ └─TableReader(Probe) 22413367.93 root data:Selection │ └─Selection 22413367.93 cop[tikv] ge(tpch.orders.o_orderdate, 1995-01-01 00:00:00.000000), le(tpch.orders.o_orderdate, 1996-12-31 00:00:00.000000) │ └─TableFullScan 75000000.00 cop[tikv] table:orders keep order:false - └─IndexLookUp(Probe) 4.05 root - ├─IndexRangeScan(Build) 4.05 cop[tikv] table:lineitem, index:PRIMARY(L_ORDERKEY, L_LINENUMBER) range: decided by [eq(tpch.lineitem.l_orderkey, tpch.orders.o_orderkey)], keep order:false - └─TableRowIDScan(Probe) 4.05 cop[tikv] table:lineitem keep order:false + └─IndexLookUp(Probe) 90788402.51 root + ├─IndexRangeScan(Build) 90788402.51 cop[tikv] table:lineitem, index:PRIMARY(L_ORDERKEY, L_LINENUMBER) range: decided by [eq(tpch.lineitem.l_orderkey, tpch.orders.o_orderkey)], keep order:false + └─TableRowIDScan(Probe) 90788402.51 cop[tikv] table:lineitem keep order:false /* Q9 Product Type Profit Measure Query This query determines how much profit is made on a given line of parts, broken out by supplier nation and year. @@ -677,10 +678,10 @@ Projection 20.00 root tpch.customer.c_custkey, tpch.customer.c_name, Column#39, │ │ └─TableFullScan 25.00 cop[tikv] table:nation keep order:false │ └─TableReader(Probe) 7500000.00 root data:TableFullScan │ └─TableFullScan 7500000.00 cop[tikv] table:customer keep order:false - └─IndexLookUp(Probe) 4.05 root - ├─IndexRangeScan(Build) 16.44 cop[tikv] table:lineitem, index:PRIMARY(L_ORDERKEY, L_LINENUMBER) range: decided by [eq(tpch.lineitem.l_orderkey, tpch.orders.o_orderkey)], keep order:false - └─Selection(Probe) 4.05 cop[tikv] eq(tpch.lineitem.l_returnflag, "R") - └─TableRowIDScan 16.44 cop[tikv] table:lineitem keep order:false + └─IndexLookUp(Probe) 12222016.17 root + ├─IndexRangeScan(Build) 49605980.10 cop[tikv] table:lineitem, index:PRIMARY(L_ORDERKEY, L_LINENUMBER) range: decided by [eq(tpch.lineitem.l_orderkey, tpch.orders.o_orderkey)], keep order:false + └─Selection(Probe) 12222016.17 cop[tikv] eq(tpch.lineitem.l_returnflag, "R") + └─TableRowIDScan 49605980.10 cop[tikv] table:lineitem keep order:false /* Q11 Important Stock Identification Query This query finds the most important subset of suppliers' stock in a given nation. @@ -780,8 +781,8 @@ Sort 1.00 root tpch.lineitem.l_shipmode ├─TableReader(Build) 10023369.01 root data:Selection │ └─Selection 10023369.01 cop[tikv] ge(tpch.lineitem.l_receiptdate, 1997-01-01 00:00:00.000000), in(tpch.lineitem.l_shipmode, "RAIL", "FOB"), lt(tpch.lineitem.l_commitdate, tpch.lineitem.l_receiptdate), lt(tpch.lineitem.l_receiptdate, 1998-01-01 00:00:00.000000), lt(tpch.lineitem.l_shipdate, tpch.lineitem.l_commitdate) │ └─TableFullScan 300005811.00 cop[tikv] table:lineitem keep order:false - └─TableReader(Probe) 1.00 root data:TableRangeScan - └─TableRangeScan 1.00 cop[tikv] table:orders range: decided by [tpch.lineitem.l_orderkey], keep order:false + └─TableReader(Probe) 10023369.01 root data:TableRangeScan + └─TableRangeScan 10023369.01 cop[tikv] table:orders range: decided by [tpch.lineitem.l_orderkey], keep order:false /* Q13 Customer Distribution Query This query seeks relationships between customers and the size of their orders. @@ -851,8 +852,8 @@ Projection 1.00 root div(mul(100.00, Column#27), Column#28)->Column#29 ├─TableReader(Build) 4121984.49 root data:Selection │ └─Selection 4121984.49 cop[tikv] ge(tpch.lineitem.l_shipdate, 1996-12-01 00:00:00.000000), lt(tpch.lineitem.l_shipdate, 1997-01-01 00:00:00.000000) │ └─TableFullScan 300005811.00 cop[tikv] table:lineitem keep order:false - └─TableReader(Probe) 1.00 root data:TableRangeScan - └─TableRangeScan 1.00 cop[tikv] table:part range: decided by [tpch.lineitem.l_partkey], keep order:false + └─TableReader(Probe) 4121984.49 root data:TableRangeScan + └─TableRangeScan 4121984.49 cop[tikv] table:part range: decided by [tpch.lineitem.l_partkey], keep order:false /* Q15 Top Supplier Query This query determines the top supplier so it can be rewarded, given more business, or identified for special recognition. @@ -945,8 +946,8 @@ Sort 14.41 root Column#23:desc, tpch.part.p_brand, tpch.part.p_type, tpch.part. ├─TableReader(Build) 1200618.43 root data:Selection │ └─Selection 1200618.43 cop[tikv] in(tpch.part.p_size, 48, 19, 12, 4, 41, 7, 21, 39), ne(tpch.part.p_brand, "Brand#34"), not(like(tpch.part.p_type, "LARGE BRUSHED%", 92)) │ └─TableFullScan 10000000.00 cop[tikv] table:part keep order:false - └─IndexReader(Probe) 4.02 root index:IndexRangeScan - └─IndexRangeScan 4.02 cop[tikv] table:partsupp, index:PRIMARY(PS_PARTKEY, PS_SUPPKEY) range: decided by [eq(tpch.partsupp.ps_partkey, tpch.part.p_partkey)], keep order:false + └─IndexReader(Probe) 4829985.30 root index:IndexRangeScan + └─IndexRangeScan 4829985.30 cop[tikv] table:partsupp, index:PRIMARY(PS_PARTKEY, PS_SUPPKEY) range: decided by [eq(tpch.partsupp.ps_partkey, tpch.part.p_partkey)], keep order:false /* Q17 Small-Quantity-Order Revenue Query This query determines how much average yearly revenue would be lost if orders were no longer filled for small @@ -1167,9 +1168,9 @@ Sort 20000.00 root tpch.supplier.s_name │ ├─TableReader(Build) 80007.93 root data:Selection │ │ └─Selection 80007.93 cop[tikv] like(tpch.part.p_name, "green%", 92) │ │ └─TableFullScan 10000000.00 cop[tikv] table:part keep order:false - │ └─IndexLookUp(Probe) 4.02 root - │ ├─IndexRangeScan(Build) 4.02 cop[tikv] table:partsupp, index:PRIMARY(PS_PARTKEY, PS_SUPPKEY) range: decided by [eq(tpch.partsupp.ps_partkey, tpch.part.p_partkey)], keep order:false - │ └─TableRowIDScan(Probe) 4.02 cop[tikv] table:partsupp keep order:false + │ └─IndexLookUp(Probe) 321865.05 root + │ ├─IndexRangeScan(Build) 321865.05 cop[tikv] table:partsupp, index:PRIMARY(PS_PARTKEY, PS_SUPPKEY) range: decided by [eq(tpch.partsupp.ps_partkey, tpch.part.p_partkey)], keep order:false + │ └─TableRowIDScan(Probe) 321865.05 cop[tikv] table:partsupp keep order:false └─TableReader(Probe) 44189356.65 root data:Selection └─Selection 44189356.65 cop[tikv] ge(tpch.lineitem.l_shipdate, 1993-01-01 00:00:00.000000), lt(tpch.lineitem.l_shipdate, 1994-01-01 00:00:00.000000) └─TableFullScan 300005811.00 cop[tikv] table:lineitem keep order:false @@ -1238,16 +1239,16 @@ Projection 100.00 root tpch.supplier.s_name, Column#72 │ │ │ └─TableReader(Probe) 240004648.80 root data:Selection │ │ │ └─Selection 240004648.80 cop[tikv] gt(tpch.lineitem.l_receiptdate, tpch.lineitem.l_commitdate) │ │ │ └─TableFullScan 300005811.00 cop[tikv] table:l1 keep order:false - │ │ └─TableReader(Probe) 0.49 root data:Selection - │ │ └─Selection 0.49 cop[tikv] eq(tpch.orders.o_orderstatus, "F") - │ │ └─TableRangeScan 1.00 cop[tikv] table:orders range: decided by [tpch.lineitem.l_orderkey], keep order:false - │ └─IndexLookUp(Probe) 4.05 root - │ ├─IndexRangeScan(Build) 4.05 cop[tikv] table:l2, index:PRIMARY(L_ORDERKEY, L_LINENUMBER) range: decided by [eq(tpch.lineitem.l_orderkey, tpch.lineitem.l_orderkey)], keep order:false - │ └─TableRowIDScan(Probe) 4.05 cop[tikv] table:l2 keep order:false - └─IndexLookUp(Probe) 4.05 root - ├─IndexRangeScan(Build) 5.06 cop[tikv] table:l3, index:PRIMARY(L_ORDERKEY, L_LINENUMBER) range: decided by [eq(tpch.lineitem.l_orderkey, tpch.lineitem.l_orderkey)], keep order:false - └─Selection(Probe) 4.05 cop[tikv] gt(tpch.lineitem.l_receiptdate, tpch.lineitem.l_commitdate) - └─TableRowIDScan 5.06 cop[tikv] table:l3 keep order:false + │ │ └─TableReader(Probe) 5956106.20 root data:Selection + │ │ └─Selection 5956106.20 cop[tikv] eq(tpch.orders.o_orderstatus, "F") + │ │ └─TableRangeScan 12232752.60 cop[tikv] table:orders range: decided by [tpch.lineitem.l_orderkey], keep order:false + │ └─IndexLookUp(Probe) 49550432.16 root + │ ├─IndexRangeScan(Build) 49550432.16 cop[tikv] table:l2, index:PRIMARY(L_ORDERKEY, L_LINENUMBER) range: decided by [eq(tpch.lineitem.l_orderkey, tpch.lineitem.l_orderkey)], keep order:false + │ └─TableRowIDScan(Probe) 49550432.16 cop[tikv] table:l2 keep order:false + └─IndexLookUp(Probe) 39640345.73 root + ├─IndexRangeScan(Build) 49550432.16 cop[tikv] table:l3, index:PRIMARY(L_ORDERKEY, L_LINENUMBER) range: decided by [eq(tpch.lineitem.l_orderkey, tpch.lineitem.l_orderkey)], keep order:false + └─Selection(Probe) 39640345.73 cop[tikv] gt(tpch.lineitem.l_receiptdate, tpch.lineitem.l_commitdate) + └─TableRowIDScan 49550432.16 cop[tikv] table:l3 keep order:false /* Q22 Global Sales Opportunity Query The Global Sales Opportunity Query identifies geographies where there are customers who may be likely to make a diff --git a/cmd/explaintest/r/vitess_hash.result b/cmd/explaintest/r/vitess_hash.result index a6beca77cbe4e..aca512f469ee5 100644 --- a/cmd/explaintest/r/vitess_hash.result +++ b/cmd/explaintest/r/vitess_hash.result @@ -1,3 +1,4 @@ +set tidb_cost_model_version=1; use test; drop table if exists t; create table t( diff --git a/cmd/explaintest/r/window_function.result b/cmd/explaintest/r/window_function.result index b29d1e5d3fba7..2f7102f68d8c0 100644 --- a/cmd/explaintest/r/window_function.result +++ b/cmd/explaintest/r/window_function.result @@ -1,3 +1,4 @@ +set tidb_cost_model_version=1; use test; drop table if exists t; create table t (a int, b int, c timestamp, index idx(a)); diff --git a/cmd/explaintest/t/access_path_selection.test b/cmd/explaintest/t/access_path_selection.test index 26b68ff3609d8..59e2d255944a8 100644 --- a/cmd/explaintest/t/access_path_selection.test +++ b/cmd/explaintest/t/access_path_selection.test @@ -1,3 +1,4 @@ +set tidb_cost_model_version=1; CREATE TABLE `access_path_selection` ( `a` int, `b` int, diff --git a/cmd/explaintest/t/agg_predicate_pushdown.test b/cmd/explaintest/t/agg_predicate_pushdown.test index 0779fe9744030..752489eda4715 100644 --- a/cmd/explaintest/t/agg_predicate_pushdown.test +++ b/cmd/explaintest/t/agg_predicate_pushdown.test @@ -1,3 +1,4 @@ +set tidb_cost_model_version=1; drop database if exists agg_predicate_pushdown; create database agg_predicate_pushdown; diff --git a/cmd/explaintest/t/black_list.test b/cmd/explaintest/t/black_list.test index 6fcc8559cc0a0..cea82e7c3c4b1 100644 --- a/cmd/explaintest/t/black_list.test +++ b/cmd/explaintest/t/black_list.test @@ -1,3 +1,4 @@ +set tidb_cost_model_version=1; use test; drop table if exists t; create table t (a int); diff --git a/cmd/explaintest/t/clustered_index.test b/cmd/explaintest/t/clustered_index.test index 606a768f5b8d4..f809cf12104c0 100644 --- a/cmd/explaintest/t/clustered_index.test +++ b/cmd/explaintest/t/clustered_index.test @@ -1,3 +1,4 @@ +set tidb_cost_model_version=1; set @@tidb_enable_outer_join_reorder=true; drop database if exists with_cluster_index; create database with_cluster_index; diff --git a/cmd/explaintest/t/collation_agg_func.test b/cmd/explaintest/t/collation_agg_func.test index 7a39729786404..c198dd1c9c708 100644 --- a/cmd/explaintest/t/collation_agg_func.test +++ b/cmd/explaintest/t/collation_agg_func.test @@ -1,3 +1,4 @@ +set tidb_cost_model_version=1; # These tests test the aggregate function's behavior according to collation. # The result of min/max of enum/set is wrong, please fix them soon. diff --git a/cmd/explaintest/t/collation_check_use_collation.test b/cmd/explaintest/t/collation_check_use_collation.test index ebaa37588d153..62fbea05ae628 100644 --- a/cmd/explaintest/t/collation_check_use_collation.test +++ b/cmd/explaintest/t/collation_check_use_collation.test @@ -1,3 +1,4 @@ +set tidb_cost_model_version=1; # These tests check that the used collation is correct. # prepare database diff --git a/cmd/explaintest/t/collation_misc.test b/cmd/explaintest/t/collation_misc.test index d46d3a27aa8b1..433cd2f7a9051 100644 --- a/cmd/explaintest/t/collation_misc.test +++ b/cmd/explaintest/t/collation_misc.test @@ -1,3 +1,4 @@ +set tidb_cost_model_version=1; # prepare database create database collation_misc; use collation_misc; diff --git a/cmd/explaintest/t/collation_pointget.test b/cmd/explaintest/t/collation_pointget.test index ea4cdca6f05c9..0cb02e2d6f2b2 100644 --- a/cmd/explaintest/t/collation_pointget.test +++ b/cmd/explaintest/t/collation_pointget.test @@ -1,3 +1,4 @@ +set tidb_cost_model_version=1; # prepare database create database collation_point_get; use collation_point_get; diff --git a/cmd/explaintest/t/common_collation.test b/cmd/explaintest/t/common_collation.test index 8f19d9d1a3e27..184e7246ca0da 100644 --- a/cmd/explaintest/t/common_collation.test +++ b/cmd/explaintest/t/common_collation.test @@ -1,3 +1,4 @@ +set tidb_cost_model_version=1; --disable_warnings drop table if exists t; --enable_warnings diff --git a/cmd/explaintest/t/cte.test b/cmd/explaintest/t/cte.test index c2441f288fa2a..860317681a210 100644 --- a/cmd/explaintest/t/cte.test +++ b/cmd/explaintest/t/cte.test @@ -1,3 +1,4 @@ +set tidb_cost_model_version=1; use test; # case 1 drop table if exists tbl_0; diff --git a/cmd/explaintest/t/explain-non-select-stmt.test b/cmd/explaintest/t/explain-non-select-stmt.test index 474958c84e07c..05149a8cdb6a2 100644 --- a/cmd/explaintest/t/explain-non-select-stmt.test +++ b/cmd/explaintest/t/explain-non-select-stmt.test @@ -1,3 +1,4 @@ +set tidb_cost_model_version=1; use test; drop table if exists t; create table t(a bigint, b bigint); diff --git a/cmd/explaintest/t/explain.test b/cmd/explaintest/t/explain.test index 401fdf18aaaaf..ed679d54c199f 100644 --- a/cmd/explaintest/t/explain.test +++ b/cmd/explaintest/t/explain.test @@ -1,3 +1,4 @@ +set tidb_cost_model_version=1; drop table if exists t; create table t (id int, c1 timestamp); show columns from t; diff --git a/cmd/explaintest/t/explain_complex.test b/cmd/explaintest/t/explain_complex.test index 39a2baa357f1a..d9d1b9285f727 100644 --- a/cmd/explaintest/t/explain_complex.test +++ b/cmd/explaintest/t/explain_complex.test @@ -1,3 +1,4 @@ +set tidb_cost_model_version=1; CREATE TABLE `dt` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT , `aid` varchar(32) NOT NULL, diff --git a/cmd/explaintest/t/explain_complex_stats.test b/cmd/explaintest/t/explain_complex_stats.test index cd5dc4bfce31b..4b4b6a9917c8c 100644 --- a/cmd/explaintest/t/explain_complex_stats.test +++ b/cmd/explaintest/t/explain_complex_stats.test @@ -1,3 +1,4 @@ +set tidb_cost_model_version=1; drop table if exists dt; CREATE TABLE dt ( id int(11) unsigned NOT NULL, diff --git a/cmd/explaintest/t/explain_cte.test b/cmd/explaintest/t/explain_cte.test index c97643115d880..1fdb897251736 100644 --- a/cmd/explaintest/t/explain_cte.test +++ b/cmd/explaintest/t/explain_cte.test @@ -1,3 +1,4 @@ +set tidb_cost_model_version=1; use test; drop table if exists t1, t2; create table t1 (c1 int primary key, c2 int, index c2 (c2)); diff --git a/cmd/explaintest/t/explain_easy.test b/cmd/explaintest/t/explain_easy.test index b03e30f5e2af7..f2b711831873b 100644 --- a/cmd/explaintest/t/explain_easy.test +++ b/cmd/explaintest/t/explain_easy.test @@ -1,3 +1,4 @@ +set tidb_cost_model_version=1; use test; drop table if exists t1, t2, t3, t4; create table t1 (c1 int primary key, c2 int, c3 int, index c2 (c2)); diff --git a/cmd/explaintest/t/explain_easy_stats.test b/cmd/explaintest/t/explain_easy_stats.test index cad15dc2db0b5..878db00ca3d4f 100644 --- a/cmd/explaintest/t/explain_easy_stats.test +++ b/cmd/explaintest/t/explain_easy_stats.test @@ -1,3 +1,4 @@ +set tidb_cost_model_version=1; use test; drop table if exists t1, t2, t3; create table t1 (c1 int primary key, c2 int, c3 int, index c2 (c2)); diff --git a/cmd/explaintest/t/explain_generate_column_substitute.test b/cmd/explaintest/t/explain_generate_column_substitute.test index 527e404c9d17b..13ccab9fe42c6 100644 --- a/cmd/explaintest/t/explain_generate_column_substitute.test +++ b/cmd/explaintest/t/explain_generate_column_substitute.test @@ -1,3 +1,4 @@ +set tidb_cost_model_version=1; set names utf8mb4; use test; drop table if exists t; diff --git a/cmd/explaintest/t/explain_indexmerge.test b/cmd/explaintest/t/explain_indexmerge.test index c58602f81a40b..be9d21c63e4bd 100644 --- a/cmd/explaintest/t/explain_indexmerge.test +++ b/cmd/explaintest/t/explain_indexmerge.test @@ -1,3 +1,4 @@ +set tidb_cost_model_version=1; drop table if exists t; create table t (a int primary key, b int, c int, d int, e int, f int); create index tb on t (b); diff --git a/cmd/explaintest/t/explain_join_stats.test b/cmd/explaintest/t/explain_join_stats.test index 39092af0cbfe3..52de049e6374c 100644 --- a/cmd/explaintest/t/explain_join_stats.test +++ b/cmd/explaintest/t/explain_join_stats.test @@ -1,3 +1,4 @@ +set tidb_cost_model_version=1; use test; drop table if exists e, lo; create table e(a int, b int, key idx_a(a), key idx_b(b)) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; diff --git a/cmd/explaintest/t/explain_shard_index.test b/cmd/explaintest/t/explain_shard_index.test index 4264ecfa47796..04e2bc8302746 100644 --- a/cmd/explaintest/t/explain_shard_index.test +++ b/cmd/explaintest/t/explain_shard_index.test @@ -1,3 +1,4 @@ +set tidb_cost_model_version=1; use test; drop table if exists test3, test5; create table test3(id int primary key clustered, a int, b int, unique key uk_expr((tidb_shard(a)),a)); diff --git a/cmd/explaintest/t/explain_stats.test b/cmd/explaintest/t/explain_stats.test index e45d36bb36def..413b47e3dae39 100644 --- a/cmd/explaintest/t/explain_stats.test +++ b/cmd/explaintest/t/explain_stats.test @@ -1,3 +1,4 @@ +set tidb_cost_model_version=1; drop table if exists t; create table t (id int, c1 timestamp); load stats 's/explain_stats_t.json'; diff --git a/cmd/explaintest/t/explain_union_scan.test b/cmd/explaintest/t/explain_union_scan.test index 6e904ad3c7a89..f85cd7132e833 100644 --- a/cmd/explaintest/t/explain_union_scan.test +++ b/cmd/explaintest/t/explain_union_scan.test @@ -1,3 +1,4 @@ +set tidb_cost_model_version=1; drop table if exists city; CREATE TABLE `city` ( diff --git a/cmd/explaintest/t/generated_columns.test b/cmd/explaintest/t/generated_columns.test index 48570e8ccbffb..3616a23be455c 100644 --- a/cmd/explaintest/t/generated_columns.test +++ b/cmd/explaintest/t/generated_columns.test @@ -1,3 +1,4 @@ +set tidb_cost_model_version=1; -- Tests of using stored generated column as index and partition column. -- Most of the cases are ported from other tests to make sure generated columns behaves the same. diff --git a/cmd/explaintest/t/imdbload.test b/cmd/explaintest/t/imdbload.test index df73903e0bb93..49b527dea5f4e 100644 --- a/cmd/explaintest/t/imdbload.test +++ b/cmd/explaintest/t/imdbload.test @@ -1,3 +1,4 @@ +set tidb_cost_model_version=1; CREATE DATABASE IF NOT EXISTS `imdbload`; USE `imdbload`; -- The table schema is converted from imdb dataset using IMDbPY diff --git a/cmd/explaintest/t/index_join.test b/cmd/explaintest/t/index_join.test index f766b1e899e29..c185d2b90ba72 100644 --- a/cmd/explaintest/t/index_join.test +++ b/cmd/explaintest/t/index_join.test @@ -1,3 +1,4 @@ +set tidb_cost_model_version=1; use test; drop table if exists t1, t2; create table t1(a bigint, b bigint, index idx(a)); diff --git a/cmd/explaintest/t/index_merge.test b/cmd/explaintest/t/index_merge.test index e89af1b613c27..07b552e2c823d 100644 --- a/cmd/explaintest/t/index_merge.test +++ b/cmd/explaintest/t/index_merge.test @@ -1,3 +1,4 @@ +set tidb_cost_model_version=1; --echo ///// SUBQUERY drop table if exists t1; create table t1(c1 int, c2 int, c3 int, key(c1), key(c2)); diff --git a/cmd/explaintest/t/naaj.test b/cmd/explaintest/t/naaj.test index eedada4c29202..69e1a4a3e7f6c 100644 --- a/cmd/explaintest/t/naaj.test +++ b/cmd/explaintest/t/naaj.test @@ -1,3 +1,4 @@ +set tidb_cost_model_version=1; # naaj.test file is for null-aware anti join use test; set @@session.tidb_enable_null_aware_anti_join=1; diff --git a/cmd/explaintest/t/new_character_set.test b/cmd/explaintest/t/new_character_set.test index 7de21592b89de..c466a66dfd178 100644 --- a/cmd/explaintest/t/new_character_set.test +++ b/cmd/explaintest/t/new_character_set.test @@ -1,3 +1,4 @@ +set tidb_cost_model_version=1; -- @@character_set_results = 'gbk', TiDB transforms row value into GBK charset. drop table if exists t; set names utf8mb4; diff --git a/cmd/explaintest/t/new_character_set_builtin.test b/cmd/explaintest/t/new_character_set_builtin.test index 93f160832ce01..8b16ebd53f50e 100644 --- a/cmd/explaintest/t/new_character_set_builtin.test +++ b/cmd/explaintest/t/new_character_set_builtin.test @@ -1,3 +1,4 @@ +set tidb_cost_model_version=1; set names utf8mb4; set @@sql_mode = ''; -- test for builtin function hex(), length(), ascii(), octet_length() diff --git a/cmd/explaintest/t/new_character_set_invalid.test b/cmd/explaintest/t/new_character_set_invalid.test index 369f72362cfc7..58df2d0499f9e 100644 --- a/cmd/explaintest/t/new_character_set_invalid.test +++ b/cmd/explaintest/t/new_character_set_invalid.test @@ -1,3 +1,4 @@ +set tidb_cost_model_version=1; set @@sql_mode = 'strict_trans_tables'; drop table if exists t; create table t (a varchar(255) charset gbk, b varchar(255) charset ascii, c varchar(255) charset utf8); diff --git a/cmd/explaintest/t/select.test b/cmd/explaintest/t/select.test index 907066ffff4f4..bf3e729c87225 100644 --- a/cmd/explaintest/t/select.test +++ b/cmd/explaintest/t/select.test @@ -1,3 +1,4 @@ +set tidb_cost_model_version=1; set @@tidb_enable_outer_join_reorder=true; DROP TABLE IF EXISTS t; diff --git a/cmd/explaintest/t/show.test b/cmd/explaintest/t/show.test index b90131d18f861..3727c1604a6f7 100644 --- a/cmd/explaintest/t/show.test +++ b/cmd/explaintest/t/show.test @@ -1,3 +1,4 @@ +set tidb_cost_model_version=1; # test show output field name show tables like '%xx'; show databases like '%xx'; diff --git a/cmd/explaintest/t/subquery.test b/cmd/explaintest/t/subquery.test index 5127c0e4260fa..b759cfbe52507 100644 --- a/cmd/explaintest/t/subquery.test +++ b/cmd/explaintest/t/subquery.test @@ -1,3 +1,4 @@ +set tidb_cost_model_version=1; drop table if exists t1; drop table if exists t2; create table t1(a bigint, b bigint); diff --git a/cmd/explaintest/t/topn_push_down.test b/cmd/explaintest/t/topn_push_down.test index baec87a061c00..3a44bbec8fb6b 100644 --- a/cmd/explaintest/t/topn_push_down.test +++ b/cmd/explaintest/t/topn_push_down.test @@ -1,3 +1,4 @@ +set tidb_cost_model_version=1; CREATE TABLE `tr` ( `id` bigint(20) NOT NULL, `biz_date` date NOT NULL, diff --git a/cmd/explaintest/t/topn_pushdown.test b/cmd/explaintest/t/topn_pushdown.test index 590c409c47d75..7089159adb1bd 100644 --- a/cmd/explaintest/t/topn_pushdown.test +++ b/cmd/explaintest/t/topn_pushdown.test @@ -1 +1,2 @@ +set tidb_cost_model_version=1; explain format = 'brief' select * from ((select 4 as a) union all (select 33 as a)) tmp order by a desc limit 1; diff --git a/cmd/explaintest/t/tpch.test b/cmd/explaintest/t/tpch.test index 4b195ac6c7373..33e4256b59e99 100644 --- a/cmd/explaintest/t/tpch.test +++ b/cmd/explaintest/t/tpch.test @@ -1,3 +1,4 @@ +set tidb_cost_model_version=1; -- http://www.tpc.org/tpc_documents_current_versions/pdf/tpc-h_v2.17.1.pdf CREATE DATABASE IF NOT EXISTS TPCH; USE TPCH; diff --git a/cmd/explaintest/t/vitess_hash.test b/cmd/explaintest/t/vitess_hash.test index 6fd221a44019d..791eb7ccc9f6a 100644 --- a/cmd/explaintest/t/vitess_hash.test +++ b/cmd/explaintest/t/vitess_hash.test @@ -1,3 +1,4 @@ +set tidb_cost_model_version=1; use test; drop table if exists t; create table t( diff --git a/cmd/explaintest/t/window_function.test b/cmd/explaintest/t/window_function.test index 5bd5951653f73..4640bb8e1ebbe 100644 --- a/cmd/explaintest/t/window_function.test +++ b/cmd/explaintest/t/window_function.test @@ -1,3 +1,4 @@ +set tidb_cost_model_version=1; use test; drop table if exists t; create table t (a int, b int, c timestamp, index idx(a)); diff --git a/cmd/importer/db.go b/cmd/importer/db.go index 8b0d7353b9adf..b8ecf83abfc4b 100644 --- a/cmd/importer/db.go +++ b/cmd/importer/db.go @@ -22,7 +22,7 @@ import ( "strconv" "strings" - _ "github.com/go-sql-driver/mysql" + mysql2 "github.com/go-sql-driver/mysql" "github.com/pingcap/errors" "github.com/pingcap/log" "github.com/pingcap/tidb/parser/mysql" @@ -318,13 +318,18 @@ func execSQL(db *sql.DB, sql string) error { } func createDB(cfg DBConfig) (*sql.DB, error) { - dbDSN := fmt.Sprintf("%s:%s@tcp(%s:%d)/%s?charset=utf8", cfg.User, cfg.Password, cfg.Host, cfg.Port, cfg.Name) - db, err := sql.Open("mysql", dbDSN) + driverCfg := mysql2.NewConfig() + driverCfg.User = cfg.User + driverCfg.Passwd = cfg.Password + driverCfg.Net = "tcp" + driverCfg.Addr = cfg.Host + ":" + strconv.Itoa(cfg.Port) + driverCfg.DBName = cfg.Name + + c, err := mysql2.NewConnector(driverCfg) if err != nil { return nil, errors.Trace(err) } - - return db, nil + return sql.OpenDB(c), nil } func closeDB(db *sql.DB) error { diff --git a/config/config.go b/config/config.go index 78fa8417a72bc..1ba2c7fbd1595 100644 --- a/config/config.go +++ b/config/config.go @@ -86,6 +86,8 @@ const ( DefMemoryUsageAlarmRatio = 0.8 // DefTempDir is the default temporary directory path for TiDB. DefTempDir = "/tmp/tidb" + // DefAuthTokenRefreshInterval is the default time interval to refresh tidb auth token. + DefAuthTokenRefreshInterval = time.Hour ) // Valid config maps @@ -276,6 +278,10 @@ type Config struct { Plugin Plugin `toml:"plugin" json:"plugin"` MaxServerConnections uint32 `toml:"max-server-connections" json:"max-server-connections"` RunDDL bool `toml:"run-ddl" json:"run-ddl"` + // TiDBMaxReuseChunk indicates max cached chunk num + TiDBMaxReuseChunk uint32 `toml:"tidb-max-reuse-chunk" json:"tidb-max-reuse-chunk"` + // TiDBMaxReuseColumn indicates max cached column num + TiDBMaxReuseColumn uint32 `toml:"tidb-max-reuse-column" json:"tidb-max-reuse-column"` } // UpdateTempStoragePath is to update the `TempStoragePath` if port/statusPort was changed @@ -534,6 +540,9 @@ type Security struct { ClusterSSLCert string `toml:"cluster-ssl-cert" json:"cluster-ssl-cert"` ClusterSSLKey string `toml:"cluster-ssl-key" json:"cluster-ssl-key"` ClusterVerifyCN []string `toml:"cluster-verify-cn" json:"cluster-verify-cn"` + // Used for auth plugin `tidb_session_token`. + SessionTokenSigningCert string `toml:"session-token-signing-cert" json:"session-token-signing-cert"` + SessionTokenSigningKey string `toml:"session-token-signing-key" json:"session-token-signing-key"` // If set to "plaintext", the spilled files will not be encrypted. SpilledFileEncryptionMethod string `toml:"spilled-file-encryption-method" json:"spilled-file-encryption-method"` // EnableSEM prevents SUPER users from having full access. @@ -543,6 +552,10 @@ type Security struct { MinTLSVersion string `toml:"tls-version" json:"tls-version"` RSAKeySize int `toml:"rsa-key-size" json:"rsa-key-size"` SecureBootstrap bool `toml:"secure-bootstrap" json:"secure-bootstrap"` + // The path of the JWKS for tidb_auth_token authentication + AuthTokenJWKS string `toml:"auth-token-jwks" json:"auth-token-jwks"` + // The refresh time interval of JWKS + AuthTokenRefreshInterval string `toml:"auth-token-refresh-interval" json:"auth-token-refresh-interval"` } // The ErrConfigValidationFailed error is used so that external callers can do a type assertion @@ -640,14 +653,16 @@ type Performance struct { ProjectionPushDown bool `toml:"projection-push-down" json:"projection-push-down"` MaxTxnTTL uint64 `toml:"max-txn-ttl" json:"max-txn-ttl"` // Deprecated - MemProfileInterval string `toml:"-" json:"-"` - IndexUsageSyncLease string `toml:"index-usage-sync-lease" json:"index-usage-sync-lease"` - PlanReplayerGCLease string `toml:"plan-replayer-gc-lease" json:"plan-replayer-gc-lease"` - GOGC int `toml:"gogc" json:"gogc"` - EnforceMPP bool `toml:"enforce-mpp" json:"enforce-mpp"` - StatsLoadConcurrency uint `toml:"stats-load-concurrency" json:"stats-load-concurrency"` - StatsLoadQueueSize uint `toml:"stats-load-queue-size" json:"stats-load-queue-size"` - EnableStatsCacheMemQuota bool `toml:"enable-stats-cache-mem-quota" json:"enable-stats-cache-mem-quota"` + MemProfileInterval string `toml:"-" json:"-"` + + IndexUsageSyncLease string `toml:"index-usage-sync-lease" json:"index-usage-sync-lease"` + PlanReplayerGCLease string `toml:"plan-replayer-gc-lease" json:"plan-replayer-gc-lease"` + GOGC int `toml:"gogc" json:"gogc"` + EnforceMPP bool `toml:"enforce-mpp" json:"enforce-mpp"` + StatsLoadConcurrency uint `toml:"stats-load-concurrency" json:"stats-load-concurrency"` + StatsLoadQueueSize uint `toml:"stats-load-queue-size" json:"stats-load-queue-size"` + AnalyzePartitionConcurrencyQuota uint `toml:"analyze-partition-concurrency-quota" json:"analyze-partition-concurrency-quota"` + EnableStatsCacheMemQuota bool `toml:"enable-stats-cache-mem-quota" json:"enable-stats-cache-mem-quota"` // The following items are deprecated. We need to keep them here temporarily // to support the upgrade process. They can be removed in future. @@ -736,6 +751,8 @@ type PessimisticTxn struct { DeadlockHistoryCollectRetryable bool `toml:"deadlock-history-collect-retryable" json:"deadlock-history-collect-retryable"` // PessimisticAutoCommit represents if true it means the auto-commit transactions will be in pessimistic mode. PessimisticAutoCommit AtomicBool `toml:"pessimistic-auto-commit" json:"pessimistic-auto-commit"` + // ConstraintCheckInPlacePessimistic is the default value for the session variable `tidb_constraint_check_in_place_pessimistic` + ConstraintCheckInPlacePessimistic bool `toml:"constraint-check-in-place-pessimistic" json:"constraint-check-in-place-pessimistic"` } // TrxSummary is the config for transaction summary collecting. @@ -757,10 +774,11 @@ func (config *TrxSummary) Valid() error { // DefaultPessimisticTxn returns the default configuration for PessimisticTxn func DefaultPessimisticTxn() PessimisticTxn { return PessimisticTxn{ - MaxRetryCount: 256, - DeadlockHistoryCapacity: 10, - DeadlockHistoryCollectRetryable: false, - PessimisticAutoCommit: *NewAtomicBool(false), + MaxRetryCount: 256, + DeadlockHistoryCapacity: 10, + DeadlockHistoryCollectRetryable: false, + PessimisticAutoCommit: *NewAtomicBool(false), + ConstraintCheckInPlacePessimistic: true, } } @@ -902,15 +920,16 @@ var defaultConf = Config{ CommitterConcurrency: defTiKVCfg.CommitterConcurrency, MaxTxnTTL: defTiKVCfg.MaxTxnTTL, // 1hour // TODO: set indexUsageSyncLease to 60s. - IndexUsageSyncLease: "0s", - GOGC: 100, - EnforceMPP: false, - PlanReplayerGCLease: "10m", - StatsLoadConcurrency: 5, - StatsLoadQueueSize: 1000, - EnableStatsCacheMemQuota: false, - RunAutoAnalyze: true, - EnableLoadFMSketch: false, + IndexUsageSyncLease: "0s", + GOGC: 100, + EnforceMPP: false, + PlanReplayerGCLease: "10m", + StatsLoadConcurrency: 5, + StatsLoadQueueSize: 1000, + AnalyzePartitionConcurrencyQuota: 16, + EnableStatsCacheMemQuota: false, + RunAutoAnalyze: true, + EnableLoadFMSketch: false, }, ProxyProtocol: ProxyProtocol{ Networks: "", @@ -953,6 +972,8 @@ var defaultConf = Config{ EnableSEM: false, AutoTLS: false, RSAKeySize: 4096, + AuthTokenJWKS: "", + AuthTokenRefreshInterval: DefAuthTokenRefreshInterval.String(), }, DeprecateIntegerDisplayWidth: false, EnableEnumLengthLimit: true, @@ -961,6 +982,8 @@ var defaultConf = Config{ NewCollationsEnabledOnFirstBootstrap: true, EnableGlobalKill: true, TrxSummary: DefaultTrxSummary(), + TiDBMaxReuseChunk: 64, + TiDBMaxReuseColumn: 256, } var ( @@ -1020,7 +1043,7 @@ var removedConfig = map[string]struct{}{ "log.query-log-max-len": {}, "performance.committer-concurrency": {}, "experimental.enable-global-kill": {}, - "performance.run-auto-analyze": {}, //use tidb_enable_auto_analyze + "performance.run-auto-analyze": {}, // use tidb_enable_auto_analyze // use tidb_enable_prepared_plan_cache, tidb_prepared_plan_cache_size and tidb_prepared_plan_cache_memory_guard_ratio "prepared-plan-cache.enabled": {}, "prepared-plan-cache.capacity": {}, diff --git a/config/config_test.go b/config/config_test.go index 50e3227de049c..9a6d12a284817 100644 --- a/config/config_test.go +++ b/config/config_test.go @@ -730,6 +730,8 @@ enable-enum-length-limit = false stores-refresh-interval = 30 enable-forwarding = true enable-global-kill = true +tidb-max-reuse-chunk = 10 +tidb-max-reuse-column = 20 [performance] txn-total-size-limit=2000 tcp-no-delay = false @@ -798,6 +800,8 @@ max_connections = 200 require.True(t, conf.RepairMode) require.Equal(t, uint64(16), conf.TiKVClient.ResolveLockLiteThreshold) require.Equal(t, uint32(200), conf.Instance.MaxConnections) + require.Equal(t, uint32(10), conf.TiDBMaxReuseChunk) + require.Equal(t, uint32(20), conf.TiDBMaxReuseColumn) require.Equal(t, []string{"tiflash"}, conf.IsolationRead.Engines) require.Equal(t, 3080, conf.MaxIndexLength) require.Equal(t, 70, conf.IndexLimit) diff --git a/config/main_test.go b/config/main_test.go index 363fd39d78304..3458dc358ad86 100644 --- a/config/main_test.go +++ b/config/main_test.go @@ -25,6 +25,7 @@ func TestMain(m *testing.M) { testsetup.SetupForCommonTest() opts := []goleak.Option{ goleak.IgnoreTopFunction("github.com/golang/glog.(*loggingT).flushDaemon"), + goleak.IgnoreTopFunction("github.com/lestrrat-go/httprc.runFetchWorker"), goleak.IgnoreTopFunction("go.etcd.io/etcd/client/pkg/v3/logutil.(*MergeLogger).outputLoop"), goleak.IgnoreTopFunction("go.opencensus.io/stats/view.(*worker).start"), } diff --git a/ddl/BUILD.bazel b/ddl/BUILD.bazel index 3ccb33749d004..b54f52a6d192c 100644 --- a/ddl/BUILD.bazel +++ b/ddl/BUILD.bazel @@ -140,6 +140,7 @@ go_test( timeout = "moderate", srcs = [ "attributes_sql_test.go", + "backfilling_test.go", "callback_test.go", "cancel_test.go", "cluster_test.go", @@ -219,6 +220,7 @@ go_test( "//parser/terror", "//parser/types", "//planner/core", + "//server", "//session", "//sessionctx", "//sessionctx/stmtctx", @@ -255,8 +257,9 @@ go_test( "@com_github_tikv_client_go_v2//oracle", "@com_github_tikv_client_go_v2//testutils", "@com_github_tikv_client_go_v2//tikv", + "@com_github_tikv_client_go_v2//util", "@io_etcd_go_etcd_client_v3//:client", - "@io_etcd_go_etcd_tests_v3//integration", + "@org_golang_google_grpc//:grpc", "@org_golang_x_exp//slices", "@org_uber_go_atomic//:atomic", "@org_uber_go_goleak//:goleak", diff --git a/ddl/attributes_sql_test.go b/ddl/attributes_sql_test.go index de00a63a7a661..95f881e6fb3fe 100644 --- a/ddl/attributes_sql_test.go +++ b/ddl/attributes_sql_test.go @@ -28,6 +28,7 @@ import ( "github.com/pingcap/tidb/testkit" "github.com/pingcap/tidb/util/gcutil" "github.com/stretchr/testify/require" + tikvutil "github.com/tikv/client-go/v2/util" ) // MockGC is used to make GC work in the test environment. @@ -44,9 +45,8 @@ func MockGC(tk *testkit.TestKit) (string, string, string, func()) { // disable emulator GC. // Otherwise emulator GC will delete table record as soon as possible after execute drop table ddl. util.EmulatorGCDisable() - gcTimeFormat := "20060102-15:04:05 -0700 MST" - timeBeforeDrop := time.Now().Add(0 - 48*60*60*time.Second).Format(gcTimeFormat) - timeAfterDrop := time.Now().Add(48 * 60 * 60 * time.Second).Format(gcTimeFormat) + timeBeforeDrop := time.Now().Add(0 - 48*60*60*time.Second).Format(tikvutil.GCTimeFormat) + timeAfterDrop := time.Now().Add(48 * 60 * 60 * time.Second).Format(tikvutil.GCTimeFormat) safePointSQL := `INSERT HIGH_PRIORITY INTO mysql.tidb VALUES ('tikv_gc_safe_point', '%[1]s', '') ON DUPLICATE KEY UPDATE variable_value = '%[1]s'` diff --git a/ddl/backfilling.go b/ddl/backfilling.go index 7761003d78e23..dfd213652ab2e 100644 --- a/ddl/backfilling.go +++ b/ddl/backfilling.go @@ -42,6 +42,7 @@ import ( "github.com/pingcap/tidb/util" "github.com/pingcap/tidb/util/dbterror" "github.com/pingcap/tidb/util/logutil" + "github.com/pingcap/tidb/util/mathutil" decoder "github.com/pingcap/tidb/util/rowDecoder" "github.com/pingcap/tidb/util/timeutil" "github.com/pingcap/tidb/util/topsql" @@ -131,6 +132,7 @@ type backfiller interface { } type backfillResult struct { + taskID int addedCount int scanCount int nextKey kv.Key @@ -149,6 +151,7 @@ type backfillTaskContext struct { } type reorgBackfillTask struct { + id int physicalTableID int64 startKey kv.Key endKey kv.Key @@ -181,30 +184,32 @@ type backfillWorker struct { taskCh chan *reorgBackfillTask resultCh chan *backfillResult table table.Table - closed bool priority int tp backfillWorkerType + ctx context.Context + cancel func() } -func newBackfillWorker(sessCtx sessionctx.Context, id int, t table.PhysicalTable, +func newBackfillWorker(ctx context.Context, sessCtx sessionctx.Context, id int, t table.PhysicalTable, reorgInfo *reorgInfo, tp backfillWorkerType) *backfillWorker { + bfCtx, cancel := context.WithCancel(ctx) return &backfillWorker{ id: id, table: t, reorgInfo: reorgInfo, batchCnt: int(variable.GetDDLReorgBatchSize()), sessCtx: sessCtx, - taskCh: make(chan *reorgBackfillTask, 1), - resultCh: make(chan *backfillResult, 1), priority: reorgInfo.Job.Priority, tp: tp, + ctx: bfCtx, + cancel: cancel, } } func (w *backfillWorker) Close() { - if !w.closed { - w.closed = true - close(w.taskCh) + if w.cancel != nil { + w.cancel() + w.cancel = nil } } @@ -214,10 +219,14 @@ func closeBackfillWorkers(workers []*backfillWorker) { } } +// ResultCounterForTest is used for test. +var ResultCounterForTest *atomic.Int32 + // handleBackfillTask backfills range [task.startHandle, task.endHandle) handle's index to table. func (w *backfillWorker) handleBackfillTask(d *ddlCtx, task *reorgBackfillTask, bf backfiller) *backfillResult { handleRange := *task result := &backfillResult{ + taskID: task.id, err: nil, addedCount: 0, nextKey: handleRange.startKey, @@ -282,6 +291,9 @@ func (w *backfillWorker) handleBackfillTask(d *ddlCtx, task *reorgBackfillTask, zap.Int("scanCount", result.scanCount), zap.String("nextHandle", tryDecodeToHandleString(result.nextKey)), zap.String("takeTime", time.Since(startTime).String())) + if ResultCounterForTest != nil && result.err == nil { + ResultCounterForTest.Add(1) + } return result } @@ -289,21 +301,29 @@ func (w *backfillWorker) run(d *ddlCtx, bf backfiller, job *model.Job) { logutil.BgLogger().Info("[ddl] backfill worker start", zap.Stringer("type", w.tp), zap.Int("workerID", w.id)) - defer func() { - w.resultCh <- &backfillResult{err: dbterror.ErrReorgPanic} - }() - defer util.Recover(metrics.LabelDDL, "backfillWorker.run", nil, false) + var curTaskID int + defer util.Recover(metrics.LabelDDL, "backfillWorker.run", func() { + w.resultCh <- &backfillResult{taskID: curTaskID, err: dbterror.ErrReorgPanic} + }, false) for { + if util.HasCancelled(w.ctx) { + logutil.BgLogger().Info("[ddl] backfill worker exit on context done", + zap.Stringer("type", w.tp), zap.Int("workerID", w.id)) + return + } task, more := <-w.taskCh if !more { - break + logutil.BgLogger().Info("[ddl] backfill worker exit", + zap.Stringer("type", w.tp), zap.Int("workerID", w.id)) + return } + curTaskID = task.id d.setDDLLabelForTopSQL(job) logutil.BgLogger().Debug("[ddl] backfill worker got task", zap.Int("workerID", w.id), zap.String("task", task.String())) failpoint.Inject("mockBackfillRunErr", func() { if w.id == 0 { - result := &backfillResult{addedCount: 0, nextKey: nil, err: errors.Errorf("mock backfill error")} + result := &backfillResult{taskID: task.id, addedCount: 0, nextKey: nil, err: errors.Errorf("mock backfill error")} w.resultCh <- result failpoint.Continue() } @@ -318,14 +338,11 @@ func (w *backfillWorker) run(d *ddlCtx, bf backfiller, job *model.Job) { time.Sleep(100 * time.Millisecond) }) - // Dynamic change batch size. + // Change the batch size dynamically. w.batchCnt = int(variable.GetDDLReorgBatchSize()) result := w.handleBackfillTask(d, task, bf) w.resultCh <- result } - logutil.BgLogger().Info("[ddl] backfill worker exit", - zap.Stringer("type", w.tp), - zap.Int("workerID", w.id)) } // splitTableRanges uses PD region's key ranges to split the backfilling table key range space, @@ -357,48 +374,66 @@ func splitTableRanges(t table.PhysicalTable, store kv.Storage, startKey, endKey return ranges, nil } -func waitTaskResults(workers []*backfillWorker, taskCnt int, - totalAddedCount *int64, startKey kv.Key) (kv.Key, int64, error) { +func waitTaskResults(scheduler *backfillScheduler, batchTasks []*reorgBackfillTask, + totalAddedCount *int64) (kv.Key, int64, error) { var ( - addedCount int64 - nextKey = startKey firstErr error + addedCount int64 ) - for i := 0; i < taskCnt; i++ { - worker := workers[i] - result := <-worker.resultCh - if firstErr == nil && result.err != nil { - firstErr = result.err - // We should wait all working workers exits, any way. - continue - } - + keeper := newDoneTaskKeeper(batchTasks[0].startKey) + taskSize := len(batchTasks) + for i := 0; i < taskSize; i++ { + result := <-scheduler.resultCh if result.err != nil { - logutil.BgLogger().Warn("[ddl] backfill worker failed", zap.Int("workerID", worker.id), + if firstErr == nil { + firstErr = result.err + } + logutil.BgLogger().Warn("[ddl] backfill worker failed", + zap.String("result next key", hex.EncodeToString(result.nextKey)), zap.Error(result.err)) + // Drain tasks. + cnt := drainTasks(scheduler.taskCh) + // We need to wait all the tasks to finish before closing it + // to prevent send on closed channel error. + taskSize -= cnt + continue } - - if firstErr == nil { - *totalAddedCount += int64(result.addedCount) - addedCount += int64(result.addedCount) - nextKey = result.nextKey + *totalAddedCount += int64(result.addedCount) + addedCount += int64(result.addedCount) + keeper.updateNextKey(result.taskID, result.nextKey) + if i%scheduler.workerSize()*4 == 0 { + // We try to adjust the worker size regularly to reduce + // the overhead of loading the DDL related global variables. + err := scheduler.adjustWorkerSize() + if err != nil { + logutil.BgLogger().Warn("[ddl] cannot adjust backfill worker size", zap.Error(err)) + } } } + return keeper.nextKey, addedCount, errors.Trace(firstErr) +} - return nextKey, addedCount, errors.Trace(firstErr) +func drainTasks(taskCh chan *reorgBackfillTask) int { + cnt := 0 + for len(taskCh) > 0 { + <-taskCh + cnt++ + } + return cnt } // sendTasksAndWait sends tasks to workers, and waits for all the running workers to return results, // there are taskCnt running workers. -func (dc *ddlCtx) sendTasksAndWait(sessPool *sessionPool, reorgInfo *reorgInfo, totalAddedCount *int64, workers []*backfillWorker, batchTasks []*reorgBackfillTask) error { - for i, task := range batchTasks { - workers[i].taskCh <- task +func (dc *ddlCtx) sendTasksAndWait(scheduler *backfillScheduler, totalAddedCount *int64, + batchTasks []*reorgBackfillTask) error { + reorgInfo := scheduler.reorgInfo + for _, task := range batchTasks { + scheduler.taskCh <- task } startKey := batchTasks[0].startKey - taskCnt := len(batchTasks) startTime := time.Now() - nextKey, taskAddedCount, err := waitTaskResults(workers, taskCnt, totalAddedCount, startKey) + nextKey, taskAddedCount, err := waitTaskResults(scheduler, batchTasks, totalAddedCount) elapsedTime := time.Since(startTime) if err == nil { err = dc.isReorgRunnable(reorgInfo.Job) @@ -406,10 +441,9 @@ func (dc *ddlCtx) sendTasksAndWait(sessPool *sessionPool, reorgInfo *reorgInfo, if err != nil { // Update the reorg handle that has been processed. - err1 := reorgInfo.UpdateReorgMeta(nextKey, sessPool) + err1 := reorgInfo.UpdateReorgMeta(nextKey, scheduler.sessPool) metrics.BatchAddIdxHistogram.WithLabelValues(metrics.LblError).Observe(elapsedTime.Seconds()) logutil.BgLogger().Warn("[ddl] backfill worker handle batch tasks failed", - zap.Stringer("type", workers[0].tp), zap.ByteString("elementType", reorgInfo.currElement.TypeKey), zap.Int64("elementID", reorgInfo.currElement.ID), zap.Int64("totalAddedCount", *totalAddedCount), @@ -426,7 +460,6 @@ func (dc *ddlCtx) sendTasksAndWait(sessPool *sessionPool, reorgInfo *reorgInfo, dc.getReorgCtx(reorgInfo.Job).setNextKey(nextKey) metrics.BatchAddIdxHistogram.WithLabelValues(metrics.LblOK).Observe(elapsedTime.Seconds()) logutil.BgLogger().Info("[ddl] backfill workers successfully processed batch", - zap.Stringer("type", workers[0].tp), zap.ByteString("elementType", reorgInfo.currElement.TypeKey), zap.Int64("elementID", reorgInfo.currElement.ID), zap.Int64("totalAddedCount", *totalAddedCount), @@ -465,11 +498,11 @@ func tryDecodeToHandleString(key kv.Key) string { } // handleRangeTasks sends tasks to workers, and returns remaining kvRanges that is not handled. -func (dc *ddlCtx) handleRangeTasks(sessPool *sessionPool, t table.Table, workers []*backfillWorker, reorgInfo *reorgInfo, +func (dc *ddlCtx) handleRangeTasks(scheduler *backfillScheduler, t table.Table, totalAddedCount *int64, kvRanges []kv.KeyRange) ([]kv.KeyRange, error) { - batchTasks := make([]*reorgBackfillTask, 0, len(workers)) + batchTasks := make([]*reorgBackfillTask, 0, backfillTaskChanSize) + reorgInfo := scheduler.reorgInfo physicalTableID := reorgInfo.PhysicalTableID - var prefix kv.Key if tbl, ok := t.(table.PartitionedTable); ok { t = tbl.GetPartition(physicalTableID) @@ -480,9 +513,10 @@ func (dc *ddlCtx) handleRangeTasks(sessPool *sessionPool, t table.Table, workers prefix = t.RecordPrefix() } // Build reorg tasks. + job := reorgInfo.Job for i, keyRange := range kvRanges { endKey := keyRange.EndKey - endK, err := getRangeEndKey(reorgInfo.d.jobContext(reorgInfo.Job), workers[0].sessCtx.GetStore(), workers[0].priority, prefix, keyRange.StartKey, endKey) + endK, err := getRangeEndKey(scheduler.jobCtx, dc.store, job.Priority, prefix, keyRange.StartKey, endKey) if err != nil { logutil.BgLogger().Info("[ddl] send range task to workers, get reverse key failed", zap.Error(err)) } else { @@ -492,6 +526,7 @@ func (dc *ddlCtx) handleRangeTasks(sessPool *sessionPool, t table.Table, workers } task := &reorgBackfillTask{ + id: i, physicalTableID: physicalTableID, startKey: keyRange.StartKey, endKey: endKey, @@ -499,7 +534,7 @@ func (dc *ddlCtx) handleRangeTasks(sessPool *sessionPool, t table.Table, workers endInclude: endK.Cmp(keyRange.EndKey) != 0 || i == len(kvRanges)-1} batchTasks = append(batchTasks, task) - if len(batchTasks) >= len(workers) { + if len(batchTasks) >= backfillTaskChanSize { break } } @@ -509,7 +544,7 @@ func (dc *ddlCtx) handleRangeTasks(sessPool *sessionPool, t table.Table, workers } // Wait tasks finish. - err := dc.sendTasksAndWait(sessPool, reorgInfo, totalAddedCount, workers, batchTasks) + err := dc.sendTasksAndWait(scheduler, totalAddedCount, batchTasks) if err != nil { return nil, errors.Trace(err) } @@ -527,7 +562,7 @@ var ( // TestCheckWorkerNumCh use for test adjust backfill worker. TestCheckWorkerNumCh = make(chan *sync.WaitGroup) // TestCheckWorkerNumber use for test adjust backfill worker. - TestCheckWorkerNumber = int32(16) + TestCheckWorkerNumber = int32(1) // TestCheckReorgTimeout is used to mock timeout when reorg data. TestCheckReorgTimeout = int32(0) ) @@ -572,6 +607,132 @@ func setSessCtxLocation(sctx sessionctx.Context, info *reorgInfo) error { return nil } +type backfillScheduler struct { + ctx context.Context + reorgInfo *reorgInfo + sessPool *sessionPool + tp backfillWorkerType + tbl table.PhysicalTable + decodeColMap map[int64]decoder.Column + jobCtx *JobContext + + workers []*backfillWorker + maxSize int + + taskCh chan *reorgBackfillTask + resultCh chan *backfillResult +} + +const backfillTaskChanSize = 1024 + +func newBackfillScheduler(ctx context.Context, info *reorgInfo, sessPool *sessionPool, + tp backfillWorkerType, tbl table.PhysicalTable, decColMap map[int64]decoder.Column, + jobCtx *JobContext) *backfillScheduler { + return &backfillScheduler{ + ctx: ctx, + reorgInfo: info, + sessPool: sessPool, + tp: tp, + tbl: tbl, + decodeColMap: decColMap, + jobCtx: jobCtx, + workers: make([]*backfillWorker, 0, variable.GetDDLReorgWorkerCounter()), + taskCh: make(chan *reorgBackfillTask, backfillTaskChanSize), + resultCh: make(chan *backfillResult, backfillTaskChanSize), + } +} + +func (b *backfillScheduler) newSessCtx() (sessionctx.Context, error) { + reorgInfo := b.reorgInfo + sessCtx := newContext(reorgInfo.d.store) + sessCtx.GetSessionVars().StmtCtx.IsDDLJobInQueue = true + // Set the row encode format version. + rowFormat := variable.GetDDLReorgRowFormat() + sessCtx.GetSessionVars().RowEncoder.Enable = rowFormat != variable.DefTiDBRowFormatV1 + // Simulate the sql mode environment in the worker sessionCtx. + sqlMode := reorgInfo.ReorgMeta.SQLMode + sessCtx.GetSessionVars().SQLMode = sqlMode + if err := setSessCtxLocation(sessCtx, reorgInfo); err != nil { + return nil, errors.Trace(err) + } + sessCtx.GetSessionVars().StmtCtx.BadNullAsWarning = !sqlMode.HasStrictMode() + sessCtx.GetSessionVars().StmtCtx.TruncateAsWarning = !sqlMode.HasStrictMode() + sessCtx.GetSessionVars().StmtCtx.OverflowAsWarning = !sqlMode.HasStrictMode() + sessCtx.GetSessionVars().StmtCtx.AllowInvalidDate = sqlMode.HasAllowInvalidDatesMode() + sessCtx.GetSessionVars().StmtCtx.DividedByZeroAsWarning = !sqlMode.HasStrictMode() + sessCtx.GetSessionVars().StmtCtx.IgnoreZeroInDate = !sqlMode.HasStrictMode() || sqlMode.HasAllowInvalidDatesMode() + sessCtx.GetSessionVars().StmtCtx.NoZeroDate = sqlMode.HasStrictMode() + return sessCtx, nil +} + +func (b *backfillScheduler) setMaxWorkerSize(maxSize int) { + b.maxSize = maxSize +} + +func (b *backfillScheduler) workerSize() int { + return len(b.workers) +} + +func (b *backfillScheduler) adjustWorkerSize() error { + reorgInfo := b.reorgInfo + job := reorgInfo.Job + jc := b.jobCtx + if err := loadDDLReorgVars(b.ctx, b.sessPool); err != nil { + logutil.BgLogger().Error("[ddl] load DDL reorganization variable failed", zap.Error(err)) + } + workerCnt := int(variable.GetDDLReorgWorkerCounter()) + workerCnt = mathutil.Min(workerCnt, b.maxSize) + // Increase the worker. + for i := len(b.workers); i < workerCnt; i++ { + sessCtx, err := b.newSessCtx() + if err != nil { + return err + } + var ( + runner *backfillWorker + worker backfiller + ) + switch b.tp { + case typeAddIndexWorker: + idxWorker, err := newAddIndexWorker(sessCtx, i, b.tbl, b.decodeColMap, reorgInfo, jc, job) + if err != nil { + return errors.Trace(err) + } + worker, runner = idxWorker, idxWorker.backfillWorker + case typeAddIndexMergeTmpWorker: + tmpIdxWorker := newMergeTempIndexWorker(sessCtx, i, b.tbl, reorgInfo, jc) + worker, runner = tmpIdxWorker, tmpIdxWorker.backfillWorker + case typeUpdateColumnWorker: + // Setting InCreateOrAlterStmt tells the difference between SELECT casting and ALTER COLUMN casting. + sessCtx.GetSessionVars().StmtCtx.InCreateOrAlterStmt = true + updateWorker := newUpdateColumnWorker(sessCtx, i, b.tbl, b.decodeColMap, reorgInfo, jc) + worker, runner = updateWorker, updateWorker.backfillWorker + case typeCleanUpIndexWorker: + idxWorker := newCleanUpIndexWorker(sessCtx, i, b.tbl, b.decodeColMap, reorgInfo, jc) + worker, runner = idxWorker, idxWorker.backfillWorker + default: + return errors.New("unknown backfill type") + } + runner.taskCh = b.taskCh + runner.resultCh = b.resultCh + b.workers = append(b.workers, runner) + go runner.run(reorgInfo.d, worker, job) + } + // Decrease the worker. + if len(b.workers) > workerCnt { + workers := b.workers[workerCnt:] + b.workers = b.workers[:workerCnt] + closeBackfillWorkers(workers) + } + return injectCheckBackfillWorkerNum(len(b.workers)) +} + +func (b *backfillScheduler) Close() { + closeBackfillWorkers(b.workers) + close(b.taskCh) + close(b.resultCh) +} + // writePhysicalTableRecord handles the "add index" or "modify/change column" reorganization state for a non-partitioned table or a partition. // For a partitioned table, it should be handled partition by partition. // @@ -612,107 +773,25 @@ func (dc *ddlCtx) writePhysicalTableRecord(sessPool *sessionPool, t table.Physic } }) - // variable.ddlReorgWorkerCounter can be modified by system variable "tidb_ddl_reorg_worker_cnt". - workerCnt := variable.GetDDLReorgWorkerCounter() - backfillWorkers := make([]*backfillWorker, 0, workerCnt) - defer func() { - closeBackfillWorkers(backfillWorkers) - }() jc := dc.jobContext(job) + scheduler := newBackfillScheduler(dc.ctx, reorgInfo, sessPool, bfWorkerType, t, decodeColMap, jc) + defer scheduler.Close() for { kvRanges, err := splitTableRanges(t, reorgInfo.d.store, startKey, endKey) if err != nil { return errors.Trace(err) } + scheduler.setMaxWorkerSize(len(kvRanges)) - // For dynamic adjust backfill worker number. - if err := loadDDLReorgVars(dc.ctx, sessPool); err != nil { - logutil.BgLogger().Error("[ddl] load DDL reorganization variable failed", zap.Error(err)) - } - workerCnt = variable.GetDDLReorgWorkerCounter() - rowFormat := variable.GetDDLReorgRowFormat() - // If only have 1 range, we can only start 1 worker. - if len(kvRanges) < int(workerCnt) { - workerCnt = int32(len(kvRanges)) - } - // Enlarge the worker size. - for i := len(backfillWorkers); i < int(workerCnt); i++ { - sessCtx := newContext(reorgInfo.d.store) - sessCtx.GetSessionVars().StmtCtx.IsDDLJobInQueue = true - // Set the row encode format version. - sessCtx.GetSessionVars().RowEncoder.Enable = rowFormat != variable.DefTiDBRowFormatV1 - // Simulate the sql mode environment in the worker sessionCtx. - sqlMode := reorgInfo.ReorgMeta.SQLMode - sessCtx.GetSessionVars().SQLMode = sqlMode - if err := setSessCtxLocation(sessCtx, reorgInfo); err != nil { - return errors.Trace(err) - } - - sessCtx.GetSessionVars().StmtCtx.BadNullAsWarning = !sqlMode.HasStrictMode() - sessCtx.GetSessionVars().StmtCtx.TruncateAsWarning = !sqlMode.HasStrictMode() - sessCtx.GetSessionVars().StmtCtx.OverflowAsWarning = !sqlMode.HasStrictMode() - sessCtx.GetSessionVars().StmtCtx.AllowInvalidDate = sqlMode.HasAllowInvalidDatesMode() - sessCtx.GetSessionVars().StmtCtx.DividedByZeroAsWarning = !sqlMode.HasStrictMode() - sessCtx.GetSessionVars().StmtCtx.IgnoreZeroInDate = !sqlMode.HasStrictMode() || sqlMode.HasAllowInvalidDatesMode() - sessCtx.GetSessionVars().StmtCtx.NoZeroDate = sqlMode.HasStrictMode() - - switch bfWorkerType { - case typeAddIndexWorker: - idxWorker, err := newAddIndexWorker(sessCtx, i, t, decodeColMap, reorgInfo, jc, job) - if err != nil { - return errors.Trace(err) - } - backfillWorkers = append(backfillWorkers, idxWorker.backfillWorker) - go idxWorker.backfillWorker.run(reorgInfo.d, idxWorker, job) - case typeAddIndexMergeTmpWorker: - tmpIdxWorker := newMergeTempIndexWorker(sessCtx, i, t, reorgInfo, jc) - backfillWorkers = append(backfillWorkers, tmpIdxWorker.backfillWorker) - go tmpIdxWorker.backfillWorker.run(reorgInfo.d, tmpIdxWorker, job) - case typeUpdateColumnWorker: - // Setting InCreateOrAlterStmt tells the difference between SELECT casting and ALTER COLUMN casting. - sessCtx.GetSessionVars().StmtCtx.InCreateOrAlterStmt = true - updateWorker := newUpdateColumnWorker(sessCtx, i, t, decodeColMap, reorgInfo, jc) - backfillWorkers = append(backfillWorkers, updateWorker.backfillWorker) - go updateWorker.backfillWorker.run(reorgInfo.d, updateWorker, job) - case typeCleanUpIndexWorker: - idxWorker := newCleanUpIndexWorker(sessCtx, i, t, decodeColMap, reorgInfo, jc) - backfillWorkers = append(backfillWorkers, idxWorker.backfillWorker) - go idxWorker.backfillWorker.run(reorgInfo.d, idxWorker, job) - default: - return errors.New("unknow backfill type") - } - } - // Shrink the worker size. - if len(backfillWorkers) > int(workerCnt) { - workers := backfillWorkers[workerCnt:] - backfillWorkers = backfillWorkers[:workerCnt] - closeBackfillWorkers(workers) + err = scheduler.adjustWorkerSize() + if err != nil { + return errors.Trace(err) } - failpoint.Inject("checkBackfillWorkerNum", func(val failpoint.Value) { - //nolint:forcetypeassert - if val.(bool) { - num := int(atomic.LoadInt32(&TestCheckWorkerNumber)) - if num != 0 { - if num > len(kvRanges) { - if len(backfillWorkers) != len(kvRanges) { - failpoint.Return(errors.Errorf("check backfill worker num error, len kv ranges is: %v, check backfill worker num is: %v, actual record num is: %v", len(kvRanges), num, len(backfillWorkers))) - } - } else if num != len(backfillWorkers) { - failpoint.Return(errors.Errorf("check backfill worker num error, len kv ranges is: %v, check backfill worker num is: %v, actual record num is: %v", len(kvRanges), num, len(backfillWorkers))) - } - var wg sync.WaitGroup - wg.Add(1) - TestCheckWorkerNumCh <- &wg - wg.Wait() - } - } - }) - logutil.BgLogger().Info("[ddl] start backfill workers to reorg record", zap.Stringer("type", bfWorkerType), - zap.Int("workerCnt", len(backfillWorkers)), + zap.Int("workerCnt", scheduler.workerSize()), zap.Int("regionCnt", len(kvRanges)), zap.String("startKey", hex.EncodeToString(startKey)), zap.String("endKey", hex.EncodeToString(endKey))) @@ -726,7 +805,7 @@ func (dc *ddlCtx) writePhysicalTableRecord(sessPool *sessionPool, t table.Physic return errors.New(ingest.LitErrGetBackendFail) } } - remains, err := dc.handleRangeTasks(sessPool, t, backfillWorkers, reorgInfo, &totalAddedCount, kvRanges) + remains, err := dc.handleRangeTasks(scheduler, t, &totalAddedCount, kvRanges) if err != nil { return errors.Trace(err) } @@ -739,6 +818,25 @@ func (dc *ddlCtx) writePhysicalTableRecord(sessPool *sessionPool, t table.Physic return nil } +func injectCheckBackfillWorkerNum(curWorkerSize int) error { + failpoint.Inject("checkBackfillWorkerNum", func(val failpoint.Value) { + //nolint:forcetypeassert + if val.(bool) { + num := int(atomic.LoadInt32(&TestCheckWorkerNumber)) + if num != 0 { + if num != curWorkerSize { + failpoint.Return(errors.Errorf("expected backfill worker num: %v, actual record num: %v", num, curWorkerSize)) + } + var wg sync.WaitGroup + wg.Add(1) + TestCheckWorkerNumCh <- &wg + wg.Wait() + } + } + }) + return nil +} + // recordIterFunc is used for low-level record iteration. type recordIterFunc func(h kv.Handle, rowKey kv.Key, rawRecord []byte) (more bool, err error) @@ -850,3 +948,36 @@ func logSlowOperations(elapsed time.Duration, slowMsg string, threshold uint32) logutil.BgLogger().Info("[ddl] slow operations", zap.Duration("takeTimes", elapsed), zap.String("msg", slowMsg)) } } + +// doneTaskKeeper keeps the done tasks and update the latest next key. +type doneTaskKeeper struct { + doneTaskNextKey map[int]kv.Key + current int + nextKey kv.Key +} + +func newDoneTaskKeeper(start kv.Key) *doneTaskKeeper { + return &doneTaskKeeper{ + doneTaskNextKey: make(map[int]kv.Key), + current: 0, + nextKey: start, + } +} + +func (n *doneTaskKeeper) updateNextKey(doneTaskID int, next kv.Key) { + if doneTaskID == n.current { + n.current++ + n.nextKey = next + for { + if nKey, ok := n.doneTaskNextKey[n.current]; ok { + delete(n.doneTaskNextKey, n.current) + n.current++ + n.nextKey = nKey + } else { + break + } + } + return + } + n.doneTaskNextKey[doneTaskID] = next +} diff --git a/ddl/backfilling_test.go b/ddl/backfilling_test.go new file mode 100644 index 0000000000000..167b809dd4487 --- /dev/null +++ b/ddl/backfilling_test.go @@ -0,0 +1,45 @@ +// Copyright 2022 PingCAP, Inc. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +package ddl + +import ( + "bytes" + "testing" + + "github.com/pingcap/tidb/kv" + "github.com/stretchr/testify/require" +) + +func TestDoneTaskKeeper(t *testing.T) { + n := newDoneTaskKeeper(kv.Key("a")) + n.updateNextKey(0, kv.Key("b")) + n.updateNextKey(1, kv.Key("c")) + require.True(t, bytes.Equal(n.nextKey, kv.Key("c"))) + require.Len(t, n.doneTaskNextKey, 0) + + n.updateNextKey(4, kv.Key("f")) + require.True(t, bytes.Equal(n.nextKey, kv.Key("c"))) + require.Len(t, n.doneTaskNextKey, 1) + n.updateNextKey(3, kv.Key("e")) + n.updateNextKey(5, kv.Key("g")) + require.True(t, bytes.Equal(n.nextKey, kv.Key("c"))) + require.Len(t, n.doneTaskNextKey, 3) + n.updateNextKey(2, kv.Key("d")) + require.True(t, bytes.Equal(n.nextKey, kv.Key("g"))) + require.Len(t, n.doneTaskNextKey, 0) + + n.updateNextKey(6, kv.Key("h")) + require.True(t, bytes.Equal(n.nextKey, kv.Key("h"))) +} diff --git a/ddl/callback.go b/ddl/callback.go index 84b22cdfed944..b6160d150e717 100644 --- a/ddl/callback.go +++ b/ddl/callback.go @@ -48,7 +48,7 @@ type Callback interface { // OnChanged is called after a ddl statement is finished. OnChanged(err error) error // OnSchemaStateChanged is called after a schema state is changed. - OnSchemaStateChanged() + OnSchemaStateChanged(schemaVer int64) // OnJobRunBefore is called before running job. OnJobRunBefore(job *model.Job) // OnJobUpdated is called after the running job is updated. @@ -71,7 +71,7 @@ func (*BaseCallback) OnChanged(err error) error { } // OnSchemaStateChanged implements Callback interface. -func (*BaseCallback) OnSchemaStateChanged() { +func (*BaseCallback) OnSchemaStateChanged(schemaVer int64) { // Nothing to do. } @@ -129,7 +129,7 @@ func (c *DefaultCallback) OnChanged(err error) error { } // OnSchemaStateChanged overrides the ddl Callback interface. -func (c *DefaultCallback) OnSchemaStateChanged() { +func (c *DefaultCallback) OnSchemaStateChanged(schemaVer int64) { err := c.do.Reload() if err != nil { logutil.BgLogger().Error("domain callback failed on schema state changed", zap.Error(err)) @@ -166,7 +166,7 @@ func (c *ctcCallback) OnChanged(err error) error { } // OnSchemaStateChanged overrides the ddl Callback interface. -func (c *ctcCallback) OnSchemaStateChanged() { +func (c *ctcCallback) OnSchemaStateChanged(retVer int64) { err := c.do.Reload() if err != nil { logutil.BgLogger().Error("domain callback failed on schema state changed", zap.Error(err)) diff --git a/ddl/callback_test.go b/ddl/callback_test.go index 4e7199dbef8ca..5a97e8212689e 100644 --- a/ddl/callback_test.go +++ b/ddl/callback_test.go @@ -48,13 +48,14 @@ type TestDDLCallback struct { // domain to reload schema before your ddl stepping into the next state change. Do DomainReloader - onJobRunBefore func(*model.Job) - OnJobRunBeforeExported func(*model.Job) - onJobUpdated func(*model.Job) - OnJobUpdatedExported atomic.Pointer[func(*model.Job)] - onWatched func(ctx context.Context) - OnGetJobBeforeExported func(string) - OnGetJobAfterExported func(string, *model.Job) + onJobRunBefore func(*model.Job) + OnJobRunBeforeExported func(*model.Job) + onJobUpdated func(*model.Job) + OnJobUpdatedExported atomic.Pointer[func(*model.Job)] + onWatched func(ctx context.Context) + OnGetJobBeforeExported func(string) + OnGetJobAfterExported func(string, *model.Job) + OnJobSchemaStateChanged func(int64) } // OnChanged mock the same behavior with the main DDL hook. @@ -73,12 +74,17 @@ func (tc *TestDDLCallback) OnChanged(err error) error { } // OnSchemaStateChanged mock the same behavior with the main ddl hook. -func (tc *TestDDLCallback) OnSchemaStateChanged() { +func (tc *TestDDLCallback) OnSchemaStateChanged(schemaVer int64) { if tc.Do != nil { if err := tc.Do.Reload(); err != nil { logutil.BgLogger().Warn("reload failed on schema state changed", zap.Error(err)) } } + + if tc.OnJobSchemaStateChanged != nil { + tc.OnJobSchemaStateChanged(schemaVer) + return + } } // OnJobRunBefore is used to run the user customized logic of `onJobRunBefore` first. diff --git a/ddl/cancel_test.go b/ddl/cancel_test.go index b7d3ad93ec6c0..cd446f3441baf 100644 --- a/ddl/cancel_test.go +++ b/ddl/cancel_test.go @@ -244,7 +244,7 @@ func TestCancel(t *testing.T) { partition p4 values less than (7096) );`) tk.MustExec(`create table t ( - c1 int, c2 int, c3 int, c11 tinyint + c1 int, c2 int, c3 int, c11 tinyint, index fk_c1(c1) );`) // Prepare data. diff --git a/ddl/cluster.go b/ddl/cluster.go index a6f80991ca0c9..ebb833156cec2 100644 --- a/ddl/cluster.go +++ b/ddl/cluster.go @@ -17,6 +17,8 @@ package ddl import ( "bytes" "context" + "encoding/hex" + "fmt" "strings" "time" @@ -37,12 +39,12 @@ import ( "github.com/pingcap/tidb/util/filter" "github.com/pingcap/tidb/util/gcutil" "github.com/pingcap/tidb/util/logutil" - tikverr "github.com/tikv/client-go/v2/error" tikvstore "github.com/tikv/client-go/v2/kv" "github.com/tikv/client-go/v2/oracle" "github.com/tikv/client-go/v2/tikv" "github.com/tikv/client-go/v2/tikvrpc" "github.com/tikv/client-go/v2/txnkv/rangetask" + "go.uber.org/atomic" "go.uber.org/zap" "golang.org/x/exp/slices" ) @@ -56,11 +58,17 @@ var pdScheduleKey = []string{ } const ( - flashbackMaxBackoff = 300000 // 300s - flashbackTimeout = 30 * time.Second // 30s + flashbackMaxBackoff = 1800000 // 1800s + flashbackTimeout = 3 * time.Minute // 3min +) - readOnlyArgsOffset = 2 - gcEnabledArgsOffset = 3 +const ( + pdScheduleArgsOffset = 1 + iota + gcEnabledOffset + autoAnalyzeOffset + readOnlyOffset + totalLockedRegionsOffset + commitTSOffset ) func closePDSchedule() error { @@ -80,7 +88,7 @@ func savePDSchedule(job *model.Job) error { for _, key := range pdScheduleKey { saveValue[key] = retValue[key] } - job.Args[1] = &saveValue + job.Args[pdScheduleArgsOffset] = &saveValue return nil } @@ -117,8 +125,20 @@ func ValidateFlashbackTS(ctx context.Context, sctx sessionctx.Context, flashBack return gcutil.ValidateSnapshotWithGCSafePoint(flashBackTS, gcSafePoint) } -func setTiDBSuperReadOnly(sess sessionctx.Context, value string) error { - return sess.GetSessionVars().GlobalVarsAccessor.SetGlobalSysVar(variable.TiDBSuperReadOnly, value) +func setTiDBEnableAutoAnalyze(ctx context.Context, sess sessionctx.Context, value string) error { + return sess.GetSessionVars().GlobalVarsAccessor.SetGlobalSysVar(ctx, variable.TiDBEnableAutoAnalyze, value) +} + +func getTiDBEnableAutoAnalyze(sess sessionctx.Context) (string, error) { + val, err := sess.GetSessionVars().GlobalVarsAccessor.GetGlobalSysVar(variable.TiDBEnableAutoAnalyze) + if err != nil { + return "", errors.Trace(err) + } + return val, nil +} + +func setTiDBSuperReadOnly(ctx context.Context, sess sessionctx.Context, value string) error { + return sess.GetSessionVars().GlobalVarsAccessor.SetGlobalSysVar(ctx, variable.TiDBSuperReadOnly, value) } func getTiDBSuperReadOnly(sess sessionctx.Context) (string, error) { @@ -133,9 +153,6 @@ func checkAndSetFlashbackClusterInfo(sess sessionctx.Context, d *ddlCtx, t *meta if err = ValidateFlashbackTS(d.ctx, sess, flashbackTS); err != nil { return err } - if err = CheckFlashbackHistoryTSRange(t, flashbackTS); err != nil { - return err - } if err = gcutil.DisableGC(sess); err != nil { return err @@ -143,7 +160,10 @@ func checkAndSetFlashbackClusterInfo(sess sessionctx.Context, d *ddlCtx, t *meta if err = closePDSchedule(); err != nil { return err } - if err = setTiDBSuperReadOnly(sess, variable.On); err != nil { + if err = setTiDBEnableAutoAnalyze(d.ctx, sess, variable.Off); err != nil { + return err + } + if err = setTiDBSuperReadOnly(d.ctx, sess, variable.On); err != nil { return err } @@ -156,9 +176,16 @@ func checkAndSetFlashbackClusterInfo(sess sessionctx.Context, d *ddlCtx, t *meta if err != nil { return errors.Trace(err) } + // If flashbackSchemaVersion not same as nowSchemaVersion, we've done ddl during [flashbackTs, now). - if flashbackSchemaVersion != nowSchemaVersion { - return errors.Errorf("schema version not same, have done ddl during [flashbackTS, now)") + for i := flashbackSchemaVersion + 1; i <= nowSchemaVersion; i++ { + diff, err := t.GetSchemaDiff(i) + if err != nil { + return errors.Trace(err) + } + if diff != nil && diff.Type != model.ActionFlashbackCluster { + return errors.Errorf("Detected schema change due to another DDL job during [%s, now), can't do flashback", oracle.GetTimeFromTS(flashbackTS)) + } } jobs, err := GetAllDDLJobs(sess, t) @@ -198,7 +225,7 @@ func addToSlice(schema string, tableName string, tableID int64, flashbackIDs []f // GetFlashbackKeyRanges make keyRanges efficiently for flashback cluster when many tables in cluster, // The time complexity is O(nlogn). -func GetFlashbackKeyRanges(sess sessionctx.Context, startKey kv.Key) ([]kv.KeyRange, error) { +func GetFlashbackKeyRanges(sess sessionctx.Context) ([]kv.KeyRange, error) { schemas := sess.GetDomainInfoSchema().(infoschema.InfoSchema).AllSchemas() // The semantic of keyRanges(output). @@ -245,31 +272,19 @@ func GetFlashbackKeyRanges(sess sessionctx.Context, startKey kv.Key) ([]kv.KeyRa }) } - for i, ranges := range keyRanges { - // startKey smaller than ranges.StartKey, ranges begin with [ranges.StartKey, ranges.EndKey) - if ranges.StartKey.Cmp(startKey) > 0 { - keyRanges = keyRanges[i:] - break - } - // startKey in [ranges.StartKey, ranges.EndKey), ranges begin with [startKey, ranges.EndKey) - if ranges.StartKey.Cmp(startKey) <= 0 && ranges.EndKey.Cmp(startKey) > 0 { - keyRanges = keyRanges[i:] - keyRanges[0].StartKey = startKey - break - } - } - return keyRanges, nil } -func sendFlashbackToVersionRPC( +// SendPrepareFlashbackToVersionRPC prepares regions for flashback, the purpose is to put region into flashback state which region stop write +// Function also be called by BR for volume snapshot backup and restore +func SendPrepareFlashbackToVersionRPC( ctx context.Context, s tikv.Storage, - version uint64, r tikvstore.KeyRange, ) (rangetask.TaskStat, error) { startKey, rangeEndKey := r.StartKey, r.EndKey var taskStat rangetask.TaskStat + bo := tikv.NewBackoffer(ctx, flashbackMaxBackoff) for { select { case <-ctx.Done(): @@ -281,7 +296,6 @@ func sendFlashbackToVersionRPC( break } - bo := tikv.NewBackoffer(ctx, flashbackMaxBackoff) loc, err := s.GetRegionCache().LocateKey(bo, startKey) if err != nil { return taskStat, err @@ -289,13 +303,15 @@ func sendFlashbackToVersionRPC( endKey := loc.EndKey isLast := len(endKey) == 0 || (len(rangeEndKey) > 0 && bytes.Compare(endKey, rangeEndKey) >= 0) - // If it is the last region + // If it is the last region. if isLast { endKey = rangeEndKey } - req := tikvrpc.NewRequest(tikvrpc.CmdFlashbackToVersion, &kvrpcpb.FlashbackToVersionRequest{ - Version: version, + logutil.BgLogger().Info("[ddl] send prepare flashback request", zap.Uint64("region_id", loc.Region.GetID()), + zap.String("start_key", hex.EncodeToString(startKey)), zap.String("end_key", hex.EncodeToString(endKey))) + + req := tikvrpc.NewRequest(tikvrpc.CmdPrepareFlashbackToVersion, &kvrpcpb.PrepareFlashbackToVersionRequest{ StartKey: startKey, EndKey: endKey, }) @@ -309,23 +325,111 @@ func sendFlashbackToVersionRPC( return taskStat, err } if regionErr != nil { - err = bo.Backoff(tikv.BoRegionMiss(), errors.New(regionErr.String())) - if err != nil { - return taskStat, err - } - continue + return taskStat, errors.Errorf(regionErr.String()) } if resp.Resp == nil { - return taskStat, errors.WithStack(tikverr.ErrBodyMissing) + return taskStat, errors.Errorf("prepare flashback missing resp body") } - flashbackToVersionResp := resp.Resp.(*kvrpcpb.FlashbackToVersionResponse) - if err := flashbackToVersionResp.GetError(); err != "" { - return taskStat, errors.Errorf("unexpected flashback to version err: %v", err) + prepareFlashbackToVersionResp := resp.Resp.(*kvrpcpb.PrepareFlashbackToVersionResponse) + if err := prepareFlashbackToVersionResp.GetError(); err != "" { + return taskStat, errors.Errorf(err) } taskStat.CompletedRegions++ if isLast { break } + bo = tikv.NewBackoffer(ctx, flashbackMaxBackoff) + startKey = endKey + } + return taskStat, nil +} + +// SendFlashbackToVersionRPC flashback the MVCC key to the version +// Function also be called by BR for volume snapshot backup and restore +func SendFlashbackToVersionRPC( + ctx context.Context, + s tikv.Storage, + version uint64, + startTS, commitTS uint64, + r tikvstore.KeyRange, +) (rangetask.TaskStat, error) { + startKey, rangeEndKey := r.StartKey, r.EndKey + var taskStat rangetask.TaskStat + bo := tikv.NewBackoffer(ctx, flashbackMaxBackoff) + for { + select { + case <-ctx.Done(): + return taskStat, errors.WithStack(ctx.Err()) + default: + } + + if len(rangeEndKey) > 0 && bytes.Compare(startKey, rangeEndKey) >= 0 { + break + } + + loc, err := s.GetRegionCache().LocateKey(bo, startKey) + if err != nil { + return taskStat, err + } + + endKey := loc.EndKey + isLast := len(endKey) == 0 || (len(rangeEndKey) > 0 && bytes.Compare(endKey, rangeEndKey) >= 0) + // If it is the last region. + if isLast { + endKey = rangeEndKey + } + + logutil.BgLogger().Info("[ddl] send flashback request", zap.Uint64("region_id", loc.Region.GetID()), + zap.String("start_key", hex.EncodeToString(startKey)), zap.String("end_key", hex.EncodeToString(endKey))) + + req := tikvrpc.NewRequest(tikvrpc.CmdFlashbackToVersion, &kvrpcpb.FlashbackToVersionRequest{ + Version: version, + StartKey: startKey, + EndKey: endKey, + StartTs: startTS, + CommitTs: commitTS, + }) + + resp, err := s.SendReq(bo, req, loc.Region, flashbackTimeout) + if err != nil { + logutil.BgLogger().Warn("send request meets error", zap.Uint64("region_id", loc.Region.GetID()), zap.Error(err)) + if err.Error() != fmt.Sprintf("region %d is not prepared for the flashback", loc.Region.GetID()) { + return taskStat, err + } + } else { + regionErr, err := resp.GetRegionError() + if err != nil { + return taskStat, err + } + if regionErr != nil { + err = bo.Backoff(tikv.BoRegionMiss(), errors.New(regionErr.String())) + if err != nil { + return taskStat, err + } + continue + } + if resp.Resp == nil { + logutil.BgLogger().Warn("flashback miss resp body", zap.Uint64("region_id", loc.Region.GetID())) + err = bo.Backoff(tikv.BoTiKVRPC(), errors.New("flashback rpc miss resp body")) + if err != nil { + return taskStat, err + } + continue + } + flashbackToVersionResp := resp.Resp.(*kvrpcpb.FlashbackToVersionResponse) + if respErr := flashbackToVersionResp.GetError(); respErr != "" { + boErr := bo.Backoff(tikv.BoTiKVRPC(), errors.New(respErr)) + if boErr != nil { + return taskStat, boErr + } + continue + } + } + taskStat.CompletedRegions++ + if isLast { + break + } + bo = tikv.NewBackoffer(ctx, flashbackMaxBackoff) startKey = endKey } return taskStat, nil @@ -334,23 +438,36 @@ func sendFlashbackToVersionRPC( func flashbackToVersion( ctx context.Context, d *ddlCtx, - version uint64, + handler rangetask.TaskHandler, startKey []byte, endKey []byte, ) (err error) { return rangetask.NewRangeTaskRunner( "flashback-to-version-runner", d.store.(tikv.Storage), int(variable.GetDDLFlashbackConcurrency()), - func(ctx context.Context, r tikvstore.KeyRange) (rangetask.TaskStat, error) { - return sendFlashbackToVersionRPC(ctx, d.store.(tikv.Storage), version, r) - }, + handler, ).RunOnRange(ctx, startKey, endKey) } -// A Flashback has 3 different stages. +func splitRegionsByKeyRanges(d *ddlCtx, keyRanges []kv.KeyRange) { + if s, ok := d.store.(kv.SplittableStore); ok { + for _, keys := range keyRanges { + for { + // tableID is useless when scatter == false + _, err := s.SplitRegions(d.ctx, [][]byte{keys.StartKey, keys.EndKey}, false, nil) + if err == nil { + break + } + } + } + } +} + +// A Flashback has 4 different stages. // 1. before lock flashbackClusterJobID, check clusterJobID and lock it. // 2. before flashback start, check timestamp, disable GC and close PD schedule. -// 3. before flashback done, get key ranges, send flashback RPC. +// 3. phase 1, get key ranges, lock all regions. +// 4. phase 2, send flashback RPC, do flashback jobs. func (w *worker) onFlashbackCluster(d *ddlCtx, t *meta.Meta, job *model.Job) (ver int64, err error) { inFlashbackTest := false failpoint.Inject("mockFlashbackTest", func(val failpoint.Value) { @@ -364,15 +481,18 @@ func (w *worker) onFlashbackCluster(d *ddlCtx, t *meta.Meta, job *model.Job) (ve return ver, errors.Errorf("Not support flashback cluster in non-TiKV env") } - var flashbackTS uint64 + var flashbackTS, lockedRegions, commitTS uint64 var pdScheduleValue map[string]interface{} - var readOnlyValue string + var autoAnalyzeValue, readOnlyValue string var gcEnabledValue bool - if err := job.DecodeArgs(&flashbackTS, &pdScheduleValue, &readOnlyValue, &gcEnabledValue); err != nil { + if err := job.DecodeArgs(&flashbackTS, &pdScheduleValue, &gcEnabledValue, &autoAnalyzeValue, &readOnlyValue, &lockedRegions, &commitTS); err != nil { job.State = model.JobStateCancelled return ver, errors.Trace(err) } + var totalRegions, completedRegions atomic.Uint64 + totalRegions.Store(lockedRegions) + sess, err := w.sessPool.get() if err != nil { job.State = model.JobStateCancelled @@ -381,39 +501,76 @@ func (w *worker) onFlashbackCluster(d *ddlCtx, t *meta.Meta, job *model.Job) (ve defer w.sessPool.put(sess) switch job.SchemaState { - // Stage 1, check and set FlashbackClusterJobID, and save the PD schedule. + // Stage 1, check and set FlashbackClusterJobID, and update job args. case model.StateNone: if err = savePDSchedule(job); err != nil { job.State = model.JobStateCancelled return ver, errors.Trace(err) } - readOnlyValue, err = getTiDBSuperReadOnly(sess) + gcEnableValue, err := gcutil.CheckGCEnable(sess) if err != nil { job.State = model.JobStateCancelled return ver, errors.Trace(err) } - job.Args[readOnlyArgsOffset] = &readOnlyValue - gcEnableValue, err := gcutil.CheckGCEnable(sess) + job.Args[gcEnabledOffset] = &gcEnableValue + autoAnalyzeValue, err = getTiDBEnableAutoAnalyze(sess) if err != nil { job.State = model.JobStateCancelled return ver, errors.Trace(err) } - job.Args[gcEnabledArgsOffset] = &gcEnableValue - job.SchemaState = model.StateWriteOnly + job.Args[autoAnalyzeOffset] = &autoAnalyzeValue + readOnlyValue, err = getTiDBSuperReadOnly(sess) + if err != nil { + job.State = model.JobStateCancelled + return ver, errors.Trace(err) + } + job.Args[readOnlyOffset] = &readOnlyValue + job.SchemaState = model.StateDeleteOnly return ver, nil // Stage 2, check flashbackTS, close GC and PD schedule. - case model.StateWriteOnly: + case model.StateDeleteOnly: if err = checkAndSetFlashbackClusterInfo(sess, d, t, job, flashbackTS); err != nil { job.State = model.JobStateCancelled return ver, errors.Trace(err) } - // A hack way to make global variables are synchronized to all TiDB. - // TiKV will block read/write requests during flashback cluster. - // So it's not very dangerous when sync failed. - time.Sleep(1 * time.Second) - job.SchemaState = model.StateWriteReorganization + job.SchemaState = model.StateWriteOnly return ver, nil - // Stage 3, get key ranges. + // Stage 3, get key ranges and get locks. + case model.StateWriteOnly: + // TODO: Support flashback in unistore. + if inFlashbackTest { + job.SchemaState = model.StateWriteReorganization + return updateSchemaVersion(d, t, job) + } + keyRanges, err := GetFlashbackKeyRanges(sess) + if err != nil { + return ver, errors.Trace(err) + } + // Split region by keyRanges, make sure no unrelated key ranges be locked. + splitRegionsByKeyRanges(d, keyRanges) + totalRegions.Store(0) + for _, r := range keyRanges { + if err = flashbackToVersion(d.ctx, d, + func(ctx context.Context, r tikvstore.KeyRange) (rangetask.TaskStat, error) { + stats, err := SendPrepareFlashbackToVersionRPC(ctx, d.store.(tikv.Storage), r) + totalRegions.Add(uint64(stats.CompletedRegions)) + return stats, err + }, r.StartKey, r.EndKey); err != nil { + logutil.BgLogger().Warn("[ddl] Get error when do flashback", zap.Error(err)) + return ver, err + } + } + job.Args[totalLockedRegionsOffset] = totalRegions.Load() + + // We should get commitTS here to avoid lost commitTS when TiDB crashed during send flashback RPC. + commitTS, err = d.store.GetOracle().GetTimestamp(d.ctx, &oracle.Option{TxnScope: oracle.GlobalTxnScope}) + if err != nil { + return ver, errors.Trace(err) + } + job.Args[commitTSOffset] = commitTS + job.SchemaState = model.StateWriteReorganization + return updateSchemaVersion(d, t, job) + // Stage 4, get key ranges and send flashback RPC. case model.StateWriteReorganization: // TODO: Support flashback in unistore. if inFlashbackTest { @@ -422,16 +579,25 @@ func (w *worker) onFlashbackCluster(d *ddlCtx, t *meta.Meta, job *model.Job) (ve job.SchemaState = model.StatePublic return ver, nil } - - keyRanges, err := GetFlashbackKeyRanges(sess, tablecodec.EncodeTablePrefix(0)) + keyRanges, err := GetFlashbackKeyRanges(sess) if err != nil { return ver, errors.Trace(err) } - for _, ranges := range keyRanges { - if err = flashbackToVersion(context.Background(), d, flashbackTS, ranges.StartKey, ranges.EndKey); err != nil { + for _, r := range keyRanges { + if err = flashbackToVersion(d.ctx, d, + func(ctx context.Context, r tikvstore.KeyRange) (rangetask.TaskStat, error) { + // Use commitTS - 1 as startTS, make sure it less than commitTS. + stats, err := SendFlashbackToVersionRPC(ctx, d.store.(tikv.Storage), flashbackTS, commitTS-1, commitTS, r) + completedRegions.Add(uint64(stats.CompletedRegions)) + logutil.BgLogger().Info("[ddl] flashback cluster stats", + zap.Uint64("complete regions", completedRegions.Load()), + zap.Uint64("total regions", totalRegions.Load()), + zap.Error(err)) + return stats, err + }, r.StartKey, r.EndKey); err != nil { logutil.BgLogger().Warn("[ddl] Get error when do flashback", zap.Error(err)) - return ver, err + return ver, errors.Trace(err) } } @@ -449,12 +615,12 @@ func finishFlashbackCluster(w *worker, job *model.Job) error { return nil } - var flashbackTS uint64 + var flashbackTS, lockedRegions, commitTS uint64 var pdScheduleValue map[string]interface{} - var readOnlyValue string + var autoAnalyzeValue, readOnlyValue string var gcEnabled bool - if err := job.DecodeArgs(&flashbackTS, &pdScheduleValue, &readOnlyValue, &gcEnabled); err != nil { + if err := job.DecodeArgs(&flashbackTS, &pdScheduleValue, &gcEnabled, &autoAnalyzeValue, &readOnlyValue, &lockedRegions, &commitTS); err != nil { return errors.Trace(err) } sess, err := w.sessPool.get() @@ -464,28 +630,18 @@ func finishFlashbackCluster(w *worker, job *model.Job) error { defer w.sessPool.put(sess) err = kv.RunInNewTxn(w.ctx, w.store, true, func(ctx context.Context, txn kv.Transaction) error { - t := meta.NewMeta(txn) if err = recoverPDSchedule(pdScheduleValue); err != nil { return err } - if err = setTiDBSuperReadOnly(sess, readOnlyValue); err != nil { - return err - } if gcEnabled { if err = gcutil.EnableGC(sess); err != nil { return err } } - if job.IsDone() || job.IsSynced() { - gcSafePoint, err := gcutil.GetGCSafePoint(sess) - if err != nil { - return err - } - if err = UpdateFlashbackHistoryTSRanges(t, flashbackTS, t.StartTS, gcSafePoint); err != nil { - return err - } + if err = setTiDBSuperReadOnly(w.ctx, sess, readOnlyValue); err != nil { + return err } - return nil + return setTiDBEnableAutoAnalyze(w.ctx, sess, autoAnalyzeValue) }) if err != nil { return err @@ -493,56 +649,3 @@ func finishFlashbackCluster(w *worker, job *model.Job) error { return nil } - -// CheckFlashbackHistoryTSRange checks flashbackTS overlapped with history time ranges or not. -func CheckFlashbackHistoryTSRange(m *meta.Meta, flashbackTS uint64) error { - tsRanges, err := m.GetFlashbackHistoryTSRange() - if err != nil { - return err - } - for _, tsRange := range tsRanges { - if tsRange.StartTS <= flashbackTS && flashbackTS <= tsRange.EndTS { - return errors.Errorf("FlashbackTs overlapped, old range: [%s, %s], flashbackTS: %s", - oracle.GetTimeFromTS(tsRange.StartTS), oracle.GetTimeFromTS(tsRange.EndTS), oracle.GetTimeFromTS(flashbackTS)) - } - } - return nil -} - -// UpdateFlashbackHistoryTSRanges insert [startTS, endTS] into FlashbackHistoryTSRange. -func UpdateFlashbackHistoryTSRanges(m *meta.Meta, startTS uint64, endTS uint64, gcSafePoint uint64) error { - tsRanges, err := m.GetFlashbackHistoryTSRange() - if err != nil { - return err - } - if len(tsRanges) != 0 && tsRanges[len(tsRanges)-1].EndTS >= endTS { - // It's impossible, endTS should always greater than all TS in history TS ranges. - return errors.Errorf("Maybe TSO fallback, last flashback endTS: %d, now: %d", tsRanges[len(tsRanges)-1].EndTS, endTS) - } - - newTsRange := make([]meta.TSRange, 0, len(tsRanges)) - - for _, tsRange := range tsRanges { - if tsRange.EndTS < gcSafePoint { - continue - } - if startTS > tsRange.EndTS { - // tsRange.StartTS < tsRange.EndTS < startTS. - // We should keep tsRange in slices. - newTsRange = append(newTsRange, tsRange) - } else if startTS < tsRange.StartTS { - // startTS < tsRange.StartTS < tsRange.EndTS. - // The remained ts ranges are useless, [startTS, endTS] will cover them, so break. - break - } else { - // tsRange.StartTS < startTS < tsRange.EndTS. - // It's impossible reach here, we checked it before start flashback cluster. - return errors.Errorf("It's an unreachable branch, flashbackTS (%d) in old ts range: [%d, %d]", - startTS, tsRange.StartTS, tsRange.EndTS) - } - } - - // Store the new tsRange. - newTsRange = append(newTsRange, meta.TSRange{StartTS: startTS, EndTS: endTS}) - return m.SetFlashbackHistoryTSRange(newTsRange) -} diff --git a/ddl/cluster_test.go b/ddl/cluster_test.go index 92ffd4391d384..2cbf5ee45336a 100644 --- a/ddl/cluster_test.go +++ b/ddl/cluster_test.go @@ -24,11 +24,9 @@ import ( "github.com/pingcap/tidb/ddl" "github.com/pingcap/tidb/domain/infosync" "github.com/pingcap/tidb/errno" - "github.com/pingcap/tidb/meta" "github.com/pingcap/tidb/parser/model" "github.com/pingcap/tidb/session" "github.com/pingcap/tidb/sessionctx/variable" - "github.com/pingcap/tidb/tablecodec" "github.com/pingcap/tidb/testkit" "github.com/pingcap/tidb/util/dbterror" "github.com/stretchr/testify/assert" @@ -42,7 +40,7 @@ func TestGetFlashbackKeyRanges(t *testing.T) { se, err := session.CreateSession4Test(store) require.NoError(t, err) - kvRanges, err := ddl.GetFlashbackKeyRanges(se, tablecodec.EncodeTablePrefix(0)) + kvRanges, err := ddl.GetFlashbackKeyRanges(se) require.NoError(t, err) // The results are 6 key ranges // 0: (stats_meta,stats_histograms,stats_buckets) @@ -51,27 +49,8 @@ func TestGetFlashbackKeyRanges(t *testing.T) { // 3: (stats_extended) // 4: (stats_fm_sketch) // 5: (stats_history, stats_meta_history) - require.Len(t, kvRanges, 6) - // tableID for mysql.stats_meta is 20 - require.Equal(t, kvRanges[0].StartKey, tablecodec.EncodeTablePrefix(20)) - // tableID for mysql.stats_feedback is 30 - require.Equal(t, kvRanges[1].StartKey, tablecodec.EncodeTablePrefix(30)) - // tableID for mysql.stats_meta_history is 62 - require.Equal(t, kvRanges[5].EndKey, tablecodec.EncodeTablePrefix(62+1)) - - // The original table ID for range is [60, 63) - // startKey is 61, so return [61, 63) - kvRanges, err = ddl.GetFlashbackKeyRanges(se, tablecodec.EncodeTablePrefix(61)) - require.NoError(t, err) - require.Len(t, kvRanges, 1) - require.Equal(t, kvRanges[0].StartKey, tablecodec.EncodeTablePrefix(61)) - - // The original ranges are [48, 49), [60, 63) - // startKey is 59, so return [60, 63) - kvRanges, err = ddl.GetFlashbackKeyRanges(se, tablecodec.EncodeTablePrefix(59)) - require.NoError(t, err) - require.Len(t, kvRanges, 1) - require.Equal(t, kvRanges[0].StartKey, tablecodec.EncodeTablePrefix(60)) + // 6: (stats_table_locked) + require.Len(t, kvRanges, 7) tk.MustExec("use test") tk.MustExec("CREATE TABLE employees (" + @@ -83,13 +62,6 @@ func TestGetFlashbackKeyRanges(t *testing.T) { " PARTITION p2 VALUES LESS THAN (16)," + " PARTITION p3 VALUES LESS THAN (21)" + ");") - kvRanges, err = ddl.GetFlashbackKeyRanges(se, tablecodec.EncodeTablePrefix(63)) - require.NoError(t, err) - // start from table ID is 63, so only 1 kv range. - require.Len(t, kvRanges, 1) - // 1 tableID and 4 partitions. - require.Equal(t, tablecodec.DecodeTableID(kvRanges[0].EndKey)-tablecodec.DecodeTableID(kvRanges[0].StartKey), int64(5)) - tk.MustExec("truncate table mysql.analyze_jobs") // truncate all `stats_` tables, make table ID consecutive. @@ -102,12 +74,13 @@ func TestGetFlashbackKeyRanges(t *testing.T) { tk.MustExec("truncate table mysql.stats_fm_sketch") tk.MustExec("truncate table mysql.stats_history") tk.MustExec("truncate table mysql.stats_meta_history") - kvRanges, err = ddl.GetFlashbackKeyRanges(se, tablecodec.EncodeTablePrefix(0)) + tk.MustExec("truncate table mysql.stats_table_locked") + kvRanges, err = ddl.GetFlashbackKeyRanges(se) require.NoError(t, err) require.Len(t, kvRanges, 2) tk.MustExec("truncate table test.employees") - kvRanges, err = ddl.GetFlashbackKeyRanges(se, tablecodec.EncodeTablePrefix(0)) + kvRanges, err = ddl.GetFlashbackKeyRanges(se) require.NoError(t, err) require.Len(t, kvRanges, 1) } @@ -186,7 +159,7 @@ func TestAddDDLDuringFlashback(t *testing.T) { hook := &ddl.TestDDLCallback{Do: dom} hook.OnJobRunBeforeExported = func(job *model.Job) { assert.Equal(t, model.ActionFlashbackCluster, job.Type) - if job.SchemaState == model.StateWriteReorganization { + if job.SchemaState == model.StateWriteOnly { _, err := tk.Exec("alter table t add column b int") assert.ErrorContains(t, err, "Can't add ddl job, have flashback cluster job") } @@ -225,12 +198,15 @@ func TestGlobalVariablesOnFlashback(t *testing.T) { hook.OnJobRunBeforeExported = func(job *model.Job) { assert.Equal(t, model.ActionFlashbackCluster, job.Type) if job.SchemaState == model.StateWriteReorganization { - rs, err := tk.Exec("show variables like 'tidb_super_read_only'") + rs, err := tk.Exec("show variables like 'tidb_gc_enable'") assert.NoError(t, err) - assert.Equal(t, tk.ResultSetToResult(rs, "").Rows()[0][1], variable.On) - rs, err = tk.Exec("show variables like 'tidb_gc_enable'") + assert.Equal(t, tk.ResultSetToResult(rs, "").Rows()[0][1], variable.Off) + rs, err = tk.Exec("show variables like 'tidb_enable_auto_analyze'") assert.NoError(t, err) assert.Equal(t, tk.ResultSetToResult(rs, "").Rows()[0][1], variable.Off) + rs, err = tk.Exec("show variables like 'tidb_super_read_only'") + assert.NoError(t, err) + assert.Equal(t, tk.ResultSetToResult(rs, "").Rows()[0][1], variable.On) } } dom.DDL().SetHook(hook) @@ -239,6 +215,7 @@ func TestGlobalVariablesOnFlashback(t *testing.T) { tk.MustExec("set global tidb_super_read_only = off") tk.MustExec(fmt.Sprintf("flashback cluster to timestamp '%s'", oracle.GetTimeFromTS(ts))) + rs, err := tk.Exec("show variables like 'tidb_super_read_only'") require.NoError(t, err) require.Equal(t, tk.ResultSetToResult(rs, "").Rows()[0][1], variable.Off) @@ -284,17 +261,13 @@ func TestCancelFlashbackCluster(t *testing.T) { defer resetGC() tk.MustExec(fmt.Sprintf(safePointSQL, timeBeforeDrop)) - // Try canceled on StateWriteOnly, cancel success - tk.MustExec("set global tidb_super_read_only = off") + // Try canceled on StateDeleteOnly, cancel success hook := newCancelJobHook(t, store, dom, func(job *model.Job) bool { - return job.SchemaState == model.StateWriteOnly + return job.SchemaState == model.StateDeleteOnly }) dom.DDL().SetHook(hook) tk.MustGetErrCode(fmt.Sprintf("flashback cluster to timestamp '%s'", oracle.GetTimeFromTS(ts)), errno.ErrCancelledDDLJob) hook.MustCancelDone(t) - rs, err := tk.Exec("show variables like 'tidb_super_read_only'") - require.NoError(t, err) - require.Equal(t, tk.ResultSetToResult(rs, "").Rows()[0][1], variable.Off) // Try canceled on StateWriteReorganization, cancel failed hook = newCancelJobHook(t, store, dom, func(job *model.Job) bool { @@ -310,60 +283,3 @@ func TestCancelFlashbackCluster(t *testing.T) { require.NoError(t, failpoint.Disable("github.com/pingcap/tidb/expression/injectSafeTS")) require.NoError(t, failpoint.Disable("tikvclient/injectSafeTS")) } - -func TestFlashbackTimeRange(t *testing.T) { - store := testkit.CreateMockStore(t) - - se, err := session.CreateSession4Test(store) - require.NoError(t, err) - txn, err := se.GetStore().Begin() - require.NoError(t, err) - - m := meta.NewMeta(txn) - flashbackTime := oracle.GetTimeFromTS(m.StartTS).Add(-10 * time.Minute) - - // No flashback history, shouldn't return err. - require.NoError(t, ddl.CheckFlashbackHistoryTSRange(m, oracle.GoTimeToTS(flashbackTime))) - - // Insert a time range to flashback history ts ranges. - require.NoError(t, ddl.UpdateFlashbackHistoryTSRanges(m, oracle.GoTimeToTS(flashbackTime), m.StartTS, 0)) - - historyTS, err := m.GetFlashbackHistoryTSRange() - require.NoError(t, err) - require.Len(t, historyTS, 1) - require.NoError(t, txn.Commit(context.Background())) - - se, err = session.CreateSession4Test(store) - require.NoError(t, err) - txn, err = se.GetStore().Begin() - require.NoError(t, err) - - m = meta.NewMeta(txn) - require.NoError(t, err) - // Flashback history time range is [m.StartTS - 10min, m.StartTS] - require.Error(t, ddl.CheckFlashbackHistoryTSRange(m, oracle.GoTimeToTS(flashbackTime.Add(5*time.Minute)))) - - // Check add insert a new time range - require.NoError(t, ddl.CheckFlashbackHistoryTSRange(m, oracle.GoTimeToTS(flashbackTime.Add(-5*time.Minute)))) - require.NoError(t, ddl.UpdateFlashbackHistoryTSRanges(m, oracle.GoTimeToTS(flashbackTime.Add(-5*time.Minute)), m.StartTS, 0)) - - historyTS, err = m.GetFlashbackHistoryTSRange() - require.NoError(t, err) - // history time range still equals to 1, because overlapped - require.Len(t, historyTS, 1) - - require.NoError(t, ddl.UpdateFlashbackHistoryTSRanges(m, oracle.GoTimeToTS(flashbackTime.Add(15*time.Minute)), oracle.GoTimeToTS(flashbackTime.Add(20*time.Minute)), 0)) - historyTS, err = m.GetFlashbackHistoryTSRange() - require.NoError(t, err) - require.Len(t, historyTS, 2) - - // GCSafePoint updated will clean some history TS ranges - require.NoError(t, ddl.UpdateFlashbackHistoryTSRanges(m, - oracle.GoTimeToTS(flashbackTime.Add(25*time.Minute)), - oracle.GoTimeToTS(flashbackTime.Add(30*time.Minute)), - oracle.GoTimeToTS(flashbackTime.Add(22*time.Minute)))) - historyTS, err = m.GetFlashbackHistoryTSRange() - require.NoError(t, err) - require.Len(t, historyTS, 1) - require.NoError(t, txn.Commit(context.Background())) -} diff --git a/ddl/column.go b/ddl/column.go index 10db5120e9351..06f6e2897f3ae 100644 --- a/ddl/column.go +++ b/ddl/column.go @@ -1165,7 +1165,7 @@ func newUpdateColumnWorker(sessCtx sessionctx.Context, id int, t table.PhysicalT } rowDecoder := decoder.NewRowDecoder(t, t.WritableCols(), decodeColMap) return &updateColumnWorker{ - backfillWorker: newBackfillWorker(sessCtx, id, t, reorgInfo, typeUpdateColumnWorker), + backfillWorker: newBackfillWorker(jc.ddlJobCtx, sessCtx, id, t, reorgInfo, typeUpdateColumnWorker), oldColInfo: oldCol, newColInfo: newCol, metricCounter: metrics.BackfillTotalCounter.WithLabelValues(metrics.GenerateReorgLabel("update_col_rate", reorgInfo.SchemaName, t.Meta().Name.String())), diff --git a/ddl/column_type_change_test.go b/ddl/column_type_change_test.go index ae0adda97b99b..818d0714080f1 100644 --- a/ddl/column_type_change_test.go +++ b/ddl/column_type_change_test.go @@ -1946,7 +1946,7 @@ func TestChangeIntToBitWillPanicInBackfillIndexes(t *testing.T) { " KEY `idx3` (`a`,`b`),\n" + " KEY `idx4` (`a`,`b`,`c`)\n" + ") ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin")) - tk.MustQuery("select * from t").Check(testkit.Rows("\x13 1 1.00", "\x11 2 2.00")) + tk.MustQuery("select * from t").Sort().Check(testkit.Rows("\x11 2 2.00", "\x13 1 1.00")) } // Close issue #24584 diff --git a/ddl/concurrentddltest/main_test.go b/ddl/concurrentddltest/main_test.go index d6b52492ddb07..4ab7e96eab2ae 100644 --- a/ddl/concurrentddltest/main_test.go +++ b/ddl/concurrentddltest/main_test.go @@ -36,6 +36,7 @@ func TestMain(m *testing.M) { opts := []goleak.Option{ goleak.IgnoreTopFunction("github.com/golang/glog.(*loggingT).flushDaemon"), + goleak.IgnoreTopFunction("github.com/lestrrat-go/httprc.runFetchWorker"), goleak.IgnoreTopFunction("go.etcd.io/etcd/client/pkg/v3/logutil.(*MergeLogger).outputLoop"), goleak.IgnoreTopFunction("go.opencensus.io/stats/view.(*worker).start"), } diff --git a/ddl/concurrentddltest/switch_test.go b/ddl/concurrentddltest/switch_test.go index 5d77dcb8f7359..d487859260eb2 100644 --- a/ddl/concurrentddltest/switch_test.go +++ b/ddl/concurrentddltest/switch_test.go @@ -87,6 +87,8 @@ func TestConcurrentDDLSwitch(t *testing.T) { ch <- struct{}{} }() + // sleep 2s to make sure the ddl jobs is into table. + time.Sleep(2 * time.Second) ticker := time.NewTicker(time.Second) count := 0 done := false @@ -110,6 +112,7 @@ func TestConcurrentDDLSwitch(t *testing.T) { count++ if b { tk := testkit.NewTestKit(t, store) + tk.Session().GetSessionVars().MemQuotaQuery = -1 tk.MustQuery("select count(*) from mysql.tidb_ddl_job").Check(testkit.Rows("0")) tk.MustQuery("select count(*) from mysql.tidb_ddl_reorg").Check(testkit.Rows("0")) } @@ -121,6 +124,7 @@ func TestConcurrentDDLSwitch(t *testing.T) { require.Greater(t, count, 0) tk = testkit.NewTestKit(t, store) + tk.Session().GetSessionVars().MemQuotaQuery = -1 tk.MustExec("use test") for i, tbl := range tables { tk.MustQuery(fmt.Sprintf("select count(*) from information_schema.columns where TABLE_SCHEMA = 'test' and TABLE_NAME = 't%d'", i)).Check(testkit.Rows(fmt.Sprintf("%d", tbl.columnIdx))) diff --git a/ddl/db_cache_test.go b/ddl/db_cache_test.go index 6506f24e4ef0d..012ac09ac7375 100644 --- a/ddl/db_cache_test.go +++ b/ddl/db_cache_test.go @@ -232,7 +232,14 @@ func TestCacheTableSizeLimit(t *testing.T) { } time.Sleep(50 * time.Millisecond) } - require.True(t, cached) + + // require.True(t, cached) + if !cached { + // cached should be true, but it depends on the hardward. + // If the CI environment is too slow, 200 iteration would not be enough, + // check the result makes this test unstable, so skip the following. + return + } // Forbit the insert once the table size limit is detected. tk.MustGetErrCode("insert into cache_t2 select * from tmp;", errno.ErrOptOnCacheTable) diff --git a/ddl/db_integration_test.go b/ddl/db_integration_test.go index 7c53b2495917d..b7cb35a9f8727 100644 --- a/ddl/db_integration_test.go +++ b/ddl/db_integration_test.go @@ -2930,7 +2930,7 @@ func TestAutoIncrementForce(t *testing.T) { require.Equal(t, uint64(1), getNextGlobalID()) // inserting new rows can overwrite the existing data. tk.MustExec("insert into t values (3);") - require.Equal(t, "[kv:1062]Duplicate entry '2' for key 'PRIMARY'", tk.ExecToErr("insert into t values (3);").Error()) + require.Equal(t, "[kv:1062]Duplicate entry '2' for key 't.PRIMARY'", tk.ExecToErr("insert into t values (3);").Error()) tk.MustQuery("select a, _tidb_rowid from t;").Check(testkit.Rows("3 1", "1 2", "2 3")) // Rebase auto_increment. @@ -3144,7 +3144,7 @@ func TestDuplicateErrorMessage(t *testing.T) { fields[i] = strings.Replace(val, "'", "", -1) } tk.MustGetErrMsg("alter table t add unique index t_idx(id1,"+index+")", - fmt.Sprintf("[kv:1062]Duplicate entry '1-%s' for key 't_idx'", strings.Join(fields, "-"))) + fmt.Sprintf("[kv:1062]Duplicate entry '1-%s' for key 't.t_idx'", strings.Join(fields, "-"))) } } restoreConfig() diff --git a/ddl/db_partition_test.go b/ddl/db_partition_test.go index 93ed264deb6e8..e5ad2aa2bbfec 100644 --- a/ddl/db_partition_test.go +++ b/ddl/db_partition_test.go @@ -383,7 +383,14 @@ func TestCreateTableWithHashPartition(t *testing.T) { ) PARTITION BY HASH(store_id) PARTITIONS 102400000000;`, errno.ErrTooManyPartitions) tk.MustExec("CREATE TABLE t_linear (a int, b varchar(128)) PARTITION BY LINEAR HASH(a) PARTITIONS 4") - tk.MustGetErrCode("select * from t_linear partition (p0)", errno.ErrPartitionClauseOnNonpartitioned) + tk.MustQuery(`show warnings`).Check(testkit.Rows("Warning 8200 LINEAR HASH is not supported, using non-linear HASH instead")) + tk.MustQuery(`show create table t_linear`).Check(testkit.Rows("" + + "t_linear CREATE TABLE `t_linear` (\n" + + " `a` int(11) DEFAULT NULL,\n" + + " `b` varchar(128) DEFAULT NULL\n" + + ") ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin\n" + + "PARTITION BY HASH (`a`) PARTITIONS 4")) + tk.MustQuery("select * from t_linear partition (p0)").Check(testkit.Rows()) tk.MustExec(`CREATE TABLE t_sub (a int, b varchar(128)) PARTITION BY RANGE( a ) SUBPARTITION BY HASH( a ) SUBPARTITIONS 2 ( @@ -4061,7 +4068,7 @@ func TestCreateAndAlterIntervalPartition(t *testing.T) { tk.MustQuery("select count(*) from ipt").Check(testkit.Rows("27")) - tk.MustExec("create table idpt (id date primary key, val varchar(255), key (val)) partition by range COLUMNS (id) INTERVAL (1 week) FIRST PARTITION LESS THAN ('2022-02-01') LAST PARTITION LESS THAN ('2022-03-29') NULL PARTITION MAXVALUE PARTITION") + tk.MustExec("create table idpt (id date primary key nonclustered, val varchar(255), key (val)) partition by range COLUMNS (id) INTERVAL (1 week) FIRST PARTITION LESS THAN ('2022-02-01') LAST PARTITION LESS THAN ('2022-03-29') NULL PARTITION MAXVALUE PARTITION") tk.MustQuery("SHOW CREATE TABLE idpt").Check(testkit.Rows( "idpt CREATE TABLE `idpt` (\n" + " `id` date NOT NULL,\n" + @@ -4087,7 +4094,7 @@ func TestCreateAndAlterIntervalPartition(t *testing.T) { // if using a month with 31 days. // But managing partitions with the day-part of 29, 30 or 31 will be troublesome, since once the FIRST is not 31 // both the ALTER TABLE t FIRST PARTITION and MERGE FIRST PARTITION will have issues - tk.MustExec("create table t (id date primary key, val varchar(255), key (val)) partition by range COLUMNS (id) INTERVAL (1 MONTH) FIRST PARTITION LESS THAN ('2022-01-31') LAST PARTITION LESS THAN ('2022-05-31')") + tk.MustExec("create table t (id date primary key nonclustered, val varchar(255), key (val)) partition by range COLUMNS (id) INTERVAL (1 MONTH) FIRST PARTITION LESS THAN ('2022-01-31') LAST PARTITION LESS THAN ('2022-05-31')") tk.MustQuery("show create table t").Check(testkit.Rows( "t CREATE TABLE `t` (\n" + " `id` date NOT NULL,\n" + @@ -4528,6 +4535,7 @@ func TestPartitionTableWithAnsiQuotes(t *testing.T) { ` PARTITION "p4" VALUES LESS THAN ('\\''\t\n','\\''\t\n'),` + "\n" + ` PARTITION "pMax" VALUES LESS THAN (MAXVALUE,MAXVALUE))`)) } + func TestAlterModifyColumnOnPartitionedTable(t *testing.T) { store := testkit.CreateMockStore(t) tk := testkit.NewTestKit(t, store) @@ -4655,4 +4663,104 @@ func TestAlterModifyColumnOnPartitionedTable(t *testing.T) { "34 34💥", "46 46", "57 57")) + tk.MustGetErrCode(`alter table t modify a varchar(20)`, errno.ErrUnsupportedDDLOperation) +} + +func TestAlterModifyColumnOnPartitionedTableRename(t *testing.T) { + store := testkit.CreateMockStore(t) + tk := testkit.NewTestKit(t, store) + schemaName := "modColPartRename" + tk.MustExec("create database " + schemaName) + tk.MustExec("use " + schemaName) + tk.MustExec(`create table t (a int, b char) partition by range (a) (partition p0 values less than (10))`) + tk.MustContainErrMsg(`alter table t change a c int`, "[planner:1054]Unknown column 'a' in 'expression'") + tk.MustExec(`drop table t`) + tk.MustExec(`create table t (a char, b char) partition by range columns (a) (partition p0 values less than ('z'))`) + tk.MustContainErrMsg(`alter table t change a c char`, "[ddl:8200]New column does not match partition definitions: [ddl:1567]partition column name cannot be found") + tk.MustExec(`drop table t`) + tk.MustExec(`create table t (a int, b char) partition by list (a) (partition p0 values in (10))`) + tk.MustContainErrMsg(`alter table t change a c int`, "[planner:1054]Unknown column 'a' in 'expression'") + tk.MustExec(`drop table t`) + tk.MustExec(`create table t (a char, b char) partition by list columns (a) (partition p0 values in ('z'))`) + tk.MustContainErrMsg(`alter table t change a c char`, "[ddl:8200]New column does not match partition definitions: [ddl:1567]partition column name cannot be found") + tk.MustExec(`drop table t`) + tk.MustExec(`create table t (a int, b char) partition by hash (a) partitions 3`) + tk.MustContainErrMsg(`alter table t change a c int`, "[planner:1054]Unknown column 'a' in 'expression'") +} + +func TestAlterModifyColumnOnPartitionedTableFail(t *testing.T) { + store := testkit.CreateMockStore(t) + tk := testkit.NewTestKit(t, store) + schemaName := "modColPartFail" + tk.MustExec("create database " + schemaName) + tk.MustExec("use " + schemaName) + tk.MustExec(`create table t (a int unsigned, b varchar(255), key (b)) partition by range (a) (partition p0 values less than (10), partition p1 values less than (20), partition pMax values less than (MAXVALUE))`) + tk.MustExec(`insert into t values (7, "07"), (8, "08"),(23,"23"),(34,"34💥"),(46,"46"),(57,"57")`) + tk.MustGetErrCode(`alter table t modify a varchar(255)`, errno.ErrUnsupportedDDLOperation) + tk.MustGetErrCode(`alter table t modify a float`, mysql.ErrFieldTypeNotAllowedAsPartitionField) + tk.MustExec(`drop table t`) + tk.MustExec(`create table t (b int unsigned, a varchar(255), key (b)) partition by range columns (a) (partition p0 values less than (""), partition p1 values less than ("11111"), partition pMax values less than (MAXVALUE))`) + tk.MustExec(`insert into t values (7, "07"), (8, "08"),(23,"23"),(34,"34 💥💥Longer than 11111"),(46,"46"),(57,"57")`) + tk.MustExec(`alter table t modify a varchar(50)`) + tk.MustGetErrCode(`alter table t modify a float`, mysql.ErrFieldTypeNotAllowedAsPartitionField) + tk.MustGetErrCode(`alter table t modify a int`, errno.ErrUnsupportedDDLOperation) + tk.MustContainErrMsg(`alter table t modify a varchar(4)`, "[ddl:8200]New column does not match partition definitions: [ddl:1654]Partition column values of incorrect type") + tk.MustGetErrCode(`alter table t modify a varchar(5)`, errno.WarnDataTruncated) + tk.MustExec(`SET SQL_MODE = ''`) + tk.MustExec(`alter table t modify a varchar(5)`) + // fix https://github.com/pingcap/tidb/issues/38669 and update this + tk.MustQuery(`show warnings`).Check(testkit.Rows()) + tk.MustExec(`SET SQL_MODE = DEFAULT`) + tk.MustQuery(`select * from t`).Sort().Check(testkit.Rows(""+ + "23 23", + "34 34 💥💥", + "46 46", + "57 57", + "7 07", + "8 08")) + tStr := "" + + "CREATE TABLE `t` (\n" + + " `b` int(10) unsigned DEFAULT NULL,\n" + + " `a` varchar(5) DEFAULT NULL,\n" + + " KEY `b` (`b`)\n" + + ") ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin\n" + + "PARTITION BY RANGE COLUMNS(`a`)\n" + + "(PARTITION `p0` VALUES LESS THAN (''),\n" + + " PARTITION `p1` VALUES LESS THAN ('11111'),\n" + + " PARTITION `pMax` VALUES LESS THAN (MAXVALUE))" + tk.MustQuery(`show create table t`).Check(testkit.Rows("t " + tStr)) + tk.MustExec(`drop table t`) + tk.MustExec(tStr) + tk.MustExec(`drop table t`) + tk.MustExec("create table t (a int, b varchar(255), key (b)) partition by range (a) (partition `p-300` values less than (-300), partition p0 values less than (0), partition p300 values less than (300))") + tk.MustExec(`insert into t values (-400, "-400"), (-100, "-100"), (0, "0"), (100, "100"), (290, "290")`) + tk.MustContainErrMsg(`alter table t modify a int unsigned`, "[ddl:8200]Unsupported modify column, decreasing length of int may result in truncation and change of partition") + tk.MustContainErrMsg(`alter table t modify a tinyint`, "[ddl:8200]Unsupported modify column, decreasing length of int may result in truncation and change of partition") + tk.MustExec(`set sql_mode = ''`) + tk.MustContainErrMsg(`alter table t modify a tinyint`, "[ddl:8200]Unsupported modify column, decreasing length of int may result in truncation and change of partition") + tk.MustQuery("select * from t partition (`p-300`)").Sort().Check(testkit.Rows("-400 -400")) + tk.MustExec(`set sql_mode = default`) + tk.MustContainErrMsg(`alter table t modify a smallint`, "[ddl:8200]Unsupported modify column, decreasing length of int may result in truncation and change of partition") + tk.MustExec(`alter table t modify a bigint`) + tk.MustExec(`drop table t`) + tk.MustExec("create table t (a int, b varchar(255), key (b)) partition by range columns (a) (partition `p-300` values less than (-300), partition p0 values less than (0), partition p300 values less than (300))") + tk.MustExec(`insert into t values (-400, "-400"), (-100, "-100"), (0, "0"), (100, "100"), (290, "290")`) + tk.MustContainErrMsg(`alter table t modify a int unsigned`, "[ddl:8200]Unsupported modify column: can't change the partitioning column, since it would require reorganize all partitions") + tk.MustContainErrMsg(`alter table t modify a tinyint`, "[ddl:8200]New column does not match partition definitions: [ddl:1654]Partition column values of incorrect type") + tk.MustExec(`set sql_mode = ''`) + tk.MustContainErrMsg(`alter table t modify a tinyint`, "[ddl:8200]New column does not match partition definitions: [ddl:1654]Partition column values of incorrect type") + tk.MustQuery("select * from t partition (`p-300`)").Sort().Check(testkit.Rows("-400 -400")) + tk.MustExec(`set sql_mode = default`) + // OK to decrease, since with RANGE COLUMNS, it will check the partition definition values against the new type + tk.MustExec(`alter table t modify a smallint`) + tk.MustExec(`alter table t modify a bigint`) + + tk.MustExec(`drop table t`) + + tk.MustExec(`create table t (a int, b varchar(255), key (b)) partition by list columns (b) (partition p1 values in ("1", "ab", "12345"), partition p2 values in ("2", "abc", "999999"))`) + tk.MustExec(`insert into t values (1, "1"), (2, "2"), (999999, "999999")`) + tk.MustContainErrMsg(`alter table t modify column b varchar(5)`, "[ddl:8200]New column does not match partition definitions: [ddl:1654]Partition column values of incorrect type") + tk.MustExec(`set sql_mode = ''`) + tk.MustContainErrMsg(`alter table t modify column b varchar(5)`, "[ddl:8200]New column does not match partition definitions: [ddl:1654]Partition column values of incorrect type") + tk.MustExec(`set sql_mode = default`) } diff --git a/ddl/db_table_test.go b/ddl/db_table_test.go index 730e3bb941848..2771a06ecc291 100644 --- a/ddl/db_table_test.go +++ b/ddl/db_table_test.go @@ -18,6 +18,7 @@ import ( "bytes" "context" "fmt" + "strconv" "strings" "testing" "time" @@ -30,6 +31,7 @@ import ( "github.com/pingcap/tidb/errno" "github.com/pingcap/tidb/infoschema" "github.com/pingcap/tidb/kv" + "github.com/pingcap/tidb/meta" "github.com/pingcap/tidb/parser/auth" "github.com/pingcap/tidb/parser/model" "github.com/pingcap/tidb/parser/terror" @@ -380,6 +382,49 @@ func TestAlterTableWithValidation(t *testing.T) { tk.MustQuery("show warnings").Check(testkit.RowsWithSep("|", "Warning|8200|ALTER TABLE WITHOUT VALIDATION is currently unsupported")) } +func TestCreateTableWithInfo(t *testing.T) { + store, dom := testkit.CreateMockStoreAndDomain(t) + tk := testkit.NewTestKit(t, store) + tk.MustExec("use test") + tk.Session().SetValue(sessionctx.QueryString, "skip") + + d := dom.DDL() + require.NotNil(t, d) + info := []*model.TableInfo{{ + ID: 42, + Name: model.NewCIStr("t"), + }} + + require.NoError(t, d.BatchCreateTableWithInfo(tk.Session(), model.NewCIStr("test"), info, ddl.OnExistError, ddl.AllocTableIDIf(func(ti *model.TableInfo) bool { + return false + }))) + tk.MustQuery("select tidb_table_id from information_schema.tables where table_name = 't'").Check(testkit.Rows("42")) + ctx := kv.WithInternalSourceType(context.Background(), kv.InternalTxnOthers) + + var id int64 + err := kv.RunInNewTxn(ctx, store, true, func(_ context.Context, txn kv.Transaction) error { + m := meta.NewMeta(txn) + var err error + id, err = m.GenGlobalID() + return err + }) + + require.NoError(t, err) + info = []*model.TableInfo{{ + ID: 42, + Name: model.NewCIStr("tt"), + }} + tk.Session().SetValue(sessionctx.QueryString, "skip") + require.NoError(t, d.BatchCreateTableWithInfo(tk.Session(), model.NewCIStr("test"), info, ddl.OnExistError, ddl.AllocTableIDIf(func(ti *model.TableInfo) bool { + return true + }))) + idGen, ok := tk.MustQuery("select tidb_table_id from information_schema.tables where table_name = 'tt'").Rows()[0][0].(string) + require.True(t, ok) + idGenNum, err := strconv.ParseInt(idGen, 10, 64) + require.NoError(t, err) + require.Greater(t, idGenNum, id) +} + func TestBatchCreateTable(t *testing.T) { store, dom := testkit.CreateMockStoreAndDomain(t) tk := testkit.NewTestKit(t, store) diff --git a/ddl/db_test.go b/ddl/db_test.go index f0e7c6809a12e..207aad4e0f116 100644 --- a/ddl/db_test.go +++ b/ddl/db_test.go @@ -237,7 +237,7 @@ func TestJsonUnmarshalErrWhenPanicInCancellingPath(t *testing.T) { tk.MustExec("create table test_add_index_after_add_col(a int, b int not null default '0');") tk.MustExec("insert into test_add_index_after_add_col values(1, 2),(2,2);") tk.MustExec("alter table test_add_index_after_add_col add column c int not null default '0';") - tk.MustGetErrMsg("alter table test_add_index_after_add_col add unique index cc(c);", "[kv:1062]Duplicate entry '0' for key 'cc'") + tk.MustGetErrMsg("alter table test_add_index_after_add_col add unique index cc(c);", "[kv:1062]Duplicate entry '0' for key 'test_add_index_after_add_col.cc'") } func TestIssue22819(t *testing.T) { diff --git a/ddl/ddl.go b/ddl/ddl.go index 0fac4e23ec0b9..7eeaa8c1f357e 100644 --- a/ddl/ddl.go +++ b/ddl/ddl.go @@ -85,11 +85,62 @@ const ( reorgWorkerCnt = 10 generalWorkerCnt = 1 + + // checkFlagIndexInJobArgs is the recoverCheckFlag index used in RecoverTable/RecoverSchema job arg list. + checkFlagIndexInJobArgs = 1 +) + +const ( + // The recoverCheckFlag is used to judge the gc work status when RecoverTable/RecoverSchema. + recoverCheckFlagNone int64 = iota + recoverCheckFlagEnableGC + recoverCheckFlagDisableGC ) // OnExist specifies what to do when a new object has a name collision. type OnExist uint8 +// AllocTableIDIf specifies whether to retain the old table ID. +// If this returns "false", then we would assume the table ID has been +// allocated before calling `CreateTableWithInfo` family. +type AllocTableIDIf func(*model.TableInfo) bool + +// CreateTableWithInfoConfig is the configuration of `CreateTableWithInfo`. +type CreateTableWithInfoConfig struct { + OnExist OnExist + ShouldAllocTableID AllocTableIDIf +} + +// CreateTableWithInfoConfigurier is the "diff" which can be applied to the +// CreateTableWithInfoConfig, currently implementations are "OnExist" and "AllocTableIDIf". +type CreateTableWithInfoConfigurier interface { + // Apply the change over the config. + Apply(*CreateTableWithInfoConfig) +} + +// GetCreateTableWithInfoConfig applies the series of configurier from default config +// and returns the final config. +func GetCreateTableWithInfoConfig(cs []CreateTableWithInfoConfigurier) CreateTableWithInfoConfig { + config := CreateTableWithInfoConfig{} + for _, c := range cs { + c.Apply(&config) + } + if config.ShouldAllocTableID == nil { + config.ShouldAllocTableID = func(*model.TableInfo) bool { return true } + } + return config +} + +// Apply implements Configurier. +func (o OnExist) Apply(c *CreateTableWithInfoConfig) { + c.OnExist = o +} + +// Apply implements Configurier. +func (a AllocTableIDIf) Apply(c *CreateTableWithInfoConfig) { + c.ShouldAllocTableID = a +} + const ( // OnExistError throws an error on name collision. OnExistError OnExist = iota @@ -119,6 +170,7 @@ type DDL interface { CreateView(ctx sessionctx.Context, stmt *ast.CreateViewStmt) error DropTable(ctx sessionctx.Context, stmt *ast.DropTableStmt) (err error) RecoverTable(ctx sessionctx.Context, recoverInfo *RecoverInfo) (err error) + RecoverSchema(ctx sessionctx.Context, recoverSchemaInfo *RecoverSchemaInfo) error DropView(ctx sessionctx.Context, stmt *ast.DropTableStmt) (err error) CreateIndex(ctx sessionctx.Context, stmt *ast.CreateIndexStmt) error DropIndex(ctx sessionctx.Context, stmt *ast.DropIndexStmt) error @@ -155,13 +207,13 @@ type DDL interface { ctx sessionctx.Context, schema model.CIStr, info *model.TableInfo, - onExist OnExist) error + cs ...CreateTableWithInfoConfigurier) error // BatchCreateTableWithInfo is like CreateTableWithInfo, but can handle multiple tables. BatchCreateTableWithInfo(ctx sessionctx.Context, schema model.CIStr, info []*model.TableInfo, - onExist OnExist) error + cs ...CreateTableWithInfoConfigurier) error // CreatePlacementPolicyWithInfo creates a placement policy // @@ -1164,14 +1216,32 @@ func (d *ddl) SwitchConcurrentDDL(toConcurrentDDL bool) error { // SwitchMDL enables MDL or disable DDL. func (d *ddl) SwitchMDL(enable bool) error { + ctx, cancel := context.WithTimeout(context.Background(), time.Second*30) + defer cancel() + + // Disable MDL for test. + if enable && !variable.DefTiDBEnableConcurrentDDL { + sql := fmt.Sprintf("UPDATE HIGH_PRIORITY %[1]s.%[2]s SET VARIABLE_VALUE = %[4]d WHERE VARIABLE_NAME = '%[3]s'", + mysql.SystemDB, mysql.GlobalVariablesTable, variable.TiDBEnableMDL, 0) + sess, err := d.sessPool.get() + if err != nil { + logutil.BgLogger().Warn("[ddl] get session failed", zap.Error(err)) + return nil + } + defer d.sessPool.put(sess) + se := newSession(sess) + _, err = se.execute(ctx, sql, "disableMDL") + if err != nil { + logutil.BgLogger().Warn("[ddl] disable MDL failed", zap.Error(err)) + } + return nil + } + isEnableBefore := variable.EnableMDL.Load() if isEnableBefore == enable { return nil } - ctx, cancel := context.WithTimeout(context.Background(), time.Second*30) - defer cancel() - // Check if there is any DDL running. // This check can not cover every corner cases, so users need to guarantee that there is no DDL running by themselves. sess, err := d.sessPool.get() @@ -1221,6 +1291,15 @@ type RecoverInfo struct { OldTableName string } +// RecoverSchemaInfo contains information needed by DDL.RecoverSchema. +type RecoverSchemaInfo struct { + *model.DBInfo + RecoverTabsInfo []*RecoverInfo + DropJobID int64 + SnapshotTS uint64 + OldSchemaName model.CIStr +} + // delayForAsyncCommit sleeps `SafeWindow + AllowedClockDrift` before a DDL job finishes. // It should be called before any DDL that could break data consistency. // This provides a safe window for async commit and 1PC to commit with an old schema. diff --git a/ddl/ddl_api.go b/ddl/ddl_api.go index 54f8243b6df8c..bbf3d4fc59856 100644 --- a/ddl/ddl_api.go +++ b/ddl/ddl_api.go @@ -38,6 +38,7 @@ import ( "github.com/pingcap/tidb/infoschema" "github.com/pingcap/tidb/kv" "github.com/pingcap/tidb/meta/autoid" + "github.com/pingcap/tidb/parser" "github.com/pingcap/tidb/parser/ast" "github.com/pingcap/tidb/parser/charset" "github.com/pingcap/tidb/parser/format" @@ -94,11 +95,11 @@ func (d *ddl) CreateSchema(ctx sessionctx.Context, stmt *ast.CreateDatabaseStmt) // If no charset and/or collation is specified use collation_server and character_set_server charsetOpt := ast.CharsetOpt{} if sessionVars.GlobalVarsAccessor != nil { - charsetOpt.Col, err = sessionVars.GetSessionOrGlobalSystemVar(variable.CollationServer) + charsetOpt.Col, err = sessionVars.GetSessionOrGlobalSystemVar(context.Background(), variable.CollationServer) if err != nil { return err } - charsetOpt.Chs, err = sessionVars.GetSessionOrGlobalSystemVar(variable.CharacterSetServer) + charsetOpt.Chs, err = sessionVars.GetSessionOrGlobalSystemVar(context.Background(), variable.CharacterSetServer) if err != nil { return err } @@ -633,6 +634,18 @@ func (d *ddl) DropSchema(ctx sessionctx.Context, stmt *ast.DropDatabaseStmt) (er return nil } +func (d *ddl) RecoverSchema(ctx sessionctx.Context, recoverSchemaInfo *RecoverSchemaInfo) error { + recoverSchemaInfo.State = model.StateNone + job := &model.Job{ + Type: model.ActionRecoverSchema, + BinlogInfo: &model.HistoryInfo{}, + Args: []interface{}{recoverSchemaInfo, recoverCheckFlagNone}, + } + err := d.DoDDLJob(ctx, job) + err = d.callHookOnChanged(job, err) + return errors.Trace(err) +} + func checkTooLongSchema(schema model.CIStr) error { if utf8.RuneCountInString(schema.L) > mysql.MaxDatabaseNameLength { return dbterror.ErrTooLongIdent.GenWithStackByArgs(schema) @@ -654,6 +667,20 @@ func checkTooLongIndex(index model.CIStr) error { return nil } +func checkTooLongColumn(col model.CIStr) error { + if utf8.RuneCountInString(col.L) > mysql.MaxColumnNameLength { + return dbterror.ErrTooLongIdent.GenWithStackByArgs(col) + } + return nil +} + +func checkTooLongForeignKey(fk model.CIStr) error { + if utf8.RuneCountInString(fk.L) > mysql.MaxForeignKeyIdentifierLen { + return dbterror.ErrTooLongIdent.GenWithStackByArgs(fk) + } + return nil +} + func setColumnFlagWithConstraint(colMap map[string]*table.Column, v *ast.Constraint) { switch v.Tp { case ast.ConstraintPrimaryKey: @@ -1518,7 +1545,20 @@ func containsColumnOption(colDef *ast.ColumnDef, opTp ast.ColumnOptionType) bool // IsAutoRandomColumnID returns true if the given column ID belongs to an auto_random column. func IsAutoRandomColumnID(tblInfo *model.TableInfo, colID int64) bool { - return tblInfo.PKIsHandle && tblInfo.ContainsAutoRandomBits() && tblInfo.GetPkColInfo().ID == colID + if !tblInfo.ContainsAutoRandomBits() { + return false + } + if tblInfo.PKIsHandle { + return tblInfo.GetPkColInfo().ID == colID + } else if tblInfo.IsCommonHandle { + pk := tables.FindPrimaryIndex(tblInfo) + if pk == nil { + return false + } + offset := pk.Columns[0].Offset + return tblInfo.Columns[offset].ID == colID + } + return false } func checkGeneratedColumn(ctx sessionctx.Context, colDefs []*ast.ColumnDef) error { @@ -1571,11 +1611,10 @@ func checkGeneratedColumn(ctx sessionctx.Context, colDefs []*ast.ColumnDef) erro return nil } -func checkTooLongColumn(cols []*model.ColumnInfo) error { +func checkTooLongColumns(cols []*model.ColumnInfo) error { for _, col := range cols { - colName := col.Name.O - if utf8.RuneCountInString(colName) > mysql.MaxColumnNameLength { - return dbterror.ErrTooLongIdent.GenWithStackByArgs(colName) + if err := checkTooLongColumn(col.Name); err != nil { + return err } } return nil @@ -1717,17 +1756,31 @@ func checkInvisibleIndexOnPK(tblInfo *model.TableInfo) error { } func setTableAutoRandomBits(ctx sessionctx.Context, tbInfo *model.TableInfo, colDefs []*ast.ColumnDef) error { - pkColName := tbInfo.GetPkName() for _, col := range colDefs { if containsColumnOption(col, ast.ColumnOptionAutoRandom) { if col.Tp.GetType() != mysql.TypeLonglong { return dbterror.ErrInvalidAutoRandom.GenWithStackByArgs( fmt.Sprintf(autoid.AutoRandomOnNonBigIntColumn, types.TypeStr(col.Tp.GetType()))) } - if !tbInfo.PKIsHandle || col.Name.Name.L != pkColName.L { - errMsg := fmt.Sprintf(autoid.AutoRandomPKisNotHandleErrMsg, col.Name.Name.O) - return dbterror.ErrInvalidAutoRandom.GenWithStackByArgs(errMsg) + switch { + case tbInfo.PKIsHandle: + if tbInfo.GetPkName().L != col.Name.Name.L { + errMsg := fmt.Sprintf(autoid.AutoRandomMustFirstColumnInPK, col.Name.Name.O) + return dbterror.ErrInvalidAutoRandom.GenWithStackByArgs(errMsg) + } + case tbInfo.IsCommonHandle: + pk := tables.FindPrimaryIndex(tbInfo) + if pk == nil { + return dbterror.ErrInvalidAutoRandom.GenWithStackByArgs(autoid.AutoRandomNoClusteredPKErrMsg) + } + if col.Name.Name.L != pk.Columns[0].Name.L { + errMsg := fmt.Sprintf(autoid.AutoRandomMustFirstColumnInPK, col.Name.Name.O) + return dbterror.ErrInvalidAutoRandom.GenWithStackByArgs(errMsg) + } + default: + return dbterror.ErrInvalidAutoRandom.GenWithStackByArgs(autoid.AutoRandomNoClusteredPKErrMsg) } + if containsColumnOption(col, ast.ColumnOptionAutoIncrement) { return dbterror.ErrInvalidAutoRandom.GenWithStackByArgs(autoid.AutoRandomIncompatibleWithAutoIncErrMsg) } @@ -2008,7 +2061,7 @@ func checkTableInfoValidExtra(tbInfo *model.TableInfo) error { if err := checkDuplicateColumn(tbInfo.Columns); err != nil { return err } - if err := checkTooLongColumn(tbInfo.Columns); err != nil { + if err := checkTooLongColumns(tbInfo.Columns); err != nil { return err } if err := checkTooManyColumns(tbInfo.Columns); err != nil { @@ -2448,9 +2501,11 @@ func (d *ddl) CreateTableWithInfo( ctx sessionctx.Context, dbName model.CIStr, tbInfo *model.TableInfo, - onExist OnExist, + cs ...CreateTableWithInfoConfigurier, ) (err error) { - job, err := d.createTableWithInfoJob(ctx, dbName, tbInfo, onExist, false) + c := GetCreateTableWithInfoConfig(cs) + + job, err := d.createTableWithInfoJob(ctx, dbName, tbInfo, c.OnExist, !c.ShouldAllocTableID(tbInfo)) if err != nil { return err } @@ -2461,7 +2516,7 @@ func (d *ddl) CreateTableWithInfo( err = d.DoDDLJob(ctx, job) if err != nil { // table exists, but if_not_exists flags is true, so we ignore this error. - if onExist == OnExistIgnore && infoschema.ErrTableExists.Equal(err) { + if c.OnExist == OnExistIgnore && infoschema.ErrTableExists.Equal(err) { ctx.GetSessionVars().StmtCtx.AppendNote(err) err = nil } @@ -2476,7 +2531,10 @@ func (d *ddl) CreateTableWithInfo( func (d *ddl) BatchCreateTableWithInfo(ctx sessionctx.Context, dbName model.CIStr, infos []*model.TableInfo, - onExist OnExist) error { + cs ...CreateTableWithInfoConfigurier, +) error { + c := GetCreateTableWithInfoConfig(cs) + jobs := &model.Job{ BinlogInfo: &model.HistoryInfo{}, } @@ -2491,7 +2549,7 @@ func (d *ddl) BatchCreateTableWithInfo(ctx sessionctx.Context, for _, info := range infos { if _, ok := duplication[info.Name.L]; ok { err = infoschema.ErrTableExists.FastGenByArgs("can not batch create tables with same name") - if onExist == OnExistIgnore && infoschema.ErrTableExists.Equal(err) { + if c.OnExist == OnExistIgnore && infoschema.ErrTableExists.Equal(err) { ctx.GetSessionVars().StmtCtx.AppendNote(err) err = nil } @@ -2515,15 +2573,17 @@ func (d *ddl) BatchCreateTableWithInfo(ctx sessionctx.Context, } for _, info := range infos { - info.ID, genIDs = genIDs[0], genIDs[1:] + if c.ShouldAllocTableID(info) { + info.ID, genIDs = genIDs[0], genIDs[1:] - if parts := info.GetPartitionInfo(); parts != nil { - for i := range parts.Definitions { - parts.Definitions[i].ID, genIDs = genIDs[0], genIDs[1:] + if parts := info.GetPartitionInfo(); parts != nil { + for i := range parts.Definitions { + parts.Definitions[i].ID, genIDs = genIDs[0], genIDs[1:] + } } } - job, err := d.createTableWithInfoJob(ctx, dbName, info, onExist, true) + job, err := d.createTableWithInfoJob(ctx, dbName, info, c.OnExist, true) if err != nil { return errors.Trace(err) } @@ -2555,7 +2615,7 @@ func (d *ddl) BatchCreateTableWithInfo(ctx sessionctx.Context, err = d.DoDDLJob(ctx, jobs) if err != nil { // table exists, but if_not_exists flags is true, so we ignore this error. - if onExist == OnExistIgnore && infoschema.ErrTableExists.Equal(err) { + if c.OnExist == OnExistIgnore && infoschema.ErrTableExists.Equal(err) { ctx.GetSessionVars().StmtCtx.AppendNote(err) err = nil } @@ -2629,7 +2689,7 @@ func (d *ddl) preSplitAndScatter(ctx sessionctx.Context, tbInfo *model.TableInfo preSplit func() scatterRegion bool ) - val, err := ctx.GetSessionVars().GetGlobalSystemVar(variable.TiDBScatterRegion) + val, err := ctx.GetSessionVars().GetGlobalSystemVar(context.Background(), variable.TiDBScatterRegion) if err != nil { logutil.BgLogger().Warn("[ddl] won't scatter region", zap.Error(err)) } else { @@ -2656,8 +2716,11 @@ func (d *ddl) FlashbackCluster(ctx sessionctx.Context, flashbackTS uint64) error Args: []interface{}{ flashbackTS, map[string]interface{}{}, - variable.On, /* tidb_super_read_only */ - true /* tidb_gc_enable */}, + true, /* tidb_gc_enable */ + variable.On, /* tidb_enable_auto_analyze */ + variable.Off, /* tidb_super_read_only */ + 0, /* totalRegions */ + 0 /* newCommitTS */}, } err := d.DoDDLJob(ctx, job) err = d.callHookOnChanged(job, err) @@ -2688,9 +2751,7 @@ func (d *ddl) RecoverTable(ctx sessionctx.Context, recoverInfo *RecoverInfo) (er Type: model.ActionRecoverTable, BinlogInfo: &model.HistoryInfo{}, - Args: []interface{}{tbInfo, recoverInfo.AutoIDs.RowID, recoverInfo.DropJobID, - recoverInfo.SnapshotTS, recoverTableCheckFlagNone, recoverInfo.AutoIDs.RandomID, - recoverInfo.OldSchemaName, recoverInfo.OldTableName}, + Args: []interface{}{recoverInfo, recoverCheckFlagNone}, } err = d.DoDDLJob(ctx, job) err = d.callHookOnChanged(job, err) @@ -2772,23 +2833,30 @@ func checkPartitionByList(ctx sessionctx.Context, tbInfo *model.TableInfo) error return checkListPartitionValue(ctx, tbInfo) } +func isColTypeAllowedAsPartitioningCol(fieldType types.FieldType) bool { + // The permitted data types are shown in the following list: + // All integer types + // DATE and DATETIME + // CHAR, VARCHAR, BINARY, and VARBINARY + // See https://dev.mysql.com/doc/mysql-partitioning-excerpt/5.7/en/partitioning-columns.html + // Note that also TIME is allowed in MySQL. Also see https://bugs.mysql.com/bug.php?id=84362 + switch fieldType.GetType() { + case mysql.TypeTiny, mysql.TypeShort, mysql.TypeInt24, mysql.TypeLong, mysql.TypeLonglong: + case mysql.TypeDate, mysql.TypeDatetime, mysql.TypeDuration: + case mysql.TypeVarchar, mysql.TypeString: + default: + return false + } + return true +} + func checkColumnsPartitionType(tbInfo *model.TableInfo) error { for _, col := range tbInfo.Partition.Columns { colInfo := tbInfo.FindPublicColumnByName(col.L) if colInfo == nil { return errors.Trace(dbterror.ErrFieldNotFoundPart) } - // The permitted data types are shown in the following list: - // All integer types - // DATE and DATETIME - // CHAR, VARCHAR, BINARY, and VARBINARY - // See https://dev.mysql.com/doc/mysql-partitioning-excerpt/5.7/en/partitioning-columns.html - // Note that also TIME is allowed in MySQL. Also see https://bugs.mysql.com/bug.php?id=84362 - switch colInfo.FieldType.GetType() { - case mysql.TypeTiny, mysql.TypeShort, mysql.TypeInt24, mysql.TypeLong, mysql.TypeLonglong: - case mysql.TypeDate, mysql.TypeDatetime, mysql.TypeDuration: - case mysql.TypeVarchar, mysql.TypeString: - default: + if !isColTypeAllowedAsPartitioningCol(colInfo.FieldType) { return dbterror.ErrNotAllowedTypeInPartition.GenWithStackByArgs(col.O) } } @@ -4545,6 +4613,89 @@ func GetModifiableColumnJob( } } + // Check that the column change does not affect the partitioning column + // It must keep the same type, int [unsigned], [var]char, date[time] + if t.Meta().Partition != nil { + pt, ok := t.(table.PartitionedTable) + if !ok { + // Should never happen! + return nil, dbterror.ErrNotAllowedTypeInPartition.GenWithStackByArgs(newCol.Name.O) + } + isPartitioningColumn := false + for _, name := range pt.GetPartitionColumnNames() { + if strings.EqualFold(name.L, col.Name.L) { + isPartitioningColumn = true + } + } + if isPartitioningColumn { + if !isColTypeAllowedAsPartitioningCol(newCol.FieldType) { + return nil, dbterror.ErrNotAllowedTypeInPartition.GenWithStackByArgs(newCol.Name.O) + } + pi := pt.Meta().GetPartitionInfo() + if len(pi.Columns) == 0 { + // non COLUMNS partitioning, only checks INTs, not their actual range + // There are many edge cases, like when truncating SQL Mode is allowed + // which will change the partitioning expression value resulting in a + // different partition. Better be safe and not allow decreasing of length. + // TODO: Should we allow it in strict mode? Wait for a use case / request. + if newCol.FieldType.GetFlen() < col.FieldType.GetFlen() { + return nil, dbterror.ErrUnsupportedModifyCollation.GenWithStack("Unsupported modify column, decreasing length of int may result in truncation and change of partition") + } + } + // Basically only allow changes of the length/decimals for the column + // Note that enum is not allowed, so elems are not checked + // TODO: support partition by ENUM + if newCol.FieldType.EvalType() != col.FieldType.EvalType() || + newCol.FieldType.GetFlag() != col.FieldType.GetFlag() || + newCol.FieldType.GetCollate() != col.FieldType.GetCollate() || + newCol.FieldType.GetCharset() != col.FieldType.GetCharset() { + return nil, dbterror.ErrUnsupportedModifyColumn.GenWithStackByArgs("can't change the partitioning column, since it would require reorganize all partitions") + } + // Generate a new PartitionInfo and validate it together with the new column definition + // Checks if all partition definition values are compatible. + // Similar to what buildRangePartitionDefinitions would do in terms of checks. + + tblInfo := pt.Meta() + newTblInfo := *tblInfo + // Replace col with newCol and see if we can generate a new SHOW CREATE TABLE + // and reparse it and build new partition definitions (which will do additional + // checks columns vs partition definition values + newCols := make([]*model.ColumnInfo, 0, len(newTblInfo.Columns)) + for _, c := range newTblInfo.Columns { + if c.ID == col.ID { + newCols = append(newCols, newCol.ColumnInfo) + continue + } + newCols = append(newCols, c) + } + newTblInfo.Columns = newCols + + var buf bytes.Buffer + // TODO: update the partitioning columns with new names if column is renamed + AppendPartitionInfo(tblInfo.GetPartitionInfo(), &buf, mysql.ModeNone) + // The parser supports ALTER TABLE ... PARTITION BY ... even if the ddl code does not yet :) + // Ignoring warnings + stmt, _, err := parser.New().ParseSQL("ALTER TABLE t " + buf.String()) + if err != nil { + // Should never happen! + return nil, dbterror.ErrUnsupportedModifyColumn.GenWithStack("cannot parse generated PartitionInfo") + } + at, ok := stmt[0].(*ast.AlterTableStmt) + if !ok || len(at.Specs) != 1 || at.Specs[0].Partition == nil { + return nil, dbterror.ErrUnsupportedModifyColumn.GenWithStack("cannot parse generated PartitionInfo") + } + pAst := at.Specs[0].Partition + sv := sctx.GetSessionVars().StmtCtx + oldTruncAsWarn, oldIgnoreTrunc := sv.TruncateAsWarning, sv.IgnoreTruncate + sv.TruncateAsWarning, sv.IgnoreTruncate = false, false + _, err = buildPartitionDefinitionsInfo(sctx, pAst.Definitions, &newTblInfo) + sv.TruncateAsWarning, sv.IgnoreTruncate = oldTruncAsWarn, oldIgnoreTrunc + if err != nil { + return nil, dbterror.ErrUnsupportedModifyColumn.GenWithStack("New column does not match partition definitions: %s", err.Error()) + } + } + } + // We don't support modifying column from not_auto_increment to auto_increment. if !mysql.HasAutoIncrementFlag(col.GetFlag()) && mysql.HasAutoIncrementFlag(newCol.GetFlag()) { return nil, dbterror.ErrUnsupportedModifyColumn.GenWithStackByArgs("can't set auto_increment") @@ -4680,9 +4831,26 @@ func checkIndexInModifiableColumns(columns []*model.ColumnInfo, idxColumns []*mo return nil } +func isClusteredPKColumn(col *table.Column, tblInfo *model.TableInfo) bool { + switch { + case tblInfo.PKIsHandle: + return mysql.HasPriKeyFlag(col.GetFlag()) + case tblInfo.IsCommonHandle: + pk := tables.FindPrimaryIndex(tblInfo) + for _, c := range pk.Columns { + if c.Name.L == col.Name.L { + return true + } + } + return false + default: + return false + } +} + func checkAutoRandom(tableInfo *model.TableInfo, originCol *table.Column, specNewColumn *ast.ColumnDef) (uint64, error) { var oldShardBits, oldRangeBits uint64 - if originCol.IsPKHandleColumn(tableInfo) { + if isClusteredPKColumn(originCol, tableInfo) { oldShardBits = tableInfo.AutoRandomBits oldRangeBits = tableInfo.AutoRandomRangeBits } @@ -6102,6 +6270,15 @@ func buildFKInfo(ctx sessionctx.Context, fkName model.CIStr, keys []*ast.IndexPa if len(keys) != len(refer.IndexPartSpecifications) { return nil, infoschema.ErrForeignKeyNotMatch.GenWithStackByArgs(fkName, "Key reference and table reference don't match") } + if err := checkTooLongForeignKey(fkName); err != nil { + return nil, err + } + if err := checkTooLongSchema(refer.Table.Schema); err != nil { + return nil, err + } + if err := checkTooLongTable(refer.Table.Name); err != nil { + return nil, err + } // all base columns of stored generated columns baseCols := make(map[string]struct{}) @@ -6173,6 +6350,9 @@ func buildFKInfo(ctx sessionctx.Context, fkName model.CIStr, keys []*ast.IndexPa fkInfo.RefCols = make([]model.CIStr, len(refer.IndexPartSpecifications)) for i, key := range refer.IndexPartSpecifications { + if err := checkTooLongColumn(key.Column.Name); err != nil { + return nil, err + } fkInfo.RefCols[i] = key.Column.Name } @@ -6213,6 +6393,24 @@ func (d *ddl) CreateForeignKey(ctx sessionctx.Context, ti ast.Ident, fkName mode if err != nil { return err } + if model.FindIndexByColumns(t.Meta(), fkInfo.Cols...) == nil { + // Need to auto create index for fk cols + if ctx.GetSessionVars().StmtCtx.MultiSchemaInfo == nil { + ctx.GetSessionVars().StmtCtx.MultiSchemaInfo = model.NewMultiSchemaInfo() + } + indexPartSpecifications := make([]*ast.IndexPartSpecification, 0, len(fkInfo.Cols)) + for _, col := range fkInfo.Cols { + indexPartSpecifications = append(indexPartSpecifications, &ast.IndexPartSpecification{ + Column: &ast.ColumnName{Name: col}, + Length: types.UnspecifiedLength, // Index prefixes on foreign key columns are not supported. + }) + } + indexOption := &ast.IndexOption{} + err = d.createIndex(ctx, ti, ast.IndexKeyTypeNone, fkInfo.Name, indexPartSpecifications, indexOption, false) + if err != nil { + return err + } + } job := &model.Job{ SchemaID: schema.ID, @@ -6344,10 +6542,7 @@ func CheckIsDropPrimaryKey(indexName model.CIStr, indexInfo *model.IndexInfo, t if indexInfo == nil && !t.Meta().PKIsHandle { return isPK, dbterror.ErrCantDropFieldOrKey.GenWithStackByArgs("PRIMARY") } - if t.Meta().PKIsHandle { - return isPK, dbterror.ErrUnsupportedModifyPrimaryKey.GenWithStack("Unsupported drop primary key when the table's pkIsHandle is true") - } - if t.Meta().IsCommonHandle { + if t.Meta().IsCommonHandle || t.Meta().PKIsHandle { return isPK, dbterror.ErrUnsupportedModifyPrimaryKey.GenWithStack("Unsupported drop primary key when the table is using clustered index") } } diff --git a/ddl/ddl_tiflash_api.go b/ddl/ddl_tiflash_api.go index 6c818be465de9..7e456815acd8c 100644 --- a/ddl/ddl_tiflash_api.go +++ b/ddl/ddl_tiflash_api.go @@ -41,7 +41,6 @@ import ( "github.com/pingcap/tidb/sessionctx/variable" "github.com/pingcap/tidb/store/helper" "github.com/pingcap/tidb/table" - "github.com/pingcap/tidb/types" "github.com/pingcap/tidb/util" "github.com/pingcap/tidb/util/gcutil" "github.com/pingcap/tidb/util/logutil" @@ -117,7 +116,6 @@ func NewPollTiFlashBackoffContext(MinThreshold, MaxThreshold TiFlashTick, Capaci type TiFlashManagementContext struct { TiFlashStores map[int64]helper.StoreStat PollCounter uint64 - ProgressCache map[int64]string Backoff *PollTiFlashBackoffContext // tables waiting for updating progress after become available. UpdatingProgressTables *list.List @@ -212,7 +210,6 @@ func NewTiFlashManagementContext() (*TiFlashManagementContext, error) { return &TiFlashManagementContext{ PollCounter: 0, TiFlashStores: make(map[int64]helper.StoreStat), - ProgressCache: make(map[int64]string), Backoff: c, UpdatingProgressTables: list.New(), }, nil @@ -235,8 +232,6 @@ var ( PollTiFlashBackoffRate TiFlashTick = 1.5 // RefreshProgressMaxTableCount is the max count of table to refresh progress after available each poll. RefreshProgressMaxTableCount uint64 = 1000 - // PollCleanProgressCacheInterval is the inteval (PollTiFlashInterval * PollCleanProgressCacheInterval) of cleaning progress cache to avoid data race when ddl owner switchover - PollCleanProgressCacheInterval uint64 = 300 ) func getTiflashHTTPAddr(host string, statusAddr string) (string, error) { @@ -376,35 +371,6 @@ func getTiFlashPeerWithoutLagCount(pollTiFlashContext *TiFlashManagementContext, return flashPeerCount, nil } -// getTiFlashTableSyncProgress return truncated string to avoid float64 comparison. -func getTiFlashTableSyncProgress(pollTiFlashContext *TiFlashManagementContext, tableID int64, replicaCount uint64) (string, error) { - var stats helper.PDRegionStats - if err := infosync.GetTiFlashPDRegionRecordStats(context.Background(), tableID, &stats); err != nil { - logutil.BgLogger().Error("Fail to get region stats from PD.", - zap.Int64("tableID", tableID)) - return "0", errors.Trace(err) - } - regionCount := stats.Count - - tiflashPeerCount, err := getTiFlashPeerWithoutLagCount(pollTiFlashContext, tableID) - if err != nil { - logutil.BgLogger().Error("Fail to get peer count from TiFlash.", - zap.Int64("tableID", tableID)) - return "0", errors.Trace(err) - } - progress := float64(tiflashPeerCount) / float64(regionCount*int(replicaCount)) - if progress > 1 { // when pd do balance - logutil.BgLogger().Debug("TiFlash peer count > pd peer count, maybe doing balance.", - zap.Int64("tableID", tableID), zap.Int("tiflashPeerCount", tiflashPeerCount), zap.Int("regionCount", regionCount), zap.Uint64("replicaCount", replicaCount)) - progress = 1 - } - if progress < 1 { - logutil.BgLogger().Debug("TiFlash replica progress < 1.", - zap.Int64("tableID", tableID), zap.Int("tiflashPeerCount", tiflashPeerCount), zap.Int("regionCount", regionCount), zap.Uint64("replicaCount", replicaCount)) - } - return types.TruncateFloatToString(progress, 2), nil -} - func pollAvailableTableProgress(schemas infoschema.InfoSchema, ctx sessionctx.Context, pollTiFlashContext *TiFlashManagementContext) { pollMaxCount := RefreshProgressMaxTableCount failpoint.Inject("PollAvailableTableProgressMaxCount", func(val failpoint.Value) { @@ -446,7 +412,7 @@ func pollAvailableTableProgress(schemas infoschema.InfoSchema, ctx sessionctx.Co element = element.Next() continue } - progress, err := getTiFlashTableSyncProgress(pollTiFlashContext, availableTableID.ID, tableInfo.TiFlashReplica.Count) + progress, err := infosync.CalculateTiFlashProgress(availableTableID.ID, tableInfo.TiFlashReplica.Count, pollTiFlashContext.TiFlashStores) if err != nil { logutil.BgLogger().Error("get tiflash sync progress failed", zap.Error(err), @@ -455,21 +421,19 @@ func pollAvailableTableProgress(schemas infoschema.InfoSchema, ctx sessionctx.Co ) continue } - if pollTiFlashContext.ProgressCache[availableTableID.ID] != progress { - err = infosync.UpdateTiFlashTableSyncProgress(context.Background(), availableTableID.ID, progress) - if err != nil { - logutil.BgLogger().Error("updating TiFlash replica process failed", - zap.Error(err), - zap.Int64("tableID or partitionID", availableTableID.ID), - zap.Bool("IsPartition", availableTableID.IsPartition), - zap.String("progress", progress), - ) - continue - } - pollTiFlashContext.ProgressCache[availableTableID.ID] = progress + err = infosync.UpdateTiFlashProgressCache(availableTableID.ID, progress) + if err != nil { + logutil.BgLogger().Error("update tiflash sync progress cache failed", + zap.Error(err), + zap.Int64("tableID", availableTableID.ID), + zap.Bool("IsPartition", availableTableID.IsPartition), + zap.Float64("progress", progress), + ) + continue } + next := element.Next() pollTiFlashContext.UpdatingProgressTables.Remove(element) - element = element.Next() + element = next } } @@ -481,14 +445,6 @@ func (d *ddl) refreshTiFlashTicker(ctx sessionctx.Context, pollTiFlashContext *T return err } } - - failpoint.Inject("PollTiFlashReplicaStatusCleanProgressCache", func() { - pollTiFlashContext.PollCounter = PollCleanProgressCacheInterval - }) - // 10min clean progress cache to avoid data race - if pollTiFlashContext.PollCounter > 0 && pollTiFlashContext.PollCounter%PollCleanProgressCacheInterval == 0 { - pollTiFlashContext.ProgressCache = make(map[int64]string) - } pollTiFlashContext.PollCounter++ // Start to process every table. @@ -530,7 +486,7 @@ func (d *ddl) refreshTiFlashTicker(ctx sessionctx.Context, pollTiFlashContext *T continue } - progress, err := getTiFlashTableSyncProgress(pollTiFlashContext, tb.ID, tb.Count) + progress, err := infosync.CalculateTiFlashProgress(tb.ID, tb.Count, pollTiFlashContext.TiFlashStores) if err != nil { logutil.BgLogger().Error("get tiflash sync progress failed", zap.Error(err), @@ -538,29 +494,28 @@ func (d *ddl) refreshTiFlashTicker(ctx sessionctx.Context, pollTiFlashContext *T ) continue } - if pollTiFlashContext.ProgressCache[tb.ID] != progress { - err = infosync.UpdateTiFlashTableSyncProgress(context.Background(), tb.ID, progress) - if err != nil { - logutil.BgLogger().Error("updating TiFlash replica process failed", - zap.Error(err), - zap.Int64("tableID", tb.ID), - zap.String("progress", progress), - ) - continue - } - pollTiFlashContext.ProgressCache[tb.ID] = progress + + err = infosync.UpdateTiFlashProgressCache(tb.ID, progress) + if err != nil { + logutil.BgLogger().Error("get tiflash sync progress from cache failed", + zap.Error(err), + zap.Int64("tableID", tb.ID), + zap.Bool("IsPartition", tb.IsPartition), + zap.Float64("progress", progress), + ) + continue } - avail := progress[0] == '1' + avail := progress == 1 failpoint.Inject("PollTiFlashReplicaStatusReplaceCurAvailableValue", func(val failpoint.Value) { avail = val.(bool) }) if !avail { - logutil.BgLogger().Info("Tiflash replica is not available", zap.Int64("tableID", tb.ID), zap.String("progress", progress)) + logutil.BgLogger().Info("Tiflash replica is not available", zap.Int64("tableID", tb.ID), zap.Float64("progress", progress)) pollTiFlashContext.Backoff.Put(tb.ID) } else { - logutil.BgLogger().Info("Tiflash replica is available", zap.Int64("tableID", tb.ID), zap.String("progress", progress)) + logutil.BgLogger().Info("Tiflash replica is available", zap.Int64("tableID", tb.ID), zap.Float64("progress", progress)) pollTiFlashContext.Backoff.Remove(tb.ID) } failpoint.Inject("skipUpdateTableReplicaInfoInLoop", func() { @@ -736,7 +691,7 @@ func (d *ddl) PollTiFlashRoutine() { } } } else { - pollTiflashContext.ProgressCache = make(map[int64]string) + infosync.CleanTiFlashProgressCache() } d.sessPool.put(sctx) } else { diff --git a/ddl/ddl_tiflash_test.go b/ddl/ddl_tiflash_test.go index ec1afd9300107..27d05112df483 100644 --- a/ddl/ddl_tiflash_test.go +++ b/ddl/ddl_tiflash_test.go @@ -42,12 +42,10 @@ import ( "github.com/pingcap/tidb/store/mockstore/unistore" "github.com/pingcap/tidb/table" "github.com/pingcap/tidb/testkit" - "github.com/pingcap/tidb/types" "github.com/pingcap/tidb/util" "github.com/pingcap/tidb/util/logutil" "github.com/stretchr/testify/require" "github.com/tikv/client-go/v2/testutils" - "go.etcd.io/etcd/tests/v3/integration" "go.uber.org/zap" ) @@ -956,13 +954,6 @@ func TestTiFlashProgress(t *testing.T) { defer teardown() tk := testkit.NewTestKit(t, s.store) - integration.BeforeTest(t, integration.WithoutGoLeakDetection()) - cluster := integration.NewClusterV3(t, &integration.ClusterConfig{Size: 1}) - defer cluster.Terminate(t) - - save := infosync.GetEtcdClient() - defer infosync.SetEtcdClient(save) - infosync.SetEtcdClient(cluster.Client(0)) tk.MustExec("create database tiflash_d") tk.MustExec("create table tiflash_d.t(z int)") tk.MustExec("alter table tiflash_d.t set tiflash replica 1") @@ -970,34 +961,79 @@ func TestTiFlashProgress(t *testing.T) { require.NoError(t, err) require.NotNil(t, tb) mustExist := func(tid int64) { - pm, err := infosync.GetTiFlashTableSyncProgress(context.TODO()) - require.NoError(t, err) - _, ok := pm[tb.Meta().ID] - require.True(t, ok) + _, isExist := infosync.GetTiFlashProgressFromCache(tid) + require.True(t, isExist) } mustAbsent := func(tid int64) { - pm, err := infosync.GetTiFlashTableSyncProgress(context.TODO()) - require.NoError(t, err) - _, ok := pm[tb.Meta().ID] - require.False(t, ok) + _, isExist := infosync.GetTiFlashProgressFromCache(tid) + require.False(t, isExist) } - _ = infosync.UpdateTiFlashTableSyncProgress(context.TODO(), tb.Meta().ID, "5.0") + infosync.UpdateTiFlashProgressCache(tb.Meta().ID, 5.0) mustExist(tb.Meta().ID) - _ = infosync.DeleteTiFlashTableSyncProgress(tb.Meta().ID) + _ = infosync.DeleteTiFlashTableSyncProgress(tb.Meta()) mustAbsent(tb.Meta().ID) - _ = infosync.UpdateTiFlashTableSyncProgress(context.TODO(), tb.Meta().ID, "5.0") + infosync.UpdateTiFlashProgressCache(tb.Meta().ID, 5.0) tk.MustExec("truncate table tiflash_d.t") mustAbsent(tb.Meta().ID) tb, _ = s.dom.InfoSchema().TableByName(model.NewCIStr("tiflash_d"), model.NewCIStr("t")) - _ = infosync.UpdateTiFlashTableSyncProgress(context.TODO(), tb.Meta().ID, "5.0") + infosync.UpdateTiFlashProgressCache(tb.Meta().ID, 5.0) + tk.MustExec("alter table tiflash_d.t set tiflash replica 0") + mustAbsent(tb.Meta().ID) + tk.MustExec("alter table tiflash_d.t set tiflash replica 1") + + tb, _ = s.dom.InfoSchema().TableByName(model.NewCIStr("tiflash_d"), model.NewCIStr("t")) + infosync.UpdateTiFlashProgressCache(tb.Meta().ID, 5.0) tk.MustExec("drop table tiflash_d.t") mustAbsent(tb.Meta().ID) time.Sleep(100 * time.Millisecond) } +func TestTiFlashProgressForPartitionTable(t *testing.T) { + s, teardown := createTiFlashContext(t) + s.tiflash.NotAvailable = true + defer teardown() + tk := testkit.NewTestKit(t, s.store) + + tk.MustExec("create database tiflash_d") + tk.MustExec("create table tiflash_d.t(z int) PARTITION BY RANGE(z) (PARTITION p0 VALUES LESS THAN (10))") + tk.MustExec("alter table tiflash_d.t set tiflash replica 1") + tb, err := s.dom.InfoSchema().TableByName(model.NewCIStr("tiflash_d"), model.NewCIStr("t")) + require.NoError(t, err) + require.NotNil(t, tb) + mustExist := func(tid int64) { + _, isExist := infosync.GetTiFlashProgressFromCache(tid) + require.True(t, isExist) + } + mustAbsent := func(tid int64) { + _, isExist := infosync.GetTiFlashProgressFromCache(tid) + require.False(t, isExist) + } + time.Sleep(ddl.PollTiFlashInterval * RoundToBeAvailable) + mustExist(tb.Meta().Partition.Definitions[0].ID) + _ = infosync.DeleteTiFlashTableSyncProgress(tb.Meta()) + mustAbsent(tb.Meta().Partition.Definitions[0].ID) + + infosync.UpdateTiFlashProgressCache(tb.Meta().Partition.Definitions[0].ID, 5.0) + tk.MustExec("truncate table tiflash_d.t") + mustAbsent(tb.Meta().Partition.Definitions[0].ID) + + tb, _ = s.dom.InfoSchema().TableByName(model.NewCIStr("tiflash_d"), model.NewCIStr("t")) + infosync.UpdateTiFlashProgressCache(tb.Meta().Partition.Definitions[0].ID, 5.0) + tk.MustExec("alter table tiflash_d.t set tiflash replica 0") + mustAbsent(tb.Meta().Partition.Definitions[0].ID) + tk.MustExec("alter table tiflash_d.t set tiflash replica 1") + + tb, _ = s.dom.InfoSchema().TableByName(model.NewCIStr("tiflash_d"), model.NewCIStr("t")) + infosync.UpdateTiFlashProgressCache(tb.Meta().Partition.Definitions[0].ID, 5.0) + tk.MustExec("drop table tiflash_d.t") + mustAbsent(tb.Meta().Partition.Definitions[0].ID) + + time.Sleep(100 * time.Millisecond) +} + func TestTiFlashGroupIndexWhenStartup(t *testing.T) { s, teardown := createTiFlashContext(t) tiflash := s.tiflash @@ -1022,14 +1058,6 @@ func TestTiFlashProgressAfterAvailable(t *testing.T) { defer teardown() tk := testkit.NewTestKit(t, s.store) - integration.BeforeTest(t, integration.WithoutGoLeakDetection()) - cluster := integration.NewClusterV3(t, &integration.ClusterConfig{Size: 1}) - defer cluster.Terminate(t) - - save := infosync.GetEtcdClient() - defer infosync.SetEtcdClient(save) - infosync.SetEtcdClient(cluster.Client(0)) - tk.MustExec("use test") tk.MustExec("drop table if exists ddltiflash") tk.MustExec("create table ddltiflash(z int)") @@ -1043,19 +1071,15 @@ func TestTiFlashProgressAfterAvailable(t *testing.T) { // after available, progress should can be updated. s.tiflash.ResetSyncStatus(int(tb.Meta().ID), false) time.Sleep(ddl.PollTiFlashInterval * RoundToBeAvailable * 3) - pm, err := infosync.GetTiFlashTableSyncProgress(context.TODO()) - require.NoError(t, err) - progress, ok := pm[tb.Meta().ID] - require.True(t, ok) - require.Equal(t, types.TruncateFloatToString(progress, 2), "0") + progress, isExist := infosync.GetTiFlashProgressFromCache(tb.Meta().ID) + require.True(t, isExist) + require.True(t, progress == 0) s.tiflash.ResetSyncStatus(int(tb.Meta().ID), true) time.Sleep(ddl.PollTiFlashInterval * RoundToBeAvailable * 3) - pm, err = infosync.GetTiFlashTableSyncProgress(context.TODO()) - require.NoError(t, err) - progress, ok = pm[tb.Meta().ID] - require.True(t, ok) - require.Equal(t, types.TruncateFloatToString(progress, 2), "1") + progress, isExist = infosync.GetTiFlashProgressFromCache(tb.Meta().ID) + require.True(t, isExist) + require.True(t, progress == 1) } func TestTiFlashProgressAfterAvailableForPartitionTable(t *testing.T) { @@ -1063,14 +1087,6 @@ func TestTiFlashProgressAfterAvailableForPartitionTable(t *testing.T) { defer teardown() tk := testkit.NewTestKit(t, s.store) - integration.BeforeTest(t, integration.WithoutGoLeakDetection()) - cluster := integration.NewClusterV3(t, &integration.ClusterConfig{Size: 1}) - defer cluster.Terminate(t) - - save := infosync.GetEtcdClient() - defer infosync.SetEtcdClient(save) - infosync.SetEtcdClient(cluster.Client(0)) - tk.MustExec("use test") tk.MustExec("drop table if exists ddltiflash") tk.MustExec("create table ddltiflash(z int) PARTITION BY RANGE(z) (PARTITION p0 VALUES LESS THAN (10))") @@ -1084,19 +1100,15 @@ func TestTiFlashProgressAfterAvailableForPartitionTable(t *testing.T) { // after available, progress should can be updated. s.tiflash.ResetSyncStatus(int(tb.Meta().Partition.Definitions[0].ID), false) time.Sleep(ddl.PollTiFlashInterval * RoundToBeAvailable * 3) - pm, err := infosync.GetTiFlashTableSyncProgress(context.TODO()) - require.NoError(t, err) - progress, ok := pm[tb.Meta().Partition.Definitions[0].ID] - require.True(t, ok) - require.Equal(t, types.TruncateFloatToString(progress, 2), "0") + progress, isExist := infosync.GetTiFlashProgressFromCache(tb.Meta().Partition.Definitions[0].ID) + require.True(t, isExist) + require.True(t, progress == 0) s.tiflash.ResetSyncStatus(int(tb.Meta().Partition.Definitions[0].ID), true) time.Sleep(ddl.PollTiFlashInterval * RoundToBeAvailable * 3) - pm, err = infosync.GetTiFlashTableSyncProgress(context.TODO()) - require.NoError(t, err) - progress, ok = pm[tb.Meta().Partition.Definitions[0].ID] - require.True(t, ok) - require.Equal(t, types.TruncateFloatToString(progress, 2), "1") + progress, isExist = infosync.GetTiFlashProgressFromCache(tb.Meta().Partition.Definitions[0].ID) + require.True(t, isExist) + require.True(t, progress == 1) } func TestTiFlashProgressCache(t *testing.T) { @@ -1104,14 +1116,6 @@ func TestTiFlashProgressCache(t *testing.T) { defer teardown() tk := testkit.NewTestKit(t, s.store) - integration.BeforeTest(t, integration.WithoutGoLeakDetection()) - cluster := integration.NewClusterV3(t, &integration.ClusterConfig{Size: 1}) - defer cluster.Terminate(t) - - save := infosync.GetEtcdClient() - defer infosync.SetEtcdClient(save) - infosync.SetEtcdClient(cluster.Client(0)) - tk.MustExec("use test") tk.MustExec("drop table if exists ddltiflash") tk.MustExec("create table ddltiflash(z int)") @@ -1122,26 +1126,12 @@ func TestTiFlashProgressCache(t *testing.T) { tb, err := s.dom.InfoSchema().TableByName(model.NewCIStr("test"), model.NewCIStr("ddltiflash")) require.NoError(t, err) require.NotNil(t, tb) - err = infosync.UpdateTiFlashTableSyncProgress(context.TODO(), tb.Meta().ID, "0") - require.NoError(t, err) - // after available, progress cache should be 1, so it will not update progress. - time.Sleep(ddl.PollTiFlashInterval * RoundToBeAvailable * 3) - pm, err := infosync.GetTiFlashTableSyncProgress(context.TODO()) - require.NoError(t, err) - progress, ok := pm[tb.Meta().ID] - require.True(t, ok) - require.Equal(t, types.TruncateFloatToString(progress, 2), "0") - // clean progress cache, and it will update progress - require.NoError(t, failpoint.Enable("github.com/pingcap/tidb/ddl/PollTiFlashReplicaStatusCleanProgressCache", `return`)) - defer func() { - _ = failpoint.Disable("github.com/pingcap/tidb/ddl/PollTiFlashReplicaStatusCleanProgressCache") - }() + infosync.UpdateTiFlashProgressCache(tb.Meta().ID, 0) + // after available, it will still update progress cache. time.Sleep(ddl.PollTiFlashInterval * RoundToBeAvailable * 3) - pm, err = infosync.GetTiFlashTableSyncProgress(context.TODO()) - require.NoError(t, err) - progress, ok = pm[tb.Meta().ID] - require.True(t, ok) - require.Equal(t, types.TruncateFloatToString(progress, 2), "1") + progress, isExist := infosync.GetTiFlashProgressFromCache(tb.Meta().ID) + require.True(t, isExist) + require.True(t, progress == 1) } func TestTiFlashProgressAvailableList(t *testing.T) { @@ -1149,14 +1139,6 @@ func TestTiFlashProgressAvailableList(t *testing.T) { defer teardown() tk := testkit.NewTestKit(t, s.store) - integration.BeforeTest(t, integration.WithoutGoLeakDetection()) - cluster := integration.NewClusterV3(t, &integration.ClusterConfig{Size: 1}) - defer cluster.Terminate(t) - - save := infosync.GetEtcdClient() - defer infosync.SetEtcdClient(save) - infosync.SetEtcdClient(cluster.Client(0)) - tableCount := 8 tableNames := make([]string, tableCount) tbls := make([]table.Table, tableCount) @@ -1190,10 +1172,8 @@ func TestTiFlashProgressAvailableList(t *testing.T) { // Not all table have updated progress UpdatedTableCount := 0 for i := 0; i < tableCount; i++ { - pm, err := infosync.GetTiFlashTableSyncProgress(context.TODO()) - require.NoError(t, err) - progress, ok := pm[tbls[i].Meta().ID] - require.True(t, ok) + progress, isExist := infosync.GetTiFlashProgressFromCache(tbls[i].Meta().ID) + require.True(t, isExist) if progress == 0 { UpdatedTableCount++ } @@ -1206,10 +1186,8 @@ func TestTiFlashProgressAvailableList(t *testing.T) { // All table have updated progress UpdatedTableCount = 0 for i := 0; i < tableCount; i++ { - pm, err := infosync.GetTiFlashTableSyncProgress(context.TODO()) - require.NoError(t, err) - progress, ok := pm[tbls[i].Meta().ID] - require.True(t, ok) + progress, isExist := infosync.GetTiFlashProgressFromCache(tbls[i].Meta().ID) + require.True(t, isExist) if progress == 0 { UpdatedTableCount++ } @@ -1243,3 +1221,46 @@ func TestTiFlashAvailableAfterResetReplica(t *testing.T) { require.NotNil(t, tb) require.Nil(t, tb.Meta().TiFlashReplica) } + +func TestTiFlashPartitionNotAvailable(t *testing.T) { + s, teardown := createTiFlashContext(t) + defer teardown() + tk := testkit.NewTestKit(t, s.store) + + tk.MustExec("use test") + tk.MustExec("drop table if exists ddltiflash") + tk.MustExec("create table ddltiflash(z int) PARTITION BY RANGE(z) (PARTITION p0 VALUES LESS THAN (10))") + + tb, err := s.dom.InfoSchema().TableByName(model.NewCIStr("test"), model.NewCIStr("ddltiflash")) + require.NoError(t, err) + require.NotNil(t, tb) + + tk.MustExec("alter table ddltiflash set tiflash replica 1") + s.tiflash.ResetSyncStatus(int(tb.Meta().Partition.Definitions[0].ID), false) + time.Sleep(ddl.PollTiFlashInterval * RoundToBeAvailable * 3) + + tb, err = s.dom.InfoSchema().TableByName(model.NewCIStr("test"), model.NewCIStr("ddltiflash")) + require.NoError(t, err) + require.NotNil(t, tb) + replica := tb.Meta().TiFlashReplica + require.NotNil(t, replica) + require.False(t, replica.Available) + + s.tiflash.ResetSyncStatus(int(tb.Meta().Partition.Definitions[0].ID), true) + time.Sleep(ddl.PollTiFlashInterval * RoundToBeAvailable * 3) + + tb, err = s.dom.InfoSchema().TableByName(model.NewCIStr("test"), model.NewCIStr("ddltiflash")) + require.NoError(t, err) + require.NotNil(t, tb) + replica = tb.Meta().TiFlashReplica + require.NotNil(t, replica) + require.True(t, replica.Available) + + s.tiflash.ResetSyncStatus(int(tb.Meta().Partition.Definitions[0].ID), false) + time.Sleep(ddl.PollTiFlashInterval * RoundToBeAvailable * 3) + require.NoError(t, err) + require.NotNil(t, tb) + replica = tb.Meta().TiFlashReplica + require.NotNil(t, replica) + require.True(t, replica.Available) +} diff --git a/ddl/ddl_worker.go b/ddl/ddl_worker.go index 2e9d66b3149f2..956f4c805347f 100644 --- a/ddl/ddl_worker.go +++ b/ddl/ddl_worker.go @@ -607,6 +607,8 @@ func (w *worker) finishDDLJob(t *meta.Meta, job *model.Job) (err error) { err = finishRecoverTable(w, job) case model.ActionFlashbackCluster: err = finishFlashbackCluster(w, job) + case model.ActionRecoverSchema: + err = finishRecoverSchema(w, job) case model.ActionCreateTables: if job.IsCancelled() { // it may be too large that it can not be added to the history queue, too @@ -648,14 +650,33 @@ func (w *worker) writeDDLSeqNum(job *model.Job) { } func finishRecoverTable(w *worker, job *model.Job) error { - tbInfo := &model.TableInfo{} - var autoIncID, autoRandID, dropJobID, recoverTableCheckFlag int64 - var snapshotTS uint64 - err := job.DecodeArgs(tbInfo, &autoIncID, &dropJobID, &snapshotTS, &recoverTableCheckFlag, &autoRandID) + var ( + recoverInfo *RecoverInfo + recoverTableCheckFlag int64 + ) + err := job.DecodeArgs(&recoverInfo, &recoverTableCheckFlag) if err != nil { return errors.Trace(err) } - if recoverTableCheckFlag == recoverTableCheckFlagEnableGC { + if recoverTableCheckFlag == recoverCheckFlagEnableGC { + err = enableGC(w) + if err != nil { + return errors.Trace(err) + } + } + return nil +} + +func finishRecoverSchema(w *worker, job *model.Job) error { + var ( + recoverSchemaInfo *RecoverSchemaInfo + recoverSchemaCheckFlag int64 + ) + err := job.DecodeArgs(&recoverSchemaInfo, &recoverSchemaCheckFlag) + if err != nil { + return errors.Trace(err) + } + if recoverSchemaCheckFlag == recoverCheckFlagEnableGC { err = enableGC(w) if err != nil { return errors.Trace(err) @@ -1007,7 +1028,7 @@ func (w *worker) handleDDLJobQueue(d *ddlCtx) error { if RunInGoTest { // d.mu.hook is initialed from domain / test callback, which will force the owner host update schema diff synchronously. d.mu.RLock() - d.mu.hook.OnSchemaStateChanged() + d.mu.hook.OnSchemaStateChanged(schemaVer) d.mu.RUnlock() } @@ -1168,6 +1189,8 @@ func (w *worker) runDDLJob(d *ddlCtx, t *meta.Meta, job *model.Job) (ver int64, ver, err = onModifySchemaCharsetAndCollate(d, t, job) case model.ActionDropSchema: ver, err = onDropSchema(d, t, job) + case model.ActionRecoverSchema: + ver, err = w.onRecoverSchema(d, t, job) case model.ActionModifySchemaDefaultPlacement: ver, err = onModifySchemaDefaultPlacement(d, t, job) case model.ActionCreateTable: @@ -1520,6 +1543,27 @@ func updateSchemaVersion(d *ddlCtx, t *meta.Meta, job *model.Job, multiInfos ... diff.OldTableID = job.TableID } } + case model.ActionRecoverSchema: + var ( + recoverSchemaInfo *RecoverSchemaInfo + recoverSchemaCheckFlag int64 + ) + err = job.DecodeArgs(&recoverSchemaInfo, &recoverSchemaCheckFlag) + if err != nil { + return 0, errors.Trace(err) + } + // Reserved recoverSchemaCheckFlag value for gc work judgment. + job.Args[checkFlagIndexInJobArgs] = recoverSchemaCheckFlag + recoverTabsInfo := recoverSchemaInfo.RecoverTabsInfo + diff.AffectedOpts = make([]*model.AffectedOption, len(recoverTabsInfo)) + for i := range recoverTabsInfo { + diff.AffectedOpts[i] = &model.AffectedOption{ + SchemaID: job.SchemaID, + OldSchemaID: job.SchemaID, + TableID: recoverTabsInfo[i].TableInfo.ID, + OldTableID: recoverTabsInfo[i].TableInfo.ID, + } + } default: diff.TableID = job.TableID } diff --git a/ddl/ddl_workerpool_test.go b/ddl/ddl_workerpool_test.go index 39a3a6b1452d0..e9f324ce9dff8 100644 --- a/ddl/ddl_workerpool_test.go +++ b/ddl/ddl_workerpool_test.go @@ -15,6 +15,7 @@ package ddl import ( + "context" "testing" "github.com/ngaut/pools" @@ -38,7 +39,7 @@ func TestBackfillWorkerPool(t *testing.T) { reorgInfo := &reorgInfo{Job: &model.Job{ID: 1}} f := func() func() (pools.Resource, error) { return func() (pools.Resource, error) { - wk := newBackfillWorker(nil, 1, nil, reorgInfo, typeAddIndexWorker) + wk := newBackfillWorker(context.Background(), nil, 1, nil, reorgInfo, typeAddIndexWorker) return wk, nil } } diff --git a/ddl/failtest/main_test.go b/ddl/failtest/main_test.go index 90097bae51e71..c136cb0fa6b94 100644 --- a/ddl/failtest/main_test.go +++ b/ddl/failtest/main_test.go @@ -36,6 +36,7 @@ func TestMain(m *testing.M) { opts := []goleak.Option{ goleak.IgnoreTopFunction("github.com/golang/glog.(*loggingT).flushDaemon"), + goleak.IgnoreTopFunction("github.com/lestrrat-go/httprc.runFetchWorker"), goleak.IgnoreTopFunction("go.etcd.io/etcd/client/pkg/v3/logutil.(*MergeLogger).outputLoop"), } diff --git a/ddl/foreign_key.go b/ddl/foreign_key.go index b91c2ef18406c..6f1d02d464ac8 100644 --- a/ddl/foreign_key.go +++ b/ddl/foreign_key.go @@ -44,29 +44,47 @@ func (w *worker) onCreateForeignKey(d *ddlCtx, t *meta.Meta, job *model.Job) (ve job.State = model.JobStateCancelled return ver, errors.Trace(err) } - err = checkAddForeignKeyValidInOwner(w, d, t, job, job.SchemaName, tblInfo, &fkInfo, fkCheck) - if err != nil { - return ver, err - } - fkInfo.ID = allocateFKIndexID(tblInfo) - tblInfo.ForeignKeys = append(tblInfo.ForeignKeys, &fkInfo) - - originalState := fkInfo.State - switch fkInfo.State { + switch job.SchemaState { case model.StateNone: - // We just support record the foreign key, so we just make it public. - // none -> public - fkInfo.State = model.StatePublic - ver, err = updateVersionAndTableInfo(d, t, job, tblInfo, originalState != fkInfo.State) + err = checkAddForeignKeyValidInOwner(d, t, job.SchemaName, tblInfo, &fkInfo, fkCheck) + if err != nil { + job.State = model.JobStateCancelled + return ver, err + } + fkInfo.State = model.StateWriteOnly + fkInfo.ID = allocateFKIndexID(tblInfo) + tblInfo.ForeignKeys = append(tblInfo.ForeignKeys, &fkInfo) + ver, err = updateVersionAndTableInfo(d, t, job, tblInfo, true) + if err != nil { + return ver, errors.Trace(err) + } + job.SchemaState = model.StateWriteOnly + return ver, nil + case model.StateWriteOnly: + err = checkForeignKeyConstrain(w, job.SchemaName, tblInfo.Name.L, &fkInfo, fkCheck) + if err != nil { + job.State = model.JobStateCancelled + return ver, err + } + tblInfo.ForeignKeys[len(tblInfo.ForeignKeys)-1].State = model.StateWriteReorganization + ver, err = updateVersionAndTableInfo(d, t, job, tblInfo, true) + if err != nil { + return ver, errors.Trace(err) + } + job.SchemaState = model.StateWriteReorganization + case model.StateWriteReorganization: + tblInfo.ForeignKeys[len(tblInfo.ForeignKeys)-1].State = model.StatePublic + ver, err = updateVersionAndTableInfo(d, t, job, tblInfo, true) if err != nil { return ver, errors.Trace(err) } // Finish this job. + job.SchemaState = model.StatePublic job.FinishTableJob(model.JobStateDone, model.StatePublic, ver, tblInfo) - return ver, nil default: return ver, dbterror.ErrInvalidDDLState.GenWithStack("foreign key", fkInfo.State) } + return ver, nil } func onDropForeignKey(d *ddlCtx, t *meta.Meta, job *model.Job) (ver int64, _ error) { @@ -618,21 +636,10 @@ func checkAddForeignKeyValid(is infoschema.InfoSchema, schema string, tbInfo *mo if err != nil { return err } - if len(fk.Cols) == 1 && tbInfo.PKIsHandle { - pkCol := tbInfo.GetPkColInfo() - if pkCol != nil && pkCol.Name.L == fk.Cols[0].L { - return nil - } - } - // check foreign key columns should have index. - // TODO(crazycs520): we can remove this check after TiDB support auto create index if needed when add foreign key. - if model.FindIndexByColumns(tbInfo, fk.Cols...) == nil { - return errors.Errorf("Failed to add the foreign key constraint. Missing index for '%s' foreign key columns in the table '%s'", fk.Name, tbInfo.Name) - } return nil } -func checkAddForeignKeyValidInOwner(w *worker, d *ddlCtx, t *meta.Meta, job *model.Job, schema string, tbInfo *model.TableInfo, fk *model.FKInfo, fkCheck bool) error { +func checkAddForeignKeyValidInOwner(d *ddlCtx, t *meta.Meta, schema string, tbInfo *model.TableInfo, fk *model.FKInfo, fkCheck bool) error { err := checkFKDupName(tbInfo, fk.Name) if err != nil { return err @@ -646,15 +653,17 @@ func checkAddForeignKeyValidInOwner(w *worker, d *ddlCtx, t *meta.Meta, job *mod } err = checkAddForeignKeyValid(is, schema, tbInfo, fk, fkCheck) if err != nil { - job.State = model.JobStateCancelled return errors.Trace(err) } - // TODO(crazycs520): fix me. we need to do multi-schema change when add foreign key constraint. - // Since after this check, DML can write data which break the foreign key constraint. - err = checkForeignKeyConstrain(w, schema, tbInfo.Name.L, fk, fkCheck) - if err != nil { - job.State = model.JobStateCancelled - return errors.Trace(err) + // check foreign key columns should have index. + if len(fk.Cols) == 1 && tbInfo.PKIsHandle { + pkCol := tbInfo.GetPkColInfo() + if pkCol != nil && pkCol.Name.L == fk.Cols[0].L { + return nil + } + } + if model.FindIndexByColumns(tbInfo, fk.Cols...) == nil { + return errors.Errorf("Failed to add the foreign key constraint. Missing index for '%s' foreign key columns in the table '%s'", fk.Name, tbInfo.Name) } return nil } diff --git a/ddl/foreign_key_test.go b/ddl/foreign_key_test.go index cf22a487cd65b..a50fd80e03681 100644 --- a/ddl/foreign_key_test.go +++ b/ddl/foreign_key_test.go @@ -15,6 +15,7 @@ package ddl_test import ( + "bytes" "context" "fmt" "strings" @@ -29,10 +30,12 @@ import ( "github.com/pingcap/tidb/meta" "github.com/pingcap/tidb/parser/auth" "github.com/pingcap/tidb/parser/model" + plannercore "github.com/pingcap/tidb/planner/core" "github.com/pingcap/tidb/sessionctx" "github.com/pingcap/tidb/sessiontxn" "github.com/pingcap/tidb/table" "github.com/pingcap/tidb/testkit" + "github.com/pingcap/tidb/util/dbterror" "github.com/stretchr/testify/require" ) @@ -789,6 +792,34 @@ func TestCreateTableWithForeignKeyError(t *testing.T) { create: "create table t2 (a int, b int, index fk_1(a), foreign key (b) references t1(b));", err: "[ddl:1061]duplicate key name fk_1", }, + { + refer: "create table t1 (id int key);", + create: "create table t2 (id int key, foreign key name5678901234567890123456789012345678901234567890123456789012345(id) references t1(id));", + err: "[ddl:1059]Identifier name 'name5678901234567890123456789012345678901234567890123456789012345' is too long", + }, + { + refer: "create table t1 (id int key);", + create: "create table t2 (id int key, constraint name5678901234567890123456789012345678901234567890123456789012345 foreign key (id) references t1(id));", + err: "[ddl:1059]Identifier name 'name5678901234567890123456789012345678901234567890123456789012345' is too long", + }, + { + create: "create table t2 (id int key, constraint fk foreign key (id) references name5678901234567890123456789012345678901234567890123456789012345.t1(id));", + err: "[ddl:1059]Identifier name 'name5678901234567890123456789012345678901234567890123456789012345' is too long", + }, + { + prepare: []string{ + "set @@foreign_key_checks=0;", + }, + create: "create table t2 (id int key, constraint fk foreign key (id) references name5678901234567890123456789012345678901234567890123456789012345(id));", + err: "[ddl:1059]Identifier name 'name5678901234567890123456789012345678901234567890123456789012345' is too long", + }, + { + prepare: []string{ + "set @@foreign_key_checks=0;", + }, + create: "create table t2 (id int key, constraint fk foreign key (id) references t1(name5678901234567890123456789012345678901234567890123456789012345));", + err: "[ddl:1059]Identifier name 'name5678901234567890123456789012345678901234567890123456789012345' is too long", + }, } for _, ca := range cases { tk.MustExec("drop table if exists t2") @@ -837,6 +868,10 @@ func TestCreateTableWithForeignKeyError(t *testing.T) { "create table t1 (a int key, b int, index(b))", "create table t2 (a int, b int, foreign key (a) references t1(a), foreign key (b) references t1(b));", }, + { + "create table t1 (id int key);", + "create table t2 (id int key, foreign key name567890123456789012345678901234567890123456789012345678901234(id) references t1(id));", + }, } for _, ca := range passCases { tk.MustExec("drop table if exists t2") @@ -1415,9 +1450,6 @@ func TestAddForeignKey(t *testing.T) { tk.MustExec("use test") tk.MustExec("create table t1 (id int key, b int);") tk.MustExec("create table t2 (id int key, b int);") - err := tk.ExecToErr("alter table t2 add foreign key (b) references t1(id);") - require.Error(t, err) - require.Equal(t, "Failed to add the foreign key constraint. Missing index for 'fk_1' foreign key columns in the table 't2'", err.Error()) tk.MustExec("alter table t2 add index(b)") tk.MustExec("alter table t2 add foreign key (b) references t1(id);") tbl2Info := getTableInfo(t, dom, "test", "t2") @@ -1426,6 +1458,61 @@ func TestAddForeignKey(t *testing.T) { tk.MustExec("alter table t1 add index(b)") tk.MustExec("alter table t2 add foreign key (b) references t1(b);") tk.MustGetDBError("alter table t2 add foreign key (b) references t2(b);", infoschema.ErrCannotAddForeign) + // Test auto-create index when create foreign key constraint. + tk.MustExec("drop table if exists t1,t2") + tk.MustExec("create table t1 (id int key, b int, index(b));") + tk.MustExec("create table t2 (id int key, b int);") + tk.MustExec("alter table t2 add constraint fk foreign key (b) references t1(b);") + tbl2Info = getTableInfo(t, dom, "test", "t2") + require.Equal(t, 1, len(tbl2Info.Indices)) + require.Equal(t, "fk", tbl2Info.Indices[0].Name.L) + require.Equal(t, model.StatePublic, tbl2Info.Indices[0].State) + tk.MustQuery("select b from t2 use index(fk)").Check(testkit.Rows()) + res := tk.MustQuery("explain select b from t2 use index(fk)") + plan := bytes.NewBuffer(nil) + rows := res.Rows() + for _, row := range rows { + for _, c := range row { + plan.WriteString(c.(string)) + plan.WriteString(" ") + } + } + require.Regexp(t, ".*IndexReader.*index:fk.*", plan.String()) + + // Test add multiple foreign key constraint in one statement. + tk.MustExec("alter table t2 add column c int, add column d int, add column e int;") + tk.MustExec("alter table t2 add index idx_c(c, d, e)") + tk.MustExec("alter table t2 add constraint fk_c foreign key (c) references t1(b), " + + "add constraint fk_d foreign key (d) references t1(b)," + + "add constraint fk_e foreign key (e) references t1(b)") + tbl2Info = getTableInfo(t, dom, "test", "t2") + require.Equal(t, 4, len(tbl2Info.Indices)) + names := []string{"fk", "idx_c", "fk_d", "fk_e"} + for i, idx := range tbl2Info.Indices { + require.Equal(t, names[i], idx.Name.L) + require.Equal(t, model.StatePublic, idx.State) + } + names = []string{"fk", "fk_c", "fk_d", "fk_e"} + for i, fkInfo := range tbl2Info.ForeignKeys { + require.Equal(t, names[i], fkInfo.Name.L) + require.Equal(t, model.StatePublic, fkInfo.State) + } + tk.MustGetDBError("insert into t2 (id, b) values (1,1)", plannercore.ErrNoReferencedRow2) + tk.MustGetDBError("insert into t2 (id, c) values (1,1)", plannercore.ErrNoReferencedRow2) + tk.MustGetDBError("insert into t2 (id, d) values (1,1)", plannercore.ErrNoReferencedRow2) + tk.MustGetDBError("insert into t2 (id, e) values (1,1)", plannercore.ErrNoReferencedRow2) + + // Test add multiple foreign key constraint in one statement but failed. + tk.MustExec("alter table t2 drop foreign key fk") + tk.MustExec("alter table t2 drop foreign key fk_c") + tk.MustExec("alter table t2 drop foreign key fk_d") + tk.MustExec("alter table t2 drop foreign key fk_e") + tk.MustGetDBError("alter table t2 add constraint fk_c foreign key (c) references t1(b), "+ + "add constraint fk_d foreign key (d) references t1(b),"+ + "add constraint fk_e foreign key (e) references t1(unknown_col)", infoschema.ErrForeignKeyNoColumnInParent) + tbl2Info = getTableInfo(t, dom, "test", "t2") + require.Equal(t, 0, len(tbl2Info.ForeignKeys)) + tk.MustGetDBError("alter table t2 drop index idx_c, add constraint fk_c foreign key (c) references t1(b)", dbterror.ErrDropIndexNeededInForeignKey) } func TestAddForeignKey2(t *testing.T) { @@ -1464,6 +1551,53 @@ func TestAddForeignKey2(t *testing.T) { require.Equal(t, "[ddl:-1]Failed to add the foreign key constraint. Missing index for 'fk_1' foreign key columns in the table 't2'", addErr.Error()) } +func TestAddForeignKey3(t *testing.T) { + store, dom := testkit.CreateMockStoreAndDomainWithSchemaLease(t, testLease) + d := dom.DDL() + tk := testkit.NewTestKit(t, store) + tk.MustExec("set @@global.tidb_enable_foreign_key=1") + tk.MustExec("set @@foreign_key_checks=1;") + tk.MustExec("use test") + tk2 := testkit.NewTestKit(t, store) + tk2.MustExec("use test") + tk2.MustExec("set @@foreign_key_checks=1;") + tk.MustExec("create table t1 (id int key, b int, index(b));") + tk.MustExec("create table t2 (id int, b int, index(id), index(b));") + tk.MustExec("insert into t1 values (1, 1), (2, 2), (3, 3)") + tk.MustExec("insert into t2 values (1, 1), (2, 2), (3, 3)") + + var insertErrs []error + var deleteErrs []error + tc := &ddl.TestDDLCallback{} + tc.OnJobRunBeforeExported = func(job *model.Job) { + if job.Type != model.ActionAddForeignKey { + return + } + if job.SchemaState == model.StateWriteOnly || job.SchemaState == model.StateWriteReorganization { + err := tk2.ExecToErr("insert into t2 values (10, 10)") + insertErrs = append(insertErrs, err) + err = tk2.ExecToErr("delete from t1 where id = 1") + deleteErrs = append(deleteErrs, err) + } + } + originalHook := d.GetHook() + defer d.SetHook(originalHook) + d.SetHook(tc) + + tk.MustExec("alter table t2 add foreign key (id) references t1(id) on delete cascade") + require.Equal(t, 2, len(insertErrs)) + for _, err := range insertErrs { + require.Error(t, err) + require.Equal(t, "[planner:1452]Cannot add or update a child row: a foreign key constraint fails (`test`.`t2`, CONSTRAINT `fk_1` FOREIGN KEY (`id`) REFERENCES `t1` (`id`) ON DELETE CASCADE)", err.Error()) + } + for _, err := range deleteErrs { + require.Error(t, err) + require.Equal(t, "[planner:1451]Cannot delete or update a parent row: a foreign key constraint fails (`test`.`t2`, CONSTRAINT `fk_1` FOREIGN KEY (`id`) REFERENCES `t1` (`id`) ON DELETE CASCADE)", err.Error()) + } + tk.MustQuery("select * from t1 order by id").Check(testkit.Rows("1 1", "2 2", "3 3")) + tk.MustQuery("select * from t2 order by id").Check(testkit.Rows("1 1", "2 2", "3 3")) +} + func TestAlterTableAddForeignKeyError(t *testing.T) { store, _ := testkit.CreateMockStoreAndDomain(t) tk := testkit.NewTestKit(t, store) @@ -1605,6 +1739,22 @@ func TestAlterTableAddForeignKeyError(t *testing.T) { alter: "alter table t2 add foreign key fk_b(a, b) references t1(a, b)", err: "[ddl:1452]Cannot add or update a child row: a foreign key constraint fails (`test`.`t2`, CONSTRAINT `fk_b` FOREIGN KEY (`a`, `b`) REFERENCES `t1` (`a`, `b`))", }, + { + prepares: []string{ + "create table t1 (id int key);", + "create table t2 (a int, b int unique);", + }, + alter: "alter table t2 add foreign key name5678901234567890123456789012345678901234567890123456789012345(b) references t1(id)", + err: "[ddl:1059]Identifier name 'name5678901234567890123456789012345678901234567890123456789012345' is too long", + }, + { + prepares: []string{ + "create table t1 (id int key);", + "create table t2 (a int, b int unique);", + }, + alter: "alter table t2 add constraint name5678901234567890123456789012345678901234567890123456789012345 foreign key (b) references t1(id)", + err: "[ddl:1059]Identifier name 'name5678901234567890123456789012345678901234567890123456789012345' is too long", + }, } for i, ca := range cases { tk.MustExec("drop table if exists t2") @@ -1668,6 +1818,11 @@ func TestAlterTableAddForeignKeyError(t *testing.T) { "alter table t2 add foreign key fk_b(b) references t_unknown(a)", "set @@foreign_key_checks=1;", }, + { + "create table t1 (id int key);", + "create table t2 (a int, b int unique);", + "alter table t2 add foreign key name567890123456789012345678901234567890123456789012345678901234(b) references t1(id)", + }, } for _, ca := range passCases { tk.MustExec("drop table if exists t2") diff --git a/ddl/index.go b/ddl/index.go index 914e5e8ff48a3..69622ec3b5bef 100644 --- a/ddl/index.go +++ b/ddl/index.go @@ -709,6 +709,10 @@ func pickBackfillType(w *worker, job *model.Job) model.ReorgType { // canUseIngest indicates whether it can use ingest way to backfill index. func canUseIngest(w *worker) bool { + // We only allow one task to use ingest at the same time, in order to limit the CPU usage. + if len(ingest.LitBackCtxMgr.Keys()) > 0 { + return false + } ctx, err := w.sessPool.get() if err != nil { return false @@ -1210,7 +1214,7 @@ func newAddIndexWorker(sessCtx sessionctx.Context, id int, t table.PhysicalTable return &addIndexWorker{ baseIndexWorker: baseIndexWorker{ - backfillWorker: newBackfillWorker(sessCtx, id, t, reorgInfo, typeAddIndexWorker), + backfillWorker: newBackfillWorker(jc.ddlJobCtx, sessCtx, id, t, reorgInfo, typeAddIndexWorker), indexes: []table.Index{index}, rowDecoder: rowDecoder, defaultVals: make([]types.Datum, len(t.WritableCols())), @@ -1270,7 +1274,7 @@ func (w *baseIndexWorker) getIndexRecord(idxInfo *model.IndexInfo, handle kv.Han idxVal[j] = idxColumnVal } - rsData := tables.TryGetHandleRestoredDataWrapper(w.table, nil, w.rowMap, idxInfo) + rsData := tables.TryGetHandleRestoredDataWrapper(w.table.Meta(), nil, w.rowMap, idxInfo) idxRecord := &indexRecord{handle: handle, key: recordKey, vals: idxVal, rsData: rsData} return idxRecord, nil } @@ -1289,7 +1293,10 @@ func (w *baseIndexWorker) getNextKey(taskRange reorgBackfillTask, taskDone bool) recordKey := tablecodec.EncodeRecordKey(w.table.RecordPrefix(), lastHandle) return recordKey.Next() } - return taskRange.endKey.Next() + if taskRange.endInclude { + return taskRange.endKey.Next() + } + return taskRange.endKey } func (w *baseIndexWorker) updateRowDecoder(handle kv.Handle, rawRecord []byte) error { @@ -1389,7 +1396,7 @@ func (w *addIndexWorker) checkHandleExists(key kv.Key, value []byte, handle kv.H if err != nil { return err } - indexName := w.index.Meta().Name.String() + indexName := fmt.Sprintf("%s.%s", w.index.TableMeta().Name.String(), w.index.Meta().Name.String()) valueStr := make([]string, 0, idxColLen) for i, val := range values[:idxColLen] { d, err := tablecodec.DecodeColumnValue(val, colInfos[i].Ft, time.Local) @@ -1705,7 +1712,7 @@ func newCleanUpIndexWorker(sessCtx sessionctx.Context, id int, t table.PhysicalT } return &cleanUpIndexWorker{ baseIndexWorker: baseIndexWorker{ - backfillWorker: newBackfillWorker(sessCtx, id, t, reorgInfo, typeCleanUpIndexWorker), + backfillWorker: newBackfillWorker(jc.ddlJobCtx, sessCtx, id, t, reorgInfo, typeCleanUpIndexWorker), indexes: indexes, rowDecoder: rowDecoder, defaultVals: make([]types.Datum, len(t.WritableCols())), diff --git a/ddl/index_merge_tmp.go b/ddl/index_merge_tmp.go index 9159b47c47951..b33111119facc 100644 --- a/ddl/index_merge_tmp.go +++ b/ddl/index_merge_tmp.go @@ -95,7 +95,7 @@ func newMergeTempIndexWorker(sessCtx sessionctx.Context, id int, t table.Physica index := tables.NewIndex(t.GetPhysicalID(), t.Meta(), indexInfo) return &mergeIndexWorker{ - backfillWorker: newBackfillWorker(sessCtx, id, t, reorgInfo, typeAddIndexMergeTmpWorker), + backfillWorker: newBackfillWorker(jc.ddlJobCtx, sessCtx, id, t, reorgInfo, typeAddIndexMergeTmpWorker), index: index, jobContext: jc, } diff --git a/ddl/index_modify_test.go b/ddl/index_modify_test.go index 7aff7ac81b2f3..c24f2dfb1b783 100644 --- a/ddl/index_modify_test.go +++ b/ddl/index_modify_test.go @@ -374,7 +374,7 @@ func TestAddIndexForGeneratedColumn(t *testing.T) { func TestAddPrimaryKeyRollback1(t *testing.T) { idxName := "PRIMARY" addIdxSQL := "alter table t1 add primary key c3_index (c3);" - errMsg := "[kv:1062]Duplicate entry '" + strconv.Itoa(defaultBatchSize*2-10) + "' for key 'PRIMARY'" + errMsg := "[kv:1062]Duplicate entry '" + strconv.Itoa(defaultBatchSize*2-10) + "' for key 't1.PRIMARY'" testAddIndexRollback(t, idxName, addIdxSQL, errMsg, false) } @@ -389,7 +389,7 @@ func TestAddPrimaryKeyRollback2(t *testing.T) { func TestAddUniqueIndexRollback(t *testing.T) { idxName := "c3_index" addIdxSQL := "create unique index c3_index on t1 (c3)" - errMsg := "[kv:1062]Duplicate entry '" + strconv.Itoa(defaultBatchSize*2-10) + "' for key 'c3_index'" + errMsg := "[kv:1062]Duplicate entry '" + strconv.Itoa(defaultBatchSize*2-10) + "' for key 't1.c3_index'" testAddIndexRollback(t, idxName, addIdxSQL, errMsg, false) } @@ -816,7 +816,7 @@ func TestDropIndexes(t *testing.T) { store := testkit.CreateMockStoreWithSchemaLease(t, indexModifyLease, mockstore.WithDDLChecker()) // drop multiple indexes - createSQL := "create table test_drop_indexes (id int, c1 int, c2 int, primary key(id), key i1(c1), key i2(c2));" + createSQL := "create table test_drop_indexes (id int, c1 int, c2 int, primary key(id) nonclustered, key i1(c1), key i2(c2));" dropIdxSQL := "alter table test_drop_indexes drop index i1, drop index i2;" idxNames := []string{"i1", "i2"} testDropIndexes(t, store, createSQL, dropIdxSQL, idxNames) @@ -826,7 +826,7 @@ func TestDropIndexes(t *testing.T) { idxNames = []string{"primary", "i1"} testDropIndexes(t, store, createSQL, dropIdxSQL, idxNames) - createSQL = "create table test_drop_indexes (uuid varchar(32), c1 int, c2 int, primary key(uuid), unique key i1(c1), key i2(c2));" + createSQL = "create table test_drop_indexes (uuid varchar(32), c1 int, c2 int, primary key(uuid) nonclustered, unique key i1(c1), key i2(c2));" dropIdxSQL = "alter table test_drop_indexes drop primary key, drop index i1, drop index i2;" idxNames = []string{"primary", "i1", "i2"} testDropIndexes(t, store, createSQL, dropIdxSQL, idxNames) @@ -1067,3 +1067,20 @@ func TestAddIndexWithDupIndex(t *testing.T) { err = tk.ExecToErr("alter table test_add_index_with_dup add index idx (a)") require.ErrorIs(t, err, errors.Cause(err2)) } + +func TestAddIndexUniqueFailOnDuplicate(t *testing.T) { + ddl.ResultCounterForTest = &atomic.Int32{} + store := testkit.CreateMockStore(t) + tk := testkit.NewTestKit(t, store) + tk.MustExec("use test") + tk.MustExec("create table t (a bigint primary key clustered, b int);") + tk.MustExec("set @@global.tidb_ddl_reorg_worker_cnt = 1;") + for i := 1; i <= 12; i++ { + tk.MustExec("insert into t values (?, ?)", i, i) + } + tk.MustExec("insert into t values (0, 1);") // Insert a duplicate key. + tk.MustQuery("split table t by (0), (1), (2), (3), (4), (5), (6), (7), (8), (9), (10), (11), (12);").Check(testkit.Rows("13 1")) + tk.MustGetErrCode("alter table t add unique index idx (b);", errno.ErrDupEntry) + require.Less(t, int(ddl.ResultCounterForTest.Load()), 6) + ddl.ResultCounterForTest = nil +} diff --git a/ddl/job_table.go b/ddl/job_table.go index 83585ca040704..d23f083539e87 100644 --- a/ddl/job_table.go +++ b/ddl/job_table.go @@ -293,7 +293,7 @@ func (d *ddl) delivery2worker(wk *worker, pool *workerPool, job *model.Job) { if RunInGoTest { // d.mu.hook is initialed from domain / test callback, which will force the owner host update schema diff synchronously. d.mu.RLock() - d.mu.hook.OnSchemaStateChanged() + d.mu.hook.OnSchemaStateChanged(schemaVer) d.mu.RUnlock() } diff --git a/ddl/label/main_test.go b/ddl/label/main_test.go index b077fcc255bcc..559584b77f407 100644 --- a/ddl/label/main_test.go +++ b/ddl/label/main_test.go @@ -25,6 +25,7 @@ func TestMain(m *testing.M) { testsetup.SetupForCommonTest() opts := []goleak.Option{ goleak.IgnoreTopFunction("github.com/golang/glog.(*loggingT).flushDaemon"), + goleak.IgnoreTopFunction("github.com/lestrrat-go/httprc.runFetchWorker"), goleak.IgnoreTopFunction("go.etcd.io/etcd/client/pkg/v3/logutil.(*MergeLogger).outputLoop"), goleak.IgnoreTopFunction("go.opencensus.io/stats/view.(*worker).start"), } diff --git a/ddl/main_test.go b/ddl/main_test.go index 91558d1e44e27..3418d16a23ece 100644 --- a/ddl/main_test.go +++ b/ddl/main_test.go @@ -60,8 +60,10 @@ func TestMain(m *testing.M) { opts := []goleak.Option{ goleak.IgnoreTopFunction("github.com/golang/glog.(*loggingT).flushDaemon"), + goleak.IgnoreTopFunction("github.com/lestrrat-go/httprc.runFetchWorker"), goleak.IgnoreTopFunction("go.etcd.io/etcd/client/pkg/v3/logutil.(*MergeLogger).outputLoop"), goleak.IgnoreTopFunction("github.com/tikv/client-go/v2/txnkv/transaction.keepAlive"), + goleak.IgnoreTopFunction("go.opencensus.io/stats/view.(*worker).start"), } goleak.VerifyTestMain(m, opts...) diff --git a/ddl/metadatalocktest/main_test.go b/ddl/metadatalocktest/main_test.go index 62dbb9a626287..4a52dad904905 100644 --- a/ddl/metadatalocktest/main_test.go +++ b/ddl/metadatalocktest/main_test.go @@ -36,6 +36,7 @@ func TestMain(m *testing.M) { opts := []goleak.Option{ goleak.IgnoreTopFunction("github.com/golang/glog.(*loggingT).flushDaemon"), + goleak.IgnoreTopFunction("github.com/lestrrat-go/httprc.runFetchWorker"), goleak.IgnoreTopFunction("go.etcd.io/etcd/client/pkg/v3/logutil.(*MergeLogger).outputLoop"), goleak.IgnoreTopFunction("go.opencensus.io/stats/view.(*worker).start"), } diff --git a/ddl/multi_schema_change.go b/ddl/multi_schema_change.go index 894b926ba512e..ab306fe546932 100644 --- a/ddl/multi_schema_change.go +++ b/ddl/multi_schema_change.go @@ -118,11 +118,13 @@ func onMultiSchemaChange(w *worker, d *ddlCtx, t *meta.Meta, job *model.Job) (ve proxyJob := sub.ToProxyJob(job) if schemaVersionGenerated { proxyJob.MultiSchemaInfo.SkipVersion = true - } else { + } + proxyJobVer, err := w.runDDLJob(d, t, &proxyJob) + if !schemaVersionGenerated && proxyJobVer != 0 { schemaVersionGenerated = true + ver = proxyJobVer } - ver, err = w.runDDLJob(d, t, &proxyJob) - sub.FromProxyJob(&proxyJob, ver) + sub.FromProxyJob(&proxyJob, proxyJobVer) if err != nil || proxyJob.Error != nil { for j := i - 1; j >= 0; j-- { job.MultiSchemaInfo.SubJobs[j] = &subJobs[j] @@ -257,6 +259,9 @@ func fillMultiSchemaInfo(info *model.MultiSchemaInfo, job *model.Job) (err error idxName := job.Args[0].(model.CIStr) info.AlterIndexes = append(info.AlterIndexes, idxName) case model.ActionRebaseAutoID, model.ActionModifyTableComment, model.ActionModifyTableCharsetAndCollate: + case model.ActionAddForeignKey: + fkInfo := job.Args[0].(*model.FKInfo) + info.ForeignKeys = append(info.ForeignKeys, fkInfo.Name) default: return dbterror.ErrRunMultiSchemaChanges.FastGenByArgs(job.Type.String()) } @@ -373,8 +378,8 @@ func finishMultiSchemaJob(job *model.Job, t *meta.Meta) (ver int64, err error) { } tblInfo, err := t.GetTable(job.SchemaID, job.TableID) if err != nil { - return ver, err + return 0, err } job.FinishTableJob(model.JobStateDone, model.StateNone, ver, tblInfo) - return ver, err + return 0, err } diff --git a/ddl/multi_schema_change_test.go b/ddl/multi_schema_change_test.go index d2e62d20d736d..250fb692f3500 100644 --- a/ddl/multi_schema_change_test.go +++ b/ddl/multi_schema_change_test.go @@ -1141,6 +1141,33 @@ func TestMultiSchemaChangeUnsupportedType(t *testing.T) { "[ddl:8200]Unsupported multi schema change for modify auto id cache") } +func TestMultiSchemaChangeSchemaVersion(t *testing.T) { + store, dom := testkit.CreateMockStoreAndDomain(t) + tk := testkit.NewTestKit(t, store) + tk.MustExec("use test;") + tk.MustExec("create table t(a int, b int, c int, d int)") + tk.MustExec("insert into t values (1,2,3,4)") + + schemaVerMap := map[int64]struct{}{} + + originHook := dom.DDL().GetHook() + hook := &ddl.TestDDLCallback{Do: dom} + hook.OnJobSchemaStateChanged = func(schemaVer int64) { + if schemaVer != 0 { + // No same return schemaVer during multi-schema change + _, ok := schemaVerMap[schemaVer] + assert.False(t, ok) + schemaVerMap[schemaVer] = struct{}{} + } + } + dom.DDL().SetHook(hook) + tk.MustExec("alter table t drop column b, drop column c") + tk.MustExec("alter table t add column b int, add column c int") + tk.MustExec("alter table t add index k(b), add column e int") + tk.MustExec("alter table t alter index k invisible, drop column e") + dom.DDL().SetHook(originHook) +} + func TestMultiSchemaChangeMixedWithUpdate(t *testing.T) { store, dom := testkit.CreateMockStoreAndDomain(t) tk := testkit.NewTestKit(t, store) diff --git a/ddl/partition.go b/ddl/partition.go index b2fa6293dfd86..7bba0b1006332 100644 --- a/ddl/partition.go +++ b/ddl/partition.go @@ -425,8 +425,11 @@ func buildTablePartitionInfo(ctx sessionctx.Context, s *ast.PartitionOptions, tb } case model.PartitionTypeHash: // Partition by hash is enabled by default. - // Note that linear hash is not enabled. - if !s.Linear && s.Sub == nil { + // Note that linear hash is simply ignored, and creates non-linear hash. + if s.Linear { + ctx.GetSessionVars().StmtCtx.AppendWarning(dbterror.ErrUnsupportedCreatePartition.GenWithStack("LINEAR HASH is not supported, using non-linear HASH instead")) + } + if s.Sub == nil { enable = true } case model.PartitionTypeList: @@ -779,6 +782,9 @@ func generatePartitionDefinitionsFromInterval(ctx sessionctx.Context, partOption } if len(tbInfo.Partition.Columns) > 0 { colTypes := collectColumnsType(tbInfo) + if len(colTypes) != len(tbInfo.Partition.Columns) { + return dbterror.ErrWrongPartitionName.GenWithStack("partition column name cannot be found") + } if _, err := checkAndGetColumnsTypeAndValuesMatch(ctx, colTypes, first.Exprs); err != nil { return err } @@ -1078,6 +1084,9 @@ func buildListPartitionDefinitions(ctx sessionctx.Context, defs []*ast.Partition definitions := make([]model.PartitionDefinition, 0, len(defs)) exprChecker := newPartitionExprChecker(ctx, nil, checkPartitionExprAllowed) colTypes := collectColumnsType(tbInfo) + if len(colTypes) != len(tbInfo.Partition.Columns) { + return nil, dbterror.ErrWrongPartitionName.GenWithStack("partition column name cannot be found") + } for _, def := range defs { if err := def.Clause.Validate(model.PartitionTypeList, len(tbInfo.Partition.Columns)); err != nil { return nil, err @@ -1136,7 +1145,11 @@ func collectColumnsType(tbInfo *model.TableInfo) []types.FieldType { if len(tbInfo.Partition.Columns) > 0 { colTypes := make([]types.FieldType, 0, len(tbInfo.Partition.Columns)) for _, col := range tbInfo.Partition.Columns { - colTypes = append(colTypes, findColumnByName(col.L, tbInfo).FieldType) + c := findColumnByName(col.L, tbInfo) + if c == nil { + return nil + } + colTypes = append(colTypes, c.FieldType) } return colTypes @@ -1149,6 +1162,9 @@ func buildRangePartitionDefinitions(ctx sessionctx.Context, defs []*ast.Partitio definitions := make([]model.PartitionDefinition, 0, len(defs)) exprChecker := newPartitionExprChecker(ctx, nil, checkPartitionExprAllowed) colTypes := collectColumnsType(tbInfo) + if len(colTypes) != len(tbInfo.Partition.Columns) { + return nil, dbterror.ErrWrongPartitionName.GenWithStack("partition column name cannot be found") + } for _, def := range defs { if err := def.Clause.Validate(model.PartitionTypeRange, len(tbInfo.Partition.Columns)); err != nil { return nil, err @@ -2804,6 +2820,54 @@ func hexIfNonPrint(s string) string { return "0x" + hex.EncodeToString([]byte(driver.UnwrapFromSingleQuotes(s))) } +// AppendPartitionInfo is used in SHOW CREATE TABLE as well as generation the SQL syntax +// for the PartitionInfo during validation of various DDL commands +func AppendPartitionInfo(partitionInfo *model.PartitionInfo, buf *bytes.Buffer, sqlMode mysql.SQLMode) { + if partitionInfo == nil { + return + } + // Since MySQL 5.1/5.5 is very old and TiDB aims for 5.7/8.0 compatibility, we will not + // include the /*!50100 or /*!50500 comments for TiDB. + // This also solves the issue with comments within comments that would happen for + // PLACEMENT POLICY options. + if partitionInfo.Type == model.PartitionTypeHash { + defaultPartitionDefinitions := true + for i, def := range partitionInfo.Definitions { + if def.Name.O != fmt.Sprintf("p%d", i) { + defaultPartitionDefinitions = false + break + } + if len(def.Comment) > 0 || def.PlacementPolicyRef != nil { + defaultPartitionDefinitions = false + break + } + } + + if defaultPartitionDefinitions { + fmt.Fprintf(buf, "\nPARTITION BY HASH (%s) PARTITIONS %d", partitionInfo.Expr, partitionInfo.Num) + return + } + } + // this if statement takes care of lists/range columns case + if len(partitionInfo.Columns) > 0 { + // partitionInfo.Type == model.PartitionTypeRange || partitionInfo.Type == model.PartitionTypeList + // Notice that MySQL uses two spaces between LIST and COLUMNS... + fmt.Fprintf(buf, "\nPARTITION BY %s COLUMNS(", partitionInfo.Type.String()) + for i, col := range partitionInfo.Columns { + buf.WriteString(stringutil.Escape(col.O, sqlMode)) + if i < len(partitionInfo.Columns)-1 { + buf.WriteString(",") + } + } + buf.WriteString(")\n(") + } else { + fmt.Fprintf(buf, "\nPARTITION BY %s (%s)\n(", partitionInfo.Type.String(), partitionInfo.Expr) + } + + AppendPartitionDefs(partitionInfo, buf, sqlMode) + buf.WriteString(")") +} + // AppendPartitionDefs generates a list of partition definitions needed for SHOW CREATE TABLE (in executor/show.go) // as well as needed for generating the ADD PARTITION query for INTERVAL partitioning of ALTER TABLE t LAST PARTITION // and generating the CREATE TABLE query from CREATE TABLE ... INTERVAL diff --git a/ddl/rollingback.go b/ddl/rollingback.go index 4fd30d4c9d84a..c6f75442479b6 100644 --- a/ddl/rollingback.go +++ b/ddl/rollingback.go @@ -388,7 +388,8 @@ func convertJob2RollbackJob(w *worker, d *ddlCtx, t *meta.Meta, job *model.Job) model.ActionModifyTableCharsetAndCollate, model.ActionTruncateTablePartition, model.ActionModifySchemaCharsetAndCollate, model.ActionRepairTable, model.ActionModifyTableAutoIdCache, model.ActionAlterIndexVisibility, - model.ActionExchangeTablePartition, model.ActionModifySchemaDefaultPlacement: + model.ActionExchangeTablePartition, model.ActionModifySchemaDefaultPlacement, + model.ActionRecoverSchema: ver, err = cancelOnlyNotHandledJob(job, model.StateNone) case model.ActionMultiSchemaChange: err = rollingBackMultiSchemaChange(job) diff --git a/ddl/schema.go b/ddl/schema.go index e8502189b6ca2..d9e86c30c5eaf 100644 --- a/ddl/schema.go +++ b/ddl/schema.go @@ -253,6 +253,91 @@ func onDropSchema(d *ddlCtx, t *meta.Meta, job *model.Job) (ver int64, _ error) return ver, errors.Trace(err) } +func (w *worker) onRecoverSchema(d *ddlCtx, t *meta.Meta, job *model.Job) (ver int64, _ error) { + var ( + recoverSchemaInfo *RecoverSchemaInfo + recoverSchemaCheckFlag int64 + ) + if err := job.DecodeArgs(&recoverSchemaInfo, &recoverSchemaCheckFlag); err != nil { + // Invalid arguments, cancel this job. + job.State = model.JobStateCancelled + return ver, errors.Trace(err) + } + schemaInfo := recoverSchemaInfo.DBInfo + // check GC and safe point + gcEnable, err := checkGCEnable(w) + if err != nil { + job.State = model.JobStateCancelled + return ver, errors.Trace(err) + } + switch schemaInfo.State { + case model.StateNone: + // none -> write only + // check GC enable and update flag. + if gcEnable { + job.Args[checkFlagIndexInJobArgs] = recoverCheckFlagEnableGC + } else { + job.Args[checkFlagIndexInJobArgs] = recoverCheckFlagDisableGC + } + // Clear all placement when recover + for _, recoverTabInfo := range recoverSchemaInfo.RecoverTabsInfo { + err = clearTablePlacementAndBundles(recoverTabInfo.TableInfo) + if err != nil { + job.State = model.JobStateCancelled + return ver, errors.Wrapf(err, "failed to notify PD the placement rules") + } + } + schemaInfo.State = model.StateWriteOnly + job.SchemaState = model.StateWriteOnly + case model.StateWriteOnly: + // write only -> public + // do recover schema and tables. + if gcEnable { + err = disableGC(w) + if err != nil { + job.State = model.JobStateCancelled + return ver, errors.Errorf("disable gc failed, try again later. err: %v", err) + } + } + dbInfo := schemaInfo.Clone() + dbInfo.State = model.StatePublic + err = t.CreateDatabase(dbInfo) + if err != nil { + return ver, errors.Trace(err) + } + // check GC safe point + err = checkSafePoint(w, recoverSchemaInfo.SnapshotTS) + if err != nil { + job.State = model.JobStateCancelled + return ver, errors.Trace(err) + } + for _, recoverInfo := range recoverSchemaInfo.RecoverTabsInfo { + ver, err = w.recoverTable(t, job, recoverInfo) + if err != nil { + return ver, errors.Trace(err) + } + } + schemaInfo.State = model.StatePublic + for _, recoverInfo := range recoverSchemaInfo.RecoverTabsInfo { + recoverInfo.TableInfo.State = model.StatePublic + recoverInfo.TableInfo.UpdateTS = t.StartTS + } + // use to update InfoSchema + job.SchemaID = schemaInfo.ID + ver, err = updateSchemaVersion(d, t, job) + if err != nil { + return ver, errors.Trace(err) + } + // Finish this job. + job.FinishDBJob(model.JobStateDone, model.StatePublic, ver, schemaInfo) + return ver, nil + default: + // We can't enter here. + return ver, errors.Errorf("invalid db state %v", schemaInfo.State) + } + return ver, errors.Trace(err) +} + func checkSchemaExistAndCancelNotExistJob(t *meta.Meta, job *model.Job) (*model.DBInfo, error) { dbInfo, err := t.GetDatabase(job.SchemaID) if err != nil { diff --git a/ddl/schematracker/checker.go b/ddl/schematracker/checker.go index a2a5c8f5a4402..b1533d0246fb1 100644 --- a/ddl/schematracker/checker.go +++ b/ddl/schematracker/checker.go @@ -17,6 +17,7 @@ package schematracker import ( "bytes" "context" + "crypto/tls" "fmt" "strings" "time" @@ -210,6 +211,11 @@ func (d Checker) DropSchema(ctx sessionctx.Context, stmt *ast.DropDatabaseStmt) return nil } +// RecoverSchema implements the DDL interface. +func (d Checker) RecoverSchema(ctx sessionctx.Context, recoverSchemaInfo *ddl.RecoverSchemaInfo) (err error) { + return nil +} + // CreateTable implements the DDL interface. func (d Checker) CreateTable(ctx sessionctx.Context, stmt *ast.CreateTableStmt) error { err := d.realDDL.CreateTable(ctx, stmt) @@ -443,13 +449,13 @@ func (d Checker) CreateSchemaWithInfo(ctx sessionctx.Context, info *model.DBInfo } // CreateTableWithInfo implements the DDL interface. -func (d Checker) CreateTableWithInfo(ctx sessionctx.Context, schema model.CIStr, info *model.TableInfo, onExist ddl.OnExist) error { +func (d Checker) CreateTableWithInfo(ctx sessionctx.Context, schema model.CIStr, info *model.TableInfo, cs ...ddl.CreateTableWithInfoConfigurier) error { //TODO implement me panic("implement me") } // BatchCreateTableWithInfo implements the DDL interface. -func (d Checker) BatchCreateTableWithInfo(ctx sessionctx.Context, schema model.CIStr, info []*model.TableInfo, onExist ddl.OnExist) error { +func (d Checker) BatchCreateTableWithInfo(ctx sessionctx.Context, schema model.CIStr, info []*model.TableInfo, cs ...ddl.CreateTableWithInfoConfigurier) error { //TODO implement me panic("implement me") } @@ -548,15 +554,37 @@ func (d Checker) MoveJobFromTable2Queue() error { // StorageDDLInjector wraps kv.Storage to inject checker to domain's DDL in bootstrap time. type StorageDDLInjector struct { kv.Storage + kv.EtcdBackend Injector func(ddl.DDL) *Checker } +var _ kv.EtcdBackend = StorageDDLInjector{} + +// EtcdAddrs implements the kv.EtcdBackend interface. +func (s StorageDDLInjector) EtcdAddrs() ([]string, error) { + return s.EtcdBackend.EtcdAddrs() +} + +// TLSConfig implements the kv.EtcdBackend interface. +func (s StorageDDLInjector) TLSConfig() *tls.Config { + return s.EtcdBackend.TLSConfig() +} + +// StartGCWorker implements the kv.EtcdBackend interface. +func (s StorageDDLInjector) StartGCWorker() error { + return s.EtcdBackend.StartGCWorker() +} + // NewStorageDDLInjector creates a new StorageDDLInjector to inject Checker. func NewStorageDDLInjector(s kv.Storage) kv.Storage { - return StorageDDLInjector{ + ret := StorageDDLInjector{ Storage: s, Injector: NewChecker, } + if ebd, ok := s.(kv.EtcdBackend); ok { + ret.EtcdBackend = ebd + } + return ret } // UnwrapStorage unwraps StorageDDLInjector for one level. diff --git a/ddl/schematracker/dm_tracker.go b/ddl/schematracker/dm_tracker.go index 1ef078805fe6c..75f8fa35b429d 100644 --- a/ddl/schematracker/dm_tracker.go +++ b/ddl/schematracker/dm_tracker.go @@ -49,6 +49,9 @@ var _ ddl.DDL = SchemaTracker{} // SchemaTracker is used to track schema changes by DM. It implements DDL interface and by applying DDL, it updates the // table structure to keep tracked with upstream changes. +// It embeds an InfoStore which stores DBInfo and TableInfo. The DBInfo and TableInfo can be treated as immutable, so +// after reading them by SchemaByName or TableByName, later modifications made by SchemaTracker will not change them. +// SchemaTracker is not thread-safe. type SchemaTracker struct { *InfoStore } @@ -108,16 +111,22 @@ func (d SchemaTracker) CreateSchemaWithInfo(ctx sessionctx.Context, dbInfo *mode } // AlterSchema implements the DDL interface. -func (d SchemaTracker) AlterSchema(ctx sessionctx.Context, stmt *ast.AlterDatabaseStmt) error { +func (d SchemaTracker) AlterSchema(ctx sessionctx.Context, stmt *ast.AlterDatabaseStmt) (err error) { dbInfo := d.SchemaByName(stmt.Name) if dbInfo == nil { return infoschema.ErrDatabaseNotExists.GenWithStackByArgs(stmt.Name.O) } + dbInfo = dbInfo.Clone() + defer func() { + if err == nil { + d.PutSchema(dbInfo) + } + }() + // Resolve target charset and collation from options. var ( toCharset, toCollate string - err error ) for _, val := range stmt.Options { @@ -173,9 +182,15 @@ func (d SchemaTracker) CreateTable(ctx sessionctx.Context, s *ast.CreateTableStm return infoschema.ErrDatabaseNotExists.GenWithStackByArgs(ident.Schema) } // suppress ErrTooLongKey + strictSQLModeBackup := ctx.GetSessionVars().StrictSQLMode ctx.GetSessionVars().StrictSQLMode = false // support drop PK + enableClusteredIndexBackup := ctx.GetSessionVars().EnableClusteredIndex ctx.GetSessionVars().EnableClusteredIndex = variable.ClusteredIndexDefModeOff + defer func() { + ctx.GetSessionVars().StrictSQLMode = strictSQLModeBackup + ctx.GetSessionVars().EnableClusteredIndex = enableClusteredIndexBackup + }() var ( referTbl *model.TableInfo @@ -220,8 +235,10 @@ func (d SchemaTracker) CreateTableWithInfo( ctx sessionctx.Context, dbName model.CIStr, info *model.TableInfo, - onExist ddl.OnExist, + cs ...ddl.CreateTableWithInfoConfigurier, ) error { + c := ddl.GetCreateTableWithInfoConfig(cs) + schema := d.SchemaByName(dbName) if schema == nil { return infoschema.ErrDatabaseNotExists.GenWithStackByArgs(dbName) @@ -229,7 +246,7 @@ func (d SchemaTracker) CreateTableWithInfo( oldTable, _ := d.TableByName(dbName, info.Name) if oldTable != nil { - switch onExist { + switch c.OnExist { case ddl.OnExistIgnore: return nil case ddl.OnExistReplace: @@ -311,6 +328,11 @@ func (d SchemaTracker) FlashbackCluster(ctx sessionctx.Context, flashbackTS uint return nil } +// RecoverSchema implements the DDL interface, which is no-op in DM's case. +func (d SchemaTracker) RecoverSchema(ctx sessionctx.Context, recoverSchemaInfo *ddl.RecoverSchemaInfo) (err error) { + return nil +} + // DropView implements the DDL interface. func (d SchemaTracker) DropView(ctx sessionctx.Context, stmt *ast.DropTableStmt) (err error) { notExistTables := make([]string, 0, len(stmt.Tables)) @@ -347,6 +369,13 @@ func (d SchemaTracker) CreateIndex(ctx sessionctx.Context, stmt *ast.CreateIndex stmt.IndexPartSpecifications, stmt.IndexOption, stmt.IfNotExists) } +func (d SchemaTracker) putTableIfNoError(err error, dbName model.CIStr, tbInfo *model.TableInfo) { + if err != nil { + return + } + _ = d.PutTable(dbName, tbInfo) +} + // createIndex is shared by CreateIndex and AlterTable. func (d SchemaTracker) createIndex( ctx sessionctx.Context, @@ -356,12 +385,15 @@ func (d SchemaTracker) createIndex( indexPartSpecifications []*ast.IndexPartSpecification, indexOption *ast.IndexOption, ifNotExists bool, -) error { +) (err error) { unique := keyType == ast.IndexKeyTypeUnique - tblInfo, err := d.TableByName(ti.Schema, ti.Name) + tblInfo, err := d.TableClonedByName(ti.Schema, ti.Name) if err != nil { return err } + + defer d.putTableIfNoError(err, ti.Schema, tblInfo) + t := tables.MockTableFromMeta(tblInfo) // Deal with anonymous index. @@ -425,12 +457,14 @@ func (d SchemaTracker) DropIndex(ctx sessionctx.Context, stmt *ast.DropIndexStmt } // dropIndex is shared by DropIndex and AlterTable. -func (d SchemaTracker) dropIndex(ctx sessionctx.Context, ti ast.Ident, indexName model.CIStr, ifExists bool) error { - tblInfo, err := d.TableByName(ti.Schema, ti.Name) +func (d SchemaTracker) dropIndex(ctx sessionctx.Context, ti ast.Ident, indexName model.CIStr, ifExists bool) (err error) { + tblInfo, err := d.TableClonedByName(ti.Schema, ti.Name) if err != nil { return infoschema.ErrTableNotExists.GenWithStackByArgs(ti.Schema, ti.Name) } + defer d.putTableIfNoError(err, ti.Schema, tblInfo) + indexInfo := tblInfo.FindIndexByName(indexName.L) if indexInfo == nil { if ifExists { @@ -457,16 +491,19 @@ func (d SchemaTracker) dropIndex(ctx sessionctx.Context, ti ast.Ident, indexName } // addColumn is used by AlterTable. -func (d SchemaTracker) addColumn(ctx sessionctx.Context, ti ast.Ident, spec *ast.AlterTableSpec) error { +func (d SchemaTracker) addColumn(ctx sessionctx.Context, ti ast.Ident, spec *ast.AlterTableSpec) (err error) { specNewColumn := spec.NewColumns[0] schema := d.SchemaByName(ti.Schema) if schema == nil { return infoschema.ErrDatabaseNotExists.GenWithStackByArgs(ti.Schema) } - tblInfo, err := d.TableByName(ti.Schema, ti.Name) + tblInfo, err := d.TableClonedByName(ti.Schema, ti.Name) if err != nil { return err } + + defer d.putTableIfNoError(err, ti.Schema, tblInfo) + t := tables.MockTableFromMeta(tblInfo) colName := specNewColumn.Name.Name.O @@ -497,12 +534,14 @@ func (d SchemaTracker) addColumn(ctx sessionctx.Context, ti ast.Ident, spec *ast } // dropColumn is used by AlterTable. -func (d *SchemaTracker) dropColumn(ctx sessionctx.Context, ti ast.Ident, spec *ast.AlterTableSpec) error { - tblInfo, err := d.TableByName(ti.Schema, ti.Name) +func (d *SchemaTracker) dropColumn(ctx sessionctx.Context, ti ast.Ident, spec *ast.AlterTableSpec) (err error) { + tblInfo, err := d.TableClonedByName(ti.Schema, ti.Name) if err != nil { return err } + defer d.putTableIfNoError(err, ti.Schema, tblInfo) + colName := spec.OldColumnName.Name colInfo := tblInfo.FindPublicColumnByName(colName.L) if colInfo == nil { @@ -539,14 +578,17 @@ func (d *SchemaTracker) dropColumn(ctx sessionctx.Context, ti ast.Ident, spec *a } // renameColumn is used by AlterTable. -func (d SchemaTracker) renameColumn(ctx sessionctx.Context, ident ast.Ident, spec *ast.AlterTableSpec) error { +func (d SchemaTracker) renameColumn(ctx sessionctx.Context, ident ast.Ident, spec *ast.AlterTableSpec) (err error) { oldColName := spec.OldColumnName.Name newColName := spec.NewColumnName.Name - tblInfo, err := d.TableByName(ident.Schema, ident.Name) + tblInfo, err := d.TableClonedByName(ident.Schema, ident.Name) if err != nil { return err } + + defer d.putTableIfNoError(err, ident.Schema, tblInfo) + tbl := tables.MockTableFromMeta(tblInfo) oldCol := table.FindCol(tbl.VisibleCols(), oldColName.L) @@ -588,12 +630,15 @@ func (d SchemaTracker) renameColumn(ctx sessionctx.Context, ident ast.Ident, spe } // alterColumn is used by AlterTable. -func (d SchemaTracker) alterColumn(ctx sessionctx.Context, ident ast.Ident, spec *ast.AlterTableSpec) error { +func (d SchemaTracker) alterColumn(ctx sessionctx.Context, ident ast.Ident, spec *ast.AlterTableSpec) (err error) { specNewColumn := spec.NewColumns[0] - tblInfo, err := d.TableByName(ident.Schema, ident.Name) + tblInfo, err := d.TableClonedByName(ident.Schema, ident.Name) if err != nil { return err } + + defer d.putTableIfNoError(err, ident.Schema, tblInfo) + t := tables.MockTableFromMeta(tblInfo) colName := specNewColumn.Name.Name @@ -657,11 +702,14 @@ func (d SchemaTracker) handleModifyColumn( ident ast.Ident, originalColName model.CIStr, spec *ast.AlterTableSpec, -) error { - tblInfo, err := d.TableByName(ident.Schema, ident.Name) +) (err error) { + tblInfo, err := d.TableClonedByName(ident.Schema, ident.Name) if err != nil { return err } + + defer d.putTableIfNoError(err, ident.Schema, tblInfo) + schema := d.SchemaByName(ident.Schema) t := tables.MockTableFromMeta(tblInfo) job, err := ddl.GetModifiableColumnJob(ctx, sctx, nil, ident, originalColName, schema, t, spec) @@ -707,11 +755,14 @@ func (d SchemaTracker) handleModifyColumn( } // renameIndex is used by AlterTable. -func (d SchemaTracker) renameIndex(ctx sessionctx.Context, ident ast.Ident, spec *ast.AlterTableSpec) error { - tblInfo, err := d.TableByName(ident.Schema, ident.Name) +func (d SchemaTracker) renameIndex(ctx sessionctx.Context, ident ast.Ident, spec *ast.AlterTableSpec) (err error) { + tblInfo, err := d.TableClonedByName(ident.Schema, ident.Name) if err != nil { return err } + + defer d.putTableIfNoError(err, ident.Schema, tblInfo) + duplicate, err := ddl.ValidateRenameIndex(spec.FromKey, spec.ToKey, tblInfo) if duplicate { return nil @@ -725,12 +776,14 @@ func (d SchemaTracker) renameIndex(ctx sessionctx.Context, ident ast.Ident, spec } // addTablePartitions is used by AlterTable. -func (d SchemaTracker) addTablePartitions(ctx sessionctx.Context, ident ast.Ident, spec *ast.AlterTableSpec) error { - tblInfo, err := d.TableByName(ident.Schema, ident.Name) +func (d SchemaTracker) addTablePartitions(ctx sessionctx.Context, ident ast.Ident, spec *ast.AlterTableSpec) (err error) { + tblInfo, err := d.TableClonedByName(ident.Schema, ident.Name) if err != nil { return errors.Trace(err) } + defer d.putTableIfNoError(err, ident.Schema, tblInfo) + pi := tblInfo.GetPartitionInfo() if pi == nil { return errors.Trace(dbterror.ErrPartitionMgmtOnNonpartitioned) @@ -745,12 +798,14 @@ func (d SchemaTracker) addTablePartitions(ctx sessionctx.Context, ident ast.Iden } // dropTablePartitions is used by AlterTable. -func (d SchemaTracker) dropTablePartition(ctx sessionctx.Context, ident ast.Ident, spec *ast.AlterTableSpec) error { - tblInfo, err := d.TableByName(ident.Schema, ident.Name) +func (d SchemaTracker) dropTablePartitions(ctx sessionctx.Context, ident ast.Ident, spec *ast.AlterTableSpec) (err error) { + tblInfo, err := d.TableClonedByName(ident.Schema, ident.Name) if err != nil { return errors.Trace(err) } + defer d.putTableIfNoError(err, ident.Schema, tblInfo) + pi := tblInfo.GetPartitionInfo() if pi == nil { return errors.Trace(dbterror.ErrPartitionMgmtOnNonpartitioned) @@ -792,12 +847,14 @@ func (d SchemaTracker) createPrimaryKey( indexName model.CIStr, indexPartSpecifications []*ast.IndexPartSpecification, indexOption *ast.IndexOption, -) error { - tblInfo, err := d.TableByName(ti.Schema, ti.Name) +) (err error) { + tblInfo, err := d.TableClonedByName(ti.Schema, ti.Name) if err != nil { return errors.Trace(err) } + defer d.putTableIfNoError(err, ti.Schema, tblInfo) + indexName = model.NewCIStr(mysql.PrimaryKeyName) if indexInfo := tblInfo.FindIndexByName(indexName.L); indexInfo != nil || // If the table's PKIsHandle is true, it also means that this table has a primary key. @@ -881,7 +938,7 @@ func (d SchemaTracker) AlterTable(ctx context.Context, sctx sessionctx.Context, case ast.AlterTableRenameIndex: err = d.renameIndex(sctx, ident, spec) case ast.AlterTableDropPartition: - err = d.dropTablePartition(sctx, ident, spec) + err = d.dropTablePartitions(sctx, ident, spec) case ast.AlterTableAddConstraint: constr := spec.Constraint switch spec.Constraint.Tp { @@ -918,7 +975,9 @@ func (d SchemaTracker) AlterTable(ctx context.Context, sctx sessionctx.Context, case ast.TableOptionAutoIdCache: case ast.TableOptionAutoRandomBase: case ast.TableOptionComment: + tblInfo = tblInfo.Clone() tblInfo.Comment = opt.StrValue + _ = d.PutTable(ident.Schema, tblInfo) case ast.TableOptionCharset, ast.TableOptionCollate: // getCharsetAndCollateInTableOption will get the last charset and collate in the options, // so it should be handled only once. @@ -932,6 +991,7 @@ func (d SchemaTracker) AlterTable(ctx context.Context, sctx sessionctx.Context, } needsOverwriteCols := ddl.NeedToOverwriteColCharset(spec.Options) + tblInfo = tblInfo.Clone() if toCharset != "" { tblInfo.Charset = toCharset } @@ -950,6 +1010,7 @@ func (d SchemaTracker) AlterTable(ctx context.Context, sctx sessionctx.Context, } } } + _ = d.PutTable(ident.Schema, tblInfo) handledCharsetOrCollate = true case ast.TableOptionPlacementPolicy: @@ -963,11 +1024,13 @@ func (d SchemaTracker) AlterTable(ctx context.Context, sctx sessionctx.Context, } } case ast.AlterTableIndexInvisible: + tblInfo = tblInfo.Clone() idx := tblInfo.FindIndexByName(spec.IndexName.L) if idx == nil { return errors.Trace(infoschema.ErrKeyNotExists.GenWithStackByArgs(spec.IndexName.O, ident.Name)) } idx.Invisible = spec.Visibility == ast.IndexVisibilityInvisible + _ = d.PutTable(ident.Schema, tblInfo) case ast.AlterTablePartitionOptions, ast.AlterTableDropForeignKey, ast.AlterTableCoalescePartitions, @@ -1111,9 +1174,9 @@ func (SchemaTracker) AlterPlacementPolicy(ctx sessionctx.Context, stmt *ast.Alte } // BatchCreateTableWithInfo implements the DDL interface, it will call CreateTableWithInfo for each table. -func (d SchemaTracker) BatchCreateTableWithInfo(ctx sessionctx.Context, schema model.CIStr, info []*model.TableInfo, onExist ddl.OnExist) error { +func (d SchemaTracker) BatchCreateTableWithInfo(ctx sessionctx.Context, schema model.CIStr, info []*model.TableInfo, cs ...ddl.CreateTableWithInfoConfigurier) error { for _, tableInfo := range info { - if err := d.CreateTableWithInfo(ctx, schema, tableInfo, onExist); err != nil { + if err := d.CreateTableWithInfo(ctx, schema, tableInfo, cs...); err != nil { return err } } diff --git a/ddl/schematracker/dm_tracker_test.go b/ddl/schematracker/dm_tracker_test.go index 8cfd34cde0590..01998d3dc0134 100644 --- a/ddl/schematracker/dm_tracker_test.go +++ b/ddl/schematracker/dm_tracker_test.go @@ -98,6 +98,12 @@ func execAlter(t *testing.T, tracker schematracker.SchemaTracker, sql string) { require.NoError(t, err) } +func mustTableByName(t *testing.T, tracker schematracker.SchemaTracker, schema, table string) *model.TableInfo { + tblInfo, err := tracker.TableByName(model.NewCIStr(schema), model.NewCIStr(table)) + require.NoError(t, err) + return tblInfo +} + func TestAlterPK(t *testing.T) { sql := "create table test.t (c1 int primary key, c2 blob);" @@ -105,20 +111,24 @@ func TestAlterPK(t *testing.T) { tracker.CreateTestDB() execCreate(t, tracker, sql) - tblInfo, err := tracker.TableByName(model.NewCIStr("test"), model.NewCIStr("t")) - require.NoError(t, err) + tblInfo := mustTableByName(t, tracker, "test", "t") require.Equal(t, 1, len(tblInfo.Indices)) sql = "alter table test.t drop primary key;" execAlter(t, tracker, sql) + // TableInfo should be immutable. + require.Equal(t, 1, len(tblInfo.Indices)) + tblInfo = mustTableByName(t, tracker, "test", "t") require.Equal(t, 0, len(tblInfo.Indices)) sql = "alter table test.t add primary key(c1);" execAlter(t, tracker, sql) + tblInfo = mustTableByName(t, tracker, "test", "t") require.Equal(t, 1, len(tblInfo.Indices)) sql = "alter table test.t drop primary key;" execAlter(t, tracker, sql) + tblInfo = mustTableByName(t, tracker, "test", "t") require.Equal(t, 0, len(tblInfo.Indices)) } @@ -129,20 +139,22 @@ func TestDropColumn(t *testing.T) { tracker.CreateTestDB() execCreate(t, tracker, sql) - tblInfo, err := tracker.TableByName(model.NewCIStr("test"), model.NewCIStr("t")) - require.NoError(t, err) + tblInfo := mustTableByName(t, tracker, "test", "t") require.Equal(t, 1, len(tblInfo.Indices)) sql = "alter table test.t drop column b" execAlter(t, tracker, sql) + tblInfo = mustTableByName(t, tracker, "test", "t") require.Equal(t, 0, len(tblInfo.Indices)) sql = "alter table test.t add index idx_2_col(a, c)" execAlter(t, tracker, sql) + tblInfo = mustTableByName(t, tracker, "test", "t") require.Equal(t, 1, len(tblInfo.Indices)) sql = "alter table test.t drop column c" execAlter(t, tracker, sql) + tblInfo = mustTableByName(t, tracker, "test", "t") require.Equal(t, 1, len(tblInfo.Indices)) require.Equal(t, 1, len(tblInfo.Columns)) } @@ -172,8 +184,7 @@ func TestIndexLength(t *testing.T) { tracker.CreateTestDB() execCreate(t, tracker, sql) - tblInfo, err := tracker.TableByName(model.NewCIStr("test"), model.NewCIStr("t")) - require.NoError(t, err) + tblInfo := mustTableByName(t, tracker, "test", "t") expected := "CREATE TABLE `t` (\n" + " `a` text DEFAULT NULL,\n" + @@ -185,7 +196,7 @@ func TestIndexLength(t *testing.T) { ") ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin" checkShowCreateTable(t, tblInfo, expected) - err = tracker.DeleteTable(model.NewCIStr("test"), model.NewCIStr("t")) + err := tracker.DeleteTable(model.NewCIStr("test"), model.NewCIStr("t")) require.NoError(t, err) sql = "create table test.t(a text, b text charset ascii, c blob);" @@ -198,9 +209,7 @@ func TestIndexLength(t *testing.T) { sql = "alter table test.t add index (c(3072))" execAlter(t, tracker, sql) - tblInfo, err = tracker.TableByName(model.NewCIStr("test"), model.NewCIStr("t")) - require.NoError(t, err) - + tblInfo = mustTableByName(t, tracker, "test", "t") checkShowCreateTable(t, tblInfo, expected) } @@ -225,8 +234,7 @@ func TestIssue5092(t *testing.T) { sql = "alter table test.t add column b2 int after b1, add column c2 int first" execAlter(t, tracker, sql) - tblInfo, err := tracker.TableByName(model.NewCIStr("test"), model.NewCIStr("t")) - require.NoError(t, err) + tblInfo := mustTableByName(t, tracker, "test", "t") expected := "CREATE TABLE `t` (\n" + " `c2` int(11) DEFAULT NULL,\n" + @@ -303,8 +311,7 @@ func TestAddExpressionIndex(t *testing.T) { sql = "alter table test.t add index idx_multi((a+b),(a+1), b);" execAlter(t, tracker, sql) - tblInfo, err := tracker.TableByName(model.NewCIStr("test"), model.NewCIStr("t")) - require.NoError(t, err) + tblInfo := mustTableByName(t, tracker, "test", "t") expected := "CREATE TABLE `t` (\n" + " `a` int(11) DEFAULT NULL,\n" + @@ -319,6 +326,8 @@ func TestAddExpressionIndex(t *testing.T) { sql = "alter table test.t drop index idx_multi;" execAlter(t, tracker, sql) + tblInfo = mustTableByName(t, tracker, "test", "t") + expected = "CREATE TABLE `t` (\n" + " `a` int(11) DEFAULT NULL,\n" + " `b` double DEFAULT NULL\n" + @@ -330,8 +339,7 @@ func TestAddExpressionIndex(t *testing.T) { sql = "alter table test.t2 add unique index ei_ab ((concat(a, b)));" execAlter(t, tracker, sql) - tblInfo, err = tracker.TableByName(model.NewCIStr("test"), model.NewCIStr("t2")) - require.NoError(t, err) + tblInfo = mustTableByName(t, tracker, "test", "t2") expected = "CREATE TABLE `t2` (\n" + " `a` varchar(10) DEFAULT NULL,\n" + @@ -343,6 +351,8 @@ func TestAddExpressionIndex(t *testing.T) { sql = "alter table test.t2 alter index ei_ab invisible;" execAlter(t, tracker, sql) + tblInfo = mustTableByName(t, tracker, "test", "t2") + expected = "CREATE TABLE `t2` (\n" + " `a` varchar(10) DEFAULT NULL,\n" + " `b` varchar(10) DEFAULT NULL,\n" + @@ -353,8 +363,7 @@ func TestAddExpressionIndex(t *testing.T) { sql = "create table test.t3(a int, key((a+1)), key((a+2)), key idx((a+3)), key((a+4)), UNIQUE KEY ((a * 2)));" execCreate(t, tracker, sql) - tblInfo, err = tracker.TableByName(model.NewCIStr("test"), model.NewCIStr("t3")) - require.NoError(t, err) + tblInfo = mustTableByName(t, tracker, "test", "t3") expected = "CREATE TABLE `t3` (\n" + " `a` int(11) DEFAULT NULL,\n" + @@ -381,8 +390,7 @@ func TestAddExpressionIndex(t *testing.T) { sql = "alter table test.t4 add index idx((a+c));" execAlter(t, tracker, sql) - tblInfo, err = tracker.TableByName(model.NewCIStr("test"), model.NewCIStr("t4")) - require.NoError(t, err) + tblInfo = mustTableByName(t, tracker, "test", "t4") expected = "CREATE TABLE `t4` (\n" + " `a` int(11) DEFAULT NULL,\n" + @@ -408,8 +416,7 @@ func TestAtomicMultiSchemaChange(t *testing.T) { sql = "alter table test.t add b int, add c int;" execAlter(t, tracker, sql) - tblInfo, err := tracker.TableByName(model.NewCIStr("test"), model.NewCIStr("t")) - require.NoError(t, err) + tblInfo := mustTableByName(t, tracker, "test", "t") require.Len(t, tblInfo.Columns, 3) sql = "alter table test.t add d int, add a int;" @@ -422,11 +429,45 @@ func TestAtomicMultiSchemaChange(t *testing.T) { err = tracker.AlterTable(ctx, sctx, stmt.(*ast.AlterTableStmt)) require.True(t, infoschema.ErrColumnExists.Equal(err)) - tblInfo, err = tracker.TableByName(model.NewCIStr("test"), model.NewCIStr("t")) - require.NoError(t, err) + tblInfo = mustTableByName(t, tracker, "test", "t") require.Len(t, tblInfo.Columns, 3) } +func TestImmutableTableInfo(t *testing.T) { + sql := "create table test.t (a varchar(20)) charset latin1;" + + tracker := schematracker.NewSchemaTracker(2) + tracker.CreateTestDB() + execCreate(t, tracker, sql) + + tblInfo := mustTableByName(t, tracker, "test", "t") + require.Equal(t, "", tblInfo.Comment) + + sql = "alter table test.t comment = '123';" + execAlter(t, tracker, sql) + require.Equal(t, "", tblInfo.Comment) + + tblInfo = mustTableByName(t, tracker, "test", "t") + require.Equal(t, "123", tblInfo.Comment) + + require.Equal(t, "latin1", tblInfo.Charset) + require.Equal(t, "latin1_bin", tblInfo.Collate) + require.Equal(t, "latin1", tblInfo.Columns[0].GetCharset()) + require.Equal(t, "latin1_bin", tblInfo.Columns[0].GetCollate()) + + sql = "alter table test.t convert to character set utf8mb4 collate utf8mb4_general_ci;" + execAlter(t, tracker, sql) + require.Equal(t, "latin1", tblInfo.Charset) + require.Equal(t, "latin1_bin", tblInfo.Collate) + require.Equal(t, "latin1", tblInfo.Columns[0].GetCharset()) + require.Equal(t, "latin1_bin", tblInfo.Columns[0].GetCollate()) + tblInfo = mustTableByName(t, tracker, "test", "t") + require.Equal(t, "utf8mb4", tblInfo.Charset) + require.Equal(t, "utf8mb4_general_ci", tblInfo.Collate) + require.Equal(t, "utf8mb4", tblInfo.Columns[0].GetCharset()) + require.Equal(t, "utf8mb4_general_ci", tblInfo.Columns[0].GetCollate()) +} + var _ sqlexec.RestrictedSQLExecutor = (*mockRestrictedSQLExecutor)(nil) type mockRestrictedSQLExecutor struct { @@ -462,7 +503,6 @@ func TestModifyFromNullToNotNull(t *testing.T) { err = tracker.AlterTable(ctx, executorCtx, stmt.(*ast.AlterTableStmt)) require.NoError(t, err) - tblInfo, err := tracker.TableByName(model.NewCIStr("test"), model.NewCIStr("t")) - require.NoError(t, err) + tblInfo := mustTableByName(t, tracker, "test", "t") require.Len(t, tblInfo.Columns, 2) } diff --git a/ddl/schematracker/info_store.go b/ddl/schematracker/info_store.go index 6c0739d960b3c..d6bb970591c8b 100644 --- a/ddl/schematracker/info_store.go +++ b/ddl/schematracker/info_store.go @@ -88,6 +88,15 @@ func (i *InfoStore) TableByName(schema, table model.CIStr) (*model.TableInfo, er return tbl, nil } +// TableClonedByName is like TableByName, plus it will clone the TableInfo. +func (i *InfoStore) TableClonedByName(schema, table model.CIStr) (*model.TableInfo, error) { + tbl, err := i.TableByName(schema, table) + if err != nil { + return nil, err + } + return tbl.Clone(), nil +} + // PutTable puts a TableInfo, it will overwrite the old one. If the schema doesn't exist, it will return ErrDatabaseNotExists. func (i *InfoStore) PutTable(schemaName model.CIStr, tblInfo *model.TableInfo) error { schemaKey := i.ciStr2Key(schemaName) diff --git a/ddl/serial_test.go b/ddl/serial_test.go index fc74d0400e0f6..d99036ed4dc51 100644 --- a/ddl/serial_test.go +++ b/ddl/serial_test.go @@ -824,8 +824,11 @@ func TestAutoRandom(t *testing.T) { require.EqualError(t, err, dbterror.ErrInvalidAutoRandom.GenWithStackByArgs(fmt.Sprintf(errMsg, args...)).Error()) } - assertPKIsNotHandle := func(sql, errCol string) { - assertInvalidAutoRandomErr(sql, autoid.AutoRandomPKisNotHandleErrMsg, errCol) + assertNotFirstColPK := func(sql, errCol string) { + assertInvalidAutoRandomErr(sql, autoid.AutoRandomMustFirstColumnInPK, errCol) + } + assertNoClusteredPK := func(sql string) { + assertInvalidAutoRandomErr(sql, autoid.AutoRandomNoClusteredPKErrMsg) } assertAlterValue := func(sql string) { assertInvalidAutoRandomErr(sql, autoid.AutoRandomAlterErrMsg) @@ -868,36 +871,36 @@ func TestAutoRandom(t *testing.T) { tk.MustExec("drop table t") } - // Only bigint column can set auto_random + // Only bigint column can set auto_random. assertBigIntOnly("create table t (a char primary key auto_random(3), b int)", "char") assertBigIntOnly("create table t (a varchar(255) primary key auto_random(3), b int)", "varchar") assertBigIntOnly("create table t (a timestamp primary key auto_random(3), b int)", "timestamp") + assertBigIntOnly("create table t (a timestamp auto_random(3), b int, primary key (a, b) clustered)", "timestamp") - // PKIsHandle, but auto_random is defined on non-primary key. - assertPKIsNotHandle("create table t (a bigint auto_random (3) primary key, b bigint auto_random (3))", "b") - assertPKIsNotHandle("create table t (a bigint auto_random (3), b bigint auto_random(3), primary key(a))", "b") - assertPKIsNotHandle("create table t (a bigint auto_random (3), b bigint auto_random(3) primary key)", "a") + // Clustered, but auto_random is defined on non-primary key. + assertNotFirstColPK("create table t (a bigint auto_random (3) primary key, b bigint auto_random (3))", "b") + assertNotFirstColPK("create table t (a bigint auto_random (3), b bigint auto_random(3), primary key(a))", "b") + assertNotFirstColPK("create table t (a bigint auto_random (3), b bigint auto_random(3) primary key)", "a") + assertNotFirstColPK("create table t (a bigint auto_random, b bigint, primary key (b, a) clustered);", "a") - // PKIsNotHandle: no primary key. - assertPKIsNotHandle("create table t (a bigint auto_random(3), b int)", "a") - // PKIsNotHandle: primary key is not a single column. - assertPKIsNotHandle("create table t (a bigint auto_random(3), b bigint, primary key (a, b))", "a") - assertPKIsNotHandle("create table t (a bigint auto_random(3), b int, c char, primary key (a, c))", "a") + // No primary key. + assertNoClusteredPK("create table t (a bigint auto_random(3), b int)") - // PKIsNotHandle: nonclustered integer primary key. - assertPKIsNotHandle("create table t (a bigint auto_random(3) primary key nonclustered, b int)", "a") - assertPKIsNotHandle("create table t (a bigint auto_random(3) primary key nonclustered, b int)", "a") - assertPKIsNotHandle("create table t (a int, b bigint auto_random(3) primary key nonclustered)", "b") + // No clustered primary key. + assertNoClusteredPK("create table t (a bigint auto_random(3) primary key nonclustered, b int)") + assertNoClusteredPK("create table t (a int, b bigint auto_random(3) primary key nonclustered)") // Can not set auto_random along with auto_increment. assertWithAutoInc("create table t (a bigint auto_random(3) primary key auto_increment)") assertWithAutoInc("create table t (a bigint primary key auto_increment auto_random(3))") assertWithAutoInc("create table t (a bigint auto_increment primary key auto_random(3))") assertWithAutoInc("create table t (a bigint auto_random(3) auto_increment, primary key (a))") + assertWithAutoInc("create table t (a bigint auto_random(3) auto_increment, b int, primary key (a, b) clustered)") // Can not set auto_random along with default. assertDefault("create table t (a bigint auto_random primary key default 3)") assertDefault("create table t (a bigint auto_random(2) primary key default 5)") + assertDefault("create table t (a bigint auto_random(2) default 5, b int, primary key (a, b) clustered)") mustExecAndDrop("create table t (a bigint auto_random primary key)", func() { assertDefault("alter table t modify column a bigint auto_random default 3") assertDefault("alter table t alter column a set default 3") @@ -906,12 +909,14 @@ func TestAutoRandom(t *testing.T) { // Overflow data type max length. assertMaxOverflow("create table t (a bigint auto_random(64) primary key)", "a", 64) assertMaxOverflow("create table t (a bigint auto_random(16) primary key)", "a", 16) + assertMaxOverflow("create table t (a bigint auto_random(16), b int, primary key (a, b) clustered)", "a", 16) mustExecAndDrop("create table t (a bigint auto_random(5) primary key)", func() { assertMaxOverflow("alter table t modify a bigint auto_random(64)", "a", 64) assertMaxOverflow("alter table t modify a bigint auto_random(16)", "a", 16) }) assertNonPositive("create table t (a bigint auto_random(0) primary key)") + assertNonPositive("create table t (a bigint auto_random(0), b int, primary key (a, b) clustered)") tk.MustGetErrMsg("create table t (a bigint auto_random(-1) primary key)", `[parser:1064]You have an error in your SQL syntax; check the manual that corresponds to your TiDB version for the right syntax to use line 1 column 38 near "-1) primary key)" `) @@ -921,6 +926,8 @@ func TestAutoRandom(t *testing.T) { mustExecAndDrop("create table t (a bigint auto_random(15) primary key)") mustExecAndDrop("create table t (a bigint primary key auto_random(4))") mustExecAndDrop("create table t (a bigint auto_random(4), primary key (a))") + mustExecAndDrop("create table t (a bigint auto_random(3), b bigint, primary key (a, b) clustered)") + mustExecAndDrop("create table t (a bigint auto_random(3), b int, c char, primary key (a, c) clustered)") // Increase auto_random bits. mustExecAndDrop("create table t (a bigint auto_random(5) primary key)", func() { @@ -928,11 +935,17 @@ func TestAutoRandom(t *testing.T) { tk.MustExec("alter table t modify a bigint auto_random(10)") tk.MustExec("alter table t modify a bigint auto_random(12)") }) + mustExecAndDrop("create table t (a bigint auto_random(5), b char(255), primary key (a, b) clustered)", func() { + tk.MustExec("alter table t modify a bigint auto_random(8)") + tk.MustExec("alter table t modify a bigint auto_random(10)") + tk.MustExec("alter table t modify a bigint auto_random(12)") + }) // Auto_random can occur multiple times like other column attributes. mustExecAndDrop("create table t (a bigint auto_random(3) auto_random(2) primary key)") mustExecAndDrop("create table t (a bigint, b bigint auto_random(3) primary key auto_random(2))") mustExecAndDrop("create table t (a bigint auto_random(1) auto_random(2) auto_random(3), primary key (a))") + mustExecAndDrop("create table t (a bigint auto_random(1) auto_random(2) auto_random(3), b int, primary key (a, b) clustered)") // Add/drop the auto_random attribute is not allowed. mustExecAndDrop("create table t (a bigint auto_random(3) primary key)", func() { @@ -943,6 +956,10 @@ func TestAutoRandom(t *testing.T) { assertAlterValue("alter table t modify column c bigint") assertAlterValue("alter table t change column c d bigint") }) + mustExecAndDrop("create table t (a bigint, b char, c bigint auto_random(3), primary key(c, a) clustered)", func() { + assertAlterValue("alter table t modify column c bigint") + assertAlterValue("alter table t change column c d bigint") + }) mustExecAndDrop("create table t (a bigint primary key)", func() { assertOnlyChangeFromAutoIncPK("alter table t modify column a bigint auto_random(3)") }) @@ -970,6 +987,9 @@ func TestAutoRandom(t *testing.T) { mustExecAndDrop("create table t (a bigint auto_random(10) primary key)", func() { assertDecreaseBitErr("alter table t modify column a bigint auto_random(1)") }) + mustExecAndDrop("create table t (a bigint auto_random(10), b int, primary key (a, b) clustered)", func() { + assertDecreaseBitErr("alter table t modify column a bigint auto_random(6)") + }) originStep := autoid.GetStep() autoid.SetStep(1) diff --git a/ddl/split_region.go b/ddl/split_region.go index 465e18ddc719d..b201bf65538f3 100644 --- a/ddl/split_region.go +++ b/ddl/split_region.go @@ -42,11 +42,11 @@ func splitPartitionTableRegion(ctx sessionctx.Context, store kv.SplittableStore, } } else { for _, def := range pi.Definitions { - regionIDs = append(regionIDs, splitRecordRegion(ctxWithTimeout, store, def.ID, scatter)) + regionIDs = append(regionIDs, SplitRecordRegion(ctxWithTimeout, store, def.ID, scatter)) } } if scatter { - waitScatterRegionFinish(ctxWithTimeout, store, regionIDs...) + WaitScatterRegionFinish(ctxWithTimeout, store, regionIDs...) } } @@ -58,10 +58,10 @@ func splitTableRegion(ctx sessionctx.Context, store kv.SplittableStore, tbInfo * if shardingBits(tbInfo) > 0 && tbInfo.PreSplitRegions > 0 { regionIDs = preSplitPhysicalTableByShardRowID(ctxWithTimeout, store, tbInfo, tbInfo.ID, scatter) } else { - regionIDs = append(regionIDs, splitRecordRegion(ctxWithTimeout, store, tbInfo.ID, scatter)) + regionIDs = append(regionIDs, SplitRecordRegion(ctxWithTimeout, store, tbInfo.ID, scatter)) } if scatter { - waitScatterRegionFinish(ctxWithTimeout, store, regionIDs...) + WaitScatterRegionFinish(ctxWithTimeout, store, regionIDs...) } } @@ -117,7 +117,8 @@ func preSplitPhysicalTableByShardRowID(ctx context.Context, store kv.SplittableS return regionIDs } -func splitRecordRegion(ctx context.Context, store kv.SplittableStore, tableID int64, scatter bool) uint64 { +// SplitRecordRegion is to split region in store by table prefix. +func SplitRecordRegion(ctx context.Context, store kv.SplittableStore, tableID int64, scatter bool) uint64 { tableStartKey := tablecodec.GenTablePrefix(tableID) regionIDs, err := store.SplitRegions(ctx, [][]byte{tableStartKey}, scatter, &tableID) if err != nil { @@ -144,7 +145,8 @@ func splitIndexRegion(store kv.SplittableStore, tblInfo *model.TableInfo, scatte return regionIDs } -func waitScatterRegionFinish(ctx context.Context, store kv.SplittableStore, regionIDs ...uint64) { +// WaitScatterRegionFinish will block until all regions are scattered. +func WaitScatterRegionFinish(ctx context.Context, store kv.SplittableStore, regionIDs ...uint64) { for _, regionID := range regionIDs { err := store.WaitScatterRegionFinish(ctx, regionID, 0) if err != nil { diff --git a/ddl/syncer/syncer.go b/ddl/syncer/syncer.go index b2285351f83ae..ff7eaaa446893 100644 --- a/ddl/syncer/syncer.go +++ b/ddl/syncer/syncer.go @@ -262,7 +262,7 @@ func (s *schemaVersionSyncer) OwnerCheckAllVersions(ctx context.Context, jobID i // If MDL is enabled, updatedMap is used to check if all the servers report the least version. // updatedMap is initialed to record all the server in every loop. We delete a server from the map if it gets the metadata lock(the key version equal the given version. // updatedMap should be empty if all the servers get the metadata lock. - updatedMap := make(map[string]struct{}) + updatedMap := make(map[string]string) for { if util.IsContextDone(ctx) { // ctx is canceled or timeout. @@ -278,9 +278,23 @@ func (s *schemaVersionSyncer) OwnerCheckAllVersions(ctx context.Context, jobID i if err != nil { return err } - updatedMap = make(map[string]struct{}) + updatedMap = make(map[string]string) + instance2id := make(map[string]string) + + // Set updatedMap according to the serverInfos, and remove some invalid serverInfos. for _, info := range serverInfos { - updatedMap[info.ID] = struct{}{} + instance := fmt.Sprintf("%s:%d", info.IP, info.Port) + if id, ok := instance2id[instance]; ok { + if info.StartTimestamp > serverInfos[id].StartTimestamp { + // Replace it. + delete(updatedMap, id) + updatedMap[info.ID] = fmt.Sprintf("instance ip %s, port %d, id %s", info.IP, info.Port, info.ID) + instance2id[instance] = info.ID + } + } else { + updatedMap[info.ID] = fmt.Sprintf("instance ip %s, port %d, id %s", info.IP, info.Port, info.ID) + instance2id[instance] = info.ID + } } } @@ -315,6 +329,9 @@ func (s *schemaVersionSyncer) OwnerCheckAllVersions(ctx context.Context, jobID i } if len(updatedMap) > 0 { succ = false + for _, info := range updatedMap { + logutil.BgLogger().Info("[ddl] syncer check all versions, someone is not synced", zap.String("info", info), zap.Any("ddl id", jobID), zap.Any("ver", latestVer)) + } } } else { for _, kv := range resp.Kvs { @@ -337,7 +354,7 @@ func (s *schemaVersionSyncer) OwnerCheckAllVersions(ctx context.Context, jobID i notMatchVerCnt++ break } - updatedMap[string(kv.Key)] = struct{}{} + updatedMap[string(kv.Key)] = "" } } diff --git a/ddl/table.go b/ddl/table.go index 001f5e26702ee..df329fd973c06 100644 --- a/ddl/table.go +++ b/ddl/table.go @@ -372,7 +372,7 @@ func onDropTableOrView(d *ddlCtx, t *meta.Meta, job *model.Job) (ver int64, _ er } } if tblInfo.TiFlashReplica != nil { - e := infosync.DeleteTiFlashTableSyncProgress(tblInfo.ID) + e := infosync.DeleteTiFlashTableSyncProgress(tblInfo) if e != nil { logutil.BgLogger().Error("DeleteTiFlashTableSyncProgress fails", zap.Error(e)) } @@ -391,25 +391,19 @@ func onDropTableOrView(d *ddlCtx, t *meta.Meta, job *model.Job) (ver int64, _ er return ver, errors.Trace(err) } -const ( - recoverTableCheckFlagNone int64 = iota - recoverTableCheckFlagEnableGC - recoverTableCheckFlagDisableGC -) - func (w *worker) onRecoverTable(d *ddlCtx, t *meta.Meta, job *model.Job) (ver int64, err error) { - schemaID := job.SchemaID - tblInfo := &model.TableInfo{} - var autoIncID, autoRandID, dropJobID, recoverTableCheckFlag int64 - var snapshotTS uint64 - var oldTableName, oldSchemaName string - const checkFlagIndexInJobArgs = 4 // The index of `recoverTableCheckFlag` in job arg list. - if err = job.DecodeArgs(tblInfo, &autoIncID, &dropJobID, &snapshotTS, &recoverTableCheckFlag, &autoRandID, &oldSchemaName, &oldTableName); err != nil { + var ( + recoverInfo *RecoverInfo + recoverTableCheckFlag int64 + ) + if err = job.DecodeArgs(&recoverInfo, &recoverTableCheckFlag); err != nil { // Invalid arguments, cancel this job. job.State = model.JobStateCancelled return ver, errors.Trace(err) } + schemaID := recoverInfo.SchemaID + tblInfo := recoverInfo.TableInfo // check GC and safe point gcEnable, err := checkGCEnable(w) if err != nil { @@ -454,9 +448,9 @@ func (w *worker) onRecoverTable(d *ddlCtx, t *meta.Meta, job *model.Job) (ver in // none -> write only // check GC enable and update flag. if gcEnable { - job.Args[checkFlagIndexInJobArgs] = recoverTableCheckFlagEnableGC + job.Args[checkFlagIndexInJobArgs] = recoverCheckFlagEnableGC } else { - job.Args[checkFlagIndexInJobArgs] = recoverTableCheckFlagDisableGC + job.Args[checkFlagIndexInJobArgs] = recoverCheckFlagDisableGC } // Clear all placement when recover @@ -479,56 +473,22 @@ func (w *worker) onRecoverTable(d *ddlCtx, t *meta.Meta, job *model.Job) (ver in } } // check GC safe point - err = checkSafePoint(w, snapshotTS) + err = checkSafePoint(w, recoverInfo.SnapshotTS) if err != nil { job.State = model.JobStateCancelled return ver, errors.Trace(err) } - // Remove dropped table DDL job from gc_delete_range table. - var tids []int64 - if tblInfo.GetPartitionInfo() != nil { - tids = getPartitionIDs(tblInfo) - } else { - tids = []int64{tblInfo.ID} - } - - tableRuleID, partRuleIDs, oldRuleIDs, oldRules, err := getOldLabelRules(tblInfo, oldSchemaName, oldTableName) - if err != nil { - job.State = model.JobStateCancelled - return ver, errors.Wrapf(err, "failed to get old label rules from PD") - } - - err = w.delRangeManager.removeFromGCDeleteRange(w.ctx, dropJobID) + ver, err = w.recoverTable(t, job, recoverInfo) if err != nil { return ver, errors.Trace(err) } - tableInfo := tblInfo.Clone() tableInfo.State = model.StatePublic tableInfo.UpdateTS = t.StartTS - err = t.CreateTableAndSetAutoID(schemaID, tableInfo, autoIncID, autoRandID) - if err != nil { - return ver, errors.Trace(err) - } - - failpoint.Inject("mockRecoverTableCommitErr", func(val failpoint.Value) { - if val.(bool) && atomic.CompareAndSwapUint32(&mockRecoverTableCommitErrOnce, 0, 1) { - _ = failpoint.Enable(`tikvclient/mockCommitErrorOpt`, "return(true)") - } - }) - - err = updateLabelRules(job, tblInfo, oldRules, tableRuleID, partRuleIDs, oldRuleIDs, tblInfo.ID) - if err != nil { - job.State = model.JobStateCancelled - return ver, errors.Wrapf(err, "failed to update the label rule to PD") - } - - job.CtxVars = []interface{}{tids} ver, err = updateVersionAndTableInfo(d, t, job, tableInfo, true) if err != nil { return ver, errors.Trace(err) } - tblInfo.State = model.StatePublic tblInfo.UpdateTS = t.StartTS // Finish this job. @@ -539,6 +499,47 @@ func (w *worker) onRecoverTable(d *ddlCtx, t *meta.Meta, job *model.Job) (ver in return ver, nil } +func (w *worker) recoverTable(t *meta.Meta, job *model.Job, recoverInfo *RecoverInfo) (ver int64, err error) { + var tids []int64 + if recoverInfo.TableInfo.GetPartitionInfo() != nil { + tids = getPartitionIDs(recoverInfo.TableInfo) + tids = append(tids, recoverInfo.TableInfo.ID) + } else { + tids = []int64{recoverInfo.TableInfo.ID} + } + tableRuleID, partRuleIDs, oldRuleIDs, oldRules, err := getOldLabelRules(recoverInfo.TableInfo, recoverInfo.OldSchemaName, recoverInfo.OldTableName) + if err != nil { + job.State = model.JobStateCancelled + return ver, errors.Wrapf(err, "failed to get old label rules from PD") + } + // Remove dropped table DDL job from gc_delete_range table. + err = w.delRangeManager.removeFromGCDeleteRange(w.ctx, recoverInfo.DropJobID) + if err != nil { + return ver, errors.Trace(err) + } + tableInfo := recoverInfo.TableInfo.Clone() + tableInfo.State = model.StatePublic + tableInfo.UpdateTS = t.StartTS + err = t.CreateTableAndSetAutoID(recoverInfo.SchemaID, tableInfo, recoverInfo.AutoIDs.RowID, recoverInfo.AutoIDs.RandomID) + if err != nil { + return ver, errors.Trace(err) + } + + failpoint.Inject("mockRecoverTableCommitErr", func(val failpoint.Value) { + if val.(bool) && atomic.CompareAndSwapUint32(&mockRecoverTableCommitErrOnce, 0, 1) { + err = failpoint.Enable(`tikvclient/mockCommitErrorOpt`, "return(true)") + } + }) + + err = updateLabelRules(job, recoverInfo.TableInfo, oldRules, tableRuleID, partRuleIDs, oldRuleIDs, recoverInfo.TableInfo.ID) + if err != nil { + job.State = model.JobStateCancelled + return ver, errors.Wrapf(err, "failed to update the label rule to PD") + } + job.CtxVars = []interface{}{tids} + return ver, nil +} + func clearTablePlacementAndBundles(tblInfo *model.TableInfo) error { var bundles []*placement.Bundle if tblInfo.PlacementPolicyRef != nil { @@ -708,6 +709,14 @@ func onTruncateTable(d *ddlCtx, t *meta.Meta, job *model.Job) (ver int64, _ erro } }) + // Clear the TiFlash replica progress from ETCD. + if tblInfo.TiFlashReplica != nil { + e := infosync.DeleteTiFlashTableSyncProgress(tblInfo) + if e != nil { + logutil.BgLogger().Error("DeleteTiFlashTableSyncProgress fails", zap.Error(e)) + } + } + var oldPartitionIDs []int64 if tblInfo.GetPartitionInfo() != nil { oldPartitionIDs = getPartitionIDs(tblInfo) @@ -747,10 +756,6 @@ func onTruncateTable(d *ddlCtx, t *meta.Meta, job *model.Job) (ver int64, _ erro // Clear the TiFlash replica available status. if tblInfo.TiFlashReplica != nil { - e := infosync.DeleteTiFlashTableSyncProgress(tblInfo.ID) - if e != nil { - logutil.BgLogger().Error("DeleteTiFlashTableSyncProgress fails", zap.Error(e)) - } // Set PD rules for TiFlash if pi := tblInfo.GetPartitionInfo(); pi != nil { if e := infosync.ConfigureTiFlashPDForPartitions(true, &pi.Definitions, tblInfo.TiFlashReplica.Count, &tblInfo.TiFlashReplica.LocationLabels, tblInfo.ID); e != nil { @@ -1270,6 +1275,12 @@ func (w *worker) onSetTableFlashReplica(d *ddlCtx, t *meta.Meta, job *model.Job) Available: available, } } else { + if tblInfo.TiFlashReplica != nil { + err = infosync.DeleteTiFlashTableSyncProgress(tblInfo) + if err != nil { + logutil.BgLogger().Error("DeleteTiFlashTableSyncProgress fails", zap.Error(err)) + } + } tblInfo.TiFlashReplica = nil } diff --git a/ddl/tiflash_replica_test.go b/ddl/tiflash_replica_test.go index d43cc0947b24f..874ab05359d3b 100644 --- a/ddl/tiflash_replica_test.go +++ b/ddl/tiflash_replica_test.go @@ -18,12 +18,14 @@ import ( "context" "fmt" "math" + "net" "strings" "sync" "testing" "time" "github.com/pingcap/failpoint" + "github.com/pingcap/tidb/config" "github.com/pingcap/tidb/ddl" "github.com/pingcap/tidb/domain" "github.com/pingcap/tidb/errno" @@ -31,10 +33,13 @@ import ( "github.com/pingcap/tidb/parser/auth" "github.com/pingcap/tidb/parser/model" "github.com/pingcap/tidb/parser/terror" + "github.com/pingcap/tidb/server" "github.com/pingcap/tidb/tablecodec" "github.com/pingcap/tidb/testkit" "github.com/pingcap/tidb/testkit/external" + "github.com/pingcap/tidb/util" "github.com/stretchr/testify/require" + "google.golang.org/grpc" ) const tiflashReplicaLease = 600 * time.Millisecond @@ -138,6 +143,44 @@ func TestSetTableFlashReplica(t *testing.T) { tk.MustGetErrMsg("alter table t_flash set tiflash replica 2 location labels 'a','b';", "the tiflash replica count: 2 should be less than the total tiflash server count: 0") } +// setUpRPCService setup grpc server to handle cop request for test. +func setUpRPCService(t *testing.T, addr string, dom *domain.Domain, sm util.SessionManager) (*grpc.Server, string) { + lis, err := net.Listen("tcp", addr) + require.NoError(t, err) + srv := server.NewRPCServer(config.GetGlobalConfig(), dom, sm) + port := lis.Addr().(*net.TCPAddr).Port + addr = fmt.Sprintf("127.0.0.1:%d", port) + go func() { + err = srv.Serve(lis) + require.NoError(t, err) + }() + config.UpdateGlobal(func(conf *config.Config) { + conf.Status.StatusPort = uint(port) + }) + return srv, addr +} + +func TestInfoSchemaForTiFlashReplica(t *testing.T) { + require.NoError(t, failpoint.Enable("github.com/pingcap/tidb/infoschema/mockTiFlashStoreCount", `return(true)`)) + defer func() { + require.NoError(t, failpoint.Disable("github.com/pingcap/tidb/infoschema/mockTiFlashStoreCount")) + }() + + store := testkit.CreateMockStore(t) + tk := testkit.NewTestKit(t, store) + rpcserver, _ := setUpRPCService(t, "127.0.0.1:0", domain.GetDomain(tk.Session()), nil) + defer rpcserver.Stop() + tk.MustExec("use test") + tk.MustExec("drop table if exists t") + tk.MustExec("create table t (a int, b int, index idx(a))") + tk.MustExec("alter table t set tiflash replica 2 location labels 'a','b';") + tk.MustQuery("select TABLE_SCHEMA,TABLE_NAME,REPLICA_COUNT,LOCATION_LABELS,AVAILABLE,PROGRESS from information_schema.tiflash_replica").Check(testkit.Rows("test t 2 a,b 0 0")) + tbl, err := domain.GetDomain(tk.Session()).InfoSchema().TableByName(model.NewCIStr("test"), model.NewCIStr("t")) + require.NoError(t, err) + tbl.Meta().TiFlashReplica.Available = true + tk.MustQuery("select TABLE_SCHEMA,TABLE_NAME,REPLICA_COUNT,LOCATION_LABELS,AVAILABLE,PROGRESS from information_schema.tiflash_replica").Check(testkit.Rows("test t 2 a,b 1 0")) +} + func TestSetTiFlashReplicaForTemporaryTable(t *testing.T) { // test for tiflash replica require.NoError(t, failpoint.Enable("github.com/pingcap/tidb/infoschema/mockTiFlashStoreCount", `return(true)`)) @@ -146,8 +189,9 @@ func TestSetTiFlashReplicaForTemporaryTable(t *testing.T) { }() store := testkit.CreateMockStoreWithSchemaLease(t, tiflashReplicaLease) - tk := testkit.NewTestKit(t, store) + rpcserver, _ := setUpRPCService(t, "127.0.0.1:0", domain.GetDomain(tk.Session()), nil) + defer rpcserver.Stop() tk.MustExec("use test") tk.MustExec("create global temporary table temp(id int) on commit delete rows") tk.MustExec("create temporary table temp2(id int)") diff --git a/ddl/util/main_test.go b/ddl/util/main_test.go index a28cdcb4b5bfc..ae8004db124ba 100644 --- a/ddl/util/main_test.go +++ b/ddl/util/main_test.go @@ -25,6 +25,7 @@ func TestMain(m *testing.M) { testsetup.SetupForCommonTest() opts := []goleak.Option{ goleak.IgnoreTopFunction("github.com/golang/glog.(*loggingT).flushDaemon"), + goleak.IgnoreTopFunction("github.com/lestrrat-go/httprc.runFetchWorker"), goleak.IgnoreTopFunction("go.etcd.io/etcd/client/pkg/v3/logutil.(*MergeLogger).outputLoop"), } goleak.VerifyTestMain(m, opts...) diff --git a/distsql/distsql.go b/distsql/distsql.go index 19c2d6e3edea4..1f18d084eb0b2 100644 --- a/distsql/distsql.go +++ b/distsql/distsql.go @@ -88,7 +88,7 @@ func Select(ctx context.Context, sctx sessionctx.Context, kvReq *kv.Request, fie ctx = WithSQLKvExecCounterInterceptor(ctx, sctx.GetSessionVars().StmtCtx) option := &kv.ClientSendOption{ - SessionMemTracker: sctx.GetSessionVars().StmtCtx.MemTracker, + SessionMemTracker: sctx.GetSessionVars().MemTracker, EnabledRateLimitAction: enabledRateLimitAction, EventCb: eventCb, EnableCollectExecutionInfo: config.GetGlobalConfig().Instance.EnableCollectExecutionInfo.Load(), diff --git a/distsql/main_test.go b/distsql/main_test.go index 1d8765d866f59..10e6ed474ce70 100644 --- a/distsql/main_test.go +++ b/distsql/main_test.go @@ -25,6 +25,7 @@ func TestMain(m *testing.M) { testsetup.SetupForCommonTest() opts := []goleak.Option{ goleak.IgnoreTopFunction("github.com/golang/glog.(*loggingT).flushDaemon"), + goleak.IgnoreTopFunction("github.com/lestrrat-go/httprc.runFetchWorker"), goleak.IgnoreTopFunction("go.etcd.io/etcd/client/pkg/v3/logutil.(*MergeLogger).outputLoop"), goleak.IgnoreTopFunction("go.opencensus.io/stats/view.(*worker).start"), } diff --git a/distsql/request_builder.go b/distsql/request_builder.go index aae83a0dd0053..4a8b3ddfeab13 100644 --- a/distsql/request_builder.go +++ b/distsql/request_builder.go @@ -127,7 +127,7 @@ func (builder *RequestBuilder) SetHandleRangesForTables(sc *stmtctx.StatementCon // SetTableHandles sets "KeyRanges" for "kv.Request" by converting table handles // "handles" to "KeyRanges" firstly. func (builder *RequestBuilder) SetTableHandles(tid int64, handles []kv.Handle) *RequestBuilder { - builder.Request.KeyRanges = TableHandlesToKVRanges(tid, handles) + builder.Request.KeyRanges, builder.FixedRowCountHint = TableHandlesToKVRanges(tid, handles) return builder } @@ -515,8 +515,9 @@ func SplitRangesAcrossInt64Boundary(ranges []*ranger.Range, keepOrder bool, desc // TableHandlesToKVRanges converts sorted handle to kv ranges. // For continuous handles, we should merge them to a single key range. -func TableHandlesToKVRanges(tid int64, handles []kv.Handle) []kv.KeyRange { +func TableHandlesToKVRanges(tid int64, handles []kv.Handle) ([]kv.KeyRange, []int) { krs := make([]kv.KeyRange, 0, len(handles)) + hint := make([]int, 0, len(handles)) i := 0 for i < len(handles) { if commonHandle, ok := handles[i].(*kv.CommonHandle); ok { @@ -525,6 +526,7 @@ func TableHandlesToKVRanges(tid int64, handles []kv.Handle) []kv.KeyRange { EndKey: tablecodec.EncodeRowKey(tid, kv.Key(commonHandle.Encoded()).Next()), } krs = append(krs, ran) + hint = append(hint, 1) i++ continue } @@ -540,9 +542,10 @@ func TableHandlesToKVRanges(tid int64, handles []kv.Handle) []kv.KeyRange { startKey := tablecodec.EncodeRowKey(tid, low) endKey := tablecodec.EncodeRowKey(tid, high) krs = append(krs, kv.KeyRange{StartKey: startKey, EndKey: endKey}) + hint = append(hint, j-i) i = j } - return krs + return krs, hint } // PartitionHandlesToKVRanges convert ParitionHandles to kv ranges. diff --git a/distsql/request_builder_test.go b/distsql/request_builder_test.go index 0a11b9e04512c..2ffde4a512c0d 100644 --- a/distsql/request_builder_test.go +++ b/distsql/request_builder_test.go @@ -61,7 +61,7 @@ func TestTableHandlesToKVRanges(t *testing.T) { // Build key ranges. expect := getExpectedRanges(1, hrs) - actual := TableHandlesToKVRanges(1, handles) + actual, _ := TableHandlesToKVRanges(1, handles) // Compare key ranges and expected key ranges. require.Equal(t, len(expect), len(actual)) @@ -396,15 +396,16 @@ func TestRequestBuilder3(t *testing.T) { EndKey: kv.Key{0x74, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0x5f, 0x72, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x65}, }, }, - Cacheable: true, - KeepOrder: false, - Desc: false, - Concurrency: variable.DefDistSQLScanConcurrency, - IsolationLevel: 0, - Priority: 0, - NotFillCache: false, - ReplicaRead: kv.ReplicaReadLeader, - ReadReplicaScope: kv.GlobalReplicaScope, + Cacheable: true, + KeepOrder: false, + Desc: false, + Concurrency: variable.DefDistSQLScanConcurrency, + IsolationLevel: 0, + Priority: 0, + NotFillCache: false, + ReplicaRead: kv.ReplicaReadLeader, + ReadReplicaScope: kv.GlobalReplicaScope, + FixedRowCountHint: []int{1, 4, 2, 1}, } expect.Paging.MinPagingSize = paging.MinPagingSize expect.Paging.MaxPagingSize = paging.MaxPagingSize diff --git a/docs/design/2022-07-20-session-manager.md b/docs/design/2022-07-20-session-manager.md index 59d4d2b64feac..d50092180ac07 100644 --- a/docs/design/2022-07-20-session-manager.md +++ b/docs/design/2022-07-20-session-manager.md @@ -67,7 +67,7 @@ When the Session Manager migrates a session, it needs to authenticate with the n It's unsafe to save user passwords in the Session Manager, so we use a token-based authentication: -1. The administrator places a self-signed certificate on each TiDB server. The certificate and key paths are defined by global variables `tidb_auth_signing_cert` and `tidb_auth_signing_key`. The certificates on all the servers are the same so that a message encrypted by one server can be decrypted by another. +1. The administrator places a self-signed certificate on each TiDB server. The certificate and key paths are defined by configurations `security.session-token-signing-cert` and `security.session-token-signing-key`. The certificates on all the servers are the same so that a message encrypted by one server can be decrypted by another. 2. When the Session Manager is going to migrate a session from one TiDB instance to another, it queries the session token. The session token is composed by the username, token expiration time, and a signature. The signature is signed with the private key of the certificate. 3. The Session Manager then authenticates with the new TiDB server with a new auth-plugin. The session token acts as the password. The new server checks the username, token expiration time, and the signature. The signature should be verified by the public key. diff --git a/docs/design/2022-09-22-global-memory-control.md b/docs/design/2022-09-22-global-memory-control.md new file mode 100644 index 0000000000000..7eb3e04b307a2 --- /dev/null +++ b/docs/design/2022-09-22-global-memory-control.md @@ -0,0 +1,66 @@ +# Proposal: Global Memory Control + +* Authors: [wshwsh12](https://github.com/wshwsh12), [Xuhuaiyu](https://github.com/Xuhuaiyu) +* Tracking issue: [#37816](https://github.com/pingcap/tidb/issues/37816) + +## Abstract + +This proposes a design of how to control global memory of TiDB instance. + +## Background + +Currently, TiDB has a query-level memory control strategy `mem-quota-query`, which triggers Cancel when the memory usage of a single SQL exceeds `mem-quota-query`. However, there is currently no global memory control strategy. + +When TiDB has multiple SQLs whose memory usage does not exceed `mem-quota-query` or memory tracking inaccurate, it will lead to high memory usage or even OOM. + +Therefore, we need an observer to check whether the memory usage of the current system is normal. When there are some problems, try to control TiDB's memory no longer continue to grow, to reduce the risk of process crashes. + +## Goal + +- Control the TiDB execution memory within the system variable `tidb_server_memory_limit`. + +## Design + +New system variables: +- `tidb_server_memory_limit`: TiDB maintains the overall memory usage within `tidb_server_memory_limit` +- `tidb_server_memory_gc_trigger`: When TiDB memory usage reaches a certain percentage of `tidb_server_memory_limit`, try to take the initiative to trigger golang GC to release memory +- `tidb_server_memory_limit_sess_min_size`: The minimum memory of a session that can be killed by TiDB + +We need to implement the following three functions to control the memory usage of TiDB: +1. Kill the SQL with the most memory usage in the current system, when `HeapInuse` is larger than `tidb_server_memory_limit`. +2. Take the initiative to trigger `runtime.GC()`, when `HeapInuse` is large than `tidb_server_memory_limit`*`tidb_server_memory_limit_gc_trigger`. +3. Introduce some memory tables to observe the memory status of the current system. + +### Kill the SQL with the max memory usage + +New variables: + +1. Global variable `MemUsageTop1Tracker atomic.Pointer[Tracker]`: Indicates the Tracker with the largest memory usage. +2. The flag `NeedKill atomic.Bool` in the structure `Tracker`: Indicates whether the SQL for the current Tracker needs to be Killed. +3. `SessionID int64` in Structure Tracker: Indicates the Session ID corresponding to the current Tracker. + +Implements: + +#### How to get the current TiDB memory usage Top 1 +When `Tracker.Consume()` calling, check the following logic. If all are satisfied, update the `MemUsageTop1Tracker`. +1. Is it a Session-level Tracker? +2. Whether the flag `NeedKill` is false, to avoid cancel the current SQL twice +3. Whether the memory usage exceeds the threshold `tidb_server_memory_limit_sess_min_size`(default 128MB, can be dynamically adjusted), can be candidate of the `MemUsageTop1Tracker` +4. Is the memory usage of the current Tracker greater than the current `MemUsageTop1Tracker` + +#### How to Cancel the current top 1 memory usage and recycle memory in time +1. Create a goroutine that calls Golang's `ReadMemStat` interface in a 100 ms cycle. (Get the memory usage of the current TiDB instance) +2. If the `heapInuse` of the current instance is greater than `tidb_server_memory_limit`, set `MemUsageTop1Tracker`'s `NeedKill` flag. (Sends a Kill signal) +3. When the SQL call to `Tracker.Consume()`, check its own `NeedKill` flag. If it is true, trigger Panic and exit. (terminates the execution of SQL) +4. Get the `SessionID` from the tracker and continuously query its status, waiting for it to complete exited. When SQL successfully exited, explicitly trigger Golang GC to release memory. (Wait for SQL exited completely and release memory) + +### Take the initiative to trigger GC + +The inspiration for this design comes from uber-go-gc-tuner: +1. Use the Go1.19 `SetMemoryLimit` feature to set the soft limit to `tidb_server_memory_limit` * `tidb_server_memory_limit_gc_trigger` to ensure that GC can be triggered when reaching the certain threshold. +2. After each GC, check whether this GC is caused by memory limit. If it is caused by this, temporarily set memory limit to infinite, and then set it back to the specified threshold after 1 minute. In this way, the problem of frequent GC caused by `heapInUse` being larger than the soft limit can be avoided. + +### Introduce some memory tables + +Introduce `performance_schema.memory_usage` and `performance_schema.memory_usage_ops_history` to display the current system memory usage and historical operations. +This can be implemented by maintaining a set of global data, and reading and outputting directly from the global data when querying. diff --git a/docs/design/2022-09-28-flashback-to-timestamp.md b/docs/design/2022-09-28-flashback-to-timestamp.md new file mode 100644 index 0000000000000..9f3c2e2ef7fab --- /dev/null +++ b/docs/design/2022-09-28-flashback-to-timestamp.md @@ -0,0 +1,120 @@ +# Proposal: Flashback To Timestamp +- Author(s): [Defined2014](https://github.com/Defined2014) and [JmPotato](https://github.com/JmPotato) +- Tracking Issues: https://github.com/pingcap/tidb/issues/37197 and https://github.com/tikv/tikv/issues/13303 + +## Abstract + +This proposal aims to support `Flashback To Timestamp` and describe what `Flashback To Timestamp` should look like and how to implement it. + +## Background + +Some users want to `Flashback table/database/cluster` to the specified timestamp when there is a problem with the data like deleted some important keys, updated wrong values etc. + +TiDB uses MVCC to store key-values, which means it can easily get historical data at any timestamp. Based on this feature, TiDB already supports `Flashback To Timestamp`, for example, users can read historical data and update it through Snapshot Read which is not only inelegant, but also inefficient. + +Therefore, we propose to use a series of new SQL syntaxes to support this feature, and push down the read-write operations to storage side. + +## Detailed Design + +### Implementation Overview + +In TiKV, a multi-version concurrency control (MVCC) mechanism is introduced to avoid the overhead of introducing locks when data is updated concurrently. Under this mechanism, when TiDB modified data, it doesn't directly operate on the original value, but writes a data with the latest timestamp to cover it. The GC Worker in the background of TiDB will periodically update `tikv_gc_safe_point` and delete the version older than this point. `Flashback To Timestamp` is developmented based on this feature of TiKV. In order to improve execution efficiency and reduce data transmission overhead, TiKV has added two RPC interfaces called `PrepareFlashbackToVersion` and `FlashbackToVersion`. The protobuf related change shown below: + +```protobuf +// Preparing the flashback for a region/key range will "lock" the region +// so that there is no any read, write or schedule operation could be proposed before +// the actual flashback operation. +message PrepareFlashbackToVersionRequest { + Context context = 1; + bytes start_key = 2; + bytes end_key = 3; +} + +message PrepareFlashbackToVersionResponse { + errorpb.Error region_error = 1; + string error = 2; +} + +// Flashback the region to a specific point with the given `version`, please +// make sure the region is "locked" by `PrepareFlashbackToVersionRequest` first, +// otherwise this request will fail. +message FlashbackToVersionRequest { + Context context = 1; + // The TS version which the data should flashback to. + uint64 version = 2; + bytes start_key = 3; + bytes end_key = 4; + // The `start_ts`` and `commit_ts` which the newly written MVCC version will use. + uint64 start_ts = 5; + uint64 commit_ts = 6; +} + +message FlashbackToVersionResponse { + errorpb.Error region_error = 1; + string error = 2; +} +``` + +Then a `Flashback To Timestamp` DDL job can be simply divided into the following steps + +* Save values of some global variables and PD schedule. Those values will be changed during `Flashback`. + +* Pre-checks. After all checks are passed, TiDB will disable GC and closed PD schedule for the cluster. The specific checks are as follows: + * The FlashbackTS is after `tikv_gc_safe_point`. + * The FlashbackTS is before the minimal store resolved TS. + * No related DDL history in flashback time range. + * No running related DDL jobs. + +* TiDB get flashback key ranges and splits them into separate regions to avoid locking unrelated key ranges. Then TiDB send `PrepareFlashbackToVersion` RPC requests to lock regions in TiKV. Once locked, no more read, write and scheduling operations are allowed for those regions. + +* After locked all relevant key ranges, the DDL Owner will update schema version and synchronize it to other TiDBs. When other TiDB applies the `SchemaDiff` of type `Flashback To Timestamp`, it will disconnect all relevant links. + +* Send `FlashbackToVersion` RPC requests to all relevant key ranges with same `commit_ts`. Each region handles its own flashback progress independently. + * Read the old MVCC data and write it again with the given `commit_ts` to pretend it's a new transaction commit. + * Release the Raft proposing lock and resume the lease read. + +* TiDB checks whether all the requests returned successfully, and retries those that failed with same `commit_ts` until the whole flashback is done. + +* After `Flashback To Timestamp` is finished, TiDB will restore all changed global variables and restart PD schedule. At the same time, notify `Stats Handle` to reload statistics from TiKV. + +### New Syntax Overview + +TiDB will support 3 new syntaxes as follows. + +1. Flashback whole cluster except some system tables to the specified timestamp. + +```sql +FLASHBACK CLUSTER TO TIMESTAMP '2022-07-05 08:00:00'; +``` + +2. Flashback some databases to the specified timestamp. + +```sql +FLASHBACK DATABASE [db] TO TIMESTAMP '2022-07-05 08:00:00'; +``` + +3. Flashback some tables to the specified timestamp. + +```sql +FLASHBACK TABLE [table1], [table2] TO TIMESTAMP '2022-08-10 08:00:00'; +``` + +### Limitations and future Work + +1. DDL history exists for the flashback time period is not currently supported, the error message is shown below: + +```sql +mysql> ALTER TABLE t ADD INDEX i(a); +Query OK, 0 rows affected (2.99 sec) + +mysql> FLASHBACK CLUSTER TO TIMESTAMP '2022-10-10 11:53:30'; +ERROR 1105 (HY000): Had ddl history during [2022-10-10 11:53:30 +0800 CST, now), can't do flashback +``` + +2. Compare with the other DDL jobs, `Flashback To Timestamp` job cannot be rollbacked after some regions failure and also needs to resend rpc to all regions when ddl owner crashed. In the future, we will improve those two issues with a new TiKV interface and new distributed processing ddl framework. + +### Alternative Solutions + +1. Read historical data via `As of timestamp` clause and write back with the lastest timestamp. But it's much slower than `Flashback To Timestamp`, the data needs to be read to TiDB first then written back to TiKV. + +2. Use `Reset To Version` interface to delete all historical version. After this operation, the user can't find the deleted version any more and this interface is incompatible with snapshot read. diff --git a/domain/BUILD.bazel b/domain/BUILD.bazel index 1c4a433c79e86..f7ef9baba6907 100644 --- a/domain/BUILD.bazel +++ b/domain/BUILD.bazel @@ -8,6 +8,7 @@ go_library( "domainctx.go", "optimize_trace.go", "plan_replayer.go", + "plan_replayer_dump.go", "schema_checker.go", "schema_validator.go", "sysvar_cache.go", @@ -46,15 +47,19 @@ go_library( "//telemetry", "//types", "//util", + "//util/chunk", "//util/dbterror", "//util/domainutil", "//util/engine", "//util/execdetails", "//util/expensivequery", "//util/logutil", + "//util/memory", "//util/memoryusagealarm", + "//util/printer", "//util/servermemorylimit", "//util/sqlexec", + "@com_github_burntsushi_toml//:toml", "@com_github_ngaut_pools//:pools", "@com_github_pingcap_errors//:errors", "@com_github_pingcap_failpoint//:failpoint", @@ -85,6 +90,7 @@ go_test( "domain_utils_test.go", "domainctx_test.go", "main_test.go", + "plan_replayer_handle_test.go", "plan_replayer_test.go", "schema_checker_test.go", "schema_validator_test.go", @@ -108,6 +114,7 @@ go_test( "//session", "//sessionctx/variable", "//store/mockstore", + "//testkit", "//testkit/testsetup", "//util", "//util/mock", diff --git a/domain/domain.go b/domain/domain.go index 61f19b22fa185..1016d5ba9b5cb 100644 --- a/domain/domain.go +++ b/domain/domain.go @@ -64,6 +64,7 @@ import ( "github.com/pingcap/tidb/util/engine" "github.com/pingcap/tidb/util/expensivequery" "github.com/pingcap/tidb/util/logutil" + "github.com/pingcap/tidb/util/memory" "github.com/pingcap/tidb/util/memoryusagealarm" "github.com/pingcap/tidb/util/servermemorylimit" "github.com/pingcap/tidb/util/sqlexec" @@ -113,6 +114,7 @@ type Domain struct { cancel context.CancelFunc indexUsageSyncLease time.Duration dumpFileGcChecker *dumpFileGcChecker + planReplayerHandle *planReplayerHandle expiredTimeStamp4PC types.Time logBackupAdvancer *daemon.OwnerDaemon @@ -125,6 +127,11 @@ type Domain struct { sysProcesses SysProcesses mdlCheckTableInfo *mdlCheckTableInfo + + analyzeMu struct { + sync.Mutex + sctxs map[sessionctx.Context]bool + } } type mdlCheckTableInfo struct { @@ -1524,6 +1531,60 @@ func (do *Domain) TelemetryRotateSubWindowLoop(ctx sessionctx.Context) { }() } +// SetupPlanReplayerHandle setup plan replayer handle +func (do *Domain) SetupPlanReplayerHandle(ctx sessionctx.Context) { + do.planReplayerHandle = &planReplayerHandle{ + planReplayerTaskCollectorHandle: &planReplayerTaskCollectorHandle{ + sctx: ctx, + }, + } +} + +// SetupDumpFileGCChecker setup sctx +func (do *Domain) SetupDumpFileGCChecker(ctx sessionctx.Context) { + do.dumpFileGcChecker.setupSctx(ctx) +} + +var planReplayerHandleLease = 10 * time.Second + +// DisablePlanReplayerBackgroundJob4Test disable plan replayer handle for test +func DisablePlanReplayerBackgroundJob4Test() { + planReplayerHandleLease = 0 +} + +// StartPlanReplayerHandle start plan replayer handle job +func (do *Domain) StartPlanReplayerHandle() { + if planReplayerHandleLease < 1 { + return + } + do.wg.Add(1) + go func() { + tikcer := time.NewTicker(planReplayerHandleLease) + defer func() { + tikcer.Stop() + do.wg.Done() + logutil.BgLogger().Info("PlanReplayerHandle exited.") + util.Recover(metrics.LabelDomain, "PlanReplayerHandle", nil, false) + }() + for { + select { + case <-do.exit: + return + case <-tikcer.C: + err := do.planReplayerHandle.CollectPlanReplayerTask(context.Background()) + if err != nil { + logutil.BgLogger().Warn("plan replayer handle collect tasks failed", zap.Error(err)) + } + } + } + }() +} + +// GetPlanReplayerHandle returns plan replayer handle +func (do *Domain) GetPlanReplayerHandle() *planReplayerHandle { + return do.planReplayerHandle +} + // DumpFileGcCheckerLoop creates a goroutine that handles `exit` and `gc`. func (do *Domain) DumpFileGcCheckerLoop() { do.wg.Add(1) @@ -1575,6 +1636,46 @@ func (do *Domain) SetStatsUpdating(val bool) { } } +// ReleaseAnalyzeExec returned extra exec for Analyze +func (do *Domain) ReleaseAnalyzeExec(sctxs []sessionctx.Context) { + do.analyzeMu.Lock() + defer do.analyzeMu.Unlock() + for _, ctx := range sctxs { + do.analyzeMu.sctxs[ctx] = false + } +} + +// FetchAnalyzeExec get needed exec for analyze +func (do *Domain) FetchAnalyzeExec(need int) []sessionctx.Context { + if need < 1 { + return nil + } + count := 0 + r := make([]sessionctx.Context, 0) + do.analyzeMu.Lock() + defer do.analyzeMu.Unlock() + for sctx, used := range do.analyzeMu.sctxs { + if used { + continue + } + r = append(r, sctx) + do.analyzeMu.sctxs[sctx] = true + count++ + if count >= need { + break + } + } + return r +} + +// SetupAnalyzeExec setups exec for Analyze Executor +func (do *Domain) SetupAnalyzeExec(ctxs []sessionctx.Context) { + do.analyzeMu.sctxs = make(map[sessionctx.Context]bool) + for _, ctx := range ctxs { + do.analyzeMu.sctxs[ctx] = false + } +} + // LoadAndUpdateStatsLoop loads and updates stats info. func (do *Domain) LoadAndUpdateStatsLoop(ctxs []sessionctx.Context) error { if err := do.UpdateTableStatsLoop(ctxs[0]); err != nil { @@ -1717,7 +1818,9 @@ func (do *Domain) updateStatsWorker(ctx sessionctx.Context, owner owner.Manager) gcStatsTicker := time.NewTicker(100 * lease) dumpFeedbackTicker := time.NewTicker(200 * lease) loadFeedbackTicker := time.NewTicker(5 * lease) + loadLockedTablesTicker := time.NewTicker(5 * lease) dumpColStatsUsageTicker := time.NewTicker(100 * lease) + readMemTricker := time.NewTicker(memory.ReadMemInterval) statsHandle := do.StatsHandle() defer func() { dumpColStatsUsageTicker.Stop() @@ -1725,6 +1828,7 @@ func (do *Domain) updateStatsWorker(ctx sessionctx.Context, owner owner.Manager) dumpFeedbackTicker.Stop() gcStatsTicker.Stop() deltaUpdateTicker.Stop() + readMemTricker.Stop() do.SetStatsUpdating(false) logutil.BgLogger().Info("updateStatsWorker exited.") }() @@ -1755,6 +1859,11 @@ func (do *Domain) updateStatsWorker(ctx sessionctx.Context, owner owner.Manager) if err != nil { logutil.BgLogger().Debug("update stats using feedback failed", zap.Error(err)) } + case <-loadLockedTablesTicker.C: + err := statsHandle.LoadLockedTables() + if err != nil { + logutil.BgLogger().Debug("load locked table failed", zap.Error(err)) + } case <-dumpFeedbackTicker.C: err := statsHandle.DumpStatsFeedbackToKV() if err != nil { @@ -1773,6 +1882,9 @@ func (do *Domain) updateStatsWorker(ctx sessionctx.Context, owner owner.Manager) if err != nil { logutil.BgLogger().Debug("dump column stats usage failed", zap.Error(err)) } + + case <-readMemTricker.C: + memory.ForceReadMemStats() } } } @@ -1892,7 +2004,10 @@ func (do *Domain) NotifyUpdateSysVarCache() { } // LoadSigningCertLoop loads the signing cert periodically to make sure it's fresh new. -func (do *Domain) LoadSigningCertLoop() { +func (do *Domain) LoadSigningCertLoop(signingCert, signingKey string) { + sessionstates.SetCertPath(signingCert) + sessionstates.SetKeyPath(signingKey) + do.wg.Add(1) go func() { defer func() { diff --git a/domain/domain_sysvars.go b/domain/domain_sysvars.go index 19c02a9572934..da2b3aeac3fd3 100644 --- a/domain/domain_sysvars.go +++ b/domain/domain_sysvars.go @@ -15,6 +15,7 @@ package domain import ( + "context" "strconv" "time" @@ -33,6 +34,9 @@ func (do *Domain) initDomainSysVars() { variable.SetStatsCacheCapacity.Store(do.setStatsCacheCapacity) pdClientDynamicOptionFunc := do.setPDClientDynamicOption variable.SetPDClientDynamicOption.Store(&pdClientDynamicOptionFunc) + + variable.SetExternalTimestamp = do.setExternalTimestamp + variable.GetExternalTimestamp = do.getExternalTimestamp } // setStatsCacheCapacity sets statsCache cap @@ -75,3 +79,11 @@ func (do *Domain) updatePDClient(option pd.DynamicOption, val interface{}) error } return pdClient.UpdateOption(option, val) } + +func (do *Domain) setExternalTimestamp(ctx context.Context, ts uint64) error { + return do.store.GetOracle().SetExternalTimestamp(ctx, ts) +} + +func (do *Domain) getExternalTimestamp(ctx context.Context) (uint64, error) { + return do.store.GetOracle().GetExternalTimestamp(ctx) +} diff --git a/domain/globalconfigsync/globalconfig_test.go b/domain/globalconfigsync/globalconfig_test.go index a3cbd5e143a0b..c7dab0064dedb 100644 --- a/domain/globalconfigsync/globalconfig_test.go +++ b/domain/globalconfigsync/globalconfig_test.go @@ -36,6 +36,7 @@ func TestMain(m *testing.M) { testsetup.SetupForCommonTest() opts := []goleak.Option{ goleak.IgnoreTopFunction("github.com/golang/glog.(*loggingT).flushDaemon"), + goleak.IgnoreTopFunction("github.com/lestrrat-go/httprc.runFetchWorker"), goleak.IgnoreTopFunction("go.etcd.io/etcd/client/pkg/v3/logutil.(*MergeLogger).outputLoop"), } goleak.VerifyTestMain(m, opts...) diff --git a/domain/infosync/info.go b/domain/infosync/info.go index fd29483c8b157..a2af6c5dfa58f 100644 --- a/domain/infosync/info.go +++ b/domain/infosync/info.go @@ -103,14 +103,14 @@ type InfoSyncer struct { mu sync.RWMutex util2.SessionManager } - session *concurrency.Session - topologySession *concurrency.Session - prometheusAddr string - modifyTime time.Time - labelRuleManager LabelRuleManager - placementManager PlacementManager - scheduleManager ScheduleManager - tiflashPlacementManager TiFlashPlacementManager + session *concurrency.Session + topologySession *concurrency.Session + prometheusAddr string + modifyTime time.Time + labelRuleManager LabelRuleManager + placementManager PlacementManager + scheduleManager ScheduleManager + tiflashReplicaManager TiFlashReplicaManager } // ServerInfo is server static information. @@ -192,7 +192,7 @@ func GlobalInfoSyncerInit(ctx context.Context, id string, serverIDGetter func() is.labelRuleManager = initLabelRuleManager(etcdCli) is.placementManager = initPlacementManager(etcdCli) is.scheduleManager = initScheduleManager(etcdCli) - is.tiflashPlacementManager = initTiFlashPlacementManager(etcdCli) + is.tiflashReplicaManager = initTiFlashReplicaManager(etcdCli) setGlobalInfoSyncer(is) return is, nil } @@ -237,13 +237,13 @@ func initPlacementManager(etcdCli *clientv3.Client) PlacementManager { return &PDPlacementManager{etcdCli: etcdCli} } -func initTiFlashPlacementManager(etcdCli *clientv3.Client) TiFlashPlacementManager { +func initTiFlashReplicaManager(etcdCli *clientv3.Client) TiFlashReplicaManager { if etcdCli == nil { - m := mockTiFlashPlacementManager{} + m := mockTiFlashReplicaManagerCtx{tiflashProgressCache: make(map[int64]float64)} return &m } - logutil.BgLogger().Warn("init TiFlashPlacementManager", zap.Strings("pd addrs", etcdCli.Endpoints())) - return &TiFlashPDPlacementManager{etcdCli: etcdCli} + logutil.BgLogger().Warn("init TiFlashReplicaManager", zap.Strings("pd addrs", etcdCli.Endpoints())) + return &TiFlashReplicaManagerCtx{etcdCli: etcdCli, tiflashProgressCache: make(map[int64]float64)} } func initScheduleManager(etcdCli *clientv3.Client) ScheduleManager { @@ -260,7 +260,7 @@ func GetMockTiFlash() *MockTiFlash { return nil } - m, ok := is.tiflashPlacementManager.(*mockTiFlashPlacementManager) + m, ok := is.tiflashReplicaManager.(*mockTiFlashReplicaManagerCtx) if ok { return m.tiflash } @@ -274,7 +274,7 @@ func SetMockTiFlash(tiflash *MockTiFlash) { return } - m, ok := is.tiflashPlacementManager.(*mockTiFlashPlacementManager) + m, ok := is.tiflashReplicaManager.(*mockTiFlashReplicaManagerCtx) if ok { m.SetMockTiFlash(tiflash) } @@ -338,65 +338,58 @@ func GetAllServerInfo(ctx context.Context) (map[string]*ServerInfo, error) { return is.getAllServerInfo(ctx) } -// UpdateTiFlashTableSyncProgress is used to update the tiflash table replica sync progress. -func UpdateTiFlashTableSyncProgress(ctx context.Context, tid int64, progressString string) error { - is, err := getGlobalInfoSyncer() - if err != nil { - return err - } - if is.etcdCli == nil { - return nil - } - key := fmt.Sprintf("%s/%v", TiFlashTableSyncProgressPath, tid) - return util.PutKVToEtcd(ctx, is.etcdCli, keyOpDefaultRetryCnt, key, progressString) -} - // DeleteTiFlashTableSyncProgress is used to delete the tiflash table replica sync progress. -func DeleteTiFlashTableSyncProgress(tid int64) error { +func DeleteTiFlashTableSyncProgress(tableInfo *model.TableInfo) error { is, err := getGlobalInfoSyncer() if err != nil { return err } - if is.etcdCli == nil { - return nil + if pi := tableInfo.GetPartitionInfo(); pi != nil { + for _, p := range pi.Definitions { + is.tiflashReplicaManager.DeleteTiFlashProgressFromCache(p.ID) + } + } else { + is.tiflashReplicaManager.DeleteTiFlashProgressFromCache(tableInfo.ID) } - key := fmt.Sprintf("%s/%v", TiFlashTableSyncProgressPath, tid) - return util.DeleteKeyFromEtcd(key, is.etcdCli, keyOpDefaultRetryCnt, keyOpDefaultTimeout) + return nil } -// GetTiFlashTableSyncProgress uses to get all the tiflash table replica sync progress. -func GetTiFlashTableSyncProgress(ctx context.Context) (map[int64]float64, error) { +// MustGetTiFlashProgress gets tiflash replica progress from tiflashProgressCache, if cache not exist, it calculates progress from PD and TiFlash and inserts progress into cache. +func MustGetTiFlashProgress(tableID int64, replicaCount uint64, tiFlashStores *map[int64]helper.StoreStat) (float64, error) { is, err := getGlobalInfoSyncer() if err != nil { - return nil, err + return 0, err } - progressMap := make(map[int64]float64) - if is.etcdCli == nil { - return progressMap, nil + progressCache, isExist := is.tiflashReplicaManager.GetTiFlashProgressFromCache(tableID) + if isExist { + return progressCache, nil } - for i := 0; i < keyOpDefaultRetryCnt; i++ { - resp, err := is.etcdCli.Get(ctx, TiFlashTableSyncProgressPath+"/", clientv3.WithPrefix()) + if *tiFlashStores == nil { + // We need the up-to-date information about TiFlash stores. + // Since TiFlash Replica synchronize may happen immediately after new TiFlash stores are added. + tikvStats, err := is.tiflashReplicaManager.GetStoresStat(context.Background()) + // If MockTiFlash is not set, will issue a MockTiFlashError here. if err != nil { - logutil.BgLogger().Info("get tiflash table replica sync progress failed, continue checking.", zap.Error(err)) - continue + return 0, err } - for _, kv := range resp.Kvs { - tid, err := strconv.ParseInt(string(kv.Key[len(TiFlashTableSyncProgressPath)+1:]), 10, 64) - if err != nil { - logutil.BgLogger().Info("invalid tiflash table replica sync progress key.", zap.String("key", string(kv.Key))) - continue - } - progress, err := strconv.ParseFloat(string(kv.Value), 64) - if err != nil { - logutil.BgLogger().Info("invalid tiflash table replica sync progress value.", - zap.String("key", string(kv.Key)), zap.String("value", string(kv.Value))) - continue + stores := make(map[int64]helper.StoreStat) + for _, store := range tikvStats.Stores { + for _, l := range store.Store.Labels { + if l.Key == "engine" && l.Value == "tiflash" { + stores[store.Store.ID] = store + logutil.BgLogger().Debug("Found tiflash store", zap.Int64("id", store.Store.ID), zap.String("Address", store.Store.Address), zap.String("StatusAddress", store.Store.StatusAddress)) + } } - progressMap[tid] = progress } - break + *tiFlashStores = stores + logutil.BgLogger().Debug("updateTiFlashStores finished", zap.Int("TiFlash store count", len(*tiFlashStores))) + } + progress, err := is.tiflashReplicaManager.CalculateTiFlashProgress(tableID, replicaCount, *tiFlashStores) + if err != nil { + return 0, err } - return progressMap, nil + is.tiflashReplicaManager.UpdateTiFlashProgressCache(tableID, progress) + return progress, nil } func doRequest(ctx context.Context, apiName string, addrs []string, route, method string, body io.Reader) ([]byte, error) { @@ -1045,6 +1038,44 @@ func GetLabelRules(ctx context.Context, ruleIDs []string) (map[string]*label.Rul return is.labelRuleManager.GetLabelRules(ctx, ruleIDs) } +// CalculateTiFlashProgress calculates TiFlash replica progress +func CalculateTiFlashProgress(tableID int64, replicaCount uint64, TiFlashStores map[int64]helper.StoreStat) (float64, error) { + is, err := getGlobalInfoSyncer() + if err != nil { + return 0, errors.Trace(err) + } + return is.tiflashReplicaManager.CalculateTiFlashProgress(tableID, replicaCount, TiFlashStores) +} + +// UpdateTiFlashProgressCache updates tiflashProgressCache +func UpdateTiFlashProgressCache(tableID int64, progress float64) error { + is, err := getGlobalInfoSyncer() + if err != nil { + return errors.Trace(err) + } + is.tiflashReplicaManager.UpdateTiFlashProgressCache(tableID, progress) + return nil +} + +// GetTiFlashProgressFromCache gets tiflash replica progress from tiflashProgressCache +func GetTiFlashProgressFromCache(tableID int64) (float64, bool) { + is, err := getGlobalInfoSyncer() + if err != nil { + logutil.BgLogger().Error("GetTiFlashProgressFromCache get info sync failed", zap.Int64("tableID", tableID), zap.Error(err)) + return 0, false + } + return is.tiflashReplicaManager.GetTiFlashProgressFromCache(tableID) +} + +// CleanTiFlashProgressCache clean progress cache +func CleanTiFlashProgressCache() { + is, err := getGlobalInfoSyncer() + if err != nil { + return + } + is.tiflashReplicaManager.CleanTiFlashProgressCache() +} + // SetTiFlashGroupConfig is a helper function to set tiflash rule group config func SetTiFlashGroupConfig(ctx context.Context) error { is, err := getGlobalInfoSyncer() @@ -1052,7 +1083,7 @@ func SetTiFlashGroupConfig(ctx context.Context) error { return errors.Trace(err) } logutil.BgLogger().Info("SetTiFlashGroupConfig") - return is.tiflashPlacementManager.SetTiFlashGroupConfig(ctx) + return is.tiflashReplicaManager.SetTiFlashGroupConfig(ctx) } // SetTiFlashPlacementRule is a helper function to set placement rule. @@ -1064,7 +1095,7 @@ func SetTiFlashPlacementRule(ctx context.Context, rule placement.TiFlashRule) er return errors.Trace(err) } logutil.BgLogger().Info("SetTiFlashPlacementRule", zap.String("ruleID", rule.ID)) - return is.tiflashPlacementManager.SetPlacementRule(ctx, rule) + return is.tiflashReplicaManager.SetPlacementRule(ctx, rule) } // DeleteTiFlashPlacementRule is to delete placement rule for certain group. @@ -1074,7 +1105,7 @@ func DeleteTiFlashPlacementRule(ctx context.Context, group string, ruleID string return errors.Trace(err) } logutil.BgLogger().Info("DeleteTiFlashPlacementRule", zap.String("ruleID", ruleID)) - return is.tiflashPlacementManager.DeletePlacementRule(ctx, group, ruleID) + return is.tiflashReplicaManager.DeletePlacementRule(ctx, group, ruleID) } // GetTiFlashGroupRules to get all placement rule in a certain group. @@ -1083,7 +1114,7 @@ func GetTiFlashGroupRules(ctx context.Context, group string) ([]placement.TiFlas if err != nil { return nil, errors.Trace(err) } - return is.tiflashPlacementManager.GetGroupRules(ctx, group) + return is.tiflashReplicaManager.GetGroupRules(ctx, group) } // PostTiFlashAccelerateSchedule sends `regions/accelerate-schedule` request. @@ -1093,16 +1124,16 @@ func PostTiFlashAccelerateSchedule(ctx context.Context, tableID int64) error { return errors.Trace(err) } logutil.BgLogger().Info("PostTiFlashAccelerateSchedule", zap.Int64("tableID", tableID)) - return is.tiflashPlacementManager.PostAccelerateSchedule(ctx, tableID) + return is.tiflashReplicaManager.PostAccelerateSchedule(ctx, tableID) } -// GetTiFlashPDRegionRecordStats is a helper function calling `/stats/region`. -func GetTiFlashPDRegionRecordStats(ctx context.Context, tableID int64, stats *helper.PDRegionStats) error { +// GetTiFlashRegionCountFromPD is a helper function calling `/stats/region`. +func GetTiFlashRegionCountFromPD(ctx context.Context, tableID int64, regionCount *int) error { is, err := getGlobalInfoSyncer() if err != nil { return errors.Trace(err) } - return is.tiflashPlacementManager.GetPDRegionRecordStats(ctx, tableID, stats) + return is.tiflashReplicaManager.GetRegionCountFromPD(ctx, tableID, regionCount) } // GetTiFlashStoresStat gets the TiKV store information by accessing PD's api. @@ -1111,7 +1142,7 @@ func GetTiFlashStoresStat(ctx context.Context) (*helper.StoresStat, error) { if err != nil { return nil, errors.Trace(err) } - return is.tiflashPlacementManager.GetStoresStat(ctx) + return is.tiflashReplicaManager.GetStoresStat(ctx) } // CloseTiFlashManager closes TiFlash manager. @@ -1120,7 +1151,7 @@ func CloseTiFlashManager(ctx context.Context) { if err != nil { return } - is.tiflashPlacementManager.Close(ctx) + is.tiflashReplicaManager.Close(ctx) } // ConfigureTiFlashPDForTable configures pd rule for unpartitioned tables. @@ -1132,7 +1163,7 @@ func ConfigureTiFlashPDForTable(id int64, count uint64, locationLabels *[]string ctx := context.Background() logutil.BgLogger().Info("ConfigureTiFlashPDForTable", zap.Int64("tableID", id), zap.Uint64("count", count)) ruleNew := MakeNewRule(id, count, *locationLabels) - if e := is.tiflashPlacementManager.SetPlacementRule(ctx, *ruleNew); e != nil { + if e := is.tiflashReplicaManager.SetPlacementRule(ctx, *ruleNew); e != nil { return errors.Trace(e) } return nil @@ -1148,11 +1179,11 @@ func ConfigureTiFlashPDForPartitions(accel bool, definitions *[]model.PartitionD for _, p := range *definitions { logutil.BgLogger().Info("ConfigureTiFlashPDForPartitions", zap.Int64("tableID", tableID), zap.Int64("partID", p.ID), zap.Bool("accel", accel), zap.Uint64("count", count)) ruleNew := MakeNewRule(p.ID, count, *locationLabels) - if e := is.tiflashPlacementManager.SetPlacementRule(ctx, *ruleNew); e != nil { + if e := is.tiflashReplicaManager.SetPlacementRule(ctx, *ruleNew); e != nil { return errors.Trace(e) } if accel { - e := is.tiflashPlacementManager.PostAccelerateSchedule(ctx, p.ID) + e := is.tiflashReplicaManager.PostAccelerateSchedule(ctx, p.ID) if e != nil { return errors.Trace(e) } diff --git a/domain/infosync/info_test.go b/domain/infosync/info_test.go index 1a043e8decf2d..90a30d8f1f161 100644 --- a/domain/infosync/info_test.go +++ b/domain/infosync/info_test.go @@ -40,6 +40,7 @@ func TestMain(m *testing.M) { testsetup.SetupForCommonTest() opts := []goleak.Option{ goleak.IgnoreTopFunction("github.com/golang/glog.(*loggingT).flushDaemon"), + goleak.IgnoreTopFunction("github.com/lestrrat-go/httprc.runFetchWorker"), goleak.IgnoreTopFunction("go.etcd.io/etcd/client/pkg/v3/logutil.(*MergeLogger).outputLoop"), } goleak.VerifyTestMain(m, opts...) diff --git a/domain/infosync/tiflash_manager.go b/domain/infosync/tiflash_manager.go index 5b937f626cd00..4d01c64de002d 100644 --- a/domain/infosync/tiflash_manager.go +++ b/domain/infosync/tiflash_manager.go @@ -41,8 +41,8 @@ import ( "go.uber.org/zap" ) -// TiFlashPlacementManager manages placement settings for TiFlash. -type TiFlashPlacementManager interface { +// TiFlashReplicaManager manages placement settings and replica progress for TiFlash. +type TiFlashReplicaManager interface { // SetTiFlashGroupConfig sets the group index of the tiflash placement rule SetTiFlashGroupConfig(ctx context.Context) error // SetPlacementRule is a helper function to set placement rule. @@ -53,26 +53,122 @@ type TiFlashPlacementManager interface { GetGroupRules(ctx context.Context, group string) ([]placement.TiFlashRule, error) // PostAccelerateSchedule sends `regions/accelerate-schedule` request. PostAccelerateSchedule(ctx context.Context, tableID int64) error - // GetPDRegionRecordStats is a helper function calling `/stats/region`. - GetPDRegionRecordStats(ctx context.Context, tableID int64, stats *helper.PDRegionStats) error + // GetRegionCountFromPD is a helper function calling `/stats/region`. + GetRegionCountFromPD(ctx context.Context, tableID int64, regionCount *int) error // GetStoresStat gets the TiKV store information by accessing PD's api. GetStoresStat(ctx context.Context) (*helper.StoresStat, error) - // Close is to close TiFlashPlacementManager + // CalculateTiFlashProgress calculates TiFlash replica progress + CalculateTiFlashProgress(tableID int64, replicaCount uint64, TiFlashStores map[int64]helper.StoreStat) (float64, error) + // UpdateTiFlashProgressCache updates tiflashProgressCache + UpdateTiFlashProgressCache(tableID int64, progress float64) + // GetTiFlashProgressFromCache gets tiflash replica progress from tiflashProgressCache + GetTiFlashProgressFromCache(tableID int64) (float64, bool) + // DeleteTiFlashProgressFromCache delete tiflash replica progress from tiflashProgressCache + DeleteTiFlashProgressFromCache(tableID int64) + // CleanTiFlashProgressCache clean progress cache + CleanTiFlashProgressCache() + // Close is to close TiFlashReplicaManager Close(ctx context.Context) } -// TiFlashPDPlacementManager manages placement with pd for TiFlash. -type TiFlashPDPlacementManager struct { - etcdCli *clientv3.Client +// TiFlashReplicaManagerCtx manages placement with pd and replica progress for TiFlash. +type TiFlashReplicaManagerCtx struct { + etcdCli *clientv3.Client + sync.RWMutex // protect tiflashProgressCache + tiflashProgressCache map[int64]float64 } -// Close is called to close TiFlashPDPlacementManager. -func (m *TiFlashPDPlacementManager) Close(ctx context.Context) { +// Close is called to close TiFlashReplicaManagerCtx. +func (m *TiFlashReplicaManagerCtx) Close(ctx context.Context) { } +func getTiFlashPeerWithoutLagCount(tiFlashStores map[int64]helper.StoreStat, tableID int64) (int, error) { + // storeIDs -> regionID, PD will not create two peer on the same store + var flashPeerCount int + for _, store := range tiFlashStores { + regionReplica := make(map[int64]int) + err := helper.CollectTiFlashStatus(store.Store.StatusAddress, tableID, ®ionReplica) + if err != nil { + logutil.BgLogger().Error("Fail to get peer status from TiFlash.", + zap.Int64("tableID", tableID)) + return 0, err + } + flashPeerCount += len(regionReplica) + } + return flashPeerCount, nil +} + +// calculateTiFlashProgress calculates progress based on the region status from PD and TiFlash. +func calculateTiFlashProgress(tableID int64, replicaCount uint64, tiFlashStores map[int64]helper.StoreStat) (float64, error) { + var regionCount int + if err := GetTiFlashRegionCountFromPD(context.Background(), tableID, ®ionCount); err != nil { + logutil.BgLogger().Error("Fail to get regionCount from PD.", + zap.Int64("tableID", tableID)) + return 0, errors.Trace(err) + } + + if regionCount == 0 { + logutil.BgLogger().Warn("region count getting from PD is 0.", + zap.Int64("tableID", tableID)) + return 0, fmt.Errorf("region count getting from PD is 0") + } + + tiflashPeerCount, err := getTiFlashPeerWithoutLagCount(tiFlashStores, tableID) + if err != nil { + logutil.BgLogger().Error("Fail to get peer count from TiFlash.", + zap.Int64("tableID", tableID)) + return 0, errors.Trace(err) + } + progress := float64(tiflashPeerCount) / float64(regionCount*int(replicaCount)) + if progress > 1 { // when pd do balance + logutil.BgLogger().Debug("TiFlash peer count > pd peer count, maybe doing balance.", + zap.Int64("tableID", tableID), zap.Int("tiflashPeerCount", tiflashPeerCount), zap.Int("regionCount", regionCount), zap.Uint64("replicaCount", replicaCount)) + progress = 1 + } + if progress < 1 { + logutil.BgLogger().Debug("TiFlash replica progress < 1.", + zap.Int64("tableID", tableID), zap.Int("tiflashPeerCount", tiflashPeerCount), zap.Int("regionCount", regionCount), zap.Uint64("replicaCount", replicaCount)) + } + return progress, nil +} + +// CalculateTiFlashProgress calculates TiFlash replica progress. +func (m *TiFlashReplicaManagerCtx) CalculateTiFlashProgress(tableID int64, replicaCount uint64, tiFlashStores map[int64]helper.StoreStat) (float64, error) { + return calculateTiFlashProgress(tableID, replicaCount, tiFlashStores) +} + +// UpdateTiFlashProgressCache updates tiflashProgressCache +func (m *TiFlashReplicaManagerCtx) UpdateTiFlashProgressCache(tableID int64, progress float64) { + m.Lock() + defer m.Unlock() + m.tiflashProgressCache[tableID] = progress +} + +// GetTiFlashProgressFromCache gets tiflash replica progress from tiflashProgressCache +func (m *TiFlashReplicaManagerCtx) GetTiFlashProgressFromCache(tableID int64) (float64, bool) { + m.RLock() + defer m.RUnlock() + progress, ok := m.tiflashProgressCache[tableID] + return progress, ok +} + +// DeleteTiFlashProgressFromCache delete tiflash replica progress from tiflashProgressCache +func (m *TiFlashReplicaManagerCtx) DeleteTiFlashProgressFromCache(tableID int64) { + m.Lock() + defer m.Unlock() + delete(m.tiflashProgressCache, tableID) +} + +// CleanTiFlashProgressCache clean progress cache +func (m *TiFlashReplicaManagerCtx) CleanTiFlashProgressCache() { + m.Lock() + defer m.Unlock() + m.tiflashProgressCache = make(map[int64]float64) +} + // SetTiFlashGroupConfig sets the tiflash's rule group config -func (m *TiFlashPDPlacementManager) SetTiFlashGroupConfig(ctx context.Context) error { +func (m *TiFlashReplicaManagerCtx) SetTiFlashGroupConfig(ctx context.Context) error { res, err := doRequest(ctx, "GetRuleGroupConfig", m.etcdCli.Endpoints(), @@ -123,7 +219,7 @@ func (m *TiFlashPDPlacementManager) SetTiFlashGroupConfig(ctx context.Context) e } // SetPlacementRule is a helper function to set placement rule. -func (m *TiFlashPDPlacementManager) SetPlacementRule(ctx context.Context, rule placement.TiFlashRule) error { +func (m *TiFlashReplicaManagerCtx) SetPlacementRule(ctx context.Context, rule placement.TiFlashRule) error { if err := m.SetTiFlashGroupConfig(ctx); err != nil { return err } @@ -138,31 +234,31 @@ func (m *TiFlashPDPlacementManager) SetPlacementRule(ctx context.Context, rule p return errors.Trace(err) } if res == nil { - return fmt.Errorf("TiFlashPDPlacementManager returns error in SetPlacementRule") + return fmt.Errorf("TiFlashReplicaManagerCtx returns error in SetPlacementRule") } return nil } // DeletePlacementRule is to delete placement rule for certain group. -func (m *TiFlashPDPlacementManager) DeletePlacementRule(ctx context.Context, group string, ruleID string) error { +func (m *TiFlashReplicaManagerCtx) DeletePlacementRule(ctx context.Context, group string, ruleID string) error { res, err := doRequest(ctx, "DeletePlacementRule", m.etcdCli.Endpoints(), path.Join(pdapi.Config, "rule", group, ruleID), "DELETE", nil) if err != nil { return errors.Trace(err) } if res == nil { - return fmt.Errorf("TiFlashPDPlacementManager returns error in DeletePlacementRule") + return fmt.Errorf("TiFlashReplicaManagerCtx returns error in DeletePlacementRule") } return nil } // GetGroupRules to get all placement rule in a certain group. -func (m *TiFlashPDPlacementManager) GetGroupRules(ctx context.Context, group string) ([]placement.TiFlashRule, error) { +func (m *TiFlashReplicaManagerCtx) GetGroupRules(ctx context.Context, group string) ([]placement.TiFlashRule, error) { res, err := doRequest(ctx, "GetGroupRules", m.etcdCli.Endpoints(), path.Join(pdapi.Config, "rules", "group", group), "GET", nil) if err != nil { return nil, errors.Trace(err) } if res == nil { - return nil, fmt.Errorf("TiFlashPDPlacementManager returns error in GetGroupRules") + return nil, fmt.Errorf("TiFlashReplicaManagerCtx returns error in GetGroupRules") } var rules []placement.TiFlashRule @@ -175,7 +271,7 @@ func (m *TiFlashPDPlacementManager) GetGroupRules(ctx context.Context, group str } // PostAccelerateSchedule sends `regions/accelerate-schedule` request. -func (m *TiFlashPDPlacementManager) PostAccelerateSchedule(ctx context.Context, tableID int64) error { +func (m *TiFlashReplicaManagerCtx) PostAccelerateSchedule(ctx context.Context, tableID int64) error { startKey := tablecodec.GenTableRecordPrefix(tableID) endKey := tablecodec.EncodeTablePrefix(tableID + 1) startKey = codec.EncodeBytes([]byte{}, startKey) @@ -195,19 +291,19 @@ func (m *TiFlashPDPlacementManager) PostAccelerateSchedule(ctx context.Context, return errors.Trace(err) } if res == nil { - return fmt.Errorf("TiFlashPDPlacementManager returns error in PostAccelerateSchedule") + return fmt.Errorf("TiFlashReplicaManagerCtx returns error in PostAccelerateSchedule") } return nil } -// GetPDRegionRecordStats is a helper function calling `/stats/region`. -func (m *TiFlashPDPlacementManager) GetPDRegionRecordStats(ctx context.Context, tableID int64, stats *helper.PDRegionStats) error { +// GetRegionCountFromPD is a helper function calling `/stats/region`. +func (m *TiFlashReplicaManagerCtx) GetRegionCountFromPD(ctx context.Context, tableID int64, regionCount *int) error { startKey := tablecodec.GenTableRecordPrefix(tableID) endKey := tablecodec.EncodeTablePrefix(tableID + 1) startKey = codec.EncodeBytes([]byte{}, startKey) endKey = codec.EncodeBytes([]byte{}, endKey) - p := fmt.Sprintf("/pd/api/v1/stats/region?start_key=%s&end_key=%s", + p := fmt.Sprintf("/pd/api/v1/stats/region?start_key=%s&end_key=%s&count", url.QueryEscape(string(startKey)), url.QueryEscape(string(endKey))) res, err := doRequest(ctx, "GetPDRegionStats", m.etcdCli.Endpoints(), p, "GET", nil) @@ -215,25 +311,26 @@ func (m *TiFlashPDPlacementManager) GetPDRegionRecordStats(ctx context.Context, return errors.Trace(err) } if res == nil { - return fmt.Errorf("TiFlashPDPlacementManager returns error in GetPDRegionRecordStats") + return fmt.Errorf("TiFlashReplicaManagerCtx returns error in GetRegionCountFromPD") } - - err = json.Unmarshal(res, stats) + var stats helper.PDRegionStats + err = json.Unmarshal(res, &stats) if err != nil { return errors.Trace(err) } + *regionCount = stats.Count return nil } // GetStoresStat gets the TiKV store information by accessing PD's api. -func (m *TiFlashPDPlacementManager) GetStoresStat(ctx context.Context) (*helper.StoresStat, error) { +func (m *TiFlashReplicaManagerCtx) GetStoresStat(ctx context.Context) (*helper.StoresStat, error) { var storesStat helper.StoresStat res, err := doRequest(ctx, "GetStoresStat", m.etcdCli.Endpoints(), pdapi.Stores, "GET", nil) if err != nil { return nil, errors.Trace(err) } if res == nil { - return nil, fmt.Errorf("TiFlashPDPlacementManager returns error in GetStoresStat") + return nil, fmt.Errorf("TiFlashReplicaManagerCtx returns error in GetStoresStat") } err = json.Unmarshal(res, &storesStat) @@ -243,11 +340,12 @@ func (m *TiFlashPDPlacementManager) GetStoresStat(ctx context.Context) (*helper. return &storesStat, err } -type mockTiFlashPlacementManager struct { - sync.Mutex +type mockTiFlashReplicaManagerCtx struct { + sync.RWMutex // Set to nil if there is no need to set up a mock TiFlash server. // Otherwise use NewMockTiFlash to create one. - tiflash *MockTiFlash + tiflash *MockTiFlash + tiflashProgressCache map[int64]float64 } func makeBaseRule() placement.TiFlashRule { @@ -478,16 +576,11 @@ func (tiflash *MockTiFlash) HandlePostAccelerateSchedule(endKey string) error { return nil } -// HandleGetPDRegionRecordStats is mock function for GetPDRegionRecordStats. +// HandleGetPDRegionRecordStats is mock function for GetRegionCountFromPD. // It currently always returns 1 Region for convenience. func (tiflash *MockTiFlash) HandleGetPDRegionRecordStats(_ int64) helper.PDRegionStats { return helper.PDRegionStats{ - Count: 1, - EmptyCount: 1, - StorageSize: 1, - StorageKeys: 1, - StoreLeaderCount: map[uint64]int{1: 1}, - StorePeerCount: map[uint64]int{1: 1}, + Count: 1, } } @@ -654,15 +747,49 @@ func (tiflash *MockTiFlash) PdSwitch(enabled bool) { tiflash.PdEnabled = enabled } +// CalculateTiFlashProgress return truncated string to avoid float64 comparison. +func (m *mockTiFlashReplicaManagerCtx) CalculateTiFlashProgress(tableID int64, replicaCount uint64, tiFlashStores map[int64]helper.StoreStat) (float64, error) { + return calculateTiFlashProgress(tableID, replicaCount, tiFlashStores) +} + +// UpdateTiFlashProgressCache updates tiflashProgressCache +func (m *mockTiFlashReplicaManagerCtx) UpdateTiFlashProgressCache(tableID int64, progress float64) { + m.Lock() + defer m.Unlock() + m.tiflashProgressCache[tableID] = progress +} + +// GetTiFlashProgressFromCache gets tiflash replica progress from tiflashProgressCache +func (m *mockTiFlashReplicaManagerCtx) GetTiFlashProgressFromCache(tableID int64) (float64, bool) { + m.RLock() + defer m.RUnlock() + progress, ok := m.tiflashProgressCache[tableID] + return progress, ok +} + +// DeleteTiFlashProgressFromCache delete tiflash replica progress from tiflashProgressCache +func (m *mockTiFlashReplicaManagerCtx) DeleteTiFlashProgressFromCache(tableID int64) { + m.Lock() + defer m.Unlock() + delete(m.tiflashProgressCache, tableID) +} + +// CleanTiFlashProgressCache clean progress cache +func (m *mockTiFlashReplicaManagerCtx) CleanTiFlashProgressCache() { + m.Lock() + defer m.Unlock() + m.tiflashProgressCache = make(map[int64]float64) +} + // SetMockTiFlash is set a mock TiFlash server. -func (m *mockTiFlashPlacementManager) SetMockTiFlash(tiflash *MockTiFlash) { +func (m *mockTiFlashReplicaManagerCtx) SetMockTiFlash(tiflash *MockTiFlash) { m.Lock() defer m.Unlock() m.tiflash = tiflash } // SetTiFlashGroupConfig sets the tiflash's rule group config -func (m *mockTiFlashPlacementManager) SetTiFlashGroupConfig(_ context.Context) error { +func (m *mockTiFlashReplicaManagerCtx) SetTiFlashGroupConfig(_ context.Context) error { m.Lock() defer m.Unlock() if m.tiflash == nil { @@ -673,7 +800,7 @@ func (m *mockTiFlashPlacementManager) SetTiFlashGroupConfig(_ context.Context) e } // SetPlacementRule is a helper function to set placement rule. -func (m *mockTiFlashPlacementManager) SetPlacementRule(ctx context.Context, rule placement.TiFlashRule) error { +func (m *mockTiFlashReplicaManagerCtx) SetPlacementRule(ctx context.Context, rule placement.TiFlashRule) error { m.Lock() defer m.Unlock() if m.tiflash == nil { @@ -683,7 +810,7 @@ func (m *mockTiFlashPlacementManager) SetPlacementRule(ctx context.Context, rule } // DeletePlacementRule is to delete placement rule for certain group. -func (m *mockTiFlashPlacementManager) DeletePlacementRule(ctx context.Context, group string, ruleID string) error { +func (m *mockTiFlashReplicaManagerCtx) DeletePlacementRule(ctx context.Context, group string, ruleID string) error { m.Lock() defer m.Unlock() if m.tiflash == nil { @@ -695,7 +822,7 @@ func (m *mockTiFlashPlacementManager) DeletePlacementRule(ctx context.Context, g } // GetGroupRules to get all placement rule in a certain group. -func (m *mockTiFlashPlacementManager) GetGroupRules(ctx context.Context, group string) ([]placement.TiFlashRule, error) { +func (m *mockTiFlashReplicaManagerCtx) GetGroupRules(ctx context.Context, group string) ([]placement.TiFlashRule, error) { m.Lock() defer m.Unlock() if m.tiflash == nil { @@ -705,7 +832,7 @@ func (m *mockTiFlashPlacementManager) GetGroupRules(ctx context.Context, group s } // PostAccelerateSchedule sends `regions/accelerate-schedule` request. -func (m *mockTiFlashPlacementManager) PostAccelerateSchedule(ctx context.Context, tableID int64) error { +func (m *mockTiFlashReplicaManagerCtx) PostAccelerateSchedule(ctx context.Context, tableID int64) error { m.Lock() defer m.Unlock() if m.tiflash == nil { @@ -716,19 +843,20 @@ func (m *mockTiFlashPlacementManager) PostAccelerateSchedule(ctx context.Context return m.tiflash.HandlePostAccelerateSchedule(hex.EncodeToString(endKey)) } -// GetPDRegionRecordStats is a helper function calling `/stats/region`. -func (m *mockTiFlashPlacementManager) GetPDRegionRecordStats(ctx context.Context, tableID int64, stats *helper.PDRegionStats) error { +// GetRegionCountFromPD is a helper function calling `/stats/region`. +func (m *mockTiFlashReplicaManagerCtx) GetRegionCountFromPD(ctx context.Context, tableID int64, regionCount *int) error { m.Lock() defer m.Unlock() if m.tiflash == nil { return nil } - *stats = m.tiflash.HandleGetPDRegionRecordStats(tableID) + stats := m.tiflash.HandleGetPDRegionRecordStats(tableID) + *regionCount = stats.Count return nil } // GetStoresStat gets the TiKV store information by accessing PD's api. -func (m *mockTiFlashPlacementManager) GetStoresStat(ctx context.Context) (*helper.StoresStat, error) { +func (m *mockTiFlashReplicaManagerCtx) GetStoresStat(ctx context.Context) (*helper.StoresStat, error) { m.Lock() defer m.Unlock() if m.tiflash == nil { @@ -737,8 +865,8 @@ func (m *mockTiFlashPlacementManager) GetStoresStat(ctx context.Context) (*helpe return m.tiflash.HandleGetStoresStat(), nil } -// Close is called to close mockTiFlashPlacementManager. -func (m *mockTiFlashPlacementManager) Close(ctx context.Context) { +// Close is called to close mockTiFlashReplicaManager. +func (m *mockTiFlashReplicaManagerCtx) Close(ctx context.Context) { m.Lock() defer m.Unlock() if m.tiflash == nil { diff --git a/domain/main_test.go b/domain/main_test.go index 163fedbad111a..f236b8461fa12 100644 --- a/domain/main_test.go +++ b/domain/main_test.go @@ -27,6 +27,7 @@ func TestMain(m *testing.M) { testsetup.SetupForCommonTest() opts := []goleak.Option{ goleak.IgnoreTopFunction("github.com/golang/glog.(*loggingT).flushDaemon"), + goleak.IgnoreTopFunction("github.com/lestrrat-go/httprc.runFetchWorker"), goleak.IgnoreTopFunction("go.etcd.io/etcd/client/pkg/v3/logutil.(*MergeLogger).outputLoop"), goleak.IgnoreTopFunction("go.opencensus.io/stats/view.(*worker).start"), } diff --git a/domain/plan_replayer.go b/domain/plan_replayer.go index b207f904a6608..efc2e8ad21429 100644 --- a/domain/plan_replayer.go +++ b/domain/plan_replayer.go @@ -15,7 +15,8 @@ package domain import ( - "errors" + "context" + "fmt" "io/ioutil" "os" "path/filepath" @@ -24,7 +25,19 @@ import ( "sync" "time" + "github.com/pingcap/errors" + "github.com/pingcap/tidb/bindinfo" + "github.com/pingcap/tidb/config" + "github.com/pingcap/tidb/domain/infosync" + "github.com/pingcap/tidb/kv" + "github.com/pingcap/tidb/parser/ast" + "github.com/pingcap/tidb/parser/terror" + "github.com/pingcap/tidb/sessionctx" + "github.com/pingcap/tidb/sessionctx/variable" + "github.com/pingcap/tidb/statistics/handle" + "github.com/pingcap/tidb/util/chunk" "github.com/pingcap/tidb/util/logutil" + "github.com/pingcap/tidb/util/sqlexec" "go.uber.org/zap" ) @@ -34,12 +47,18 @@ type dumpFileGcChecker struct { sync.Mutex gcLease time.Duration paths []string + sctx sessionctx.Context } // GetPlanReplayerDirName returns plan replayer directory path. // The path is related to the process id. func GetPlanReplayerDirName() string { - return filepath.Join(os.TempDir(), "replayer", strconv.Itoa(os.Getpid())) + tidbLogDir := filepath.Dir(config.GetGlobalConfig().Log.File.Filename) + return filepath.Join(tidbLogDir, "replayer") +} + +func parseType(s string) string { + return strings.Split(s, "_")[0] } func parseTime(s string) (time.Time, error) { @@ -66,6 +85,10 @@ func (p *dumpFileGcChecker) gcDumpFiles(t time.Duration) { } } +func (p *dumpFileGcChecker) setupSctx(sctx sessionctx.Context) { + p.sctx = sctx +} + func (p *dumpFileGcChecker) gcDumpFilesByPath(path string, t time.Duration) { files, err := ioutil.ReadDir(path) if err != nil { @@ -82,6 +105,7 @@ func (p *dumpFileGcChecker) gcDumpFilesByPath(path string, t time.Duration) { logutil.BgLogger().Error("[dumpFileGcChecker] parseTime failed", zap.Error(err), zap.String("filename", fileName)) continue } + isPlanReplayer := parseType(fileName) == "replayer" if !createTime.After(gcTime) { err := os.Remove(filepath.Join(path, f.Name())) if err != nil { @@ -89,6 +113,187 @@ func (p *dumpFileGcChecker) gcDumpFilesByPath(path string, t time.Duration) { continue } logutil.BgLogger().Info("dumpFileGcChecker successful", zap.String("filename", fileName)) + if isPlanReplayer && p.sctx != nil { + deletePlanReplayerStatus(context.Background(), p.sctx, fileName) + } + } + } +} + +type planReplayerHandle struct { + *planReplayerTaskCollectorHandle +} + +type planReplayerTaskCollectorHandle struct { + taskMu struct { + sync.RWMutex + tasks map[PlanReplayerTaskKey]struct{} + } + sctx sessionctx.Context +} + +func deletePlanReplayerStatus(ctx context.Context, sctx sessionctx.Context, token string) { + ctx1 := kv.WithInternalSourceType(ctx, kv.InternalTxnStats) + exec := sctx.(sqlexec.SQLExecutor) + _, err := exec.ExecuteInternal(ctx1, fmt.Sprintf("delete from mysql.plan_replayer_status where token = %v", token)) + if err != nil { + logutil.BgLogger().Warn("delete mysql.plan_replayer_status record failed", zap.String("token", token), zap.Error(err)) + } +} + +// insertPlanReplayerStatus insert mysql.plan_replayer_status record +func insertPlanReplayerStatus(ctx context.Context, sctx sessionctx.Context, records []PlanReplayerStatusRecord) { + ctx1 := kv.WithInternalSourceType(ctx, kv.InternalTxnStats) + var instance string + serverInfo, err := infosync.GetServerInfo() + if err != nil { + logutil.BgLogger().Error("failed to get server info", zap.Error(err)) + instance = "unknown" + } else { + instance = fmt.Sprintf("%s:%d", serverInfo.IP, serverInfo.Port) + } + for _, record := range records { + if !record.Internal { + if len(record.FailedReason) > 0 { + insertExternalPlanReplayerErrorStatusRecord(ctx1, sctx, instance, record) + } else { + insertExternalPlanReplayerSuccessStatusRecord(ctx1, sctx, instance, record) + } } } } + +func insertExternalPlanReplayerErrorStatusRecord(ctx context.Context, sctx sessionctx.Context, instance string, record PlanReplayerStatusRecord) { + exec := sctx.(sqlexec.SQLExecutor) + _, err := exec.ExecuteInternal(ctx, fmt.Sprintf( + "insert into mysql.plan_replayer_status (origin_sql, fail_reason, instance) values ('%s','%s','%s')", + record.OriginSQL, record.FailedReason, instance)) + if err != nil { + logutil.BgLogger().Warn("insert mysql.plan_replayer_status record failed", + zap.Error(err)) + } +} + +func insertExternalPlanReplayerSuccessStatusRecord(ctx context.Context, sctx sessionctx.Context, instance string, record PlanReplayerStatusRecord) { + exec := sctx.(sqlexec.SQLExecutor) + _, err := exec.ExecuteInternal(ctx, fmt.Sprintf( + "insert into mysql.plan_replayer_status (origin_sql, token, instance) values ('%s','%s','%s')", + record.OriginSQL, record.Token, instance)) + if err != nil { + logutil.BgLogger().Warn("insert mysql.plan_replayer_status record failed", + zap.Error(err)) + } +} + +// CollectPlanReplayerTask collects all unhandled plan replayer task +func (h *planReplayerTaskCollectorHandle) CollectPlanReplayerTask(ctx context.Context) error { + ctx1 := kv.WithInternalSourceType(ctx, kv.InternalTxnStats) + allKeys, err := h.collectAllPlanReplayerTask(ctx1) + if err != nil { + return err + } + tasks := make([]PlanReplayerTaskKey, 0) + for _, key := range allKeys { + unhandled, err := checkUnHandledReplayerTask(ctx1, h.sctx, key) + if err != nil { + return err + } + if unhandled { + tasks = append(tasks, key) + } + } + h.setupTasks(tasks) + return nil +} + +// GetTasks get all tasks +func (h *planReplayerTaskCollectorHandle) GetTasks() []PlanReplayerTaskKey { + tasks := make([]PlanReplayerTaskKey, 0) + h.taskMu.RLock() + defer h.taskMu.RUnlock() + for taskKey := range h.taskMu.tasks { + tasks = append(tasks, taskKey) + } + return tasks +} + +func (h *planReplayerTaskCollectorHandle) setupTasks(tasks []PlanReplayerTaskKey) { + r := make(map[PlanReplayerTaskKey]struct{}) + for _, task := range tasks { + r[task] = struct{}{} + } + h.taskMu.Lock() + defer h.taskMu.Unlock() + h.taskMu.tasks = r +} + +func (h *planReplayerTaskCollectorHandle) collectAllPlanReplayerTask(ctx context.Context) ([]PlanReplayerTaskKey, error) { + exec := h.sctx.(sqlexec.SQLExecutor) + rs, err := exec.ExecuteInternal(ctx, "select sql_digest, plan_digest from mysql.plan_replayer_task") + if err != nil { + return nil, err + } + if rs == nil { + return nil, nil + } + var rows []chunk.Row + defer terror.Call(rs.Close) + if rows, err = sqlexec.DrainRecordSet(ctx, rs, 8); err != nil { + return nil, errors.Trace(err) + } + allKeys := make([]PlanReplayerTaskKey, 0, len(rows)) + for _, row := range rows { + sqlDigest, planDigest := row.GetString(0), row.GetString(1) + allKeys = append(allKeys, PlanReplayerTaskKey{ + sqlDigest: sqlDigest, + planDigest: planDigest, + }) + } + return allKeys, nil +} + +func checkUnHandledReplayerTask(ctx context.Context, sctx sessionctx.Context, task PlanReplayerTaskKey) (bool, error) { + exec := sctx.(sqlexec.SQLExecutor) + rs, err := exec.ExecuteInternal(ctx, fmt.Sprintf("select * from mysql.plan_replayer_status where sql_digest = '%v' and plan_digest = '%v' and fail_reason is null", task.sqlDigest, task.planDigest)) + if err != nil { + return false, err + } + if rs == nil { + return true, nil + } + var rows []chunk.Row + defer terror.Call(rs.Close) + if rows, err = sqlexec.DrainRecordSet(ctx, rs, 8); err != nil { + return false, errors.Trace(err) + } + if len(rows) > 0 { + return false, nil + } + return true, nil +} + +// PlanReplayerStatusRecord indicates record in mysql.plan_replayer_status +type PlanReplayerStatusRecord struct { + Internal bool + OriginSQL string + Token string + FailedReason string +} + +// PlanReplayerTaskKey indicates key of a plan replayer task +type PlanReplayerTaskKey struct { + sqlDigest string + planDigest string +} + +// PlanReplayerDumpTask wrap the params for plan replayer dump +type PlanReplayerDumpTask struct { + SessionBindings []*bindinfo.BindRecord + EncodedPlan string + FileName string + Zf *os.File + SessionVars *variable.SessionVars + TblStats map[int64]*handle.JSONTable + ExecStmts []ast.StmtNode + Analyze bool +} diff --git a/domain/plan_replayer_dump.go b/domain/plan_replayer_dump.go new file mode 100644 index 0000000000000..93d0278a4ba3d --- /dev/null +++ b/domain/plan_replayer_dump.go @@ -0,0 +1,661 @@ +// Copyright 2022 PingCAP, Inc. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +package domain + +import ( + "archive/zip" + "context" + "encoding/json" + "fmt" + "io" + "strconv" + "strings" + + "github.com/BurntSushi/toml" + "github.com/pingcap/errors" + "github.com/pingcap/tidb/bindinfo" + "github.com/pingcap/tidb/config" + "github.com/pingcap/tidb/infoschema" + "github.com/pingcap/tidb/parser/ast" + "github.com/pingcap/tidb/parser/model" + "github.com/pingcap/tidb/sessionctx" + "github.com/pingcap/tidb/sessionctx/variable" + "github.com/pingcap/tidb/statistics/handle" + "github.com/pingcap/tidb/util/chunk" + "github.com/pingcap/tidb/util/logutil" + "github.com/pingcap/tidb/util/printer" + "github.com/pingcap/tidb/util/sqlexec" + "go.uber.org/zap" +) + +const ( + // PlanReplayerConfigFile indicates config file path for plan replayer + PlanReplayerConfigFile = "config.toml" + // PlanReplayerMetaFile meta file path for plan replayer + PlanReplayerMetaFile = "meta.txt" + // PlanReplayerVariablesFile indicates for session variables file path for plan replayer + PlanReplayerVariablesFile = "variables.toml" + // PlanReplayerTiFlashReplicasFile indicates for table tiflash replica file path for plan replayer + PlanReplayerTiFlashReplicasFile = "table_tiflash_replica.txt" + // PlanReplayerSessionBindingFile indicates session binding file path for plan replayer + PlanReplayerSessionBindingFile = "session_bindings.sql" + // PlanReplayerGlobalBindingFile indicates global binding file path for plan replayer + PlanReplayerGlobalBindingFile = "global_bindings.sql" +) + +type tableNamePair struct { + DBName string + TableName string + IsView bool +} + +type tableNameExtractor struct { + ctx context.Context + executor sqlexec.RestrictedSQLExecutor + is infoschema.InfoSchema + curDB model.CIStr + names map[tableNamePair]struct{} + cteNames map[string]struct{} + err error +} + +func (tne *tableNameExtractor) Enter(in ast.Node) (ast.Node, bool) { + if _, ok := in.(*ast.TableName); ok { + return in, true + } + return in, false +} + +func (tne *tableNameExtractor) Leave(in ast.Node) (ast.Node, bool) { + if tne.err != nil { + return in, true + } + if t, ok := in.(*ast.TableName); ok { + isView, err := tne.handleIsView(t) + if err != nil { + tne.err = err + return in, true + } + tp := tableNamePair{DBName: t.Schema.L, TableName: t.Name.L, IsView: isView} + if tp.DBName == "" { + tp.DBName = tne.curDB.L + } + if _, ok := tne.names[tp]; !ok { + tne.names[tp] = struct{}{} + } + } else if s, ok := in.(*ast.SelectStmt); ok { + if s.With != nil && len(s.With.CTEs) > 0 { + for _, cte := range s.With.CTEs { + tne.cteNames[cte.Name.L] = struct{}{} + } + } + } + return in, true +} + +func (tne *tableNameExtractor) handleIsView(t *ast.TableName) (bool, error) { + schema := t.Schema + if schema.L == "" { + schema = tne.curDB + } + table := t.Name + isView := tne.is.TableIsView(schema, table) + if !isView { + return false, nil + } + viewTbl, err := tne.is.TableByName(schema, table) + if err != nil { + return false, err + } + sql := viewTbl.Meta().View.SelectStmt + node, err := tne.executor.ParseWithParams(tne.ctx, sql) + if err != nil { + return false, err + } + node.Accept(tne) + return true, nil +} + +// DumpPlanReplayerInfo will dump the information about sqls. +// The files will be organized into the following format: +/* + |-meta.txt + |-schema + | |-db1.table1.schema.txt + | |-db2.table2.schema.txt + | |-.... + |-view + | |-db1.view1.view.txt + | |-db2.view2.view.txt + | |-.... + |-stats + | |-stats1.json + | |-stats2.json + | |-.... + |-config.toml + |-table_tiflash_replica.txt + |-variables.toml + |-bindings.sql + |-sql + | |-sql1.sql + | |-sql2.sql + | |-.... + |_explain + |-explain1.txt + |-explain2.txt + |-.... +*/ +func DumpPlanReplayerInfo(ctx context.Context, sctx sessionctx.Context, + task *PlanReplayerDumpTask) (err error) { + zf := task.Zf + fileName := task.FileName + sessionVars := task.SessionVars + execStmts := task.ExecStmts + zw := zip.NewWriter(zf) + records := generateRecords(task) + defer func() { + err = zw.Close() + if err != nil { + logutil.BgLogger().Error("Closing zip writer failed", zap.Error(err), zap.String("filename", fileName)) + } + err = zf.Close() + if err != nil { + logutil.BgLogger().Error("Closing zip file failed", zap.Error(err), zap.String("filename", fileName)) + for i, record := range records { + record.FailedReason = err.Error() + records[i] = record + } + } + insertPlanReplayerStatus(ctx, sctx, records) + }() + // Dump config + if err = dumpConfig(zw); err != nil { + return err + } + + // Dump meta + if err = dumpMeta(zw); err != nil { + return err + } + // Retrieve current DB + dbName := model.NewCIStr(sessionVars.CurrentDB) + do := GetDomain(sctx) + + // Retrieve all tables + pairs, err := extractTableNames(ctx, sctx, execStmts, dbName) + if err != nil { + return errors.AddStack(fmt.Errorf("plan replayer: invalid SQL text, err: %v", err)) + } + + // Dump Schema and View + if err = dumpSchemas(sctx, zw, pairs); err != nil { + return err + } + + // Dump tables tiflash replicas + if err = dumpTiFlashReplica(sctx, zw, pairs); err != nil { + return err + } + + // Dump stats + if err = dumpStats(zw, pairs, task.TblStats, do); err != nil { + return err + } + + // Dump variables + if err = dumpVariables(sctx, sessionVars, zw); err != nil { + return err + } + + // Dump sql + if err = dumpSQLs(execStmts, zw); err != nil { + return err + } + + // Dump session bindings + if len(task.SessionBindings) > 0 { + if err = dumpSessionBindRecords(task.SessionBindings, zw); err != nil { + return err + } + } else { + if err = dumpSessionBindings(sctx, zw); err != nil { + return err + } + } + + // Dump global bindings + if err = dumpGlobalBindings(sctx, zw); err != nil { + return err + } + + if len(task.EncodedPlan) > 0 { + return dumpEncodedPlan(sctx, zw, task.EncodedPlan) + } + // Dump explain + return dumpExplain(sctx, zw, execStmts, task.Analyze) +} + +func generateRecords(task *PlanReplayerDumpTask) []PlanReplayerStatusRecord { + records := make([]PlanReplayerStatusRecord, 0) + if len(task.ExecStmts) > 0 { + for _, execStmt := range task.ExecStmts { + records = append(records, PlanReplayerStatusRecord{ + OriginSQL: execStmt.Text(), + Token: task.FileName, + Internal: false, + }) + } + } + return records +} + +func dumpConfig(zw *zip.Writer) error { + cf, err := zw.Create(PlanReplayerConfigFile) + if err != nil { + return errors.AddStack(err) + } + if err := toml.NewEncoder(cf).Encode(config.GetGlobalConfig()); err != nil { + return errors.AddStack(err) + } + return nil +} + +func dumpMeta(zw *zip.Writer) error { + mt, err := zw.Create(PlanReplayerMetaFile) + if err != nil { + return errors.AddStack(err) + } + _, err = mt.Write([]byte(printer.GetTiDBInfo())) + if err != nil { + return errors.AddStack(err) + } + return nil +} + +func dumpTiFlashReplica(ctx sessionctx.Context, zw *zip.Writer, pairs map[tableNamePair]struct{}) error { + bf, err := zw.Create(PlanReplayerTiFlashReplicasFile) + if err != nil { + return errors.AddStack(err) + } + is := GetDomain(ctx).InfoSchema() + for pair := range pairs { + dbName := model.NewCIStr(pair.DBName) + tableName := model.NewCIStr(pair.TableName) + t, err := is.TableByName(dbName, tableName) + if err != nil { + logutil.BgLogger().Warn("failed to find table info", zap.Error(err), + zap.String("dbName", dbName.L), zap.String("tableName", tableName.L)) + continue + } + if t.Meta().TiFlashReplica != nil && t.Meta().TiFlashReplica.Count > 0 { + row := []string{ + pair.DBName, pair.TableName, strconv.FormatUint(t.Meta().TiFlashReplica.Count, 10), + } + fmt.Fprintf(bf, "%s\n", strings.Join(row, "\t")) + } + } + return nil +} + +func dumpSchemas(ctx sessionctx.Context, zw *zip.Writer, pairs map[tableNamePair]struct{}) error { + for pair := range pairs { + err := getShowCreateTable(pair, zw, ctx) + if err != nil { + return err + } + } + return nil +} + +func dumpStats(zw *zip.Writer, pairs map[tableNamePair]struct{}, tblJSONStats map[int64]*handle.JSONTable, do *Domain) error { + for pair := range pairs { + if pair.IsView { + continue + } + jsonTbl, err := getStatsForTable(do, tblJSONStats, pair) + if err != nil { + return err + } + statsFw, err := zw.Create(fmt.Sprintf("stats/%v.%v.json", pair.DBName, pair.TableName)) + if err != nil { + return errors.AddStack(err) + } + data, err := json.Marshal(jsonTbl) + if err != nil { + return errors.AddStack(err) + } + _, err = statsFw.Write(data) + if err != nil { + return errors.AddStack(err) + } + } + return nil +} + +func dumpSQLs(execStmts []ast.StmtNode, zw *zip.Writer) error { + for i, stmtExec := range execStmts { + zf, err := zw.Create(fmt.Sprintf("sql/sql%v.sql", i)) + if err != nil { + return err + } + _, err = zf.Write([]byte(stmtExec.Text())) + if err != nil { + return err + } + } + return nil +} + +func dumpVariables(sctx sessionctx.Context, sessionVars *variable.SessionVars, zw *zip.Writer) error { + varMap := make(map[string]string) + for _, v := range variable.GetSysVars() { + if v.IsNoop && !variable.EnableNoopVariables.Load() { + continue + } + if infoschema.SysVarHiddenForSem(sctx, v.Name) { + continue + } + value, err := sessionVars.GetSessionOrGlobalSystemVar(context.Background(), v.Name) + if err != nil { + return errors.Trace(err) + } + varMap[v.Name] = value + } + vf, err := zw.Create(PlanReplayerVariablesFile) + if err != nil { + return errors.AddStack(err) + } + if err := toml.NewEncoder(vf).Encode(varMap); err != nil { + return errors.AddStack(err) + } + return nil +} + +func dumpSessionBindRecords(records []*bindinfo.BindRecord, zw *zip.Writer) error { + sRows := make([][]string, 0) + for _, bindData := range records { + for _, hint := range bindData.Bindings { + sRows = append(sRows, []string{ + bindData.OriginalSQL, + hint.BindSQL, + bindData.Db, + hint.Status, + hint.CreateTime.String(), + hint.UpdateTime.String(), + hint.Charset, + hint.Collation, + hint.Source, + }) + } + } + bf, err := zw.Create(PlanReplayerSessionBindingFile) + if err != nil { + return errors.AddStack(err) + } + for _, row := range sRows { + fmt.Fprintf(bf, "%s\n", strings.Join(row, "\t")) + } + return nil +} + +func dumpSessionBindings(ctx sessionctx.Context, zw *zip.Writer) error { + recordSets, err := ctx.(sqlexec.SQLExecutor).Execute(context.Background(), "show bindings") + if err != nil { + return err + } + sRows, err := resultSetToStringSlice(context.Background(), recordSets[0], true) + if err != nil { + return err + } + bf, err := zw.Create(PlanReplayerSessionBindingFile) + if err != nil { + return errors.AddStack(err) + } + for _, row := range sRows { + fmt.Fprintf(bf, "%s\n", strings.Join(row, "\t")) + } + if len(recordSets) > 0 { + if err := recordSets[0].Close(); err != nil { + return err + } + } + return nil +} + +func dumpGlobalBindings(ctx sessionctx.Context, zw *zip.Writer) error { + recordSets, err := ctx.(sqlexec.SQLExecutor).Execute(context.Background(), "show global bindings") + if err != nil { + return err + } + sRows, err := resultSetToStringSlice(context.Background(), recordSets[0], false) + if err != nil { + return err + } + bf, err := zw.Create(PlanReplayerGlobalBindingFile) + if err != nil { + return errors.AddStack(err) + } + for _, row := range sRows { + fmt.Fprintf(bf, "%s\n", strings.Join(row, "\t")) + } + if len(recordSets) > 0 { + if err := recordSets[0].Close(); err != nil { + return err + } + } + return nil +} + +func dumpEncodedPlan(ctx sessionctx.Context, zw *zip.Writer, encodedPlan string) error { + var recordSets []sqlexec.RecordSet + var err error + recordSets, err = ctx.(sqlexec.SQLExecutor).Execute(context.Background(), fmt.Sprintf("select tidb_decode_plan('%s')", encodedPlan)) + if err != nil { + return err + } + sRows, err := resultSetToStringSlice(context.Background(), recordSets[0], false) + if err != nil { + return err + } + fw, err := zw.Create("explain/sql.txt") + if err != nil { + return errors.AddStack(err) + } + for _, row := range sRows { + fmt.Fprintf(fw, "%s\n", strings.Join(row, "\t")) + } + if len(recordSets) > 0 { + if err := recordSets[0].Close(); err != nil { + return err + } + } + return nil +} + +func dumpExplain(ctx sessionctx.Context, zw *zip.Writer, execStmts []ast.StmtNode, isAnalyze bool) error { + for i, stmtExec := range execStmts { + sql := stmtExec.Text() + var recordSets []sqlexec.RecordSet + var err error + if isAnalyze { + // Explain analyze + recordSets, err = ctx.(sqlexec.SQLExecutor).Execute(context.Background(), fmt.Sprintf("explain analyze %s", sql)) + if err != nil { + return err + } + } else { + // Explain + recordSets, err = ctx.(sqlexec.SQLExecutor).Execute(context.Background(), fmt.Sprintf("explain %s", sql)) + if err != nil { + return err + } + } + sRows, err := resultSetToStringSlice(context.Background(), recordSets[0], false) + if err != nil { + return err + } + fw, err := zw.Create(fmt.Sprintf("explain/sql%v.txt", i)) + if err != nil { + return errors.AddStack(err) + } + for _, row := range sRows { + fmt.Fprintf(fw, "%s\n", strings.Join(row, "\t")) + } + if len(recordSets) > 0 { + if err := recordSets[0].Close(); err != nil { + return err + } + } + } + return nil +} + +func extractTableNames(ctx context.Context, sctx sessionctx.Context, + ExecStmts []ast.StmtNode, curDB model.CIStr) (map[tableNamePair]struct{}, error) { + tableExtractor := &tableNameExtractor{ + ctx: ctx, + executor: sctx.(sqlexec.RestrictedSQLExecutor), + is: GetDomain(sctx).InfoSchema(), + curDB: curDB, + names: make(map[tableNamePair]struct{}), + cteNames: make(map[string]struct{}), + } + for _, execStmt := range ExecStmts { + execStmt.Accept(tableExtractor) + } + if tableExtractor.err != nil { + return nil, tableExtractor.err + } + r := make(map[tableNamePair]struct{}) + for tablePair := range tableExtractor.names { + if tablePair.IsView { + r[tablePair] = struct{}{} + continue + } + // remove cte in table names + _, ok := tableExtractor.cteNames[tablePair.TableName] + if !ok { + r[tablePair] = struct{}{} + } + } + return r, nil +} + +func getStatsForTable(do *Domain, tblJSONStats map[int64]*handle.JSONTable, pair tableNamePair) (*handle.JSONTable, error) { + is := do.InfoSchema() + h := do.StatsHandle() + tbl, err := is.TableByName(model.NewCIStr(pair.DBName), model.NewCIStr(pair.TableName)) + if err != nil { + return nil, err + } + js, ok := tblJSONStats[tbl.Meta().ID] + if ok && js != nil { + return js, nil + } + js, err = h.DumpStatsToJSON(pair.DBName, tbl.Meta(), nil, true) + return js, err +} + +func getShowCreateTable(pair tableNamePair, zw *zip.Writer, ctx sessionctx.Context) error { + recordSets, err := ctx.(sqlexec.SQLExecutor).Execute(context.Background(), fmt.Sprintf("show create table `%v`.`%v`", pair.DBName, pair.TableName)) + if err != nil { + return err + } + sRows, err := resultSetToStringSlice(context.Background(), recordSets[0], false) + if err != nil { + return err + } + var fw io.Writer + if pair.IsView { + fw, err = zw.Create(fmt.Sprintf("view/%v.%v.view.txt", pair.DBName, pair.TableName)) + if err != nil { + return errors.AddStack(err) + } + if len(sRows) == 0 || len(sRows[0]) != 4 { + return fmt.Errorf("plan replayer: get create view %v.%v failed", pair.DBName, pair.TableName) + } + } else { + fw, err = zw.Create(fmt.Sprintf("schema/%v.%v.schema.txt", pair.DBName, pair.TableName)) + if err != nil { + return errors.AddStack(err) + } + if len(sRows) == 0 || len(sRows[0]) != 2 { + return fmt.Errorf("plan replayer: get create table %v.%v failed", pair.DBName, pair.TableName) + } + } + fmt.Fprintf(fw, "create database if not exists `%v`; use `%v`;", pair.DBName, pair.DBName) + fmt.Fprintf(fw, "%s", sRows[0][1]) + if len(recordSets) > 0 { + if err := recordSets[0].Close(); err != nil { + return err + } + } + return nil +} + +func resultSetToStringSlice(ctx context.Context, rs sqlexec.RecordSet, emptyAsNil bool) ([][]string, error) { + rows, err := getRows(ctx, rs) + if err != nil { + return nil, err + } + err = rs.Close() + if err != nil { + return nil, err + } + sRows := make([][]string, len(rows)) + for i, row := range rows { + iRow := make([]string, row.Len()) + for j := 0; j < row.Len(); j++ { + if row.IsNull(j) { + iRow[j] = "" + } else { + d := row.GetDatum(j, &rs.Fields()[j].Column.FieldType) + iRow[j], err = d.ToString() + if err != nil { + return nil, err + } + if len(iRow[j]) < 1 && emptyAsNil { + iRow[j] = "" + } + } + } + sRows[i] = iRow + } + return sRows, nil +} + +func getRows(ctx context.Context, rs sqlexec.RecordSet) ([]chunk.Row, error) { + if rs == nil { + return nil, nil + } + var rows []chunk.Row + req := rs.NewChunk(nil) + // Must reuse `req` for imitating server.(*clientConn).writeChunks + for { + err := rs.Next(ctx, req) + if err != nil { + return nil, err + } + if req.NumRows() == 0 { + break + } + + iter := chunk.NewIterator4Chunk(req.CopyConstruct()) + for row := iter.Begin(); row != iter.End(); row = iter.Next() { + rows = append(rows, row) + } + } + return rows, nil +} diff --git a/domain/plan_replayer_handle_test.go b/domain/plan_replayer_handle_test.go new file mode 100644 index 0000000000000..2c25f56e15045 --- /dev/null +++ b/domain/plan_replayer_handle_test.go @@ -0,0 +1,64 @@ +// Copyright 2022 PingCAP, Inc. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +package domain_test + +import ( + "context" + "testing" + + "github.com/pingcap/tidb/testkit" + "github.com/stretchr/testify/require" +) + +func TestPlanReplayerHandleCollectTask(t *testing.T) { + store, dom := testkit.CreateMockStoreAndDomain(t) + tk := testkit.NewTestKit(t, store) + prHandle := dom.GetPlanReplayerHandle() + + // assert 1 task + tk.MustExec("delete from mysql.plan_replayer_task") + tk.MustExec("delete from mysql.plan_replayer_status") + tk.MustExec("insert into mysql.plan_replayer_task (sql_digest, plan_digest) values ('123','123');") + err := prHandle.CollectPlanReplayerTask(context.Background()) + require.NoError(t, err) + require.Len(t, prHandle.GetTasks(), 1) + + // assert no task + tk.MustExec("delete from mysql.plan_replayer_task") + tk.MustExec("delete from mysql.plan_replayer_status") + err = prHandle.CollectPlanReplayerTask(context.Background()) + require.NoError(t, err) + require.Len(t, prHandle.GetTasks(), 0) + + // assert 1 unhandled task + tk.MustExec("delete from mysql.plan_replayer_task") + tk.MustExec("delete from mysql.plan_replayer_status") + tk.MustExec("insert into mysql.plan_replayer_task (sql_digest, plan_digest) values ('123','123');") + tk.MustExec("insert into mysql.plan_replayer_task (sql_digest, plan_digest) values ('345','345');") + tk.MustExec("insert into mysql.plan_replayer_status(sql_digest, plan_digest, token, instance) values ('123','123','123','123')") + err = prHandle.CollectPlanReplayerTask(context.Background()) + require.NoError(t, err) + require.Len(t, prHandle.GetTasks(), 1) + + // assert 2 unhandled task + tk.MustExec("delete from mysql.plan_replayer_task") + tk.MustExec("delete from mysql.plan_replayer_status") + tk.MustExec("insert into mysql.plan_replayer_task (sql_digest, plan_digest) values ('123','123');") + tk.MustExec("insert into mysql.plan_replayer_task (sql_digest, plan_digest) values ('345','345');") + tk.MustExec("insert into mysql.plan_replayer_status(sql_digest, plan_digest, fail_reason, instance) values ('123','123','123','123')") + err = prHandle.CollectPlanReplayerTask(context.Background()) + require.NoError(t, err) + require.Len(t, prHandle.GetTasks(), 2) +} diff --git a/domain/schema_validator.go b/domain/schema_validator.go index 511553feafad8..6f028fdca2e70 100644 --- a/domain/schema_validator.go +++ b/domain/schema_validator.go @@ -153,6 +153,9 @@ func (s *schemaValidator) Update(leaseGrantTS uint64, oldVer, currVer int64, cha if ac == 1< 1 && conn.rebuildConnFn != nil { conn.DBConn, err = conn.rebuildConnFn(conn.DBConn, false) if err != nil { + tctx.L().Warn("rebuild connection failed", zap.Error(err)) return } } diff --git a/dumpling/export/consistency.go b/dumpling/export/consistency.go index 187f5a9073ef4..b46259bc748b9 100644 --- a/dumpling/export/consistency.go +++ b/dumpling/export/consistency.go @@ -42,8 +42,9 @@ func NewConsistencyController(ctx context.Context, conf *Config, session *sql.DB }, nil case ConsistencyTypeLock: return &ConsistencyLockDumpingTables{ - conn: conn, - conf: conf, + conn: conn, + conf: conf, + emptyLockSQL: false, }, nil case ConsistencyTypeSnapshot: if conf.ServerInfo.ServerType != version.ServerTypeTiDB { @@ -118,8 +119,9 @@ func (c *ConsistencyFlushTableWithReadLock) PingContext(ctx context.Context) err // ConsistencyLockDumpingTables execute lock tables read on all tables before dump type ConsistencyLockDumpingTables struct { - conn *sql.Conn - conf *Config + conn *sql.Conn + conf *Config + emptyLockSQL bool } // Setup implements ConsistencyController.Setup @@ -135,7 +137,15 @@ func (c *ConsistencyLockDumpingTables) Setup(tctx *tcontext.Context) error { blockList := make(map[string]map[string]interface{}) return utils.WithRetry(tctx, func() error { lockTablesSQL := buildLockTablesSQL(c.conf.Tables, blockList) - _, err := c.conn.ExecContext(tctx, lockTablesSQL) + var err error + if len(lockTablesSQL) == 0 { + c.emptyLockSQL = true + // transfer to ConsistencyNone + _ = c.conn.Close() + c.conn = nil + } else { + _, err = c.conn.ExecContext(tctx, lockTablesSQL) + } if err == nil { if len(blockList) > 0 { filterTablesFunc(tctx, c.conf, func(db string, tbl string) bool { @@ -166,6 +176,9 @@ func (c *ConsistencyLockDumpingTables) TearDown(ctx context.Context) error { // PingContext implements ConsistencyController.PingContext func (c *ConsistencyLockDumpingTables) PingContext(ctx context.Context) error { + if c.emptyLockSQL { + return nil + } if c.conn == nil { return errors.New("consistency connection has already been closed") } diff --git a/dumpling/export/consistency_test.go b/dumpling/export/consistency_test.go index f93bac90a83a6..555338803d40d 100644 --- a/dumpling/export/consistency_test.go +++ b/dumpling/export/consistency_test.go @@ -107,6 +107,39 @@ func TestConsistencyLockControllerRetry(t *testing.T) { require.NoError(t, mock.ExpectationsWereMet()) } +func TestConsistencyLockControllerEmpty(t *testing.T) { + db, mock, err := sqlmock.New() + require.NoError(t, err) + defer func() { + _ = db.Close() + }() + + ctx, cancel := context.WithCancel(context.Background()) + defer cancel() + tctx := tcontext.Background().WithContext(ctx) + conf := defaultConfigForTest(t) + + conf.ServerInfo.ServerType = version.ServerTypeMySQL + conf.Consistency = ConsistencyTypeLock + conf.Tables = NewDatabaseTables(). + AppendTables("db1", []string{"t1"}, []uint64{1}). + AppendViews("db2", "t4") + mock.ExpectExec("LOCK TABLES `db1`.`t1` READ"). + WillReturnError(&mysql.MySQLError{Number: ErrNoSuchTable, Message: "Table 'db1.t1' doesn't exist"}) + ctrl, _ := NewConsistencyController(ctx, conf, db) + _, ok := ctrl.(*ConsistencyLockDumpingTables) + require.True(t, ok) + require.NoError(t, ctrl.Setup(tctx)) + require.NoError(t, ctrl.TearDown(tctx)) + + // should remove table db1.t1 in tables to dump + expectedDumpTables := NewDatabaseTables(). + AppendViews("db2", "t4") + expectedDumpTables["db1"] = make([]*TableInfo, 0) + require.Equal(t, expectedDumpTables, conf.Tables) + require.NoError(t, mock.ExpectationsWereMet()) +} + func TestResolveAutoConsistency(t *testing.T) { conf := defaultConfigForTest(t) cases := []struct { diff --git a/dumpling/export/dump.go b/dumpling/export/dump.go index 37825895a10de..7e5a81e0f3ce1 100644 --- a/dumpling/export/dump.go +++ b/dumpling/export/dump.go @@ -6,6 +6,7 @@ import ( "bytes" "context" "database/sql" + "database/sql/driver" "encoding/hex" "fmt" "math/big" @@ -37,7 +38,7 @@ import ( "golang.org/x/sync/errgroup" ) -var openDBFunc = sql.Open +var openDBFunc = openDB var errEmptyHandleVals = errors.New("empty handleVals for TiDB table") @@ -55,6 +56,8 @@ type Dumper struct { selectTiDBTableRegionFunc func(tctx *tcontext.Context, conn *BaseConn, meta TableMeta) (pkFields []string, pkVals [][]string, err error) totalTables int64 charsetAndDefaultCollationMap map[string]string + + speedRecorder *SpeedRecorder } // NewDumper returns a new Dumper @@ -78,6 +81,7 @@ func NewDumper(ctx context.Context, conf *Config) (*Dumper, error) { conf: conf, cancelCtx: cancelFn, selectTiDBTableRegionFunc: selectTiDBTableRegion, + speedRecorder: NewSpeedRecorder(), } var err error @@ -200,14 +204,13 @@ func (d *Dumper) Dump() (dumpErr error) { atomic.StoreInt64(&d.totalTables, int64(calculateTableCount(conf.Tables))) - rebuildConn := func(conn *sql.Conn, updateMeta bool) (*sql.Conn, error) { - // make sure that the lock connection is still alive - err1 := conCtrl.PingContext(tctx) - if err1 != nil { - return conn, errors.Trace(err1) - } - // give up the last broken connection - _ = conn.Close() + rebuildMetaConn := func(conn *sql.Conn, updateMeta bool) (*sql.Conn, error) { + _ = conn.Raw(func(dc interface{}) error { + // return an `ErrBadConn` to ensure close the connection, but do not put it back to the pool. + // if we choose to use `Close`, it will always put the connection back to the pool. + return driver.ErrBadConn + }) + newConn, err1 := createConnWithConsistency(tctx, pool, repeatableRead) if err1 != nil { return conn, errors.Trace(err1) @@ -223,11 +226,25 @@ func (d *Dumper) Dump() (dumpErr error) { return conn, nil } - taskChan := make(chan Task, defaultDumpThreads) - AddGauge(d.metrics.taskChannelCapacity, defaultDumpThreads) + rebuildConn := func(conn *sql.Conn, updateMeta bool) (*sql.Conn, error) { + // make sure that the lock connection is still alive + err1 := conCtrl.PingContext(tctx) + if err1 != nil { + return conn, errors.Trace(err1) + } + return rebuildMetaConn(conn, updateMeta) + } + + chanSize := defaultTaskChannelCapacity + failpoint.Inject("SmallDumpChanSize", func() { + chanSize = 1 + }) + taskIn, taskOut := infiniteChan[Task]() + // todo: refine metrics + AddGauge(d.metrics.taskChannelCapacity, float64(chanSize)) wg, writingCtx := errgroup.WithContext(tctx) writerCtx := tctx.WithContext(writingCtx) - writers, tearDownWriters, err := d.startWriters(writerCtx, wg, taskChan, rebuildConn) + writers, tearDownWriters, err := d.startWriters(writerCtx, wg, taskOut, rebuildConn) if err != nil { return err } @@ -272,16 +289,21 @@ func (d *Dumper) Dump() (dumpErr error) { fmt.Printf("tidb_mem_quota_query == %s\n", s) } }) - baseConn := newBaseConn(metaConn, canRebuildConn(conf.Consistency, conf.TransactionalConsistency), rebuildConn) + baseConn := newBaseConn(metaConn, true, rebuildMetaConn) if conf.SQL == "" { - if err = d.dumpDatabases(writerCtx, baseConn, taskChan); err != nil && !errors.ErrorEqual(err, context.Canceled) { + if err = d.dumpDatabases(writerCtx, baseConn, taskIn); err != nil && !errors.ErrorEqual(err, context.Canceled) { return err } } else { - d.dumpSQL(writerCtx, baseConn, taskChan) + d.dumpSQL(writerCtx, baseConn, taskIn) } - close(taskChan) + d.metrics.progressReady.Store(true) + close(taskIn) + failpoint.Inject("EnableLogProgress", func() { + time.Sleep(1 * time.Second) + tctx.L().Debug("progress ready, sleep 1s") + }) _ = baseConn.DBConn.Close() if err := wg.Wait(); err != nil { summary.CollectFailureUnit("dump table data", err) @@ -314,11 +336,16 @@ func (d *Dumper) startWriters(tctx *tcontext.Context, wg *errgroup.Group, taskCh // tctx.L().Debug("finished dumping table data", // zap.String("database", td.Meta.DatabaseName()), // zap.String("table", td.Meta.TableName())) + failpoint.Inject("EnableLogProgress", func() { + time.Sleep(1 * time.Second) + tctx.L().Debug("EnableLogProgress, sleep 1s") + }) } }) writer.setFinishTaskCallBack(func(task Task) { IncGauge(d.metrics.taskChannelCapacity) if td, ok := task.(*TaskTableData); ok { + d.metrics.completedChunks.Add(1) tctx.L().Debug("finish dumping table data task", zap.String("database", td.Meta.DatabaseName()), zap.String("table", td.Meta.TableName()), @@ -435,7 +462,6 @@ func (d *Dumper) dumpDatabases(tctx *tcontext.Context, metaConn *BaseConn, taskC } } } - return nil } @@ -608,6 +634,7 @@ func (d *Dumper) buildConcatTask(tctx *tcontext.Context, conn *BaseConn, meta Ta return } tableDataArr = append(tableDataArr, tableDataInst) + d.metrics.totalChunks.Dec() } for { select { @@ -634,7 +661,7 @@ func (d *Dumper) buildConcatTask(tctx *tcontext.Context, conn *BaseConn, meta Ta return nil, nil } } - return NewTaskTableData(meta, newMultiQueriesChunk(queries, colLen), 0, 1), nil + return d.newTaskTableData(meta, newMultiQueriesChunk(queries, colLen), 0, 1), nil } return nil, err case task := <-tableChan: @@ -646,7 +673,7 @@ func (d *Dumper) buildConcatTask(tctx *tcontext.Context, conn *BaseConn, meta Ta func (d *Dumper) dumpWholeTableDirectly(tctx *tcontext.Context, meta TableMeta, taskChan chan<- Task, partition, orderByClause string, currentChunk, totalChunks int) error { conf := d.conf tableIR := SelectAllFromTable(conf, meta, partition, orderByClause) - task := NewTaskTableData(meta, tableIR, currentChunk, totalChunks) + task := d.newTaskTableData(meta, tableIR, currentChunk, totalChunks) ctxDone := d.sendTaskToChan(tctx, task, taskChan) if ctxDone { return tctx.Err() @@ -759,7 +786,7 @@ func (d *Dumper) concurrentDumpTable(tctx *tcontext.Context, conn *BaseConn, met if len(nullValueCondition) > 0 { nullValueCondition = "" } - task := NewTaskTableData(meta, newTableData(query, selectLen, false), chunkIndex, int(totalChunks)) + task := d.newTaskTableData(meta, newTableData(query, selectLen, false), chunkIndex, int(totalChunks)) ctxDone := d.sendTaskToChan(tctx, task, taskChan) if ctxDone { return tctx.Err() @@ -887,7 +914,8 @@ func (d *Dumper) concurrentDumpTiDBPartitionTables(tctx *tcontext.Context, conn func (d *Dumper) sendConcurrentDumpTiDBTasks(tctx *tcontext.Context, meta TableMeta, taskChan chan<- Task, - handleColNames []string, handleVals [][]string, partition string, startChunkIdx, totalChunk int) error { + handleColNames []string, handleVals [][]string, partition string, + startChunkIdx, totalChunk int) error { db, tbl := meta.DatabaseName(), meta.TableName() if len(handleVals) == 0 { if partition == "" { @@ -903,7 +931,7 @@ func (d *Dumper) sendConcurrentDumpTiDBTasks(tctx *tcontext.Context, for i, w := range where { query := buildSelectQuery(db, tbl, selectField, partition, buildWhereCondition(conf, w), orderByClause) - task := NewTaskTableData(meta, newTableData(query, selectLen, false), i+startChunkIdx, totalChunk) + task := d.newTaskTableData(meta, newTableData(query, selectLen, false), i+startChunkIdx, totalChunk) ctxDone := d.sendTaskToChan(tctx, task, taskChan) if ctxDone { return tctx.Err() @@ -1211,7 +1239,7 @@ func (d *Dumper) dumpSQL(tctx *tcontext.Context, metaConn *BaseConn, taskChan ch conf := d.conf meta := &tableMeta{} data := newTableData(conf.SQL, 0, true) - task := NewTaskTableData(meta, data, 0, 1) + task := d.newTaskTableData(meta, data, 0, 1) c := detectEstimateRows(tctx, metaConn, fmt.Sprintf("EXPLAIN %s", conf.SQL), []string{"rows", "estRows", "count"}) AddCounter(d.metrics.estimateTotalRowsCounter, float64(c)) atomic.StoreInt64(&d.totalTables, int64(1)) @@ -1306,11 +1334,11 @@ func startHTTPService(d *Dumper) error { // openSQLDB is an initialization step of Dumper. func openSQLDB(d *Dumper) error { conf := d.conf - pool, err := sql.Open("mysql", conf.GetDSN("")) + c, err := mysql.NewConnector(conf.GetDriverConfig("")) if err != nil { return errors.Trace(err) } - d.dbHandle = pool + d.dbHandle = sql.OpenDB(c) return nil } @@ -1507,12 +1535,20 @@ func setSessionParam(d *Dumper) error { } } } - if d.dbHandle, err = resetDBWithSessionParams(d.tctx, pool, conf.GetDSN(""), conf.SessionParams); err != nil { + if d.dbHandle, err = resetDBWithSessionParams(d.tctx, pool, conf.GetDriverConfig(""), conf.SessionParams); err != nil { return errors.Trace(err) } return nil } +func openDB(cfg *mysql.Config) (*sql.DB, error) { + c, err := mysql.NewConnector(cfg) + if err != nil { + return nil, errors.Trace(err) + } + return sql.OpenDB(c), nil +} + func (d *Dumper) renewSelectTableRegionFuncForLowerTiDB(tctx *tcontext.Context) error { conf := d.conf if !(conf.ServerInfo.ServerType == version.ServerTypeTiDB && conf.ServerInfo.ServerVersion != nil && conf.ServerInfo.HasTiKV && @@ -1529,7 +1565,7 @@ func (d *Dumper) renewSelectTableRegionFuncForLowerTiDB(tctx *tcontext.Context) d.selectTiDBTableRegionFunc = func(_ *tcontext.Context, _ *BaseConn, meta TableMeta) (pkFields []string, pkVals [][]string, err error) { return nil, nil, errors.Annotatef(errEmptyHandleVals, "table: `%s`.`%s`", escapeString(meta.DatabaseName()), escapeString(meta.TableName())) } - dbHandle, err := openDBFunc("mysql", conf.GetDSN("")) + dbHandle, err := openDBFunc(conf.GetDriverConfig("")) if err != nil { return errors.Trace(err) } @@ -1613,3 +1649,8 @@ func (d *Dumper) renewSelectTableRegionFuncForLowerTiDB(tctx *tcontext.Context) return nil } + +func (d *Dumper) newTaskTableData(meta TableMeta, data TableDataIR, currentChunk, totalChunks int) *TaskTableData { + d.metrics.totalChunks.Add(1) + return NewTaskTableData(meta, data, currentChunk, totalChunks) +} diff --git a/dumpling/export/dump_test.go b/dumpling/export/dump_test.go index 1f18e9e8aa19c..c9a40bba28d6f 100644 --- a/dumpling/export/dump_test.go +++ b/dumpling/export/dump_test.go @@ -18,7 +18,7 @@ import ( "golang.org/x/sync/errgroup" ) -func TestDumpBlock(t *testing.T) { +func TestDumpExit(t *testing.T) { db, mock, err := sqlmock.New() require.NoError(t, err) defer func() { @@ -56,7 +56,6 @@ func TestDumpBlock(t *testing.T) { }) writerCtx := tctx.WithContext(writingCtx) - // simulate taskChan is full taskChan := make(chan Task, 1) taskChan <- &TaskDatabaseMeta{} d.conf.Tables = DatabaseTables{}.AppendTable(database, nil) diff --git a/dumpling/export/main_test.go b/dumpling/export/main_test.go index d66fb40eee907..da19d470dc94f 100644 --- a/dumpling/export/main_test.go +++ b/dumpling/export/main_test.go @@ -49,6 +49,7 @@ func TestMain(m *testing.M) { opts := []goleak.Option{ goleak.IgnoreTopFunction("github.com/golang/glog.(*loggingT).flushDaemon"), + goleak.IgnoreTopFunction("github.com/lestrrat-go/httprc.runFetchWorker"), goleak.IgnoreTopFunction("go.opencensus.io/stats/view.(*worker).start"), } diff --git a/dumpling/export/metrics.go b/dumpling/export/metrics.go index 5546a614049c4..b4f9aa66ac4d1 100644 --- a/dumpling/export/metrics.go +++ b/dumpling/export/metrics.go @@ -8,6 +8,7 @@ import ( "github.com/pingcap/tidb/util/promutil" "github.com/prometheus/client_golang/prometheus" dto "github.com/prometheus/client_model/go" + "go.uber.org/atomic" ) type metrics struct { @@ -19,6 +20,10 @@ type metrics struct { receiveWriteChunkTimeHistogram *prometheus.HistogramVec errorCount *prometheus.CounterVec taskChannelCapacity *prometheus.GaugeVec + // todo: add these to metrics + totalChunks atomic.Int64 + completedChunks atomic.Int64 + progressReady atomic.Bool } func newMetrics(f promutil.Factory, constLabels prometheus.Labels) *metrics { diff --git a/dumpling/export/sql.go b/dumpling/export/sql.go index 83655df99e330..837bec568b9a7 100644 --- a/dumpling/export/sql.go +++ b/dumpling/export/sql.go @@ -10,7 +10,6 @@ import ( "fmt" "io" "math" - "net/url" "strconv" "strings" @@ -834,7 +833,7 @@ func isUnknownSystemVariableErr(err error) bool { // resetDBWithSessionParams will return a new sql.DB as a replacement for input `db` with new session parameters. // If returned error is nil, the input `db` will be closed. -func resetDBWithSessionParams(tctx *tcontext.Context, db *sql.DB, dsn string, params map[string]interface{}) (*sql.DB, error) { +func resetDBWithSessionParams(tctx *tcontext.Context, db *sql.DB, cfg *mysql.Config, params map[string]interface{}) (*sql.DB, error) { support := make(map[string]interface{}) for k, v := range params { var pv interface{} @@ -862,6 +861,10 @@ func resetDBWithSessionParams(tctx *tcontext.Context, db *sql.DB, dsn string, pa support[k] = pv } + if cfg.Params == nil { + cfg.Params = make(map[string]string) + } + for k, v := range support { var s string // Wrap string with quote to handle string with space. For example, '2020-10-20 13:41:40' @@ -871,19 +874,21 @@ func resetDBWithSessionParams(tctx *tcontext.Context, db *sql.DB, dsn string, pa } else { s = fmt.Sprintf("%v", v) } - dsn += fmt.Sprintf("&%s=%s", k, url.QueryEscape(s)) + cfg.Params[k] = s } db.Close() - newDB, err := sql.Open("mysql", dsn) - if err == nil { - // ping to make sure all session parameters are set correctly - err = newDB.PingContext(tctx) - if err != nil { - newDB.Close() - } + c, err := mysql.NewConnector(cfg) + if err != nil { + return nil, errors.Trace(err) + } + newDB := sql.OpenDB(c) + // ping to make sure all session parameters are set correctly + err = newDB.PingContext(tctx) + if err != nil { + newDB.Close() } - return newDB, errors.Trace(err) + return newDB, nil } func createConnWithConsistency(ctx context.Context, db *sql.DB, repeatableRead bool) (*sql.Conn, error) { diff --git a/dumpling/export/sql_test.go b/dumpling/export/sql_test.go index d98a8a3c76a64..04615637be8f1 100644 --- a/dumpling/export/sql_test.go +++ b/dumpling/export/sql_test.go @@ -1345,7 +1345,7 @@ func TestBuildVersion3RegionQueries(t *testing.T) { defer func() { openDBFunc = oldOpenFunc }() - openDBFunc = func(_, _ string) (*sql.DB, error) { + openDBFunc = func(*mysql.Config) (*sql.DB, error) { return db, nil } diff --git a/dumpling/export/status.go b/dumpling/export/status.go index f8e189fd365d5..0a861f4c40677 100644 --- a/dumpling/export/status.go +++ b/dumpling/export/status.go @@ -4,10 +4,12 @@ package export import ( "fmt" + "sync" "sync/atomic" "time" "github.com/docker/go-units" + "github.com/pingcap/failpoint" tcontext "github.com/pingcap/tidb/dumpling/context" "go.uber.org/zap" ) @@ -16,6 +18,11 @@ const logProgressTick = 2 * time.Minute func (d *Dumper) runLogProgress(tctx *tcontext.Context) { logProgressTicker := time.NewTicker(logProgressTick) + failpoint.Inject("EnableLogProgress", func() { + logProgressTicker.Stop() + logProgressTicker = time.NewTicker(time.Duration(1) * time.Second) + tctx.L().Debug("EnableLogProgress") + }) lastCheckpoint := time.Now() lastBytes := float64(0) defer logProgressTicker.Stop() @@ -33,6 +40,8 @@ func (d *Dumper) runLogProgress(tctx *tcontext.Context) { zap.String("estimate total rows", fmt.Sprintf("%.0f", s.EstimateTotalRows)), zap.String("finished size", units.HumanSize(s.FinishedBytes)), zap.Float64("average speed(MiB/s)", (s.FinishedBytes-lastBytes)/(1048576e-9*nanoseconds)), + zap.Float64("recent speed bps", s.CurrentSpeedBPS), + zap.String("chunks progress", s.Progress), ) lastCheckpoint = time.Now() @@ -48,6 +57,8 @@ type DumpStatus struct { FinishedRows float64 EstimateTotalRows float64 TotalTables int64 + CurrentSpeedBPS float64 + Progress string } // GetStatus returns the status of dumping by reading metrics. @@ -58,6 +69,21 @@ func (d *Dumper) GetStatus() *DumpStatus { ret.FinishedBytes = ReadGauge(d.metrics.finishedSizeGauge) ret.FinishedRows = ReadGauge(d.metrics.finishedRowsGauge) ret.EstimateTotalRows = ReadCounter(d.metrics.estimateTotalRowsCounter) + ret.CurrentSpeedBPS = d.speedRecorder.GetSpeed(ret.FinishedBytes) + if d.metrics.progressReady.Load() { + // chunks will be zero when upstream has no data + if d.metrics.totalChunks.Load() == 0 { + ret.Progress = "100 %" + return ret + } + progress := float64(d.metrics.completedChunks.Load()) / float64(d.metrics.totalChunks.Load()) + if progress > 1 { + ret.Progress = "100 %" + d.L().Warn("completedChunks is greater than totalChunks", zap.Int64("completedChunks", d.metrics.completedChunks.Load()), zap.Int64("totalChunks", d.metrics.totalChunks.Load())) + } else { + ret.Progress = fmt.Sprintf("%5.2f %%", progress*100) + } + } return ret } @@ -72,3 +98,47 @@ func calculateTableCount(m DatabaseTables) int { } return cnt } + +// SpeedRecorder record the finished bytes and calculate its speed. +type SpeedRecorder struct { + mu sync.Mutex + lastFinished float64 + lastUpdateTime time.Time + speedBPS float64 +} + +// NewSpeedRecorder new a SpeedRecorder. +func NewSpeedRecorder() *SpeedRecorder { + return &SpeedRecorder{ + lastUpdateTime: time.Now(), + } +} + +// GetSpeed calculate status speed. +func (s *SpeedRecorder) GetSpeed(finished float64) float64 { + s.mu.Lock() + defer s.mu.Unlock() + + if finished <= s.lastFinished { + // for finished bytes does not get forwarded, use old speed to avoid + // display zero. We may find better strategy in future. + return s.speedBPS + } + + now := time.Now() + elapsed := now.Sub(s.lastUpdateTime).Seconds() + if elapsed == 0 { + // if time is short, return last speed + return s.speedBPS + } + currentSpeed := (finished - s.lastFinished) / elapsed + if currentSpeed == 0 { + currentSpeed = 1 + } + + s.lastFinished = finished + s.lastUpdateTime = now + s.speedBPS = currentSpeed + + return currentSpeed +} diff --git a/dumpling/export/status_test.go b/dumpling/export/status_test.go index 5d2b080ba82a1..14c08c7c36ba7 100644 --- a/dumpling/export/status_test.go +++ b/dumpling/export/status_test.go @@ -3,14 +3,16 @@ package export import ( + "math" "testing" + "time" "github.com/stretchr/testify/require" ) func TestGetParameters(t *testing.T) { conf := defaultConfigForTest(t) - d := &Dumper{conf: conf} + d := &Dumper{conf: conf, speedRecorder: NewSpeedRecorder()} d.metrics = newMetrics(conf.PromFactory, nil) mid := d.GetStatus() @@ -30,3 +32,24 @@ func TestGetParameters(t *testing.T) { require.EqualValues(t, float64(30), mid.FinishedRows) require.EqualValues(t, float64(40), mid.EstimateTotalRows) } + +func TestSpeedRecorder(t *testing.T) { + testCases := []struct { + spentTime int64 + finished float64 + expected float64 + }{ + {spentTime: 1, finished: 100, expected: 100}, + {spentTime: 2, finished: 200, expected: 50}, + // already finished, will return last speed + {spentTime: 3, finished: 200, expected: 50}, + } + speedRecorder := NewSpeedRecorder() + for _, tc := range testCases { + time.Sleep(time.Duration(tc.spentTime) * time.Second) + recentSpeed := speedRecorder.GetSpeed(tc.finished) + if math.Abs(tc.expected-recentSpeed) > 1 { + require.FailNow(t, "speed is unexpected", "expected: %5.2f, recent: %5.2f", tc.expected, recentSpeed) + } + } +} diff --git a/dumpling/export/task.go b/dumpling/export/task.go index 36d88c3e3454c..760f5833df017 100644 --- a/dumpling/export/task.go +++ b/dumpling/export/task.go @@ -2,7 +2,9 @@ package export -import "fmt" +import ( + "fmt" +) // Task is a file dump task for dumpling, it could either be dumping database/table/view/policy metadata, table data type Task interface { diff --git a/dumpling/export/util.go b/dumpling/export/util.go index cad703f9f23f4..6c7443a1bee84 100644 --- a/dumpling/export/util.go +++ b/dumpling/export/util.go @@ -78,3 +78,44 @@ func string2Map(a, b []string) map[string]string { func needRepeatableRead(serverType version.ServerType, consistency string) bool { return consistency != ConsistencyTypeSnapshot || serverType != version.ServerTypeTiDB } + +func infiniteChan[T any]() (chan<- T, <-chan T) { + in, out := make(chan T), make(chan T) + + go func() { + var ( + q []T + e T + ok bool + ) + handleRead := func() bool { + if !ok { + for _, e = range q { + out <- e + } + close(out) + return true + } + q = append(q, e) + return false + } + for { + if len(q) > 0 { + select { + case e, ok = <-in: + if handleRead() { + return + } + case out <- q[0]: + q = q[1:] + } + } else { + e, ok = <-in + if handleRead() { + return + } + } + } + }() + return in, out +} diff --git a/dumpling/export/util_test.go b/dumpling/export/util_test.go index 1686a24902825..35de448432cd0 100644 --- a/dumpling/export/util_test.go +++ b/dumpling/export/util_test.go @@ -29,3 +29,17 @@ func TestRepeatableRead(t *testing.T) { require.True(t, rr == expectRepeatableRead, comment) } } + +func TestInfiniteChan(t *testing.T) { + in, out := infiniteChan[int]() + go func() { + for i := 0; i < 10000; i++ { + in <- i + } + }() + for i := 0; i < 10000; i++ { + j := <-out + require.Equal(t, i, j) + } + close(in) +} diff --git a/dumpling/export/writer.go b/dumpling/export/writer.go index 0ce7a006244b3..e64c067c807b7 100644 --- a/dumpling/export/writer.go +++ b/dumpling/export/writer.go @@ -209,6 +209,7 @@ func (w *Writer) WriteTableData(meta TableMeta, ir TableDataIR, currentChunk int } err = ir.Start(tctx, conn) if err != nil { + tctx.L().Warn("failed to start table chunk", zap.Error(err)) return } if conf.SQL != "" { diff --git a/dumpling/export/writer_util.go b/dumpling/export/writer_util.go index 978178c36c0f8..809f82e59c9b5 100644 --- a/dumpling/export/writer_util.go +++ b/dumpling/export/writer_util.go @@ -242,6 +242,7 @@ func WriteInsert( failpoint.Inject("ChaosBrokenWriterConn", func(_ failpoint.Value) { failpoint.Return(0, errors.New("connection is closed")) }) + failpoint.Inject("AtEveryRow", nil) fileRowIter.Next() shouldSwitch := wp.ShouldSwitchStatement() @@ -590,6 +591,10 @@ func compressFileSuffix(compressType storage.CompressType) string { return "" case storage.Gzip: return ".gz" + case storage.Snappy: + return ".snappy" + case storage.Zstd: + return ".zst" default: return "" } diff --git a/dumpling/install.sh b/dumpling/install.sh index d322b41242231..f24d54b499dea 100644 --- a/dumpling/install.sh +++ b/dumpling/install.sh @@ -15,3 +15,11 @@ chmod a+x bin/minio wget https://dl.minio.io/client/mc/release/linux-amd64/mc -O bin/mc chmod a+x bin/mc + +go get github.com/ma6174/snappy +go install github.com/ma6174/snappy + +wget https://github.com/facebook/zstd/releases/download/v1.5.2/zstd-1.5.2.tar.gz +tar xvfz zstd-1.5.2.tar.gz +cd zstd-1.5.2 +make diff --git a/dumpling/tests/_utils/run_services b/dumpling/tests/_utils/run_services index 363e39c8fef66..76e83e7bb7f55 100755 --- a/dumpling/tests/_utils/run_services +++ b/dumpling/tests/_utils/run_services @@ -36,6 +36,7 @@ start_services() { cat > "$DUMPLING_TEST_DIR/tidb.toml" < maxForeignKeyCascadeDepth { + return ErrForeignKeyCascadeDepthExceeded.GenWithStackByArgs(maxForeignKeyCascadeDepth) + } + for { + e, err := fkc.buildExecutor(ctx) + if err != nil || e == nil { + return err + } + if err := e.Open(ctx); err != nil { + terror.Call(e.Close) + return err + } + err = Next(ctx, e, newFirstChunk(e)) + if err != nil { + return err + } + err = e.Close() + if err != nil { + return err + } + // Call `StmtCommit` uses to flush the fk cascade executor change into txn mem-buffer, + // then the later fk cascade executors can see the mem-buffer changes. + a.Ctx.StmtCommit() + err = a.handleForeignKeyTrigger(ctx, e, depth+1) + if err != nil { + return err + } + } +} + +// prepareFKCascadeContext records a transaction savepoint for foreign key cascade when this ExecStmt has foreign key +// cascade behaviour and this ExecStmt is in transaction. +func (a *ExecStmt) prepareFKCascadeContext(e Executor) { + exec, ok := e.(WithForeignKeyTrigger) + if !ok || !exec.HasFKCascades() { + return + } + sessVar := a.Ctx.GetSessionVars() + sessVar.StmtCtx.ForeignKeyTriggerCtx.HasFKCascades = true + if !sessVar.InTxn() { + return + } + txn, err := a.Ctx.Txn(false) + if err != nil || !txn.Valid() { + return + } + // Record a txn savepoint if ExecStmt in transaction, the savepoint is use to do rollback when handle foreign key + // cascade failed. + savepointName := "fk_sp_" + strconv.FormatUint(txn.StartTS(), 10) + memDBCheckpoint := txn.GetMemDBCheckpoint() + sessVar.TxnCtx.AddSavepoint(savepointName, memDBCheckpoint) + sessVar.StmtCtx.ForeignKeyTriggerCtx.SavepointName = savepointName +} + +func (a *ExecStmt) handleFKTriggerError(sc *stmtctx.StatementContext) error { + if sc.ForeignKeyTriggerCtx.SavepointName == "" { + return nil + } + txn, err := a.Ctx.Txn(false) + if err != nil || !txn.Valid() { + return err + } + savepointRecord := a.Ctx.GetSessionVars().TxnCtx.RollbackToSavepoint(sc.ForeignKeyTriggerCtx.SavepointName) + if savepointRecord == nil { + // Normally should never run into here, but just in case, rollback the transaction. + err = txn.Rollback() + if err != nil { + return err + } + return errors.Errorf("foreign key cascade savepoint '%s' not found, transaction is rollback, should never happen", sc.ForeignKeyTriggerCtx.SavepointName) + } + txn.RollbackMemDBToCheckpoint(savepointRecord.MemDBCheckpoint) + a.Ctx.GetSessionVars().TxnCtx.ReleaseSavepoint(sc.ForeignKeyTriggerCtx.SavepointName) return nil } -func (a *ExecStmt) handleNoDelay(ctx context.Context, e Executor, isPessimistic bool) (handled bool, rs sqlexec.RecordSet, _ Executor, err error) { +func (a *ExecStmt) handleNoDelay(ctx context.Context, e Executor, isPessimistic bool) (handled bool, rs sqlexec.RecordSet, err error) { sc := a.Ctx.GetSessionVars().StmtCtx defer func() { // If the stmt have no rs like `insert`, The session tracker detachment will be directly // done in the `defer` function. If the rs is not nil, the detachment will be done in // `rs.Close` in `handleStmt` - if sc != nil && rs == nil { + if handled && sc != nil && rs == nil { if sc.MemTracker != nil { sc.MemTracker.Detach() } @@ -606,20 +733,20 @@ func (a *ExecStmt) handleNoDelay(ctx context.Context, e Executor, isPessimistic if toCheck.Schema().Len() == 0 { handled = !isExplainAnalyze if isPessimistic { - e, err := a.handlePessimisticDML(ctx, toCheck) - return handled, nil, e, err + err := a.handlePessimisticDML(ctx, toCheck) + return handled, nil, err } r, err := a.handleNoDelayExecutor(ctx, toCheck) - return handled, r, e, err + return handled, r, err } else if proj, ok := toCheck.(*ProjectionExec); ok && proj.calculateNoDelay { // Currently this is only for the "DO" statement. Take "DO 1, @a=2;" as an example: // the Projection has two expressions and two columns in the schema, but we should // not return the result of the two expressions. r, err := a.handleNoDelayExecutor(ctx, e) - return true, r, e, err + return true, r, err } - return false, nil, e, nil + return false, nil, nil } func isNoResultPlan(p plannercore.Plan) bool { @@ -714,7 +841,7 @@ func (a *ExecStmt) runPessimisticSelectForUpdate(ctx context.Context, e Executor }() var rows []chunk.Row var err error - req := newFirstChunk(e) + req := tryNewCacheChunk(e) for { err = a.next(ctx, e, req) if err != nil { @@ -761,21 +888,22 @@ func (a *ExecStmt) handleNoDelayExecutor(ctx context.Context, e Executor) (sqlex } } - err = a.next(ctx, e, newFirstChunk(e)) + err = a.next(ctx, e, tryNewCacheChunk(e)) if err != nil { return nil, err } + err = a.handleStmtForeignKeyTrigger(ctx, e) return nil, err } -func (a *ExecStmt) handlePessimisticDML(ctx context.Context, e Executor) (_ Executor, err error) { +func (a *ExecStmt) handlePessimisticDML(ctx context.Context, e Executor) (err error) { sctx := a.Ctx // Do not activate the transaction here. // When autocommit = 0 and transaction in pessimistic mode, // statements like set xxx = xxx; should not active the transaction. txn, err := sctx.Txn(false) if err != nil { - return e, err + return err } txnCtx := sctx.GetSessionVars().TxnCtx defer func() { @@ -803,7 +931,7 @@ func (a *ExecStmt) handlePessimisticDML(ctx context.Context, e Executor) (_ Exec startPointGetLocking := time.Now() _, err = a.handleNoDelayExecutor(ctx, e) if !txn.Valid() { - return e, err + return err } if err != nil { // It is possible the DML has point get plan that locks the key. @@ -812,24 +940,24 @@ func (a *ExecStmt) handlePessimisticDML(ctx context.Context, e Executor) (_ Exec if ErrDeadlock.Equal(err) { metrics.StatementDeadlockDetectDuration.Observe(time.Since(startPointGetLocking).Seconds()) } - return e, err + return err } continue } keys, err1 := txn.(pessimisticTxn).KeysNeedToLock() if err1 != nil { - return e, err1 + return err1 } keys = txnCtx.CollectUnchangedRowKeys(keys) if len(keys) == 0 { - return e, nil + return nil } keys = filterTemporaryTableKeys(sctx.GetSessionVars(), keys) seVars := sctx.GetSessionVars() keys = filterLockTableKeys(seVars.StmtCtx, keys) lockCtx, err := newLockCtx(sctx, seVars.LockWaitTimeout, len(keys)) if err != nil { - return e, err + return err } var lockKeyStats *util.LockKeysDetails ctx = context.WithValue(ctx, util.LockKeysDetailCtxKey, &lockKeyStats) @@ -840,7 +968,7 @@ func (a *ExecStmt) handlePessimisticDML(ctx context.Context, e Executor) (_ Exec seVars.StmtCtx.MergeLockKeysExecDetails(lockKeyStats) } if err == nil { - return e, nil + return nil } e, err = a.handlePessimisticLockError(ctx, err) if err != nil { @@ -848,7 +976,7 @@ func (a *ExecStmt) handlePessimisticDML(ctx context.Context, e Executor) (_ Exec if ErrDeadlock.Equal(err) { metrics.StatementDeadlockDetectDuration.Observe(time.Since(startLocking).Seconds()) } - return e, err + return err } } } @@ -1327,8 +1455,8 @@ func (a *ExecStmt) LogSlowQuery(txnTS uint64, succ bool, hasMoreResults bool) { execDetail := stmtCtx.GetExecDetails() copTaskInfo := stmtCtx.CopTasksDetails() statsInfos := plannercore.GetStatsInfoFromFlatPlan(flat) - memMax := stmtCtx.MemTracker.MaxConsumed() - diskMax := stmtCtx.DiskTracker.MaxConsumed() + memMax := sessVars.MemTracker.MaxConsumed() + diskMax := sessVars.DiskTracker.MaxConsumed() _, planDigest := getPlanDigest(stmtCtx) binaryPlan := "" @@ -1598,8 +1726,8 @@ func (a *ExecStmt) SummaryStmt(succ bool) { execDetail := stmtCtx.GetExecDetails() copTaskInfo := stmtCtx.CopTasksDetails() - memMax := stmtCtx.MemTracker.MaxConsumed() - diskMax := stmtCtx.DiskTracker.MaxConsumed() + memMax := sessVars.MemTracker.MaxConsumed() + diskMax := sessVars.DiskTracker.MaxConsumed() sql := a.GetTextToLog() var stmtDetail execdetails.StmtExecDetails stmtDetailRaw := a.GoCtx.Value(execdetails.StmtExecDetailKey) diff --git a/executor/admin.go b/executor/admin.go index ba219b70b6db3..1a0f5579281cc 100644 --- a/executor/admin.go +++ b/executor/admin.go @@ -111,7 +111,7 @@ func (e *CheckIndexRangeExec) Open(ctx context.Context) error { FieldType: *colTypeForHandle, }) - e.srcChunk = newFirstChunk(e) + e.srcChunk = tryNewCacheChunk(e) dagPB, err := e.buildDAGPB() if err != nil { return err @@ -151,7 +151,7 @@ func (e *CheckIndexRangeExec) buildDAGPB() (*tipb.DAGRequest, error) { execPB := e.constructIndexScanPB() dagReq.Executors = append(dagReq.Executors, execPB) - err := plannercore.SetPBColumnsDefaultValue(e.ctx, dagReq.Executors[0].IdxScan.Columns, e.cols) + err := tables.SetPBColumnsDefaultValue(e.ctx, dagReq.Executors[0].IdxScan.Columns, e.cols) if err != nil { return nil, err } @@ -227,7 +227,7 @@ func (e *RecoverIndexExec) Open(ctx context.Context) error { func (e *RecoverIndexExec) constructTableScanPB(tblInfo *model.TableInfo, colInfos []*model.ColumnInfo) (*tipb.Executor, error) { tblScan := tables.BuildTableScanFromInfos(tblInfo, colInfos) tblScan.TableId = e.physicalID - err := plannercore.SetPBColumnsDefaultValue(e.ctx, tblScan.Columns, colInfos) + err := tables.SetPBColumnsDefaultValue(e.ctx, tblScan.Columns, colInfos) return &tipb.Executor{Tp: tipb.ExecType_TypeTableScan, TblScan: tblScan}, err } @@ -380,7 +380,7 @@ func (e *RecoverIndexExec) fetchRecoverRows(ctx context.Context, srcResult dists } idxVals := extractIdxVals(row, e.idxValsBufs[result.scanRowCount], e.colFieldTypes, idxValLen) e.idxValsBufs[result.scanRowCount] = idxVals - rsData := tables.TryGetHandleRestoredDataWrapper(e.table, plannercore.GetCommonHandleDatum(e.handleCols, row), nil, e.index.Meta()) + rsData := tables.TryGetHandleRestoredDataWrapper(e.table.Meta(), plannercore.GetCommonHandleDatum(e.handleCols, row), nil, e.index.Meta()) e.recoverRows = append(e.recoverRows, recoverRows{handle: handle, idxVals: idxVals, rsData: rsData, skip: false}) result.scanRowCount++ result.currentHandle = handle @@ -790,7 +790,7 @@ func (e *CleanupIndexExec) buildIdxDAGPB(txn kv.Transaction) (*tipb.DAGRequest, execPB := e.constructIndexScanPB() dagReq.Executors = append(dagReq.Executors, execPB) - err := plannercore.SetPBColumnsDefaultValue(e.ctx, dagReq.Executors[0].IdxScan.Columns, e.columns) + err := tables.SetPBColumnsDefaultValue(e.ctx, dagReq.Executors[0].IdxScan.Columns, e.columns) if err != nil { return nil, err } diff --git a/executor/aggfuncs/builder.go b/executor/aggfuncs/builder.go index 51b72ebfc242b..f215983d3c7e4 100644 --- a/executor/aggfuncs/builder.go +++ b/executor/aggfuncs/builder.go @@ -15,6 +15,7 @@ package aggfuncs import ( + "context" "fmt" "strconv" @@ -462,7 +463,7 @@ func buildGroupConcat(ctx sessionctx.Context, aggFuncDesc *aggregation.AggFuncDe panic(fmt.Sprintf("Error happened when buildGroupConcat: %s", err.Error())) } var s string - s, err = ctx.GetSessionVars().GetSessionOrGlobalSystemVar(variable.GroupConcatMaxLen) + s, err = ctx.GetSessionVars().GetSessionOrGlobalSystemVar(context.Background(), variable.GroupConcatMaxLen) if err != nil { panic(fmt.Sprintf("Error happened when buildGroupConcat: no system variable named '%s'", variable.GroupConcatMaxLen)) } diff --git a/executor/aggfuncs/main_test.go b/executor/aggfuncs/main_test.go index 9092f6a465d77..09b07cea808ec 100644 --- a/executor/aggfuncs/main_test.go +++ b/executor/aggfuncs/main_test.go @@ -25,6 +25,7 @@ func TestMain(m *testing.M) { testsetup.SetupForCommonTest() opts := []goleak.Option{ goleak.IgnoreTopFunction("github.com/golang/glog.(*loggingT).flushDaemon"), + goleak.IgnoreTopFunction("github.com/lestrrat-go/httprc.runFetchWorker"), goleak.IgnoreTopFunction("go.etcd.io/etcd/client/pkg/v3/logutil.(*MergeLogger).outputLoop"), goleak.IgnoreTopFunction("go.opencensus.io/stats/view.(*worker).start"), } diff --git a/executor/aggregate.go b/executor/aggregate.go index d6ec79412b7f6..771d928c9bbad 100644 --- a/executor/aggregate.go +++ b/executor/aggregate.go @@ -323,18 +323,19 @@ func (e *HashAggExec) initForUnparallelExec() { failpoint.Inject("ConsumeRandomPanic", nil) e.memTracker.Consume(hack.DefBucketMemoryUsageForMapStrToSlice*(1< 0 { + tables := skipedTables[0] + for i, table := range skipedTables { + if i == 0 { + continue + } + tables += ", " + table + } + var msg string + if len(tids) > 1 { + if len(tids) > len(skipedTables) { + msg = "skip analyze locked tables: " + tables + ", other tables will be analyzed" + } else { + msg = "skip analyze locked tables: " + tables + } + } else { + msg = "skip analyze locked table: " + tables + } + + e.ctx.GetSessionVars().StmtCtx.AppendWarning(errors.New(msg)) + } + + if len(tasks) == 0 { + return nil + } + concurrency, err := getBuildStatsConcurrency(e.ctx) if err != nil { return err } - taskCh := make(chan *analyzeTask, len(e.tasks)) - resultsCh := make(chan *statistics.AnalyzeResults, len(e.tasks)) - if len(e.tasks) < concurrency { - concurrency = len(e.tasks) + taskCh := make(chan *analyzeTask, len(tasks)) + resultsCh := make(chan *statistics.AnalyzeResults, len(tasks)) + if len(tasks) < concurrency { + concurrency = len(tasks) } for i := 0; i < concurrency; i++ { e.wg.Run(func() { e.analyzeWorker(taskCh, resultsCh) }) } - for _, task := range e.tasks { + for _, task := range tasks { prepareV2AnalyzeJobInfo(task.colExec, false) AddNewAnalyzeJob(e.ctx, task.job) } @@ -101,7 +172,7 @@ func (e *AnalyzeExec) Next(ctx context.Context, _ *chunk.Chunk) error { dom := domain.GetDomain(e.ctx) dom.SysProcTracker().KillSysProcess(util.GetAutoAnalyzeProcID(dom.ServerID)) }) - for _, task := range e.tasks { + for _, task := range tasks { taskCh <- task } close(taskCh) @@ -112,7 +183,7 @@ func (e *AnalyzeExec) Next(ctx context.Context, _ *chunk.Chunk) error { needGlobalStats := pruneMode == variable.Dynamic globalStatsMap := make(map[globalStatsKey]globalStatsInfo) err = e.handleResultsError(ctx, concurrency, needGlobalStats, globalStatsMap, resultsCh) - for _, task := range e.tasks { + for _, task := range tasks { if task.colExec != nil && task.colExec.memTracker != nil { task.colExec.memTracker.Detach() } @@ -134,7 +205,6 @@ func (e *AnalyzeExec) Next(ctx context.Context, _ *chunk.Chunk) error { if err != nil { e.ctx.GetSessionVars().StmtCtx.AppendWarning(err) } - statsHandle := domain.GetDomain(e.ctx).StatsHandle() if e.ctx.GetSessionVars().InRestrictedSQL { return statsHandle.Update(e.ctx.GetInfoSchema().(infoschema.InfoSchema)) } @@ -188,8 +258,8 @@ func (e *AnalyzeExec) saveV2AnalyzeOpts() error { return nil } -func (e *AnalyzeExec) recordHistoricalStats(tableID int64) error { - statsHandle := domain.GetDomain(e.ctx).StatsHandle() +func recordHistoricalStats(sctx sessionctx.Context, tableID int64) error { + statsHandle := domain.GetDomain(sctx).StatsHandle() historicalStatsEnabled, err := statsHandle.CheckHistoricalStatsEnable() if err != nil { return errors.Errorf("check tidb_enable_historical_stats failed: %v", err) @@ -198,7 +268,7 @@ func (e *AnalyzeExec) recordHistoricalStats(tableID int64) error { return nil } - is := domain.GetDomain(e.ctx).InfoSchema() + is := domain.GetDomain(sctx).InfoSchema() tbl, existed := is.TableByID(tableID) if !existed { return errors.Errorf("cannot get table by id %d", tableID) @@ -217,6 +287,23 @@ func (e *AnalyzeExec) recordHistoricalStats(tableID int64) error { // handleResultsError will handle the error fetch from resultsCh and record it in log func (e *AnalyzeExec) handleResultsError(ctx context.Context, concurrency int, needGlobalStats bool, globalStatsMap globalStatsMap, resultsCh <-chan *statistics.AnalyzeResults) error { + partitionStatsConcurrency := e.ctx.GetSessionVars().AnalyzePartitionConcurrency + // If 'partitionStatsConcurrency' > 1, we will try to demand extra session from Domain to save Analyze results in concurrency. + // If there is no extra session we can use, we will save analyze results in single-thread. + if partitionStatsConcurrency > 1 { + dom := domain.GetDomain(e.ctx) + subSctxs := dom.FetchAnalyzeExec(partitionStatsConcurrency) + if len(subSctxs) > 0 { + defer func() { + dom.ReleaseAnalyzeExec(subSctxs) + }() + internalCtx := kv.WithInternalSourceType(ctx, kv.InternalTxnStats) + err := e.handleResultsErrorWithConcurrency(internalCtx, concurrency, needGlobalStats, subSctxs, globalStatsMap, resultsCh) + return err + } + } + + // save analyze results in single-thread. statsHandle := domain.GetDomain(e.ctx).StatsHandle() panicCnt := 0 var err error @@ -235,40 +322,76 @@ func (e *AnalyzeExec) handleResultsError(ctx context.Context, concurrency int, n finishJobWithLog(e.ctx, results.Job, err) continue } - if results.TableID.IsPartitionTable() && needGlobalStats { - for _, result := range results.Ars { - if result.IsIndex == 0 { - // If it does not belong to the statistics of index, we need to set it to -1 to distinguish. - globalStatsID := globalStatsKey{tableID: results.TableID.TableID, indexID: int64(-1)} - histIDs := make([]int64, 0, len(result.Hist)) - for _, hg := range result.Hist { - // It's normal virtual column, skip. - if hg == nil { - continue - } - histIDs = append(histIDs, hg.ID) - } - globalStatsMap[globalStatsID] = globalStatsInfo{isIndex: result.IsIndex, histIDs: histIDs, statsVersion: results.StatsVer} - } else { - for _, hg := range result.Hist { - globalStatsID := globalStatsKey{tableID: results.TableID.TableID, indexID: hg.ID} - globalStatsMap[globalStatsID] = globalStatsInfo{isIndex: result.IsIndex, histIDs: []int64{hg.ID}, statsVersion: results.StatsVer} - } - } - } - } - if err1 := statsHandle.SaveTableStatsToStorage(results, results.TableID.IsPartitionTable(), e.ctx.GetSessionVars().EnableAnalyzeSnapshot); err1 != nil { + handleGlobalStats(needGlobalStats, globalStatsMap, results) + + if err1 := statsHandle.SaveTableStatsToStorage(results, e.ctx.GetSessionVars().EnableAnalyzeSnapshot); err1 != nil { err = err1 logutil.Logger(ctx).Error("save table stats to storage failed", zap.Error(err)) finishJobWithLog(e.ctx, results.Job, err) } else { finishJobWithLog(e.ctx, results.Job, nil) // Dump stats to historical storage. - if err := e.recordHistoricalStats(results.TableID.TableID); err != nil { + if err := recordHistoricalStats(e.ctx, results.TableID.TableID); err != nil { logutil.BgLogger().Error("record historical stats failed", zap.Error(err)) } } invalidInfoSchemaStatCache(results.TableID.GetStatisticsID()) + if atomic.LoadUint32(&e.ctx.GetSessionVars().Killed) == 1 { + finishJobWithLog(e.ctx, results.Job, ErrQueryInterrupted) + return errors.Trace(ErrQueryInterrupted) + } + } + return err +} + +func (e *AnalyzeExec) handleResultsErrorWithConcurrency(ctx context.Context, statsConcurrency int, needGlobalStats bool, + subSctxs []sessionctx.Context, + globalStatsMap globalStatsMap, resultsCh <-chan *statistics.AnalyzeResults) error { + partitionStatsConcurrency := len(subSctxs) + + var wg util.WaitGroupWrapper + saveResultsCh := make(chan *statistics.AnalyzeResults, partitionStatsConcurrency) + errCh := make(chan error, partitionStatsConcurrency) + for i := 0; i < partitionStatsConcurrency; i++ { + worker := newAnalyzeSaveStatsWorker(saveResultsCh, subSctxs[i], errCh, &e.ctx.GetSessionVars().Killed) + ctx1 := kv.WithInternalSourceType(context.Background(), kv.InternalTxnStats) + wg.Run(func() { + worker.run(ctx1, e.ctx.GetSessionVars().EnableAnalyzeSnapshot) + }) + } + panicCnt := 0 + var err error + for panicCnt < statsConcurrency { + if atomic.LoadUint32(&e.ctx.GetSessionVars().Killed) == 1 { + close(saveResultsCh) + return errors.Trace(ErrQueryInterrupted) + } + results, ok := <-resultsCh + if !ok { + break + } + if results.Err != nil { + err = results.Err + if isAnalyzeWorkerPanic(err) { + panicCnt++ + } else { + logutil.Logger(ctx).Error("analyze failed", zap.Error(err)) + } + finishJobWithLog(e.ctx, results.Job, err) + continue + } + handleGlobalStats(needGlobalStats, globalStatsMap, results) + saveResultsCh <- results + } + close(saveResultsCh) + wg.Wait() + close(errCh) + if len(errCh) > 0 { + errMsg := make([]string, 0) + for err1 := range errCh { + errMsg = append(errMsg, err1.Error()) + } + err = errors.New(strings.Join(errMsg, ",")) } return err } @@ -381,6 +504,40 @@ func UpdateAnalyzeJob(sctx sessionctx.Context, job *statistics.AnalyzeJob, rowCo } } +// FinishAnalyzeMergeJob finishes analyze merge job +func FinishAnalyzeMergeJob(sctx sessionctx.Context, job *statistics.AnalyzeJob, analyzeErr error) { + if job == nil || job.ID == nil { + return + } + job.EndTime = time.Now() + var sql string + var args []interface{} + if analyzeErr != nil { + failReason := analyzeErr.Error() + const textMaxLength = 65535 + if len(failReason) > textMaxLength { + failReason = failReason[:textMaxLength] + } + sql = "UPDATE mysql.analyze_jobs SET end_time = CONVERT_TZ(%?, '+00:00', @@TIME_ZONE), state = %?, fail_reason = %?, process_id = NULL WHERE id = %?" + args = []interface{}{job.EndTime.UTC().Format(types.TimeFormat), statistics.AnalyzeFailed, failReason, *job.ID} + } else { + sql = "UPDATE mysql.analyze_jobs SET end_time = CONVERT_TZ(%?, '+00:00', @@TIME_ZONE), state = %?, process_id = NULL WHERE id = %?" + args = []interface{}{job.EndTime.UTC().Format(types.TimeFormat), statistics.AnalyzeFinished, *job.ID} + } + exec := sctx.(sqlexec.RestrictedSQLExecutor) + ctx := kv.WithInternalSourceType(context.Background(), kv.InternalTxnStats) + _, _, err := exec.ExecRestrictedSQL(ctx, []sqlexec.OptionFuncAlias{sqlexec.ExecOptionUseSessionPool}, sql, args...) + if err != nil { + var state string + if analyzeErr != nil { + state = statistics.AnalyzeFailed + } else { + state = statistics.AnalyzeFinished + } + logutil.BgLogger().Warn("failed to update analyze job", zap.String("update", fmt.Sprintf("%s->%s", statistics.AnalyzeRunning, state)), zap.Error(err)) + } +} + // FinishAnalyzeJob updates the state of the analyze job to finished/failed according to `meetError` and sets the end time. func FinishAnalyzeJob(sctx sessionctx.Context, job *statistics.AnalyzeJob, analyzeErr error) { if job == nil || job.ID == nil { @@ -434,3 +591,28 @@ func finishJobWithLog(sctx sessionctx.Context, job *statistics.AnalyzeJob, analy zap.String("cost", job.EndTime.Sub(job.StartTime).String())) } } + +func handleGlobalStats(needGlobalStats bool, globalStatsMap globalStatsMap, results *statistics.AnalyzeResults) { + if results.TableID.IsPartitionTable() && needGlobalStats { + for _, result := range results.Ars { + if result.IsIndex == 0 { + // If it does not belong to the statistics of index, we need to set it to -1 to distinguish. + globalStatsID := globalStatsKey{tableID: results.TableID.TableID, indexID: int64(-1)} + histIDs := make([]int64, 0, len(result.Hist)) + for _, hg := range result.Hist { + // It's normal virtual column, skip. + if hg == nil { + continue + } + histIDs = append(histIDs, hg.ID) + } + globalStatsMap[globalStatsID] = globalStatsInfo{isIndex: result.IsIndex, histIDs: histIDs, statsVersion: results.StatsVer} + } else { + for _, hg := range result.Hist { + globalStatsID := globalStatsKey{tableID: results.TableID.TableID, indexID: hg.ID} + globalStatsMap[globalStatsID] = globalStatsInfo{isIndex: result.IsIndex, histIDs: []int64{hg.ID}, statsVersion: results.StatsVer} + } + } + } + } +} diff --git a/executor/analyze_global_stats.go b/executor/analyze_global_stats.go index c9ff6217a195c..82c2678953285 100644 --- a/executor/analyze_global_stats.go +++ b/executor/analyze_global_stats.go @@ -16,6 +16,7 @@ package executor import ( "context" + "fmt" "github.com/pingcap/tidb/domain" "github.com/pingcap/tidb/infoschema" @@ -58,36 +59,72 @@ func (e *AnalyzeExec) handleGlobalStats(ctx context.Context, needGlobalStats boo if globalStatsID.tableID != tableID { continue } - globalOpts := e.opts - if e.OptionsMap != nil { - if v2Options, ok := e.OptionsMap[globalStatsID.tableID]; ok { - globalOpts = v2Options.FilledOpts + job := e.newAnalyzeHandleGlobalStatsJob(globalStatsID) + AddNewAnalyzeJob(e.ctx, job) + StartAnalyzeJob(e.ctx, job) + mergeStatsErr := func() error { + globalOpts := e.opts + if e.OptionsMap != nil { + if v2Options, ok := e.OptionsMap[globalStatsID.tableID]; ok { + globalOpts = v2Options.FilledOpts + } } - } - globalStats, err := statsHandle.MergePartitionStats2GlobalStatsByTableID(e.ctx, globalOpts, e.ctx.GetInfoSchema().(infoschema.InfoSchema), - globalStatsID.tableID, info.isIndex, info.histIDs, - tableAllPartitionStats) - if err != nil { - if types.ErrPartitionStatsMissing.Equal(err) || types.ErrPartitionColumnStatsMissing.Equal(err) { - // When we find some partition-level stats are missing, we need to report warning. - e.ctx.GetSessionVars().StmtCtx.AppendWarning(err) - continue - } - return err - } - for i := 0; i < globalStats.Num; i++ { - hg, cms, topN := globalStats.Hg[i], globalStats.Cms[i], globalStats.TopN[i] - // fms for global stats doesn't need to dump to kv. - err = statsHandle.SaveStatsToStorage(globalStatsID.tableID, globalStats.Count, info.isIndex, hg, cms, topN, info.statsVersion, 1, true) + globalStats, err := statsHandle.MergePartitionStats2GlobalStatsByTableID(e.ctx, globalOpts, e.ctx.GetInfoSchema().(infoschema.InfoSchema), + globalStatsID.tableID, info.isIndex, info.histIDs, + tableAllPartitionStats) if err != nil { - logutil.Logger(ctx).Error("save global-level stats to storage failed", zap.Error(err)) + if types.ErrPartitionStatsMissing.Equal(err) || types.ErrPartitionColumnStatsMissing.Equal(err) { + // When we find some partition-level stats are missing, we need to report warning. + e.ctx.GetSessionVars().StmtCtx.AppendWarning(err) + return nil + } + return err } - // Dump stats to historical storage. - if err := e.recordHistoricalStats(globalStatsID.tableID); err != nil { - logutil.BgLogger().Error("record historical stats failed", zap.Error(err)) + for i := 0; i < globalStats.Num; i++ { + hg, cms, topN := globalStats.Hg[i], globalStats.Cms[i], globalStats.TopN[i] + // fms for global stats doesn't need to dump to kv. + err = statsHandle.SaveStatsToStorage(globalStatsID.tableID, + globalStats.Count, + globalStats.ModifyCount, + info.isIndex, + hg, + cms, + topN, + info.statsVersion, + 1, + true, + ) + if err != nil { + logutil.Logger(ctx).Error("save global-level stats to storage failed", zap.Error(err)) + } + // Dump stats to historical storage. + if err := recordHistoricalStats(e.ctx, globalStatsID.tableID); err != nil { + logutil.BgLogger().Error("record historical stats failed", zap.Error(err)) + } } - } + return nil + }() + FinishAnalyzeMergeJob(e.ctx, job, mergeStatsErr) } } return nil } + +func (e *AnalyzeExec) newAnalyzeHandleGlobalStatsJob(key globalStatsKey) *statistics.AnalyzeJob { + dom := domain.GetDomain(e.ctx) + is := dom.InfoSchema() + table, _ := is.TableByID(key.tableID) + db, _ := is.SchemaByTable(table.Meta()) + dbName := db.Name.String() + tableName := table.Meta().Name.String() + jobInfo := fmt.Sprintf("merge global stats for %v.%v columns", dbName, tableName) + if key.indexID != -1 { + idxName := table.Meta().FindIndexNameByID(key.indexID) + jobInfo = fmt.Sprintf("merge global stats for %v.%v's index %v", dbName, tableName, idxName) + } + return &statistics.AnalyzeJob{ + DBName: db.Name.String(), + TableName: table.Meta().Name.String(), + JobInfo: jobInfo, + } +} diff --git a/executor/analyze_test.go b/executor/analyze_test.go index 2139816195b5f..bbe3f5b8d1b1e 100644 --- a/executor/analyze_test.go +++ b/executor/analyze_test.go @@ -17,6 +17,7 @@ package executor_test import ( "fmt" "io/ioutil" + "strconv" "strings" "sync/atomic" "testing" @@ -338,3 +339,81 @@ func TestAnalyzePartitionTableForFloat(t *testing.T) { } tk.MustExec("analyze table t1") } + +func TestAnalyzePartitionTableByConcurrencyInDynamic(t *testing.T) { + store := testkit.CreateMockStore(t) + tk := testkit.NewTestKit(t, store) + tk.MustExec("set @@tidb_partition_prune_mode='dynamic'") + tk.MustExec("use test") + tk.MustExec("create table t(id int) partition by hash(id) partitions 4") + testcases := []struct { + concurrency string + }{ + { + concurrency: "1", + }, + { + concurrency: "2", + }, + { + concurrency: "3", + }, + { + concurrency: "4", + }, + { + concurrency: "5", + }, + } + // assert empty table + for _, tc := range testcases { + concurrency := tc.concurrency + fmt.Println("testcase ", concurrency) + tk.MustExec(fmt.Sprintf("set @@tidb_merge_partition_stats_concurrency=%v", concurrency)) + tk.MustQuery("select @@tidb_merge_partition_stats_concurrency").Check(testkit.Rows(concurrency)) + tk.MustExec(fmt.Sprintf("set @@tidb_analyze_partition_concurrency=%v", concurrency)) + tk.MustQuery("select @@tidb_analyze_partition_concurrency").Check(testkit.Rows(concurrency)) + + tk.MustExec("analyze table t") + tk.MustQuery("show stats_topn where partition_name = 'global' and table_name = 't'") + } + + for i := 1; i <= 500; i++ { + for j := 1; j <= 20; j++ { + tk.MustExec(fmt.Sprintf("insert into t (id) values (%v)", j)) + } + } + var expected [][]interface{} + for i := 1; i <= 20; i++ { + expected = append(expected, []interface{}{ + strconv.FormatInt(int64(i), 10), "500", + }) + } + testcases = []struct { + concurrency string + }{ + { + concurrency: "1", + }, + { + concurrency: "2", + }, + { + concurrency: "3", + }, + { + concurrency: "4", + }, + { + concurrency: "5", + }, + } + for _, tc := range testcases { + concurrency := tc.concurrency + fmt.Println("testcase ", concurrency) + tk.MustExec(fmt.Sprintf("set @@tidb_merge_partition_stats_concurrency=%v", concurrency)) + tk.MustQuery("select @@tidb_merge_partition_stats_concurrency").Check(testkit.Rows(concurrency)) + tk.MustExec("analyze table t") + tk.MustQuery("show stats_topn where partition_name = 'global' and table_name = 't'").CheckAt([]int{5, 6}, expected) + } +} diff --git a/executor/analyze_utils.go b/executor/analyze_utils.go index b4ec10a104ac5..c6d4886d79b7c 100644 --- a/executor/analyze_utils.go +++ b/executor/analyze_utils.go @@ -15,6 +15,7 @@ package executor import ( + "context" "strconv" "sync" @@ -28,7 +29,7 @@ import ( func getBuildStatsConcurrency(ctx sessionctx.Context) (int, error) { sessionVars := ctx.GetSessionVars() - concurrency, err := sessionVars.GetSessionOrGlobalSystemVar(variable.TiDBBuildStatsConcurrency) + concurrency, err := sessionVars.GetSessionOrGlobalSystemVar(context.Background(), variable.TiDBBuildStatsConcurrency) if err != nil { return 0, err } diff --git a/executor/analyze_worker.go b/executor/analyze_worker.go new file mode 100644 index 0000000000000..68c2f6a1f6ec8 --- /dev/null +++ b/executor/analyze_worker.go @@ -0,0 +1,79 @@ +// Copyright 2022 PingCAP, Inc. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +package executor + +import ( + "context" + "sync/atomic" + + "github.com/pingcap/errors" + "github.com/pingcap/tidb/sessionctx" + "github.com/pingcap/tidb/statistics" + "github.com/pingcap/tidb/statistics/handle" + "github.com/pingcap/tidb/util/logutil" + "go.uber.org/zap" +) + +type analyzeSaveStatsWorker struct { + resultsCh <-chan *statistics.AnalyzeResults + sctx sessionctx.Context + errCh chan<- error + killed *uint32 +} + +func newAnalyzeSaveStatsWorker( + resultsCh <-chan *statistics.AnalyzeResults, + sctx sessionctx.Context, + errCh chan<- error, + killed *uint32) *analyzeSaveStatsWorker { + worker := &analyzeSaveStatsWorker{ + resultsCh: resultsCh, + sctx: sctx, + errCh: errCh, + killed: killed, + } + return worker +} + +func (worker *analyzeSaveStatsWorker) run(ctx context.Context, analyzeSnapshot bool) { + defer func() { + if r := recover(); r != nil { + logutil.BgLogger().Error("analyze save stats worker panicked", zap.Any("recover", r), zap.Stack("stack")) + worker.errCh <- getAnalyzePanicErr(r) + } + }() + for results := range worker.resultsCh { + if atomic.LoadUint32(worker.killed) == 1 { + worker.errCh <- errors.Trace(ErrQueryInterrupted) + return + } + err := handle.SaveTableStatsToStorage(worker.sctx, results, analyzeSnapshot) + if err != nil { + logutil.Logger(ctx).Error("save table stats to storage failed", zap.Error(err)) + finishJobWithLog(worker.sctx, results.Job, err) + worker.errCh <- err + } else { + finishJobWithLog(worker.sctx, results.Job, nil) + // Dump stats to historical storage. + if err := recordHistoricalStats(worker.sctx, results.TableID.TableID); err != nil { + logutil.BgLogger().Error("record historical stats failed", zap.Error(err)) + } + } + invalidInfoSchemaStatCache(results.TableID.GetStatisticsID()) + if err != nil { + return + } + } +} diff --git a/executor/analyzetest/analyze_test.go b/executor/analyzetest/analyze_test.go index 9274fd62b423a..c5043935e1650 100644 --- a/executor/analyzetest/analyze_test.go +++ b/executor/analyzetest/analyze_test.go @@ -975,6 +975,7 @@ func TestSavedAnalyzeOptions(t *testing.T) { tk.MustExec("use test") tk.MustExec("set @@session.tidb_analyze_version = 2") + tk.MustExec("set @@session.tidb_stats_load_sync_wait = 20000") // to stabilise test tk.MustExec("create table t(a int, b int, c int, primary key(a), key idx(b))") tk.MustExec("insert into t values (1,1,1),(2,1,2),(3,1,3),(4,1,4),(5,1,5),(6,1,6),(7,7,7),(8,8,8),(9,9,9)") @@ -1062,6 +1063,7 @@ func TestSavedPartitionAnalyzeOptions(t *testing.T) { tk.MustExec("use test") tk.MustExec("set @@session.tidb_analyze_version = 2") + tk.MustExec("set @@session.tidb_stats_load_sync_wait = 20000") // to stabilise test tk.MustExec("set @@session.tidb_partition_prune_mode = 'static'") createTable := `CREATE TABLE t (a int, b int, c varchar(10), primary key(a), index idx(b)) PARTITION BY RANGE ( a ) ( @@ -2195,7 +2197,7 @@ func TestRecordHistoryStatsAfterAnalyze(t *testing.T) { require.GreaterOrEqual(t, num, 1) // 3. dump current stats json - dumpJSONTable, err := h.DumpStatsToJSON("test", tableInfo.Meta(), nil) + dumpJSONTable, err := h.DumpStatsToJSON("test", tableInfo.Meta(), nil, true) require.NoError(t, err) jsOrigin, _ := json.Marshal(dumpJSONTable) @@ -2310,7 +2312,11 @@ func testKillAutoAnalyze(t *testing.T, ver int) { jobInfo += "table all columns with 256 buckets, 500 topn, 1 samplerate" } // kill auto analyze when it is pending/running/finished - for _, status := range []string{"pending", "running", "finished"} { + for _, status := range []string{ + "pending", + "running", + "finished", + } { func() { comment := fmt.Sprintf("kill %v analyze job", status) tk.MustExec("delete from mysql.analyze_jobs") @@ -2576,6 +2582,7 @@ func TestAnalyzePartitionTableWithDynamicMode(t *testing.T) { tk.MustExec("use test") tk.MustExec("set @@session.tidb_analyze_version = 2") + tk.MustExec("set @@session.tidb_stats_load_sync_wait = 20000") // to stabilise test tk.MustExec("set @@session.tidb_partition_prune_mode = 'dynamic'") createTable := `CREATE TABLE t (a int, b int, c varchar(10), d int, primary key(a), index idx(b)) PARTITION BY RANGE ( a ) ( @@ -2669,6 +2676,7 @@ func TestAnalyzePartitionTableStaticToDynamic(t *testing.T) { tk.MustExec("use test") tk.MustExec("set @@session.tidb_analyze_version = 2") + tk.MustExec("set @@session.tidb_stats_load_sync_wait = 20000") // to stabilise test tk.MustExec("set @@session.tidb_partition_prune_mode = 'static'") createTable := `CREATE TABLE t (a int, b int, c varchar(10), d int, primary key(a), index idx(b)) PARTITION BY RANGE ( a ) ( @@ -2860,6 +2868,7 @@ func TestAnalyzePartitionStaticToDynamic(t *testing.T) { tk.MustExec("use test") tk.MustExec("set @@session.tidb_analyze_version = 2") + tk.MustExec("set @@session.tidb_stats_load_sync_wait = 20000") // to stabilise test createTable := `CREATE TABLE t (a int, b int, c varchar(10), d int, primary key(a), index idx(b)) PARTITION BY RANGE ( a ) ( PARTITION p0 VALUES LESS THAN (10), @@ -2939,6 +2948,7 @@ func TestAnalyzePartitionUnderV1Dynamic(t *testing.T) { tk.MustExec("use test") tk.MustExec("set @@session.tidb_analyze_version = 1") + tk.MustExec("set @@session.tidb_stats_load_sync_wait = 20000") // to stabilise test tk.MustExec("set @@session.tidb_partition_prune_mode = 'dynamic'") createTable := `CREATE TABLE t (a int, b int, c varchar(10), d int, primary key(a), index idx(b)) PARTITION BY RANGE ( a ) ( diff --git a/executor/analyzetest/main_test.go b/executor/analyzetest/main_test.go index 386cd07da7beb..5ebf42dc764a2 100644 --- a/executor/analyzetest/main_test.go +++ b/executor/analyzetest/main_test.go @@ -23,6 +23,7 @@ import ( func TestMain(m *testing.M) { opts := []goleak.Option{ goleak.IgnoreTopFunction("github.com/golang/glog.(*loggingT).flushDaemon"), + goleak.IgnoreTopFunction("github.com/lestrrat-go/httprc.runFetchWorker"), goleak.IgnoreTopFunction("go.opencensus.io/stats/view.(*worker).start"), } goleak.VerifyTestMain(m, opts...) diff --git a/executor/batch_checker.go b/executor/batch_checker.go index 76eea024bc3d3..d3820ecb0d08c 100644 --- a/executor/batch_checker.go +++ b/executor/batch_checker.go @@ -16,6 +16,7 @@ package executor import ( "context" + "fmt" "strings" "github.com/pingcap/errors" @@ -141,7 +142,7 @@ func getKeysNeedCheckOneRow(ctx sessionctx.Context, t table.Table, row []types.D } handleKey = &keyValueWithDupInfo{ newKey: tablecodec.EncodeRecordKey(t.RecordPrefix(), handle), - dupErr: kv.ErrKeyExists.FastGenByArgs(stringutil.MemoizeStr(fn), "PRIMARY"), + dupErr: kv.ErrKeyExists.FastGenByArgs(stringutil.MemoizeStr(fn), t.Meta().Name.String()+".PRIMARY"), } } @@ -185,7 +186,7 @@ func getKeysNeedCheckOneRow(ctx sessionctx.Context, t table.Table, row []types.D } uniqueKeys = append(uniqueKeys, &keyValueWithDupInfo{ newKey: key, - dupErr: kv.ErrKeyExists.FastGenByArgs(colValStr, v.Meta().Name), + dupErr: kv.ErrKeyExists.FastGenByArgs(colValStr, fmt.Sprintf("%s.%s", v.TableMeta().Name.String(), v.Meta().Name.String())), commonHandle: t.Meta().IsCommonHandle, }) } diff --git a/executor/benchmark_test.go b/executor/benchmark_test.go index d80f788ae533a..99bb6ceec9103 100644 --- a/executor/benchmark_test.go +++ b/executor/benchmark_test.go @@ -915,14 +915,17 @@ func prepare4HashJoin(testCase *hashJoinTestCase, innerExec, outerExec Executor) probeKeys = append(probeKeys, cols1[keyIdx]) } e := &HashJoinExec{ - baseExecutor: newBaseExecutor(testCase.ctx, joinSchema, 5, innerExec, outerExec), + baseExecutor: newBaseExecutor(testCase.ctx, joinSchema, 5, innerExec, outerExec), + probeSideTupleFetcher: probeSideTupleFetcher{ + probeSideExec: outerExec, + }, + probeWorkers: make([]probeWorker, testCase.concurrency), concurrency: uint(testCase.concurrency), joinType: testCase.joinType, // 0 for InnerJoin, 1 for LeftOutersJoin, 2 for RightOuterJoin isOuterJoin: false, buildKeys: joinKeys, probeKeys: probeKeys, buildSideExec: innerExec, - probeSideExec: outerExec, buildSideEstCount: float64(testCase.rows), useOuterToBuild: testCase.useOuterToBuild, } @@ -930,9 +933,8 @@ func prepare4HashJoin(testCase *hashJoinTestCase, innerExec, outerExec Executor) childrenUsedSchema := markChildrenUsedCols(e.Schema(), e.children[0].Schema(), e.children[1].Schema()) defaultValues := make([]types.Datum, e.buildSideExec.Schema().Len()) lhsTypes, rhsTypes := retTypes(innerExec), retTypes(outerExec) - e.joiners = make([]joiner, e.concurrency) for i := uint(0); i < e.concurrency; i++ { - e.joiners[i] = newJoiner(testCase.ctx, e.joinType, true, defaultValues, + e.probeWorkers[i].joiner = newJoiner(testCase.ctx, e.joinType, true, defaultValues, nil, lhsTypes, rhsTypes, childrenUsedSchema, false) } memLimit := int64(-1) @@ -942,8 +944,10 @@ func prepare4HashJoin(testCase *hashJoinTestCase, innerExec, outerExec Executor) t := memory.NewTracker(-1, memLimit) t.SetActionOnExceed(nil) t2 := disk.NewTracker(-1, -1) - e.ctx.GetSessionVars().StmtCtx.MemTracker = t - e.ctx.GetSessionVars().StmtCtx.DiskTracker = t2 + e.ctx.GetSessionVars().MemTracker = t + e.ctx.GetSessionVars().StmtCtx.MemTracker.AttachTo(t) + e.ctx.GetSessionVars().DiskTracker = t2 + e.ctx.GetSessionVars().StmtCtx.DiskTracker.AttachTo(t2) return e } diff --git a/executor/bind.go b/executor/bind.go index aed1ee3460e68..cf337968d4130 100644 --- a/executor/bind.go +++ b/executor/bind.go @@ -75,9 +75,12 @@ func (e *SQLBindExec) dropSQLBind() error { } if !e.isGlobal { handle := e.ctx.Value(bindinfo.SessionBindInfoKeyType).(*bindinfo.SessionHandle) - return handle.DropBindRecord(e.normdOrigSQL, e.db, bindInfo) + err := handle.DropBindRecord(e.normdOrigSQL, e.db, bindInfo) + return err } - return domain.GetDomain(e.ctx).BindHandle().DropBindRecord(e.normdOrigSQL, e.db, bindInfo) + affectedRows, err := domain.GetDomain(e.ctx).BindHandle().DropBindRecord(e.normdOrigSQL, e.db, bindInfo) + e.ctx.GetSessionVars().StmtCtx.AddAffectedRows(affectedRows) + return err } func (e *SQLBindExec) setBindingStatus() error { diff --git a/executor/brie.go b/executor/brie.go index f26ae56aa32e4..608cfd6336b52 100644 --- a/executor/brie.go +++ b/executor/brie.go @@ -515,7 +515,7 @@ func (gs *tidbGlueSession) CreateDatabase(ctx context.Context, schema *model.DBI } // CreateTable implements glue.Session -func (gs *tidbGlueSession) CreateTable(ctx context.Context, dbName model.CIStr, table *model.TableInfo) error { +func (gs *tidbGlueSession) CreateTable(ctx context.Context, dbName model.CIStr, table *model.TableInfo, cs ...ddl.CreateTableWithInfoConfigurier) error { d := domain.GetDomain(gs.se).DDL() // 512 is defaultCapOfCreateTable. @@ -533,7 +533,7 @@ func (gs *tidbGlueSession) CreateTable(ctx context.Context, dbName model.CIStr, table.Partition = &newPartition } - return d.CreateTableWithInfo(gs.se, dbName, table, ddl.OnExistIgnore) + return d.CreateTableWithInfo(gs.se, dbName, table, append(cs, ddl.OnExistIgnore)...) } // CreatePlacementPolicy implements glue.Session diff --git a/executor/builder.go b/executor/builder.go index 007fe3a557b16..dfd44d549eff1 100644 --- a/executor/builder.go +++ b/executor/builder.go @@ -201,6 +201,10 @@ func (b *executorBuilder) build(p plannercore.Plan) Executor { return b.buildLoadData(v) case *plannercore.LoadStats: return b.buildLoadStats(v) + case *plannercore.LockStats: + return b.buildLockStats(v) + case *plannercore.UnlockStats: + return b.buildUnlockStats(v) case *plannercore.IndexAdvise: return b.buildIndexAdvise(v) case *plannercore.PlanReplayer: @@ -888,9 +892,12 @@ func (b *executorBuilder) buildInsert(v *plannercore.Insert) Executor { b.err = err return nil } - ivs.fkChecks, err = buildFKCheckExecs(b.ctx, ivs.Table, v.FKChecks) - if err != nil { - b.err = err + ivs.fkChecks, b.err = buildFKCheckExecs(b.ctx, ivs.Table, v.FKChecks) + if b.err != nil { + return nil + } + ivs.fkCascades, b.err = b.buildFKCascadeExecs(ivs.Table, v.FKCascades) + if b.err != nil { return nil } @@ -957,6 +964,22 @@ func (b *executorBuilder) buildLoadStats(v *plannercore.LoadStats) Executor { return e } +func (b *executorBuilder) buildLockStats(v *plannercore.LockStats) Executor { + e := &LockStatsExec{ + baseExecutor: newBaseExecutor(b.ctx, nil, v.ID()), + Tables: v.Tables, + } + return e +} + +func (b *executorBuilder) buildUnlockStats(v *plannercore.UnlockStats) Executor { + e := &UnlockStatsExec{ + baseExecutor: newBaseExecutor(b.ctx, nil, v.ID()), + Tables: v.Tables, + } + return e +} + func (b *executorBuilder) buildIndexAdvise(v *plannercore.IndexAdvise) Executor { e := &IndexAdviseExec{ baseExecutor: newBaseExecutor(b.ctx, nil, v.ID()), @@ -1005,14 +1028,14 @@ func (b *executorBuilder) buildReplace(vals *InsertValues) Executor { func (b *executorBuilder) buildGrant(grant *ast.GrantStmt) Executor { e := &GrantExec{ - baseExecutor: newBaseExecutor(b.ctx, nil, 0), - Privs: grant.Privs, - ObjectType: grant.ObjectType, - Level: grant.Level, - Users: grant.Users, - WithGrant: grant.WithGrant, - TLSOptions: grant.TLSOptions, - is: b.is, + baseExecutor: newBaseExecutor(b.ctx, nil, 0), + Privs: grant.Privs, + ObjectType: grant.ObjectType, + Level: grant.Level, + Users: grant.Users, + WithGrant: grant.WithGrant, + AuthTokenOrTLSOptions: grant.AuthTokenOrTLSOptions, + is: b.is, } return e } @@ -1089,7 +1112,7 @@ func (b *executorBuilder) setTelemetryInfo(v *plannercore.DDL) { } } case model.PartitionTypeHash: - if !p.Linear && p.Sub == nil { + if p.Sub == nil { b.Ti.PartitionTelemetry.UseTablePartitionHash = true } case model.PartitionTypeList: @@ -1102,6 +1125,8 @@ func (b *executorBuilder) setTelemetryInfo(v *plannercore.DDL) { } } } + case *ast.FlashBackToTimestampStmt: + b.Ti.UseFlashbackToCluster = true } } @@ -1414,25 +1439,25 @@ func (b *executorBuilder) buildHashJoin(v *plannercore.PhysicalHashJoin) Executo // update the buildSideEstCount due to changing the build side if v.InnerChildIdx == 1 { e.buildSideExec, e.buildKeys, e.buildNAKeys = leftExec, v.LeftJoinKeys, v.LeftNAJoinKeys - e.probeSideExec, e.probeKeys, e.probeNAKeys = rightExec, v.RightJoinKeys, v.RightNAJoinKeys + e.probeSideTupleFetcher.probeSideExec, e.probeKeys, e.probeNAKeys = rightExec, v.RightJoinKeys, v.RightNAJoinKeys e.outerFilter = v.LeftConditions } else { e.buildSideExec, e.buildKeys, e.buildNAKeys = rightExec, v.RightJoinKeys, v.RightNAJoinKeys - e.probeSideExec, e.probeKeys, e.probeNAKeys = leftExec, v.LeftJoinKeys, v.LeftNAJoinKeys + e.probeSideTupleFetcher.probeSideExec, e.probeKeys, e.probeNAKeys = leftExec, v.LeftJoinKeys, v.LeftNAJoinKeys e.outerFilter = v.RightConditions leftIsBuildSide = false } if defaultValues == nil { - defaultValues = make([]types.Datum, e.probeSideExec.Schema().Len()) + defaultValues = make([]types.Datum, e.probeSideTupleFetcher.probeSideExec.Schema().Len()) } } else { if v.InnerChildIdx == 0 { e.buildSideExec, e.buildKeys, e.buildNAKeys = leftExec, v.LeftJoinKeys, v.LeftNAJoinKeys - e.probeSideExec, e.probeKeys, e.probeNAKeys = rightExec, v.RightJoinKeys, v.RightNAJoinKeys + e.probeSideTupleFetcher.probeSideExec, e.probeKeys, e.probeNAKeys = rightExec, v.RightJoinKeys, v.RightNAJoinKeys e.outerFilter = v.RightConditions } else { e.buildSideExec, e.buildKeys, e.buildNAKeys = rightExec, v.RightJoinKeys, v.RightNAJoinKeys - e.probeSideExec, e.probeKeys, e.probeNAKeys = leftExec, v.LeftJoinKeys, v.LeftNAJoinKeys + e.probeSideTupleFetcher.probeSideExec, e.probeKeys, e.probeNAKeys = leftExec, v.LeftJoinKeys, v.LeftNAJoinKeys e.outerFilter = v.LeftConditions leftIsBuildSide = false } @@ -1443,9 +1468,9 @@ func (b *executorBuilder) buildHashJoin(v *plannercore.PhysicalHashJoin) Executo isNAJoin := len(v.LeftNAJoinKeys) > 0 e.buildSideEstCount = b.buildSideEstCount(v) childrenUsedSchema := markChildrenUsedCols(v.Schema(), v.Children()[0].Schema(), v.Children()[1].Schema()) - e.joiners = make([]joiner, e.concurrency) + e.probeWorkers = make([]probeWorker, e.concurrency) for i := uint(0); i < e.concurrency; i++ { - e.joiners[i] = newJoiner(b.ctx, v.JoinType, v.InnerChildIdx == 0, defaultValues, + e.probeWorkers[i].joiner = newJoiner(b.ctx, v.JoinType, v.InnerChildIdx == 0, defaultValues, v.OtherConditions, lhsTypes, rhsTypes, childrenUsedSchema, isNAJoin) } executorCountHashJoinExec.Inc() @@ -1535,7 +1560,7 @@ func (b *executorBuilder) buildHashAgg(v *plannercore.PhysicalHashAgg) Executor e.defaultVal = nil } else { if v.IsFinalAgg() { - e.defaultVal = chunk.NewChunkWithCapacity(retTypes(e), 1) + e.defaultVal = e.ctx.GetSessionVars().GetNewChunkWithCapacity(retTypes(e), 1, 1, e.AllocPool) } } for _, aggDesc := range v.AggFuncs { @@ -1598,7 +1623,7 @@ func (b *executorBuilder) buildStreamAgg(v *plannercore.PhysicalStreamAgg) Execu } else { // Only do this for final agg, see issue #35295, #30923 if v.IsFinalAgg() { - e.defaultVal = chunk.NewChunkWithCapacity(retTypes(e), 1) + e.defaultVal = e.ctx.GetSessionVars().GetNewChunkWithCapacity(retTypes(e), 1, 1, e.AllocPool) } } for i, aggDesc := range v.AggFuncs { @@ -1869,7 +1894,12 @@ func (b *executorBuilder) buildMemTable(v *plannercore.PhysicalMemTable) Executo strings.ToLower(infoschema.TablePlacementPolicies), strings.ToLower(infoschema.TableTrxSummary), strings.ToLower(infoschema.TableVariablesInfo), - strings.ToLower(infoschema.ClusterTableTrxSummary): + strings.ToLower(infoschema.TableUserAttributes), + strings.ToLower(infoschema.ClusterTableTrxSummary), + strings.ToLower(infoschema.TableMemoryUsage), + strings.ToLower(infoschema.TableMemoryUsageOpsHistory), + strings.ToLower(infoschema.ClusterTableMemoryUsage), + strings.ToLower(infoschema.ClusterTableMemoryUsageOpsHistory): return &MemTableReaderExec{ baseExecutor: newBaseExecutor(b.ctx, v.Schema(), v.ID()), table: v.Table, @@ -2252,6 +2282,10 @@ func (b *executorBuilder) buildUpdate(v *plannercore.Update) Executor { if b.err != nil { return nil } + updateExec.fkCascades, b.err = b.buildTblID2FKCascadeExecs(tblID2table, v.FKCascades) + if b.err != nil { + return nil + } return updateExec } @@ -2300,6 +2334,10 @@ func (b *executorBuilder) buildDelete(v *plannercore.Delete) Executor { if b.err != nil { return nil } + deleteExec.fkCascades, b.err = b.buildTblID2FKCascadeExecs(tblID2table, v.FKCascades) + if b.err != nil { + return nil + } return deleteExec } @@ -2521,7 +2559,7 @@ func (b *executorBuilder) buildAnalyzeSamplingPushdown(task plannercore.AnalyzeC e.analyzePB.ColReq.PrimaryPrefixColumnIds = tables.PrimaryPrefixColumnIDs(task.TblInfo) } } - b.err = plannercore.SetPBColumnsDefaultValue(b.ctx, e.analyzePB.ColReq.ColumnsInfo, task.ColsInfo) + b.err = tables.SetPBColumnsDefaultValue(b.ctx, e.analyzePB.ColReq.ColumnsInfo, task.ColsInfo) return &analyzeTask{taskType: colTask, colExec: e, job: job} } @@ -2703,7 +2741,7 @@ func (b *executorBuilder) buildAnalyzeColumnsPushdown(task plannercore.AnalyzeCo e.analyzePB.Tp = tipb.AnalyzeType_TypeMixed e.commonHandle = task.CommonHandleInfo } - b.err = plannercore.SetPBColumnsDefaultValue(b.ctx, e.analyzePB.ColReq.ColumnsInfo, cols) + b.err = tables.SetPBColumnsDefaultValue(b.ctx, e.analyzePB.ColReq.ColumnsInfo, cols) return &analyzeTask{taskType: colTask, colExec: e, job: job} } @@ -3117,7 +3155,7 @@ func (b *executorBuilder) buildIndexLookUpJoin(v *plannercore.PhysicalIndexJoin) e.innerCtx.hashCols = innerHashCols e.innerCtx.hashCollators = hashCollators - e.joinResult = newFirstChunk(e) + e.joinResult = tryNewCacheChunk(e) executorCounterIndexLookUpJoin.Inc() return e } @@ -4152,12 +4190,12 @@ func (builder *dataReaderBuilder) buildTableReaderForIndexJoin(ctx context.Conte continue } handle := kv.IntHandle(content.keys[0].GetInt64()) - tmp := distsql.TableHandlesToKVRanges(pid, []kv.Handle{handle}) + tmp, _ := distsql.TableHandlesToKVRanges(pid, []kv.Handle{handle}) kvRanges = append(kvRanges, tmp...) } } else { for _, p := range usedPartitionList { - tmp := distsql.TableHandlesToKVRanges(p.GetPhysicalID(), handles) + tmp, _ := distsql.TableHandlesToKVRanges(p.GetPhysicalID(), handles) kvRanges = append(kvRanges, tmp...) } } @@ -4291,7 +4329,6 @@ func (builder *dataReaderBuilder) buildTableReaderFromHandles(ctx context.Contex b.SetTableHandles(getPhysicalTableID(e.table), handles) } } - return builder.buildTableReaderBase(ctx, e, b) } diff --git a/executor/charset_test.go b/executor/charset_test.go index 72dd9351f1b6c..d40bc6a2fe296 100644 --- a/executor/charset_test.go +++ b/executor/charset_test.go @@ -101,9 +101,9 @@ func TestCharsetWithPrefixIndex(t *testing.T) { tk.MustExec("use test") tk.MustExec("create table t(a char(20) charset gbk, b char(20) charset gbk, primary key (a(2)))") tk.MustExec("insert into t values ('a', '中文'), ('中文', '中文'), ('一二三', '一二三'), ('b', '一二三')") - tk.MustQuery("select * from t").Check(testkit.Rows("a 中文", "中文 中文", "一二三 一二三", "b 一二三")) + tk.MustQuery("select * from t;").Sort().Check(testkit.Rows("a 中文", "b 一二三", "一二三 一二三", "中文 中文")) tk.MustExec("drop table t") tk.MustExec("create table t(a char(20) charset gbk, b char(20) charset gbk, unique index idx_a(a(2)))") tk.MustExec("insert into t values ('a', '中文'), ('中文', '中文'), ('一二三', '一二三'), ('b', '一二三')") - tk.MustQuery("select * from t").Check(testkit.Rows("a 中文", "中文 中文", "一二三 一二三", "b 一二三")) + tk.MustQuery("select * from t;").Sort().Check(testkit.Rows("a 中文", "b 一二三", "一二三 一二三", "中文 中文")) } diff --git a/executor/checksum.go b/executor/checksum.go index a23ec0b577b48..fa2d02338ec3f 100644 --- a/executor/checksum.go +++ b/executor/checksum.go @@ -272,7 +272,7 @@ func (c *checksumContext) HandleResponse(update *tipb.ChecksumResponse) { func getChecksumTableConcurrency(ctx sessionctx.Context) (int, error) { sessionVars := ctx.GetSessionVars() - concurrency, err := sessionVars.GetSessionOrGlobalSystemVar(variable.TiDBChecksumTableConcurrency) + concurrency, err := sessionVars.GetSessionOrGlobalSystemVar(context.Background(), variable.TiDBChecksumTableConcurrency) if err != nil { return 0, err } diff --git a/executor/compiler.go b/executor/compiler.go index 8f0ac913a30f1..241b15874e1e2 100644 --- a/executor/compiler.go +++ b/executor/compiler.go @@ -76,7 +76,7 @@ func (c *Compiler) Compile(ctx context.Context, stmtNode ast.StmtNode) (_ *ExecS c.Ctx.GetSessionVars().StmtCtx.IsReadOnly = plannercore.IsReadOnly(stmtNode, c.Ctx.GetSessionVars()) ret := &plannercore.PreprocessorReturn{} - err = plannercore.Preprocess(c.Ctx, + err = plannercore.Preprocess(ctx, c.Ctx, stmtNode, plannercore.WithPreprocessorReturn(ret), plannercore.InitTxnContextProvider, diff --git a/executor/coprocessor.go b/executor/coprocessor.go index 93a23dd6829ca..7a3389026c561 100644 --- a/executor/coprocessor.go +++ b/executor/coprocessor.go @@ -59,9 +59,10 @@ func (h *CoprocessorDAGHandler) HandleRequest(ctx context.Context, req *coproces return h.buildErrorResponse(err) } - chk := newFirstChunk(e) + chk := tryNewCacheChunk(e) tps := e.base().retFieldTypes var totalChunks, partChunks []tipb.Chunk + memTracker := h.sctx.GetSessionVars().StmtCtx.MemTracker for { chk.Reset() err = Next(ctx, e, chk) @@ -75,6 +76,9 @@ func (h *CoprocessorDAGHandler) HandleRequest(ctx context.Context, req *coproces if err != nil { return h.buildErrorResponse(err) } + for _, ch := range partChunks { + memTracker.Consume(int64(ch.Size())) + } totalChunks = append(totalChunks, partChunks...) } if err := e.Close(); err != nil { @@ -95,7 +99,7 @@ func (h *CoprocessorDAGHandler) HandleStreamRequest(ctx context.Context, req *co return stream.Send(h.buildErrorResponse(err)) } - chk := newFirstChunk(e) + chk := tryNewCacheChunk(e) tps := e.base().retFieldTypes for { chk.Reset() diff --git a/executor/cte.go b/executor/cte.go index 84389f9439214..4ae6113008fdf 100644 --- a/executor/cte.go +++ b/executor/cte.go @@ -234,7 +234,7 @@ func (e *CTEExec) computeSeedPart(ctx context.Context) (err error) { if e.limitDone(e.iterInTbl) { break } - chk := newFirstChunk(e.seedExec) + chk := tryNewCacheChunk(e.seedExec) if err = Next(ctx, e.seedExec, chk); err != nil { return err } @@ -273,7 +273,7 @@ func (e *CTEExec) computeRecursivePart(ctx context.Context) (err error) { } for { - chk := newFirstChunk(e.recursiveExec) + chk := tryNewCacheChunk(e.recursiveExec) if err = Next(ctx, e.recursiveExec, chk); err != nil { return err } @@ -438,7 +438,7 @@ func setupCTEStorageTracker(tbl cteutil.Storage, ctx sessionctx.Context, parentM actionSpill = tbl.(*cteutil.StorageRC).ActionSpillForTest() } }) - ctx.GetSessionVars().StmtCtx.MemTracker.FallbackOldAndSetNewAction(actionSpill) + ctx.GetSessionVars().MemTracker.FallbackOldAndSetNewAction(actionSpill) } return actionSpill } diff --git a/executor/ddl.go b/executor/ddl.go index 1fd2b20eb70a1..85918bb7d4f54 100644 --- a/executor/ddl.go +++ b/executor/ddl.go @@ -30,7 +30,6 @@ import ( "github.com/pingcap/tidb/parser/mysql" "github.com/pingcap/tidb/parser/terror" "github.com/pingcap/tidb/planner/core" - "github.com/pingcap/tidb/privilege" "github.com/pingcap/tidb/sessionctx/variable" "github.com/pingcap/tidb/sessiontxn" "github.com/pingcap/tidb/sessiontxn/staleread" @@ -150,10 +149,12 @@ func (e *DDLExec) Next(ctx context.Context, req *chunk.Chunk) (err error) { err = e.executeCreateIndex(x) case *ast.CreateDatabaseStmt: err = e.executeCreateDatabase(x) + case *ast.FlashBackDatabaseStmt: + err = e.executeFlashbackDatabase(x) case *ast.CreateTableStmt: err = e.executeCreateTable(x) case *ast.CreateViewStmt: - err = e.executeCreateView(x) + err = e.executeCreateView(ctx, x) case *ast.DropIndexStmt: err = e.executeDropIndex(x) case *ast.DropDatabaseStmt: @@ -171,8 +172,14 @@ func (e *DDLExec) Next(ctx context.Context, req *chunk.Chunk) (err error) { err = e.executeRecoverTable(x) case *ast.FlashBackTableStmt: err = e.executeFlashbackTable(x) - case *ast.FlashBackClusterStmt: - err = e.executeFlashBackCluster(ctx, x) + case *ast.FlashBackToTimestampStmt: + if len(x.Tables) != 0 { + err = dbterror.ErrGeneralUnsupportedDDL.GenWithStack("Unsupported FLASHBACK table TO TIMESTAMP") + } else if x.DBName.O != "" { + err = dbterror.ErrGeneralUnsupportedDDL.GenWithStack("Unsupported FLASHBACK database TO TIMESTAMP") + } else { + err = e.executeFlashBackCluster(x) + } case *ast.RenameTableStmt: err = e.executeRenameTable(x) case *ast.TruncateTableStmt: @@ -281,9 +288,9 @@ func (e *DDLExec) createSessionTemporaryTable(s *ast.CreateTableStmt) error { return nil } -func (e *DDLExec) executeCreateView(s *ast.CreateViewStmt) error { +func (e *DDLExec) executeCreateView(ctx context.Context, s *ast.CreateViewStmt) error { ret := &core.PreprocessorReturn{} - err := core.Preprocess(e.ctx, s.Select, core.WithPreprocessorReturn(ret)) + err := core.Preprocess(ctx, e.ctx, s.Select, core.WithPreprocessorReturn(ret)) if err != nil { return errors.Trace(err) } @@ -523,20 +530,7 @@ func (e *DDLExec) getRecoverTableByTableName(tableName *ast.TableName) (*model.J return jobInfo, tableInfo, nil } -func (e *DDLExec) executeFlashBackCluster(ctx context.Context, s *ast.FlashBackClusterStmt) error { - checker := privilege.GetPrivilegeManager(e.ctx) - if !checker.RequestVerification(e.ctx.GetSessionVars().ActiveRoles, "", "", "", mysql.SuperPriv) { - return core.ErrSpecificAccessDenied.GenWithStackByArgs("SUPER") - } - - tiFlashInfo, err := getTiFlashStores(e.ctx) - if err != nil { - return err - } - if len(tiFlashInfo) != 0 { - return errors.Errorf("not support flash back cluster with TiFlash stores") - } - +func (e *DDLExec) executeFlashBackCluster(s *ast.FlashBackToTimestampStmt) error { flashbackTS, err := staleread.CalculateAsOfTsExpr(e.ctx, s.FlashbackTS) if err != nil { return err @@ -583,6 +577,108 @@ func (e *DDLExec) executeFlashbackTable(s *ast.FlashBackTableStmt) error { return err } +// executeFlashbackDatabase represents a restore schema executor. +// It is built from "flashback schema" statement, +// is used to recover the schema that deleted by mistake. +func (e *DDLExec) executeFlashbackDatabase(s *ast.FlashBackDatabaseStmt) error { + dbName := s.DBName + if len(s.NewName) > 0 { + dbName = model.NewCIStr(s.NewName) + } + // Check the Schema Name was not exists. + is := domain.GetDomain(e.ctx).InfoSchema() + if is.SchemaExists(dbName) { + return infoschema.ErrDatabaseExists.GenWithStackByArgs(dbName) + } + recoverSchemaInfo, err := e.getRecoverDBByName(s.DBName) + if err != nil { + return err + } + // Check the Schema ID was not exists. + if schema, ok := is.SchemaByID(recoverSchemaInfo.ID); ok { + return infoschema.ErrDatabaseExists.GenWithStack("Schema '%-.192s' already been recover to '%-.192s', can't be recover repeatedly", s.DBName, schema.Name.O) + } + recoverSchemaInfo.Name = dbName + // Call DDL RecoverSchema. + err = domain.GetDomain(e.ctx).DDL().RecoverSchema(e.ctx, recoverSchemaInfo) + return err +} + +func (e *DDLExec) getRecoverDBByName(schemaName model.CIStr) (recoverSchemaInfo *ddl.RecoverSchemaInfo, err error) { + txn, err := e.ctx.Txn(true) + if err != nil { + return nil, err + } + gcSafePoint, err := gcutil.GetGCSafePoint(e.ctx) + if err != nil { + return nil, err + } + dom := domain.GetDomain(e.ctx) + fn := func(jobs []*model.Job) (bool, error) { + for _, job := range jobs { + // Check GC safe point for getting snapshot infoSchema. + err = gcutil.ValidateSnapshotWithGCSafePoint(job.StartTS, gcSafePoint) + if err != nil { + return false, err + } + if job.Type != model.ActionDropSchema { + continue + } + snapMeta, err := dom.GetSnapshotMeta(job.StartTS) + if err != nil { + return false, err + } + schemaInfo, err := snapMeta.GetDatabase(job.SchemaID) + if err != nil { + return false, err + } + if schemaInfo == nil { + // The dropped DDL maybe execute failed that caused by the parallel DDL execution, + // then can't find the schema from the snapshot info-schema. Should just ignore error here, + // see more in TestParallelDropSchemaAndDropTable. + continue + } + if schemaInfo.Name.L != schemaName.L { + continue + } + tables, err := snapMeta.ListTables(job.SchemaID) + if err != nil { + return false, err + } + recoverTabsInfo := make([]*ddl.RecoverInfo, 0) + for _, tblInfo := range tables { + autoIDs, err := snapMeta.GetAutoIDAccessors(job.SchemaID, tblInfo.ID).Get() + if err != nil { + return false, err + } + recoverTabsInfo = append(recoverTabsInfo, &ddl.RecoverInfo{ + SchemaID: job.SchemaID, + TableInfo: tblInfo, + DropJobID: job.ID, + SnapshotTS: job.StartTS, + AutoIDs: autoIDs, + OldSchemaName: schemaName.L, + OldTableName: tblInfo.Name.L, + }) + } + recoverSchemaInfo = &ddl.RecoverSchemaInfo{DBInfo: schemaInfo, RecoverTabsInfo: recoverTabsInfo, DropJobID: job.ID, SnapshotTS: job.StartTS, OldSchemaName: schemaName} + return true, nil + } + return false, nil + } + err = ddl.IterHistoryDDLJobs(txn, fn) + if err != nil { + if terror.ErrorEqual(variable.ErrSnapshotTooOld, err) { + return nil, errors.Errorf("Can't find dropped database '%s' in GC safe point %s", schemaName.O, model.TSConvert2Time(gcSafePoint).String()) + } + return nil, err + } + if recoverSchemaInfo == nil { + return nil, errors.Errorf("Can't find dropped database: %v in DDL history jobs", schemaName.O) + } + return +} + func (e *DDLExec) executeLockTables(s *ast.LockTablesStmt) error { if !config.TableLockEnabled() { e.ctx.GetSessionVars().StmtCtx.AppendWarning(ErrFuncNotEnabled.GenWithStackByArgs("LOCK TABLES", "enable-table-lock")) diff --git a/executor/ddl_test.go b/executor/ddl_test.go index 58f6fe1215975..d4d0d59d4ab5b 100644 --- a/executor/ddl_test.go +++ b/executor/ddl_test.go @@ -80,7 +80,7 @@ func TestInTxnExecDDLFail(t *testing.T) { tk.MustExec("begin;") tk.MustExec("insert into t values (1);") _, err := tk.Exec("truncate table t;") - require.EqualError(t, err, "[kv:1062]Duplicate entry '1' for key 'PRIMARY'") + require.EqualError(t, err, "[kv:1062]Duplicate entry '1' for key 't.PRIMARY'") result := tk.MustQuery("select count(*) from t") result.Check(testkit.Rows("1")) } @@ -1112,6 +1112,25 @@ func TestAutoRandomTableOption(t *testing.T) { require.Contains(t, err.Error(), autoid.AutoRandomRebaseNotApplicable) } +func TestAutoRandomClusteredPrimaryKey(t *testing.T) { + store := testkit.CreateMockStore(t) + tk := testkit.NewTestKit(t, store) + tk.MustExec("use test") + tk.MustExec("create table t (a bigint auto_random(5), b int, primary key (a, b) clustered);") + tk.MustExec("insert into t (b) values (1);") + tk.MustExec("set @@allow_auto_random_explicit_insert = 0;") + tk.MustGetErrCode("insert into t values (100, 2);", errno.ErrInvalidAutoRandom) + tk.MustExec("set @@allow_auto_random_explicit_insert = 1;") + tk.MustExec("insert into t values (100, 2);") + tk.MustQuery("select b from t order by b;").Check(testkit.Rows("1", "2")) + tk.MustExec("alter table t modify column a bigint auto_random(6);") + + tk.MustExec("drop table t;") + tk.MustExec("create table t (a bigint, b bigint auto_random(4, 32), primary key (b, a) clustered)") + tk.MustExec("insert into t (a) values (1);") + tk.MustQuery("select a from t;").Check(testkit.Rows("1")) +} + // Test filter different kind of allocators. // In special ddl type, for example: // 1: ActionRenameTable : it will abandon all the old allocators. diff --git a/executor/delete.go b/executor/delete.go index 36171eed88826..979db825dfb66 100644 --- a/executor/delete.go +++ b/executor/delete.go @@ -46,6 +46,8 @@ type DeleteExec struct { memTracker *memory.Tracker // fkChecks contains the foreign key checkers. the map is tableID -> []*FKCheckExec fkChecks map[int64][]*FKCheckExec + // fkCascades contains the foreign key cascade. the map is tableID -> []*FKCascadeExec + fkCascades map[int64][]*FKCascadeExec } // Next implements the Executor Next interface. @@ -93,7 +95,7 @@ func (e *DeleteExec) deleteSingleTableByChunk(ctx context.Context) error { batchDelete := e.ctx.GetSessionVars().BatchDelete && !e.ctx.GetSessionVars().InTxn() && variable.EnableBatchDML.Load() && batchDMLSize > 0 fields := retTypes(e.children[0]) - chk := newFirstChunk(e.children[0]) + chk := tryNewCacheChunk(e.children[0]) columns := e.children[0].Schema().Columns if len(columns) != len(fields) { logutil.BgLogger().Error("schema columns and fields mismatch", @@ -188,7 +190,7 @@ func (e *DeleteExec) deleteMultiTablesByChunk(ctx context.Context) error { colPosInfos := e.tblColPosInfos tblRowMap := make(tableRowMapType) fields := retTypes(e.children[0]) - chk := newFirstChunk(e.children[0]) + chk := tryNewCacheChunk(e.children[0]) memUsageOfChk := int64(0) for { e.memTracker.Consume(-memUsageOfChk) @@ -241,16 +243,31 @@ func (e *DeleteExec) removeRow(ctx sessionctx.Context, t table.Table, h kv.Handl if err != nil { return err } + err = e.onRemoveRowForFK(ctx, t, data) + if err != nil { + return err + } + e.memTracker.Consume(int64(txnState.Size() - memUsageOfTxnState)) + ctx.GetSessionVars().StmtCtx.AddAffectedRows(1) + return nil +} + +func (e *DeleteExec) onRemoveRowForFK(ctx sessionctx.Context, t table.Table, data []types.Datum) error { fkChecks := e.fkChecks[t.Meta().ID] sc := ctx.GetSessionVars().StmtCtx for _, fkc := range fkChecks { - err = fkc.deleteRowNeedToCheck(sc, data) + err := fkc.deleteRowNeedToCheck(sc, data) + if err != nil { + return err + } + } + fkCascades := e.fkCascades[t.Meta().ID] + for _, fkc := range fkCascades { + err := fkc.onDeleteRow(sc, data) if err != nil { return err } } - e.memTracker.Consume(int64(txnState.Size() - memUsageOfTxnState)) - ctx.GetSessionVars().StmtCtx.AddAffectedRows(1) return nil } @@ -277,6 +294,20 @@ func (e *DeleteExec) GetFKChecks() []*FKCheckExec { return fkChecks } +// GetFKCascades implements WithForeignKeyTrigger interface. +func (e *DeleteExec) GetFKCascades() []*FKCascadeExec { + fkCascades := []*FKCascadeExec{} + for _, fkcs := range e.fkCascades { + fkCascades = append(fkCascades, fkcs...) + } + return fkCascades +} + +// HasFKCascades implements WithForeignKeyTrigger interface. +func (e *DeleteExec) HasFKCascades() bool { + return len(e.fkCascades) > 0 +} + // tableRowMapType is a map for unique (Table, Row) pair. key is the tableID. // the key in map[int64]Row is the joined table handle, which represent a unique reference row. // the value in map[int64]Row is the deleting row. diff --git a/executor/distsql.go b/executor/distsql.go index 6121d5fcaa4cd..0cef7e66d441e 100644 --- a/executor/distsql.go +++ b/executor/distsql.go @@ -866,7 +866,7 @@ func (w *indexWorker) fetchHandles(ctx context.Context, result distsql.SelectRes } }() retTps := w.idxLookup.getRetTpsByHandle() - chk := chunk.NewChunkWithCapacity(retTps, w.idxLookup.maxChunkSize) + chk := w.idxLookup.ctx.GetSessionVars().GetNewChunkWithCapacity(retTps, w.idxLookup.maxChunkSize, w.idxLookup.maxChunkSize, w.idxLookup.AllocPool) idxID := w.idxLookup.getIndexPlanRootID() if w.idxLookup.ctx.GetSessionVars().StmtCtx.RuntimeStatsColl != nil { if idxID != w.idxLookup.id && w.idxLookup.stats != nil { @@ -1161,7 +1161,7 @@ func (e *IndexLookUpRunTimeStats) Tp() int { } func (w *tableWorker) compareData(ctx context.Context, task *lookupTableTask, tableReader Executor) error { - chk := newFirstChunk(tableReader) + chk := tryNewCacheChunk(tableReader) tblInfo := w.idxLookup.table.Meta() vals := make([]types.Datum, 0, len(w.idxTblCols)) @@ -1317,7 +1317,7 @@ func (w *tableWorker) executeTask(ctx context.Context, task *lookupTableTask) er handleCnt := len(task.handles) task.rows = make([]chunk.Row, 0, handleCnt) for { - chk := newFirstChunk(tableReader) + chk := tryNewCacheChunk(tableReader) err = Next(ctx, tableReader, chk) if err != nil { logutil.Logger(ctx).Error("table reader fetch next chunk failed", zap.Error(err)) diff --git a/executor/errors.go b/executor/errors.go index d38312947cc6a..4a0c7f9215875 100644 --- a/executor/errors.go +++ b/executor/errors.go @@ -58,16 +58,17 @@ var ( ErrSettingNoopVariable = dbterror.ClassExecutor.NewStd(mysql.ErrSettingNoopVariable) ErrLazyUniquenessCheckFailure = dbterror.ClassExecutor.NewStd(mysql.ErrLazyUniquenessCheckFailure) - ErrBRIEBackupFailed = dbterror.ClassExecutor.NewStd(mysql.ErrBRIEBackupFailed) - ErrBRIERestoreFailed = dbterror.ClassExecutor.NewStd(mysql.ErrBRIERestoreFailed) - ErrBRIEImportFailed = dbterror.ClassExecutor.NewStd(mysql.ErrBRIEImportFailed) - ErrBRIEExportFailed = dbterror.ClassExecutor.NewStd(mysql.ErrBRIEExportFailed) - ErrCTEMaxRecursionDepth = dbterror.ClassExecutor.NewStd(mysql.ErrCTEMaxRecursionDepth) - ErrNotSupportedWithSem = dbterror.ClassOptimizer.NewStd(mysql.ErrNotSupportedWithSem) - ErrPluginIsNotLoaded = dbterror.ClassExecutor.NewStd(mysql.ErrPluginIsNotLoaded) - ErrSetPasswordAuthPlugin = dbterror.ClassExecutor.NewStd(mysql.ErrSetPasswordAuthPlugin) - ErrFuncNotEnabled = dbterror.ClassExecutor.NewStdErr(mysql.ErrNotSupportedYet, parser_mysql.Message("%-.32s is not supported. To enable this experimental feature, set '%-.32s' in the configuration file.", nil)) - errSavepointNotExists = dbterror.ClassExecutor.NewStd(mysql.ErrSpDoesNotExist) + ErrBRIEBackupFailed = dbterror.ClassExecutor.NewStd(mysql.ErrBRIEBackupFailed) + ErrBRIERestoreFailed = dbterror.ClassExecutor.NewStd(mysql.ErrBRIERestoreFailed) + ErrBRIEImportFailed = dbterror.ClassExecutor.NewStd(mysql.ErrBRIEImportFailed) + ErrBRIEExportFailed = dbterror.ClassExecutor.NewStd(mysql.ErrBRIEExportFailed) + ErrCTEMaxRecursionDepth = dbterror.ClassExecutor.NewStd(mysql.ErrCTEMaxRecursionDepth) + ErrNotSupportedWithSem = dbterror.ClassOptimizer.NewStd(mysql.ErrNotSupportedWithSem) + ErrPluginIsNotLoaded = dbterror.ClassExecutor.NewStd(mysql.ErrPluginIsNotLoaded) + ErrSetPasswordAuthPlugin = dbterror.ClassExecutor.NewStd(mysql.ErrSetPasswordAuthPlugin) + ErrFuncNotEnabled = dbterror.ClassExecutor.NewStdErr(mysql.ErrNotSupportedYet, parser_mysql.Message("%-.32s is not supported. To enable this experimental feature, set '%-.32s' in the configuration file.", nil)) + errSavepointNotExists = dbterror.ClassExecutor.NewStd(mysql.ErrSpDoesNotExist) + ErrForeignKeyCascadeDepthExceeded = dbterror.ClassExecutor.NewStd(mysql.ErrForeignKeyCascadeDepthExceeded) ErrWrongStringLength = dbterror.ClassDDL.NewStd(mysql.ErrWrongStringLength) errUnsupportedFlashbackTmpTable = dbterror.ClassDDL.NewStdErr(mysql.ErrUnsupportedDDLOperation, parser_mysql.Message("Recover/flashback table is not supported on temporary tables", nil)) diff --git a/executor/executor.go b/executor/executor.go index d14f8a55a7de3..6401d41e7e77e 100644 --- a/executor/executor.go +++ b/executor/executor.go @@ -132,6 +132,7 @@ type baseExecutor struct { children []Executor retFieldTypes []*types.FieldType runtimeStats *execdetails.BasicRuntimeStats + AllocPool chunk.Allocator } const ( @@ -167,9 +168,6 @@ func init() { schematracker.ConstructResultOfShowCreateTable = ConstructResultOfShowCreateTable } -// SetLogHook sets a hook for PanicOnExceed. -func (a *globalPanicOnExceed) SetLogHook(hook func(uint64)) {} - // Action panics when storage usage exceeds storage quota. func (a *globalPanicOnExceed) Action(t *memory.Tracker) { a.mutex.Lock() @@ -234,6 +232,12 @@ func newFirstChunk(e Executor) *chunk.Chunk { return chunk.New(base.retFieldTypes, base.initCap, base.maxChunkSize) } +func tryNewCacheChunk(e Executor) *chunk.Chunk { + base := e.base() + s := base.ctx.GetSessionVars() + return s.GetNewChunkWithCapacity(base.retFieldTypes, base.initCap, base.maxChunkSize, base.AllocPool) +} + // newList creates a new List to buffer current executor's result. func newList(e Executor) *chunk.List { base := e.base() @@ -264,6 +268,7 @@ func newBaseExecutor(ctx sessionctx.Context, schema *expression.Schema, id int, schema: schema, initCap: ctx.GetSessionVars().InitChunkSize, maxChunkSize: ctx.GetSessionVars().MaxChunkSize, + AllocPool: ctx.GetSessionVars().ChunkPool.Alloc, } if ctx.GetSessionVars().StmtCtx.RuntimeStatsColl != nil { if e.id > 0 { @@ -560,7 +565,7 @@ func (e *DDLJobRetriever) appendJobToChunk(req *chunk.Chunk, job *model.Job, che req.AppendInt64(0, job.ID) req.AppendString(1, schemaName) req.AppendString(2, tableName) - req.AppendString(3, job.Type.String()) + req.AppendString(3, job.Type.String()+showAddIdxReorgTp(job)) req.AppendString(4, job.SchemaState.String()) req.AppendInt64(5, job.SchemaID) req.AppendInt64(6, job.TableID) @@ -595,6 +600,18 @@ func (e *DDLJobRetriever) appendJobToChunk(req *chunk.Chunk, job *model.Job, che } } +func showAddIdxReorgTp(job *model.Job) string { + if job.Type == model.ActionAddIndex || job.Type == model.ActionAddPrimaryKey { + if job.ReorgMeta != nil { + tp := job.ReorgMeta.ReorgTp.String() + if len(tp) > 0 { + return " /* " + tp + " */" + } + } + } + return "" +} + func ts2Time(timestamp uint64, loc *time.Location) types.Time { duration := time.Duration(math.Pow10(9-types.DefaultFsp)) * time.Nanosecond t := model.TSConvert2Time(timestamp) @@ -1382,7 +1399,7 @@ func (e *LimitExec) Open(ctx context.Context) error { if err := e.baseExecutor.Open(ctx); err != nil { return err } - e.childResult = newFirstChunk(e.children[0]) + e.childResult = tryNewCacheChunk(e.children[0]) e.cursor = 0 e.meetFirstBatch = e.begin == 0 return nil @@ -1439,8 +1456,7 @@ func init() { if err != nil { return nil, err } - chk := newFirstChunk(exec) - + chk := tryNewCacheChunk(exec) err = Next(ctx, exec, chk) if err != nil { return nil, err @@ -1515,7 +1531,7 @@ func (e *SelectionExec) Open(ctx context.Context) error { func (e *SelectionExec) open(ctx context.Context) error { e.memTracker = memory.NewTracker(e.id, -1) e.memTracker.AttachTo(e.ctx.GetSessionVars().StmtCtx.MemTracker) - e.childResult = newFirstChunk(e.children[0]) + e.childResult = tryNewCacheChunk(e.children[0]) e.memTracker.Consume(e.childResult.MemoryUsage()) e.batched = expression.Vectorizable(e.filters) if e.batched { @@ -1630,9 +1646,9 @@ func (e *TableScanExec) nextChunk4InfoSchema(ctx context.Context, chk *chunk.Chu } mutableRow := chunk.MutRowFromTypes(retTypes(e)) type tableIter interface { - IterRecords(sessionctx.Context, []*table.Column, table.RecordIterFunc) error + IterRecords(ctx context.Context, sctx sessionctx.Context, cols []*table.Column, fn table.RecordIterFunc) error } - err := (e.t.(tableIter)).IterRecords(e.ctx, columns, func(_ kv.Handle, rec []types.Datum, cols []*table.Column) (bool, error) { + err := (e.t.(tableIter)).IterRecords(ctx, e.ctx, columns, func(_ kv.Handle, rec []types.Datum, cols []*table.Column) (bool, error) { mutableRow.SetDatums(rec...) e.virtualTableChunkList.AppendRow(mutableRow.ToRow()) return true, nil @@ -1695,7 +1711,7 @@ func (e *MaxOneRowExec) Next(ctx context.Context, req *chunk.Chunk) error { return ErrSubqueryMoreThan1Row } - childChunk := newFirstChunk(e.children[0]) + childChunk := tryNewCacheChunk(e.children[0]) err = Next(ctx, e.children[0], childChunk) if err != nil { return err @@ -1937,31 +1953,38 @@ func ResetContextOfStmt(ctx sessionctx.Context, s ast.StmtNode) (err error) { sc.SysdateIsNow = ctx.GetSessionVars().SysdateIsNow + vars.MemTracker.UnbindActions() + vars.MemTracker.SetBytesLimit(vars.MemQuotaQuery) + vars.MemTracker.ResetMaxConsumed() + vars.DiskTracker.ResetMaxConsumed() + vars.MemTracker.SessionID = vars.ConnectionID + vars.StmtCtx.TableStats = make(map[int64]interface{}) + if _, ok := s.(*ast.AnalyzeTableStmt); ok { sc.InitMemTracker(memory.LabelForAnalyzeMemory, -1) - sc.MemTracker.AttachTo(GlobalAnalyzeMemoryTracker) + vars.MemTracker.SetBytesLimit(-1) } else { - sc.InitMemTracker(memory.LabelForSQLText, vars.MemQuotaQuery) - sc.MemTracker.AttachToGlobalTracker(GlobalMemoryUsageTracker) - sc.MemTracker.IsRootTrackerOfSess, sc.MemTracker.SessionID = true, vars.ConnectionID + sc.InitMemTracker(memory.LabelForSQLText, -1) + logOnQueryExceedMemQuota := domain.GetDomain(ctx).ExpensiveQueryHandle().LogOnQueryExceedMemQuota + switch variable.OOMAction.Load() { + case variable.OOMActionCancel: + action := &memory.PanicOnExceed{ConnID: vars.ConnectionID} + action.SetLogHook(logOnQueryExceedMemQuota) + vars.MemTracker.SetActionOnExceed(action) + case variable.OOMActionLog: + fallthrough + default: + action := &memory.LogOnExceed{ConnID: vars.ConnectionID} + action.SetLogHook(logOnQueryExceedMemQuota) + vars.MemTracker.SetActionOnExceed(action) + } } - + sc.MemTracker.SessionID = vars.ConnectionID + sc.MemTracker.AttachTo(vars.MemTracker) sc.InitDiskTracker(memory.LabelForSQLText, -1) globalConfig := config.GetGlobalConfig() - if variable.EnableTmpStorageOnOOM.Load() && GlobalDiskUsageTracker != nil { - sc.DiskTracker.AttachToGlobalTracker(GlobalDiskUsageTracker) - } - switch variable.OOMAction.Load() { - case variable.OOMActionCancel: - action := &memory.PanicOnExceed{ConnID: ctx.GetSessionVars().ConnectionID} - action.SetLogHook(domain.GetDomain(ctx).ExpensiveQueryHandle().LogOnQueryExceedMemQuota) - sc.MemTracker.SetActionOnExceed(action) - case variable.OOMActionLog: - fallthrough - default: - action := &memory.LogOnExceed{ConnID: ctx.GetSessionVars().ConnectionID} - action.SetLogHook(domain.GetDomain(ctx).ExpensiveQueryHandle().LogOnQueryExceedMemQuota) - sc.MemTracker.SetActionOnExceed(action) + if variable.EnableTmpStorageOnOOM.Load() && sc.DiskTracker != nil { + sc.DiskTracker.AttachTo(vars.DiskTracker) } if execStmt, ok := s.(*ast.ExecuteStmt); ok { prepareStmt, err := plannercore.GetPreparedStmt(execStmt, vars) @@ -2024,6 +2047,7 @@ func ResetContextOfStmt(ctx sessionctx.Context, s ast.StmtNode) (err error) { sc.DupKeyAsWarning = stmt.IgnoreErr sc.BadNullAsWarning = !vars.StrictSQLMode || stmt.IgnoreErr sc.IgnoreNoPartition = stmt.IgnoreErr + sc.ErrAutoincReadFailedAsWarning = stmt.IgnoreErr sc.TruncateAsWarning = !vars.StrictSQLMode || stmt.IgnoreErr sc.DividedByZeroAsWarning = !vars.StrictSQLMode || stmt.IgnoreErr sc.AllowInvalidDate = vars.SQLMode.HasAllowInvalidDatesMode() @@ -2123,6 +2147,7 @@ func ResetContextOfStmt(ctx sessionctx.Context, s ast.StmtNode) (err error) { errCount, warnCount := vars.StmtCtx.NumErrorWarnings() vars.SysErrorCount = errCount vars.SysWarningCount = warnCount + vars.ExchangeChunkStatus() vars.StmtCtx = sc vars.PrevFoundInPlanCache = vars.FoundInPlanCache vars.FoundInPlanCache = false @@ -2161,6 +2186,10 @@ func ResetUpdateStmtCtx(sc *stmtctx.StatementContext, stmt *ast.UpdateStmt, vars // expression using rows from a chunk, and then fill this value into the chunk func FillVirtualColumnValue(virtualRetTypes []*types.FieldType, virtualColumnIndex []int, schema *expression.Schema, columns []*model.ColumnInfo, sctx sessionctx.Context, req *chunk.Chunk) error { + if len(virtualColumnIndex) == 0 { + return nil + } + virCols := chunk.NewChunkWithCapacity(virtualRetTypes, req.Capacity()) iter := chunk.NewIterator4Chunk(req) for i, idx := range virtualColumnIndex { diff --git a/executor/executor_issue_test.go b/executor/executor_issue_test.go index f0b52422c19a2..5d2912f78f449 100644 --- a/executor/executor_issue_test.go +++ b/executor/executor_issue_test.go @@ -133,6 +133,7 @@ func TestIssue24210(t *testing.T) { store := testkit.CreateMockStore(t) tk := testkit.NewTestKit(t, store) tk.MustExec("use test") + tk.MustExec("set tidb_cost_model_version=1") // for ProjectionExec require.NoError(t, failpoint.Enable("github.com/pingcap/tidb/executor/mockProjectionExecBaseExecutorOpenReturnedError", `return(true)`)) @@ -579,6 +580,7 @@ func TestIssue30382(t *testing.T) { store := testkit.CreateMockStore(t) tk := testkit.NewTestKit(t, store) tk.MustExec("use test") + tk.MustExec("set tidb_cost_model_version=2") tk.MustExec("set @@session.tidb_enable_list_partition = ON;") tk.MustExec("drop table if exists t1, t2;") tk.MustExec("create table t1 (c_int int, c_str varchar(40), c_decimal decimal(12, 6), primary key (c_int) , key(c_str(2)) , key(c_decimal) ) partition by list (c_int) ( partition p0 values IN (1, 5, 9, 13, 17, 21, 25, 29, 33, 37), partition p1 values IN (2, 6, 10, 14, 18, 22, 26, 30, 34, 38), partition p2 values IN (3, 7, 11, 15, 19, 23, 27, 31, 35, 39), partition p3 values IN (4, 8, 12, 16, 20, 24, 28, 32, 36, 40)) ;") @@ -596,7 +598,7 @@ func TestIssue30382(t *testing.T) { "SelectLock 6400.00 root for update 0", "└─HashJoin 6400.00 root CARTESIAN inner join, other cond:or(gt(Column#8, 1), or(ne(test.t1.c_str, Column#7), if(ne(Column#9, 0), NULL, 0)))", " ├─Selection(Build) 0.80 root ne(Column#10, 0)", - " │ └─StreamAgg 1.00 root funcs:max(Column#17)->Column#7, funcs:count(distinct Column#18)->Column#8, funcs:sum(Column#19)->Column#9, funcs:count(1)->Column#10", + " │ └─HashAgg 1.00 root funcs:max(Column#17)->Column#7, funcs:count(distinct Column#18)->Column#8, funcs:sum(Column#19)->Column#9, funcs:count(1)->Column#10", " │ └─Projection 3323.33 root test.t2.c_str, test.t2.c_str, cast(isnull(test.t2.c_str), decimal(20,0) BINARY)->Column#19", " │ └─TableReader 3323.33 root partition:all data:Selection", " │ └─Selection 3323.33 cop[tikv] lt(test.t2.c_decimal, 5)", diff --git a/executor/executor_pkg_test.go b/executor/executor_pkg_test.go index 6e8f2ba1e2921..44e985288556b 100644 --- a/executor/executor_pkg_test.go +++ b/executor/executor_pkg_test.go @@ -306,7 +306,9 @@ func TestSortSpillDisk(t *testing.T) { ctx.GetSessionVars().MemQuota.MemQuotaQuery = 1 ctx.GetSessionVars().InitChunkSize = variable.DefMaxChunkSize ctx.GetSessionVars().MaxChunkSize = variable.DefMaxChunkSize - ctx.GetSessionVars().StmtCtx.MemTracker = memory.NewTracker(-1, -1) + ctx.GetSessionVars().MemTracker = memory.NewTracker(memory.LabelForSession, -1) + ctx.GetSessionVars().StmtCtx.MemTracker = memory.NewTracker(memory.LabelForSQLText, -1) + ctx.GetSessionVars().StmtCtx.MemTracker.AttachTo(ctx.GetSessionVars().MemTracker) cas := &sortCase{rows: 2048, orderByIdx: []int{0, 1}, ndvs: []int{0, 0}, ctx: ctx} opt := mockDataSourceParameters{ schema: expression.NewSchema(cas.columns()...), @@ -342,7 +344,9 @@ func TestSortSpillDisk(t *testing.T) { err = exec.Close() require.NoError(t, err) - ctx.GetSessionVars().StmtCtx.MemTracker = memory.NewTracker(-1, 1) + ctx.GetSessionVars().MemTracker = memory.NewTracker(memory.LabelForSession, 1) + ctx.GetSessionVars().StmtCtx.MemTracker = memory.NewTracker(memory.LabelForSQLText, -1) + ctx.GetSessionVars().StmtCtx.MemTracker.AttachTo(ctx.GetSessionVars().MemTracker) dataSource.prepareChunks() err = exec.Open(tmpCtx) require.NoError(t, err) @@ -372,7 +376,9 @@ func TestSortSpillDisk(t *testing.T) { err = exec.Close() require.NoError(t, err) - ctx.GetSessionVars().StmtCtx.MemTracker = memory.NewTracker(-1, 28000) + ctx.GetSessionVars().MemTracker = memory.NewTracker(memory.LabelForSession, 28000) + ctx.GetSessionVars().StmtCtx.MemTracker = memory.NewTracker(memory.LabelForSQLText, -1) + ctx.GetSessionVars().StmtCtx.MemTracker.AttachTo(ctx.GetSessionVars().MemTracker) dataSource.prepareChunks() err = exec.Open(tmpCtx) require.NoError(t, err) @@ -394,8 +400,10 @@ func TestSortSpillDisk(t *testing.T) { ctx = mock.NewContext() ctx.GetSessionVars().InitChunkSize = variable.DefMaxChunkSize ctx.GetSessionVars().MaxChunkSize = variable.DefMaxChunkSize - ctx.GetSessionVars().StmtCtx.MemTracker = memory.NewTracker(-1, 16864*50) - ctx.GetSessionVars().StmtCtx.MemTracker.Consume(16864 * 45) + ctx.GetSessionVars().MemTracker = memory.NewTracker(memory.LabelForSession, 16864*50) + ctx.GetSessionVars().MemTracker.Consume(16864 * 45) + ctx.GetSessionVars().StmtCtx.MemTracker = memory.NewTracker(memory.LabelForSQLText, -1) + ctx.GetSessionVars().StmtCtx.MemTracker.AttachTo(ctx.GetSessionVars().MemTracker) cas = &sortCase{rows: 20480, orderByIdx: []int{0, 1}, ndvs: []int{0, 0}, ctx: ctx} opt = mockDataSourceParameters{ schema: expression.NewSchema(cas.columns()...), diff --git a/executor/executor_test.go b/executor/executor_test.go index 5063362462cb5..641f56817cd60 100644 --- a/executor/executor_test.go +++ b/executor/executor_test.go @@ -165,6 +165,13 @@ func TestPlanReplayer(t *testing.T) { tk.MustQuery("plan replayer dump explain select * from v1") tk.MustQuery("plan replayer dump explain select * from v2") require.True(t, len(tk.Session().GetSessionVars().LastPlanReplayerToken) > 0) + + // clear the status table and assert + tk.MustExec("delete from mysql.plan_replayer_status") + tk.MustQuery("plan replayer dump explain select * from v2") + token := tk.Session().GetSessionVars().LastPlanReplayerToken + rows := tk.MustQuery(fmt.Sprintf("select * from mysql.plan_replayer_status where token = '%v'", token)).Rows() + require.Len(t, rows, 1) } func TestShow(t *testing.T) { @@ -1445,6 +1452,7 @@ func TestSetOperation(t *testing.T) { store := testkit.CreateMockStore(t) tk := testkit.NewTestKit(t, store) tk.MustExec(`use test`) + tk.MustExec("set tidb_cost_model_version=2") tk.MustExec(`drop table if exists t1, t2, t3`) tk.MustExec(`create table t1(a int)`) tk.MustExec(`create table t2 like t1`) @@ -1506,6 +1514,7 @@ func TestIndexScanWithYearCol(t *testing.T) { store := testkit.CreateMockStore(t) tk := testkit.NewTestKit(t, store) tk.MustExec("use test;") + tk.MustExec("set tidb_cost_model_version=2") tk.MustExec("drop table if exists t;") tk.MustExec("create table t (c1 year(4), c2 int, key(c1));") tk.MustExec("insert into t values(2001, 1);") @@ -2825,7 +2834,7 @@ func TestInsertIntoGivenPartitionSet(t *testing.T) { tk.MustExec("insert into t1 partition(p0, p1) values(3, 'c'), (4, 'd')") tk.MustQuery("select * from t1 partition(p1)").Check(testkit.Rows()) - tk.MustGetErrMsg("insert into t1 values(1, 'a')", "[kv:1062]Duplicate entry '1' for key 'idx_a'") + tk.MustGetErrMsg("insert into t1 values(1, 'a')", "[kv:1062]Duplicate entry '1' for key 't1.idx_a'") tk.MustGetErrMsg("insert into t1 partition(p0, p_non_exist) values(1, 'a')", "[table:1735]Unknown partition 'p_non_exist' in table 't1'") tk.MustGetErrMsg("insert into t1 partition(p0, p1) values(40, 'a')", "[table:1748]Found a row not matching the given partition set") @@ -2856,7 +2865,7 @@ func TestInsertIntoGivenPartitionSet(t *testing.T) { tk.MustQuery("select * from t1 partition(p1) order by a").Check(testkit.Rows()) tk.MustQuery("select * from t1 partition(p0) order by a").Check(testkit.Rows("1 a", "2 b", "3 c", "4 d")) - tk.MustGetErrMsg("insert into t1 select 1, 'a'", "[kv:1062]Duplicate entry '1' for key 'idx_a'") + tk.MustGetErrMsg("insert into t1 select 1, 'a'", "[kv:1062]Duplicate entry '1' for key 't1.idx_a'") tk.MustGetErrMsg("insert into t1 partition(p0, p_non_exist) select 1, 'a'", "[table:1735]Unknown partition 'p_non_exist' in table 't1'") tk.MustGetErrMsg("insert into t1 partition(p0, p1) select 40, 'a'", "[table:1748]Found a row not matching the given partition set") @@ -3022,7 +3031,7 @@ func TestPrevStmtDesensitization(t *testing.T) { tk.MustExec("begin") tk.MustExec("insert into t values (1),(2)") require.Equal(t, "insert into `t` values ( ? ) , ( ? )", tk.Session().GetSessionVars().PrevStmt.String()) - tk.MustGetErrMsg("insert into t values (1)", `[kv:1062]Duplicate entry '?' for key 'a'`) + tk.MustGetErrMsg("insert into t values (1)", `[kv:1062]Duplicate entry '?' for key 't.a'`) } func TestIssue19372(t *testing.T) { @@ -3325,6 +3334,7 @@ func TestUnreasonablyClose(t *testing.T) { is := infoschema.MockInfoSchema([]*model.TableInfo{plannercore.MockSignedTable(), plannercore.MockUnsignedTable()}) tk := testkit.NewTestKit(t, store) tk.MustExec("use test") + tk.MustExec("set tidb_cost_model_version=2") // To enable the shuffleExec operator. tk.MustExec("set @@tidb_merge_join_concurrency=4") @@ -3365,7 +3375,7 @@ func TestUnreasonablyClose(t *testing.T) { "select /*+ inl_hash_join(t1) */ * from t t1 join t t2 on t1.f=t2.f", "SELECT count(1) FROM (SELECT (SELECT min(a) FROM t as t2 WHERE t2.a > t1.a) AS a from t as t1) t", "select /*+ hash_agg() */ count(f) from t group by a", - "select /*+ stream_agg() */ count(f) from t group by a", + "select /*+ stream_agg() */ count(f) from t", "select * from t order by a, f", "select * from t order by a, f limit 1", "select * from t limit 1", @@ -3972,12 +3982,13 @@ func TestApplyCache(t *testing.T) { tk := testkit.NewTestKit(t, store) tk.MustExec("use test;") + tk.MustExec("set tidb_cost_model_version=2") tk.MustExec("drop table if exists t;") tk.MustExec("create table t(a int);") tk.MustExec("insert into t values (1),(1),(1),(1),(1),(1),(1),(1),(1);") tk.MustExec("analyze table t;") result := tk.MustQuery("explain analyze SELECT count(1) FROM (SELECT (SELECT min(a) FROM t as t2 WHERE t2.a > t1.a) AS a from t as t1) t;") - require.Equal(t, "└─Apply_39", result.Rows()[1][0]) + require.Contains(t, result.Rows()[1][0], "Apply") var ( ind int flag bool @@ -3997,7 +4008,7 @@ func TestApplyCache(t *testing.T) { tk.MustExec("insert into t values (1),(2),(3),(4),(5),(6),(7),(8),(9);") tk.MustExec("analyze table t;") result = tk.MustQuery("explain analyze SELECT count(1) FROM (SELECT (SELECT min(a) FROM t as t2 WHERE t2.a > t1.a) AS a from t as t1) t;") - require.Equal(t, "└─Apply_39", result.Rows()[1][0]) + require.Contains(t, result.Rows()[1][0], "Apply") flag = false value = (result.Rows()[1][5]).(string) for ind = 0; ind < len(value)-5; ind++ { @@ -4931,7 +4942,7 @@ func TestIsPointGet(t *testing.T) { stmtNode, err := s.ParseOneStmt(sqlStr, "", "") require.NoError(t, err) preprocessorReturn := &plannercore.PreprocessorReturn{} - err = plannercore.Preprocess(ctx, stmtNode, plannercore.WithPreprocessorReturn(preprocessorReturn)) + err = plannercore.Preprocess(context.Background(), ctx, stmtNode, plannercore.WithPreprocessorReturn(preprocessorReturn)) require.NoError(t, err) p, _, err := planner.Optimize(context.TODO(), ctx, stmtNode, preprocessorReturn.InfoSchema) require.NoError(t, err) @@ -4964,7 +4975,7 @@ func TestClusteredIndexIsPointGet(t *testing.T) { stmtNode, err := s.ParseOneStmt(sqlStr, "", "") require.NoError(t, err) preprocessorReturn := &plannercore.PreprocessorReturn{} - err = plannercore.Preprocess(ctx, stmtNode, plannercore.WithPreprocessorReturn(preprocessorReturn)) + err = plannercore.Preprocess(context.Background(), ctx, stmtNode, plannercore.WithPreprocessorReturn(preprocessorReturn)) require.NoError(t, err) p, _, err := planner.Optimize(context.TODO(), ctx, stmtNode, preprocessorReturn.InfoSchema) require.NoError(t, err) @@ -6071,13 +6082,16 @@ func TestGlobalMemoryControl(t *testing.T) { tk0.MustExec("set global tidb_server_memory_limit_sess_min_size = 128") tk1 := testkit.NewTestKit(t, store) - tracker1 := tk1.Session().GetSessionVars().StmtCtx.MemTracker + tracker1 := tk1.Session().GetSessionVars().MemTracker + tracker1.FallbackOldAndSetNewAction(&memory.PanicOnExceed{}) tk2 := testkit.NewTestKit(t, store) - tracker2 := tk2.Session().GetSessionVars().StmtCtx.MemTracker + tracker2 := tk2.Session().GetSessionVars().MemTracker + tracker2.FallbackOldAndSetNewAction(&memory.PanicOnExceed{}) tk3 := testkit.NewTestKit(t, store) - tracker3 := tk3.Session().GetSessionVars().StmtCtx.MemTracker + tracker3 := tk3.Session().GetSessionVars().MemTracker + tracker3.FallbackOldAndSetNewAction(&memory.PanicOnExceed{}) sm := &testkit.MockSessionManager{ PS: []*util.ProcessInfo{tk1.Session().ShowProcess(), tk2.Session().ShowProcess(), tk3.Session().ShowProcess()}, @@ -6156,7 +6170,7 @@ func TestGlobalMemoryControl2(t *testing.T) { }() sql := "select * from t t1 join t t2 join t t3 on t1.a=t2.a and t1.a=t3.a order by t1.a;" // Need 500MB require.True(t, strings.Contains(tk0.QueryToErr(sql).Error(), "Out Of Memory Quota!")) - require.Equal(t, tk0.Session().GetSessionVars().StmtCtx.DiskTracker.MaxConsumed(), int64(0)) + require.Equal(t, tk0.Session().GetSessionVars().DiskTracker.MaxConsumed(), int64(0)) wg.Wait() test[0] = 0 runtime.GC() @@ -6176,3 +6190,49 @@ func TestCompileOutOfMemoryQuota(t *testing.T) { err := tk.ExecToErr("select t.a, t1.a from t use index(idx), t1 use index(idx) where t.a = t1.a") require.Contains(t, err.Error(), "Out Of Memory Quota!") } + +func TestSignalCheckpointForSort(t *testing.T) { + require.NoError(t, failpoint.Enable("github.com/pingcap/tidb/executor/SignalCheckpointForSort", `return(true)`)) + defer func() { + require.NoError(t, failpoint.Disable("github.com/pingcap/tidb/executor/SignalCheckpointForSort")) + }() + require.NoError(t, failpoint.Enable("github.com/pingcap/tidb/util/chunk/SignalCheckpointForSort", `return(true)`)) + defer func() { + require.NoError(t, failpoint.Disable("github.com/pingcap/tidb/util/chunk/SignalCheckpointForSort")) + }() + store := testkit.CreateMockStore(t) + tk := testkit.NewTestKit(t, store) + + defer tk.MustExec("set global tidb_mem_oom_action = DEFAULT") + tk.MustExec("set global tidb_mem_oom_action='CANCEL'") + tk.MustExec("set tidb_mem_quota_query = 100000000") + tk.MustExec("use test") + tk.MustExec("create table t(a int)") + for i := 0; i < 20; i++ { + tk.MustExec(fmt.Sprintf("insert into t values(%d)", i)) + } + tk.Session().GetSessionVars().ConnectionID = 123456 + + err := tk.QueryToErr("select * from t order by a") + require.Contains(t, err.Error(), "Out Of Memory Quota!") +} + +func TestSessionRootTrackerDetach(t *testing.T) { + store := testkit.CreateMockStore(t) + tk := testkit.NewTestKit(t, store) + defer tk.MustExec("set global tidb_mem_oom_action = DEFAULT") + tk.MustExec("set global tidb_mem_oom_action='CANCEL'") + tk.MustExec("use test") + tk.MustExec("create table t(a int, b int, index idx(a))") + tk.MustExec("create table t1(a int, c int, index idx(a))") + tk.MustExec("set tidb_mem_quota_query=10") + err := tk.ExecToErr("select /*+hash_join(t1)*/ t.a, t1.a from t use index(idx), t1 use index(idx) where t.a = t1.a") + require.Contains(t, err.Error(), "Out Of Memory Quota!") + tk.MustExec("set tidb_mem_quota_query=1000") + rs, err := tk.Exec("select /*+hash_join(t1)*/ t.a, t1.a from t use index(idx), t1 use index(idx) where t.a = t1.a") + require.NoError(t, err) + require.NotNil(t, tk.Session().GetSessionVars().MemTracker.GetFallbackForTest(false)) + err = rs.Close() + require.NoError(t, err) + require.Nil(t, tk.Session().GetSessionVars().MemTracker.GetFallbackForTest(false)) +} diff --git a/executor/explain.go b/executor/explain.go index 7699751600b89..3f9f1eec6704e 100644 --- a/executor/explain.go +++ b/executor/explain.go @@ -20,6 +20,7 @@ import ( "path/filepath" "runtime" rpprof "runtime/pprof" + "sort" "strconv" "sync" "time" @@ -114,12 +115,12 @@ func (e *ExplainExec) executeAnalyzeExec(ctx context.Context) (err error) { minHeapInUse: mathutil.Abs(minHeapInUse), alarmRatio: alarmRatio, autoGC: minHeapInUse > 0, - memTracker: e.ctx.GetSessionVars().StmtCtx.MemTracker, + memTracker: e.ctx.GetSessionVars().MemTracker, wg: &waitGroup, }).run() } e.executed = true - chk := newFirstChunk(e.analyzeExec) + chk := tryNewCacheChunk(e.analyzeExec) for { err = Next(ctx, e.analyzeExec, chk) if err != nil || chk.NumRows() == 0 { @@ -168,8 +169,7 @@ func (h *memoryDebugModeHandler) fetchCurrentMemoryUsage(gc bool) (heapInUse, tr if gc { runtime.GC() } - instanceStats := &runtime.MemStats{} - runtime.ReadMemStats(instanceStats) + instanceStats := memory.ForceReadMemStats() heapInUse = instanceStats.HeapInuse trackedMem = uint64(h.memTracker.BytesConsumed()) return @@ -188,6 +188,20 @@ func (h *memoryDebugModeHandler) genInfo(status string, needProfile bool, heapIn return h.infoField, err } +func (h *memoryDebugModeHandler) getTrackerTreeMemUseLogs() []zap.Field { + trackerMemUseMap := h.memTracker.CountAllChildrenMemUse() + logs := make([]zap.Field, 0, len(trackerMemUseMap)) + keys := make([]string, 0, len(trackerMemUseMap)) + for k := range trackerMemUseMap { + keys = append(keys, k) + } + sort.Strings(keys) + for _, k := range keys { + logs = append(logs, zap.String("TrackerTree "+k, memory.FormatBytes(trackerMemUseMap[k]))) + } + return logs +} + func updateTriggerIntervalByHeapInUse(heapInUse uint64) (time.Duration, int) { const GB uint64 = 1 << 30 if heapInUse < 30*GB { @@ -264,7 +278,8 @@ func (h *memoryDebugModeHandler) run() { for _, t := range ts { logs = append(logs, zap.String("Executor_"+strconv.Itoa(t.Label()), memory.FormatBytes(t.BytesConsumed()))) } - logutil.BgLogger().Warn("Memory Debug Mode, Log all trackers that consumes more than threshold * 20%", logs...) + logutil.BgLogger().Warn("Memory Debug Mode, Log all executors that consumes more than threshold * 20%", logs...) + logutil.BgLogger().Warn("Memory Debug Mode, Log the tracker tree", h.getTrackerTreeMemUseLogs()...) } } } diff --git a/executor/explain_test.go b/executor/explain_test.go index 4899f8a354403..c67c61a67a909 100644 --- a/executor/explain_test.go +++ b/executor/explain_test.go @@ -321,6 +321,7 @@ func TestCheckActRowsWithUnistore(t *testing.T) { // testSuite1 use default mockstore which is unistore tk := testkit.NewTestKit(t, store) tk.MustExec("use test") + tk.MustExec("set tidb_cost_model_version=2") tk.MustExec("drop table if exists t_unistore_act_rows") tk.MustExec("create table t_unistore_act_rows(a int, b int, index(a, b))") tk.MustExec("insert into t_unistore_act_rows values (1, 0), (1, 0), (2, 0), (2, 1)") diff --git a/executor/explainfor_test.go b/executor/explainfor_test.go index 21617c95aa1b7..85652a5f04ddb 100644 --- a/executor/explainfor_test.go +++ b/executor/explainfor_test.go @@ -443,6 +443,7 @@ func TestPointGetUserVarPlanCache(t *testing.T) { tk.Session().Auth(&auth.UserIdentity{Username: "root", Hostname: "localhost", CurrentUser: true, AuthUsername: "root", AuthHostname: "%"}, nil, []byte("012345678901234567890")) tk.MustExec("use test") + tk.MustExec("set tidb_cost_model_version=2") tk.MustExec("set @@tidb_enable_collect_execution_info=0;") tk.Session().GetSessionVars().EnableClusteredIndex = variable.ClusteredIndexDefModeOn tk.MustExec("drop table if exists t1") @@ -461,12 +462,12 @@ func TestPointGetUserVarPlanCache(t *testing.T) { tk.Session().SetSessionManager(&testkit.MockSessionManager{PS: ps}) tk.MustQuery(fmt.Sprintf("explain for connection %d", tkProcess.ID)).Check(testkit.Rows( // can use idx_a `Projection_9 1.00 root test.t1.a, test.t1.b, test.t2.a, test.t2.b`, - `└─IndexJoin_17 1.00 root inner join, inner:TableReader_13, outer key:test.t2.a, inner key:test.t1.a, equal cond:eq(test.t2.a, test.t1.a)`, - ` ├─Selection_44(Build) 0.80 root not(isnull(test.t2.a))`, - ` │ └─Point_Get_43 1.00 root table:t2, index:idx_a(a) `, - ` └─TableReader_13(Probe) 0.00 root data:Selection_12`, - ` └─Selection_12 0.00 cop[tikv] eq(test.t1.a, 1)`, - ` └─TableRangeScan_11 1.00 cop[tikv] table:t1 range: decided by [eq(test.t1.a, test.t2.a)], keep order:false, stats:pseudo`)) + `└─MergeJoin_10 1.00 root inner join, left key:test.t2.a, right key:test.t1.a`, + ` ├─Selection_42(Build) 10.00 root eq(test.t1.a, 1)`, + ` │ └─TableReader_41 10.00 root data:TableRangeScan_40`, + ` │ └─TableRangeScan_40 10.00 cop[tikv] table:t1 range:[1,1], keep order:true, stats:pseudo`, + ` └─Selection_39(Probe) 0.80 root not(isnull(test.t2.a))`, + ` └─Point_Get_38 1.00 root table:t2, index:idx_a(a) `)) tk.MustExec("set @a=2") tk.MustQuery("execute stmt using @a").Check(testkit.Rows( @@ -477,12 +478,12 @@ func TestPointGetUserVarPlanCache(t *testing.T) { tk.Session().SetSessionManager(&testkit.MockSessionManager{PS: ps}) tk.MustQuery(fmt.Sprintf("explain for connection %d", tkProcess.ID)).Check(testkit.Rows( // can use idx_a `Projection_9 1.00 root test.t1.a, test.t1.b, test.t2.a, test.t2.b`, - `└─IndexJoin_17 1.00 root inner join, inner:TableReader_13, outer key:test.t2.a, inner key:test.t1.a, equal cond:eq(test.t2.a, test.t1.a)`, - ` ├─Selection_44(Build) 0.80 root not(isnull(test.t2.a))`, - ` │ └─Point_Get_43 1.00 root table:t2, index:idx_a(a) `, - ` └─TableReader_13(Probe) 0.00 root data:Selection_12`, - ` └─Selection_12 0.00 cop[tikv] eq(test.t1.a, 2)`, - ` └─TableRangeScan_11 1.00 cop[tikv] table:t1 range: decided by [eq(test.t1.a, test.t2.a)], keep order:false, stats:pseudo`)) + `└─MergeJoin_10 1.00 root inner join, left key:test.t2.a, right key:test.t1.a`, + ` ├─Selection_42(Build) 10.00 root eq(test.t1.a, 2)`, + ` │ └─TableReader_41 10.00 root data:TableRangeScan_40`, + ` │ └─TableRangeScan_40 10.00 cop[tikv] table:t1 range:[2,2], keep order:true, stats:pseudo`, + ` └─Selection_39(Probe) 0.80 root not(isnull(test.t2.a))`, + ` └─Point_Get_38 1.00 root table:t2, index:idx_a(a) `)) tk.MustQuery("execute stmt using @a").Check(testkit.Rows( "2 4 2 2", )) @@ -864,7 +865,7 @@ func TestIndexMerge4PlanCache(t *testing.T) { tk.MustExec("set @a=9, @b=10, @c=11;") tk.MustQuery("execute stmt using @a, @a;").Check(testkit.Rows("10 10 10")) tk.MustQuery("execute stmt using @a, @c;").Check(testkit.Rows("10 10 10", "11 11 11")) - tk.MustQuery("select @@last_plan_from_cache;").Check(testkit.Rows("1")) + tk.MustQuery("select @@last_plan_from_cache;").Check(testkit.Rows("0")) // a>=9 and a<=9 --> a=9 tk.MustQuery("execute stmt using @c, @a;").Check(testkit.Rows("10 10 10")) tk.MustQuery("select @@last_plan_from_cache;").Check(testkit.Rows("1")) @@ -979,6 +980,7 @@ func TestSetOperations4PlanCache(t *testing.T) { func TestSPM4PlanCache(t *testing.T) { store := testkit.CreateMockStore(t) tk := testkit.NewTestKit(t, store) + tk.MustExec("set tidb_cost_model_version=2") tk.MustExec(`set tidb_enable_prepared_plan_cache=1`) tk.MustExec("use test") @@ -989,8 +991,8 @@ func TestSPM4PlanCache(t *testing.T) { tk.MustExec("admin reload bindings;") res := tk.MustQuery("explain format = 'brief' select * from t;") - require.Regexp(t, ".*TableReader.*", res.Rows()[0][0]) - require.Regexp(t, ".*TableFullScan.*", res.Rows()[1][0]) + require.Regexp(t, ".*IndexReader.*", res.Rows()[0][0]) + require.Regexp(t, ".*IndexFullScan.*", res.Rows()[1][0]) tk.MustExec("prepare stmt from 'select * from t;';") tk.MustQuery("execute stmt;").Check(testkit.Rows()) @@ -999,8 +1001,8 @@ func TestSPM4PlanCache(t *testing.T) { ps := []*util.ProcessInfo{tkProcess} tk.Session().SetSessionManager(&testkit.MockSessionManager{PS: ps}) res = tk.MustQuery("explain for connection " + strconv.FormatUint(tkProcess.ID, 10)) - require.Regexp(t, ".*TableReader.*", res.Rows()[0][0]) - require.Regexp(t, ".*TableFullScan.*", res.Rows()[1][0]) + require.Regexp(t, ".*IndexReader.*", res.Rows()[0][0]) + require.Regexp(t, ".*IndexFullScan.*", res.Rows()[1][0]) tk.MustExec("create global binding for select * from t using select * from t use index(idx_a);") diff --git a/executor/fktest/BUILD.bazel b/executor/fktest/BUILD.bazel index 2b3151024fdd8..dbdae1843edaf 100644 --- a/executor/fktest/BUILD.bazel +++ b/executor/fktest/BUILD.bazel @@ -10,9 +10,17 @@ go_test( flaky = True, deps = [ "//config", + "//executor", + "//kv", "//meta/autoid", + "//parser/ast", + "//parser/format", + "//parser/model", + "//parser/mysql", "//planner/core", "//testkit", + "//types", + "//util/sqlexec", "@com_github_stretchr_testify//require", "@com_github_tikv_client_go_v2//tikv", "@org_uber_go_goleak//:goleak", diff --git a/executor/fktest/foreign_key_test.go b/executor/fktest/foreign_key_test.go index 3e52bd0a2ea31..558c033b89621 100644 --- a/executor/fktest/foreign_key_test.go +++ b/executor/fktest/foreign_key_test.go @@ -15,13 +15,25 @@ package fk_test import ( + "bytes" + "context" "fmt" + "strconv" + "strings" "sync" "testing" "time" + "github.com/pingcap/tidb/executor" + "github.com/pingcap/tidb/kv" + "github.com/pingcap/tidb/parser/ast" + "github.com/pingcap/tidb/parser/format" + "github.com/pingcap/tidb/parser/model" + "github.com/pingcap/tidb/parser/mysql" plannercore "github.com/pingcap/tidb/planner/core" "github.com/pingcap/tidb/testkit" + "github.com/pingcap/tidb/types" + "github.com/pingcap/tidb/util/sqlexec" "github.com/stretchr/testify/require" ) @@ -479,14 +491,22 @@ func TestForeignKeyOnInsertIgnore(t *testing.T) { tk.MustExec("set @@global.tidb_enable_foreign_key=1") tk.MustExec("set @@foreign_key_checks=1") tk.MustExec("use test") - + // Test for foreign key index is primary key. tk.MustExec("CREATE TABLE t1 (i INT PRIMARY KEY);") tk.MustExec("CREATE TABLE t2 (i INT, FOREIGN KEY (i) REFERENCES t1 (i));") tk.MustExec("INSERT INTO t1 VALUES (1),(3);") - tk.MustExec("INSERT IGNORE INTO t2 VALUES (1),(2),(3),(4);") + tk.MustExec("INSERT IGNORE INTO t2 VALUES (1), (null), (1), (2),(3),(4);") warning := "Warning 1452 Cannot add or update a child row: a foreign key constraint fails (`test`.`t2`, CONSTRAINT `fk_1` FOREIGN KEY (`i`) REFERENCES `t1` (`i`))" tk.MustQuery("show warnings;").Check(testkit.Rows(warning, warning)) - tk.MustQuery("select * from t2").Check(testkit.Rows("1", "3")) + tk.MustQuery("select * from t2 order by i").Check(testkit.Rows("", "1", "1", "3")) + // Test for foreign key index is non-unique key. + tk.MustExec("drop table t1,t2") + tk.MustExec("CREATE TABLE t1 (i INT, index(i));") + tk.MustExec("CREATE TABLE t2 (i INT, FOREIGN KEY (i) REFERENCES t1 (i));") + tk.MustExec("INSERT INTO t1 VALUES (1),(3);") + tk.MustExec("INSERT IGNORE INTO t2 VALUES (1), (null), (1), (2), (3), (2);") + tk.MustQuery("show warnings;").Check(testkit.Rows(warning, warning)) + tk.MustQuery("select * from t2 order by i").Check(testkit.Rows("", "1", "1", "3")) } func TestForeignKeyOnInsertOnDuplicateParentTableCheck(t *testing.T) { @@ -832,3 +852,1223 @@ func TestForeignKeyOnDeleteParentTableCheck(t *testing.T) { tk.MustGetDBError("delete from t1 where id = 1", plannercore.ErrRowIsReferenced2) tk.MustQuery("select id, a from t1 order by id").Check(testkit.Rows("1 1")) } + +func TestForeignKeyOnDeleteCascade(t *testing.T) { + store := testkit.CreateMockStore(t) + tk := testkit.NewTestKit(t, store) + tk.MustExec("set @@global.tidb_enable_foreign_key=1") + tk.MustExec("set @@foreign_key_checks=1") + tk.MustExec("use test") + cases := []struct { + prepareSQLs []string + }{ + // Case-1: test unique index only contain foreign key columns. + { + prepareSQLs: []string{ + "create table t1 (id int, a int, b int, unique index(a, b));", + "create table t2 (b int, name varchar(10), a int, id int, unique index (a,b), foreign key fk(a, b) references t1(a, b) ON DELETE CASCADE);", + }, + }, + // Case-2: test unique index contain foreign key columns and other columns. + { + prepareSQLs: []string{ + "create table t1 (id int key, a int, b int, unique index(a, b, id));", + "create table t2 (b int, a int, id int key, name varchar(10), unique index (a,b, id), foreign key fk(a, b) references t1(a, b) ON DELETE CASCADE);", + }, + }, + // Case-3: test non-unique index only contain foreign key columns. + { + prepareSQLs: []string{ + "create table t1 (id int key,a int, b int, index(a, b));", + "create table t2 (b int, a int, name varchar(10), id int key, index (a, b), foreign key fk(a, b) references t1(a, b) ON DELETE CASCADE);", + }, + }, + // Case-4: test non-unique index contain foreign key columns and other columns. + { + prepareSQLs: []string{ + "create table t1 (id int key,a int, b int, index(a, b, id));", + "create table t2 (name varchar(10), b int, a int, id int key, index (a, b, id), foreign key fk(a, b) references t1(a, b) ON DELETE CASCADE);", + }, + }, + } + + for idx, ca := range cases { + tk.MustExec("drop table if exists t1, t2;") + for _, sql := range ca.prepareSQLs { + tk.MustExec(sql) + } + tk.MustExec("insert into t1 values (1, 1, 1),(2, 2, 2), (3, 3, 3), (4, 4, 4), (5, 5, null), (6, null, 6), (7, null, null);") + tk.MustExec("insert into t2 (id, a, b, name) values (1, 1, 1, 'a'),(2, 2, 2, 'b'), (3, 3, 3, 'c'), (4, 4, 4, 'd'), (5, 5, null, 'e'), (6, null, 6, 'f'), (7, null, null, 'g');") + tk.MustExec("delete from t1 where id = 1") + tk.MustExec("delete from t1 where id = 2 or a = 2") + tk.MustExec("delete from t1 where a in (2,3,4) or b in (5,6,7) or id=7") + tk.MustQuery("select id, a, b from t1 order by id").Check(testkit.Rows("5 5 ")) + tk.MustQuery("select id, a, b, name from t2 order by id").Check(testkit.Rows("5 5 e", "6 6 f", "7 g")) + + // Test in transaction. + tk.MustExec("delete from t2") + tk.MustExec("delete from t1") + tk.MustExec("begin") + tk.MustExec("insert into t1 values (1, 1, 1),(2, 2, 2), (3, 3, 3), (4, 4, 4), (5, 5, null), (6, null, 6), (7, null, null);") + tk.MustExec("insert into t2 (id, a, b, name) values (1, 1, 1, 'a'),(2, 2, 2, 'b'), (3, 3, 3, 'c'), (4, 4, 4, 'd'), (5, 5, null, 'e'), (6, null, 6, 'f'), (7, null, null, 'g');") + tk.MustExec("delete from t1 where id = 1 or a = 2") + tk.MustExec("delete from t1 where a in (2,3,4) or b in (5,6,7)") + tk.MustQuery("select id, a, b, name from t2 order by id").Check(testkit.Rows("5 5 e", "6 6 f", "7 g")) + tk.MustExec("rollback") + tk.MustQuery("select * from t1").Check(testkit.Rows()) + tk.MustQuery("select * from t2").Check(testkit.Rows()) + + tk.MustExec("insert into t1 values (1, 1, 1),(2, 2, 2);") + tk.MustExec("begin") + tk.MustExec("insert into t2 (id, a, b, name) values (1, 1, 1, 'a'),(2, 2, 2, 'b')") + tk.MustExec("delete from t1 where id = 1") + tk.MustQuery("select id, a, b from t1 order by id").Check(testkit.Rows("2 2 2")) + tk.MustQuery("select id, a, b, name from t2 order by id").Check(testkit.Rows("2 2 2 b")) + err := tk.ExecToErr("insert into t2 (id, a, b, name) values (1, 1, 1, 'a')") + require.Error(t, err) + require.True(t, plannercore.ErrNoReferencedRow2.Equal(err), err.Error()) + tk.MustExec("insert into t1 values (1, 1, 1);") + tk.MustExec("insert into t2 (id, a, b, name) values (1, 1, 1, 'c')") + tk.MustQuery("select id, a, b from t1 order by id").Check(testkit.Rows("1 1 1", "2 2 2")) + tk.MustQuery("select id, a, b, name from t2 order by id").Check(testkit.Rows("1 1 1 c", "2 2 2 b")) + tk.MustExec("delete from t1") + tk.MustExec("commit") + tk.MustQuery("select * from t1").Check(testkit.Rows()) + tk.MustQuery("select * from t2").Check(testkit.Rows()) + + // only test in non-unique index + if idx >= 2 { + tk.MustExec("insert into t1 values (1, 1, 1),(2, 1, 1);") + tk.MustExec("begin") + tk.MustExec("delete from t1 where id = 1") + tk.MustExec("insert into t2 (id, a, b, name) values (1, 1, 1, 'a')") + tk.MustExec("delete from t1 where id = 2") + tk.MustQuery("select * from t1").Check(testkit.Rows()) + tk.MustQuery("select * from t2").Check(testkit.Rows()) + err := tk.ExecToErr("insert into t2 (id, a, b, name) values (1, 1, 1, 'a')") + require.Error(t, err) + require.True(t, plannercore.ErrNoReferencedRow2.Equal(err), err.Error()) + tk.MustExec("insert into t1 values (3, 1, 1);") + tk.MustExec("insert into t2 (id, a, b, name) values (3, 1, 1, 'e')") + tk.MustExec("commit") + tk.MustQuery("select id, a, b from t1 order by id").Check(testkit.Rows("3 1 1")) + tk.MustQuery("select id, a, b, name from t2 order by id").Check(testkit.Rows("3 1 1 e")) + + tk.MustExec("delete from t2") + tk.MustExec("delete from t1") + tk.MustExec("begin") + tk.MustExec("insert into t1 values (1, 1, 1),(2, 1, 1);") + tk.MustExec("insert into t2 (id, a, b, name) values (1, 1, 1, 'a'), (2, 1, 1, 'b')") + tk.MustExec("delete from t1 where id = 1") + tk.MustExec("commit") + tk.MustQuery("select id, a, b from t1 order by id").Check(testkit.Rows("2 1 1")) + tk.MustQuery("select id, a, b, name from t2 order by id").Check(testkit.Rows()) + } + } + + cases = []struct { + prepareSQLs []string + }{ + // Case-5: test primary key only contain foreign key columns, and disable tidb_enable_clustered_index. + { + prepareSQLs: []string{ + "set @@tidb_enable_clustered_index=0;", + "create table t1 (id int, a int, b int, primary key (a, b));", + "create table t2 (b int, name varchar(10), a int, id int, primary key (a, b), foreign key fk(a, b) references t1(a, b) ON DELETE CASCADE);", + }, + }, + // Case-6: test primary key only contain foreign key columns, and enable tidb_enable_clustered_index. + { + prepareSQLs: []string{ + "set @@tidb_enable_clustered_index=1;", + "create table t1 (id int, a int, b int, primary key (a, b));", + "create table t2 (name varchar(10), b int, a int, id int, primary key (a, b), foreign key fk(a, b) references t1(a, b) ON DELETE CASCADE);", + }, + }, + // Case-7: test primary key contain foreign key columns and other column, and disable tidb_enable_clustered_index. + { + prepareSQLs: []string{ + "set @@tidb_enable_clustered_index=0;", + "create table t1 (id int, a int, b int, primary key (a, b, id));", + "create table t2 (b int, a int, name varchar(10), id int, primary key (a, b, id), foreign key fk(a, b) references t1(a, b) ON DELETE CASCADE);", + }, + }, + // Case-8: test primary key contain foreign key columns and other column, and enable tidb_enable_clustered_index. + { + prepareSQLs: []string{ + "set @@tidb_enable_clustered_index=1;", + "create table t1 (id int, a int, b int, primary key (a, b, id));", + "create table t2 (b int, name varchar(10), a int, id int, primary key (a, b, id), foreign key fk(a, b) references t1(a, b) ON DELETE CASCADE);", + }, + }, + // Case-9: test primary key is handle and contain foreign key column. + { + prepareSQLs: []string{ + "set @@tidb_enable_clustered_index=0;", + "create table t1 (id int, a int, b int, primary key (id));", + "create table t2 (b int, a int, id int, name varchar(10), primary key (a), foreign key fk(a) references t1(id) ON DELETE CASCADE);", + }, + }, + } + for _, ca := range cases { + tk.MustExec("drop table if exists t1, t2;") + for _, sql := range ca.prepareSQLs { + tk.MustExec(sql) + } + tk.MustExec("insert into t1 values (1, 1, 1),(2, 2, 2), (3, 3, 3), (4, 4, 4);") + tk.MustExec("insert into t2 (id, a, b, name) values (1, 1, 1, 'a'),(2, 2, 2, 'b'), (3, 3, 3, 'c'), (4, 4, 4, 'd');") + tk.MustExec("delete from t1 where id = 1 or a = 2") + tk.MustQuery("select id, a, b from t2 order by id").Check(testkit.Rows("3 3 3", "4 4 4")) + tk.MustExec("delete from t1 where a in (2,3) or b < 5") + tk.MustQuery("select * from t1").Check(testkit.Rows()) + tk.MustQuery("select * from t2").Check(testkit.Rows()) + + // test in transaction. + tk.MustExec("begin") + tk.MustExec("insert into t1 values (1, 1, 1),(2, 2, 2), (3, 3, 3), (4, 4, 4);") + tk.MustExec("insert into t2 (id, a, b, name) values (1, 1, 1, 'a'),(2, 2, 2, 'b'), (3, 3, 3, 'c'), (4, 4, 4, 'd');") + tk.MustExec("delete from t1 where id = 1 or a = 2") + tk.MustExec("delete from t1 where a in (2,3,4) or b in (5,6,7)") + tk.MustQuery("select id, a, b, name from t2 order by id").Check(testkit.Rows()) + tk.MustExec("rollback") + tk.MustQuery("select * from t1").Check(testkit.Rows()) + tk.MustQuery("select * from t2").Check(testkit.Rows()) + + tk.MustExec("insert into t1 values (1, 1, 1),(2, 2, 2);") + tk.MustExec("begin") + tk.MustExec("insert into t2 (id, a, b, name) values (1, 1, 1, 'a'),(2, 2, 2, 'b')") + tk.MustExec("delete from t1 where id = 1") + tk.MustQuery("select id, a, b from t1 order by id").Check(testkit.Rows("2 2 2")) + tk.MustQuery("select id, a, b, name from t2 order by id").Check(testkit.Rows("2 2 2 b")) + err := tk.ExecToErr("insert into t2 (id, a, b, name) values (1, 1, 1, 'a')") + require.Error(t, err) + require.True(t, plannercore.ErrNoReferencedRow2.Equal(err), err.Error()) + tk.MustExec("insert into t1 values (1, 1, 1);") + tk.MustExec("insert into t2 (id, a, b, name) values (1, 1, 1, 'c')") + tk.MustQuery("select id, a, b from t1 order by id").Check(testkit.Rows("1 1 1", "2 2 2")) + tk.MustQuery("select id, a, b, name from t2 order by id").Check(testkit.Rows("1 1 1 c", "2 2 2 b")) + tk.MustExec("delete from t1") + tk.MustExec("commit") + tk.MustQuery("select * from t1").Check(testkit.Rows()) + tk.MustQuery("select * from t2").Check(testkit.Rows()) + } +} + +func TestForeignKeyOnDeleteCascade2(t *testing.T) { + store := testkit.CreateMockStore(t) + tk := testkit.NewTestKit(t, store) + tk.MustExec("set @@global.tidb_enable_foreign_key=1") + tk.MustExec("set @@foreign_key_checks=1") + tk.MustExec("use test") + + // Test cascade delete in self table. + tk.MustExec("create table t1 (id int key, name varchar(10), leader int, index(leader), foreign key (leader) references t1(id) ON DELETE CASCADE);") + tk.MustExec("insert into t1 values (1, 'boss', null), (10, 'l1_a', 1), (11, 'l1_b', 1), (12, 'l1_c', 1)") + tk.MustExec("insert into t1 values (100, 'l2_a1', 10), (101, 'l2_a2', 10), (102, 'l2_a3', 10)") + tk.MustExec("insert into t1 values (110, 'l2_b1', 11), (111, 'l2_b2', 11), (112, 'l2_b3', 11)") + tk.MustExec("insert into t1 values (120, 'l2_c1', 12), (121, 'l2_c2', 12), (122, 'l2_c3', 12)") + tk.MustExec("insert into t1 values (1000,'l3_a1', 100)") + tk.MustExec("delete from t1 where id=11") + tk.MustQuery("select id from t1 order by id").Check(testkit.Rows("1", "10", "12", "100", "101", "102", "120", "121", "122", "1000")) + tk.MustExec("delete from t1 where id=1") + // The affect rows doesn't contain the cascade deleted rows, the behavior is compatible with MySQL. + require.Equal(t, uint64(1), tk.Session().GetSessionVars().StmtCtx.AffectedRows()) + tk.MustQuery("select id from t1 order by id").Check(testkit.Rows()) + + // Test explain analyze with foreign key cascade. + tk.MustExec("insert into t1 values (1, 'boss', null), (10, 'l1_a', 1), (11, 'l1_b', 1), (12, 'l1_c', 1)") + tk.MustExec("explain analyze delete from t1 where id=1") + tk.MustQuery("select * from t1").Check(testkit.Rows()) + + // Test string type foreign key. + tk.MustExec("drop table t1") + tk.MustExec("create table t1 (id varchar(10) key, name varchar(10), leader varchar(10), index(leader), foreign key (leader) references t1(id) ON DELETE CASCADE);") + tk.MustExec("insert into t1 values (1, 'boss', null)") + tk.MustExec("insert into t1 values (10, 'l1_a', 1), (11, 'l1_b', 1), (12, 'l1_c', 1)") + tk.MustExec("insert into t1 values (100, 'l2_a1', 10), (101, 'l2_a2', 10), (102, 'l2_a3', 10)") + tk.MustExec("insert into t1 values (110, 'l2_b1', 11), (111, 'l2_b2', 11), (112, 'l2_b3', 11)") + tk.MustExec("insert into t1 values (120, 'l2_c1', 12), (121, 'l2_c2', 12), (122, 'l2_c3', 12)") + tk.MustExec("insert into t1 values (1000,'l3_a1', 100)") + tk.MustExec("delete from t1 where id=11") + tk.MustQuery("select id from t1 order by id").Check(testkit.Rows("1", "10", "100", "1000", "101", "102", "12", "120", "121", "122")) + tk.MustExec("delete from t1 where id=1") + require.Equal(t, uint64(1), tk.Session().GetSessionVars().StmtCtx.AffectedRows()) + tk.MustQuery("select id from t1 order by id").Check(testkit.Rows()) + + // Test cascade delete depth. + tk.MustExec("drop table t1") + tk.MustExec("create table t1(id int primary key, pid int, index(pid), foreign key(pid) references t1(id) on delete cascade);") + tk.MustExec("insert into t1 values(0,0),(1,0),(2,1),(3,2),(4,3),(5,4),(6,5),(7,6),(8,7),(9,8),(10,9),(11,10),(12,11),(13,12),(14,13),(15,14);") + tk.MustGetDBError("delete from t1 where id=0;", executor.ErrForeignKeyCascadeDepthExceeded) + tk.MustExec("delete from t1 where id=15;") + tk.MustExec("delete from t1 where id=0;") + tk.MustQuery("select * from t1").Check(testkit.Rows()) + tk.MustExec("insert into t1 values(0,0)") + tk.MustExec("delete from t1 where id=0;") + tk.MustQuery("select * from t1").Check(testkit.Rows()) + + // Test for cascade delete failed. + tk.MustExec("drop table t1") + tk.MustExec("create table t1 (id int key)") + tk.MustExec("create table t2 (id int key, foreign key (id) references t1 (id) on delete cascade)") + tk.MustExec("create table t3 (id int key, foreign key (id) references t2(id))") + tk.MustExec("insert into t1 values (1)") + tk.MustExec("insert into t2 values (1)") + tk.MustExec("insert into t3 values (1)") + // test in autocommit transaction + tk.MustGetDBError("delete from t1 where id = 1", plannercore.ErrRowIsReferenced2) + require.Equal(t, 0, len(tk.Session().GetSessionVars().TxnCtx.Savepoints)) + tk.MustQuery("select * from t1").Check(testkit.Rows("1")) + tk.MustQuery("select * from t2").Check(testkit.Rows("1")) + tk.MustQuery("select * from t3").Check(testkit.Rows("1")) + // Test in transaction and commit transaction. + tk.MustExec("begin") + tk.MustExec("insert into t1 values (2),(3),(4)") + tk.MustExec("insert into t2 values (2),(3)") + tk.MustExec("insert into t3 values (3)") + tk.MustGetDBError("delete from t1 where id = 1", plannercore.ErrRowIsReferenced2) + require.Equal(t, 0, len(tk.Session().GetSessionVars().TxnCtx.Savepoints)) + tk.MustExec("delete from t1 where id = 2") + require.Equal(t, 0, len(tk.Session().GetSessionVars().TxnCtx.Savepoints)) + tk.MustQuery("select * from t1").Check(testkit.Rows("1", "3", "4")) + tk.MustQuery("select * from t2").Check(testkit.Rows("1", "3")) + tk.MustQuery("select * from t3").Check(testkit.Rows("1", "3")) + tk.MustExec("commit") + tk.MustQuery("select * from t1").Check(testkit.Rows("1", "3", "4")) + tk.MustQuery("select * from t2").Check(testkit.Rows("1", "3")) + tk.MustQuery("select * from t3").Check(testkit.Rows("1", "3")) + // Test in transaction and rollback transaction. + tk.MustExec("begin") + tk.MustExec("insert into t1 values (5), (6)") + tk.MustExec("insert into t2 values (4), (5), (6)") + tk.MustExec("insert into t3 values (5)") + tk.MustGetDBError("delete from t1 where id = 1", plannercore.ErrRowIsReferenced2) + require.Equal(t, 0, len(tk.Session().GetSessionVars().TxnCtx.Savepoints)) + tk.MustExec("delete from t1 where id = 4") + require.Equal(t, 0, len(tk.Session().GetSessionVars().TxnCtx.Savepoints)) + tk.MustQuery("select * from t1").Check(testkit.Rows("1", "3", "5", "6")) + tk.MustQuery("select * from t2").Check(testkit.Rows("1", "3", "5", "6")) + tk.MustQuery("select * from t3").Check(testkit.Rows("1", "3", "5")) + tk.MustExec("rollback") + tk.MustQuery("select * from t1").Check(testkit.Rows("1", "3", "4")) + tk.MustQuery("select * from t2").Check(testkit.Rows("1", "3")) + tk.MustQuery("select * from t3").Check(testkit.Rows("1", "3")) + tk.MustExec("delete from t3 where id = 1") + tk.MustExec("delete from t1 where id = 1") + tk.MustQuery("select * from t1").Check(testkit.Rows("3", "4")) + tk.MustQuery("select * from t2").Check(testkit.Rows("3")) + tk.MustQuery("select * from t3").Check(testkit.Rows("3")) + // Test in autocommit=0 transaction + tk.MustExec("set autocommit=0") + tk.MustExec("insert into t1 values (1), (2)") + tk.MustExec("insert into t2 values (1), (2)") + tk.MustExec("insert into t3 values (1)") + tk.MustGetDBError("delete from t1 where id = 1", plannercore.ErrRowIsReferenced2) + require.Equal(t, 0, len(tk.Session().GetSessionVars().TxnCtx.Savepoints)) + tk.MustExec("delete from t1 where id = 2") + require.Equal(t, 0, len(tk.Session().GetSessionVars().TxnCtx.Savepoints)) + tk.MustQuery("select * from t1").Check(testkit.Rows("1", "3", "4")) + tk.MustQuery("select * from t2").Check(testkit.Rows("1", "3")) + tk.MustQuery("select * from t3").Check(testkit.Rows("1", "3")) + tk.MustExec("set autocommit=1") + tk.MustQuery("select * from t1").Check(testkit.Rows("1", "3", "4")) + tk.MustQuery("select * from t2").Check(testkit.Rows("1", "3")) + tk.MustQuery("select * from t3").Check(testkit.Rows("1", "3")) + + // Test StmtCommit after fk cascade executor execute finish. + tk.MustExec("drop table if exists t1,t2,t3") + tk.MustExec("create table t0(id int primary key);") + tk.MustExec("create table t1(id int primary key, pid int, index(pid), a int, foreign key(pid) references t1(id) on delete cascade, foreign key(a) references t0(id) on delete cascade);") + tk.MustExec("insert into t0 values (0)") + tk.MustExec("insert into t1 values (0, 0, 0)") + tk.MustExec("insert into t1 (id, pid) values(1,0),(2,1),(3,2),(4,3),(5,4),(6,5),(7,6),(8,7),(9,8),(10,9),(11,10),(12,11),(13,12),(14,13);") + tk.MustGetDBError("delete from t0 where id=0;", executor.ErrForeignKeyCascadeDepthExceeded) + require.Equal(t, 0, len(tk.Session().GetSessionVars().TxnCtx.Savepoints)) + tk.MustExec("delete from t1 where id=14;") + tk.MustExec("delete from t0 where id=0;") + require.Equal(t, 0, len(tk.Session().GetSessionVars().TxnCtx.Savepoints)) + tk.MustQuery("select * from t0").Check(testkit.Rows()) + tk.MustQuery("select * from t1").Check(testkit.Rows()) + + // Test multi-foreign key cascade in one table. + tk.MustExec("drop table if exists t1,t2,t3") + tk.MustExec("create table t1 (id int key)") + tk.MustExec("create table t2 (id int key)") + tk.MustExec("create table t3 (id1 int, id2 int, constraint fk_id1 foreign key (id1) references t1 (id) on delete cascade, " + + "constraint fk_id2 foreign key (id2) references t2 (id) on delete cascade)") + tk.MustExec("insert into t1 values (1), (2), (3)") + tk.MustExec("insert into t2 values (1), (2), (3)") + tk.MustExec("insert into t3 values (1,1), (1, 2), (1, 3), (2, 1), (2, 2)") + tk.MustExec("delete from t1 where id=1") + tk.MustQuery("select * from t1").Check(testkit.Rows("2", "3")) + tk.MustQuery("select * from t2").Check(testkit.Rows("1", "2", "3")) + tk.MustQuery("select * from t3 order by id1").Check(testkit.Rows("2 1", "2 2")) + tk.MustExec("create table t4 (id3 int key, constraint fk_id3 foreign key (id3) references t3 (id2))") + tk.MustExec("insert into t4 values (2)") + tk.MustGetDBError("delete from t1 where id = 2", plannercore.ErrRowIsReferenced2) + tk.MustGetDBError("delete from t2 where id = 2", plannercore.ErrRowIsReferenced2) + tk.MustExec("delete from t2 where id=1") + tk.MustQuery("select * from t1").Check(testkit.Rows("2", "3")) + tk.MustQuery("select * from t2").Check(testkit.Rows("2", "3")) + tk.MustQuery("select * from t3 order by id1").Check(testkit.Rows("2 2")) + + // Test multi-foreign key cascade in one table. + tk.MustExec("drop table if exists t1,t2,t3, t4") + tk.MustExec(`create table t1 (c0 int, index(c0))`) + cnt := 20 + for i := 1; i < cnt; i++ { + tk.MustExec(fmt.Sprintf("alter table t1 add column c%v int", i)) + tk.MustExec(fmt.Sprintf("alter table t1 add index idx_%v (c%v) ", i, i)) + tk.MustExec(fmt.Sprintf("alter table t1 add foreign key (c%v) references t1 (c%v) on delete cascade", i, i-1)) + } + for i := 0; i < cnt; i++ { + vals := strings.Repeat(strconv.Itoa(i)+",", 20) + tk.MustExec(fmt.Sprintf("insert into t1 values (%v)", vals[:len(vals)-1])) + } + tk.MustExec("delete from t1 where c0 in (0, 1, 2, 3, 4)") + tk.MustQuery("select count(*) from t1").Check(testkit.Rows("15")) + + // Test foreign key cascade execution meet lock and do retry. + tk2 := testkit.NewTestKit(t, store) + tk2.MustExec("set @@global.tidb_enable_foreign_key=1") + tk2.MustExec("set @@foreign_key_checks=1") + tk2.MustExec("use test") + tk.MustExec("drop table if exists t1") + tk.MustExec("create table t1 (id int key, name varchar(10), pid int, index(pid), constraint fk foreign key (pid) references t1 (id) on delete cascade)") + tk.MustExec("insert into t1 values (1, 'boss', null), (2, 'a', 1), (3, 'b', 1), (4, 'c', '2')") + tk.MustExec("begin pessimistic") + tk.MustExec("insert into t1 values (5, 'd', 3)") + tk2.MustExec("begin pessimistic") + tk2.MustExec("insert into t1 values (6, 'e', 4)") + tk2.MustExec("delete from t1 where id=2") + tk2.MustExec("commit") + tk.MustExec("delete from t1 where id = 1") + tk.MustExec("commit") + tk.MustQuery("select * from t1").Check(testkit.Rows()) + + // Test handle many foreign key value in one cascade. + tk.MustExec("drop table if exists t1, t2") + tk.MustExec("create table t1 (id int auto_increment key, b int);") + tk.MustExec("create table t2 (id int, b int, foreign key fk(id) references t1(id) on delete cascade)") + tk.MustExec("insert into t1 (b) values (1),(1),(1),(1),(1),(1),(1),(1);") + for i := 0; i < 12; i++ { + tk.MustExec("insert into t1 (b) select b from t1") + } + tk.MustQuery("select count(*) from t1").Check(testkit.Rows("32768")) + tk.MustExec("insert into t2 select * from t1") + tk.MustExec("delete from t1") + tk.MustQuery("select count(*) from t1").Check(testkit.Rows("0")) + tk.MustQuery("select count(*) from t2").Check(testkit.Rows("0")) +} + +func TestForeignKeyGenerateCascadeAST(t *testing.T) { + store := testkit.CreateMockStore(t) + tk := testkit.NewTestKit(t, store) + tk.MustExec("use test;") + fkValues := [][]types.Datum{ + {types.NewDatum(1), types.NewDatum("a")}, + {types.NewDatum(2), types.NewDatum("b")}, + } + cols := []*model.ColumnInfo{ + {ID: 1, Name: model.NewCIStr("a"), FieldType: *types.NewFieldType(mysql.TypeLonglong)}, + {ID: 2, Name: model.NewCIStr("name"), FieldType: *types.NewFieldType(mysql.TypeVarchar)}, + } + restoreFn := func(stmt ast.StmtNode) string { + var sb strings.Builder + fctx := format.NewRestoreCtx(format.DefaultRestoreFlags, &sb) + err := stmt.Restore(fctx) + require.NoError(t, err) + return sb.String() + } + checkStmtFn := func(stmt ast.StmtNode, sql string) { + exec, ok := tk.Session().(sqlexec.RestrictedSQLExecutor) + require.True(t, ok) + expectedStmt, err := exec.ParseWithParams(context.Background(), sql) + require.NoError(t, err) + require.Equal(t, restoreFn(expectedStmt), restoreFn(stmt)) + } + var stmt ast.StmtNode + stmt = executor.GenCascadeDeleteAST(model.NewCIStr("test"), model.NewCIStr("t2"), model.NewCIStr(""), cols, fkValues) + checkStmtFn(stmt, "delete from test.t2 where (a,name) in ((1,'a'), (2,'b'))") + stmt = executor.GenCascadeDeleteAST(model.NewCIStr("test"), model.NewCIStr("t2"), model.NewCIStr("idx"), cols, fkValues) + checkStmtFn(stmt, "delete from test.t2 use index(idx) where (a,name) in ((1,'a'), (2,'b'))") + stmt = executor.GenCascadeSetNullAST(model.NewCIStr("test"), model.NewCIStr("t2"), model.NewCIStr(""), cols, fkValues) + checkStmtFn(stmt, "update test.t2 set a = null, name = null where (a,name) in ((1,'a'), (2,'b'))") + stmt = executor.GenCascadeSetNullAST(model.NewCIStr("test"), model.NewCIStr("t2"), model.NewCIStr("idx"), cols, fkValues) + checkStmtFn(stmt, "update test.t2 use index(idx) set a = null, name = null where (a,name) in ((1,'a'), (2,'b'))") + newValue1 := []types.Datum{types.NewDatum(10), types.NewDatum("aa")} + couple := &executor.UpdatedValuesCouple{ + NewValues: newValue1, + OldValuesList: fkValues, + } + stmt = executor.GenCascadeUpdateAST(model.NewCIStr("test"), model.NewCIStr("t2"), model.NewCIStr(""), cols, couple) + checkStmtFn(stmt, "update test.t2 set a = 10, name = 'aa' where (a,name) in ((1,'a'), (2,'b'))") + stmt = executor.GenCascadeUpdateAST(model.NewCIStr("test"), model.NewCIStr("t2"), model.NewCIStr("idx"), cols, couple) + checkStmtFn(stmt, "update test.t2 use index(idx) set a = 10, name = 'aa' where (a,name) in ((1,'a'), (2,'b'))") + // Test for 1 fk column. + fkValues = [][]types.Datum{{types.NewDatum(1)}, {types.NewDatum(2)}} + cols = []*model.ColumnInfo{{ID: 1, Name: model.NewCIStr("a"), FieldType: *types.NewFieldType(mysql.TypeLonglong)}} + stmt = executor.GenCascadeDeleteAST(model.NewCIStr("test"), model.NewCIStr("t2"), model.NewCIStr(""), cols, fkValues) + checkStmtFn(stmt, "delete from test.t2 where a in (1,2)") + stmt = executor.GenCascadeDeleteAST(model.NewCIStr("test"), model.NewCIStr("t2"), model.NewCIStr("idx"), cols, fkValues) + checkStmtFn(stmt, "delete from test.t2 use index(idx) where a in (1,2)") +} + +func TestForeignKeyOnDeleteSetNull(t *testing.T) { + store := testkit.CreateMockStore(t) + tk := testkit.NewTestKit(t, store) + tk.MustExec("set @@global.tidb_enable_foreign_key=1") + tk.MustExec("set @@foreign_key_checks=1") + tk.MustExec("use test") + + cases := []struct { + prepareSQLs []string + }{ + // Case-1: test unique index only contain foreign key columns. + { + prepareSQLs: []string{ + "create table t1 (id int, a int, b int, unique index(a, b));", + "create table t2 (b int, name varchar(10), a int, id int, unique index (a,b), foreign key fk(a, b) references t1(a, b) ON DELETE SET NULL);", + }, + }, + // Case-2: test unique index contain foreign key columns and other columns. + { + prepareSQLs: []string{ + "create table t1 (id int key, a int, b int, unique index(a, b, id));", + "create table t2 (b int, a int, id int key, name varchar(10), unique index (a,b, id), foreign key fk(a, b) references t1(a, b) ON DELETE SET NULL);", + }, + }, + // Case-3: test non-unique index only contain foreign key columns. + { + prepareSQLs: []string{ + "create table t1 (id int key,a int, b int, index(a, b));", + "create table t2 (b int, a int, name varchar(10), id int key, index (a, b), foreign key fk(a, b) references t1(a, b) ON DELETE SET NULL);", + }, + }, + // Case-4: test non-unique index contain foreign key columns and other columns. + { + prepareSQLs: []string{ + "create table t1 (id int key,a int, b int, index(a, b, id));", + "create table t2 (name varchar(10), b int, a int, id int key, index (a, b, id), foreign key fk(a, b) references t1(a, b) ON DELETE SET NULL);", + }, + }, + } + + for idx, ca := range cases { + tk.MustExec("drop table if exists t2;") + tk.MustExec("drop table if exists t1;") + for _, sql := range ca.prepareSQLs { + tk.MustExec(sql) + } + tk.MustExec("insert into t1 values (1, 1, 1),(2, 2, 2), (3, 3, 3), (4, 4, 4), (5, 5, null), (6, null, 6), (7, null, null);") + tk.MustExec("insert into t2 (id, a, b, name) values (1, 1, 1, 'a'),(2, 2, 2, 'b'), (3, 3, 3, 'c'), (4, 4, 4, 'd'), (5, 5, null, 'e'), (6, null, 6, 'f'), (7, null, null, 'g');") + tk.MustExec("delete from t1 where id = 1 or a = 2") + tk.MustExec("delete from t1 where a in (2,3,4) or b in (5,6,7)") + tk.MustQuery("select id, a, b, name from t2 order by id").Check(testkit.Rows("1 a", "2 b", "3 c", "4 d", "5 5 e", "6 6 f", "7 g")) + + // Test in transaction. + tk.MustExec("delete from t2") + tk.MustExec("delete from t1") + tk.MustExec("begin") + tk.MustExec("insert into t1 values (1, 1, 1),(2, 2, 2), (3, 3, 3), (4, 4, 4), (5, 5, null), (6, null, 6), (7, null, null);") + tk.MustExec("insert into t2 (id, a, b, name) values (1, 1, 1, 'a'),(2, 2, 2, 'b'), (3, 3, 3, 'c'), (4, 4, 4, 'd'), (5, 5, null, 'e'), (6, null, 6, 'f'), (7, null, null, 'g');") + tk.MustExec("delete from t1 where id = 1 or a = 2") + tk.MustExec("delete from t1 where a in (2,3,4) or b in (5,6,7)") + tk.MustQuery("select id, a, b, name from t2 order by id").Check(testkit.Rows("1 a", "2 b", "3 c", "4 d", "5 5 e", "6 6 f", "7 g")) + tk.MustExec("rollback") + tk.MustQuery("select * from t1").Check(testkit.Rows()) + tk.MustQuery("select * from t2").Check(testkit.Rows()) + + tk.MustExec("insert into t1 values (1, 1, 1),(2, 2, 2);") + tk.MustExec("begin") + tk.MustExec("insert into t2 (id, a, b, name) values (1, 1, 1, 'a'),(2, 2, 2, 'b')") + tk.MustExec("delete from t1 where id = 1") + tk.MustQuery("select id, a, b from t1 order by id").Check(testkit.Rows("2 2 2")) + tk.MustQuery("select id, a, b, name from t2 order by id").Check(testkit.Rows("1 a", "2 2 2 b")) + err := tk.ExecToErr("insert into t2 (id, a, b, name) values (11, 1, 1, 'c')") + require.Error(t, err) + require.True(t, plannercore.ErrNoReferencedRow2.Equal(err), err.Error()) + tk.MustExec("insert into t1 values (1, 1, 1);") + tk.MustExec("insert into t2 (id, a, b, name) values (11, 1, 1, 'c')") + tk.MustQuery("select id, a, b from t1 order by id").Check(testkit.Rows("1 1 1", "2 2 2")) + tk.MustQuery("select id, a, b, name from t2 order by id").Check(testkit.Rows("1 a", "2 2 2 b", "11 1 1 c")) + tk.MustExec("delete from t1") + tk.MustExec("commit") + tk.MustQuery("select * from t1").Check(testkit.Rows()) + tk.MustQuery("select id, a, b, name from t2 order by id").Check(testkit.Rows("1 a", "2 b", "11 c")) + + // only test in non-unique index + if idx >= 2 { + tk.MustExec("delete from t2") + tk.MustExec("insert into t1 values (1, 1, 1),(2, 1, 1);") + tk.MustExec("begin") + tk.MustExec("delete from t1 where id = 1") + tk.MustExec("insert into t2 (id, a, b, name) values (1, 1, 1, 'a')") + tk.MustExec("delete from t1 where id = 2") + tk.MustQuery("select * from t1").Check(testkit.Rows()) + tk.MustQuery("select id, a, b, name from t2").Check(testkit.Rows("1 a")) + err := tk.ExecToErr("insert into t2 (id, a, b, name) values (2, 1, 1, 'b')") + require.Error(t, err) + require.True(t, plannercore.ErrNoReferencedRow2.Equal(err), err.Error()) + tk.MustExec("insert into t1 values (3, 1, 1);") + tk.MustExec("insert into t2 (id, a, b, name) values (3, 1, 1, 'e')") + tk.MustExec("commit") + tk.MustQuery("select id, a, b from t1 order by id").Check(testkit.Rows("3 1 1")) + tk.MustQuery("select id, a, b, name from t2 order by id").Check(testkit.Rows("1 a", "3 1 1 e")) + + tk.MustExec("delete from t2") + tk.MustExec("delete from t1") + tk.MustExec("begin") + tk.MustExec("insert into t1 values (1, 1, 1),(2, 1, 1);") + tk.MustExec("insert into t2 (id, a, b, name) values (1, 1, 1, 'a'), (2, 1, 1, 'b')") + tk.MustExec("delete from t1 where id = 1") + tk.MustExec("commit") + tk.MustQuery("select id, a, b from t1 order by id").Check(testkit.Rows("2 1 1")) + tk.MustQuery("select id, a, b, name from t2 order by id").Check(testkit.Rows("1 a", "2 b")) + } + } +} + +func TestForeignKeyOnDeleteSetNull2(t *testing.T) { + store := testkit.CreateMockStore(t) + tk := testkit.NewTestKit(t, store) + tk.MustExec("set @@global.tidb_enable_foreign_key=1") + tk.MustExec("set @@foreign_key_checks=1") + tk.MustExec("use test") + + // Test cascade delete in self table. + tk.MustExec("create table t1 (id int key, name varchar(10), leader int, index(leader), foreign key (leader) references t1(id) ON DELETE SET NULL);") + tk.MustExec("insert into t1 values (1, 'boss', null), (10, 'l1_a', 1), (11, 'l1_b', 1), (12, 'l1_c', 1)") + tk.MustExec("insert into t1 values (100, 'l2_a1', 10), (101, 'l2_a2', 10), (102, 'l2_a3', 10)") + tk.MustExec("insert into t1 values (110, 'l2_b1', 11), (111, 'l2_b2', 11), (112, 'l2_b3', 11)") + tk.MustExec("insert into t1 values (120, 'l2_c1', 12), (121, 'l2_c2', 12), (122, 'l2_c3', 12)") + tk.MustExec("insert into t1 values (1000,'l3_a1', 100)") + tk.MustExec("delete from t1 where id=11") + tk.MustQuery("select id, name, leader from t1 order by id").Check(testkit.Rows("1 boss ", "10 l1_a 1", "12 l1_c 1", "100 l2_a1 10", "101 l2_a2 10", "102 l2_a3 10", "110 l2_b1 ", "111 l2_b2 ", "112 l2_b3 ", "120 l2_c1 12", "121 l2_c2 12", "122 l2_c3 12", "1000 l3_a1 100")) + tk.MustExec("delete from t1 where id=1") + // The affect rows doesn't contain the cascade deleted rows, the behavior is compatible with MySQL. + require.Equal(t, uint64(1), tk.Session().GetSessionVars().StmtCtx.AffectedRows()) + tk.MustQuery("select id, name, leader from t1 order by id").Check(testkit.Rows("10 l1_a ", "12 l1_c ", "100 l2_a1 10", "101 l2_a2 10", "102 l2_a3 10", "110 l2_b1 ", "111 l2_b2 ", "112 l2_b3 ", "120 l2_c1 12", "121 l2_c2 12", "122 l2_c3 12", "1000 l3_a1 100")) + + // Test explain analyze with foreign key cascade. + tk.MustExec("delete from t1") + tk.MustExec("insert into t1 values (1, 'boss', null), (10, 'l1_a', 1), (11, 'l1_b', 1), (12, 'l1_c', 1)") + tk.MustExec("explain analyze delete from t1 where id=1") + tk.MustQuery("select id, name, leader from t1 order by id").Check(testkit.Rows("10 l1_a ", "11 l1_b ", "12 l1_c ")) + + // Test string type foreign key. + tk.MustExec("drop table t1") + tk.MustExec("create table t1 (id varchar(10) key, name varchar(10), leader varchar(10), index(leader), foreign key (leader) references t1(id) ON DELETE SET NULL);") + tk.MustExec("insert into t1 values (1, 'boss', null)") + tk.MustExec("insert into t1 values (10, 'l1_a', 1), (11, 'l1_b', 1), (12, 'l1_c', 1)") + tk.MustExec("insert into t1 values (100, 'l2_a1', 10), (101, 'l2_a2', 10), (102, 'l2_a3', 10)") + tk.MustExec("insert into t1 values (110, 'l2_b1', 11), (111, 'l2_b2', 11), (112, 'l2_b3', 11)") + tk.MustExec("insert into t1 values (120, 'l2_c1', 12), (121, 'l2_c2', 12), (122, 'l2_c3', 12)") + tk.MustExec("insert into t1 values (1000,'l3_a1', 100)") + tk.MustExec("delete from t1 where id=11") + tk.MustQuery("select id, name, leader from t1 order by name").Check(testkit.Rows("1 boss ", "10 l1_a 1", "12 l1_c 1", "100 l2_a1 10", "101 l2_a2 10", "102 l2_a3 10", "110 l2_b1 ", "111 l2_b2 ", "112 l2_b3 ", "120 l2_c1 12", "121 l2_c2 12", "122 l2_c3 12", "1000 l3_a1 100")) + tk.MustExec("delete from t1 where id=1") + require.Equal(t, uint64(1), tk.Session().GetSessionVars().StmtCtx.AffectedRows()) + tk.MustQuery("select id, name, leader from t1 order by name").Check(testkit.Rows("10 l1_a ", "12 l1_c ", "100 l2_a1 10", "101 l2_a2 10", "102 l2_a3 10", "110 l2_b1 ", "111 l2_b2 ", "112 l2_b3 ", "120 l2_c1 12", "121 l2_c2 12", "122 l2_c3 12", "1000 l3_a1 100")) + + // Test cascade set null depth. + tk.MustExec("drop table t1") + tk.MustExec("create table t1(id int primary key, pid int, index(pid), foreign key(pid) references t1(id) on delete set null);") + tk.MustExec("insert into t1 values(0,0),(1,0),(2,1),(3,2),(4,3),(5,4),(6,5),(7,6),(8,7),(9,8),(10,9),(11,10),(12,11),(13,12),(14,13),(15,14);") + tk.MustExec("delete from t1 where id=0;") + tk.MustQuery("select id, pid from t1").Check(testkit.Rows("1 ", "2 1", "3 2", "4 3", "5 4", "6 5", "7 6", "8 7", "9 8", "10 9", "11 10", "12 11", "13 12", "14 13", "15 14")) + + // Test for cascade delete failed. + tk.MustExec("drop table t1") + tk.MustExec("create table t1 (id int key)") + tk.MustExec("create table t2 (id int, foreign key (id) references t1 (id) on delete set null)") + tk.MustExec("create table t3 (id int, foreign key (id) references t2(id))") + tk.MustExec("insert into t1 values (1)") + tk.MustExec("insert into t2 values (1)") + tk.MustExec("insert into t3 values (1)") + // test in autocommit transaction + tk.MustGetDBError("delete from t1 where id = 1", plannercore.ErrRowIsReferenced2) + require.Equal(t, 0, len(tk.Session().GetSessionVars().TxnCtx.Savepoints)) + tk.MustQuery("select * from t1").Check(testkit.Rows("1")) + tk.MustQuery("select * from t2").Check(testkit.Rows("1")) + tk.MustQuery("select * from t3").Check(testkit.Rows("1")) + // Test in transaction and commit transaction. + tk.MustExec("begin") + tk.MustExec("insert into t1 values (2),(3),(4)") + tk.MustExec("insert into t2 values (2),(3)") + tk.MustExec("insert into t3 values (3)") + tk.MustGetDBError("delete from t1 where id = 1", plannercore.ErrRowIsReferenced2) + require.Equal(t, 0, len(tk.Session().GetSessionVars().TxnCtx.Savepoints)) + tk.MustExec("delete from t1 where id = 2") + require.Equal(t, 0, len(tk.Session().GetSessionVars().TxnCtx.Savepoints)) + tk.MustQuery("select * from t1").Check(testkit.Rows("1", "3", "4")) + tk.MustQuery("select * from t2 order by id").Check(testkit.Rows("", "1", "3")) + tk.MustQuery("select * from t3").Check(testkit.Rows("1", "3")) + tk.MustExec("commit") + tk.MustQuery("select * from t1 order by id").Check(testkit.Rows("1", "3", "4")) + tk.MustQuery("select * from t2 order by id").Check(testkit.Rows("", "1", "3")) + tk.MustQuery("select * from t3 order by id").Check(testkit.Rows("1", "3")) + // Test in transaction and rollback transaction. + tk.MustExec("begin") + tk.MustExec("insert into t1 values (5), (6)") + tk.MustExec("insert into t2 values (4), (5), (6)") + tk.MustExec("insert into t3 values (5)") + tk.MustGetDBError("delete from t1 where id = 1", plannercore.ErrRowIsReferenced2) + require.Equal(t, 0, len(tk.Session().GetSessionVars().TxnCtx.Savepoints)) + tk.MustExec("delete from t1 where id = 4") + require.Equal(t, 0, len(tk.Session().GetSessionVars().TxnCtx.Savepoints)) + tk.MustQuery("select * from t1 order by id").Check(testkit.Rows("1", "3", "5", "6")) + tk.MustQuery("select * from t2 order by id").Check(testkit.Rows("", "", "1", "3", "5", "6")) + tk.MustQuery("select * from t3 order by id").Check(testkit.Rows("1", "3", "5")) + tk.MustExec("rollback") + tk.MustQuery("select * from t1").Check(testkit.Rows("1", "3", "4")) + tk.MustQuery("select * from t2 order by id").Check(testkit.Rows("", "1", "3")) + tk.MustQuery("select * from t3").Check(testkit.Rows("1", "3")) + tk.MustExec("delete from t3 where id = 1") + tk.MustExec("delete from t1 where id = 1") + tk.MustQuery("select * from t1 order by id").Check(testkit.Rows("3", "4")) + tk.MustQuery("select * from t2 order by id").Check(testkit.Rows("", "", "3")) + tk.MustQuery("select * from t3").Check(testkit.Rows("3")) + + // Test in autocommit=0 transaction + tk.MustExec("set autocommit=0") + tk.MustExec("insert into t1 values (1), (2)") + tk.MustExec("insert into t2 values (1), (2)") + tk.MustExec("insert into t3 values (1)") + tk.MustGetDBError("delete from t1 where id = 1", plannercore.ErrRowIsReferenced2) + require.Equal(t, 0, len(tk.Session().GetSessionVars().TxnCtx.Savepoints)) + tk.MustExec("delete from t1 where id = 2") + require.Equal(t, 0, len(tk.Session().GetSessionVars().TxnCtx.Savepoints)) + tk.MustQuery("select * from t1 order by id").Check(testkit.Rows("1", "3", "4")) + tk.MustQuery("select * from t2 order by id").Check(testkit.Rows("", "", "", "1", "3")) + tk.MustQuery("select * from t3 order by id").Check(testkit.Rows("1", "3")) + tk.MustExec("set autocommit=1") + tk.MustQuery("select * from t1 order by id").Check(testkit.Rows("1", "3", "4")) + tk.MustQuery("select * from t2 order by id").Check(testkit.Rows("", "", "", "1", "3")) + tk.MustQuery("select * from t3 order by id").Check(testkit.Rows("1", "3")) + + // Test StmtCommit after fk cascade executor execute finish. + tk.MustExec("drop table if exists t1,t2,t3") + tk.MustExec("create table t0(id int primary key);") + tk.MustExec("create table t1(id int primary key, pid int, index(pid), a int, foreign key(pid) references t1(id) on delete set null, foreign key(a) references t0(id) on delete set null);") + tk.MustExec("insert into t0 values (0), (1)") + tk.MustExec("insert into t1 values (0, 0, 0)") + tk.MustExec("insert into t1 (id, pid) values(1,0),(2,1),(3,2),(4,3),(5,4),(6,5),(7,6),(8,7),(9,8),(10,9),(11,10),(12,11),(13,12),(14,13);") + tk.MustExec("update t1 set a=1 where a is null") + tk.MustExec("delete from t0 where id=0;") + require.Equal(t, 0, len(tk.Session().GetSessionVars().TxnCtx.Savepoints)) + tk.MustQuery("select * from t0").Check(testkit.Rows("1")) + tk.MustQuery("select id, pid, a from t1 order by id").Check(testkit.Rows("0 0 ", "1 0 1", "2 1 1", "3 2 1", "4 3 1", "5 4 1", "6 5 1", "7 6 1", "8 7 1", "9 8 1", "10 9 1", "11 10 1", "12 11 1", "13 12 1", "14 13 1")) + + // Test multi-foreign key set null in one table. + tk.MustExec("drop table if exists t1,t2,t3") + tk.MustExec("create table t1 (id int key)") + tk.MustExec("create table t2 (id int key)") + tk.MustExec("create table t3 (id1 int, id2 int, constraint fk_id1 foreign key (id1) references t1 (id) on delete set null, " + + "constraint fk_id2 foreign key (id2) references t2 (id) on delete set null)") + tk.MustExec("insert into t1 values (1), (2), (3)") + tk.MustExec("insert into t2 values (1), (2), (3)") + tk.MustExec("insert into t3 values (1,1), (1, 2), (1, 3), (2, 1), (2, 2)") + tk.MustExec("delete from t1 where id=1") + tk.MustQuery("select * from t1").Check(testkit.Rows("2", "3")) + tk.MustQuery("select * from t2").Check(testkit.Rows("1", "2", "3")) + tk.MustQuery("select * from t3 order by id1").Check(testkit.Rows(" 1", " 2", " 3", "2 1", "2 2")) + tk.MustExec("create table t4 (id3 int key, constraint fk_id3 foreign key (id3) references t3 (id2))") + tk.MustExec("insert into t4 values (2)") + tk.MustExec("delete from t1 where id=2") + tk.MustGetDBError("delete from t2 where id = 2", plannercore.ErrRowIsReferenced2) + tk.MustQuery("select * from t1").Check(testkit.Rows("3")) + tk.MustQuery("select * from t2 order by id").Check(testkit.Rows("1", "2", "3")) + tk.MustQuery("select * from t3 order by id1, id2").Check(testkit.Rows(" 1", " 1", " 2", " 2", " 3")) + + // Test foreign key set null execution meet lock and do retry. + tk2 := testkit.NewTestKit(t, store) + tk2.MustExec("set @@global.tidb_enable_foreign_key=1") + tk2.MustExec("set @@foreign_key_checks=1") + tk2.MustExec("use test") + tk.MustExec("drop table if exists t1, t2, t3, t4") + tk.MustExec("create table t1 (id int key, name varchar(10), pid int, index(pid), constraint fk foreign key (pid) references t1 (id) on delete set null)") + tk.MustExec("insert into t1 values (1, 'boss', null), (2, 'a', 1), (3, 'b', 1), (4, 'c', '2')") + tk.MustExec("begin pessimistic") + tk.MustExec("insert into t1 values (5, 'd', 3)") + tk2.MustExec("begin pessimistic") + tk2.MustExec("insert into t1 values (6, 'e', 4)") + tk2.MustExec("delete from t1 where id=2") + tk2.MustExec("commit") + tk.MustExec("delete from t1 where id = 1") + tk.MustExec("commit") + tk.MustQuery("select * from t1 order by id").Check(testkit.Rows("3 b ", "4 c ", "5 d 3", "6 e 4")) + + // Test foreign key cascade delete and set null in one row. + tk.MustExec("drop table if exists t1") + tk.MustExec("create table t1 (id int key, name varchar(10), pid int, ppid int, index(pid), index(ppid) , constraint fk_pid foreign key (pid) references t1 (id) on delete cascade, " + + "constraint fk_ppid foreign key (ppid) references t1 (id) on delete set null)") + tk.MustExec("insert into t1 values (1, 'boss', null, null), (2, 'a', 1, 1), (3, 'b', 1, 1), (4, 'c', '2', 1)") + tk.MustExec("delete from t1 where id = 1") + tk.MustQuery("select * from t1 order by id").Check(testkit.Rows()) + tk.MustExec("drop table if exists t1") + tk.MustExec("create table t1 (id int key, name varchar(10), pid int, oid int, poid int, index(pid), index (oid), index(poid) , constraint fk_pid foreign key (pid) references t1 (id) on delete cascade, " + + "constraint fk_poid foreign key (poid) references t1 (oid) on delete set null)") + tk.MustExec("insert into t1 values (1, 'boss', null, 0, 0), (2, 'a', 1, 1, 0), (3, 'b', null, 2, 1), (4, 'c', 2, 3, 2)") + tk.MustExec("delete from t1 where id = 1") + tk.MustQuery("select * from t1 order by id").Check(testkit.Rows("3 b 2 ")) + + // Test handle many foreign key value in one cascade. + tk.MustExec("drop table if exists t1, t2") + tk.MustExec("create table t1 (id int auto_increment key, b int);") + tk.MustExec("create table t2 (id int, b int, foreign key fk(id) references t1(id) on delete set null)") + tk.MustExec("insert into t1 (b) values (1),(1),(1),(1),(1),(1),(1),(1);") + for i := 0; i < 12; i++ { + tk.MustExec("insert into t1 (b) select b from t1") + } + tk.MustQuery("select count(*) from t1").Check(testkit.Rows("32768")) + tk.MustExec("insert into t2 select * from t1") + tk.MustExec("delete from t1") + tk.MustQuery("select count(*) from t1").Check(testkit.Rows("0")) + tk.MustQuery("select count(*) from t2 where id is null").Check(testkit.Rows("32768")) +} + +func TestForeignKeyOnUpdateCascade(t *testing.T) { + store := testkit.CreateMockStore(t) + tk := testkit.NewTestKit(t, store) + tk.MustExec("set @@global.tidb_enable_foreign_key=1") + tk.MustExec("set @@foreign_key_checks=1") + tk.MustExec("use test") + + cases := []struct { + prepareSQLs []string + }{ + // Case-1: test unique index only contain foreign key columns. + { + prepareSQLs: []string{ + "create table t1 (id int, a int, b int, unique index(a, b));", + "create table t2 (b int, name varchar(10), a int, id int, unique index (a,b), foreign key fk(a, b) references t1(a, b) ON UPDATE CASCADE);", + }, + }, + // Case-2: test unique index contain foreign key columns and other columns. + { + prepareSQLs: []string{ + "create table t1 (id int key, a int, b int, unique index(a, b, id));", + "create table t2 (b int, name varchar(10), a int, id int key, unique index (a,b, id), foreign key fk(a, b) references t1(a, b) ON UPDATE CASCADE);", + }, + }, + // Case-3: test non-unique index only contain foreign key columns. + { + prepareSQLs: []string{ + "create table t1 (id int key,a int, b int, index(a, b));", + "create table t2 (b int, a int, name varchar(10), id int key, index (a, b), foreign key fk(a, b) references t1(a, b) ON UPDATE CASCADE);", + }, + }, + // Case-4: test non-unique index contain foreign key columns and other columns. + { + prepareSQLs: []string{ + "create table t1 (id int key,a int, b int, index(a, b, id));", + "create table t2 (name varchar(10), b int, id int key, a int, index (a, b, id), foreign key fk(a, b) references t1(a, b) ON UPDATE CASCADE);", + }, + }, + } + + for idx, ca := range cases { + tk.MustExec("drop table if exists t2;") + tk.MustExec("drop table if exists t1;") + for _, sql := range ca.prepareSQLs { + tk.MustExec(sql) + } + tk.MustExec("insert into t1 (id, a, b) values (1, 11, 21),(2, 12, 22), (3, 13, 23), (4, 14, 24), (5, 15, null), (6, null, 26), (7, null, null);") + tk.MustExec("insert into t2 (id, a, b, name) values (1, 11, 21, 'a'),(2, 12, 22, 'b'), (3, 13, 23, 'c'), (4, 14, 24, 'd'), (5, 15, null, 'e'), (6, null, 26, 'f'), (7, null, null, 'g');") + tk.MustExec("update t1 set a=a+100, b = b+200 where id in (1, 2)") + tk.MustQuery("select id, a, b from t1 where id in (1,2) order by id").Check(testkit.Rows("1 111 221", "2 112 222")) + tk.MustQuery("select id, a, b, name from t2 where id in (1,2,3) order by id").Check(testkit.Rows("1 111 221 a", "2 112 222 b", "3 13 23 c")) + // Test update fk column to null + tk.MustExec("update t1 set a=101, b=null where id = 1 or b = 222") + tk.MustQuery("select id, a, b from t1 where id in (1,2) order by id").Check(testkit.Rows("1 101 ", "2 101 ")) + tk.MustQuery("select id, a, b, name from t2 where id in (1,2,3) order by id").Check(testkit.Rows("1 101 a", "2 101 b", "3 13 23 c")) + tk.MustExec("update t1 set a=null where b is null") + tk.MustQuery("select id, a, b from t1 where b is null order by id").Check(testkit.Rows("1 ", "2 ", "5 ", "7 ")) + tk.MustQuery("select id, a, b, name from t2 where b is null order by id").Check(testkit.Rows("1 101 a", "2 101 b", "5 15 e", "7 g")) + // Test update fk column from null to not-null value + tk.MustExec("update t1 set a=0, b = 0 where id = 7") + tk.MustQuery("select id, a, b from t1 where a=0 and b=0 order by id").Check(testkit.Rows("7 0 0")) + tk.MustQuery("select id, a, b from t2 where a=0 and b=0 order by id").Check(testkit.Rows()) + + // Test in transaction. + tk.MustExec("delete from t2") + tk.MustExec("delete from t1") + tk.MustExec("begin") + tk.MustExec("insert into t1 values (1, 1, 1),(2, 2, 2), (3, 3, 3), (4, 4, 4), (5, 5, null), (6, null, 6), (7, null, null);") + tk.MustExec("insert into t2 (id, a, b, name) values (1, 1, 1, 'a'),(2, 2, 2, 'b'), (3, 3, 3, 'c'), (4, 4, 4, 'd'), (5, 5, null, 'e'), (6, null, 6, 'f'), (7, null, null, 'g');") + tk.MustExec("update t1 set a=a+100, b = b+200 where id in (1, 2)") + tk.MustQuery("select id, a, b, name from t2 order by id").Check(testkit.Rows("1 101 201 a", "2 102 202 b", "3 3 3 c", "4 4 4 d", "5 5 e", "6 6 f", "7 g")) + tk.MustExec("rollback") + tk.MustQuery("select * from t1").Check(testkit.Rows()) + tk.MustQuery("select * from t2").Check(testkit.Rows()) + + tk.MustExec("insert into t1 values (1, 1, 1),(2, 2, 2);") + tk.MustExec("begin") + tk.MustExec("insert into t2 (id, a, b, name) values (1, 1, 1, 'a'),(2, 2, 2, 'b')") + tk.MustExec("update t1 set a=101 where a = 1") + tk.MustQuery("select id, a, b from t1 order by id").Check(testkit.Rows("1 101 1", "2 2 2")) + tk.MustQuery("select id, a, b, name from t2 order by id").Check(testkit.Rows("1 101 1 a", "2 2 2 b")) + err := tk.ExecToErr("insert into t2 (id, a, b, name) values (3, 1, 1, 'c')") + require.Error(t, err) + require.True(t, plannercore.ErrNoReferencedRow2.Equal(err), err.Error()) + tk.MustExec("insert into t1 values (3, 1, 1);") + tk.MustExec("insert into t2 (id, a, b, name) values (3, 1, 1, 'c')") + tk.MustQuery("select id, a, b from t1 order by id").Check(testkit.Rows("1 101 1", "2 2 2", "3 1 1")) + tk.MustQuery("select id, a, b, name from t2 order by id, a").Check(testkit.Rows("1 101 1 a", "2 2 2 b", "3 1 1 c")) + tk.MustExec("update t1 set a=null, b=2000 where id in (1, 2)") + tk.MustExec("commit") + tk.MustQuery("select id, a, b from t1 order by id").Check(testkit.Rows("1 2000", "2 2000", "3 1 1")) + tk.MustQuery("select id, a, b, name from t2 order by id").Check(testkit.Rows("1 2000 a", "2 2000 b", "3 1 1 c")) + + // only test in non-unique index + if idx >= 2 { + tk.MustExec("delete from t2") + tk.MustExec("delete from t1") + tk.MustExec("insert into t1 values (1, 1, 1),(2, 1, 1);") + tk.MustExec("begin") + tk.MustExec("update t1 set a=101 where id = 1") + tk.MustExec("insert into t2 (id, a, b, name) values (1, 1, 1, 'a')") + tk.MustExec("update t1 set b=102 where id = 2") + tk.MustQuery("select * from t1").Check(testkit.Rows("1 101 1", "2 1 102")) + tk.MustQuery("select id, a, b, name from t2").Check(testkit.Rows("1 1 102 a")) + err := tk.ExecToErr("insert into t2 (id, a, b, name) values (3, 1, 1, 'e')") + require.Error(t, err) + require.True(t, plannercore.ErrNoReferencedRow2.Equal(err), err.Error()) + tk.MustExec("insert into t1 values (3, 1, 1);") + tk.MustExec("insert into t2 (id, a, b, name) values (3, 1, 1, 'e')") + tk.MustExec("commit") + tk.MustQuery("select id, a, b from t1 order by id").Check(testkit.Rows("1 101 1", "2 1 102", "3 1 1")) + tk.MustQuery("select id, a, b, name from t2 order by id").Check(testkit.Rows("1 1 102 a", "3 1 1 e")) + + tk.MustExec("delete from t2") + tk.MustExec("delete from t1") + tk.MustExec("begin") + tk.MustExec("insert into t1 values (1, 1, 1),(2, 1, 1);") + tk.MustExec("insert into t2 (id, a, b, name) values (1, 1, 1, 'a'), (2, 1, 1, 'b')") + tk.MustExec("update t1 set a=101, b=102 where id = 1") + tk.MustExec("commit") + tk.MustQuery("select id, a, b from t1 order by id").Check(testkit.Rows("1 101 102", "2 1 1")) + tk.MustQuery("select id, a, b, name from t2 order by id").Check(testkit.Rows("1 101 102 a", "2 101 102 b")) + } + } + + cases = []struct { + prepareSQLs []string + }{ + // Case-5: test primary key only contain foreign key columns, and disable tidb_enable_clustered_index. + { + prepareSQLs: []string{ + "set @@tidb_enable_clustered_index=0;", + "create table t1 (id int, a int, b int, primary key (a, b));", + "create table t2 (b int, a int, name varchar(10), id int, primary key (a, b), foreign key fk(a, b) references t1(a, b) ON UPDATE CASCADE);", + }, + }, + // Case-6: test primary key only contain foreign key columns, and enable tidb_enable_clustered_index. + { + prepareSQLs: []string{ + "set @@tidb_enable_clustered_index=1;", + "create table t1 (id int, a int, b int, primary key (a, b));", + "create table t2 (name varchar(10), b int, a int, id int, primary key (a, b), foreign key fk(a, b) references t1(a, b) ON UPDATE CASCADE);", + }, + }, + // Case-7: test primary key contain foreign key columns and other column, and disable tidb_enable_clustered_index. + { + prepareSQLs: []string{ + "set @@tidb_enable_clustered_index=0;", + "create table t1 (id int, a int, b int, primary key (a, b, id));", + "create table t2 (b int, name varchar(10), a int, id int, primary key (a, b, id), foreign key fk(a, b) references t1(a, b) ON UPDATE CASCADE);", + }, + }, + // Case-8: test primary key contain foreign key columns and other column, and enable tidb_enable_clustered_index. + { + prepareSQLs: []string{ + "set @@tidb_enable_clustered_index=1;", + "create table t1 (id int, a int, b int, primary key (a, b, id));", + "create table t2 (b int, a int, id int, name varchar(10), primary key (a, b, id), foreign key fk(a, b) references t1(a, b) ON UPDATE CASCADE);", + }, + }, + } + for idx, ca := range cases { + tk.MustExec("drop table if exists t2;") + tk.MustExec("drop table if exists t1;") + for _, sql := range ca.prepareSQLs { + tk.MustExec(sql) + } + tk.MustExec("insert into t1 (id, a, b) values (1, 11, 21),(2, 12, 22), (3, 13, 23), (4, 14, 24)") + tk.MustExec("insert into t2 (id, a, b, name) values (1, 11, 21, 'a'),(2, 12, 22, 'b'), (3, 13, 23, 'c'), (4, 14, 24, 'd')") + tk.MustExec("update t1 set a=a+100, b = b+200 where id in (1, 2)") + tk.MustQuery("select id, a, b from t1 where id in (1,2) order by id").Check(testkit.Rows("1 111 221", "2 112 222")) + tk.MustQuery("select id, a, b, name from t2 where id in (1,2,3) order by id").Check(testkit.Rows("1 111 221 a", "2 112 222 b", "3 13 23 c")) + tk.MustExec("update t1 set a=101 where id = 1 or b = 222") + tk.MustQuery("select id, a, b from t1 where id in (1,2) order by id").Check(testkit.Rows("1 101 221", "2 101 222")) + tk.MustQuery("select id, a, b, name from t2 where id in (1,2,3) order by id").Check(testkit.Rows("1 101 221 a", "2 101 222 b", "3 13 23 c")) + + if idx < 2 { + tk.MustGetDBError("update t1 set b=200 where id in (1,2);", kv.ErrKeyExists) + } + + // test in transaction. + tk.MustExec("delete from t2") + tk.MustExec("delete from t1") + tk.MustExec("begin") + tk.MustExec("insert into t1 values (1, 1, 1),(2, 2, 2), (3, 3, 3), (4, 4, 4);") + tk.MustExec("insert into t2 (id, a, b, name) values (1, 1, 1, 'a'),(2, 2, 2, 'b'), (3, 3, 3, 'c'), (4, 4, 4, 'd');") + tk.MustExec("update t1 set a=a+100, b=b+200 where id = 1 or a = 2") + tk.MustExec("update t1 set a=a+1000, b=b+2000 where a in (2,3,4) or b in (5,6,7) or id=2") + tk.MustQuery("select id, a, b from t2 order by id").Check(testkit.Rows("1 101 201", "2 1102 2202", "3 1003 2003", "4 1004 2004")) + tk.MustQuery("select id, a, b, name from t2 order by id").Check(testkit.Rows("1 101 201 a", "2 1102 2202 b", "3 1003 2003 c", "4 1004 2004 d")) + tk.MustExec("commit") + tk.MustQuery("select id, a, b from t2 order by id").Check(testkit.Rows("1 101 201", "2 1102 2202", "3 1003 2003", "4 1004 2004")) + tk.MustQuery("select id, a, b, name from t2 order by id").Check(testkit.Rows("1 101 201 a", "2 1102 2202 b", "3 1003 2003 c", "4 1004 2004 d")) + + tk.MustExec("delete from t2") + tk.MustExec("delete from t1") + tk.MustExec("insert into t1 values (1, 1, 1),(2, 2, 2);") + tk.MustExec("begin") + tk.MustExec("insert into t2 (id, a, b, name) values (1, 1, 1, 'a'),(2, 2, 2, 'b')") + tk.MustExec("update t1 set a=a+100, b=b+200 where id = 1") + tk.MustQuery("select id, a, b from t1 order by id").Check(testkit.Rows("1 101 201", "2 2 2")) + tk.MustQuery("select id, a, b, name from t2 order by id").Check(testkit.Rows("1 101 201 a", "2 2 2 b")) + err := tk.ExecToErr("insert into t2 (id, a, b, name) values (3, 1, 1, 'e')") + require.Error(t, err) + require.True(t, plannercore.ErrNoReferencedRow2.Equal(err), err.Error()) + tk.MustExec("insert into t1 values (3, 1, 1);") + tk.MustExec("insert into t2 (id, a, b, name) values (3, 1, 1, 'c')") + tk.MustQuery("select id, a, b from t1 order by id").Check(testkit.Rows("1 101 201", "2 2 2", "3 1 1")) + tk.MustQuery("select id, a, b, name from t2 order by id").Check(testkit.Rows("1 101 201 a", "2 2 2 b", "3 1 1 c")) + tk.MustExec("update t1 set a=a+1000, b=b+2000 where a>1") + tk.MustExec("commit") + tk.MustQuery("select id, a, b from t1 order by id").Check(testkit.Rows("1 1101 2201", "2 1002 2002", "3 1 1")) + tk.MustQuery("select id, a, b, name from t2 order by id").Check(testkit.Rows("1 1101 2201 a", "2 1002 2002 b", "3 1 1 c")) + } + + // Case-9: test primary key is handle and contain foreign key column. + tk.MustExec("drop table if exists t2;") + tk.MustExec("drop table if exists t1;") + tk.MustExec("set @@tidb_enable_clustered_index=0;") + tk.MustExec("create table t1 (id int, a int, b int, primary key (id));") + tk.MustExec("create table t2 (b int, a int, id int, name varchar(10), primary key (a), foreign key fk(a) references t1(id) ON UPDATE CASCADE);") + tk.MustExec("insert into t1 (id, a, b) values (1, 11, 21),(2, 12, 22), (3, 13, 23), (4, 14, 24)") + tk.MustExec("insert into t2 (id, a, b, name) values (11, 1, 21, 'a'),(12, 2, 22, 'b'), (13, 3, 23, 'c'), (14, 4, 24, 'd')") + tk.MustExec("update t1 set id = id + 100 where id in (1, 2, 3)") + tk.MustQuery("select id, a, b from t1 order by id").Check(testkit.Rows("4 14 24", "101 11 21", "102 12 22", "103 13 23")) + tk.MustQuery("select id, a, b, name from t2 order by id").Check(testkit.Rows("11 101 21 a", "12 102 22 b", "13 103 23 c", "14 4 24 d")) +} + +func TestForeignKeyOnUpdateCascade2(t *testing.T) { + store := testkit.CreateMockStore(t) + tk := testkit.NewTestKit(t, store) + tk.MustExec("set @@global.tidb_enable_foreign_key=1") + tk.MustExec("set @@foreign_key_checks=1") + tk.MustExec("use test") + + // Test update same old row in parent, but only the first old row do cascade update + tk.MustExec("create table t1 (id int key, a int, index (a));") + tk.MustExec("create table t2 (id int key, pid int, constraint fk_pid foreign key (pid) references t1(a) ON UPDATE CASCADE);") + tk.MustExec("insert into t1 (id, a) values (1,1), (2, 1)") + tk.MustExec("insert into t2 (id, pid) values (1,1), (2, 1)") + tk.MustExec("update t1 set a=id+1") + tk.MustQuery("select id, a from t1 order by id").Check(testkit.Rows("1 2", "2 3")) + tk.MustQuery("select id, pid from t2 order by id").Check(testkit.Rows("1 2", "2 2")) + + // Test cascade delete in self table. + tk.MustExec("drop table if exists t1, t2") + tk.MustExec("create table t1 (id int key, name varchar(10), leader int, index(leader), foreign key (leader) references t1(id) ON UPDATE CASCADE);") + tk.MustExec("insert into t1 values (1, 'boss', null), (10, 'l1_a', 1), (11, 'l1_b', 1), (12, 'l1_c', 1)") + tk.MustExec("insert into t1 values (100, 'l2_a1', 10)") + tk.MustExec("insert into t1 values (110, 'l2_b1', 11)") + tk.MustExec("insert into t1 values (1000,'l3_a1', 100)") + tk.MustExec("update t1 set id=id+10000 where id=11") + tk.MustQuery("select id, name, leader from t1 order by id").Check(testkit.Rows("1 boss ", "10 l1_a 1", "12 l1_c 1", "100 l2_a1 10", "110 l2_b1 10011", "1000 l3_a1 100", "10011 l1_b 1")) + tk.MustExec("update t1 set id=0 where id=1") + tk.MustQuery("select id, name, leader from t1 order by id").Check(testkit.Rows("0 boss ", "10 l1_a 0", "12 l1_c 0", "100 l2_a1 10", "110 l2_b1 10011", "1000 l3_a1 100", "10011 l1_b 0")) + + // Test explain analyze with foreign key cascade. + tk.MustExec("explain analyze update t1 set id=1 where id=10") + tk.MustQuery("select id, name, leader from t1 order by id").Check(testkit.Rows("0 boss ", "1 l1_a 0", "12 l1_c 0", "100 l2_a1 1", "110 l2_b1 10011", "1000 l3_a1 100", "10011 l1_b 0")) + + // Test cascade delete in self table with string type foreign key. + tk.MustExec("drop table if exists t1, t2") + tk.MustExec("create table t1 (id varchar(100) key, name varchar(10), leader varchar(100), index(leader), foreign key (leader) references t1(id) ON UPDATE CASCADE);") + tk.MustExec("insert into t1 values (1, 'boss', null), (10, 'l1_a', 1), (11, 'l1_b', 1), (12, 'l1_c', 1)") + tk.MustExec("insert into t1 values (100, 'l2_a1', 10)") + tk.MustExec("insert into t1 values (110, 'l2_b1', 11)") + tk.MustExec("insert into t1 values (1000,'l3_a1', 100)") + tk.MustExec("update t1 set id=id+10000 where id=11") + tk.MustQuery("select id, name, leader from t1 order by name").Check(testkit.Rows("1 boss ", "10 l1_a 1", "10011 l1_b 1", "12 l1_c 1", "100 l2_a1 10", "110 l2_b1 10011", "1000 l3_a1 100")) + tk.MustExec("update t1 set id=0 where id=1") + tk.MustQuery("select id, name, leader from t1 order by name").Check(testkit.Rows("0 boss ", "10 l1_a 0", "10011 l1_b 0", "12 l1_c 0", "100 l2_a1 10", "110 l2_b1 10011", "1000 l3_a1 100")) + + // Test cascade delete depth error. + tk.MustExec("drop table if exists t1, t2") + tk.MustExec("create table t0 (id int, unique index(id))") + tk.MustExec("insert into t0 values (1)") + for i := 1; i < 17; i++ { + tk.MustExec(fmt.Sprintf("create table t%v (id int, unique index(id), foreign key (id) references t%v(id) on update cascade)", i, i-1)) + tk.MustExec(fmt.Sprintf("insert into t%v values (1)", i)) + } + tk.MustGetDBError("update t0 set id=10 where id=1;", executor.ErrForeignKeyCascadeDepthExceeded) + tk.MustQuery("select id from t0").Check(testkit.Rows("1")) + tk.MustQuery("select id from t15").Check(testkit.Rows("1")) + tk.MustExec("drop table if exists t16") + tk.MustExec("update t0 set id=10 where id=1;") + tk.MustQuery("select id from t0").Check(testkit.Rows("10")) + tk.MustQuery("select id from t15").Check(testkit.Rows("10")) + for i := 16; i > -1; i-- { + tk.MustExec("drop table if exists t" + strconv.Itoa(i)) + } + + // Test handle many foreign key value in one cascade. + tk.MustExec("create table t1 (id int auto_increment key, b int, index(b));") + tk.MustExec("create table t2 (id int, b int, foreign key fk(b) references t1(b) on update cascade)") + tk.MustExec("insert into t1 (b) values (1),(2),(3),(4),(5),(6),(7),(8);") + for i := 0; i < 12; i++ { + tk.MustExec("insert into t1 (b) select id from t1") + } + tk.MustQuery("select count(*) from t1").Check(testkit.Rows("32768")) + tk.MustExec("insert into t2 select * from t1") + tk.MustExec("update t1 set b=2") + tk.MustQuery("select count(*) from t1 join t2 where t1.id=t2.id and t1.b=t2.b").Check(testkit.Rows("32768")) +} + +func TestForeignKeyOnUpdateSetNull(t *testing.T) { + store := testkit.CreateMockStore(t) + tk := testkit.NewTestKit(t, store) + tk.MustExec("set @@global.tidb_enable_foreign_key=1") + tk.MustExec("set @@foreign_key_checks=1") + tk.MustExec("use test") + + // Test handle many foreign key value in one cascade. + tk.MustExec("create table t1 (id int auto_increment key, b int, index(b));") + tk.MustExec("create table t2 (id int, b int, foreign key fk(b) references t1(b) on update set null)") + tk.MustExec("insert into t1 (b) values (1),(2),(3),(4),(5),(6),(7),(8);") + for i := 0; i < 12; i++ { + tk.MustExec("insert into t1 (b) select id from t1") + } + tk.MustQuery("select count(*) from t1").Check(testkit.Rows("32768")) + tk.MustExec("insert into t2 select * from t1") + tk.MustExec("update t1 set b=b+100000000") + tk.MustQuery("select count(*) from t2 where b is null").Check(testkit.Rows("32768")) +} + +func TestShowCreateTableWithForeignKey(t *testing.T) { + store := testkit.CreateMockStore(t) + tk := testkit.NewTestKit(t, store) + tk.MustExec("use test") + + tk.MustExec("create table t1 (id int key, leader int, leader2 int, index(leader), index(leader2), constraint fk foreign key (leader) references t1(id) ON DELETE CASCADE ON UPDATE SET NULL);") + tk.MustQuery("show create table t1").Check(testkit.Rows("t1 CREATE TABLE `t1` (\n" + + " `id` int(11) NOT NULL,\n" + + " `leader` int(11) DEFAULT NULL,\n" + + " `leader2` int(11) DEFAULT NULL,\n" + + " PRIMARY KEY (`id`) /*T![clustered_index] CLUSTERED */,\n" + + " KEY `leader` (`leader`),\n KEY `leader2` (`leader2`),\n" + + " CONSTRAINT `fk` FOREIGN KEY (`leader`) REFERENCES `test`.`t1` (`id`) ON DELETE CASCADE ON UPDATE SET NULL /* FOREIGN KEY INVALID */\n" + + ") ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin")) + tk.MustExec("set @@global.tidb_enable_foreign_key=1") + tk.MustExec("alter table t1 add constraint fk2 foreign key (leader2) references t1 (id)") + tk.MustQuery("show create table t1").Check(testkit.Rows("t1 CREATE TABLE `t1` (\n" + + " `id` int(11) NOT NULL,\n" + + " `leader` int(11) DEFAULT NULL,\n" + + " `leader2` int(11) DEFAULT NULL,\n" + + " PRIMARY KEY (`id`) /*T![clustered_index] CLUSTERED */,\n" + + " KEY `leader` (`leader`),\n KEY `leader2` (`leader2`),\n" + + " CONSTRAINT `fk` FOREIGN KEY (`leader`) REFERENCES `test`.`t1` (`id`) ON DELETE CASCADE ON UPDATE SET NULL /* FOREIGN KEY INVALID */,\n" + + " CONSTRAINT `fk2` FOREIGN KEY (`leader2`) REFERENCES `test`.`t1` (`id`)\n" + + ") ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin")) + tk.MustExec("drop table t1") + tk.MustExec("create table t1 (id int key, leader int, leader2 int, index(leader), index(leader2), constraint fk foreign key (leader) references t1(id) /* FOREIGN KEY INVALID */);") +} + +func TestDMLExplainAnalyzeFKInfo(t *testing.T) { + store := testkit.CreateMockStore(t) + tk := testkit.NewTestKit(t, store) + tk.MustExec("set @@global.tidb_enable_foreign_key=1") + tk.MustExec("set @@foreign_key_checks=1") + tk.MustExec("use test") + + // Test for Insert ignore foreign check runtime stats. + tk.MustExec("drop table if exists t1,t2,t3") + tk.MustExec("create table t1 (id int key)") + tk.MustExec("create table t2 (id int key)") + tk.MustExec("create table t3 (id int key, id1 int, id2 int, constraint fk_id1 foreign key (id1) references t1 (id) on delete cascade, " + + "constraint fk_id2 foreign key (id2) references t2 (id) on delete cascade)") + tk.MustExec("insert into t1 values (1), (2)") + tk.MustExec("insert into t2 values (1)") + res := tk.MustQuery("explain analyze insert ignore into t3 values (1, 1, 1), (2, 1, 1), (3, 2, 1), (4, 1, 1), (5, 2, 1), (6, 2, 1)") + getExplainResultFn := func(res *testkit.Result) string { + resBuff := bytes.NewBufferString("") + for _, row := range res.Rows() { + _, _ = fmt.Fprintf(resBuff, "%s\t", row) + } + return resBuff.String() + } + explain := getExplainResultFn(res) + require.Regexpf(t, "time:.* loops:.* prepare:.* check_insert: {total_time:.* mem_insert_time:.* prefetch:.* fk_check:.* fk_num: 3.*", explain, "") + res = tk.MustQuery("explain analyze insert ignore into t3 values (7, null, null), (8, null, null)") + explain = getExplainResultFn(res) + require.NotContains(t, explain, "fk_check", explain, "") +} + +func TestForeignKeyCascadeOnDiffColumnType(t *testing.T) { + store := testkit.CreateMockStore(t) + tk := testkit.NewTestKit(t, store) + tk.MustExec("set @@global.tidb_enable_foreign_key=1") + tk.MustExec("set @@foreign_key_checks=1") + tk.MustExec("use test") + + tk.MustExec("create table t1 (id bit(10), index(id));") + tk.MustExec("create table t2 (id int key, b bit(10), constraint fk foreign key (b) references t1(id) ON DELETE CASCADE ON UPDATE CASCADE);") + tk.MustExec("insert into t1 values (b'01'), (b'10');") + tk.MustExec("insert into t2 values (1, b'01'), (2, b'10');") + tk.MustExec("delete from t1 where id = b'01';") + tk.MustExec("update t1 set id = b'110' where id = b'10';") + tk.MustQuery("select cast(id as unsigned) from t1;").Check(testkit.Rows("6")) + tk.MustQuery("select id, cast(b as unsigned) from t2;").Check(testkit.Rows("2 6")) +} + +func TestForeignKeyOnInsertOnDuplicateUpdate(t *testing.T) { + store := testkit.CreateMockStore(t) + tk := testkit.NewTestKit(t, store) + tk.MustExec("set @@global.tidb_enable_foreign_key=1") + tk.MustExec("set @@foreign_key_checks=1") + tk.MustExec("use test") + tk.MustExec("create table t1 (id int key, name varchar(10));") + tk.MustExec("create table t2 (id int key, pid int, foreign key fk(pid) references t1(id) ON UPDATE CASCADE ON DELETE CASCADE);") + tk.MustExec("insert into t1 values (1, 'a'), (2, 'b')") + tk.MustExec("insert into t2 values (1, 1), (2, 2), (3, 1), (4, 2), (5, null)") + tk.MustExec("insert into t1 values (1, 'aa') on duplicate key update name = 'aa'") + tk.MustQuery("select * from t1 order by id").Check(testkit.Rows("1 aa", "2 b")) + tk.MustQuery("select * from t2 order by id").Check(testkit.Rows("1 1", "2 2", "3 1", "4 2", "5 ")) + tk.MustExec("insert into t1 values (1, 'aaa') on duplicate key update id = 10") + tk.MustQuery("select * from t1 order by id").Check(testkit.Rows("2 b", "10 aa")) + tk.MustQuery("select * from t2 order by id").Check(testkit.Rows("1 10", "2 2", "3 10", "4 2", "5 ")) + // Test in transaction. + tk.MustExec("begin") + tk.MustExec("insert into t1 values (3, 'c')") + tk.MustExec("insert into t2 values (6, 3)") + tk.MustExec("insert into t1 values (2, 'bb'), (3, 'cc') on duplicate key update id =id*10") + tk.MustQuery("select * from t1 order by id").Check(testkit.Rows("10 aa", "20 b", "30 c")) + tk.MustQuery("select * from t2 order by id").Check(testkit.Rows("1 10", "2 20", "3 10", "4 20", "5 ", "6 30")) + tk.MustExec("commit") + tk.MustQuery("select * from t1 order by id").Check(testkit.Rows("10 aa", "20 b", "30 c")) + tk.MustQuery("select * from t2 order by id").Check(testkit.Rows("1 10", "2 20", "3 10", "4 20", "5 ", "6 30")) + tk.MustExec("delete from t1") + tk.MustQuery("select * from t2").Check(testkit.Rows("5 ")) + // Test for cascade update failed. + tk.MustExec("drop table t1, t2") + tk.MustExec("create table t1 (id int key)") + tk.MustExec("create table t2 (id int key, foreign key (id) references t1 (id) on update cascade)") + tk.MustExec("create table t3 (id int key, foreign key (id) references t2(id))") + tk.MustExec("begin") + tk.MustExec("insert into t1 values (1)") + tk.MustExec("insert into t2 values (1)") + tk.MustExec("insert into t3 values (1)") + tk.MustGetDBError("insert into t1 values (1) on duplicate key update id = 2", plannercore.ErrRowIsReferenced2) + require.Equal(t, 0, len(tk.Session().GetSessionVars().TxnCtx.Savepoints)) + tk.MustExec("commit") + tk.MustQuery("select * from t1").Check(testkit.Rows("1")) + tk.MustQuery("select * from t2").Check(testkit.Rows("1")) + tk.MustQuery("select * from t3").Check(testkit.Rows("1")) +} diff --git a/executor/fktest/main_test.go b/executor/fktest/main_test.go index ebdcfdd1c9a1c..00c470717f529 100644 --- a/executor/fktest/main_test.go +++ b/executor/fktest/main_test.go @@ -35,6 +35,7 @@ func TestMain(m *testing.M) { opts := []goleak.Option{ goleak.IgnoreTopFunction("github.com/golang/glog.(*loggingT).flushDaemon"), + goleak.IgnoreTopFunction("github.com/lestrrat-go/httprc.runFetchWorker"), goleak.IgnoreTopFunction("go.etcd.io/etcd/client/pkg/v3/logutil.(*MergeLogger).outputLoop"), goleak.IgnoreTopFunction("gopkg.in/natefinch/lumberjack%2ev2.(*Logger).millRun"), goleak.IgnoreTopFunction("github.com/tikv/client-go/v2/txnkv/transaction.keepAlive"), diff --git a/executor/foreign_key.go b/executor/foreign_key.go index 608ebe1e64005..62dbb400537e2 100644 --- a/executor/foreign_key.go +++ b/executor/foreign_key.go @@ -18,14 +18,18 @@ import ( "context" "sync/atomic" + "github.com/pingcap/errors" "github.com/pingcap/tidb/kv" + "github.com/pingcap/tidb/parser/ast" "github.com/pingcap/tidb/parser/model" + "github.com/pingcap/tidb/planner" plannercore "github.com/pingcap/tidb/planner/core" "github.com/pingcap/tidb/sessionctx" "github.com/pingcap/tidb/sessionctx/stmtctx" "github.com/pingcap/tidb/table" "github.com/pingcap/tidb/tablecodec" "github.com/pingcap/tidb/types" + driver "github.com/pingcap/tidb/types/parser_driver" "github.com/pingcap/tidb/util/codec" "github.com/pingcap/tidb/util/set" "github.com/tikv/client-go/v2/txnkv/txnsnapshot" @@ -34,6 +38,8 @@ import ( // WithForeignKeyTrigger indicates the executor has foreign key check or cascade. type WithForeignKeyTrigger interface { GetFKChecks() []*FKCheckExec + GetFKCascades() []*FKCascadeExec + HasFKCascades() bool } // FKCheckExec uses to check foreign key constraint. @@ -49,18 +55,49 @@ type FKCheckExec struct { toBeLockedKeys []kv.Key checkRowsCache map[string]bool + stats *FKCheckRuntimeStats +} + +// FKCheckRuntimeStats contains the FKCheckExec runtime stats. +type FKCheckRuntimeStats struct { + Keys int +} + +// FKCascadeExec uses to execute foreign key cascade behaviour. +type FKCascadeExec struct { + *fkValueHelper + b *executorBuilder + tp plannercore.FKCascadeType + referredFK *model.ReferredFKInfo + childTable *model.TableInfo + fk *model.FKInfo + fkCols []*model.ColumnInfo + fkIdx *model.IndexInfo + // On delete statement, fkValues stores the delete foreign key values. + // On update statement and the foreign key cascade is `SET NULL`, fkValues stores the old foreign key values. + fkValues [][]types.Datum + // new-value-key => UpdatedValuesCouple + fkUpdatedValuesMap map[string]*UpdatedValuesCouple +} + +// UpdatedValuesCouple contains the updated new row the old rows, exporting for test. +type UpdatedValuesCouple struct { + NewValues []types.Datum + OldValuesList [][]types.Datum } func buildTblID2FKCheckExecs(sctx sessionctx.Context, tblID2Table map[int64]table.Table, tblID2FKChecks map[int64][]*plannercore.FKCheck) (map[int64][]*FKCheckExec, error) { - var err error - fkChecks := make(map[int64][]*FKCheckExec) + fkChecksMap := make(map[int64][]*FKCheckExec) for tid, tbl := range tblID2Table { - fkChecks[tid], err = buildFKCheckExecs(sctx, tbl, tblID2FKChecks[tid]) + fkChecks, err := buildFKCheckExecs(sctx, tbl, tblID2FKChecks[tid]) if err != nil { return nil, err } + if len(fkChecks) > 0 { + fkChecksMap[tid] = fkChecks + } } - return fkChecks, nil + return fkChecksMap, nil } func buildFKCheckExecs(sctx sessionctx.Context, tbl table.Table, fkChecks []*plannercore.FKCheck) ([]*FKCheckExec, error) { @@ -498,8 +535,279 @@ func (fkc FKCheckExec) checkRows(ctx context.Context, sc *stmtctx.StatementConte rows[i].ignored = true sc.AppendWarning(fkc.FailedErr) fkc.checkRowsCache[string(k)] = true + } else { + fkc.checkRowsCache[string(k)] = false + } + if fkc.stats != nil { + fkc.stats.Keys++ + } + } + return nil +} + +func (b *executorBuilder) buildTblID2FKCascadeExecs(tblID2Table map[int64]table.Table, tblID2FKCascades map[int64][]*plannercore.FKCascade) (map[int64][]*FKCascadeExec, error) { + fkCascadesMap := make(map[int64][]*FKCascadeExec) + for tid, tbl := range tblID2Table { + fkCascades, err := b.buildFKCascadeExecs(tbl, tblID2FKCascades[tid]) + if err != nil { + return nil, err + } + if len(fkCascades) > 0 { + fkCascadesMap[tid] = fkCascades + } + } + return fkCascadesMap, nil +} + +func (b *executorBuilder) buildFKCascadeExecs(tbl table.Table, fkCascades []*plannercore.FKCascade) ([]*FKCascadeExec, error) { + fkCascadeExecs := make([]*FKCascadeExec, 0, len(fkCascades)) + for _, fkCascade := range fkCascades { + fkCascadeExec, err := b.buildFKCascadeExec(tbl, fkCascade) + if err != nil { + return nil, err + } + if fkCascadeExec != nil { + fkCascadeExecs = append(fkCascadeExecs, fkCascadeExec) + } + } + return fkCascadeExecs, nil +} + +func (b *executorBuilder) buildFKCascadeExec(tbl table.Table, fkCascade *plannercore.FKCascade) (*FKCascadeExec, error) { + colsOffsets, err := getFKColumnsOffsets(tbl.Meta(), fkCascade.ReferredFK.Cols) + if err != nil { + return nil, err + } + helper := &fkValueHelper{ + colsOffsets: colsOffsets, + fkValuesSet: set.NewStringSet(), + } + return &FKCascadeExec{ + b: b, + fkValueHelper: helper, + tp: fkCascade.Tp, + referredFK: fkCascade.ReferredFK, + childTable: fkCascade.ChildTable.Meta(), + fk: fkCascade.FK, + fkCols: fkCascade.FKCols, + fkIdx: fkCascade.FKIdx, + fkUpdatedValuesMap: make(map[string]*UpdatedValuesCouple), + }, nil +} + +func (fkc *FKCascadeExec) onDeleteRow(sc *stmtctx.StatementContext, row []types.Datum) error { + vals, err := fkc.fetchFKValuesWithCheck(sc, row) + if err != nil || len(vals) == 0 { + return err + } + fkc.fkValues = append(fkc.fkValues, vals) + return nil +} + +func (fkc *FKCascadeExec) onUpdateRow(sc *stmtctx.StatementContext, oldRow, newRow []types.Datum) error { + oldVals, err := fkc.fetchFKValuesWithCheck(sc, oldRow) + if err != nil || len(oldVals) == 0 { + return err + } + if model.ReferOptionType(fkc.fk.OnUpdate) == model.ReferOptionSetNull { + fkc.fkValues = append(fkc.fkValues, oldVals) + return nil + } + newVals, err := fkc.fetchFKValues(newRow) + if err != nil { + return err + } + newValsKey, err := codec.EncodeKey(sc, nil, newVals...) + if err != nil { + return err + } + couple := fkc.fkUpdatedValuesMap[string(newValsKey)] + if couple == nil { + couple = &UpdatedValuesCouple{ + NewValues: newVals, + } + } + couple.OldValuesList = append(couple.OldValuesList, oldVals) + fkc.fkUpdatedValuesMap[string(newValsKey)] = couple + return nil +} + +func (fkc *FKCascadeExec) buildExecutor(ctx context.Context) (Executor, error) { + p, err := fkc.buildFKCascadePlan(ctx) + if err != nil || p == nil { + return nil, err + } + e := fkc.b.build(p) + return e, fkc.b.err +} + +// maxHandleFKValueInOneCascade uses to limit the max handle fk value in one cascade executor, +// this is to avoid performance issue, see: https://github.com/pingcap/tidb/issues/38631 +var maxHandleFKValueInOneCascade = 1024 + +func (fkc *FKCascadeExec) buildFKCascadePlan(ctx context.Context) (plannercore.Plan, error) { + if len(fkc.fkValues) == 0 && len(fkc.fkUpdatedValuesMap) == 0 { + return nil, nil + } + var indexName model.CIStr + if fkc.fkIdx != nil { + indexName = fkc.fkIdx.Name + } + var stmtNode ast.StmtNode + switch fkc.tp { + case plannercore.FKCascadeOnDelete: + fkValues := fkc.fetchOnDeleteOrUpdateFKValues() + switch model.ReferOptionType(fkc.fk.OnDelete) { + case model.ReferOptionCascade: + stmtNode = GenCascadeDeleteAST(fkc.referredFK.ChildSchema, fkc.childTable.Name, indexName, fkc.fkCols, fkValues) + case model.ReferOptionSetNull: + stmtNode = GenCascadeSetNullAST(fkc.referredFK.ChildSchema, fkc.childTable.Name, indexName, fkc.fkCols, fkValues) + } + case plannercore.FKCascadeOnUpdate: + switch model.ReferOptionType(fkc.fk.OnUpdate) { + case model.ReferOptionCascade: + couple := fkc.fetchUpdatedValuesCouple() + if couple != nil && len(couple.NewValues) != 0 { + stmtNode = GenCascadeUpdateAST(fkc.referredFK.ChildSchema, fkc.childTable.Name, indexName, fkc.fkCols, couple) + } + case model.ReferOptionSetNull: + fkValues := fkc.fetchOnDeleteOrUpdateFKValues() + stmtNode = GenCascadeSetNullAST(fkc.referredFK.ChildSchema, fkc.childTable.Name, indexName, fkc.fkCols, fkValues) + } + } + if stmtNode == nil { + return nil, errors.Errorf("generate foreign key cascade ast failed, %v", fkc.tp) + } + sctx := fkc.b.ctx + err := plannercore.Preprocess(ctx, sctx, stmtNode) + if err != nil { + return nil, err + } + finalPlan, _, err := planner.Optimize(ctx, sctx, stmtNode, fkc.b.is) + if err != nil { + return nil, err + } + return finalPlan, err +} + +func (fkc *FKCascadeExec) fetchOnDeleteOrUpdateFKValues() [][]types.Datum { + var fkValues [][]types.Datum + if len(fkc.fkValues) <= maxHandleFKValueInOneCascade { + fkValues = fkc.fkValues + fkc.fkValues = nil + } else { + fkValues = fkc.fkValues[:maxHandleFKValueInOneCascade] + fkc.fkValues = fkc.fkValues[maxHandleFKValueInOneCascade:] + } + return fkValues +} + +func (fkc *FKCascadeExec) fetchUpdatedValuesCouple() *UpdatedValuesCouple { + for k, couple := range fkc.fkUpdatedValuesMap { + if len(couple.OldValuesList) <= maxHandleFKValueInOneCascade { + delete(fkc.fkUpdatedValuesMap, k) + return couple } - fkc.checkRowsCache[string(k)] = false + result := &UpdatedValuesCouple{ + NewValues: couple.NewValues, + OldValuesList: couple.OldValuesList[:maxHandleFKValueInOneCascade], + } + couple.OldValuesList = couple.OldValuesList[maxHandleFKValueInOneCascade:] + return result } return nil } + +// GenCascadeDeleteAST uses to generate cascade delete ast, export for test. +func GenCascadeDeleteAST(schema, table, idx model.CIStr, cols []*model.ColumnInfo, fkValues [][]types.Datum) *ast.DeleteStmt { + deleteStmt := &ast.DeleteStmt{ + TableRefs: genTableRefsAST(schema, table, idx), + Where: genWhereConditionAst(cols, fkValues), + } + return deleteStmt +} + +// GenCascadeSetNullAST uses to generate foreign key `SET NULL` ast, export for test. +func GenCascadeSetNullAST(schema, table, idx model.CIStr, cols []*model.ColumnInfo, fkValues [][]types.Datum) *ast.UpdateStmt { + newValues := make([]types.Datum, len(cols)) + for i := range cols { + newValues[i] = types.NewDatum(nil) + } + couple := &UpdatedValuesCouple{ + NewValues: newValues, + OldValuesList: fkValues, + } + return GenCascadeUpdateAST(schema, table, idx, cols, couple) +} + +// GenCascadeUpdateAST uses to generate cascade update ast, export for test. +func GenCascadeUpdateAST(schema, table, idx model.CIStr, cols []*model.ColumnInfo, couple *UpdatedValuesCouple) *ast.UpdateStmt { + list := make([]*ast.Assignment, 0, len(cols)) + for i, col := range cols { + v := &driver.ValueExpr{Datum: couple.NewValues[i]} + v.Type = col.FieldType + assignment := &ast.Assignment{ + Column: &ast.ColumnName{Name: col.Name}, + Expr: v, + } + list = append(list, assignment) + } + updateStmt := &ast.UpdateStmt{ + TableRefs: genTableRefsAST(schema, table, idx), + Where: genWhereConditionAst(cols, couple.OldValuesList), + List: list, + } + return updateStmt +} + +func genTableRefsAST(schema, table, idx model.CIStr) *ast.TableRefsClause { + tn := &ast.TableName{Schema: schema, Name: table} + if idx.L != "" { + tn.IndexHints = []*ast.IndexHint{{ + IndexNames: []model.CIStr{idx}, + HintType: ast.HintUse, + HintScope: ast.HintForScan, + }} + } + join := &ast.Join{Left: &ast.TableSource{Source: tn}} + return &ast.TableRefsClause{TableRefs: join} +} + +func genWhereConditionAst(cols []*model.ColumnInfo, fkValues [][]types.Datum) ast.ExprNode { + if len(cols) > 1 { + return genWhereConditionAstForMultiColumn(cols, fkValues) + } + valueList := make([]ast.ExprNode, 0, len(fkValues)) + for _, fkVals := range fkValues { + v := &driver.ValueExpr{Datum: fkVals[0]} + v.Type = cols[0].FieldType + valueList = append(valueList, v) + } + return &ast.PatternInExpr{ + Expr: &ast.ColumnNameExpr{Name: &ast.ColumnName{Name: cols[0].Name}}, + List: valueList, + } +} + +func genWhereConditionAstForMultiColumn(cols []*model.ColumnInfo, fkValues [][]types.Datum) ast.ExprNode { + colValues := make([]ast.ExprNode, len(cols)) + for i := range cols { + col := &ast.ColumnNameExpr{Name: &ast.ColumnName{Name: cols[i].Name}} + colValues[i] = col + } + valueList := make([]ast.ExprNode, 0, len(fkValues)) + for _, fkVals := range fkValues { + values := make([]ast.ExprNode, len(fkVals)) + for i, v := range fkVals { + val := &driver.ValueExpr{Datum: v} + val.Type = cols[i].FieldType + values[i] = val + } + row := &ast.RowExpr{Values: values} + valueList = append(valueList, row) + } + return &ast.PatternInExpr{ + Expr: &ast.RowExpr{Values: colValues}, + List: valueList, + } +} diff --git a/executor/grant.go b/executor/grant.go index 219f8b663b77d..3bae8e4956075 100644 --- a/executor/grant.go +++ b/executor/grant.go @@ -51,11 +51,11 @@ var ( type GrantExec struct { baseExecutor - Privs []*ast.PrivElem - ObjectType ast.ObjectTypeType - Level *ast.GrantLevel - Users []*ast.UserSpec - TLSOptions []*ast.TLSOption + Privs []*ast.PrivElem + ObjectType ast.ObjectTypeType + Level *ast.GrantLevel + Users []*ast.UserSpec + AuthTokenOrTLSOptions []*ast.AuthTokenOrTLSOption is infoschema.InfoSchema WithGrant bool @@ -130,6 +130,7 @@ func (e *GrantExec) Next(ctx context.Context, req *chunk.Chunk) error { // Create internal session to start internal transaction. isCommit := false internalSession, err := e.getSysSession() + internalSession.GetSessionVars().User = e.ctx.GetSessionVars().User if err != nil { return err } @@ -185,7 +186,7 @@ func (e *GrantExec) Next(ctx context.Context, req *chunk.Chunk) error { // DB scope: mysql.DB // Table scope: mysql.Tables_priv // Column scope: mysql.Columns_priv - if e.TLSOptions != nil { + if e.AuthTokenOrTLSOptions != nil { err = checkAndInitGlobalPriv(internalSession, user.User.Username, user.User.Hostname) if err != nil { return err @@ -355,10 +356,10 @@ func initColumnPrivEntry(sctx sessionctx.Context, user string, host string, db s // grantGlobalPriv grants priv to user in global scope. func (e *GrantExec) grantGlobalPriv(sctx sessionctx.Context, user *ast.UserSpec) error { ctx := kv.WithInternalSourceType(context.Background(), kv.InternalTxnPrivilege) - if len(e.TLSOptions) == 0 { + if len(e.AuthTokenOrTLSOptions) == 0 { return nil } - priv, err := tlsOption2GlobalPriv(e.TLSOptions) + priv, err := tlsOption2GlobalPriv(e.AuthTokenOrTLSOptions) if err != nil { return errors.Trace(err) } @@ -366,13 +367,13 @@ func (e *GrantExec) grantGlobalPriv(sctx sessionctx.Context, user *ast.UserSpec) return err } -func tlsOption2GlobalPriv(tlsOptions []*ast.TLSOption) (priv []byte, err error) { - if len(tlsOptions) == 0 { +func tlsOption2GlobalPriv(authTokenOrTLSOptions []*ast.AuthTokenOrTLSOption) (priv []byte, err error) { + if len(authTokenOrTLSOptions) == 0 { priv = []byte("{}") return } - dupSet := make(map[int]struct{}) - for _, opt := range tlsOptions { + dupSet := make(map[ast.AuthTokenOrTLSOptionType]struct{}) + for _, opt := range authTokenOrTLSOptions { if _, dup := dupSet[opt.Type]; dup { var typeName string switch opt.Type { @@ -384,6 +385,7 @@ func tlsOption2GlobalPriv(tlsOptions []*ast.TLSOption) (priv []byte, err error) typeName = "SUBJECT" case ast.SAN: typeName = "SAN" + case ast.TokenIssuer: } err = errors.Errorf("Duplicate require %s clause", typeName) return @@ -391,8 +393,8 @@ func tlsOption2GlobalPriv(tlsOptions []*ast.TLSOption) (priv []byte, err error) dupSet[opt.Type] = struct{}{} } gp := privileges.GlobalPrivValue{SSLType: privileges.SslTypeNotSpecified} - for _, tlsOpt := range tlsOptions { - switch tlsOpt.Type { + for _, opt := range authTokenOrTLSOptions { + switch opt.Type { case ast.TlsNone: gp.SSLType = privileges.SslTypeNone case ast.Ssl: @@ -401,36 +403,37 @@ func tlsOption2GlobalPriv(tlsOptions []*ast.TLSOption) (priv []byte, err error) gp.SSLType = privileges.SslTypeX509 case ast.Cipher: gp.SSLType = privileges.SslTypeSpecified - if len(tlsOpt.Value) > 0 { - if _, ok := util.SupportCipher[tlsOpt.Value]; !ok { - err = errors.Errorf("Unsupported cipher suit: %s", tlsOpt.Value) + if len(opt.Value) > 0 { + if _, ok := util.SupportCipher[opt.Value]; !ok { + err = errors.Errorf("Unsupported cipher suit: %s", opt.Value) return } - gp.SSLCipher = tlsOpt.Value + gp.SSLCipher = opt.Value } case ast.Issuer: - err = util.CheckSupportX509NameOneline(tlsOpt.Value) + err = util.CheckSupportX509NameOneline(opt.Value) if err != nil { return } gp.SSLType = privileges.SslTypeSpecified - gp.X509Issuer = tlsOpt.Value + gp.X509Issuer = opt.Value case ast.Subject: - err = util.CheckSupportX509NameOneline(tlsOpt.Value) + err = util.CheckSupportX509NameOneline(opt.Value) if err != nil { return } gp.SSLType = privileges.SslTypeSpecified - gp.X509Subject = tlsOpt.Value + gp.X509Subject = opt.Value case ast.SAN: gp.SSLType = privileges.SslTypeSpecified - _, err = util.ParseAndCheckSAN(tlsOpt.Value) + _, err = util.ParseAndCheckSAN(opt.Value) if err != nil { return } - gp.SAN = tlsOpt.Value + gp.SAN = opt.Value + case ast.TokenIssuer: default: - err = errors.Errorf("Unknown ssl type: %#v", tlsOpt.Type) + err = errors.Errorf("Unknown ssl type: %#v", opt.Type) return } } diff --git a/executor/grant_test.go b/executor/grant_test.go index 1045631dbc732..4c9cb867f792f 100644 --- a/executor/grant_test.go +++ b/executor/grant_test.go @@ -588,3 +588,16 @@ func TestIssue34610(t *testing.T) { tk.MustExec("GRANT SELECT ON T1 to user_1@localhost;") tk.MustExec("GRANT SELECT ON t1 to user_1@localhost;") } + +func TestIssue38293(t *testing.T) { + store := testkit.CreateMockStore(t) + tk := testkit.NewTestKit(t, store) + tk.Session().GetSessionVars().User = &auth.UserIdentity{Username: "root", Hostname: "localhost"} + tk.MustExec("DROP USER IF EXISTS test") + tk.MustExec("CREATE USER test") + defer func() { + tk.MustExec("DROP USER test") + }() + tk.MustExec("GRANT SELECT ON `mysql`.`db` TO test") + tk.MustQuery("SELECT `Grantor` FROM `mysql`.`tables_priv` WHERE User = 'test'").Check(testkit.Rows("root@localhost")) +} diff --git a/executor/index_lookup_hash_join.go b/executor/index_lookup_hash_join.go index d7e20c33bf94c..c54b60749601d 100644 --- a/executor/index_lookup_hash_join.go +++ b/executor/index_lookup_hash_join.go @@ -96,6 +96,7 @@ type indexHashJoinInnerWorker struct { wg *sync.WaitGroup joinKeyBuf []byte outerRowStatus []outerRowStatusFlag + rowIter *chunk.Iterator4Slice } type indexHashJoinResult struct { @@ -417,7 +418,7 @@ func (e *IndexNestedLoopHashJoin) newInnerWorker(taskCh chan *indexHashJoinTask, innerCtx: e.innerCtx, outerCtx: e.outerCtx, ctx: e.ctx, - executorChk: chunk.NewChunkWithCapacity(e.innerCtx.rowTypes, e.maxChunkSize), + executorChk: e.ctx.GetSessionVars().GetNewChunkWithCapacity(e.innerCtx.rowTypes, e.maxChunkSize, e.maxChunkSize, e.AllocPool), indexRanges: copiedRanges, keyOff2IdxOff: e.keyOff2IdxOff, stats: innerStats, @@ -431,6 +432,7 @@ func (e *IndexNestedLoopHashJoin) newInnerWorker(taskCh chan *indexHashJoinTask, matchedOuterPtrs: make([]chunk.RowPtr, 0, e.maxChunkSize), joinKeyBuf: make([]byte, 1), outerRowStatus: make([]outerRowStatusFlag, 0, e.maxChunkSize), + rowIter: chunk.NewIterator4Slice([]chunk.Row{}).(*chunk.Iterator4Slice), } iw.memTracker.AttachTo(e.memTracker) if len(copiedRanges) != 0 { @@ -733,12 +735,11 @@ func (iw *indexHashJoinInnerWorker) joinMatchedInnerRow2Chunk(ctx context.Contex if len(matchedOuterRows) == 0 { return true, joinResult } - var ( - ok bool - iter = chunk.NewIterator4Slice(matchedOuterRows) - cursor = 0 - ) - for iter.Begin(); iter.Current() != iter.End(); { + var ok bool + cursor := 0 + iw.rowIter.Reset(matchedOuterRows) + iter := iw.rowIter + for iw.rowIter.Begin(); iter.Current() != iter.End(); { iw.outerRowStatus, err = iw.joiner.tryToMatchOuters(iter, innerRow, joinResult.chk, iw.outerRowStatus) if err != nil { joinResult.err = err @@ -821,7 +822,8 @@ func (iw *indexHashJoinInnerWorker) doJoinInOrder(ctx context.Context, task *ind for _, ptr := range innerRowPtrs { matchedInnerRows = append(matchedInnerRows, task.innerResult.GetRow(ptr)) } - iter := chunk.NewIterator4Slice(matchedInnerRows) + iw.rowIter.Reset(matchedInnerRows) + iter := iw.rowIter for iter.Begin(); iter.Current() != iter.End(); { matched, isNull, err := iw.joiner.tryToMatchInners(outerRow, iter, joinResult.chk) if err != nil { diff --git a/executor/index_lookup_join.go b/executor/index_lookup_join.go index cf2722275dbe5..05cc337d3d7ee 100644 --- a/executor/index_lookup_join.go +++ b/executor/index_lookup_join.go @@ -67,7 +67,7 @@ type IndexLookUpJoin struct { task *lookUpJoinTask joinResult *chunk.Chunk - innerIter chunk.Iterator + innerIter *chunk.Iterator4Slice joiner joiner isOuterJoin bool @@ -226,7 +226,7 @@ func (e *IndexLookUpJoin) newInnerWorker(taskCh chan *lookUpJoinTask) *innerWork outerCtx: e.outerCtx, taskCh: taskCh, ctx: e.ctx, - executorChk: chunk.NewChunkWithCapacity(e.innerCtx.rowTypes, e.maxChunkSize), + executorChk: e.ctx.GetSessionVars().GetNewChunkWithCapacity(e.innerCtx.rowTypes, e.maxChunkSize, e.maxChunkSize, e.AllocPool), indexRanges: copiedRanges, keyOff2IdxOff: e.keyOff2IdxOff, stats: innerStats, @@ -277,7 +277,10 @@ func (e *IndexLookUpJoin) Next(ctx context.Context, req *chunk.Chunk) error { startTime := time.Now() if e.innerIter == nil || e.innerIter.Current() == e.innerIter.End() { e.lookUpMatchedInners(task, task.cursor) - e.innerIter = chunk.NewIterator4Slice(task.matchedInners) + if e.innerIter == nil { + e.innerIter = chunk.NewIterator4Slice(task.matchedInners).(*chunk.Iterator4Slice) + } + e.innerIter.Reset(task.matchedInners) e.innerIter.Begin() } @@ -428,7 +431,7 @@ func (ow *outerWorker) buildTask(ctx context.Context) (*lookUpJoinTask, error) { } maxChunkSize := ow.ctx.GetSessionVars().MaxChunkSize for requiredRows > task.outerResult.Len() { - chk := chunk.NewChunkWithCapacity(ow.outerCtx.rowTypes, maxChunkSize) + chk := ow.ctx.GetSessionVars().GetNewChunkWithCapacity(ow.outerCtx.rowTypes, maxChunkSize, maxChunkSize, ow.executor.base().AllocPool) chk = chk.SetRequiredRows(requiredRows, maxChunkSize) err := Next(ctx, ow.executor, chk) if err != nil { @@ -459,7 +462,7 @@ func (ow *outerWorker) buildTask(ctx context.Context) (*lookUpJoinTask, error) { } task.encodedLookUpKeys = make([]*chunk.Chunk, task.outerResult.NumChunks()) for i := range task.encodedLookUpKeys { - task.encodedLookUpKeys[i] = chunk.NewChunkWithCapacity([]*types.FieldType{types.NewFieldType(mysql.TypeBlob)}, task.outerResult.GetChunk(i).NumRows()) + task.encodedLookUpKeys[i] = ow.ctx.GetSessionVars().GetNewChunkWithCapacity([]*types.FieldType{types.NewFieldType(mysql.TypeBlob)}, task.outerResult.GetChunk(i).NumRows(), task.outerResult.GetChunk(i).NumRows(), ow.executor.base().AllocPool) } return task, nil } @@ -711,7 +714,7 @@ func (iw *innerWorker) fetchInnerResults(ctx context.Context, task *lookUpJoinTa break } innerResult.Add(iw.executorChk) - iw.executorChk = newFirstChunk(innerExec) + iw.executorChk = tryNewCacheChunk(innerExec) } task.innerResult = innerResult return nil diff --git a/executor/index_lookup_join_test.go b/executor/index_lookup_join_test.go index ef8b582fb151f..2f251761b71c2 100644 --- a/executor/index_lookup_join_test.go +++ b/executor/index_lookup_join_test.go @@ -352,13 +352,16 @@ func TestIssue23722(t *testing.T) { tk.MustExec("insert into t values (20301,'Charlie',x'7a');") tk.MustQuery("select * from t;").Check(testkit.Rows("20301 Charlie z")) tk.MustQuery("select * from t where c in (select c from t where t.c >= 'a');").Check(testkit.Rows("20301 Charlie z")) + tk.MustQuery("select @@last_sql_use_alloc").Check(testkit.Rows("1")) // Test lookup content exceeds primary key prefix. tk.MustExec("drop table if exists t;") tk.MustExec("create table t (a int, b char(10), c varchar(255), primary key (c(5)) clustered);") tk.MustExec("insert into t values (20301,'Charlie','aaaaaaa');") + tk.MustQuery("select @@last_sql_use_alloc").Check(testkit.Rows("1")) tk.MustQuery("select * from t;").Check(testkit.Rows("20301 Charlie aaaaaaa")) tk.MustQuery("select * from t where c in (select c from t where t.c >= 'a');").Check(testkit.Rows("20301 Charlie aaaaaaa")) + tk.MustQuery("select @@last_sql_use_alloc").Check(testkit.Rows("1")) // Test the original case. tk.MustExec("drop table if exists t;") @@ -433,8 +436,8 @@ PARTITIONS 1`) "[│ └─HashAgg_20 8.00 cop[tikv] group by:test.t2.prefiller, ]\n" + "[│ └─Selection_24 10.00 cop[tikv] eq(test.t2.postfiller, 1)]\n" + "[│ └─TableFullScan_23 10000.00 cop[tikv] table:t2 keep order:false, stats:pseudo]\n" + - "[└─TableReader_14(Probe) 1.00 root partition:all data:TableRangeScan_13]\n" + - "[ └─TableRangeScan_13 1.00 cop[tikv] table:t1 range: decided by [eq(test.t1.id, test.t2.prefiller)], keep order:false, stats:pseudo")) + "[└─TableReader_14(Probe) 8.00 root partition:all data:TableRangeScan_13]\n" + + "[ └─TableRangeScan_13 8.00 cop[tikv] table:t1 range: decided by [eq(test.t1.id, test.t2.prefiller)], keep order:false, stats:pseudo")) tk.MustQuery("show warnings").Check(testkit.Rows()) // without fix it fails with: "runtime error: index out of range [0] with length 0" tk.MustQuery("select /* +INL_JOIN(t1,t2) */ t1.id, t1.pc from t1 where id in ( select prefiller from t2 where t2.postfiller = 1 )").Check(testkit.Rows()) @@ -452,7 +455,9 @@ func TestIssue27893(t *testing.T) { tk.MustExec("insert into t1 values('x')") tk.MustExec("insert into t2 values(1)") tk.MustQuery("select /*+ inl_join(t2) */ count(*) from t1 join t2 on t1.a = t2.a").Check(testkit.Rows("1")) + tk.MustQuery("select @@last_sql_use_alloc").Check(testkit.Rows("1")) tk.MustQuery("select /*+ inl_hash_join(t2) */ count(*) from t1 join t2 on t1.a = t2.a").Check(testkit.Rows("1")) + tk.MustQuery("select @@last_sql_use_alloc").Check(testkit.Rows("1")) } func TestPartitionTableIndexJoinAndIndexReader(t *testing.T) { diff --git a/executor/index_lookup_merge_join.go b/executor/index_lookup_merge_join.go index 369c18716dbc3..8bd379944c825 100644 --- a/executor/index_lookup_merge_join.go +++ b/executor/index_lookup_merge_join.go @@ -357,7 +357,7 @@ func (omw *outerMergeWorker) buildTask(ctx context.Context) (*lookUpMergeJoinTas requiredRows = omw.maxBatchSize } for requiredRows > 0 { - execChk := newFirstChunk(omw.executor) + execChk := tryNewCacheChunk(omw.executor) err := Next(ctx, omw.executor, execChk) if err != nil { return task, err @@ -706,7 +706,7 @@ func (imw *innerMergeWorker) dedupDatumLookUpKeys(lookUpContents []*indexJoinLoo // fetchNextInnerResult collects a chunk of inner results from inner child executor. func (imw *innerMergeWorker) fetchNextInnerResult(ctx context.Context, task *lookUpMergeJoinTask) (beginRow chunk.Row, err error) { - task.innerResult = chunk.NewChunkWithCapacity(retTypes(imw.innerExec), imw.ctx.GetSessionVars().MaxChunkSize) + task.innerResult = imw.ctx.GetSessionVars().GetNewChunkWithCapacity(retTypes(imw.innerExec), imw.ctx.GetSessionVars().MaxChunkSize, imw.ctx.GetSessionVars().MaxChunkSize, imw.innerExec.base().AllocPool) err = Next(ctx, imw.innerExec, task.innerResult) task.innerIter = chunk.NewIterator4Chunk(task.innerResult) beginRow = task.innerIter.Begin() diff --git a/executor/index_merge_reader.go b/executor/index_merge_reader.go index bc29199a2c2b7..0e7eb394710fd 100644 --- a/executor/index_merge_reader.go +++ b/executor/index_merge_reader.go @@ -508,7 +508,7 @@ func (w *partialTableWorker) syncErr(resultCh chan<- *lookupTableTask, err error func (w *partialTableWorker) fetchHandles(ctx context.Context, exitCh <-chan struct{}, fetchCh chan<- *lookupTableTask, resultCh chan<- *lookupTableTask, finished <-chan struct{}, handleCols plannercore.HandleCols) (count int64, err error) { - chk := chunk.NewChunkWithCapacity(retTypes(w.tableReader), w.maxChunkSize) + chk := w.sc.GetSessionVars().GetNewChunkWithCapacity(retTypes(w.tableReader), w.maxChunkSize, w.maxChunkSize, w.tableReader.base().AllocPool) var basic *execdetails.BasicRuntimeStats if be := w.tableReader.base(); be != nil && be.runtimeStats != nil { basic = be.runtimeStats @@ -961,7 +961,7 @@ func (w *indexMergeTableScanWorker) executeTask(ctx context.Context, task *looku handleCnt := len(task.handles) task.rows = make([]chunk.Row, 0, handleCnt) for { - chk := newFirstChunk(tableReader) + chk := tryNewCacheChunk(tableReader) err = Next(ctx, tableReader, chk) if err != nil { logutil.Logger(ctx).Error("table reader fetch next chunk failed", zap.Error(err)) diff --git a/executor/index_merge_reader_test.go b/executor/index_merge_reader_test.go index 2e33eef27d12d..58dfa71814f28 100644 --- a/executor/index_merge_reader_test.go +++ b/executor/index_merge_reader_test.go @@ -446,17 +446,15 @@ func TestIndexMergeReaderMemTracker(t *testing.T) { insertStr += fmt.Sprintf(" ,(%d, %d, %d)", i, i, i) } insertStr += ";" - memTracker := tk.Session().GetSessionVars().StmtCtx.MemTracker + memTracker := tk.Session().GetSessionVars().MemTracker tk.MustExec(insertStr) - oriMaxUsage := memTracker.MaxConsumed() - // We select all rows in t1, so the mem usage is more clear. tk.MustQuery("select /*+ use_index_merge(t1) */ * from t1 where c1 > 1 or c2 > 1") - newMaxUsage := memTracker.MaxConsumed() - require.Greater(t, newMaxUsage, oriMaxUsage) + memUsage := memTracker.MaxConsumed() + require.Greater(t, memUsage, int64(0)) res := tk.MustQuery("explain analyze select /*+ use_index_merge(t1) */ * from t1 where c1 > 1 or c2 > 1") require.Len(t, res.Rows(), 4) @@ -498,7 +496,7 @@ func TestPessimisticLockOnPartitionForIndexMerge(t *testing.T) { tk.MustExec("use test") tk.MustExec("drop table if exists t1, t2") - tk.MustExec(`create table t1 (c_datetime datetime, c1 int, c2 int, primary key (c_datetime), key(c1), key(c2)) + tk.MustExec(`create table t1 (c_datetime datetime, c1 int, c2 int, primary key (c_datetime) NONCLUSTERED, key(c1), key(c2)) partition by range (to_days(c_datetime)) ( partition p0 values less than (to_days('2020-02-01')), partition p1 values less than (to_days('2020-04-01')), diff --git a/executor/infoschema_cluster_table_test.go b/executor/infoschema_cluster_table_test.go index 38fe23036e313..012cd98178443 100644 --- a/executor/infoschema_cluster_table_test.go +++ b/executor/infoschema_cluster_table_test.go @@ -290,7 +290,7 @@ func TestTableStorageStats(t *testing.T) { "test 2", )) rows := tk.MustQuery("select TABLE_NAME from information_schema.TABLE_STORAGE_STATS where TABLE_SCHEMA = 'mysql';").Rows() - result := 37 + result := 40 require.Len(t, rows, result) // More tests about the privileges. diff --git a/executor/infoschema_reader.go b/executor/infoschema_reader.go index 66ddbc2271afc..b3b881c1f65fa 100644 --- a/executor/infoschema_reader.go +++ b/executor/infoschema_reader.go @@ -62,9 +62,11 @@ import ( "github.com/pingcap/tidb/util/keydecoder" "github.com/pingcap/tidb/util/logutil" "github.com/pingcap/tidb/util/mathutil" + "github.com/pingcap/tidb/util/memory" "github.com/pingcap/tidb/util/pdapi" "github.com/pingcap/tidb/util/resourcegrouptag" "github.com/pingcap/tidb/util/sem" + "github.com/pingcap/tidb/util/servermemorylimit" "github.com/pingcap/tidb/util/set" "github.com/pingcap/tidb/util/sqlexec" "github.com/pingcap/tidb/util/stmtsummary" @@ -148,7 +150,7 @@ func (e *memtableRetriever) retrieve(ctx context.Context, sctx sessionctx.Contex case infoschema.TableConstraints: e.setDataFromTableConstraints(sctx, dbs) case infoschema.TableSessionVar: - e.rows, err = infoschema.GetDataFromSessionVariables(sctx) + e.rows, err = infoschema.GetDataFromSessionVariables(ctx, sctx) case infoschema.TableTiDBServersInfo: err = e.setDataForServersInfo(sctx) case infoschema.TableTiFlashReplica: @@ -172,6 +174,16 @@ func (e *memtableRetriever) retrieve(ctx context.Context, sctx sessionctx.Contex err = e.setDataForClusterTrxSummary(sctx) case infoschema.TableVariablesInfo: err = e.setDataForVariablesInfo(sctx) + case infoschema.TableUserAttributes: + err = e.setDataForUserAttributes(ctx, sctx) + case infoschema.TableMemoryUsage: + err = e.setDataForMemoryUsage(sctx) + case infoschema.ClusterTableMemoryUsage: + err = e.setDataForClusterMemoryUsage(sctx) + case infoschema.TableMemoryUsageOpsHistory: + err = e.setDataForMemoryUsageOpsHistory(sctx) + case infoschema.ClusterTableMemoryUsageOpsHistory: + err = e.setDataForClusterMemoryUsageOpsHistory(sctx) } if err != nil { return nil, err @@ -402,7 +414,7 @@ func (e *memtableRetriever) setDataForVariablesInfo(ctx sessionctx.Context) erro if infoschema.SysVarHiddenForSem(ctx, sv.Name) { continue } - currentVal, err := ctx.GetSessionVars().GetSessionOrGlobalSystemVar(sv.Name) + currentVal, err := ctx.GetSessionVars().GetSessionOrGlobalSystemVar(context.Background(), sv.Name) if err != nil { currentVal = "" } @@ -435,6 +447,35 @@ func (e *memtableRetriever) setDataForVariablesInfo(ctx sessionctx.Context) erro return nil } +func (e *memtableRetriever) setDataForUserAttributes(ctx context.Context, sctx sessionctx.Context) error { + exec, _ := sctx.(sqlexec.RestrictedSQLExecutor) + chunkRows, _, err := exec.ExecRestrictedSQL(ctx, nil, `SELECT user, host, JSON_UNQUOTE(JSON_EXTRACT(user_attributes, '$.metadata')) FROM mysql.user`) + if err != nil { + return err + } + if len(chunkRows) == 0 { + return nil + } + rows := make([][]types.Datum, 0, len(chunkRows)) + for _, chunkRow := range chunkRows { + if chunkRow.Len() != 3 { + continue + } + user := chunkRow.GetString(0) + host := chunkRow.GetString(1) + // Compatible with results in MySQL + var attribute any + if attribute = chunkRow.GetString(2); attribute == "" { + attribute = nil + } + row := types.MakeDatums(user, host, attribute) + rows = append(rows, row) + } + + e.rows = rows + return nil +} + func (e *memtableRetriever) setDataFromSchemata(ctx sessionctx.Context, schemas []*model.DBInfo) { checker := privilege.GetPrivilegeManager(ctx) rows := make([][]types.Datum, 0, len(schemas)) @@ -794,7 +835,7 @@ func (e *hugeMemTableRetriever) dataForColumnsInTable(ctx context.Context, sctx if err := runWithSystemSession(internalCtx, sctx, func(s sessionctx.Context) error { planBuilder, _ := plannercore.NewPlanBuilder().Init(s, is, &hint.BlockHintProcessor{}) var err error - viewLogicalPlan, err = planBuilder.BuildDataSourceFromView(ctx, schema.Name, tbl) + viewLogicalPlan, err = planBuilder.BuildDataSourceFromView(ctx, schema.Name, tbl, nil, nil) return errors.Trace(err) }); err != nil { sctx.GetSessionVars().StmtCtx.AppendWarning(err) @@ -1662,8 +1703,10 @@ func keyColumnUsageInTable(schema *model.DBInfo, table *model.TableInfo) [][]typ return rows } -func (e *memtableRetriever) setDataForTiKVRegionStatus(ctx sessionctx.Context) (err error) { - tikvStore, ok := ctx.GetStore().(helper.Storage) +func (e *memtableRetriever) setDataForTiKVRegionStatus(sctx sessionctx.Context) (err error) { + checker := privilege.GetPrivilegeManager(sctx) + var extractorTableIDs []int64 + tikvStore, ok := sctx.GetStore().(helper.Storage) if !ok { return errors.New("Information about TiKV region status can be gotten only when the storage is TiKV") } @@ -1673,13 +1716,17 @@ func (e *memtableRetriever) setDataForTiKVRegionStatus(ctx sessionctx.Context) ( } requestByTableRange := false allRegionsInfo := helper.NewRegionsInfo() - is := ctx.GetDomainInfoSchema().(infoschema.InfoSchema) + is := sctx.GetDomainInfoSchema().(infoschema.InfoSchema) if e.extractor != nil { extractor, ok := e.extractor.(*plannercore.TiKVRegionStatusExtractor) if ok && len(extractor.GetTablesID()) > 0 { - for _, tableID := range extractor.GetTablesID() { + extractorTableIDs = extractor.GetTablesID() + for _, tableID := range extractorTableIDs { regionsInfo, err := e.getRegionsInfoForTable(tikvHelper, is, tableID) if err != nil { + if errors.ErrorEqual(err, infoschema.ErrTableExists) { + continue + } return err } allRegionsInfo = allRegionsInfo.Merge(regionsInfo) @@ -1695,12 +1742,20 @@ func (e *memtableRetriever) setDataForTiKVRegionStatus(ctx sessionctx.Context) ( } tableInfos := tikvHelper.GetRegionsTableInfo(allRegionsInfo, is.AllSchemas()) for i := range allRegionsInfo.Regions { - tableList := tableInfos[allRegionsInfo.Regions[i].ID] - if len(tableList) == 0 { + regionTableList := tableInfos[allRegionsInfo.Regions[i].ID] + if len(regionTableList) == 0 { e.setNewTiKVRegionStatusCol(&allRegionsInfo.Regions[i], nil) } - for j := range tableList { - e.setNewTiKVRegionStatusCol(&allRegionsInfo.Regions[i], &tableList[j]) + for j, regionTable := range regionTableList { + if checker != nil && !checker.RequestVerification(sctx.GetSessionVars().ActiveRoles, regionTable.DB.Name.L, regionTable.Table.Name.L, "", mysql.AllPrivMask) { + continue + } + if len(extractorTableIDs) == 0 { + e.setNewTiKVRegionStatusCol(&allRegionsInfo.Regions[i], ®ionTable) + } + if slices.Contains(extractorTableIDs, regionTableList[j].Table.ID) { + e.setNewTiKVRegionStatusCol(&allRegionsInfo.Regions[i], ®ionTable) + } } } return nil @@ -2208,10 +2263,7 @@ func (e *memtableRetriever) setDataFromSequences(ctx sessionctx.Context, schemas // dataForTableTiFlashReplica constructs data for table tiflash replica info. func (e *memtableRetriever) dataForTableTiFlashReplica(ctx sessionctx.Context, schemas []*model.DBInfo) { var rows [][]types.Datum - progressMap, err := infosync.GetTiFlashTableSyncProgress(context.Background()) - if err != nil { - ctx.GetSessionVars().StmtCtx.AppendWarning(err) - } + var tiFlashStores map[int64]helper.StoreStat for _, schema := range schemas { for _, tbl := range schema.Tables { if tbl.TiFlashReplica == nil { @@ -2220,14 +2272,22 @@ func (e *memtableRetriever) dataForTableTiFlashReplica(ctx sessionctx.Context, s var progress float64 if pi := tbl.GetPartitionInfo(); pi != nil && len(pi.Definitions) > 0 { for _, p := range pi.Definitions { - progress += progressMap[p.ID] + progressOfPartition, err := infosync.MustGetTiFlashProgress(p.ID, tbl.TiFlashReplica.Count, &tiFlashStores) + if err != nil { + logutil.BgLogger().Error("dataForTableTiFlashReplica error", zap.Int64("tableID", tbl.ID), zap.Int64("partitionID", p.ID), zap.Error(err)) + } + progress += progressOfPartition } progress = progress / float64(len(pi.Definitions)) - progressString := types.TruncateFloatToString(progress, 2) - progress, _ = strconv.ParseFloat(progressString, 64) } else { - progress = progressMap[tbl.ID] + var err error + progress, err = infosync.MustGetTiFlashProgress(tbl.ID, tbl.TiFlashReplica.Count, &tiFlashStores) + if err != nil { + logutil.BgLogger().Error("dataForTableTiFlashReplica error", zap.Int64("tableID", tbl.ID), zap.Error(err)) + } } + progressString := types.TruncateFloatToString(progress, 2) + progress, _ = strconv.ParseFloat(progressString, 64) record := types.MakeDatums( schema.Name.O, // TABLE_SCHEMA tbl.Name.O, // TABLE_NAME @@ -2353,6 +2413,66 @@ func (e *memtableRetriever) setDataForClusterTrxSummary(ctx sessionctx.Context) return nil } +func (e *memtableRetriever) setDataForMemoryUsage(ctx sessionctx.Context) error { + r := memory.ReadMemStats() + currentOps, sessionKillLastDatum := types.NewDatum(nil), types.NewDatum(nil) + if memory.TriggerMemoryLimitGC.Load() || servermemorylimit.IsKilling.Load() { + currentOps.SetString("shrink", mysql.DefaultCollationName) + } + sessionKillLast := servermemorylimit.SessionKillLast.Load() + if !sessionKillLast.IsZero() { + sessionKillLastDatum.SetMysqlTime(types.NewTime(types.FromGoTime(sessionKillLast), mysql.TypeDatetime, 0)) + } + gcLast := types.NewTime(types.FromGoTime(memory.MemoryLimitGCLast.Load()), mysql.TypeDatetime, 0) + + row := []types.Datum{ + types.NewIntDatum(int64(memory.GetMemTotalIgnoreErr())), // MEMORY_TOTAL + types.NewIntDatum(int64(memory.ServerMemoryLimit.Load())), // MEMORY_LIMIT + types.NewIntDatum(int64(r.HeapInuse)), // MEMORY_CURRENT + types.NewIntDatum(int64(servermemorylimit.MemoryMaxUsed.Load())), // MEMORY_MAX_USED + currentOps, // CURRENT_OPS + sessionKillLastDatum, // SESSION_KILL_LAST + types.NewIntDatum(servermemorylimit.SessionKillTotal.Load()), // SESSION_KILL_TOTAL + types.NewTimeDatum(gcLast), // GC_LAST + types.NewIntDatum(memory.MemoryLimitGCTotal.Load()), // GC_TOTAL + types.NewDatum(GlobalDiskUsageTracker.BytesConsumed()), // DISK_USAGE + types.NewDatum(memory.QueryForceDisk.Load()), // QUERY_FORCE_DISK + } + e.rows = append(e.rows, row) + return nil +} + +func (e *memtableRetriever) setDataForClusterMemoryUsage(ctx sessionctx.Context) error { + err := e.setDataForMemoryUsage(ctx) + if err != nil { + return err + } + rows, err := infoschema.AppendHostInfoToRows(ctx, e.rows) + if err != nil { + return err + } + e.rows = rows + return nil +} + +func (e *memtableRetriever) setDataForMemoryUsageOpsHistory(ctx sessionctx.Context) error { + e.rows = servermemorylimit.GlobalMemoryOpsHistoryManager.GetRows() + return nil +} + +func (e *memtableRetriever) setDataForClusterMemoryUsageOpsHistory(ctx sessionctx.Context) error { + err := e.setDataForMemoryUsageOpsHistory(ctx) + if err != nil { + return err + } + rows, err := infoschema.AppendHostInfoToRows(ctx, e.rows) + if err != nil { + return err + } + e.rows = rows + return nil +} + type stmtSummaryTableRetriever struct { dummyCloser table *model.TableInfo diff --git a/executor/infoschema_reader_test.go b/executor/infoschema_reader_test.go index e8b776731bf2a..c55c51031fa24 100644 --- a/executor/infoschema_reader_test.go +++ b/executor/infoschema_reader_test.go @@ -24,11 +24,9 @@ import ( "github.com/jarcoal/httpmock" "github.com/pingcap/failpoint" - "github.com/pingcap/tidb/domain" "github.com/pingcap/tidb/domain/infosync" "github.com/pingcap/tidb/executor" "github.com/pingcap/tidb/parser/auth" - "github.com/pingcap/tidb/parser/model" "github.com/pingcap/tidb/parser/mysql" "github.com/pingcap/tidb/sessionctx/variable" "github.com/pingcap/tidb/statistics/handle" @@ -619,25 +617,6 @@ func TestForServersInfo(t *testing.T) { require.Equal(t, stringutil.BuildStringFromLabels(info.Labels), rows[0][8]) } -func TestForTableTiFlashReplica(t *testing.T) { - require.NoError(t, failpoint.Enable("github.com/pingcap/tidb/infoschema/mockTiFlashStoreCount", `return(true)`)) - defer func() { - require.NoError(t, failpoint.Disable("github.com/pingcap/tidb/infoschema/mockTiFlashStoreCount")) - }() - - store := testkit.CreateMockStore(t) - tk := testkit.NewTestKit(t, store) - tk.MustExec("use test") - tk.MustExec("drop table if exists t") - tk.MustExec("create table t (a int, b int, index idx(a))") - tk.MustExec("alter table t set tiflash replica 2 location labels 'a','b';") - tk.MustQuery("select TABLE_SCHEMA,TABLE_NAME,REPLICA_COUNT,LOCATION_LABELS,AVAILABLE,PROGRESS from information_schema.tiflash_replica").Check(testkit.Rows("test t 2 a,b 0 0")) - tbl, err := domain.GetDomain(tk.Session()).InfoSchema().TableByName(model.NewCIStr("test"), model.NewCIStr("t")) - require.NoError(t, err) - tbl.Meta().TiFlashReplica.Available = true - tk.MustQuery("select TABLE_SCHEMA,TABLE_NAME,REPLICA_COUNT,LOCATION_LABELS,AVAILABLE,PROGRESS from information_schema.tiflash_replica").Check(testkit.Rows("test t 2 a,b 1 0")) -} - func TestSequences(t *testing.T) { store := testkit.CreateMockStore(t) tk := testkit.NewTestKit(t, store) @@ -693,9 +672,9 @@ func TestTiFlashSystemTableWithTiFlashV620(t *testing.T) { tk.MustQuery("show warnings").Check(testkit.Rows()) tk.MustQuery("select * from information_schema.TIFLASH_TABLES;").Check(testkit.Rows( - "db_1 t_10 mysql tables_priv 10 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127.0.0.1:3933", - "db_1 t_8 mysql db 8 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127.0.0.1:3933", - "db_2 t_70 test segment 70 0 1 102000 169873868 0 0 0 0 0 102000 169873868 0 0 0 1 102000 169873868 43867622 102000 169873868 0 13 13 7846.153846153846 13067220.615384616 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127.0.0.1:3933", + "db_1 t_10 mysql tables_priv 10 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127.0.0.1:3933", + "db_1 t_8 mysql db 8 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127.0.0.1:3933", + "db_2 t_70 test segment 70 0 1 102000 169873868 0 0 0 0 0 102000 169873868 0 0 0 1 102000 169873868 43867622 102000 169873868 0 13 13 7846.153846153846 13067220.615384616 0 0 0 0 0 0 0 0 0 0 127.0.0.1:3933", )) tk.MustQuery("show warnings").Check(testkit.Rows()) } @@ -744,6 +723,50 @@ func TestTiFlashSystemTableWithTiFlashV630(t *testing.T) { tk.MustQuery("show warnings").Check(testkit.Rows()) } +func TestTiFlashSystemTableWithTiFlashV640(t *testing.T) { + httpmock.Activate() + defer httpmock.DeactivateAndReset() + + instances := []string{ + "tiflash,127.0.0.1:3933,127.0.0.1:7777,,", + "tikv,127.0.0.1:11080,127.0.0.1:10080,,", + } + fpName := "github.com/pingcap/tidb/infoschema/mockStoreServerInfo" + fpExpr := `return("` + strings.Join(instances, ";") + `")` + require.NoError(t, failpoint.Enable(fpName, fpExpr)) + defer func() { require.NoError(t, failpoint.Disable(fpName)) }() + + httpmock.RegisterResponder("GET", "http://127.0.0.1:7777/config", + httpmock.NewStringResponder(200, ` +{ + "raftstore-proxy": {}, + "engine-store":{ + "http_port":8123, + "tcp_port":9000 + } +} + `)) + + data, err := os.ReadFile("testdata/tiflash_v640_dt_tables.json") + require.NoError(t, err) + httpmock.RegisterResponder("GET", "http://127.0.0.1:8123?default_format=JSONCompact&query=SELECT+%2A+FROM+system.dt_tables+LIMIT+0%2C+1024", httpmock.NewBytesResponder(200, data)) + + store := testkit.CreateMockStore(t) + tk := testkit.NewTestKit(t, store) + tk.MustQuery("select * from information_schema.TIFLASH_TABLES;").Check(testkit.Rows( + "db_70 t_135 tpcc customer 135 0 4 3528714 2464079200 0 0.002329177144988231 1 0 929227 0.16169850346757514 0 8128 882178.5 616019800 4 8219 5747810 2054.75 1436952.5 0 4 3520495 2458331390 1601563417 880123.75 614582847.5 24 8 6 342.4583333333333 239492.08333333334 482 120.5 7303.9315352697095 5100272.593360996 0 0 0 0 0 0 0 0 0 0 127.0.0.1:3933", + "db_70 t_137 tpcc district 137 0 1 7993 1346259 0 0.8748905292130614 1 0.8055198055198055 252168 0.21407121407121407 0 147272 7993 1346259 1 6993 1178050 6993 1178050 0 1 1000 168209 91344 1000 168209 6 6 6 1165.5 196341.66666666666 10 10 100 16820.9 0 0 0 0 0 0 0 0 0 0 127.0.0.1:3933", + "db_70 t_139 tpcc history 139 0 19 19379697 1629276978 0 0.0006053758219233252 0.5789473684210527 0.4626662120695534 253640 0.25434708489601093 0 293544 1019984.052631579 85751419.89473684 11 11732 997220 1066.5454545454545 90656.36363636363 0 19 19367965 1628279758 625147717 1019366.5789473684 85698934.63157895 15 4 1.3636363636363635 782.1333333333333 66481.33333333333 2378 125.15789473684211 8144.644659377628 684726.559293524 0 0 0 0 0 0 0 0 0 0 127.0.0.1:3933", + "db_70 t_141 tpcc item 141 0 1 100000 10799081 0 0 0 0 0 100000 10799081 0 0 0 1 100000 10799081 7357726 100000 10799081 0 0 13 13 7692.307692307692 830698.5384615385 0 0 0 0 0 0 0 0 0 0 127.0.0.1:3933", + "db_70 t_143 tpcc new_order 143 0 4 2717707 78813503 0 0.02266763856442214 1 0.9678592299201351 52809 0.029559768846178818 0 1434208 679426.75 19703375.75 4 61604 1786516 15401 446629 0 3 2656103 77026987 40906492 885367.6666666666 25675662.333333332 37 24 9.25 1664.972972972973 48284.21621621621 380 126.66666666666667 6989.744736842105 202702.59736842106 0 0 0 0 0 0 0 0 0 0 127.0.0.1:3933", + "db_70 t_145 tpcc order_line 145 0 203 210607202 20007684190 0 0.0054566462546708164 0.5862068965517241 0.7810067620424135 620065 0.005679558722564825 0 22607144 1037473.9014778325 98560020.64039409 119 1149209 109174855 9657.218487394957 917435.756302521 0 203 209457993 19898509335 8724002804 1031812.7733990147 98022213.47290641 893 39 7.504201680672269 1286.9081746920492 122256.27659574468 31507 155.20689655172413 6647.982765734599 631558.3627447869 0 0 0 0 0 0 0 0 0 0 127.0.0.1:3933", + "db_70 t_147 tpcc orders 147 0 22 21903301 1270391458 0 0.02021357420052804 0.7272727272727273 0.9239944527763222 260536 0.010145817899282655 0 10025264 995604.5909090909 57745066.27272727 16 442744 25679152 27671.5 1604947 0 22 21460557 1244712306 452173775 975479.8636363636 56577832.09090909 242 34 15.125 1829.5206611570247 106112.19834710743 2973 135.13636363636363 7218.485368314833 418672.15136226034 0 0 0 0 0 0 0 0 0 0 127.0.0.1:3933", + "db_70 t_149 tpcc stock 149 0 42 11112720 4811805131 0 0.028085203262567582 0.9761904761904762 0.8463391893060944 10227093 0.07567373591410528 0 6719064 264588.5714285714 114566788.83333333 41 312103 135131097 7612.268292682927 3295880.4146341463 0 42 10800617 4676674034 3231872509 257157.54761904763 111349381.76190476 238 26 5.804878048780488 1311.357142857143 567777.718487395 1644 39.142857142857146 6569.718369829684 2844692.234793187 0 0 0 0 0 0 0 0 0 0 127.0.0.1:3933", + "db_70 t_151 tpcc warehouse 151 0 1 5842 923615 0 0.9828825744608011 1 0.9669104841518634 70220 0.07732497387669801 0 133048 5842 923615 1 5742 907807 5742 907807 0 1 100 15808 11642 100 15808 5 5 5 1148.4 181561.4 5 5 20 3161.6 0 0 0 0 0 0 0 0 0 0 127.0.0.1:3933", + )) + tk.MustQuery("show warnings").Check(testkit.Rows()) +} + func TestTablesPKType(t *testing.T) { store := testkit.CreateMockStore(t) tk := testkit.NewTestKit(t, store) diff --git a/executor/insert.go b/executor/insert.go index 29c0231ed4c05..9b286297351b9 100644 --- a/executor/insert.go +++ b/executor/insert.go @@ -22,11 +22,14 @@ import ( "time" "github.com/opentracing/opentracing-go" + "github.com/pingcap/errors" + "github.com/pingcap/tidb/errno" "github.com/pingcap/tidb/expression" "github.com/pingcap/tidb/kv" "github.com/pingcap/tidb/meta/autoid" "github.com/pingcap/tidb/parser/model" "github.com/pingcap/tidb/parser/mysql" + "github.com/pingcap/tidb/parser/terror" "github.com/pingcap/tidb/table" "github.com/pingcap/tidb/tablecodec" "github.com/pingcap/tidb/types" @@ -310,7 +313,18 @@ func (e *InsertExec) Next(ctx context.Context, req *chunk.Chunk) error { if len(e.children) > 0 && e.children[0] != nil { return insertRowsFromSelect(ctx, e) } - return insertRows(ctx, e) + err := insertRows(ctx, e) + if err != nil { + terr, ok := errors.Cause(err).(*terror.Error) + if ok && len(e.OnDuplicate) == 0 && + e.ctx.GetSessionVars().StmtCtx.ErrAutoincReadFailedAsWarning && + terr.Code() == errno.ErrAutoincReadFailed { + e.ctx.GetSessionVars().StmtCtx.AppendWarning(err) + return nil + } + return err + } + return nil } // Close implements the Executor Close interface. @@ -420,7 +434,7 @@ func (e *InsertExec) doDupRowUpdate(ctx context.Context, handle kv.Handle, oldRo } newData := e.row4Update[:len(oldRow)] - _, err := updateRecord(ctx, e.ctx, handle, oldRow, newData, assignFlag, e.Table, true, e.memTracker, e.fkChecks) + _, err := updateRecord(ctx, e.ctx, handle, oldRow, newData, assignFlag, e.Table, true, e.memTracker, e.fkChecks, e.fkCascades) if err != nil { return err } @@ -453,3 +467,13 @@ func (e *InsertExec) setMessage() { func (e *InsertExec) GetFKChecks() []*FKCheckExec { return e.fkChecks } + +// GetFKCascades implements WithForeignKeyTrigger interface. +func (e *InsertExec) GetFKCascades() []*FKCascadeExec { + return e.fkCascades +} + +// HasFKCascades implements WithForeignKeyTrigger interface. +func (e *InsertExec) HasFKCascades() bool { + return len(e.fkCascades) > 0 +} diff --git a/executor/insert_common.go b/executor/insert_common.go index d708a59770fdd..5bb7feb2441da 100644 --- a/executor/insert_common.go +++ b/executor/insert_common.go @@ -98,7 +98,8 @@ type InsertValues struct { isLoadData bool txnInUse sync.Mutex // fkChecks contains the foreign key checkers. - fkChecks []*FKCheckExec + fkChecks []*FKCheckExec + fkCascades []*FKCascadeExec } type defaultVal struct { @@ -459,7 +460,7 @@ func insertRowsFromSelect(ctx context.Context, base insertCommon) error { e := base.insertCommon() selectExec := e.children[0] fields := retTypes(selectExec) - chk := newFirstChunk(selectExec) + chk := tryNewCacheChunk(selectExec) iter := chunk.NewIterator4Chunk(chk) rows := make([][]types.Datum, 0, chk.Capacity()) @@ -1090,6 +1091,10 @@ func (e *InsertValues) collectRuntimeStatsEnabled() bool { BasicRuntimeStats: e.runtimeStats, SnapshotRuntimeStats: snapshotStats, AllocatorRuntimeStats: autoid.NewAllocatorRuntimeStats(), + FKCheckStats: &FKCheckRuntimeStats{}, + } + for _, fkc := range e.fkChecks { + fkc.stats = e.stats.FKCheckStats } e.ctx.GetSessionVars().StmtCtx.RuntimeStatsColl.RegisterStats(e.id, e.stats) } @@ -1145,6 +1150,7 @@ func (e *InsertValues) batchCheckAndInsert(ctx context.Context, rows [][]types.D } if e.stats != nil { + e.stats.FKCheckTime += prefetchStart.Sub(start) e.stats.Prefetch += time.Since(prefetchStart) } @@ -1292,6 +1298,8 @@ type InsertRuntimeStat struct { *autoid.AllocatorRuntimeStats CheckInsertTime time.Duration Prefetch time.Duration + FKCheckTime time.Duration + FKCheckStats *FKCheckRuntimeStats } func (e *InsertRuntimeStat) String() string { @@ -1314,9 +1322,8 @@ func (e *InsertRuntimeStat) String() string { buf.WriteString(", rpc: {") buf.WriteString(e.SnapshotRuntimeStats.String()) buf.WriteString("}") - return buf.String() } - return "" + return buf.String() } if allocatorStatsStr != "" { buf.WriteString("prepare: {total: ") @@ -1334,6 +1341,11 @@ func (e *InsertRuntimeStat) String() string { execdetails.FormatDuration(e.CheckInsertTime), execdetails.FormatDuration(e.CheckInsertTime-e.Prefetch), execdetails.FormatDuration(e.Prefetch))) + if e.FKCheckStats != nil && e.FKCheckStats.Keys > 0 { + buf.WriteString(fmt.Sprintf(", fk_check: %v, fk_num: %v", + execdetails.FormatDuration(e.FKCheckTime), + e.FKCheckStats.Keys)) + } if e.SnapshotRuntimeStats != nil { if rpc := e.SnapshotRuntimeStats.String(); len(rpc) > 0 { buf.WriteString(fmt.Sprintf(", rpc:{%s}", rpc)) @@ -1351,6 +1363,7 @@ func (e *InsertRuntimeStat) Clone() execdetails.RuntimeStats { newRs := &InsertRuntimeStat{ CheckInsertTime: e.CheckInsertTime, Prefetch: e.Prefetch, + FKCheckTime: e.FKCheckTime, } if e.SnapshotRuntimeStats != nil { snapshotStats := e.SnapshotRuntimeStats.Clone() @@ -1363,6 +1376,10 @@ func (e *InsertRuntimeStat) Clone() execdetails.RuntimeStats { if e.AllocatorRuntimeStats != nil { newRs.AllocatorRuntimeStats = e.AllocatorRuntimeStats.Clone() } + if e.FKCheckStats != nil { + fkCheckStats := *e.FKCheckStats + newRs.FKCheckStats = &fkCheckStats + } return newRs } @@ -1396,6 +1413,7 @@ func (e *InsertRuntimeStat) Merge(other execdetails.RuntimeStats) { } } e.Prefetch += tmp.Prefetch + e.FKCheckTime += tmp.FKCheckTime e.CheckInsertTime += tmp.CheckInsertTime } diff --git a/executor/insert_test.go b/executor/insert_test.go index 06c9927bba008..53d0c62cc9776 100644 --- a/executor/insert_test.go +++ b/executor/insert_test.go @@ -349,7 +349,7 @@ func TestUpdateDuplicateKey(t *testing.T) { tk.MustExec(`insert into c values(1,2,3);`) tk.MustExec(`insert into c values(1,2,4);`) tk.MustGetErrMsg(`update c set i=1,j=2,k=4 where i=1 and j=2 and k=3;`, - "[kv:1062]Duplicate entry '1-2-4' for key 'PRIMARY'") + "[kv:1062]Duplicate entry '1-2-4' for key 'c.PRIMARY'") } func TestIssue37187(t *testing.T) { @@ -398,6 +398,14 @@ func TestInsertWrongValueForField(t *testing.T) { tk.MustExec(`SET @@sql_mode='STRICT_TRANS_TABLES'`) tk.MustGetErrMsg(`INSERT INTO ts (id, time1) VALUES (2, TIMESTAMP '1018-12-24 00:00:00')`, `[table:1292]Incorrect timestamp value: '1018-12-24 00:00:00' for column 'time1' at row 1`) tk.MustExec(`DROP TABLE ts`) + + tk.MustExec(`CREATE TABLE t0(c0 SMALLINT AUTO_INCREMENT PRIMARY KEY);`) + tk.MustExec(`INSERT IGNORE INTO t0(c0) VALUES (194626268);`) + tk.MustExec(`INSERT IGNORE INTO t0(c0) VALUES ('*')`) + tk.MustQuery(`SHOW WARNINGS`).Check(testkit.Rows( + `Warning 1366 Incorrect smallint value: '*' for column 'c0' at row 1`, + `Warning 1690 constant 32768 overflows smallint`, + `Warning 1467 Failed to read auto-increment value from storage engine`)) } func TestInsertValueForCastDecimalField(t *testing.T) { @@ -1394,7 +1402,7 @@ func TestIssue16366(t *testing.T) { tk.MustExec(`drop table if exists t;`) tk.MustExec(`create table t(c numeric primary key);`) tk.MustExec("insert ignore into t values(null);") - tk.MustContainErrMsg(`insert into t values(0);`, "Duplicate entry '0' for key 'PRIMARY'") + tk.MustContainErrMsg(`insert into t values(0);`, "Duplicate entry '0' for key 't.PRIMARY'") } func TestClusterPrimaryTablePlainInsert(t *testing.T) { @@ -1545,6 +1553,9 @@ func TestInsertRuntimeStat(t *testing.T) { require.Equal(t, stats.Clone().String(), stats.String()) stats.Merge(stats.Clone()) require.Equal(t, "prepare: 6s, check_insert: {total_time: 4s, mem_insert_time: 2s, prefetch: 2s}", stats.String()) + stats.FKCheckTime = time.Second + stats.FKCheckStats = &executor.FKCheckRuntimeStats{Keys: 20} + require.Equal(t, "prepare: 6s, check_insert: {total_time: 4s, mem_insert_time: 2s, prefetch: 2s, fk_check: 1s, fk_num: 20}", stats.String()) } func TestDuplicateEntryMessage(t *testing.T) { @@ -1556,52 +1567,52 @@ func TestDuplicateEntryMessage(t *testing.T) { tk.MustExec("drop table if exists t;") tk.MustExec("create table t(a int, b char(10), unique key(b)) collate utf8mb4_general_ci;") tk.MustExec("insert into t value (34, '12Ak');") - tk.MustGetErrMsg("insert into t value (34, '12Ak');", "[kv:1062]Duplicate entry '12Ak' for key 'b'") + tk.MustGetErrMsg("insert into t value (34, '12Ak');", "[kv:1062]Duplicate entry '12Ak' for key 't.b'") tk.MustExec("begin optimistic;") tk.MustExec("insert into t value (34, '12ak');") tk.MustExec("delete from t where b = '12ak';") - tk.MustGetErrMsg("commit;", "previous statement: delete from t where b = '12ak';: [kv:1062]Duplicate entry '12ak' for key 'b'") + tk.MustGetErrMsg("commit;", "previous statement: delete from t where b = '12ak';: [kv:1062]Duplicate entry '12ak' for key 't.b'") tk.MustExec("drop table if exists t;") tk.MustExec("create table t (a datetime primary key);") tk.MustExec("insert into t values ('2020-01-01');") - tk.MustGetErrMsg("insert into t values ('2020-01-01');", "[kv:1062]Duplicate entry '2020-01-01 00:00:00' for key 'PRIMARY'") + tk.MustGetErrMsg("insert into t values ('2020-01-01');", "[kv:1062]Duplicate entry '2020-01-01 00:00:00' for key 't.PRIMARY'") tk.MustExec("begin optimistic;") tk.MustExec("insert into t values ('2020-01-01');") tk.MustExec("delete from t where a = '2020-01-01';") - tk.MustGetErrMsg("commit;", "previous statement: delete from t where a = '2020-01-01';: [kv:1062]Duplicate entry '2020-01-01 00:00:00' for key 'PRIMARY'") + tk.MustGetErrMsg("commit;", "previous statement: delete from t where a = '2020-01-01';: [kv:1062]Duplicate entry '2020-01-01 00:00:00' for key 't.PRIMARY'") tk.MustExec("drop table if exists t;") tk.MustExec("create table t (a int primary key );") tk.MustExec("insert into t value (1);") - tk.MustGetErrMsg("insert into t value (1);", "[kv:1062]Duplicate entry '1' for key 'PRIMARY'") + tk.MustGetErrMsg("insert into t value (1);", "[kv:1062]Duplicate entry '1' for key 't.PRIMARY'") tk.MustExec("drop table if exists t;") tk.MustExec("create table t (a datetime unique);") tk.MustExec("insert into t values ('2020-01-01');") - tk.MustGetErrMsg("insert into t values ('2020-01-01');", "[kv:1062]Duplicate entry '2020-01-01 00:00:00' for key 'a'") + tk.MustGetErrMsg("insert into t values ('2020-01-01');", "[kv:1062]Duplicate entry '2020-01-01 00:00:00' for key 't.a'") tk.MustExec("drop table if exists t;") tk.MustExec("create table t (a datetime, b int, c varchar(10), primary key (a, b, c)) collate utf8mb4_general_ci;") tk.MustExec("insert into t values ('2020-01-01', 1, 'aSDd');") - tk.MustGetErrMsg("insert into t values ('2020-01-01', 1, 'ASDD');", "[kv:1062]Duplicate entry '2020-01-01 00:00:00-1-ASDD' for key 'PRIMARY'") + tk.MustGetErrMsg("insert into t values ('2020-01-01', 1, 'ASDD');", "[kv:1062]Duplicate entry '2020-01-01 00:00:00-1-ASDD' for key 't.PRIMARY'") tk.MustExec("drop table if exists t;") tk.MustExec("create table t (a datetime, b int, c varchar(10), unique key (a, b, c)) collate utf8mb4_general_ci;") tk.MustExec("insert into t values ('2020-01-01', 1, 'aSDd');") - tk.MustGetErrMsg("insert into t values ('2020-01-01', 1, 'ASDD');", "[kv:1062]Duplicate entry '2020-01-01 00:00:00-1-ASDD' for key 'a'") + tk.MustGetErrMsg("insert into t values ('2020-01-01', 1, 'ASDD');", "[kv:1062]Duplicate entry '2020-01-01 00:00:00-1-ASDD' for key 't.a'") tk.MustExec("drop table if exists t;") tk.MustExec("create table t (a char(10) collate utf8mb4_unicode_ci, b char(20) collate utf8mb4_general_ci, c int(11), primary key (a, b, c), unique key (a));") tk.MustExec("insert ignore into t values ('$', 'C', 10);") tk.MustExec("insert ignore into t values ('$', 'C', 10);") - tk.MustQuery("show warnings;").Check(testkit.RowsWithSep("|", "Warning|1062|Duplicate entry '$-C-10' for key 'PRIMARY'")) + tk.MustQuery("show warnings;").Check(testkit.RowsWithSep("|", "Warning|1062|Duplicate entry '$-C-10' for key 't.PRIMARY'")) tk.MustExec("begin pessimistic;") tk.MustExec("insert into t values ('a7', 'a', 10);") - tk.MustGetErrMsg("insert into t values ('a7', 'a', 10);", "[kv:1062]Duplicate entry 'a7-a-10' for key 'PRIMARY'") + tk.MustGetErrMsg("insert into t values ('a7', 'a', 10);", "[kv:1062]Duplicate entry 'a7-a-10' for key 't.PRIMARY'") tk.MustExec("rollback;") // Test for large unsigned integer handle. @@ -1609,7 +1620,7 @@ func TestDuplicateEntryMessage(t *testing.T) { tk.MustExec("drop table if exists t;") tk.MustExec("create table t(a bigint unsigned primary key);") tk.MustExec("insert into t values(18446744073709551615);") - tk.MustGetErrMsg("insert into t values(18446744073709551615);", "[kv:1062]Duplicate entry '18446744073709551615' for key 'PRIMARY'") + tk.MustGetErrMsg("insert into t values(18446744073709551615);", "[kv:1062]Duplicate entry '18446744073709551615' for key 't.PRIMARY'") } } @@ -1675,12 +1686,12 @@ func TestDuplicatedEntryErr(t *testing.T) { tk.MustExec("create table t1(a int, b varchar(20), primary key(a,b(3)) clustered);") tk.MustExec("insert into t1 values(1,'aaaaa');") err := tk.ExecToErr("insert into t1 values(1,'aaaaa');") - require.EqualError(t, err, "[kv:1062]Duplicate entry '1-aaa' for key 'PRIMARY'") + require.EqualError(t, err, "[kv:1062]Duplicate entry '1-aaa' for key 't1.PRIMARY'") err = tk.ExecToErr("insert into t1 select 1, 'aaa'") - require.EqualError(t, err, "[kv:1062]Duplicate entry '1-aaa' for key 'PRIMARY'") + require.EqualError(t, err, "[kv:1062]Duplicate entry '1-aaa' for key 't1.PRIMARY'") tk.MustExec("insert into t1 select 1, 'bb'") err = tk.ExecToErr("insert into t1 select 1, 'bb'") - require.EqualError(t, err, "[kv:1062]Duplicate entry '1-bb' for key 'PRIMARY'") + require.EqualError(t, err, "[kv:1062]Duplicate entry '1-bb' for key 't1.PRIMARY'") } func TestBinaryLiteralInsertToEnum(t *testing.T) { diff --git a/executor/join.go b/executor/join.go index 706895e44d06f..95ecee42c02d4 100644 --- a/executor/join.go +++ b/executor/join.go @@ -20,7 +20,6 @@ import ( "fmt" "runtime/trace" "strconv" - "sync" "sync/atomic" "time" @@ -47,11 +46,35 @@ var ( _ Executor = &NestedLoopApplyExec{} ) +// probeSideTupleFetcher reads tuples from probeSideExec and send them to probeWorkers. +type probeSideTupleFetcher struct { + probeSideExec Executor + probeChkResourceCh chan *probeChkResource + probeResultChs []chan *chunk.Chunk + requiredRows int64 +} + +type probeWorker struct { + // We pre-alloc and reuse the Rows and RowPtrs for each probe goroutine, to avoid allocation frequently + buildSideRows []chunk.Row + buildSideRowPtrs []chunk.RowPtr + + // We build individual joiner for each join worker when use chunk-based + // execution, to avoid the concurrency of joiner.chk and joiner.selected. + joiner joiner + rowIters *chunk.Iterator4Slice + rowContainerForProbe *hashRowContainer + // for every naaj probe worker, pre-allocate the int slice for store the join column index to check. + needCheckBuildRowPos []int + needCheckProbeRowPos []int +} + // HashJoinExec implements the hash join algorithm. type HashJoinExec struct { baseExecutor - probeSideExec Executor + probeSideTupleFetcher + probeWorkers []probeWorker buildSideExec Executor buildSideEstCount float64 outerFilter expression.CNFExprs @@ -69,19 +92,13 @@ type HashJoinExec struct { buildFinished chan error // closeCh add a lock for closing executor. - closeCh chan struct{} - joinType plannercore.JoinType - requiredRows int64 + closeCh chan struct{} + worker util.WaitGroupWrapper + waiter util.WaitGroupWrapper + joinType plannercore.JoinType - // We build individual joiner for each join worker when use chunk-based - // execution, to avoid the concurrency of joiner.chk and joiner.selected. - joiners []joiner - - probeChkResourceCh chan *probeChkResource - probeResultChs []chan *chunk.Chunk - joinChkResourceCh []chan *chunk.Chunk - joinResultCh chan *hashjoinWorkerResult - rowContainerForProbe []*hashRowContainer + joinChkResourceCh []chan *chunk.Chunk + joinResultCh chan *hashjoinWorkerResult memTracker *memory.Tracker // track memory usage. diskTracker *disk.Tracker // track disk usage. @@ -92,19 +109,9 @@ type HashJoinExec struct { prepared bool isOuterJoin bool - // joinWorkerWaitGroup is for sync multiple join workers. - joinWorkerWaitGroup sync.WaitGroup - finished atomic.Value + finished atomic.Bool stats *hashJoinRuntimeStats - - // We pre-alloc and reuse the Rows and RowPtrs for each probe goroutine, to avoid allocation frequently - buildSideRows [][]chunk.Row - buildSideRowPtrs [][]chunk.RowPtr - - // for every naaj probe worker, pre-allocate the int slice for store the join column index to check. - needCheckBuildRowPos [][]int - needCheckProbeRowPos [][]int } // probeChkResource stores the result of the join probe side fetch worker, @@ -138,26 +145,30 @@ func (e *HashJoinExec) Close() error { if e.joinResultCh != nil { channel.Clear(e.joinResultCh) } - if e.probeChkResourceCh != nil { - close(e.probeChkResourceCh) - channel.Clear(e.probeChkResourceCh) + if e.probeSideTupleFetcher.probeChkResourceCh != nil { + close(e.probeSideTupleFetcher.probeChkResourceCh) + channel.Clear(e.probeSideTupleFetcher.probeChkResourceCh) } - for i := range e.probeResultChs { - channel.Clear(e.probeResultChs[i]) + for i := range e.probeSideTupleFetcher.probeResultChs { + channel.Clear(e.probeSideTupleFetcher.probeResultChs[i]) } for i := range e.joinChkResourceCh { close(e.joinChkResourceCh[i]) channel.Clear(e.joinChkResourceCh[i]) } - e.probeChkResourceCh = nil + e.probeSideTupleFetcher.probeChkResourceCh = nil e.joinChkResourceCh = nil terror.Call(e.rowContainer.Close) + e.waiter.Wait() } e.outerMatchedStatus = e.outerMatchedStatus[:0] - e.buildSideRows = nil - e.buildSideRowPtrs = nil - e.needCheckBuildRowPos = nil - e.needCheckProbeRowPos = nil + for _, w := range e.probeWorkers { + w.buildSideRows = nil + w.buildSideRowPtrs = nil + w.needCheckBuildRowPos = nil + w.needCheckProbeRowPos = nil + } + if e.stats != nil && e.rowContainer != nil { e.stats.hashStat = *e.rowContainer.stat } @@ -168,6 +179,8 @@ func (e *HashJoinExec) Close() error { // Open implements the Executor Open interface. func (e *HashJoinExec) Open(ctx context.Context) error { if err := e.baseExecutor.Open(ctx); err != nil { + e.closeCh = nil + e.prepared = false return err } e.prepared = false @@ -177,19 +190,20 @@ func (e *HashJoinExec) Open(ctx context.Context) error { e.diskTracker = disk.NewTracker(e.id, -1) e.diskTracker.AttachTo(e.ctx.GetSessionVars().StmtCtx.DiskTracker) + e.worker = util.WaitGroupWrapper{} + e.waiter = util.WaitGroupWrapper{} e.closeCh = make(chan struct{}) e.finished.Store(false) - e.joinWorkerWaitGroup = sync.WaitGroup{} if e.probeTypes == nil { - e.probeTypes = retTypes(e.probeSideExec) + e.probeTypes = retTypes(e.probeSideTupleFetcher.probeSideExec) } if e.buildTypes == nil { e.buildTypes = retTypes(e.buildSideExec) } if e.runtimeStats != nil { e.stats = &hashJoinRuntimeStats{ - concurrent: cap(e.joiners), + concurrent: int(e.concurrency), } e.ctx.GetSessionVars().StmtCtx.RuntimeStatsColl.RegisterStats(e.id, e.stats) } @@ -201,7 +215,7 @@ func (e *HashJoinExec) Open(ctx context.Context) error { func (e *HashJoinExec) fetchProbeSideChunks(ctx context.Context) { hasWaitedForBuild := false for { - if e.finished.Load().(bool) { + if e.finished.Load() { return } @@ -210,17 +224,17 @@ func (e *HashJoinExec) fetchProbeSideChunks(ctx context.Context) { select { case <-e.closeCh: return - case probeSideResource, ok = <-e.probeChkResourceCh: + case probeSideResource, ok = <-e.probeSideTupleFetcher.probeChkResourceCh: if !ok { return } } probeSideResult := probeSideResource.chk if e.isOuterJoin { - required := int(atomic.LoadInt64(&e.requiredRows)) + required := int(atomic.LoadInt64(&e.probeSideTupleFetcher.requiredRows)) probeSideResult.SetRequiredRows(required, e.maxChunkSize) } - err := Next(ctx, e.probeSideExec, probeSideResult) + err := Next(ctx, e.probeSideTupleFetcher.probeSideExec, probeSideResult) failpoint.Inject("ConsumeRandomPanic", nil) if err != nil { e.joinResultCh <- &hashjoinWorkerResult{ @@ -248,8 +262,8 @@ func (e *HashJoinExec) fetchProbeSideChunks(ctx context.Context) { } // after building is finished. the hash null bucket slice is allocated and determined. // copy it for multi probe worker. - for i := range e.rowContainerForProbe { - e.rowContainerForProbe[i].hashNANullBucket = e.rowContainer.hashNANullBucket + for _, w := range e.probeWorkers { + w.rowContainerForProbe.hashNANullBucket = e.rowContainer.hashNANullBucket } hasWaitedForBuild = true } @@ -279,24 +293,24 @@ func (e *HashJoinExec) wait4BuildSide() (emptyBuild bool, err error) { // fetchBuildSideRows fetches all rows from build side executor, and append them // to e.buildSideResult. -func (e *HashJoinExec) fetchBuildSideRows(ctx context.Context, chkCh chan<- *chunk.Chunk, doneCh <-chan struct{}) { +func (e *HashJoinExec) fetchBuildSideRows(ctx context.Context, chkCh chan<- *chunk.Chunk, errCh chan<- error, doneCh <-chan struct{}) { defer close(chkCh) var err error failpoint.Inject("issue30289", func(val failpoint.Value) { if val.(bool) { err = errors.Errorf("issue30289 build return error") - e.buildFinished <- errors.Trace(err) + errCh <- errors.Trace(err) return } }) for { - if e.finished.Load().(bool) { + if e.finished.Load() { return } - chk := chunk.NewChunkWithCapacity(e.buildSideExec.base().retFieldTypes, e.ctx.GetSessionVars().MaxChunkSize) + chk := e.ctx.GetSessionVars().GetNewChunkWithCapacity(e.buildSideExec.base().retFieldTypes, e.ctx.GetSessionVars().MaxChunkSize, e.ctx.GetSessionVars().MaxChunkSize, e.AllocPool) err = Next(ctx, e.buildSideExec, chk) if err != nil { - e.buildFinished <- errors.Trace(err) + errCh <- errors.Trace(err) return } failpoint.Inject("errorFetchBuildSideRowsMockOOMPanic", nil) @@ -315,21 +329,21 @@ func (e *HashJoinExec) fetchBuildSideRows(ctx context.Context, chkCh chan<- *chu } func (e *HashJoinExec) initializeForProbe() { - // e.probeResultChs is for transmitting the chunks which store the data of + // e.probeSideTupleFetcher.probeResultChs is for transmitting the chunks which store the data of // probeSideExec, it'll be written by probe side worker goroutine, and read by join // workers. - e.probeResultChs = make([]chan *chunk.Chunk, e.concurrency) + e.probeSideTupleFetcher.probeResultChs = make([]chan *chunk.Chunk, e.concurrency) for i := uint(0); i < e.concurrency; i++ { - e.probeResultChs[i] = make(chan *chunk.Chunk, 1) + e.probeSideTupleFetcher.probeResultChs[i] = make(chan *chunk.Chunk, 1) } // e.probeChkResourceCh is for transmitting the used probeSideExec chunks from // join workers to probeSideExec worker. - e.probeChkResourceCh = make(chan *probeChkResource, e.concurrency) + e.probeSideTupleFetcher.probeChkResourceCh = make(chan *probeChkResource, e.concurrency) for i := uint(0); i < e.concurrency; i++ { - e.probeChkResourceCh <- &probeChkResource{ - chk: newFirstChunk(e.probeSideExec), - dest: e.probeResultChs[i], + e.probeSideTupleFetcher.probeChkResourceCh <- &probeChkResource{ + chk: newFirstChunk(e.probeSideTupleFetcher.probeSideExec), + dest: e.probeSideTupleFetcher.probeResultChs[i], } } @@ -344,17 +358,11 @@ func (e *HashJoinExec) initializeForProbe() { // e.joinResultCh is for transmitting the join result chunks to the main // thread. e.joinResultCh = make(chan *hashjoinWorkerResult, e.concurrency+1) - - e.buildSideRows = make([][]chunk.Row, e.concurrency) - e.buildSideRowPtrs = make([][]chunk.RowPtr, e.concurrency) - e.needCheckBuildRowPos = make([][]int, e.concurrency) - e.needCheckProbeRowPos = make([][]int, e.concurrency) } func (e *HashJoinExec) fetchAndProbeHashTable(ctx context.Context) { e.initializeForProbe() - e.joinWorkerWaitGroup.Add(1) - go util.WithRecovery(func() { + e.worker.RunWithRecover(func() { defer trace.StartRegion(ctx, "HashJoinProbeSideFetcher").End() e.fetchProbeSideChunks(ctx) }, e.handleProbeSideFetcherPanic) @@ -369,31 +377,28 @@ func (e *HashJoinExec) fetchAndProbeHashTable(ctx context.Context) { } for i := uint(0); i < e.concurrency; i++ { - e.joinWorkerWaitGroup.Add(1) workID := i - go util.WithRecovery(func() { + e.worker.RunWithRecover(func() { defer trace.StartRegion(ctx, "HashJoinWorker").End() e.runJoinWorker(workID, probeKeyColIdx, probeNAKeColIdx) }, e.handleJoinWorkerPanic) } - go util.WithRecovery(e.waitJoinWorkersAndCloseResultChan, nil) + e.waiter.RunWithRecover(e.waitJoinWorkersAndCloseResultChan, nil) } func (e *HashJoinExec) handleProbeSideFetcherPanic(r interface{}) { - for i := range e.probeResultChs { - close(e.probeResultChs[i]) + for i := range e.probeSideTupleFetcher.probeResultChs { + close(e.probeSideTupleFetcher.probeResultChs[i]) } if r != nil { e.joinResultCh <- &hashjoinWorkerResult{err: errors.Errorf("%v", r)} } - e.joinWorkerWaitGroup.Done() } func (e *HashJoinExec) handleJoinWorkerPanic(r interface{}) { if r != nil { e.joinResultCh <- &hashjoinWorkerResult{err: errors.Errorf("%v", r)} } - e.joinWorkerWaitGroup.Done() } // Concurrently handling unmatched rows from the hash table @@ -413,7 +418,7 @@ func (e *HashJoinExec) handleUnmatchedRowsFromHashTable(workerID uint) { } for j := 0; j < chk.NumRows(); j++ { if !e.outerMatchedStatus[i].UnsafeIsSet(j) { // process unmatched outer rows - e.joiners[workerID].onMissMatch(false, chk.GetRow(j), joinResult.chk) + e.probeWorkers[workerID].joiner.onMissMatch(false, chk.GetRow(j), joinResult.chk) } if joinResult.chk.IsFull() { e.joinResultCh <- joinResult @@ -433,15 +438,14 @@ func (e *HashJoinExec) handleUnmatchedRowsFromHashTable(workerID uint) { } func (e *HashJoinExec) waitJoinWorkersAndCloseResultChan() { - e.joinWorkerWaitGroup.Wait() + e.worker.Wait() if e.useOuterToBuild { // Concurrently handling unmatched rows from the hash table at the tail for i := uint(0); i < e.concurrency; i++ { var workerID = i - e.joinWorkerWaitGroup.Add(1) - go util.WithRecovery(func() { e.handleUnmatchedRowsFromHashTable(workerID) }, e.handleJoinWorkerPanic) + e.worker.RunWithRecover(func() { e.handleUnmatchedRowsFromHashTable(workerID) }, e.handleJoinWorkerPanic) } - e.joinWorkerWaitGroup.Wait() + e.worker.Wait() } close(e.joinResultCh) } @@ -469,7 +473,7 @@ func (e *HashJoinExec) runJoinWorker(workerID uint, probeKeyColIdx, probeNAKeyCo // Read and filter probeSideResult, and join the probeSideResult with the build side rows. emptyProbeSideResult := &probeChkResource{ - dest: e.probeResultChs[workerID], + dest: e.probeSideTupleFetcher.probeResultChs[workerID], } hCtx := &hashContext{ allTypes: e.probeTypes, @@ -477,13 +481,13 @@ func (e *HashJoinExec) runJoinWorker(workerID uint, probeKeyColIdx, probeNAKeyCo naKeyColIdx: probeNAKeyColIdx, } for ok := true; ok; { - if e.finished.Load().(bool) { + if e.finished.Load() { break } select { case <-e.closeCh: return - case probeSideResult, ok = <-e.probeResultChs[workerID]: + case probeSideResult, ok = <-e.probeSideTupleFetcher.probeResultChs[workerID]: } failpoint.Inject("ConsumeRandomPanic", nil) if !ok { @@ -491,9 +495,9 @@ func (e *HashJoinExec) runJoinWorker(workerID uint, probeKeyColIdx, probeNAKeyCo } start := time.Now() if e.useOuterToBuild { - ok, joinResult = e.join2ChunkForOuterHashJoin(workerID, probeSideResult, hCtx, e.rowContainerForProbe[workerID], joinResult) + ok, joinResult = e.join2ChunkForOuterHashJoin(workerID, probeSideResult, hCtx, e.probeWorkers[workerID].rowContainerForProbe, joinResult) } else { - ok, joinResult = e.join2Chunk(workerID, probeSideResult, hCtx, e.rowContainerForProbe[workerID], joinResult, selected) + ok, joinResult = e.join2Chunk(workerID, probeSideResult, hCtx, e.probeWorkers[workerID].rowContainerForProbe, joinResult, selected) } probeTime += int64(time.Since(start)) if !ok { @@ -501,7 +505,7 @@ func (e *HashJoinExec) runJoinWorker(workerID uint, probeKeyColIdx, probeNAKeyCo } probeSideResult.Reset() emptyProbeSideResult.chk = probeSideResult - e.probeChkResourceCh <- emptyProbeSideResult + e.probeSideTupleFetcher.probeChkResourceCh <- emptyProbeSideResult } // note joinResult.chk may be nil when getNewJoinResult fails in loops if joinResult == nil { @@ -515,8 +519,8 @@ func (e *HashJoinExec) runJoinWorker(workerID uint, probeKeyColIdx, probeNAKeyCo func (e *HashJoinExec) joinMatchedProbeSideRow2ChunkForOuterHashJoin(workerID uint, probeKey uint64, probeSideRow chunk.Row, hCtx *hashContext, rowContainer *hashRowContainer, joinResult *hashjoinWorkerResult) (bool, *hashjoinWorkerResult) { var err error - e.buildSideRows[workerID], e.buildSideRowPtrs[workerID], err = rowContainer.GetMatchedRowsAndPtrs(probeKey, probeSideRow, hCtx, e.buildSideRows[workerID], e.buildSideRowPtrs[workerID], true) - buildSideRows, rowsPtrs := e.buildSideRows[workerID], e.buildSideRowPtrs[workerID] + e.probeWorkers[workerID].buildSideRows, e.probeWorkers[workerID].buildSideRowPtrs, err = rowContainer.GetMatchedRowsAndPtrs(probeKey, probeSideRow, hCtx, e.probeWorkers[workerID].buildSideRows, e.probeWorkers[workerID].buildSideRowPtrs, true) + buildSideRows, rowsPtrs := e.probeWorkers[workerID].buildSideRows, e.probeWorkers[workerID].buildSideRowPtrs if err != nil { joinResult.err = err return false, joinResult @@ -525,12 +529,12 @@ func (e *HashJoinExec) joinMatchedProbeSideRow2ChunkForOuterHashJoin(workerID ui return true, joinResult } - iter := chunk.NewIterator4Slice(buildSideRows) - defer chunk.FreeIterator(iter) + iter := e.probeWorkers[workerID].rowIters + iter.Reset(buildSideRows) var outerMatchStatus []outerRowStatusFlag rowIdx, ok := 0, false for iter.Begin(); iter.Current() != iter.End(); { - outerMatchStatus, err = e.joiners[workerID].tryToMatchOuters(iter, probeSideRow, joinResult.chk, outerMatchStatus) + outerMatchStatus, err = e.probeWorkers[workerID].joiner.tryToMatchOuters(iter, probeSideRow, joinResult.chk, outerMatchStatus) if err != nil { joinResult.err = err return false, joinResult @@ -564,17 +568,17 @@ func (e *HashJoinExec) joinNAALOSJMatchProbeSideRow2Chunk(workerID uint, probeKe // because AntiLeftOuterSemiJoin cares about the scalar value. If we both have a match from null // bucket and same key bucket, we should return the result as from same-key bucket // rather than from null bucket. - e.buildSideRows[workerID], err = rowContainer.GetMatchedRows(probeKey, probeSideRow, hCtx, e.buildSideRows[workerID]) - buildSideRows := e.buildSideRows[workerID] + e.probeWorkers[workerID].buildSideRows, err = rowContainer.GetMatchedRows(probeKey, probeSideRow, hCtx, e.probeWorkers[workerID].buildSideRows) + buildSideRows := e.probeWorkers[workerID].buildSideRows if err != nil { joinResult.err = err return false, joinResult } if len(buildSideRows) != 0 { - iter1 := chunk.NewIterator4Slice(buildSideRows) - defer chunk.FreeIterator(iter1) + iter1 := e.probeWorkers[workerID].rowIters + iter1.Reset(buildSideRows) for iter1.Begin(); iter1.Current() != iter1.End(); { - matched, _, err := e.joiners[workerID].tryToMatchInners(probeSideRow, iter1, joinResult.chk, LeftNotNullRightNotNull) + matched, _, err := e.probeWorkers[workerID].joiner.tryToMatchInners(probeSideRow, iter1, joinResult.chk, LeftNotNullRightNotNull) if err != nil { joinResult.err = err return false, joinResult @@ -594,8 +598,8 @@ func (e *HashJoinExec) joinNAALOSJMatchProbeSideRow2Chunk(workerID uint, probeKe } } // step2: match the null bucket secondly. - e.buildSideRows[workerID], err = rowContainer.GetNullBucketRows(hCtx, probeSideRow, probeKeyNullBits, e.buildSideRows[workerID], e.needCheckBuildRowPos[workerID], e.needCheckProbeRowPos[workerID]) - buildSideRows = e.buildSideRows[workerID] + e.probeWorkers[workerID].buildSideRows, err = rowContainer.GetNullBucketRows(hCtx, probeSideRow, probeKeyNullBits, e.probeWorkers[workerID].buildSideRows, e.probeWorkers[workerID].needCheckBuildRowPos, e.probeWorkers[workerID].needCheckProbeRowPos) + buildSideRows = e.probeWorkers[workerID].buildSideRows if err != nil { joinResult.err = err return false, joinResult @@ -603,13 +607,13 @@ func (e *HashJoinExec) joinNAALOSJMatchProbeSideRow2Chunk(workerID uint, probeKe if len(buildSideRows) == 0 { // when reach here, it means we couldn't find a valid same key match from same-key bucket yet // and the null bucket is empty. so the result should be . - e.joiners[workerID].onMissMatch(false, probeSideRow, joinResult.chk) + e.probeWorkers[workerID].joiner.onMissMatch(false, probeSideRow, joinResult.chk) return true, joinResult } - iter2 := chunk.NewIterator4Slice(buildSideRows) - defer chunk.FreeIterator(iter2) + iter2 := e.probeWorkers[workerID].rowIters + iter2.Reset(buildSideRows) for iter2.Begin(); iter2.Current() != iter2.End(); { - matched, _, err := e.joiners[workerID].tryToMatchInners(probeSideRow, iter2, joinResult.chk, LeftNotNullRightHasNull) + matched, _, err := e.probeWorkers[workerID].joiner.tryToMatchInners(probeSideRow, iter2, joinResult.chk, LeftNotNullRightHasNull) if err != nil { joinResult.err = err return false, joinResult @@ -631,7 +635,7 @@ func (e *HashJoinExec) joinNAALOSJMatchProbeSideRow2Chunk(workerID uint, probeKe // case1: x NOT IN (empty set): if other key bucket don't have the valid rows yet. // case2: x NOT IN (l,m,n...): if other key bucket do have the valid rows. // both cases mean the result should be - e.joiners[workerID].onMissMatch(false, probeSideRow, joinResult.chk) + e.probeWorkers[workerID].joiner.onMissMatch(false, probeSideRow, joinResult.chk) return true, joinResult } // when left side has null values, all we want is to find a valid build side rows (past other condition) @@ -639,17 +643,17 @@ func (e *HashJoinExec) joinNAALOSJMatchProbeSideRow2Chunk(workerID uint, probeKe // case1: NOT IN (empty set): ----------------------> result is . // case2: NOT IN (at least a valid inner row) ------------------> result is . // Step1: match null bucket (assumption that null bucket is quite smaller than all hash table bucket rows) - e.buildSideRows[workerID], err = rowContainer.GetNullBucketRows(hCtx, probeSideRow, probeKeyNullBits, e.buildSideRows[workerID], e.needCheckBuildRowPos[workerID], e.needCheckProbeRowPos[workerID]) - buildSideRows := e.buildSideRows[workerID] + e.probeWorkers[workerID].buildSideRows, err = rowContainer.GetNullBucketRows(hCtx, probeSideRow, probeKeyNullBits, e.probeWorkers[workerID].buildSideRows, e.probeWorkers[workerID].needCheckBuildRowPos, e.probeWorkers[workerID].needCheckProbeRowPos) + buildSideRows := e.probeWorkers[workerID].buildSideRows if err != nil { joinResult.err = err return false, joinResult } if len(buildSideRows) != 0 { - iter1 := chunk.NewIterator4Slice(buildSideRows) - defer chunk.FreeIterator(iter1) + iter1 := e.probeWorkers[workerID].rowIters + iter1.Reset(buildSideRows) for iter1.Begin(); iter1.Current() != iter1.End(); { - matched, _, err := e.joiners[workerID].tryToMatchInners(probeSideRow, iter1, joinResult.chk, LeftHasNullRightHasNull) + matched, _, err := e.probeWorkers[workerID].joiner.tryToMatchInners(probeSideRow, iter1, joinResult.chk, LeftHasNullRightHasNull) if err != nil { joinResult.err = err return false, joinResult @@ -669,8 +673,8 @@ func (e *HashJoinExec) joinNAALOSJMatchProbeSideRow2Chunk(workerID uint, probeKe } } // Step2: match all hash table bucket build rows (use probeKeyNullBits to filter if any). - e.buildSideRows[workerID], err = rowContainer.GetAllMatchedRows(hCtx, probeSideRow, probeKeyNullBits, e.buildSideRows[workerID], e.needCheckBuildRowPos[workerID], e.needCheckProbeRowPos[workerID]) - buildSideRows = e.buildSideRows[workerID] + e.probeWorkers[workerID].buildSideRows, err = rowContainer.GetAllMatchedRows(hCtx, probeSideRow, probeKeyNullBits, e.probeWorkers[workerID].buildSideRows, e.probeWorkers[workerID].needCheckBuildRowPos, e.probeWorkers[workerID].needCheckProbeRowPos) + buildSideRows = e.probeWorkers[workerID].buildSideRows if err != nil { joinResult.err = err return false, joinResult @@ -678,13 +682,13 @@ func (e *HashJoinExec) joinNAALOSJMatchProbeSideRow2Chunk(workerID uint, probeKe if len(buildSideRows) == 0 { // when reach here, it means we couldn't return it quickly in null bucket, and same-bucket is empty, // which means x NOT IN (empty set) or x NOT IN (l,m,n), the result should be - e.joiners[workerID].onMissMatch(false, probeSideRow, joinResult.chk) + e.probeWorkers[workerID].joiner.onMissMatch(false, probeSideRow, joinResult.chk) return true, joinResult } - iter2 := chunk.NewIterator4Slice(buildSideRows) - defer chunk.FreeIterator(iter2) + iter2 := e.probeWorkers[workerID].rowIters + iter2.Reset(buildSideRows) for iter2.Begin(); iter2.Current() != iter2.End(); { - matched, _, err := e.joiners[workerID].tryToMatchInners(probeSideRow, iter2, joinResult.chk, LeftHasNullRightNotNull) + matched, _, err := e.probeWorkers[workerID].joiner.tryToMatchInners(probeSideRow, iter2, joinResult.chk, LeftHasNullRightNotNull) if err != nil { joinResult.err = err return false, joinResult @@ -705,7 +709,7 @@ func (e *HashJoinExec) joinNAALOSJMatchProbeSideRow2Chunk(workerID uint, probeKe // step3: if we couldn't return it quickly in null bucket and all hash bucket, here means only one cases: // case1: NOT IN (empty set): // empty set comes from no rows from all bucket can pass other condition. the result should be - e.joiners[workerID].onMissMatch(false, probeSideRow, joinResult.chk) + e.probeWorkers[workerID].joiner.onMissMatch(false, probeSideRow, joinResult.chk) return true, joinResult } @@ -719,17 +723,17 @@ func (e *HashJoinExec) joinNAASJMatchProbeSideRow2Chunk(workerID uint, probeKey if probeKeyNullBits == nil { // step1: match null bucket first. // need fetch the "valid" rows every time. (nullBits map check is necessary) - e.buildSideRows[workerID], err = rowContainer.GetNullBucketRows(hCtx, probeSideRow, probeKeyNullBits, e.buildSideRows[workerID], e.needCheckBuildRowPos[workerID], e.needCheckProbeRowPos[workerID]) - buildSideRows := e.buildSideRows[workerID] + e.probeWorkers[workerID].buildSideRows, err = rowContainer.GetNullBucketRows(hCtx, probeSideRow, probeKeyNullBits, e.probeWorkers[workerID].buildSideRows, e.probeWorkers[workerID].needCheckBuildRowPos, e.probeWorkers[workerID].needCheckProbeRowPos) + buildSideRows := e.probeWorkers[workerID].buildSideRows if err != nil { joinResult.err = err return false, joinResult } if len(buildSideRows) != 0 { - iter1 := chunk.NewIterator4Slice(buildSideRows) - defer chunk.FreeIterator(iter1) + iter1 := e.probeWorkers[workerID].rowIters + iter1.Reset(buildSideRows) for iter1.Begin(); iter1.Current() != iter1.End(); { - matched, _, err := e.joiners[workerID].tryToMatchInners(probeSideRow, iter1, joinResult.chk) + matched, _, err := e.probeWorkers[workerID].joiner.tryToMatchInners(probeSideRow, iter1, joinResult.chk) if err != nil { joinResult.err = err return false, joinResult @@ -749,8 +753,8 @@ func (e *HashJoinExec) joinNAASJMatchProbeSideRow2Chunk(workerID uint, probeKey } } // step2: then same key bucket. - e.buildSideRows[workerID], err = rowContainer.GetMatchedRows(probeKey, probeSideRow, hCtx, e.buildSideRows[workerID]) - buildSideRows = e.buildSideRows[workerID] + e.probeWorkers[workerID].buildSideRows, err = rowContainer.GetMatchedRows(probeKey, probeSideRow, hCtx, e.probeWorkers[workerID].buildSideRows) + buildSideRows = e.probeWorkers[workerID].buildSideRows if err != nil { joinResult.err = err return false, joinResult @@ -758,13 +762,13 @@ func (e *HashJoinExec) joinNAASJMatchProbeSideRow2Chunk(workerID uint, probeKey if len(buildSideRows) == 0 { // when reach here, it means we couldn't return it quickly in null bucket, and same-bucket is empty, // which means x NOT IN (empty set), accept the rhs row. - e.joiners[workerID].onMissMatch(false, probeSideRow, joinResult.chk) + e.probeWorkers[workerID].joiner.onMissMatch(false, probeSideRow, joinResult.chk) return true, joinResult } - iter2 := chunk.NewIterator4Slice(buildSideRows) - defer chunk.FreeIterator(iter2) + iter2 := e.probeWorkers[workerID].rowIters + iter2.Reset(buildSideRows) for iter2.Begin(); iter2.Current() != iter2.End(); { - matched, _, err := e.joiners[workerID].tryToMatchInners(probeSideRow, iter2, joinResult.chk) + matched, _, err := e.probeWorkers[workerID].joiner.tryToMatchInners(probeSideRow, iter2, joinResult.chk) if err != nil { joinResult.err = err return false, joinResult @@ -786,7 +790,7 @@ func (e *HashJoinExec) joinNAASJMatchProbeSideRow2Chunk(workerID uint, probeKey // case1: x NOT IN (empty set): if other key bucket don't have the valid rows yet. // case2: x NOT IN (l,m,n...): if other key bucket do have the valid rows. // both cases should accept the rhs row. - e.joiners[workerID].onMissMatch(false, probeSideRow, joinResult.chk) + e.probeWorkers[workerID].joiner.onMissMatch(false, probeSideRow, joinResult.chk) return true, joinResult } // when left side has null values, all we want is to find a valid build side rows (passed from other condition) @@ -794,17 +798,17 @@ func (e *HashJoinExec) joinNAASJMatchProbeSideRow2Chunk(workerID uint, probeKey // case1: NOT IN (empty set): ----------------------> accept rhs row. // case2: NOT IN (at least a valid inner row) ------------------> unknown result, refuse rhs row. // Step1: match null bucket (assumption that null bucket is quite smaller than all hash table bucket rows) - e.buildSideRows[workerID], err = rowContainer.GetNullBucketRows(hCtx, probeSideRow, probeKeyNullBits, e.buildSideRows[workerID], e.needCheckBuildRowPos[workerID], e.needCheckProbeRowPos[workerID]) - buildSideRows := e.buildSideRows[workerID] + e.probeWorkers[workerID].buildSideRows, err = rowContainer.GetNullBucketRows(hCtx, probeSideRow, probeKeyNullBits, e.probeWorkers[workerID].buildSideRows, e.probeWorkers[workerID].needCheckBuildRowPos, e.probeWorkers[workerID].needCheckProbeRowPos) + buildSideRows := e.probeWorkers[workerID].buildSideRows if err != nil { joinResult.err = err return false, joinResult } if len(buildSideRows) != 0 { - iter1 := chunk.NewIterator4Slice(buildSideRows) - defer chunk.FreeIterator(iter1) + iter1 := e.probeWorkers[workerID].rowIters + iter1.Reset(buildSideRows) for iter1.Begin(); iter1.Current() != iter1.End(); { - matched, _, err := e.joiners[workerID].tryToMatchInners(probeSideRow, iter1, joinResult.chk) + matched, _, err := e.probeWorkers[workerID].joiner.tryToMatchInners(probeSideRow, iter1, joinResult.chk) if err != nil { joinResult.err = err return false, joinResult @@ -824,8 +828,8 @@ func (e *HashJoinExec) joinNAASJMatchProbeSideRow2Chunk(workerID uint, probeKey } } // Step2: match all hash table bucket build rows. - e.buildSideRows[workerID], err = rowContainer.GetAllMatchedRows(hCtx, probeSideRow, probeKeyNullBits, e.buildSideRows[workerID], e.needCheckBuildRowPos[workerID], e.needCheckProbeRowPos[workerID]) - buildSideRows = e.buildSideRows[workerID] + e.probeWorkers[workerID].buildSideRows, err = rowContainer.GetAllMatchedRows(hCtx, probeSideRow, probeKeyNullBits, e.probeWorkers[workerID].buildSideRows, e.probeWorkers[workerID].needCheckBuildRowPos, e.probeWorkers[workerID].needCheckProbeRowPos) + buildSideRows = e.probeWorkers[workerID].buildSideRows if err != nil { joinResult.err = err return false, joinResult @@ -833,13 +837,13 @@ func (e *HashJoinExec) joinNAASJMatchProbeSideRow2Chunk(workerID uint, probeKey if len(buildSideRows) == 0 { // when reach here, it means we couldn't return it quickly in null bucket, and same-bucket is empty, // which means NOT IN (empty set) or NOT IN (no valid rows) accept the rhs row. - e.joiners[workerID].onMissMatch(false, probeSideRow, joinResult.chk) + e.probeWorkers[workerID].joiner.onMissMatch(false, probeSideRow, joinResult.chk) return true, joinResult } - iter2 := chunk.NewIterator4Slice(buildSideRows) - defer chunk.FreeIterator(iter2) + iter2 := e.probeWorkers[workerID].rowIters + iter2.Reset(buildSideRows) for iter2.Begin(); iter2.Current() != iter2.End(); { - matched, _, err := e.joiners[workerID].tryToMatchInners(probeSideRow, iter2, joinResult.chk) + matched, _, err := e.probeWorkers[workerID].joiner.tryToMatchInners(probeSideRow, iter2, joinResult.chk) if err != nil { joinResult.err = err return false, joinResult @@ -860,7 +864,7 @@ func (e *HashJoinExec) joinNAASJMatchProbeSideRow2Chunk(workerID uint, probeKey // step3: if we couldn't return it quickly in null bucket and all hash bucket, here means only one cases: // case1: NOT IN (empty set): // empty set comes from no rows from all bucket can pass other condition. we should accept the rhs row. - e.joiners[workerID].onMissMatch(false, probeSideRow, joinResult.chk) + e.probeWorkers[workerID].joiner.onMissMatch(false, probeSideRow, joinResult.chk) return true, joinResult } @@ -900,21 +904,21 @@ func (e *HashJoinExec) joinNAAJMatchProbeSideRow2Chunk(workerID uint, probeKey u func (e *HashJoinExec) joinMatchedProbeSideRow2Chunk(workerID uint, probeKey uint64, probeSideRow chunk.Row, hCtx *hashContext, rowContainer *hashRowContainer, joinResult *hashjoinWorkerResult) (bool, *hashjoinWorkerResult) { var err error - e.buildSideRows[workerID], err = rowContainer.GetMatchedRows(probeKey, probeSideRow, hCtx, e.buildSideRows[workerID]) - buildSideRows := e.buildSideRows[workerID] + e.probeWorkers[workerID].buildSideRows, err = rowContainer.GetMatchedRows(probeKey, probeSideRow, hCtx, e.probeWorkers[workerID].buildSideRows) + buildSideRows := e.probeWorkers[workerID].buildSideRows if err != nil { joinResult.err = err return false, joinResult } if len(buildSideRows) == 0 { - e.joiners[workerID].onMissMatch(false, probeSideRow, joinResult.chk) + e.probeWorkers[workerID].joiner.onMissMatch(false, probeSideRow, joinResult.chk) return true, joinResult } - iter := chunk.NewIterator4Slice(buildSideRows) - defer chunk.FreeIterator(iter) + iter := e.probeWorkers[workerID].rowIters + iter.Reset(buildSideRows) hasMatch, hasNull, ok := false, false, false for iter.Begin(); iter.Current() != iter.End(); { - matched, isNull, err := e.joiners[workerID].tryToMatchInners(probeSideRow, iter, joinResult.chk) + matched, isNull, err := e.probeWorkers[workerID].joiner.tryToMatchInners(probeSideRow, iter, joinResult.chk) if err != nil { joinResult.err = err return false, joinResult @@ -931,7 +935,7 @@ func (e *HashJoinExec) joinMatchedProbeSideRow2Chunk(workerID uint, probeKey uin } } if !hasMatch { - e.joiners[workerID].onMissMatch(hasNull, probeSideRow, joinResult.chk) + e.probeWorkers[workerID].joiner.onMissMatch(hasNull, probeSideRow, joinResult.chk) } return true, joinResult } @@ -1005,7 +1009,7 @@ func (e *HashJoinExec) join2Chunk(workerID uint, probeSideChk *chunk.Chunk, hCtx if isNAAJ { if !selected[i] { // since this is the case of using inner to build, so for an outer row unselected, we should fill the result when it's outer join. - e.joiners[workerID].onMissMatch(false, probeSideChk.GetRow(i), joinResult.chk) + e.probeWorkers[workerID].joiner.onMissMatch(false, probeSideChk.GetRow(i), joinResult.chk) } if hCtx.naHasNull[i] { // here means the probe join connecting column has null value in it and this is special for matching all the hash buckets @@ -1027,7 +1031,7 @@ func (e *HashJoinExec) join2Chunk(workerID uint, probeSideChk *chunk.Chunk, hCtx } else { // since this is the case of using inner to build, so for an outer row unselected, we should fill the result when it's outer join. if !selected[i] || hCtx.hasNull[i] { // process unmatched probe side rows - e.joiners[workerID].onMissMatch(false, probeSideChk.GetRow(i), joinResult.chk) + e.probeWorkers[workerID].joiner.onMissMatch(false, probeSideChk.GetRow(i), joinResult.chk) } else { // process matched probe side rows probeKey, probeRow := hCtx.hashVals[i].Sum64(), probeSideChk.GetRow(i) ok, joinResult = e.joinMatchedProbeSideRow2Chunk(workerID, probeKey, probeRow, hCtx, rowContainer, joinResult) @@ -1106,15 +1110,17 @@ func (e *HashJoinExec) Next(ctx context.Context, req *chunk.Chunk) (err error) { } e.rowContainer = newHashRowContainer(e.ctx, int(e.buildSideEstCount), hCtx, retTypes(e.buildSideExec)) // we shallow copies rowContainer for each probe worker to avoid lock contention - e.rowContainerForProbe = make([]*hashRowContainer, e.concurrency) for i := uint(0); i < e.concurrency; i++ { if i == 0 { - e.rowContainerForProbe[i] = e.rowContainer + e.probeWorkers[i].rowContainerForProbe = e.rowContainer } else { - e.rowContainerForProbe[i] = e.rowContainer.ShallowCopy() + e.probeWorkers[i].rowContainerForProbe = e.rowContainer.ShallowCopy() } } - go util.WithRecovery(func() { + for i := uint(0); i < e.concurrency; i++ { + e.probeWorkers[i].rowIters = chunk.NewIterator4Slice([]chunk.Row{}).(*chunk.Iterator4Slice) + } + e.worker.RunWithRecover(func() { defer trace.StartRegion(ctx, "HashJoinHashTableBuilder").End() e.fetchAndBuildHashTable(ctx) }, e.handleFetchAndBuildHashTablePanic) @@ -1122,7 +1128,7 @@ func (e *HashJoinExec) Next(ctx context.Context, req *chunk.Chunk) (err error) { e.prepared = true } if e.isOuterJoin { - atomic.StoreInt64(&e.requiredRows, int64(req.RequiredRows())) + atomic.StoreInt64(&e.probeSideTupleFetcher.requiredRows, int64(req.RequiredRows())) } req.Reset() @@ -1157,10 +1163,10 @@ func (e *HashJoinExec) fetchAndBuildHashTable(ctx context.Context) { buildSideResultCh := make(chan *chunk.Chunk, 1) doneCh := make(chan struct{}) fetchBuildSideRowsOk := make(chan error, 1) - go util.WithRecovery( + e.worker.RunWithRecover( func() { defer trace.StartRegion(ctx, "HashJoinBuildSideFetcher").End() - e.fetchBuildSideRows(ctx, buildSideResultCh, doneCh) + e.fetchBuildSideRows(ctx, buildSideResultCh, fetchBuildSideRowsOk, doneCh) }, func(r interface{}) { if r != nil { @@ -1204,10 +1210,10 @@ func (e *HashJoinExec) buildHashTableForList(buildSideResultCh <-chan *chunk.Chu defer actionSpill.(*chunk.SpillDiskAction).WaitForTest() } }) - e.ctx.GetSessionVars().StmtCtx.MemTracker.FallbackOldAndSetNewAction(actionSpill) + e.ctx.GetSessionVars().MemTracker.FallbackOldAndSetNewAction(actionSpill) } for chk := range buildSideResultCh { - if e.finished.Load().(bool) { + if e.finished.Load() { return nil } if !e.useOuterToBuild { @@ -1300,8 +1306,8 @@ func (e *NestedLoopApplyExec) Open(ctx context.Context) error { } e.cursor = 0 e.innerRows = e.innerRows[:0] - e.outerChunk = newFirstChunk(e.outerExec) - e.innerChunk = newFirstChunk(e.innerExec) + e.outerChunk = tryNewCacheChunk(e.outerExec) + e.innerChunk = tryNewCacheChunk(e.innerExec) e.innerList = chunk.NewList(retTypes(e.innerExec), e.initCap, e.maxChunkSize) e.memTracker = memory.NewTracker(e.id, -1) diff --git a/executor/join_test.go b/executor/join_test.go index 0b9c1aad9f8be..be006d7dc0063 100644 --- a/executor/join_test.go +++ b/executor/join_test.go @@ -198,9 +198,9 @@ func TestJoin2(t *testing.T) { tk.MustQuery("select /*+ INL_JOIN(t, t1) */ t1.b from t1 join t on t.b=t1.b").Check(testkit.Rows("2", "3")) tk.MustQuery("select /*+ INL_HASH_JOIN(t, t1) */ t1.b from t1 join t on t.b=t1.b").Sort().Check(testkit.Rows("2", "3")) tk.MustQuery("select /*+ INL_MERGE_JOIN(t, t1) */ t1.b from t1 join t on t.b=t1.b").Check(testkit.Rows("2", "3")) - tk.MustQuery("select /*+ INL_JOIN(t1) */ * from t right outer join t1 on t.a=t1.a").Check(testkit.Rows("1 1 1 2", "1 1 1 3", "1 1 1 4", "3 3 3 4", " 4 5")) - tk.MustQuery("select /*+ INL_HASH_JOIN(t1) */ * from t right outer join t1 on t.a=t1.a").Check(testkit.Rows("1 1 1 2", "1 1 1 3", "1 1 1 4", "3 3 3 4", " 4 5")) - tk.MustQuery("select /*+ INL_MERGE_JOIN(t1) */ * from t right outer join t1 on t.a=t1.a").Check(testkit.Rows("1 1 1 2", "1 1 1 3", "1 1 1 4", "3 3 3 4", " 4 5")) + tk.MustQuery("select /*+ INL_JOIN(t1) */ * from t right outer join t1 on t.a=t1.a").Sort().Check(testkit.Rows("1 1 1 2", "1 1 1 3", "1 1 1 4", "3 3 3 4", " 4 5")) + tk.MustQuery("select /*+ INL_HASH_JOIN(t1) */ * from t right outer join t1 on t.a=t1.a").Sort().Check(testkit.Rows("1 1 1 2", "1 1 1 3", "1 1 1 4", "3 3 3 4", " 4 5")) + tk.MustQuery("select /*+ INL_MERGE_JOIN(t1) */ * from t right outer join t1 on t.a=t1.a").Sort().Check(testkit.Rows("1 1 1 2", "1 1 1 3", "1 1 1 4", "3 3 3 4", " 4 5")) tk.MustQuery("select /*+ INL_JOIN(t) */ avg(t.b) from t right outer join t1 on t.a=t1.a").Check(testkit.Rows("1.5000")) tk.MustQuery("select /*+ INL_HASH_JOIN(t) */ avg(t.b) from t right outer join t1 on t.a=t1.a").Check(testkit.Rows("1.5000")) tk.MustQuery("select /*+ INL_MERGE_JOIN(t) */ avg(t.b) from t right outer join t1 on t.a=t1.a").Check(testkit.Rows("1.5000")) @@ -1222,6 +1222,7 @@ func TestIndexLookupJoin(t *testing.T) { store := testkit.CreateMockStore(t) tk := testkit.NewTestKit(t, store) tk.MustExec("use test") + tk.MustExec("set tidb_cost_model_version=2") tk.MustExec("set @@tidb_init_chunk_size=2") tk.MustExec("DROP TABLE IF EXISTS t") tk.MustExec("CREATE TABLE `t` (`a` int, pk integer auto_increment,`b` char (20),primary key (pk))") @@ -1361,9 +1362,9 @@ func TestIndexLookupJoin(t *testing.T) { " ├─TableReader(Build) 64.00 root data:Selection", " │ └─Selection 64.00 cop[tikv] not(isnull(test.t.b))", " │ └─TableFullScan 64.00 cop[tikv] table:t keep order:false", - " └─IndexReader(Probe) 1.00 root index:Selection", - " └─Selection 1.00 cop[tikv] not(isnull(test.s.a)), not(isnull(test.s.b))", - " └─IndexRangeScan 1.00 cop[tikv] table:s, index:idx(a, b) range: decided by [eq(test.s.a, test.t.a) lt(test.s.b, test.t.b)], keep order:false")) + " └─IndexReader(Probe) 64.00 root index:Selection", + " └─Selection 64.00 cop[tikv] not(isnull(test.s.a)), not(isnull(test.s.b))", + " └─IndexRangeScan 64.00 cop[tikv] table:s, index:idx(a, b) range: decided by [eq(test.s.a, test.t.a) lt(test.s.b, test.t.b)], keep order:false")) tk.MustQuery("select /*+ TIDB_INLJ(s) */ count(*) from t join s use index(idx) on s.a = t.a and s.b < t.b").Check(testkit.Rows("64")) tk.MustExec("set @@tidb_index_lookup_join_concurrency=1;") tk.MustQuery("select /*+ TIDB_INLJ(s) */ count(*) from t join s use index(idx) on s.a = t.a and s.b < t.b").Check(testkit.Rows("64")) @@ -1374,9 +1375,9 @@ func TestIndexLookupJoin(t *testing.T) { " ├─TableReader(Build) 64.00 root data:Selection", " │ └─Selection 64.00 cop[tikv] not(isnull(test.t.b))", " │ └─TableFullScan 64.00 cop[tikv] table:t keep order:false", - " └─IndexReader(Probe) 1.00 root index:Selection", - " └─Selection 1.00 cop[tikv] not(isnull(test.s.a)), not(isnull(test.s.b))", - " └─IndexRangeScan 1.00 cop[tikv] table:s, index:idx(a, b) range: decided by [eq(test.s.a, test.t.a) lt(test.s.b, test.t.b)], keep order:true", + " └─IndexReader(Probe) 64.00 root index:Selection", + " └─Selection 64.00 cop[tikv] not(isnull(test.s.a)), not(isnull(test.s.b))", + " └─IndexRangeScan 64.00 cop[tikv] table:s, index:idx(a, b) range: decided by [eq(test.s.a, test.t.a) lt(test.s.b, test.t.b)], keep order:true", )) tk.MustQuery("select /*+ INL_MERGE_JOIN(s) */ count(*) from t join s use index(idx) on s.a = t.a and s.b < t.b").Check(testkit.Rows("64")) tk.MustExec("set @@tidb_index_lookup_join_concurrency=1;") @@ -1388,9 +1389,9 @@ func TestIndexLookupJoin(t *testing.T) { " ├─TableReader(Build) 64.00 root data:Selection", " │ └─Selection 64.00 cop[tikv] not(isnull(test.t.b))", " │ └─TableFullScan 64.00 cop[tikv] table:t keep order:false", - " └─IndexReader(Probe) 1.00 root index:Selection", - " └─Selection 1.00 cop[tikv] not(isnull(test.s.a)), not(isnull(test.s.b))", - " └─IndexRangeScan 1.00 cop[tikv] table:s, index:idx(a, b) range: decided by [eq(test.s.a, test.t.a) lt(test.s.b, test.t.b)], keep order:false", + " └─IndexReader(Probe) 64.00 root index:Selection", + " └─Selection 64.00 cop[tikv] not(isnull(test.s.a)), not(isnull(test.s.b))", + " └─IndexRangeScan 64.00 cop[tikv] table:s, index:idx(a, b) range: decided by [eq(test.s.a, test.t.a) lt(test.s.b, test.t.b)], keep order:false", )) tk.MustQuery("select /*+ INL_HASH_JOIN(s) */ count(*) from t join s use index(idx) on s.a = t.a and s.b < t.b").Check(testkit.Rows("64")) tk.MustExec("set @@tidb_index_lookup_join_concurrency=1;") @@ -1411,6 +1412,7 @@ func TestIndexNestedLoopHashJoin(t *testing.T) { store := testkit.CreateMockStore(t) tk := testkit.NewTestKit(t, store) tk.MustExec("use test") + tk.MustExec("set tidb_cost_model_version=2") tk.MustExec("set @@tidb_init_chunk_size=2") tk.MustExec("set @@tidb_index_join_batch_size=10") tk.MustExec("DROP TABLE IF EXISTS t, s") @@ -1434,8 +1436,8 @@ func TestIndexNestedLoopHashJoin(t *testing.T) { "IndexHashJoin 100.00 root left outer join, inner:TableReader, outer key:test.t.a, inner key:test.s.a, equal cond:eq(test.t.a, test.s.a)", "├─TableReader(Build) 100.00 root data:TableFullScan", "│ └─TableFullScan 100.00 cop[tikv] table:t keep order:true", - "└─TableReader(Probe) 1.00 root data:TableRangeScan", - " └─TableRangeScan 1.00 cop[tikv] table:s range: decided by [test.t.a], keep order:false", + "└─TableReader(Probe) 100.00 root data:TableRangeScan", + " └─TableRangeScan 100.00 cop[tikv] table:s range: decided by [test.t.a], keep order:false", )) rs := tk.MustQuery("select /*+ INL_HASH_JOIN(s) */ * from t left join s on t.a=s.a order by t.pk") for i, row := range rs.Rows() { @@ -1471,21 +1473,21 @@ func TestIndexNestedLoopHashJoin(t *testing.T) { " ├─TableReader(Build) 9.00 root data:Selection", " │ └─Selection 9.00 cop[tikv] not(isnull(test.t.l_suppkey))", " │ └─TableFullScan 9.00 cop[tikv] table:l1 keep order:false", - " └─IndexLookUp(Probe) 3.00 root ", - " ├─IndexRangeScan(Build) 3.00 cop[tikv] table:l2, index:PRIMARY(l_orderkey, l_linenumber) range: decided by [eq(test.t.l_orderkey, test.t.l_orderkey)], keep order:false", - " └─Selection(Probe) 3.00 cop[tikv] not(isnull(test.t.l_suppkey))", - " └─TableRowIDScan 3.00 cop[tikv] table:l2 keep order:false")) + " └─IndexLookUp(Probe) 27.00 root ", + " ├─IndexRangeScan(Build) 27.00 cop[tikv] table:l2, index:PRIMARY(l_orderkey, l_linenumber) range: decided by [eq(test.t.l_orderkey, test.t.l_orderkey)], keep order:false", + " └─Selection(Probe) 27.00 cop[tikv] not(isnull(test.t.l_suppkey))", + " └─TableRowIDScan 27.00 cop[tikv] table:l2 keep order:false")) tk.MustQuery("select * from t l1 where exists ( select * from t l2 where l2.l_orderkey = l1.l_orderkey and l2.l_suppkey <> l1.l_suppkey )order by `l_orderkey`,`l_linenumber`;").Check(testkit.Rows("0 0 0 0", "0 1 0 1", "0 2 0 0", "1 0 1 0", "1 1 1 1", "1 2 1 0", "2 0 0 0", "2 1 0 1", "2 2 0 0")) tk.MustQuery("desc format = 'brief' select count(*) from t l1 where exists ( select * from t l2 where l2.l_orderkey = l1.l_orderkey and l2.l_suppkey <> l1.l_suppkey );").Check(testkit.Rows( - "StreamAgg 1.00 root funcs:count(1)->Column#11", + "HashAgg 1.00 root funcs:count(1)->Column#11", "└─IndexHashJoin 7.20 root semi join, inner:IndexLookUp, outer key:test.t.l_orderkey, inner key:test.t.l_orderkey, equal cond:eq(test.t.l_orderkey, test.t.l_orderkey), other cond:ne(test.t.l_suppkey, test.t.l_suppkey)", " ├─TableReader(Build) 9.00 root data:Selection", " │ └─Selection 9.00 cop[tikv] not(isnull(test.t.l_suppkey))", " │ └─TableFullScan 9.00 cop[tikv] table:l1 keep order:false", - " └─IndexLookUp(Probe) 3.00 root ", - " ├─IndexRangeScan(Build) 3.00 cop[tikv] table:l2, index:PRIMARY(l_orderkey, l_linenumber) range: decided by [eq(test.t.l_orderkey, test.t.l_orderkey)], keep order:false", - " └─Selection(Probe) 3.00 cop[tikv] not(isnull(test.t.l_suppkey))", - " └─TableRowIDScan 3.00 cop[tikv] table:l2 keep order:false")) + " └─IndexLookUp(Probe) 27.00 root ", + " ├─IndexRangeScan(Build) 27.00 cop[tikv] table:l2, index:PRIMARY(l_orderkey, l_linenumber) range: decided by [eq(test.t.l_orderkey, test.t.l_orderkey)], keep order:false", + " └─Selection(Probe) 27.00 cop[tikv] not(isnull(test.t.l_suppkey))", + " └─TableRowIDScan 27.00 cop[tikv] table:l2 keep order:false")) tk.MustQuery("select count(*) from t l1 where exists ( select * from t l2 where l2.l_orderkey = l1.l_orderkey and l2.l_suppkey <> l1.l_suppkey );").Check(testkit.Rows("9")) tk.MustExec("DROP TABLE IF EXISTS t, s") @@ -1579,9 +1581,9 @@ func TestIssue13449(t *testing.T) { "IndexHashJoin 12487.50 root inner join, inner:IndexReader, outer key:test.t.a, inner key:test.s.a, equal cond:eq(test.t.a, test.s.a)", "├─IndexReader(Build) 9990.00 root index:IndexFullScan", "│ └─IndexFullScan 9990.00 cop[tikv] table:t, index:a(a) keep order:true, stats:pseudo", - "└─IndexReader(Probe) 1.25 root index:Selection", - " └─Selection 1.25 cop[tikv] not(isnull(test.s.a))", - " └─IndexRangeScan 1.25 cop[tikv] table:s, index:a(a) range: decided by [eq(test.s.a, test.t.a)], keep order:false, stats:pseudo")) + "└─IndexReader(Probe) 12487.50 root index:Selection", + " └─Selection 12487.50 cop[tikv] not(isnull(test.s.a))", + " └─IndexRangeScan 12500.00 cop[tikv] table:s, index:a(a) range: decided by [eq(test.s.a, test.t.a)], keep order:false, stats:pseudo")) tk.MustQuery("select /*+ INL_HASH_JOIN(s) */ * from t join s on t.a=s.a order by t.a;").Check(testkit.Rows("1 1", "128 128")) } @@ -2177,11 +2179,11 @@ func TestOuterTableBuildHashTableIsuse13933(t *testing.T) { "IndexHashJoin 12475.01 root left outer join, inner:IndexLookUp, outer key:test.t.b, inner key:test.s.b, equal cond:eq(test.t.b, test.s.b), other cond:lt(test.s.a, test.t.a)", "├─TableReader(Build) 10000.00 root data:TableFullScan", "│ └─TableFullScan 10000.00 cop[tikv] table:t keep order:false, stats:pseudo", - "└─IndexLookUp(Probe) 1.25 root ", - " ├─Selection(Build) 1.25 cop[tikv] not(isnull(test.s.b))", - " │ └─IndexRangeScan 1.25 cop[tikv] table:s, index:b(b) range: decided by [eq(test.s.b, test.t.b)], keep order:false, stats:pseudo", - " └─Selection(Probe) 1.25 cop[tikv] not(isnull(test.s.a))", - " └─TableRowIDScan 1.25 cop[tikv] table:s keep order:false, stats:pseudo")) + "└─IndexLookUp(Probe) 12475.01 root ", + " ├─Selection(Build) 12487.50 cop[tikv] not(isnull(test.s.b))", + " │ └─IndexRangeScan 12500.00 cop[tikv] table:s, index:b(b) range: decided by [eq(test.s.b, test.t.b)], keep order:false, stats:pseudo", + " └─Selection(Probe) 12475.01 cop[tikv] not(isnull(test.s.a))", + " └─TableRowIDScan 12487.50 cop[tikv] table:s keep order:false, stats:pseudo")) } func TestIssue13177(t *testing.T) { @@ -2769,6 +2771,88 @@ func TestIssue31129(t *testing.T) { require.NoError(t, failpoint.Disable(fpName2)) } +func TestIssue37932(t *testing.T) { + store := testkit.CreateMockStore(t) + tk1 := testkit.NewTestKit(t, store) + tk2 := testkit.NewTestKit(t, store) + tk1.MustExec("use test") + tk2.MustExec("use test") + tk1.MustExec("create table tbl_1 ( col_1 set ( 'Alice','Bob','Charlie','David' ) not null default 'Alice' ,col_2 tinyint unsigned ,col_3 decimal ( 34 , 3 ) not null default 79 ,col_4 bigint unsigned not null ,col_5 bit ( 12 ) not null , unique key idx_1 ( col_2 ) ,unique key idx_2 ( col_2 ) ) charset utf8mb4 collate utf8mb4_bin ;") + tk1.MustExec("create table tbl_2 ( col_6 text ( 52 ) collate utf8_unicode_ci not null ,col_7 int unsigned not null ,col_8 blob ( 369 ) ,col_9 bit ( 51 ) ,col_10 decimal ( 38 , 16 ) , unique key idx_3 ( col_7 ) ,unique key idx_4 ( col_7 ) ) charset utf8 collate utf8_unicode_ci ;") + tk1.MustExec("create table tbl_3 ( col_11 set ( 'Alice','Bob','Charlie','David' ) not null ,col_12 bigint unsigned not null default 1678891638492596595 ,col_13 text ( 18 ) ,col_14 set ( 'Alice','Bob','Charlie','David' ) not null default 'Alice' ,col_15 mediumint , key idx_5 ( col_12 ) ,unique key idx_6 ( col_12 ) ) charset utf8mb4 collate utf8mb4_general_ci ;") + tk1.MustExec("create table tbl_4 ( col_16 set ( 'Alice','Bob','Charlie','David' ) not null ,col_17 tinyint unsigned ,col_18 int unsigned not null default 4279145838 ,col_19 varbinary ( 210 ) not null ,col_20 timestamp , primary key ( col_18 ) /*T![clustered_index] nonclustered */ ,key idx_8 ( col_19 ) ) charset utf8mb4 collate utf8mb4_unicode_ci ;") + tk1.MustExec("create table tbl_5 ( col_21 bigint ,col_22 set ( 'Alice','Bob','Charlie','David' ) ,col_23 blob ( 311 ) ,col_24 bigint unsigned not null default 3415443099312152509 ,col_25 time , unique key idx_9 ( col_21 ) ,unique key idx_10 ( col_21 ) ) charset gbk collate gbk_bin ;") + tk1.MustExec("insert into tbl_1 values ( 'Bob',null,0.04,2650749963804575036,4044 );") + tk1.MustExec("insert into tbl_1 values ( 'Alice',171,1838.2,6452757231340518222,1190 );") + tk1.MustExec("insert into tbl_1 values ( 'Bob',202,2.962,4304284252076747481,2112 );") + tk1.MustExec("insert into tbl_1 values ( 'David',155,32610.05,5899651588546531414,104 );") + tk1.MustExec("insert into tbl_1 values ( 'Charlie',52,4219.7,6151233689319516187,1246 );") + tk1.MustExec("insert into tbl_1 values ( 'Bob',55,3963.11,3614977408465893392,1188 );") + tk1.MustExec("insert into tbl_1 values ( 'Alice',203,72.01,1553550133494908281,1658 );") + tk1.MustExec("insert into tbl_1 values ( 'Bob',40,871.569,8114062926218465773,1397 );") + tk1.MustExec("insert into tbl_1 values ( 'Alice',165,7765,4481202107781982005,2089 );") + tk1.MustExec("insert into tbl_1 values ( 'David',79,7.02,993594504887208796,514 );") + tk1.MustExec("insert into tbl_2 values ( 'iB_%7c&q!6-gY4bkvg',2064909882,'dLN52t1YZSdJ',2251679806445488,32 );") + tk1.MustExec("insert into tbl_2 values ( 'h_',1478443689,'EqP+iN=',180492371752598,0.1 );") + tk1.MustExec("insert into tbl_2 values ( 'U@U&*WKfPzil=6YaDxp',4271201457,'QWuo24qkSSo',823931105457505,88514 );") + tk1.MustExec("insert into tbl_2 values ( 'FR4GA=',505128825,'RpEmV6ph5Z7',568030123046798,609381 );") + tk1.MustExec("insert into tbl_2 values ( '3GsU',166660047,'',1061132816887762,6.4605 );") + tk1.MustExec("insert into tbl_2 values ( 'BA4hPRD0lm*pbg#NE',3440634757,'7gUPe2',288001159469205,6664.9 );") + tk1.MustExec("insert into tbl_2 values ( '+z',2117152318,'WTkD(N',215697667226264,7.88 );") + tk1.MustExec("insert into tbl_2 values ( 'x@SPhy9lOomPa4LF',2881759652,'ETUXQQ0b4HnBSKgTWIU',153379720424625,null );") + tk1.MustExec("insert into tbl_2 values ( '',2075177391,'MPae!9%ufd',115899580476733,341.23 );") + tk1.MustExec("insert into tbl_2 values ( '~udi',1839363347,'iQj$$YsZc5ULTxG)yH',111454353417190,6.6 );") + tk1.MustExec("insert into tbl_3 values ( 'Alice',7032411265967085555,'P7*KBZ159','Alice',7516989 );") + tk1.MustExec("insert into tbl_3 values ( 'David',486417871670147038,'','Charlie',-2135446 );") + tk1.MustExec("insert into tbl_3 values ( 'Charlie',5784081664185069254,'7V_&YzKM~Q','Charlie',5583839 );") + tk1.MustExec("insert into tbl_3 values ( 'David',6346366522897598558,')Lp&$2)SC@','Bob',2522913 );") + tk1.MustExec("insert into tbl_3 values ( 'Charlie',224922711063053272,'gY','David',6624398 );") + tk1.MustExec("insert into tbl_3 values ( 'Alice',4678579167560495958,'fPIXY%R8WyY(=u&O','David',-3267160 );") + tk1.MustExec("insert into tbl_3 values ( 'David',8817108026311573677,'Cs0dZW*SPnKhV1','Alice',2359718 );") + tk1.MustExec("insert into tbl_3 values ( 'Bob',3177426155683033662,'o2=@zv2qQDhKUs)4y','Bob',-8091802 );") + tk1.MustExec("insert into tbl_3 values ( 'Bob',2543586640437235142,'hDa*CsOUzxmjf2m','Charlie',-8091935 );") + tk1.MustExec("insert into tbl_3 values ( 'Charlie',6204182067887668945,'DX-!=)dbGPQO','David',-1954600 );") + tk1.MustExec("insert into tbl_4 values ( 'David',167,576262750,'lX&x04W','2035-09-28' );") + tk1.MustExec("insert into tbl_4 values ( 'Charlie',236,2637776757,'92OhsL!w%7','2036-02-08' );") + tk1.MustExec("insert into tbl_4 values ( 'Bob',68,1077999933,'M0l','1997-09-16' );") + tk1.MustExec("insert into tbl_4 values ( 'Charlie',184,1280264753,'FhjkfeXsK1Q(','2030-03-16' );") + tk1.MustExec("insert into tbl_4 values ( 'Alice',10,2150711295,'Eqip)^tr*MoL','2032-07-02' );") + tk1.MustExec("insert into tbl_4 values ( 'Bob',108,2421602476,'Eul~~Df_Q8s&I3Y-7','2019-06-10' );") + tk1.MustExec("insert into tbl_4 values ( 'Alice',36,2811198561,'%XgRou0#iKtn*','2022-06-13' );") + tk1.MustExec("insert into tbl_4 values ( 'Charlie',115,330972286,'hKeJS','2000-11-15' );") + tk1.MustExec("insert into tbl_4 values ( 'Alice',6,2958326555,'c6+=1','2001-02-11' );") + tk1.MustExec("insert into tbl_4 values ( 'Alice',99,387404826,'figc(@9R*k3!QM_Vve','2036-02-17' );") + tk1.MustExec("insert into tbl_5 values ( -401358236474313609,'Charlie','4J$',701059766304691317,'08:19:10.00' );") + tk1.MustExec("insert into tbl_5 values ( 2759837898825557143,'Bob','E',5158554038674310466,'11:04:03.00' );") + tk1.MustExec("insert into tbl_5 values ( 273910054423832204,'Alice',null,8944547065167499612,'08:02:30.00' );") + tk1.MustExec("insert into tbl_5 values ( 2875669873527090798,'Alice','4^SpR84',4072881341903432150,'18:24:55.00' );") + tk1.MustExec("insert into tbl_5 values ( -8446590100588981557,'David','yBj8',8760380566452862549,'09:01:10.00' );") + tk1.MustExec("insert into tbl_5 values ( -1075861460175889441,'Charlie','ti11Pl0lJ',9139997565676405627,'08:30:14.00' );") + tk1.MustExec("insert into tbl_5 values ( 95663565223131772,'Alice','6$',8467839300407531400,'23:31:42.00' );") + tk1.MustExec("insert into tbl_5 values ( -5661709703968335255,'Charlie','',8122758569495329946,'19:36:24.00' );") + tk1.MustExec("insert into tbl_5 values ( 3338588216091909518,'Bob','',6558557574025196860,'15:22:56.00' );") + tk1.MustExec("insert into tbl_5 values ( 8918630521194612922,'David','I$w',5981981639362947650,'22:03:24.00' );") + tk1.MustExec("begin pessimistic;") + tk1.MustExec("insert ignore into tbl_1 set col_1 = 'David', col_2 = 110, col_3 = 37065, col_4 = 8164500960513474805, col_5 = 1264 on duplicate key update col_3 = 22151.5, col_4 = 6266058887081523571, col_5 = 3254, col_2 = 59, col_1 = 'Bob';") + tk1.MustExec("insert into tbl_4 (col_16,col_17,col_18,col_19,col_20) values ( 'Charlie',34,2499970462,'Z','1978-10-27' ) ,( 'David',217,1732485689,'*)~@@Q8ryi','2004-12-01' ) ,( 'Charlie',40,1360558255,'H(Y','1998-06-25' ) ,( 'Alice',108,2973455447,'%CcP4$','1979-03-28' ) ,( 'David',9,3835209932,'tdKXUzLmAzwFf$','2009-03-03' ) ,( 'David',68,163270003,'uimsclz@FQJN','1988-09-11' ) ,( 'Alice',76,297067264,'BzFF','1989-01-05' ) on duplicate key update col_16 = 'Charlie', col_17 = 14, col_18 = 4062155275, col_20 = '2002-03-07', col_19 = 'tmvchLzp*o8';") + tk2.MustExec("delete from tbl_3 where tbl_3.col_13 in ( null ,'' ,'g8EEzUU7LQ' ,'~fC3&B*cnOOx_' ,'%RF~AFto&x' ,'NlWkMWG^00' ,'e^4o2Ji^q_*Fa52Z' ) ;") + tk2.MustExec("delete from tbl_5 where not( tbl_5.col_21 between -1075861460175889441 and 3338588216091909518 ) ;") + tk1.MustExec("replace into tbl_1 (col_1,col_2,col_3,col_4,col_5) values ( 'Alice',83,8.33,4070808626051569664,455 ) ,( 'Alice',53,2.8,2763362085715461014,1912 ) ,( 'David',178,4242.8,962727993466011464,1844 ) ,( 'Alice',16,650054,5638988670318229867,565 ) ,( 'Alice',76,89783.1,3968605744540056024,2563 ) ,( 'Bob',120,0.89,1003144931151245839,2670 );") + tk1.MustExec("delete from tbl_5 where col_24 is null ;") + tk1.MustExec("delete from tbl_3 where tbl_3.col_11 in ( 'Alice' ,'Bob' ,'Alice' ) ;") + tk2.MustExec("insert into tbl_3 set col_11 = 'Bob', col_12 = 5701982550256146475, col_13 = 'Hhl)yCsQ2K3cfc^', col_14 = 'Alice', col_15 = -3718868 on duplicate key update col_15 = 7210750, col_12 = 6133680876296985245, col_14 = 'Alice', col_11 = 'David', col_13 = 'F+RMGE!_2^Cfr3Fw';") + tk2.MustExec("insert ignore into tbl_5 set col_21 = 2439343116426563397, col_22 = 'Charlie', col_23 = '~Spa2YzRFFom16XD', col_24 = 5571575017340582365, col_25 = '13:24:38.00' ;") + err := tk1.ExecToErr("update tbl_4 set tbl_4.col_20 = '2006-01-24' where tbl_4.col_18 in ( select col_11 from tbl_3 where IsNull( tbl_4.col_16 ) or not( tbl_4.col_19 in ( select col_3 from tbl_1 where tbl_4.col_16 between 'Alice' and 'David' and tbl_4.col_19 <= '%XgRou0#iKtn*' ) ) ) ;") + if err != nil { + print(err.Error()) + if strings.Contains(err.Error(), "Truncated incorrect DOUBLE value") { + t.Log("Truncated incorrect DOUBLE value is within expectations, skipping") + return + } + } + require.NoError(t, err) +} + func TestOuterJoin(t *testing.T) { store := testkit.CreateMockStore(t) tk := testkit.NewTestKit(t, store) diff --git a/executor/kvtest/main_test.go b/executor/kvtest/main_test.go index 4ca44232f2973..592d8ba5276bf 100644 --- a/executor/kvtest/main_test.go +++ b/executor/kvtest/main_test.go @@ -35,6 +35,7 @@ func TestMain(m *testing.M) { opts := []goleak.Option{ goleak.IgnoreTopFunction("github.com/golang/glog.(*loggingT).flushDaemon"), + goleak.IgnoreTopFunction("github.com/lestrrat-go/httprc.runFetchWorker"), goleak.IgnoreTopFunction("go.etcd.io/etcd/client/pkg/v3/logutil.(*MergeLogger).outputLoop"), goleak.IgnoreTopFunction("go.opencensus.io/stats/view.(*worker).start"), goleak.IgnoreTopFunction("gopkg.in/natefinch/lumberjack%2ev2.(*Logger).millRun"), diff --git a/executor/lock_stats.go b/executor/lock_stats.go new file mode 100644 index 0000000000000..540670e8119fc --- /dev/null +++ b/executor/lock_stats.go @@ -0,0 +1,157 @@ +// Copyright 2018 PingCAP, Inc. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +package executor + +import ( + "context" + + "github.com/pingcap/errors" + "github.com/pingcap/tidb/domain" + "github.com/pingcap/tidb/parser/ast" + "github.com/pingcap/tidb/util/chunk" +) + +var _ Executor = &LockStatsExec{} +var _ Executor = &UnlockStatsExec{} + +// LockStatsExec represents a lock statistic executor. +type LockStatsExec struct { + baseExecutor + Tables []*ast.TableName +} + +// lockStatsVarKeyType is a dummy type to avoid naming collision in context. +type lockStatsVarKeyType int + +// String defines a Stringer function for debugging and pretty printing. +func (k lockStatsVarKeyType) String() string { + return "lock_stats_var" +} + +// LockStatsVarKey is a variable key for lock statistic. +const LockStatsVarKey lockStatsVarKeyType = 0 + +// Next implements the Executor Next interface. +func (e *LockStatsExec) Next(ctx context.Context, req *chunk.Chunk) error { + do := domain.GetDomain(e.ctx) + is := do.InfoSchema() + h := do.StatsHandle() + if h == nil { + return errors.New("Lock Stats: handle is nil") + } + + tableNum := len(e.Tables) + if tableNum == 0 { + return errors.New("Lock Stats: table should not empty ") + } + + tids := make([]int64, 0, len(e.Tables)) + pids := make([]int64, 0) + for _, table := range e.Tables { + tbl, err := is.TableByName(table.Schema, table.Name) + if err != nil { + return err + } + tids = append(tids, tbl.Meta().ID) + + pi := tbl.Meta().GetPartitionInfo() + if pi == nil { + continue + } + for _, p := range pi.Definitions { + pids = append(pids, p.ID) + } + } + msg, err := h.AddLockedTables(tids, pids, e.Tables) + if msg != "" { + e.ctx.GetSessionVars().StmtCtx.AppendWarning(errors.New(msg)) + } + return err +} + +// Close implements the Executor Close interface. +func (e *LockStatsExec) Close() error { + return nil +} + +// Open implements the Executor Open interface. +func (e *LockStatsExec) Open(ctx context.Context) error { + return nil +} + +// UnlockStatsExec represents a unlock statistic executor. +type UnlockStatsExec struct { + baseExecutor + Tables []*ast.TableName +} + +// unlockStatsVarKeyType is a dummy type to avoid naming collision in context. +type unlockStatsVarKeyType int + +// String defines a Stringer function for debugging and pretty printing. +func (k unlockStatsVarKeyType) String() string { + return "unlock_stats_var" +} + +// UnlockStatsVarKey is a variable key for unlock statistic. +const UnlockStatsVarKey unlockStatsVarKeyType = 0 + +// Next implements the Executor Next interface. +func (e *UnlockStatsExec) Next(ctx context.Context, req *chunk.Chunk) error { + do := domain.GetDomain(e.ctx) + is := do.InfoSchema() + h := do.StatsHandle() + if h == nil { + return errors.New("Unlock Stats: handle is nil") + } + + tableNum := len(e.Tables) + if tableNum == 0 { + return errors.New("Unlock Stats: table should not empty ") + } + + tids := make([]int64, 0, len(e.Tables)) + pids := make([]int64, 0) + for _, table := range e.Tables { + tbl, err := is.TableByName(table.Schema, table.Name) + if err != nil { + return err + } + tids = append(tids, tbl.Meta().ID) + + pi := tbl.Meta().GetPartitionInfo() + if pi == nil { + continue + } + for _, p := range pi.Definitions { + pids = append(pids, p.ID) + } + } + msg, err := h.RemoveLockedTables(tids, pids, e.Tables) + if msg != "" { + e.ctx.GetSessionVars().StmtCtx.AppendWarning(errors.New(msg)) + } + return err +} + +// Close implements the Executor Close interface. +func (e *UnlockStatsExec) Close() error { + return nil +} + +// Open implements the Executor Open interface. +func (e *UnlockStatsExec) Open(ctx context.Context) error { + return nil +} diff --git a/executor/main_test.go b/executor/main_test.go index f418387a5ed25..512eced5b50fa 100644 --- a/executor/main_test.go +++ b/executor/main_test.go @@ -56,9 +56,11 @@ func TestMain(m *testing.M) { opts := []goleak.Option{ goleak.IgnoreTopFunction("github.com/golang/glog.(*loggingT).flushDaemon"), + goleak.IgnoreTopFunction("github.com/lestrrat-go/httprc.runFetchWorker"), goleak.IgnoreTopFunction("go.etcd.io/etcd/client/pkg/v3/logutil.(*MergeLogger).outputLoop"), goleak.IgnoreTopFunction("gopkg.in/natefinch/lumberjack%2ev2.(*Logger).millRun"), goleak.IgnoreTopFunction("github.com/tikv/client-go/v2/txnkv/transaction.keepAlive"), + goleak.IgnoreTopFunction("go.opencensus.io/stats/view.(*worker).start"), } callback := func(i int) int { testDataMap.GenerateOutputIfNeeded() diff --git a/executor/mem_reader.go b/executor/mem_reader.go index 0fa74bb01271e..3790a5d862539 100644 --- a/executor/mem_reader.go +++ b/executor/mem_reader.go @@ -555,7 +555,8 @@ func (m *memIndexLookUpReader) getMemRows(ctx context.Context) ([][]types.Datum, continue } numHandles += len(handles) - tblKVRanges = append(tblKVRanges, distsql.TableHandlesToKVRanges(getPhysicalTableID(tbl), handles)...) + ranges, _ := distsql.TableHandlesToKVRanges(getPhysicalTableID(tbl), handles) + tblKVRanges = append(tblKVRanges, ranges...) } if numHandles == 0 { return nil, nil @@ -687,7 +688,8 @@ func (m *memIndexMergeReader) getMemRows(ctx context.Context) ([][]types.Datum, continue } numHandles += len(handles) - tblKVRanges = append(tblKVRanges, distsql.TableHandlesToKVRanges(getPhysicalTableID(tbl), handles)...) + ranges, _ := distsql.TableHandlesToKVRanges(getPhysicalTableID(tbl), handles) + tblKVRanges = append(tblKVRanges, ranges...) } if numHandles == 0 { diff --git a/executor/memtest/main_test.go b/executor/memtest/main_test.go index 5d3f98d407583..a3b3edb4ff962 100644 --- a/executor/memtest/main_test.go +++ b/executor/memtest/main_test.go @@ -35,6 +35,7 @@ func TestMain(m *testing.M) { opts := []goleak.Option{ goleak.IgnoreTopFunction("github.com/golang/glog.(*loggingT).flushDaemon"), + goleak.IgnoreTopFunction("github.com/lestrrat-go/httprc.runFetchWorker"), goleak.IgnoreTopFunction("go.etcd.io/etcd/client/pkg/v3/logutil.(*MergeLogger).outputLoop"), goleak.IgnoreTopFunction("go.opencensus.io/stats/view.(*worker).start"), goleak.IgnoreTopFunction("gopkg.in/natefinch/lumberjack%2ev2.(*Logger).millRun"), diff --git a/executor/merge_join.go b/executor/merge_join.go index e8d195e3085ae..a64a9fa0c33dc 100644 --- a/executor/merge_join.go +++ b/executor/merge_join.go @@ -77,7 +77,7 @@ type mergeJoinTable struct { func (t *mergeJoinTable) init(exec *MergeJoinExec) { child := exec.children[t.childIndex] - t.childChunk = newFirstChunk(child) + t.childChunk = tryNewCacheChunk(child) t.childChunkIter = chunk.NewIterator4Chunk(t.childChunk) items := make([]expression.Expression, 0, len(t.joinKeys)) @@ -100,7 +100,7 @@ func (t *mergeJoinTable) init(exec *MergeJoinExec) { actionSpill = t.rowContainer.ActionSpillForTest() } }) - exec.ctx.GetSessionVars().StmtCtx.MemTracker.FallbackOldAndSetNewAction(actionSpill) + exec.ctx.GetSessionVars().MemTracker.FallbackOldAndSetNewAction(actionSpill) } t.memTracker = memory.NewTracker(memory.LabelForInnerTable, -1) } else { diff --git a/executor/merge_join_test.go b/executor/merge_join_test.go index 01d6d37a8cd65..7246589e40412 100644 --- a/executor/merge_join_test.go +++ b/executor/merge_join_test.go @@ -18,6 +18,7 @@ import ( "bytes" "fmt" "math/rand" + "sort" "strconv" "testing" @@ -255,19 +256,28 @@ func TestShuffleMergeJoinInDisk(t *testing.T) { tk.MustExec("set @@tidb_mem_quota_query=1;") tk.MustExec("set @@tidb_merge_join_concurrency=4;") + tk.MustExec("set @@tidb_max_chunk_size=32;") tk.MustExec("drop table if exists t") tk.MustExec("drop table if exists t1") tk.MustExec("create table t(c1 int, c2 int)") tk.MustExec("create table t1(c1 int, c2 int)") - tk.MustExec("insert into t values(1,1)") - tk.MustExec("insert into t1 values(1,3),(4,4)") - + tk.MustExec("insert into t values(1,1),(2,2),(3,3),(4,4)") + for i := 1; i <= 1024; i += 4 { + tk.MustExec(fmt.Sprintf("insert into t1 values(%v,%v),(%v,%v),(%v,%v),(%v,%v)", i, i, i+1, i+1, i+2, i+2, i+3, i+3)) + } result := checkMergeAndRun(tk, t, "select /*+ TIDB_SMJ(t) */ * from t1 left outer join t on t.c1 = t1.c1 where t.c1 = 1 or t1.c2 > 20") - result.Check(testkit.Rows("1 3 1 1")) - require.Equal(t, int64(0), tk.Session().GetSessionVars().StmtCtx.MemTracker.BytesConsumed()) - require.Greater(t, tk.Session().GetSessionVars().StmtCtx.MemTracker.MaxConsumed(), int64(0)) - require.Equal(t, int64(0), tk.Session().GetSessionVars().StmtCtx.DiskTracker.BytesConsumed()) - require.Greater(t, tk.Session().GetSessionVars().StmtCtx.DiskTracker.MaxConsumed(), int64(0)) + + var expect []string + expect = append(expect, "1 1 1 1") + for i := 21; i <= 1024; i++ { + expect = append(expect, fmt.Sprintf("%v %v ", i, i)) + } + sort.Strings(expect) + result.Sort().Check(testkit.Rows(expect...)) + require.Equal(t, int64(0), tk.Session().GetSessionVars().MemTracker.BytesConsumed()) + require.Greater(t, tk.Session().GetSessionVars().MemTracker.MaxConsumed(), int64(0)) + require.Equal(t, int64(0), tk.Session().GetSessionVars().DiskTracker.BytesConsumed()) + require.Greater(t, tk.Session().GetSessionVars().DiskTracker.MaxConsumed(), int64(0)) } func TestMergeJoinInDisk(t *testing.T) { diff --git a/executor/metrics_reader_test.go b/executor/metrics_reader_test.go index 680bfd872e9e3..276c99c8ac22d 100644 --- a/executor/metrics_reader_test.go +++ b/executor/metrics_reader_test.go @@ -64,7 +64,7 @@ func TestStmtLabel(t *testing.T) { stmtNode, err := parser.New().ParseOneStmt(tt.sql, "", "") require.NoError(t, err) preprocessorReturn := &plannercore.PreprocessorReturn{} - err = plannercore.Preprocess(tk.Session(), stmtNode, plannercore.WithPreprocessorReturn(preprocessorReturn)) + err = plannercore.Preprocess(context.Background(), tk.Session(), stmtNode, plannercore.WithPreprocessorReturn(preprocessorReturn)) require.NoError(t, err) _, _, err = planner.Optimize(context.TODO(), tk.Session(), stmtNode, preprocessorReturn.InfoSchema) require.NoError(t, err) diff --git a/executor/oomtest/BUILD.bazel b/executor/oomtest/BUILD.bazel index 029b3b105c8f1..2fd8fe00f7d23 100644 --- a/executor/oomtest/BUILD.bazel +++ b/executor/oomtest/BUILD.bazel @@ -5,9 +5,11 @@ go_test( timeout = "short", srcs = ["oom_test.go"], flaky = True, + race = "on", deps = [ "//testkit", "//testkit/testsetup", + "@com_github_pingcap_failpoint//:failpoint", "@com_github_pingcap_log//:log", "@com_github_stretchr_testify//require", "@org_uber_go_goleak//:goleak", diff --git a/executor/oomtest/oom_test.go b/executor/oomtest/oom_test.go index a8c86388c7bfe..8a9f2c0263d76 100644 --- a/executor/oomtest/oom_test.go +++ b/executor/oomtest/oom_test.go @@ -22,6 +22,7 @@ import ( "sync" "testing" + "github.com/pingcap/failpoint" "github.com/pingcap/log" "github.com/pingcap/tidb/testkit" "github.com/pingcap/tidb/testkit/testsetup" @@ -36,6 +37,7 @@ func TestMain(m *testing.M) { registerHook() opts := []goleak.Option{ goleak.IgnoreTopFunction("github.com/golang/glog.(*loggingT).flushDaemon"), + goleak.IgnoreTopFunction("github.com/lestrrat-go/httprc.runFetchWorker"), goleak.IgnoreTopFunction("go.etcd.io/etcd/client/pkg/v3/logutil.(*MergeLogger).outputLoop"), } goleak.VerifyTestMain(m, opts...) @@ -135,6 +137,7 @@ func TestMemTracker4DeleteExec(t *testing.T) { tk := testkit.NewTestKit(t, store) tk.MustExec("use test") + tk.MustExec("set tidb_cost_model_version=1") tk.MustExec("create table MemTracker4DeleteExec1 (id int, a int, b int, index idx_a(`a`))") tk.MustExec("create table MemTracker4DeleteExec2 (id int, a int, b int, index idx_a(`a`))") @@ -148,6 +151,7 @@ func TestMemTracker4DeleteExec(t *testing.T) { require.Equal(t, "", oom.GetTracker()) tk.MustExec("insert into MemTracker4DeleteExec1 values (1,1,1), (2,2,2), (3,3,3)") tk.Session().GetSessionVars().MemQuotaQuery = 1 + tk.Session().GetSessionVars().MemTracker.SetBytesLimit(1) tk.MustExec("delete from MemTracker4DeleteExec1") require.Equal(t, "expensive_query during bootstrap phase", oom.GetTracker()) @@ -165,6 +169,10 @@ func TestMemTracker4DeleteExec(t *testing.T) { oom.SetTracker("") + require.NoError(t, failpoint.Enable("github.com/pingcap/tidb/store/copr/disableFixedRowCountHint", "return")) + defer func() { + require.NoError(t, failpoint.Disable("github.com/pingcap/tidb/store/copr/disableFixedRowCountHint")) + }() tk.Session().GetSessionVars().EnabledRateLimitAction = true tk.Session().GetSessionVars().MemQuotaQuery = 10000 tk.MustExec("delete MemTracker4DeleteExec1, MemTracker4DeleteExec2 from MemTracker4DeleteExec1 join MemTracker4DeleteExec2 on MemTracker4DeleteExec1.a=MemTracker4DeleteExec2.a") diff --git a/executor/parallel_apply.go b/executor/parallel_apply.go index d0aa68af87d2b..2c4499b14818c 100644 --- a/executor/parallel_apply.go +++ b/executor/parallel_apply.go @@ -107,7 +107,7 @@ func (e *ParallelNestedLoopApplyExec) Open(ctx context.Context) error { e.hasMatch = make([]bool, e.concurrency) e.hasNull = make([]bool, e.concurrency) for i := 0; i < e.concurrency; i++ { - e.innerChunk[i] = newFirstChunk(e.innerExecs[i]) + e.innerChunk[i] = tryNewCacheChunk(e.innerExecs[i]) e.innerList[i] = chunk.NewList(retTypes(e.innerExecs[i]), e.initCap, e.maxChunkSize) e.innerList[i].GetMemTracker().SetLabel(memory.LabelForInnerList) e.innerList[i].GetMemTracker().AttachTo(e.memTracker) @@ -206,7 +206,7 @@ func (e *ParallelNestedLoopApplyExec) outerWorker(ctx context.Context) { var err error for { failpoint.Inject("parallelApplyOuterWorkerPanic", nil) - chk := newFirstChunk(e.outerExec) + chk := tryNewCacheChunk(e.outerExec) if err := Next(ctx, e.outerExec, chk); err != nil { e.putResult(nil, err) return diff --git a/executor/partition_table_test.go b/executor/partition_table_test.go index 0d6b05b7b2640..50bb68a7b5235 100644 --- a/executor/partition_table_test.go +++ b/executor/partition_table_test.go @@ -602,10 +602,10 @@ func TestDirectReadingwithIndexJoin(t *testing.T) { "├─TableReader(Build) 9990.00 root data:Selection", "│ └─Selection 9990.00 cop[tikv] not(isnull(test_dr_join.touter.b))", "│ └─TableFullScan 10000.00 cop[tikv] table:touter keep order:false, stats:pseudo", - "└─IndexLookUp(Probe) 1.25 root partition:all ", - " ├─Selection(Build) 1.25 cop[tikv] not(isnull(test_dr_join.thash.b))", - " │ └─IndexRangeScan 1.25 cop[tikv] table:thash, index:idx_b(b) range: decided by [eq(test_dr_join.thash.b, test_dr_join.touter.b)], keep order:false, stats:pseudo", - " └─TableRowIDScan(Probe) 1.25 cop[tikv] table:thash keep order:false, stats:pseudo")) // check if IndexLookUp is used + "└─IndexLookUp(Probe) 12487.50 root partition:all ", + " ├─Selection(Build) 12487.50 cop[tikv] not(isnull(test_dr_join.thash.b))", + " │ └─IndexRangeScan 12500.00 cop[tikv] table:thash, index:idx_b(b) range: decided by [eq(test_dr_join.thash.b, test_dr_join.touter.b)], keep order:false, stats:pseudo", + " └─TableRowIDScan(Probe) 12487.50 cop[tikv] table:thash keep order:false, stats:pseudo")) // check if IndexLookUp is used tk.MustQuery(queryPartition).Sort().Check(tk.MustQuery(queryRegular).Sort().Rows()) // test tableReader + hash @@ -616,8 +616,8 @@ func TestDirectReadingwithIndexJoin(t *testing.T) { "├─TableReader(Build) 9990.00 root data:Selection", "│ └─Selection 9990.00 cop[tikv] not(isnull(test_dr_join.touter.a))", "│ └─TableFullScan 10000.00 cop[tikv] table:touter keep order:false, stats:pseudo", - "└─TableReader(Probe) 1.00 root partition:all data:TableRangeScan", - " └─TableRangeScan 1.00 cop[tikv] table:thash range: decided by [test_dr_join.touter.a], keep order:false, stats:pseudo")) // check if tableReader is used + "└─TableReader(Probe) 9990.00 root partition:all data:TableRangeScan", + " └─TableRangeScan 9990.00 cop[tikv] table:thash range: decided by [test_dr_join.touter.a], keep order:false, stats:pseudo")) // check if tableReader is used tk.MustQuery(queryPartition).Sort().Check(tk.MustQuery(queryRegular).Sort().Rows()) // test indexReader + hash @@ -628,9 +628,9 @@ func TestDirectReadingwithIndexJoin(t *testing.T) { "├─TableReader(Build) 9990.00 root data:Selection", "│ └─Selection 9990.00 cop[tikv] not(isnull(test_dr_join.touter.b))", "│ └─TableFullScan 10000.00 cop[tikv] table:touter keep order:false, stats:pseudo", - "└─IndexReader(Probe) 1.25 root partition:all index:Selection", - " └─Selection 1.25 cop[tikv] not(isnull(test_dr_join.thash.b))", - " └─IndexRangeScan 1.25 cop[tikv] table:thash, index:idx_b(b) range: decided by [eq(test_dr_join.thash.b, test_dr_join.touter.b)], keep order:false, stats:pseudo")) // check if indexReader is used + "└─IndexReader(Probe) 12487.50 root partition:all index:Selection", + " └─Selection 12487.50 cop[tikv] not(isnull(test_dr_join.thash.b))", + " └─IndexRangeScan 12500.00 cop[tikv] table:thash, index:idx_b(b) range: decided by [eq(test_dr_join.thash.b, test_dr_join.touter.b)], keep order:false, stats:pseudo")) // check if indexReader is used tk.MustQuery(queryPartition).Sort().Check(tk.MustQuery(queryRegular).Sort().Rows()) // test indexLookUp + range @@ -642,10 +642,10 @@ func TestDirectReadingwithIndexJoin(t *testing.T) { "├─TableReader(Build) 9990.00 root data:Selection", "│ └─Selection 9990.00 cop[tikv] not(isnull(test_dr_join.touter.b))", "│ └─TableFullScan 10000.00 cop[tikv] table:touter keep order:false, stats:pseudo", - "└─IndexLookUp(Probe) 1.25 root partition:all ", - " ├─Selection(Build) 1.25 cop[tikv] not(isnull(test_dr_join.trange.b))", - " │ └─IndexRangeScan 1.25 cop[tikv] table:trange, index:idx_b(b) range: decided by [eq(test_dr_join.trange.b, test_dr_join.touter.b)], keep order:false, stats:pseudo", - " └─TableRowIDScan(Probe) 1.25 cop[tikv] table:trange keep order:false, stats:pseudo")) // check if IndexLookUp is used + "└─IndexLookUp(Probe) 12487.50 root partition:all ", + " ├─Selection(Build) 12487.50 cop[tikv] not(isnull(test_dr_join.trange.b))", + " │ └─IndexRangeScan 12500.00 cop[tikv] table:trange, index:idx_b(b) range: decided by [eq(test_dr_join.trange.b, test_dr_join.touter.b)], keep order:false, stats:pseudo", + " └─TableRowIDScan(Probe) 12487.50 cop[tikv] table:trange keep order:false, stats:pseudo")) // check if IndexLookUp is used tk.MustQuery(queryPartition).Sort().Check(tk.MustQuery(queryRegular).Sort().Rows()) // test tableReader + range @@ -656,8 +656,8 @@ func TestDirectReadingwithIndexJoin(t *testing.T) { "├─TableReader(Build) 9990.00 root data:Selection", "│ └─Selection 9990.00 cop[tikv] not(isnull(test_dr_join.touter.a))", "│ └─TableFullScan 10000.00 cop[tikv] table:touter keep order:false, stats:pseudo", - "└─TableReader(Probe) 1.00 root partition:all data:TableRangeScan", - " └─TableRangeScan 1.00 cop[tikv] table:trange range: decided by [test_dr_join.touter.a], keep order:false, stats:pseudo")) // check if tableReader is used + "└─TableReader(Probe) 9990.00 root partition:all data:TableRangeScan", + " └─TableRangeScan 9990.00 cop[tikv] table:trange range: decided by [test_dr_join.touter.a], keep order:false, stats:pseudo")) // check if tableReader is used tk.MustQuery(queryPartition).Sort().Check(tk.MustQuery(queryRegular).Sort().Rows()) // test indexReader + range @@ -669,9 +669,9 @@ func TestDirectReadingwithIndexJoin(t *testing.T) { "├─TableReader(Build) 9990.00 root data:Selection", "│ └─Selection 9990.00 cop[tikv] not(isnull(test_dr_join.touter.b))", "│ └─TableFullScan 10000.00 cop[tikv] table:touter keep order:false, stats:pseudo", - "└─IndexReader(Probe) 1.25 root partition:all index:Selection", - " └─Selection 1.25 cop[tikv] not(isnull(test_dr_join.trange.b))", - " └─IndexRangeScan 1.25 cop[tikv] table:trange, index:idx_b(b) range: decided by [eq(test_dr_join.trange.b, test_dr_join.touter.b)], keep order:false, stats:pseudo")) // check if indexReader is used + "└─IndexReader(Probe) 12487.50 root partition:all index:Selection", + " └─Selection 12487.50 cop[tikv] not(isnull(test_dr_join.trange.b))", + " └─IndexRangeScan 12500.00 cop[tikv] table:trange, index:idx_b(b) range: decided by [eq(test_dr_join.trange.b, test_dr_join.touter.b)], keep order:false, stats:pseudo")) // check if indexReader is used tk.MustQuery(queryPartition).Sort().Check(tk.MustQuery(queryRegular).Sort().Rows()) } @@ -705,9 +705,9 @@ func TestDynamicPruningUnderIndexJoin(t *testing.T) { `├─TableReader(Build) 9990.00 root data:Selection`, `│ └─Selection 9990.00 cop[tikv] not(isnull(pruing_under_index_join.touter.b))`, `│ └─TableFullScan 10000.00 cop[tikv] table:touter keep order:false, stats:pseudo`, - `└─IndexReader(Probe) 1.25 root partition:all index:Selection`, - ` └─Selection 1.25 cop[tikv] not(isnull(pruing_under_index_join.thash.b))`, - ` └─IndexRangeScan 1.25 cop[tikv] table:thash, index:idx_b(b) range: decided by [eq(pruing_under_index_join.thash.b, pruing_under_index_join.touter.b)], keep order:false, stats:pseudo`)) + `└─IndexReader(Probe) 12487.50 root partition:all index:Selection`, + ` └─Selection 12487.50 cop[tikv] not(isnull(pruing_under_index_join.thash.b))`, + ` └─IndexRangeScan 12500.00 cop[tikv] table:thash, index:idx_b(b) range: decided by [eq(pruing_under_index_join.thash.b, pruing_under_index_join.touter.b)], keep order:false, stats:pseudo`)) tk.MustQuery(`select /*+ INL_JOIN(touter, thash) */ thash.b from touter join thash use index(idx_b) on touter.b = thash.b`).Sort().Check( tk.MustQuery(`select /*+ INL_JOIN(touter, tnormal) */ tnormal.b from touter join tnormal use index(idx_b) on touter.b = tnormal.b`).Sort().Rows()) @@ -717,8 +717,8 @@ func TestDynamicPruningUnderIndexJoin(t *testing.T) { `├─TableReader(Build) 9990.00 root data:Selection`, `│ └─Selection 9990.00 cop[tikv] not(isnull(pruing_under_index_join.touter.b))`, `│ └─TableFullScan 10000.00 cop[tikv] table:touter keep order:false, stats:pseudo`, - `└─TableReader(Probe) 1.00 root partition:all data:TableRangeScan`, - ` └─TableRangeScan 1.00 cop[tikv] table:thash range: decided by [pruing_under_index_join.touter.b], keep order:false, stats:pseudo`)) + `└─TableReader(Probe) 9990.00 root partition:all data:TableRangeScan`, + ` └─TableRangeScan 9990.00 cop[tikv] table:thash range: decided by [pruing_under_index_join.touter.b], keep order:false, stats:pseudo`)) tk.MustQuery(`select /*+ INL_JOIN(touter, thash) */ thash.* from touter join thash use index(primary) on touter.b = thash.a`).Sort().Check( tk.MustQuery(`select /*+ INL_JOIN(touter, tnormal) */ tnormal.* from touter join tnormal use index(primary) on touter.b = tnormal.a`).Sort().Rows()) @@ -728,10 +728,10 @@ func TestDynamicPruningUnderIndexJoin(t *testing.T) { `├─TableReader(Build) 9990.00 root data:Selection`, `│ └─Selection 9990.00 cop[tikv] not(isnull(pruing_under_index_join.touter.b))`, `│ └─TableFullScan 10000.00 cop[tikv] table:touter keep order:false, stats:pseudo`, - `└─IndexLookUp(Probe) 1.25 root partition:all `, - ` ├─Selection(Build) 1.25 cop[tikv] not(isnull(pruing_under_index_join.thash.b))`, - ` │ └─IndexRangeScan 1.25 cop[tikv] table:thash, index:idx_b(b) range: decided by [eq(pruing_under_index_join.thash.b, pruing_under_index_join.touter.b)], keep order:false, stats:pseudo`, - ` └─TableRowIDScan(Probe) 1.25 cop[tikv] table:thash keep order:false, stats:pseudo`)) + `└─IndexLookUp(Probe) 12487.50 root partition:all `, + ` ├─Selection(Build) 12487.50 cop[tikv] not(isnull(pruing_under_index_join.thash.b))`, + ` │ └─IndexRangeScan 12500.00 cop[tikv] table:thash, index:idx_b(b) range: decided by [eq(pruing_under_index_join.thash.b, pruing_under_index_join.touter.b)], keep order:false, stats:pseudo`, + ` └─TableRowIDScan(Probe) 12487.50 cop[tikv] table:thash keep order:false, stats:pseudo`)) tk.MustQuery(`select /*+ INL_JOIN(touter, thash) */ thash.* from touter join thash use index(idx_b) on touter.b = thash.b`).Sort().Check( tk.MustQuery(`select /*+ INL_JOIN(touter, tnormal) */ tnormal.* from touter join tnormal use index(idx_b) on touter.b = tnormal.b`).Sort().Rows()) } @@ -910,6 +910,7 @@ func TestGlobalStatsAndSQLBinding(t *testing.T) { tk.MustExec("create database test_global_stats") tk.MustExec("use test_global_stats") tk.MustExec("set @@tidb_partition_prune_mode = 'dynamic'") + tk.MustExec("set tidb_cost_model_version=2") // hash and range and list partition tk.MustExec("create table thash(a int, b int, key(a)) partition by hash(a) partitions 4") @@ -953,10 +954,9 @@ func TestGlobalStatsAndSQLBinding(t *testing.T) { tk.MustExec("analyze table trange") tk.MustExec("analyze table tlist") - // after analyzing, the planner will use the Index(a) - tk.MustIndexLookup("select * from thash where a<100") - tk.MustIndexLookup("select * from trange where a<100") - tk.MustIndexLookup("select * from tlist where a<1") + require.True(t, tk.HasPlan("select * from thash where a<100", "TableFullScan")) + require.True(t, tk.HasPlan("select * from trange where a<100", "TableFullScan")) + require.True(t, tk.HasPlan("select * from tlist where a<1", "TableFullScan")) // create SQL bindings tk.MustExec("create session binding for select * from thash where a<100 using select * from thash ignore index(a) where a<100") @@ -973,10 +973,9 @@ func TestGlobalStatsAndSQLBinding(t *testing.T) { tk.MustExec("drop session binding for select * from trange where a<100") tk.MustExec("drop session binding for select * from tlist where a<100") - // use Index(a) again - tk.MustIndexLookup("select * from thash where a<100") - tk.MustIndexLookup("select * from trange where a<100") - tk.MustIndexLookup("select * from tlist where a<1") + require.True(t, tk.HasPlan("select * from thash where a<100", "TableFullScan")) + require.True(t, tk.HasPlan("select * from trange where a<100", "TableFullScan")) + require.True(t, tk.HasPlan("select * from tlist where a<1", "TableFullScan")) } func TestPartitionTableWithDifferentJoin(t *testing.T) { @@ -2116,6 +2115,7 @@ func TestParallelApply(t *testing.T) { tk := testkit.NewTestKit(t, store) tk.MustExec("use test") + tk.MustExec("set tidb_cost_model_version=2") tk.MustExec("create database test_parallel_apply") tk.MustExec("use test_parallel_apply") tk.MustExec("set @@tidb_partition_prune_mode = 'dynamic'") @@ -2150,11 +2150,11 @@ func TestParallelApply(t *testing.T) { `└─Apply 10000.00 root CARTESIAN inner join, other cond:gt(cast(test_parallel_apply.touter.a, decimal(10,0) BINARY), Column#7)`, ` ├─TableReader(Build) 10000.00 root data:TableFullScan`, ` │ └─TableFullScan 10000.00 cop[tikv] table:touter keep order:false, stats:pseudo`, - ` └─StreamAgg(Probe) 1.00 root funcs:sum(Column#9)->Column#7`, - ` └─IndexReader 1.00 root partition:all index:StreamAgg`, // IndexReader is a inner child of Apply - ` └─StreamAgg 1.00 cop[tikv] funcs:sum(test_parallel_apply.thash.a)->Column#9`, - ` └─Selection 8000.00 cop[tikv] gt(test_parallel_apply.thash.a, test_parallel_apply.touter.b)`, - ` └─IndexFullScan 10000.00 cop[tikv] table:thash, index:a(a) keep order:false, stats:pseudo`)) + ` └─HashAgg(Probe) 10000.00 root funcs:sum(Column#8)->Column#7`, + ` └─IndexReader 10000.00 root partition:all index:HashAgg`, // IndexReader is a inner child of Apply + ` └─HashAgg 10000.00 cop[tikv] funcs:sum(test_parallel_apply.thash.a)->Column#8`, + ` └─Selection 80000000.00 cop[tikv] gt(test_parallel_apply.thash.a, test_parallel_apply.touter.b)`, + ` └─IndexFullScan 100000000.00 cop[tikv] table:thash, index:a(a) keep order:false, stats:pseudo`)) tk.MustQuery(`select * from touter where touter.a > (select sum(thash.a) from thash use index(a) where thash.a>touter.b)`).Sort().Check( tk.MustQuery(`select * from touter where touter.a > (select sum(tinner.a) from tinner use index(a) where tinner.a>touter.b)`).Sort().Rows()) @@ -2164,11 +2164,11 @@ func TestParallelApply(t *testing.T) { `└─Apply 10000.00 root CARTESIAN inner join, other cond:gt(cast(test_parallel_apply.touter.a, decimal(10,0) BINARY), Column#7)`, ` ├─TableReader(Build) 10000.00 root data:TableFullScan`, ` │ └─TableFullScan 10000.00 cop[tikv] table:touter keep order:false, stats:pseudo`, - ` └─StreamAgg(Probe) 1.00 root funcs:sum(Column#9)->Column#7`, - ` └─TableReader 1.00 root partition:all data:StreamAgg`, // TableReader is a inner child of Apply - ` └─StreamAgg 1.00 cop[tikv] funcs:sum(test_parallel_apply.thash.b)->Column#9`, - ` └─Selection 8000.00 cop[tikv] gt(test_parallel_apply.thash.a, test_parallel_apply.touter.b)`, - ` └─TableFullScan 10000.00 cop[tikv] table:thash keep order:false, stats:pseudo`)) + ` └─HashAgg(Probe) 10000.00 root funcs:sum(Column#8)->Column#7`, + ` └─TableReader 10000.00 root partition:all data:HashAgg`, // TableReader is a inner child of Apply + ` └─HashAgg 10000.00 cop[tikv] funcs:sum(test_parallel_apply.thash.b)->Column#8`, + ` └─Selection 80000000.00 cop[tikv] gt(test_parallel_apply.thash.a, test_parallel_apply.touter.b)`, + ` └─TableFullScan 100000000.00 cop[tikv] table:thash keep order:false, stats:pseudo`)) tk.MustQuery(`select * from touter where touter.a > (select sum(thash.b) from thash ignore index(a) where thash.a>touter.b)`).Sort().Check( tk.MustQuery(`select * from touter where touter.a > (select sum(tinner.b) from tinner ignore index(a) where tinner.a>touter.b)`).Sort().Rows()) @@ -2178,12 +2178,12 @@ func TestParallelApply(t *testing.T) { `└─Apply 10000.00 root CARTESIAN inner join, other cond:gt(cast(test_parallel_apply.touter.a, decimal(10,0) BINARY), Column#7)`, ` ├─TableReader(Build) 10000.00 root data:TableFullScan`, ` │ └─TableFullScan 10000.00 cop[tikv] table:touter keep order:false, stats:pseudo`, - ` └─HashAgg(Probe) 1.00 root funcs:sum(Column#9)->Column#7`, - ` └─IndexLookUp 1.00 root `, // IndexLookUp is a inner child of Apply - ` ├─Selection(Build) 8000.00 cop[tikv] gt(test_parallel_apply.tinner.a, test_parallel_apply.touter.b)`, - ` │ └─IndexFullScan 10000.00 cop[tikv] table:tinner, index:a(a) keep order:false, stats:pseudo`, - ` └─HashAgg(Probe) 1.00 cop[tikv] funcs:sum(test_parallel_apply.tinner.b)->Column#9`, - ` └─TableRowIDScan 8000.00 cop[tikv] table:tinner keep order:false, stats:pseudo`)) + ` └─HashAgg(Probe) 10000.00 root funcs:sum(Column#9)->Column#7`, + ` └─IndexLookUp 10000.00 root `, // IndexLookUp is a inner child of Apply + ` ├─Selection(Build) 80000000.00 cop[tikv] gt(test_parallel_apply.tinner.a, test_parallel_apply.touter.b)`, + ` │ └─IndexFullScan 100000000.00 cop[tikv] table:tinner, index:a(a) keep order:false, stats:pseudo`, + ` └─HashAgg(Probe) 10000.00 cop[tikv] funcs:sum(test_parallel_apply.tinner.b)->Column#9`, + ` └─TableRowIDScan 80000000.00 cop[tikv] table:tinner keep order:false, stats:pseudo`)) tk.MustQuery(`select * from touter where touter.a > (select sum(thash.b) from thash use index(a) where thash.a>touter.b)`).Sort().Check( tk.MustQuery(`select * from touter where touter.a > (select sum(tinner.b) from tinner use index(a) where tinner.a>touter.b)`).Sort().Rows()) @@ -2193,11 +2193,11 @@ func TestParallelApply(t *testing.T) { `└─Apply 10000.00 root CARTESIAN inner join, other cond:gt(cast(test_parallel_apply.touter.a, decimal(10,0) BINARY), Column#7)`, ` ├─TableReader(Build) 10000.00 root data:TableFullScan`, ` │ └─TableFullScan 10000.00 cop[tikv] table:touter keep order:false, stats:pseudo`, - ` └─StreamAgg(Probe) 1.00 root funcs:sum(Column#9)->Column#7`, - ` └─IndexReader 1.00 root partition:all index:StreamAgg`, // IndexReader is a inner child of Apply - ` └─StreamAgg 1.00 cop[tikv] funcs:sum(test_parallel_apply.trange.a)->Column#9`, - ` └─Selection 8000.00 cop[tikv] gt(test_parallel_apply.trange.a, test_parallel_apply.touter.b)`, - ` └─IndexFullScan 10000.00 cop[tikv] table:trange, index:a(a) keep order:false, stats:pseudo`)) + ` └─HashAgg(Probe) 10000.00 root funcs:sum(Column#8)->Column#7`, + ` └─IndexReader 10000.00 root partition:all index:HashAgg`, // IndexReader is a inner child of Apply + ` └─HashAgg 10000.00 cop[tikv] funcs:sum(test_parallel_apply.trange.a)->Column#8`, + ` └─Selection 80000000.00 cop[tikv] gt(test_parallel_apply.trange.a, test_parallel_apply.touter.b)`, + ` └─IndexFullScan 100000000.00 cop[tikv] table:trange, index:a(a) keep order:false, stats:pseudo`)) tk.MustQuery(`select * from touter where touter.a > (select sum(trange.a) from trange use index(a) where trange.a>touter.b)`).Sort().Check( tk.MustQuery(`select * from touter where touter.a > (select sum(tinner.a) from tinner use index(a) where tinner.a>touter.b)`).Sort().Rows()) @@ -2207,11 +2207,11 @@ func TestParallelApply(t *testing.T) { `└─Apply 10000.00 root CARTESIAN inner join, other cond:gt(cast(test_parallel_apply.touter.a, decimal(10,0) BINARY), Column#7)`, ` ├─TableReader(Build) 10000.00 root data:TableFullScan`, ` │ └─TableFullScan 10000.00 cop[tikv] table:touter keep order:false, stats:pseudo`, - ` └─StreamAgg(Probe) 1.00 root funcs:sum(Column#9)->Column#7`, - ` └─TableReader 1.00 root partition:all data:StreamAgg`, // TableReader is a inner child of Apply - ` └─StreamAgg 1.00 cop[tikv] funcs:sum(test_parallel_apply.trange.b)->Column#9`, - ` └─Selection 8000.00 cop[tikv] gt(test_parallel_apply.trange.a, test_parallel_apply.touter.b)`, - ` └─TableFullScan 10000.00 cop[tikv] table:trange keep order:false, stats:pseudo`)) + ` └─HashAgg(Probe) 10000.00 root funcs:sum(Column#8)->Column#7`, + ` └─TableReader 10000.00 root partition:all data:HashAgg`, // TableReader is a inner child of Apply + ` └─HashAgg 10000.00 cop[tikv] funcs:sum(test_parallel_apply.trange.b)->Column#8`, + ` └─Selection 80000000.00 cop[tikv] gt(test_parallel_apply.trange.a, test_parallel_apply.touter.b)`, + ` └─TableFullScan 100000000.00 cop[tikv] table:trange keep order:false, stats:pseudo`)) tk.MustQuery(`select * from touter where touter.a > (select sum(trange.b) from trange ignore index(a) where trange.a>touter.b)`).Sort().Check( tk.MustQuery(`select * from touter where touter.a > (select sum(tinner.b) from tinner ignore index(a) where tinner.a>touter.b)`).Sort().Rows()) @@ -2221,12 +2221,12 @@ func TestParallelApply(t *testing.T) { `└─Apply 10000.00 root CARTESIAN inner join, other cond:gt(cast(test_parallel_apply.touter.a, decimal(10,0) BINARY), Column#7)`, ` ├─TableReader(Build) 10000.00 root data:TableFullScan`, ` │ └─TableFullScan 10000.00 cop[tikv] table:touter keep order:false, stats:pseudo`, - ` └─HashAgg(Probe) 1.00 root funcs:sum(Column#9)->Column#7`, - ` └─IndexLookUp 1.00 root `, // IndexLookUp is a inner child of Apply - ` ├─Selection(Build) 8000.00 cop[tikv] gt(test_parallel_apply.tinner.a, test_parallel_apply.touter.b)`, - ` │ └─IndexFullScan 10000.00 cop[tikv] table:tinner, index:a(a) keep order:false, stats:pseudo`, - ` └─HashAgg(Probe) 1.00 cop[tikv] funcs:sum(test_parallel_apply.tinner.b)->Column#9`, - ` └─TableRowIDScan 8000.00 cop[tikv] table:tinner keep order:false, stats:pseudo`)) + ` └─HashAgg(Probe) 10000.00 root funcs:sum(Column#9)->Column#7`, + ` └─IndexLookUp 10000.00 root `, // IndexLookUp is a inner child of Apply + ` ├─Selection(Build) 80000000.00 cop[tikv] gt(test_parallel_apply.tinner.a, test_parallel_apply.touter.b)`, + ` │ └─IndexFullScan 100000000.00 cop[tikv] table:tinner, index:a(a) keep order:false, stats:pseudo`, + ` └─HashAgg(Probe) 10000.00 cop[tikv] funcs:sum(test_parallel_apply.tinner.b)->Column#9`, + ` └─TableRowIDScan 80000000.00 cop[tikv] table:tinner keep order:false, stats:pseudo`)) tk.MustQuery(`select * from touter where touter.a > (select sum(trange.b) from trange use index(a) where trange.a>touter.b)`).Sort().Check( tk.MustQuery(`select * from touter where touter.a > (select sum(tinner.b) from tinner use index(a) where tinner.a>touter.b)`).Sort().Rows()) @@ -3435,6 +3435,7 @@ func TestPartitionTableExplain(t *testing.T) { tk := testkit.NewTestKit(t, store) tk.MustExec("create database TestPartitionTableExplain") + tk.MustExec("set tidb_cost_model_version=2") tk.MustExec("use TestPartitionTableExplain") tk.MustExec("set @@tidb_partition_prune_mode = 'static'") tk.MustExec(`create table t (a int primary key, b int, key (b)) partition by hash(a) (partition P0, partition p1, partition P2)`) @@ -3571,22 +3572,20 @@ func TestPartitionTableExplain(t *testing.T) { "└─IndexRangeScan 2.00 cop[tikv] table:t, index:b(b) range:[2,2], [3,3], keep order:false")) tk.MustQuery(`explain format = 'brief' select * from t,t2 where t2.a = 1 and t2.b = t.b`).Check(testkit.Rows( "Projection 1.00 root testpartitiontableexplain.t.a, testpartitiontableexplain.t.b, testpartitiontableexplain.t2.a, testpartitiontableexplain.t2.b", - "└─IndexJoin 1.00 root inner join, inner:IndexReader, outer key:testpartitiontableexplain.t2.b, inner key:testpartitiontableexplain.t.b, equal cond:eq(testpartitiontableexplain.t2.b, testpartitiontableexplain.t.b)", + "└─HashJoin 1.00 root inner join, equal:[eq(testpartitiontableexplain.t2.b, testpartitiontableexplain.t.b)]", " ├─TableReader(Build) 1.00 root data:Selection", " │ └─Selection 1.00 cop[tikv] eq(testpartitiontableexplain.t2.a, 1), not(isnull(testpartitiontableexplain.t2.b))", " │ └─TableFullScan 3.00 cop[tikv] table:t2 keep order:false", - " └─IndexReader(Probe) 1.00 root partition:all index:Selection", - " └─Selection 1.00 cop[tikv] not(isnull(testpartitiontableexplain.t.b))", - " └─IndexRangeScan 1.00 cop[tikv] table:t, index:b(b) range: decided by [eq(testpartitiontableexplain.t.b, testpartitiontableexplain.t2.b)], keep order:false")) + " └─IndexReader(Probe) 3.00 root partition:all index:IndexFullScan", + " └─IndexFullScan 3.00 cop[tikv] table:t, index:b(b) keep order:false")) tk.MustQuery(`explain format = 'brief' select * from t partition (p1),t2 where t2.a = 1 and t2.b = t.b`).Check(testkit.Rows( "Projection 1.00 root testpartitiontableexplain.t.a, testpartitiontableexplain.t.b, testpartitiontableexplain.t2.a, testpartitiontableexplain.t2.b", - "└─IndexJoin 1.00 root inner join, inner:IndexReader, outer key:testpartitiontableexplain.t2.b, inner key:testpartitiontableexplain.t.b, equal cond:eq(testpartitiontableexplain.t2.b, testpartitiontableexplain.t.b)", + "└─HashJoin 1.00 root inner join, equal:[eq(testpartitiontableexplain.t2.b, testpartitiontableexplain.t.b)]", " ├─TableReader(Build) 1.00 root data:Selection", " │ └─Selection 1.00 cop[tikv] eq(testpartitiontableexplain.t2.a, 1), not(isnull(testpartitiontableexplain.t2.b))", " │ └─TableFullScan 3.00 cop[tikv] table:t2 keep order:false", - " └─IndexReader(Probe) 1.00 root partition:p1 index:Selection", - " └─Selection 1.00 cop[tikv] not(isnull(testpartitiontableexplain.t.b))", - " └─IndexRangeScan 1.00 cop[tikv] table:t, index:b(b) range: decided by [eq(testpartitiontableexplain.t.b, testpartitiontableexplain.t2.b)], keep order:false")) + " └─IndexReader(Probe) 3.00 root partition:p1 index:IndexFullScan", + " └─IndexFullScan 3.00 cop[tikv] table:t, index:b(b) keep order:false")) tk.MustQuery(`explain format = 'brief' select * from t,t2 where t2.a = 1 and t2.b = t.b and t.a = 1`).Check(testkit.Rows( "HashJoin 1.00 root inner join, equal:[eq(testpartitiontableexplain.t.b, testpartitiontableexplain.t2.b)]", "├─TableReader(Build) 1.00 root data:Selection", diff --git a/executor/pipelined_window.go b/executor/pipelined_window.go index 1a72864bcf225..cda1d9c389fd0 100644 --- a/executor/pipelined_window.go +++ b/executor/pipelined_window.go @@ -205,7 +205,7 @@ func (e *PipelinedWindowExec) getRowsInPartition(ctx context.Context) (err error func (e *PipelinedWindowExec) fetchChild(ctx context.Context) (EOF bool, err error) { // TODO: reuse chunks - childResult := newFirstChunk(e.children[0]) + childResult := tryNewCacheChunk(e.children[0]) err = Next(ctx, e.children[0], childResult) if err != nil { return false, errors.Trace(err) @@ -217,7 +217,7 @@ func (e *PipelinedWindowExec) fetchChild(ctx context.Context) (EOF bool, err err } // TODO: reuse chunks - resultChk := chunk.New(e.retFieldTypes, 0, numRows) + resultChk := e.ctx.GetSessionVars().GetNewChunkWithCapacity(e.retFieldTypes, 0, numRows, e.AllocPool) err = e.copyChk(childResult, resultChk) if err != nil { return false, err diff --git a/executor/plan_replayer.go b/executor/plan_replayer.go index 33fdf5da4507c..fec3de1867933 100644 --- a/executor/plan_replayer.go +++ b/executor/plan_replayer.go @@ -22,26 +22,21 @@ import ( "encoding/base64" "encoding/json" "fmt" - "io" "os" "path/filepath" - "strconv" "strings" "time" "github.com/BurntSushi/toml" "github.com/pingcap/errors" - "github.com/pingcap/tidb/config" "github.com/pingcap/tidb/domain" "github.com/pingcap/tidb/infoschema" "github.com/pingcap/tidb/parser/ast" - "github.com/pingcap/tidb/parser/model" "github.com/pingcap/tidb/sessionctx" "github.com/pingcap/tidb/sessionctx/variable" "github.com/pingcap/tidb/statistics/handle" "github.com/pingcap/tidb/util/chunk" "github.com/pingcap/tidb/util/logutil" - "github.com/pingcap/tidb/util/printer" "github.com/pingcap/tidb/util/sqlexec" "go.uber.org/zap" ) @@ -49,15 +44,6 @@ import ( var _ Executor = &PlanReplayerExec{} var _ Executor = &PlanReplayerLoadExec{} -const ( - configFile = "config.toml" - metaFile = "meta.txt" - variablesFile = "variables.toml" - tiFlashReplicasFile = "table_tiflash_replica.txt" - sessionBindingFile = "session_bindings.sql" - globalBindingFile = "global_bindings.sql" -) - // PlanReplayerExec represents a plan replayer executor. type PlanReplayerExec struct { baseExecutor @@ -75,86 +61,13 @@ type PlanReplayerDumpInfo struct { ctx sessionctx.Context } -type tableNamePair struct { - DBName string - TableName string - IsView bool -} - -type tableNameExtractor struct { - ctx context.Context - executor sqlexec.RestrictedSQLExecutor - is infoschema.InfoSchema - curDB model.CIStr - names map[tableNamePair]struct{} - cteNames map[string]struct{} - err error -} - -func (tne *tableNameExtractor) Enter(in ast.Node) (ast.Node, bool) { - if _, ok := in.(*ast.TableName); ok { - return in, true - } - return in, false -} - -func (tne *tableNameExtractor) Leave(in ast.Node) (ast.Node, bool) { - if tne.err != nil { - return in, true - } - if t, ok := in.(*ast.TableName); ok { - isView, err := tne.handleIsView(t) - if err != nil { - tne.err = err - return in, true - } - tp := tableNamePair{DBName: t.Schema.L, TableName: t.Name.L, IsView: isView} - if tp.DBName == "" { - tp.DBName = tne.curDB.L - } - if _, ok := tne.names[tp]; !ok { - tne.names[tp] = struct{}{} - } - } else if s, ok := in.(*ast.SelectStmt); ok { - if s.With != nil && len(s.With.CTEs) > 0 { - for _, cte := range s.With.CTEs { - tne.cteNames[cte.Name.L] = struct{}{} - } - } - } - return in, true -} - -func (tne *tableNameExtractor) handleIsView(t *ast.TableName) (bool, error) { - schema := t.Schema - if schema.L == "" { - schema = tne.curDB - } - table := t.Name - isView := tne.is.TableIsView(schema, table) - if !isView { - return false, nil - } - viewTbl, err := tne.is.TableByName(schema, table) - if err != nil { - return false, err - } - sql := viewTbl.Meta().View.SelectStmt - node, err := tne.executor.ParseWithParams(tne.ctx, sql) - if err != nil { - return false, err - } - node.Accept(tne) - return true, nil -} - // Next implements the Executor Next interface. func (e *PlanReplayerExec) Next(ctx context.Context, req *chunk.Chunk) error { req.GrowAndReset(e.maxChunkSize) if e.endFlag { return nil } - err := e.createFile(domain.GetPlanReplayerDirName()) + err := e.createFile() if err != nil { return err } @@ -180,384 +93,65 @@ func (e *PlanReplayerExec) Next(ctx context.Context, req *chunk.Chunk) error { return nil } -func (e *PlanReplayerExec) createFile(path string) error { - // Create path - err := os.MkdirAll(path, os.ModePerm) +func (e *PlanReplayerExec) createFile() error { + var err error + e.DumpInfo.File, e.DumpInfo.FileName, err = GeneratePlanReplayerFile() if err != nil { - return errors.AddStack(err) - } - - // Generate key and create zip file - time := time.Now().UnixNano() - b := make([]byte, 16) - //nolint: gosec - _, err = rand.Read(b) - if err != nil { - return err - } - key := base64.URLEncoding.EncodeToString(b) - fileName := fmt.Sprintf("replayer_%v_%v.zip", key, time) - zf, err := os.Create(filepath.Join(path, fileName)) - if err != nil { - return errors.AddStack(err) - } - e.DumpInfo.File = zf - e.DumpInfo.FileName = fileName - return nil -} - -// dumpSingle will dump the information about sqls. -// The files will be organized into the following format: -/* - |-meta.txt - |-schema - | |-db1.table1.schema.txt - | |-db2.table2.schema.txt - | |-.... - |-view - | |-db1.view1.view.txt - | |-db2.view2.view.txt - | |-.... - |-stats - | |-stats1.json - | |-stats2.json - | |-.... - |-config.toml - |-table_tiflash_replica.txt - |-variables.toml - |-bindings.sql - |-sql - | |-sql1.sql - | |-sql2.sql - | |-.... - |_explain - |-explain1.txt - |-explain2.txt - |-.... -*/ -func (e *PlanReplayerDumpInfo) dump(ctx context.Context) (err error) { - fileName := e.FileName - zf := e.File - // Create zip writer - zw := zip.NewWriter(zf) - defer func() { - err = zw.Close() - if err != nil { - logutil.BgLogger().Error("Closing zip writer failed", zap.Error(err), zap.String("filename", fileName)) - } - err = zf.Close() - if err != nil { - logutil.BgLogger().Error("Closing zip file failed", zap.Error(err), zap.String("filename", fileName)) - } - }() - - // Dump config - if err = dumpConfig(zw); err != nil { - return err - } - - // Dump meta - if err = dumpMeta(zw); err != nil { - return err - } - - // Retrieve current DB - sessionVars := e.ctx.GetSessionVars() - dbName := model.NewCIStr(sessionVars.CurrentDB) - do := domain.GetDomain(e.ctx) - - // Retrieve all tables - pairs, err := e.extractTableNames(ctx, e.ExecStmts, dbName) - if err != nil { - return errors.AddStack(fmt.Errorf("plan replayer: invalid SQL text, err: %v", err)) - } - - // Dump Schema and View - if err = dumpSchemas(e.ctx, zw, pairs); err != nil { - return err - } - - // Dump tables tiflash replicas - if err = dumpTiFlashReplica(e.ctx, zw, pairs); err != nil { - return err - } - - // Dump stats - if err = dumpStats(zw, pairs, do); err != nil { - return err - } - - // Dump variables - if err = dumpVariables(e.ctx, zw); err != nil { - return err - } - - // Dump sql - if err = dumpSQLs(e.ExecStmts, zw); err != nil { - return err - } - - // Dump session bindings - if err = dumpSessionBindings(e.ctx, zw); err != nil { - return err - } - - // Dump global bindings - if err = dumpGlobalBindings(e.ctx, zw); err != nil { return err } - - // Dump explain - if err = dumpExplain(e.ctx, zw, e.ExecStmts, e.Analyze); err != nil { - return err - } - - e.ctx.GetSessionVars().LastPlanReplayerToken = e.FileName - return nil -} - -func dumpConfig(zw *zip.Writer) error { - cf, err := zw.Create(configFile) - if err != nil { - return errors.AddStack(err) - } - if err := toml.NewEncoder(cf).Encode(config.GetGlobalConfig()); err != nil { - return errors.AddStack(err) - } - return nil -} - -func dumpMeta(zw *zip.Writer) error { - mt, err := zw.Create(metaFile) - if err != nil { - return errors.AddStack(err) - } - _, err = mt.Write([]byte(printer.GetTiDBInfo())) - if err != nil { - return errors.AddStack(err) - } - return nil -} - -func dumpTiFlashReplica(ctx sessionctx.Context, zw *zip.Writer, pairs map[tableNamePair]struct{}) error { - bf, err := zw.Create(tiFlashReplicasFile) - if err != nil { - return errors.AddStack(err) - } - is := domain.GetDomain(ctx).InfoSchema() - for pair := range pairs { - dbName := model.NewCIStr(pair.DBName) - tableName := model.NewCIStr(pair.TableName) - t, err := is.TableByName(dbName, tableName) - if err != nil { - logutil.BgLogger().Warn("failed to find table info", zap.Error(err), - zap.String("dbName", dbName.L), zap.String("tableName", tableName.L)) - continue - } - if t.Meta().TiFlashReplica != nil && t.Meta().TiFlashReplica.Count > 0 { - row := []string{ - pair.DBName, pair.TableName, strconv.FormatUint(t.Meta().TiFlashReplica.Count, 10), - } - fmt.Fprintf(bf, "%s\n", strings.Join(row, "\t")) - } - } - return nil -} - -func dumpSchemas(ctx sessionctx.Context, zw *zip.Writer, pairs map[tableNamePair]struct{}) error { - for pair := range pairs { - err := getShowCreateTable(pair, zw, ctx) - if err != nil { - return err - } - } - return nil -} - -func dumpStats(zw *zip.Writer, pairs map[tableNamePair]struct{}, do *domain.Domain) error { - for pair := range pairs { - if pair.IsView { - continue - } - jsonTbl, err := getStatsForTable(do, pair) - if err != nil { - return err - } - statsFw, err := zw.Create(fmt.Sprintf("stats/%v.%v.json", pair.DBName, pair.TableName)) - if err != nil { - return errors.AddStack(err) - } - data, err := json.Marshal(jsonTbl) - if err != nil { - return errors.AddStack(err) - } - _, err = statsFw.Write(data) - if err != nil { - return errors.AddStack(err) - } - } return nil } -func dumpSQLs(execStmts []ast.StmtNode, zw *zip.Writer) error { - for i, stmtExec := range execStmts { - zf, err := zw.Create(fmt.Sprintf("sql/sql%v.sql", i)) - if err != nil { - return err - } - _, err = zf.Write([]byte(stmtExec.Text())) - if err != nil { - return err - } - } - return nil -} - -func dumpVariables(ctx sessionctx.Context, zw *zip.Writer) error { - varMap := make(map[string]string) - recordSets, err := ctx.(sqlexec.SQLExecutor).Execute(context.Background(), "show variables") +// GeneratePlanReplayerFile generates plan replayer file +func GeneratePlanReplayerFile() (*os.File, string, error) { + path := domain.GetPlanReplayerDirName() + err := os.MkdirAll(path, os.ModePerm) if err != nil { - return err + return nil, "", errors.AddStack(err) } - sRows, err := resultSetToStringSlice(context.Background(), recordSets[0], false) + fileName, err := generatePlanReplayerFileName() if err != nil { - return err + return nil, "", errors.AddStack(err) } - vf, err := zw.Create(variablesFile) + zf, err := os.Create(filepath.Join(path, fileName)) if err != nil { - return errors.AddStack(err) - } - for _, row := range sRows { - varMap[row[0]] = row[1] - } - if err := toml.NewEncoder(vf).Encode(varMap); err != nil { - return errors.AddStack(err) - } - if len(recordSets) > 0 { - if err := recordSets[0].Close(); err != nil { - return err - } + return nil, "", errors.AddStack(err) } - return nil + return zf, fileName, err } -func dumpSessionBindings(ctx sessionctx.Context, zw *zip.Writer) error { - recordSets, err := ctx.(sqlexec.SQLExecutor).Execute(context.Background(), "show bindings") - if err != nil { - return err - } - sRows, err := resultSetToStringSlice(context.Background(), recordSets[0], true) - if err != nil { - return err - } - bf, err := zw.Create(sessionBindingFile) +func generatePlanReplayerFileName() (string, error) { + // Generate key and create zip file + time := time.Now().UnixNano() + b := make([]byte, 16) + //nolint: gosec + _, err := rand.Read(b) if err != nil { - return errors.AddStack(err) + return "", err } - for _, row := range sRows { - fmt.Fprintf(bf, "%s\n", strings.Join(row, "\t")) - } - if len(recordSets) > 0 { - if err := recordSets[0].Close(); err != nil { - return err - } - } - return nil + key := base64.URLEncoding.EncodeToString(b) + return fmt.Sprintf("replayer_%v_%v.zip", key, time), nil } -func dumpGlobalBindings(ctx sessionctx.Context, zw *zip.Writer) error { - recordSets, err := ctx.(sqlexec.SQLExecutor).Execute(context.Background(), "show global bindings") - if err != nil { - return err +func (e *PlanReplayerDumpInfo) dump(ctx context.Context) (err error) { + fileName := e.FileName + zf := e.File + task := &domain.PlanReplayerDumpTask{ + FileName: fileName, + Zf: zf, + SessionVars: e.ctx.GetSessionVars(), + TblStats: nil, + ExecStmts: e.ExecStmts, + Analyze: e.Analyze, } - sRows, err := resultSetToStringSlice(context.Background(), recordSets[0], false) + err = domain.DumpPlanReplayerInfo(ctx, e.ctx, task) if err != nil { return err } - bf, err := zw.Create(globalBindingFile) - if err != nil { - return errors.AddStack(err) - } - for _, row := range sRows { - fmt.Fprintf(bf, "%s\n", strings.Join(row, "\t")) - } - if len(recordSets) > 0 { - if err := recordSets[0].Close(); err != nil { - return err - } - } - return nil -} - -func dumpExplain(ctx sessionctx.Context, zw *zip.Writer, execStmts []ast.StmtNode, isAnalyze bool) error { - for i, stmtExec := range execStmts { - sql := stmtExec.Text() - var recordSets []sqlexec.RecordSet - var err error - if isAnalyze { - // Explain analyze - recordSets, err = ctx.(sqlexec.SQLExecutor).Execute(context.Background(), fmt.Sprintf("explain analyze %s", sql)) - if err != nil { - return err - } - } else { - // Explain - recordSets, err = ctx.(sqlexec.SQLExecutor).Execute(context.Background(), fmt.Sprintf("explain %s", sql)) - if err != nil { - return err - } - } - sRows, err := resultSetToStringSlice(context.Background(), recordSets[0], false) - if err != nil { - return err - } - fw, err := zw.Create(fmt.Sprintf("explain/sql%v.txt", i)) - if err != nil { - return errors.AddStack(err) - } - for _, row := range sRows { - fmt.Fprintf(fw, "%s\n", strings.Join(row, "\t")) - } - if len(recordSets) > 0 { - if err := recordSets[0].Close(); err != nil { - return err - } - } - } + e.ctx.GetSessionVars().LastPlanReplayerToken = e.FileName return nil } -func (e *PlanReplayerDumpInfo) extractTableNames(ctx context.Context, - ExecStmts []ast.StmtNode, curDB model.CIStr) (map[tableNamePair]struct{}, error) { - tableExtractor := &tableNameExtractor{ - ctx: ctx, - executor: e.ctx.(sqlexec.RestrictedSQLExecutor), - is: domain.GetDomain(e.ctx).InfoSchema(), - curDB: curDB, - names: make(map[tableNamePair]struct{}), - cteNames: make(map[string]struct{}), - } - for _, execStmt := range ExecStmts { - execStmt.Accept(tableExtractor) - } - if tableExtractor.err != nil { - return nil, tableExtractor.err - } - r := make(map[tableNamePair]struct{}) - for tablePair := range tableExtractor.names { - if tablePair.IsView { - r[tablePair] = struct{}{} - continue - } - // remove cte in table names - _, ok := tableExtractor.cteNames[tablePair.TableName] - if !ok { - r[tablePair] = struct{}{} - } - } - return r, nil -} - func (e *PlanReplayerExec) prepare() error { val := e.ctx.Value(PlanReplayerDumpVarKey) if val != nil { @@ -586,109 +180,6 @@ func (e *PlanReplayerDumpInfo) DumpSQLsFromFile(ctx context.Context, b []byte) e return e.dump(ctx) } -func getStatsForTable(do *domain.Domain, pair tableNamePair) (*handle.JSONTable, error) { - is := do.InfoSchema() - h := do.StatsHandle() - tbl, err := is.TableByName(model.NewCIStr(pair.DBName), model.NewCIStr(pair.TableName)) - if err != nil { - return nil, err - } - js, err := h.DumpStatsToJSON(pair.DBName, tbl.Meta(), nil) - return js, err -} - -func getShowCreateTable(pair tableNamePair, zw *zip.Writer, ctx sessionctx.Context) error { - recordSets, err := ctx.(sqlexec.SQLExecutor).Execute(context.Background(), fmt.Sprintf("show create table `%v`.`%v`", pair.DBName, pair.TableName)) - if err != nil { - return err - } - sRows, err := resultSetToStringSlice(context.Background(), recordSets[0], false) - if err != nil { - return err - } - var fw io.Writer - if pair.IsView { - fw, err = zw.Create(fmt.Sprintf("view/%v.%v.view.txt", pair.DBName, pair.TableName)) - if err != nil { - return errors.AddStack(err) - } - if len(sRows) == 0 || len(sRows[0]) != 4 { - return fmt.Errorf("plan replayer: get create view %v.%v failed", pair.DBName, pair.TableName) - } - } else { - fw, err = zw.Create(fmt.Sprintf("schema/%v.%v.schema.txt", pair.DBName, pair.TableName)) - if err != nil { - return errors.AddStack(err) - } - if len(sRows) == 0 || len(sRows[0]) != 2 { - return fmt.Errorf("plan replayer: get create table %v.%v failed", pair.DBName, pair.TableName) - } - } - fmt.Fprintf(fw, "create database if not exists `%v`; use `%v`;", pair.DBName, pair.DBName) - fmt.Fprintf(fw, "%s", sRows[0][1]) - if len(recordSets) > 0 { - if err := recordSets[0].Close(); err != nil { - return err - } - } - return nil -} - -func resultSetToStringSlice(ctx context.Context, rs sqlexec.RecordSet, emptyAsNil bool) ([][]string, error) { - rows, err := getRows(ctx, rs) - if err != nil { - return nil, err - } - err = rs.Close() - if err != nil { - return nil, err - } - sRows := make([][]string, len(rows)) - for i, row := range rows { - iRow := make([]string, row.Len()) - for j := 0; j < row.Len(); j++ { - if row.IsNull(j) { - iRow[j] = "" - } else { - d := row.GetDatum(j, &rs.Fields()[j].Column.FieldType) - iRow[j], err = d.ToString() - if err != nil { - return nil, err - } - if len(iRow[j]) < 1 && emptyAsNil { - iRow[j] = "" - } - } - } - sRows[i] = iRow - } - return sRows, nil -} - -func getRows(ctx context.Context, rs sqlexec.RecordSet) ([]chunk.Row, error) { - if rs == nil { - return nil, nil - } - var rows []chunk.Row - req := rs.NewChunk(nil) - // Must reuse `req` for imitating server.(*clientConn).writeChunks - for { - err := rs.Next(ctx, req) - if err != nil { - return nil, err - } - if req.NumRows() == 0 { - break - } - - iter := chunk.NewIterator4Chunk(req.CopyConstruct()) - for row := iter.Begin(); row != iter.End(); row = iter.Next() { - rows = append(rows, row) - } - } - return rows, nil -} - // PlanReplayerLoadExec represents a plan replayer load executor. type PlanReplayerLoadExec struct { baseExecutor @@ -736,7 +227,7 @@ func (e *PlanReplayerLoadExec) Next(ctx context.Context, req *chunk.Chunk) error func loadSetTiFlashReplica(ctx sessionctx.Context, z *zip.Reader) error { for _, zipFile := range z.File { - if strings.Compare(zipFile.Name, tiFlashReplicasFile) == 0 { + if strings.Compare(zipFile.Name, domain.PlanReplayerTiFlashReplicasFile) == 0 { v, err := zipFile.Open() if err != nil { return errors.AddStack(err) @@ -774,12 +265,12 @@ func loadSetTiFlashReplica(ctx sessionctx.Context, z *zip.Reader) error { func loadAllBindings(ctx sessionctx.Context, z *zip.Reader) error { for _, f := range z.File { - if strings.Compare(f.Name, sessionBindingFile) == 0 { + if strings.Compare(f.Name, domain.PlanReplayerSessionBindingFile) == 0 { err := loadBindings(ctx, f, true) if err != nil { return err } - } else if strings.Compare(f.Name, globalBindingFile) == 0 { + } else if strings.Compare(f.Name, domain.PlanReplayerGlobalBindingFile) == 0 { err := loadBindings(ctx, f, false) if err != nil { return err @@ -833,7 +324,7 @@ func loadBindings(ctx sessionctx.Context, f *zip.File, isSession bool) error { func loadVariables(ctx sessionctx.Context, z *zip.Reader) error { unLoadVars := make([]string, 0) for _, zipFile := range z.File { - if strings.Compare(zipFile.Name, variablesFile) == 0 { + if strings.Compare(zipFile.Name, domain.PlanReplayerVariablesFile) == 0 { varMap := make(map[string]string) v, err := zipFile.Open() if err != nil { diff --git a/executor/prepared_test.go b/executor/prepared_test.go index f5629a41e9297..13ef8fda55c12 100644 --- a/executor/prepared_test.go +++ b/executor/prepared_test.go @@ -228,6 +228,7 @@ func TestIssue28064(t *testing.T) { func TestPreparePlanCache4Blacklist(t *testing.T) { store := testkit.CreateMockStore(t) tk := testkit.NewTestKit(t, store) + tk.MustExec("set tidb_cost_model_version=2") tk.MustExec(`set tidb_enable_prepared_plan_cache=1`) tk.MustExec("use test") tk.MustExec("set @@tidb_enable_collect_execution_info=0;") @@ -260,7 +261,7 @@ func TestPreparePlanCache4Blacklist(t *testing.T) { require.Contains(t, res.Rows()[1][0], "TopN") res = tk.MustQuery("explain format = 'brief' select min(a) from t") - require.Contains(t, res.Rows()[0][0], "StreamAgg") + require.Contains(t, res.Rows()[0][0], "HashAgg") // test the blacklist of Expression Pushdown tk.MustExec("drop table if exists t;") @@ -420,6 +421,7 @@ func TestPlanCacheWithDifferentVariableTypes(t *testing.T) { store := testkit.CreateMockStore(t) tk := testkit.NewTestKit(t, store) tk.MustExec(`set tidb_enable_prepared_plan_cache=1`) + tk.MustExec("set tidb_cost_model_version=1") tk.MustExec("use test") tk.MustExec("drop table if exists t1, t2") tk.MustExec("set @@tidb_enable_collect_execution_info=0;") @@ -860,7 +862,7 @@ func TestIssue29101(t *testing.T) { c_last varchar(16) DEFAULT NULL, c_credit char(2) DEFAULT NULL, c_discount decimal(4,4) DEFAULT NULL, - PRIMARY KEY (c_w_id,c_d_id,c_id), + PRIMARY KEY (c_w_id,c_d_id,c_id) NONCLUSTERED, KEY idx_customer (c_w_id,c_d_id,c_last,c_first) )`) tk.MustExec(`CREATE TABLE warehouse ( @@ -890,12 +892,12 @@ func TestIssue29101(t *testing.T) { ol_w_id int(11) NOT NULL, ol_number int(11) NOT NULL, ol_i_id int(11) NOT NULL, - PRIMARY KEY (ol_w_id,ol_d_id,ol_o_id,ol_number))`) + PRIMARY KEY (ol_w_id,ol_d_id,ol_o_id,ol_number) NONCLUSTERED)`) tk.MustExec(`CREATE TABLE stock ( s_i_id int(11) NOT NULL, s_w_id int(11) NOT NULL, s_quantity int(11) DEFAULT NULL, - PRIMARY KEY (s_w_id,s_i_id))`) + PRIMARY KEY (s_w_id,s_i_id) NONCLUSTERED)`) tk.MustExec(`prepare s1 from 'SELECT /*+ TIDB_INLJ(order_line,stock) */ COUNT(DISTINCT (s_i_id)) stock_count FROM order_line, stock WHERE ol_w_id = ? AND ol_d_id = ? AND ol_o_id < ? AND ol_o_id >= ? - 20 AND s_w_id = ? AND s_i_id = ol_i_id AND s_quantity < ?'`) tk.MustExec(`set @a=391,@b=1,@c=3058,@d=18`) tk.MustExec(`execute s1 using @a,@b,@c,@c,@a,@d`) @@ -909,10 +911,10 @@ func TestIssue29101(t *testing.T) { ` │ └─IndexLookUp_29 0.03 root `, ` │ ├─IndexRangeScan_27(Build) 0.03 cop[tikv] table:order_line, index:PRIMARY(ol_w_id, ol_d_id, ol_o_id, ol_number) range:[391 1 3038,391 1 3058), keep order:false, stats:pseudo`, ` │ └─TableRowIDScan_28(Probe) 0.03 cop[tikv] table:order_line keep order:false, stats:pseudo`, - ` └─IndexLookUp_13(Probe) 1.00 root `, - ` ├─IndexRangeScan_10(Build) 1.00 cop[tikv] table:stock, index:PRIMARY(s_w_id, s_i_id) range: decided by [eq(test.stock.s_i_id, test.order_line.ol_i_id) eq(test.stock.s_w_id, 391)], keep order:false, stats:pseudo`, - ` └─Selection_12(Probe) 1.00 cop[tikv] lt(test.stock.s_quantity, 18)`, - ` └─TableRowIDScan_11 1.00 cop[tikv] table:stock keep order:false, stats:pseudo`)) + ` └─IndexLookUp_13(Probe) 0.03 root `, + ` ├─IndexRangeScan_10(Build) 0.03 cop[tikv] table:stock, index:PRIMARY(s_w_id, s_i_id) range: decided by [eq(test.stock.s_i_id, test.order_line.ol_i_id) eq(test.stock.s_w_id, 391)], keep order:false, stats:pseudo`, + ` └─Selection_12(Probe) 0.03 cop[tikv] lt(test.stock.s_quantity, 18)`, + ` └─TableRowIDScan_11 0.03 cop[tikv] table:stock keep order:false, stats:pseudo`)) tk.MustExec(`execute s1 using @a,@b,@c,@c,@a,@d`) tk.MustQuery(`select @@last_plan_from_cache`).Check(testkit.Rows("1")) // can use the plan-cache } @@ -1030,7 +1032,7 @@ func TestPreparePlanCache4Function(t *testing.T) { tk.MustExec("set @a = 0, @b = 1, @c = 2, @d = null;") tk.MustQuery("execute stmt using @a, @b;").Check(testkit.Rows(" 2", "0 0", "1 1", "2 2")) tk.MustQuery("execute stmt using @c, @d;").Check(testkit.Rows(" 1", "0 2", "1 2", "2 0")) - tk.MustQuery("select @@last_plan_from_cache;").Check(testkit.Rows("1")) + tk.MustQuery("select @@last_plan_from_cache;").Check(testkit.Rows("0")) } func TestPreparePlanCache4DifferentSystemVars(t *testing.T) { diff --git a/executor/projection.go b/executor/projection.go index ac060e7e4a391..27ce1bafc0b8a 100644 --- a/executor/projection.go +++ b/executor/projection.go @@ -109,7 +109,7 @@ func (e *ProjectionExec) open(ctx context.Context) error { } if e.isUnparallelExec() { - e.childResult = newFirstChunk(e.children[0]) + e.childResult = tryNewCacheChunk(e.children[0]) e.memTracker.Consume(e.childResult.MemoryUsage()) } diff --git a/executor/recover_test.go b/executor/recover_test.go index f5328eb6b1527..aad1c93d9fb87 100644 --- a/executor/recover_test.go +++ b/executor/recover_test.go @@ -25,12 +25,13 @@ import ( "github.com/pingcap/tidb/errno" "github.com/pingcap/tidb/infoschema" "github.com/pingcap/tidb/parser/auth" - "github.com/pingcap/tidb/planner/core" "github.com/pingcap/tidb/sessionctx/variable" "github.com/pingcap/tidb/testkit" + "github.com/pingcap/tidb/util/dbterror" "github.com/pingcap/tidb/util/gcutil" "github.com/stretchr/testify/require" "github.com/tikv/client-go/v2/oracle" + tikvutil "github.com/tikv/client-go/v2/util" ) func TestRecoverTable(t *testing.T) { @@ -172,6 +173,7 @@ func TestFlashbackTable(t *testing.T) { // Test for flashback to new table. tk.MustExec("drop table t_flashback") tk.MustExec("create table t_flashback (a int);") + tk.MustGetErrMsg("flashback table t_flashback to ` `", dbterror.ErrWrongTableName.GenWithStack("Incorrect table name ' '").Error()) tk.MustExec("flashback table t_flashback to t_flashback2") // Check flashback table meta and data record. tk.MustQuery("select * from t_flashback2;").Check(testkit.Rows("1", "2", "3", "4", "5", "6")) @@ -327,42 +329,19 @@ func TestRecoverClusterMeetError(t *testing.T) { tk.MustExec("CREATE USER 'testflashback'@'localhost';") newTk := testkit.NewTestKit(t, store) require.NoError(t, newTk.Session().Auth(&auth.UserIdentity{Username: "testflashback", Hostname: "localhost"}, nil, nil)) - newTk.MustGetErrCode(fmt.Sprintf("flashback cluster to timestamp '%s'", time.Now().Add(0-30*time.Second)), int(core.ErrSpecificAccessDenied.Code())) + newTk.MustGetErrCode(fmt.Sprintf("flashback cluster to timestamp '%s'", time.Now().Add(0-30*time.Second)), errno.ErrPrivilegeCheckFail) tk.MustExec("drop user 'testflashback'@'localhost';") // Flashback failed because of ddl history. tk.MustExec("use test;") tk.MustExec("create table t(a int);") - tk.MustContainErrMsg(fmt.Sprintf("flashback cluster to timestamp '%s'", flashbackTs), "schema version not same, have done ddl during [flashbackTS, now)") + tk.MustMatchErrMsg(fmt.Sprintf("flashback cluster to timestamp '%s'", flashbackTs), "Detected schema change due to another DDL job during \\[.*, now\\), can't do flashback") require.NoError(t, failpoint.Disable("github.com/pingcap/tidb/expression/injectSafeTS")) require.NoError(t, failpoint.Disable("tikvclient/injectSafeTS")) require.NoError(t, failpoint.Disable("github.com/pingcap/tidb/ddl/mockFlashbackTest")) } -func TestRecoverClusterWithTiFlash(t *testing.T) { - store := testkit.CreateMockStore(t, withMockTiFlash(1)) - tk := testkit.NewTestKit(t, store) - - injectSafeTS := oracle.GoTimeToTS(time.Now().Add(-10 * time.Second)) - require.NoError(t, failpoint.Enable("tikvclient/injectSafeTS", - fmt.Sprintf("return(%v)", injectSafeTS))) - require.NoError(t, failpoint.Enable("github.com/pingcap/tidb/expression/injectSafeTS", - fmt.Sprintf("return(%v)", injectSafeTS))) - - timeBeforeDrop, _, safePointSQL, resetGC := MockGC(tk) - defer resetGC() - - // Set GC safe point - tk.MustExec(fmt.Sprintf(safePointSQL, timeBeforeDrop)) - - tk.MustContainErrMsg(fmt.Sprintf("flashback cluster to timestamp '%s'", time.Now().Add(0-30*time.Second)), - "not support flash back cluster with TiFlash stores") - - require.NoError(t, failpoint.Disable("github.com/pingcap/tidb/expression/injectSafeTS")) - require.NoError(t, failpoint.Disable("tikvclient/injectSafeTS")) -} - func TestFlashbackWithSafeTs(t *testing.T) { store := testkit.CreateMockStore(t) tk := testkit.NewTestKit(t, store) @@ -423,6 +402,63 @@ func TestFlashbackWithSafeTs(t *testing.T) { require.NoError(t, failpoint.Disable("github.com/pingcap/tidb/ddl/mockFlashbackTest")) } +func TestFlashbackSchema(t *testing.T) { + require.NoError(t, failpoint.Enable("github.com/pingcap/tidb/meta/autoid/mockAutoIDChange", `return(true)`)) + defer func() { + require.NoError(t, failpoint.Disable("github.com/pingcap/tidb/meta/autoid/mockAutoIDChange")) + }() + + store := testkit.CreateMockStore(t) + + tk := testkit.NewTestKit(t, store) + tk.MustExec("create database if not exists test_flashback") + tk.MustExec("use test_flashback") + tk.MustExec("drop table if exists t_flashback") + tk.MustExec("create table t_flashback (a int)") + + timeBeforeDrop, _, safePointSQL, resetGC := MockGC(tk) + defer resetGC() + + // if GC safe point is not exists in mysql.tidb + tk.MustGetErrMsg("flashback database db_not_exists", "can not get 'tikv_gc_safe_point'") + // Set GC safe point + tk.MustExec(fmt.Sprintf(safePointSQL, timeBeforeDrop)) + // Set GC enable. + require.NoError(t, gcutil.EnableGC(tk.Session())) + + tk.MustExec("insert into t_flashback values (1),(2),(3)") + tk.MustExec("drop database test_flashback") + + // Test flashback database with db_not_exists name. + tk.MustGetErrMsg("flashback database db_not_exists", "Can't find dropped database: db_not_exists in DDL history jobs") + tk.MustExec("flashback database test_flashback") + tk.MustGetErrMsg("flashback database test_flashback to test_flashback2", infoschema.ErrDatabaseExists.GenWithStack("Schema 'test_flashback' already been recover to 'test_flashback', can't be recover repeatedly").Error()) + + // Test flashback database failed by there is already a new database with the same name. + // If there is a new database with the same name, should return failed. + tk.MustExec("create database db_flashback") + tk.MustGetErrMsg("flashback schema db_flashback", infoschema.ErrDatabaseExists.GenWithStackByArgs("db_flashback").Error()) + + // Test for flashback schema. + tk.MustExec("drop database if exists test1") + tk.MustExec("create database test1") + tk.MustExec("use test1") + tk.MustExec("create table t (a int)") + tk.MustExec("create table t1 (a int)") + tk.MustExec("insert into t values (1),(2),(3)") + tk.MustExec("insert into t1 values (4),(5),(6)") + tk.MustExec("drop database test1") + tk.MustExec("flashback schema test1") + tk.MustExec("use test1") + tk.MustQuery("select a from t order by a").Check(testkit.Rows("1", "2", "3")) + tk.MustQuery("select a from t1 order by a").Check(testkit.Rows("4", "5", "6")) + tk.MustExec("drop database test1") + tk.MustExec("flashback schema test1 to test2") + tk.MustExec("use test2") + tk.MustQuery("select a from t order by a").Check(testkit.Rows("1", "2", "3")) + tk.MustQuery("select a from t1 order by a").Check(testkit.Rows("4", "5", "6")) +} + // MockGC is used to make GC work in the test environment. func MockGC(tk *testkit.TestKit) (string, string, string, func()) { originGC := ddlutil.IsEmulatorGCEnable() @@ -437,9 +473,8 @@ func MockGC(tk *testkit.TestKit) (string, string, string, func()) { // disable emulator GC. // Otherwise emulator GC will delete table record as soon as possible after execute drop table ddl. ddlutil.EmulatorGCDisable() - gcTimeFormat := "20060102-15:04:05 -0700 MST" - timeBeforeDrop := time.Now().Add(0 - 48*60*60*time.Second).Format(gcTimeFormat) - timeAfterDrop := time.Now().Add(48 * 60 * 60 * time.Second).Format(gcTimeFormat) + timeBeforeDrop := time.Now().Add(0 - 48*60*60*time.Second).Format(tikvutil.GCTimeFormat) + timeAfterDrop := time.Now().Add(48 * 60 * 60 * time.Second).Format(tikvutil.GCTimeFormat) safePointSQL := `INSERT HIGH_PRIORITY INTO mysql.tidb VALUES ('tikv_gc_safe_point', '%[1]s', '') ON DUPLICATE KEY UPDATE variable_value = '%[1]s'` diff --git a/executor/revoke.go b/executor/revoke.go index c00a1308e5eab..337e387c5b28f 100644 --- a/executor/revoke.go +++ b/executor/revoke.go @@ -271,13 +271,22 @@ func (e *RevokeExec) revokeTablePriv(internalSession sessionctx.Context, priv *a } sql := new(strings.Builder) sqlexec.MustFormatSQL(sql, "UPDATE %n.%n SET ", mysql.SystemDB, mysql.TablePrivTable) - err = composeTablePrivUpdateForRevoke(internalSession, sql, priv.Priv, user, host, dbName, tblName) + isDelRow, err := composeTablePrivUpdateForRevoke(internalSession, sql, priv.Priv, user, host, dbName, tblName) if err != nil { return err } - sqlexec.MustFormatSQL(sql, " WHERE User=%? AND Host=%? AND DB=%? AND Table_name=%?", user, host, dbName, tblName) + sqlexec.MustFormatSQL(sql, " WHERE User=%? AND Host=%? AND DB=%? AND Table_name=%?", user, host, dbName, tblName) _, err = internalSession.(sqlexec.SQLExecutor).ExecuteInternal(ctx, sql.String()) + if err != nil { + return err + } + + if isDelRow { + sql.Reset() + sqlexec.MustFormatSQL(sql, "DELETE FROM %n.%n WHERE User=%? AND Host=%? AND DB=%? AND Table_name=%?", mysql.SystemDB, mysql.TablePrivTable, user, host, dbName, tblName) + _, err = internalSession.(sqlexec.SQLExecutor).ExecuteInternal(ctx, sql.String()) + } return err } @@ -296,7 +305,7 @@ func (e *RevokeExec) revokeColumnPriv(internalSession sessionctx.Context, priv * sql.Reset() sqlexec.MustFormatSQL(sql, "UPDATE %n.%n SET ", mysql.SystemDB, mysql.ColumnPrivTable) - err = composeColumnPrivUpdateForRevoke(internalSession, sql, priv.Priv, user, host, dbName, tbl.Meta().Name.O, col.Name.O) + isDelRow, err := composeColumnPrivUpdateForRevoke(internalSession, sql, priv.Priv, user, host, dbName, tbl.Meta().Name.O, col.Name.O) if err != nil { return err } @@ -306,6 +315,17 @@ func (e *RevokeExec) revokeColumnPriv(internalSession sessionctx.Context, priv * if err != nil { return err } + + if isDelRow { + sql.Reset() + sqlexec.MustFormatSQL(sql, "DELETE FROM %n.%n WHERE User=%? AND Host=%? AND DB=%? AND Table_name=%? AND Column_name=%?", mysql.SystemDB, mysql.ColumnPrivTable, user, host, dbName, tbl.Meta().Name.O, col.Name.O) + _, err = internalSession.(sqlexec.SQLExecutor).ExecuteInternal(ctx, sql.String()) + if err != nil { + return err + } + break + } + //TODO Optimized for batch, one-shot. } return nil } @@ -319,12 +339,12 @@ func privUpdateForRevoke(cur []string, priv mysql.PrivilegeType) ([]string, erro return cur, nil } -func composeTablePrivUpdateForRevoke(ctx sessionctx.Context, sql *strings.Builder, priv mysql.PrivilegeType, name string, host string, db string, tbl string) error { +func composeTablePrivUpdateForRevoke(ctx sessionctx.Context, sql *strings.Builder, priv mysql.PrivilegeType, name string, host string, db string, tbl string) (bool, error) { var newTablePriv, newColumnPriv []string currTablePriv, currColumnPriv, err := getTablePriv(ctx, name, host, db, tbl) if err != nil { - return err + return false, err } if priv == mysql.AllPriv { @@ -340,36 +360,35 @@ func composeTablePrivUpdateForRevoke(ctx sessionctx.Context, sql *strings.Builde newTablePriv = SetFromString(currTablePriv) newTablePriv, err = privUpdateForRevoke(newTablePriv, priv) if err != nil { - return err + return false, err } newColumnPriv = SetFromString(currColumnPriv) newColumnPriv, err = privUpdateForRevoke(newColumnPriv, priv) if err != nil { - return err + return false, err } } - sqlexec.MustFormatSQL(sql, `Table_priv=%?, Column_priv=%?, Grantor=%?`, strings.Join(newTablePriv, ","), strings.Join(newColumnPriv, ","), ctx.GetSessionVars().User.String()) - return nil + return len(newTablePriv) == 0, nil } -func composeColumnPrivUpdateForRevoke(ctx sessionctx.Context, sql *strings.Builder, priv mysql.PrivilegeType, name string, host string, db string, tbl string, col string) error { +func composeColumnPrivUpdateForRevoke(ctx sessionctx.Context, sql *strings.Builder, priv mysql.PrivilegeType, name string, host string, db string, tbl string, col string) (bool, error) { var newColumnPriv []string if priv != mysql.AllPriv { currColumnPriv, err := getColumnPriv(ctx, name, host, db, tbl, col) if err != nil { - return err + return false, err } newColumnPriv = SetFromString(currColumnPriv) newColumnPriv, err = privUpdateForRevoke(newColumnPriv, priv) if err != nil { - return err + return false, err } } sqlexec.MustFormatSQL(sql, `Column_priv=%?`, strings.Join(newColumnPriv, ",")) - return nil + return len(newColumnPriv) == 0, nil } diff --git a/executor/revoke_test.go b/executor/revoke_test.go index 1330b76bc6b59..635fa18552df5 100644 --- a/executor/revoke_test.go +++ b/executor/revoke_test.go @@ -98,28 +98,35 @@ func TestRevokeTableScope(t *testing.T) { res.Check(testkit.Rows("Select,Insert,Update,Delete,Create,Drop,Index,Alter,Create View,Show View,Trigger,References")) // Revoke each priv from the user. - for _, v := range mysql.AllTablePrivs { + for index, v := range mysql.AllTablePrivs { sql := fmt.Sprintf("REVOKE %s ON test.test1 FROM 'testTblRevoke'@'localhost';", mysql.Priv2Str[v]) tk.MustExec(sql) rows := tk.MustQuery(`SELECT Table_priv FROM mysql.tables_priv WHERE User="testTblRevoke" and host="localhost" and db="test" and Table_name="test1";`).Rows() - require.Len(t, rows, 1) - row := rows[0] - require.Len(t, row, 1) - - op := v.SetString() - found := false - for _, p := range executor.SetFromString(fmt.Sprintf("%s", row[0])) { - if op == p { - found = true - break + if index < len(mysql.AllTablePrivs)-1 { + require.Len(t, rows, 1) + row := rows[0] + require.Len(t, row, 1) + op := v.SetString() + found := false + for _, p := range executor.SetFromString(fmt.Sprintf("%s", row[0])) { + if op == p { + found = true + break + } } + require.False(t, found, "%s", mysql.Priv2SetStr[v]) + } else { + //delete row when last prv , updated by issue #38421 + require.Len(t, rows, 0) } - require.False(t, found, "%s", mysql.Priv2SetStr[v]) } // Revoke all table scope privs. + tk.MustExec(`GRANT ALL PRIVILEGES ON test.test1 TO 'testTblRevoke'@'localhost';`) tk.MustExec("REVOKE ALL ON test.test1 FROM 'testTblRevoke'@'localhost';") - tk.MustQuery(`SELECT Table_priv FROM mysql.Tables_priv WHERE User="testTblRevoke" and host="localhost" and db="test" and Table_name="test1"`).Check(testkit.Rows("")) + //delete row when last prv , updated by issue #38421 + rows := tk.MustQuery(`SELECT Table_priv FROM mysql.Tables_priv WHERE User="testTblRevoke" and host="localhost" and db="test" and Table_name="test1"`).Rows() + require.Len(t, rows, 0) } func TestRevokeColumnScope(t *testing.T) { @@ -145,7 +152,9 @@ func TestRevokeColumnScope(t *testing.T) { require.Greater(t, strings.Index(p, mysql.Priv2SetStr[v]), -1) tk.MustExec(revokeSQL) - tk.MustQuery(checkSQL).Check(testkit.Rows("")) + //delete row when last prv , updated by issue #38421 + rows = tk.MustQuery(checkSQL).Rows() + require.Len(t, rows, 0) } // Create a new user. @@ -163,7 +172,40 @@ func TestRevokeColumnScope(t *testing.T) { require.Greater(t, strings.Index(p, mysql.Priv2SetStr[v]), -1) } tk.MustExec("REVOKE ALL(c2) ON test3 FROM 'testCol1Revoke'@'localhost'") - tk.MustQuery(`SELECT Column_priv FROM mysql.Columns_priv WHERE User="testCol1Revoke" and host="localhost" and db="test" and Table_name="test3"`).Check(testkit.Rows("")) + //delete row when last prv , updated by issue #38421 + rows := tk.MustQuery(`SELECT Column_priv FROM mysql.Columns_priv WHERE User="testCol1Revoke" and host="localhost" and db="test" and Table_name="test3"`).Rows() + require.Len(t, rows, 0) +} + +// ref issue #38421 +func TestRevokeTableSingle(t *testing.T) { + store := testkit.CreateMockStore(t) + tk := testkit.NewTestKit(t, store) + // Create a new user. + tk.MustExec(`CREATE USER test;`) + tk.MustExec(`CREATE TABLE test.test1(c1 int);`) + tk.MustExec(`GRANT SELECT ON test.test1 TO test;`) + + tk.MustExec(`REVOKE SELECT ON test.test1 from test;`) + + rows := tk.MustQuery(`SELECT Column_priv FROM mysql.tables_priv WHERE User="test" `).Rows() + require.Len(t, rows, 0) +} + +// ref issue #38421(column fix) +func TestRevokeTableSingleColumn(t *testing.T) { + store := testkit.CreateMockStore(t) + tk := testkit.NewTestKit(t, store) + // Create a new user. + tk.MustExec(`CREATE USER test;`) + tk.MustExec(`GRANT SELECT(Host) ON mysql.db TO test`) + tk.MustExec(`GRANT SELECT(DB) ON mysql.db TO test`) + tk.MustExec(`REVOKE SELECT(Host) ON mysql.db FROM test`) + + rows := tk.MustQuery(`SELECT Column_priv FROM mysql.columns_priv WHERE User="test" and Column_name ='Host' `).Rows() + require.Len(t, rows, 0) + rows = tk.MustQuery(`SELECT Column_priv FROM mysql.columns_priv WHERE User="test" and Column_name ='DB' `).Rows() + require.Len(t, rows, 1) } func TestRevokeDynamicPrivs(t *testing.T) { diff --git a/executor/select_into.go b/executor/select_into.go index d526edec874f4..556edc58c7cbe 100644 --- a/executor/select_into.go +++ b/executor/select_into.go @@ -60,7 +60,7 @@ func (s *SelectIntoExec) Open(ctx context.Context) error { s.started = true s.dstFile = f s.writer = bufio.NewWriter(s.dstFile) - s.chk = newFirstChunk(s.children[0]) + s.chk = tryNewCacheChunk(s.children[0]) s.lineBuf = make([]byte, 0, 1024) s.fieldBuf = make([]byte, 0, 64) s.escapeBuf = make([]byte, 0, 64) diff --git a/executor/seqtest/BUILD.bazel b/executor/seqtest/BUILD.bazel index 5de83a3501269..64046c0852123 100644 --- a/executor/seqtest/BUILD.bazel +++ b/executor/seqtest/BUILD.bazel @@ -9,6 +9,7 @@ go_test( "seq_executor_test.go", ], flaky = True, + race = "on", shard_count = 39, deps = [ "//config", @@ -23,7 +24,6 @@ go_test( "//parser/ast", "//parser/model", "//parser/mysql", - "//parser/terror", "//planner/core", "//server", "//session", diff --git a/executor/seqtest/main_test.go b/executor/seqtest/main_test.go index 5a1e3d84813f4..299cc69a8a26f 100644 --- a/executor/seqtest/main_test.go +++ b/executor/seqtest/main_test.go @@ -30,6 +30,7 @@ func TestMain(m *testing.M) { }) opts := []goleak.Option{ goleak.IgnoreTopFunction("github.com/golang/glog.(*loggingT).flushDaemon"), + goleak.IgnoreTopFunction("github.com/lestrrat-go/httprc.runFetchWorker"), goleak.IgnoreTopFunction("github.com/pingcap/tidb/executor.readProjectionInput"), goleak.IgnoreTopFunction("go.etcd.io/etcd/client/pkg/v3/logutil.(*MergeLogger).outputLoop"), goleak.IgnoreTopFunction("go.opencensus.io/stats/view.(*worker).start"), diff --git a/executor/seqtest/prepared_test.go b/executor/seqtest/prepared_test.go index 05331dcce2c1d..11dae5e570767 100644 --- a/executor/seqtest/prepared_test.go +++ b/executor/seqtest/prepared_test.go @@ -334,7 +334,7 @@ func TestPrepareWithAggregation(t *testing.T) { tk.MustExec(fmt.Sprintf(`set @@tidb_enable_prepared_plan_cache=%v`, flag)) se, err := session.CreateSession4TestWithOpt(store, &session.Opt{ - PreparedPlanCache: plannercore.NewLRUPlanCache(100, 0.1, math.MaxUint64, plannercore.PickPlanFromBucket), + PreparedPlanCache: plannercore.NewLRUPlanCache(100, 0.1, math.MaxUint64, plannercore.PickPlanFromBucket, tk.Session()), }) require.NoError(t, err) tk.SetSession(se) @@ -599,7 +599,7 @@ func TestPrepareDealloc(t *testing.T) { tk.MustExec(`set @@tidb_enable_prepared_plan_cache=true`) se, err := session.CreateSession4TestWithOpt(store, &session.Opt{ - PreparedPlanCache: plannercore.NewLRUPlanCache(3, 0.1, math.MaxUint64, plannercore.PickPlanFromBucket), + PreparedPlanCache: plannercore.NewLRUPlanCache(3, 0.1, math.MaxUint64, plannercore.PickPlanFromBucket, tk.Session()), }) require.NoError(t, err) tk.SetSession(se) diff --git a/executor/seqtest/seq_executor_test.go b/executor/seqtest/seq_executor_test.go index cac879acd4111..7f16fd68da5e7 100644 --- a/executor/seqtest/seq_executor_test.go +++ b/executor/seqtest/seq_executor_test.go @@ -41,7 +41,6 @@ import ( "github.com/pingcap/tidb/meta/autoid" "github.com/pingcap/tidb/parser/model" "github.com/pingcap/tidb/parser/mysql" - "github.com/pingcap/tidb/parser/terror" plannercore "github.com/pingcap/tidb/planner/core" "github.com/pingcap/tidb/session" "github.com/pingcap/tidb/sessionctx/variable" @@ -496,11 +495,10 @@ func TestShow(t *testing.T) { )) tk.MustExec(`drop table if exists t`) - _, err := tk.Exec(`CREATE TABLE t (x int, y char) PARTITION BY RANGE(y) ( + tk.MustExecToErr(`CREATE TABLE t (x int, y char) PARTITION BY RANGE(y) ( PARTITION p0 VALUES LESS THAN (10), PARTITION p1 VALUES LESS THAN (20), PARTITION p2 VALUES LESS THAN (MAXVALUE))`) - require.Error(t, err) // Test range columns partition tk.MustExec(`drop table if exists t`) @@ -543,7 +541,7 @@ func TestShow(t *testing.T) { // Test show create table year type tk.MustExec(`drop table if exists t`) - tk.MustExec(`create table t(y year unsigned signed zerofill zerofill, x int, primary key(y));`) + tk.MustExec(`create table t(y year unsigned signed zerofill zerofill, x int, primary key(y) nonclustered);`) tk.MustQuery(`show create table t`).Check(testkit.RowsWithSep("|", "t CREATE TABLE `t` (\n"+ " `y` year(4) NOT NULL,\n"+ @@ -940,7 +938,7 @@ func TestBatchInsertDelete(t *testing.T) { atomic.StoreUint64(&kv.TxnTotalSizeLimit, originLimit) }() // Set the limitation to a small value, make it easier to reach the limitation. - atomic.StoreUint64(&kv.TxnTotalSizeLimit, 5700) + atomic.StoreUint64(&kv.TxnTotalSizeLimit, 5800) tk := testkit.NewTestKit(t, store) tk.MustExec("use test") @@ -1050,9 +1048,7 @@ func TestBatchInsertDelete(t *testing.T) { // Test case for batch delete. // This will meet txn too large error. - _, err = tk.Exec("delete from batch_insert;") - require.Error(t, err) - require.True(t, kv.ErrTxnTooLarge.Equal(err)) + tk.MustGetErrCode("delete from batch_insert;", errno.ErrTxnTooLarge) r = tk.MustQuery("select count(*) from batch_insert;") r.Check(testkit.Rows("640")) // Enable batch delete and set batch size to 50. @@ -1458,8 +1454,7 @@ func TestMaxDeltaSchemaCount(t *testing.T) { tk.RefreshSession() tk.MustExec("use test") require.Equal(t, int64(16384), variable.GetMaxDeltaSchemaCount()) - _, err := tk.Exec("set @@global.tidb_max_delta_schema_count= invalid_val") - require.Truef(t, terror.ErrorEqual(err, variable.ErrWrongTypeForVar), "err %v", err) + tk.MustGetErrCode("set @@global.tidb_max_delta_schema_count= invalid_val", errno.ErrWrongTypeForVar) tk.MustExec("set @@global.tidb_max_delta_schema_count= 2048") tk.RefreshSession() diff --git a/executor/set.go b/executor/set.go index 90ec6d750299c..b3b8c00c1d316 100644 --- a/executor/set.go +++ b/executor/set.go @@ -123,11 +123,11 @@ func (e *SetExecutor) setSysVariable(ctx context.Context, name string, v *expres } if v.IsGlobal { - valStr, err := e.getVarValue(v, sysVar) + valStr, err := e.getVarValue(ctx, v, sysVar) if err != nil { return err } - err = sessionVars.GlobalVarsAccessor.SetGlobalSysVar(name, valStr) + err = sessionVars.GlobalVarsAccessor.SetGlobalSysVar(ctx, name, valStr) if err != nil { return err } @@ -142,7 +142,7 @@ func (e *SetExecutor) setSysVariable(ctx context.Context, name string, v *expres return err } // Set session variable - valStr, err := e.getVarValue(v, nil) + valStr, err := e.getVarValue(ctx, v, nil) if err != nil { return err } @@ -251,7 +251,7 @@ func (e *SetExecutor) setCharset(cs, co string, isSetName bool) error { return errors.Trace(sessionVars.SetSystemVar(variable.CollationConnection, coDb)) } -func (e *SetExecutor) getVarValue(v *expression.VarAssignment, sysVar *variable.SysVar) (value string, err error) { +func (e *SetExecutor) getVarValue(ctx context.Context, v *expression.VarAssignment, sysVar *variable.SysVar) (value string, err error) { if v.IsDefault { // To set a SESSION variable to the GLOBAL value or a GLOBAL value // to the compiled-in MySQL default value, use the DEFAULT keyword. @@ -259,7 +259,7 @@ func (e *SetExecutor) getVarValue(v *expression.VarAssignment, sysVar *variable. if sysVar != nil { return sysVar.Value, nil } - return e.ctx.GetSessionVars().GetGlobalSystemVar(v.Name) + return e.ctx.GetSessionVars().GetGlobalSystemVar(ctx, v.Name) } nativeVal, err := v.Expr.Eval(chunk.Row{}) if err != nil || nativeVal.IsNull() { diff --git a/executor/set_test.go b/executor/set_test.go index 0f099e8182e44..a8d4a0b059246 100644 --- a/executor/set_test.go +++ b/executor/set_test.go @@ -829,6 +829,30 @@ func TestSetVar(t *testing.T) { tk.MustQuery("select @@global.tidb_auto_analyze_partition_batch_size").Check(testkit.Rows("1")) // min value is 1 tk.MustExec("set global tidb_auto_analyze_partition_batch_size = 9999") tk.MustQuery("select @@global.tidb_auto_analyze_partition_batch_size").Check(testkit.Rows("1024")) // max value is 1024 + + // test variable 'tidb_opt_prefix_index_single_scan' + // global scope + tk.MustQuery("select @@global.tidb_opt_prefix_index_single_scan").Check(testkit.Rows("1")) // default value + tk.MustExec("set global tidb_opt_prefix_index_single_scan = 0") + tk.MustQuery("select @@global.tidb_opt_prefix_index_single_scan").Check(testkit.Rows("0")) + tk.MustExec("set global tidb_opt_prefix_index_single_scan = 1") + tk.MustQuery("select @@global.tidb_opt_prefix_index_single_scan").Check(testkit.Rows("1")) + // session scope + tk.MustQuery("select @@session.tidb_opt_prefix_index_single_scan").Check(testkit.Rows("1")) // default value + tk.MustExec("set session tidb_opt_prefix_index_single_scan = 0") + tk.MustQuery("select @@session.tidb_opt_prefix_index_single_scan").Check(testkit.Rows("0")) + tk.MustExec("set session tidb_opt_prefix_index_single_scan = 1") + tk.MustQuery("select @@session.tidb_opt_prefix_index_single_scan").Check(testkit.Rows("1")) + + // test tidb_opt_range_max_size + tk.MustQuery("select @@tidb_opt_range_max_size").Check(testkit.Rows("67108864")) + tk.MustExec("set global tidb_opt_range_max_size = -1") + tk.MustQuery("show warnings").Check(testkit.RowsWithSep("|", "Warning|1292|Truncated incorrect tidb_opt_range_max_size value: '-1'")) + tk.MustQuery("select @@global.tidb_opt_range_max_size").Check(testkit.Rows("0")) + tk.MustExec("set global tidb_opt_range_max_size = 1048576") + tk.MustQuery("select @@global.tidb_opt_range_max_size").Check(testkit.Rows("1048576")) + tk.MustExec("set session tidb_opt_range_max_size = 2097152") + tk.MustQuery("select @@session.tidb_opt_range_max_size").Check(testkit.Rows("2097152")) } func TestGetSetNoopVars(t *testing.T) { @@ -862,15 +886,6 @@ func TestGetSetNoopVars(t *testing.T) { err = tk.ExecToErr("SET GLOBAL tidb_enable_noop_variables = 'warn'") require.Error(t, err) require.Equal(t, "[variable:1231]Variable 'tidb_enable_noop_variables' can't be set to the value of 'warn'", err.Error()) - - tk.MustQuery("select @@tidb_opt_range_max_size").Check(testkit.Rows("0")) - tk.MustExec("set global tidb_opt_range_max_size = 1048576") - tk.MustQuery("select @@global.tidb_opt_range_max_size").Check(testkit.Rows("1048576")) - tk.MustExec("set global tidb_opt_range_max_size = -1") - tk.MustQuery("show warnings").Check(testkit.RowsWithSep("|", "Warning|1292|Truncated incorrect tidb_opt_range_max_size value: '-1'")) - tk.MustQuery("select @@global.tidb_opt_range_max_size").Check(testkit.Rows("0")) - tk.MustExec("set session tidb_opt_range_max_size = 2097152") - tk.MustQuery("select @@session.tidb_opt_range_max_size").Check(testkit.Rows("2097152")) } func TestTruncateIncorrectIntSessionVar(t *testing.T) { @@ -922,7 +937,7 @@ func TestSetCharset(t *testing.T) { check := func(args ...string) { for i, v := range characterSetVariables { - sVar, err := sessionVars.GetSessionOrGlobalSystemVar(v) + sVar, err := sessionVars.GetSessionOrGlobalSystemVar(context.Background(), v) require.NoError(t, err) require.Equal(t, args[i], sVar, fmt.Sprintf("%d: %s", i, characterSetVariables[i])) } @@ -2008,3 +2023,38 @@ func TestSetTiFlashFastScanVariable(t *testing.T) { tk.MustExec("set GLOBAL tiflash_fastscan=OFF;") tk.MustQuery("select @@global.tiflash_fastscan").Check(testkit.Rows("0")) } + +func TestSetPlanCacheMemoryMonitor(t *testing.T) { + store := testkit.CreateMockStore(t) + tk := testkit.NewTestKit(t, store) + tk.MustExec("use test") + + tk.MustQuery("select @@session.tidb_enable_prepared_plan_cache_memory_monitor").Check(testkit.Rows("1")) + tk.MustQuery("select @@global.tidb_enable_prepared_plan_cache_memory_monitor").Check(testkit.Rows("1")) + + tk.MustExec("set @@session.tidb_enable_prepared_plan_cache_memory_monitor=OFF;") + tk.MustQuery("select @@session.tidb_enable_prepared_plan_cache_memory_monitor").Check(testkit.Rows("0")) + + tk.MustExec("set @@session.tidb_enable_prepared_plan_cache_memory_monitor=1;") + tk.MustQuery("select @@session.tidb_enable_prepared_plan_cache_memory_monitor").Check(testkit.Rows("1")) + + tk.MustExec("set @@global.tidb_enable_prepared_plan_cache_memory_monitor=off;") + tk.MustQuery("select @@global.tidb_enable_prepared_plan_cache_memory_monitor").Check(testkit.Rows("0")) +} + +func TestSetChunkReuseVariable(t *testing.T) { + store := testkit.CreateMockStore(t) + tk := testkit.NewTestKit(t, store) + tk.MustExec("set @@tidb_enable_reuse_chunk=ON;") + tk.MustQuery("select @@session.tidb_enable_reuse_chunk").Check(testkit.Rows("1")) + tk.MustExec("set GLOBAL tidb_enable_reuse_chunk=ON;") + tk.MustQuery("select @@global.tidb_enable_reuse_chunk").Check(testkit.Rows("1")) + + tk.MustExec("set @@tidb_enable_reuse_chunk=OFF;") + tk.MustQuery("select @@session.tidb_enable_reuse_chunk").Check(testkit.Rows("0")) + tk.MustExec("set GLOBAL tidb_enable_reuse_chunk=OFF;") + tk.MustQuery("select @@global.tidb_enable_reuse_chunk").Check(testkit.Rows("0")) + + // error value + tk.MustGetErrCode("set @@tidb_enable_reuse_chunk=s;", errno.ErrWrongValueForVar) +} diff --git a/executor/show.go b/executor/show.go index 9f5a1ba0d2194..72bd63a785623 100644 --- a/executor/show.go +++ b/executor/show.go @@ -204,7 +204,7 @@ func (e *ShowExec) fetchAll(ctx context.Context) error { case ast.ShowTriggers: return e.fetchShowTriggers() case ast.ShowVariables: - return e.fetchShowVariables() + return e.fetchShowVariables(ctx) case ast.ShowWarnings: return e.fetchShowWarnings(false) case ast.ShowErrors: @@ -226,6 +226,8 @@ func (e *ShowExec) fetchAll(ctx context.Context) error { case ast.ShowStatsHealthy: e.fetchShowStatsHealthy() return nil + case ast.ShowStatsLocked: + return e.fetchShowStatsLocked() case ast.ShowHistogramsInFlight: e.fetchShowHistogramsInFlight() return nil @@ -817,7 +819,7 @@ func (e *ShowExec) fetchShowMasterStatus() error { return nil } -func (e *ShowExec) fetchShowVariables() (err error) { +func (e *ShowExec) fetchShowVariables(ctx context.Context) (err error) { var ( value string sessionVars = e.ctx.GetSessionVars() @@ -849,7 +851,7 @@ func (e *ShowExec) fetchShowVariables() (err error) { if infoschema.SysVarHiddenForSem(e.ctx, v.Name) { continue } - value, err = sessionVars.GetGlobalSystemVar(v.Name) + value, err = sessionVars.GetGlobalSystemVar(ctx, v.Name) if err != nil { return errors.Trace(err) } @@ -874,7 +876,7 @@ func (e *ShowExec) fetchShowVariables() (err error) { if infoschema.SysVarHiddenForSem(e.ctx, v.Name) { continue } - value, err = sessionVars.GetSessionOrGlobalSystemVar(v.Name) + value, err = sessionVars.GetSessionOrGlobalSystemVar(context.Background(), v.Name) if err != nil { return errors.Trace(err) } @@ -1139,6 +1141,9 @@ func ConstructResultOfShowCreateTable(ctx sessionctx.Context, tableInfo *model.T if model.ReferOptionType(fk.OnUpdate) != 0 { buf.WriteString(fmt.Sprintf(" ON UPDATE %s", model.ReferOptionType(fk.OnUpdate).String())) } + if fk.Version < model.FKVersion1 { + buf.WriteString(" /* FOREIGN KEY INVALID */") + } } buf.WriteString("\n") @@ -1216,7 +1221,7 @@ func ConstructResultOfShowCreateTable(ctx sessionctx.Context, tableInfo *model.T } // add partition info here. - appendPartitionInfo(tableInfo.Partition, buf, sqlMode) + ddl.AppendPartitionInfo(tableInfo.Partition, buf, sqlMode) return nil } @@ -1349,52 +1354,6 @@ func fetchShowCreateTable4View(ctx sessionctx.Context, tb *model.TableInfo, buf fmt.Fprintf(buf, ") AS %s", tb.View.SelectStmt) } -func appendPartitionInfo(partitionInfo *model.PartitionInfo, buf *bytes.Buffer, sqlMode mysql.SQLMode) { - if partitionInfo == nil { - return - } - // Since MySQL 5.1/5.5 is very old and TiDB aims for 5.7/8.0 compatibility, we will not - // include the /*!50100 or /*!50500 comments for TiDB. - // This also solves the issue with comments within comments that would happen for - // PLACEMENT POLICY options. - if partitionInfo.Type == model.PartitionTypeHash { - defaultPartitionDefinitions := true - for i, def := range partitionInfo.Definitions { - if def.Name.O != fmt.Sprintf("p%d", i) { - defaultPartitionDefinitions = false - break - } - if len(def.Comment) > 0 || def.PlacementPolicyRef != nil { - defaultPartitionDefinitions = false - break - } - } - - if defaultPartitionDefinitions { - fmt.Fprintf(buf, "\nPARTITION BY HASH (%s) PARTITIONS %d", partitionInfo.Expr, partitionInfo.Num) - return - } - } - // this if statement takes care of lists/range columns case - if len(partitionInfo.Columns) > 0 { - // partitionInfo.Type == model.PartitionTypeRange || partitionInfo.Type == model.PartitionTypeList - // Notice that MySQL uses two spaces between LIST and COLUMNS... - fmt.Fprintf(buf, "\nPARTITION BY %s COLUMNS(", partitionInfo.Type.String()) - for i, col := range partitionInfo.Columns { - buf.WriteString(stringutil.Escape(col.O, sqlMode)) - if i < len(partitionInfo.Columns)-1 { - buf.WriteString(",") - } - } - buf.WriteString(")\n(") - } else { - fmt.Fprintf(buf, "\nPARTITION BY %s (%s)\n(", partitionInfo.Type.String(), partitionInfo.Expr) - } - - ddl.AppendPartitionDefs(partitionInfo, buf, sqlMode) - buf.WriteString(")") -} - // ConstructResultOfShowCreateDatabase constructs the result for show create database. func ConstructResultOfShowCreateDatabase(ctx sessionctx.Context, dbInfo *model.DBInfo, ifNotExists bool, buf *bytes.Buffer) (err error) { sqlMode := ctx.GetSessionVars().SQLMode @@ -1504,7 +1463,7 @@ func (e *ShowExec) fetchShowCollation() error { return nil } -// fetchShowCreateUser composes show create create user result. +// fetchShowCreateUser composes 'show create user' result. func (e *ShowExec) fetchShowCreateUser(ctx context.Context) error { checker := privilege.GetPrivilegeManager(e.ctx) if checker == nil { @@ -1528,7 +1487,9 @@ func (e *ShowExec) fetchShowCreateUser(ctx context.Context) error { exec := e.ctx.(sqlexec.RestrictedSQLExecutor) - rows, _, err := exec.ExecRestrictedSQL(ctx, nil, `SELECT plugin, Account_locked FROM %n.%n WHERE User=%? AND Host=%?`, mysql.SystemDB, mysql.UserTable, userName, strings.ToLower(hostName)) + rows, _, err := exec.ExecRestrictedSQL(ctx, nil, `SELECT plugin, Account_locked, JSON_UNQUOTE(JSON_EXTRACT(user_attributes, '$.metadata')), Token_issuer + FROM %n.%n WHERE User=%? AND Host=%?`, + mysql.SystemDB, mysql.UserTable, userName, strings.ToLower(hostName)) if err != nil { return errors.Trace(err) } @@ -1550,6 +1511,16 @@ func (e *ShowExec) fetchShowCreateUser(ctx context.Context) error { accountLocked = "UNLOCK" } + userAttributes := rows[0].GetString(2) + if len(userAttributes) > 0 { + userAttributes = " ATTRIBUTE " + userAttributes + } + + tokenIssuer := rows[0].GetString(3) + if len(tokenIssuer) > 0 { + tokenIssuer = " token_issuer " + tokenIssuer + } + rows, _, err = exec.ExecRestrictedSQL(ctx, nil, `SELECT Priv FROM %n.%n WHERE User=%? AND Host=%?`, mysql.SystemDB, mysql.GlobalPrivTable, userName, hostName) if err != nil { return errors.Trace(err) @@ -1573,8 +1544,8 @@ func (e *ShowExec) fetchShowCreateUser(ctx context.Context) error { } // FIXME: the returned string is not escaped safely - showStr := fmt.Sprintf("CREATE USER '%s'@'%s' IDENTIFIED WITH '%s'%s REQUIRE %s PASSWORD EXPIRE DEFAULT ACCOUNT %s", - e.User.Username, e.User.Hostname, authplugin, authStr, require, accountLocked) + showStr := fmt.Sprintf("CREATE USER '%s'@'%s' IDENTIFIED WITH '%s'%s REQUIRE %s%s PASSWORD EXPIRE DEFAULT ACCOUNT %s%s", + e.User.Username, e.User.Hostname, authplugin, authStr, require, tokenIssuer, accountLocked, userAttributes) e.appendRow([]interface{}{showStr}) return nil } @@ -2016,10 +1987,8 @@ func (e *ShowExec) fetchShowSessionStates(ctx context.Context) error { var token *sessionstates.SessionToken // In testing, user may be nil. if user := e.ctx.GetSessionVars().User; user != nil { - // The token may be leaked without secure transport, so we enforce secure transport (TLS or Unix Socket). - if !e.ctx.GetSessionVars().ConnectionInfo.IsSecureTransport() { - return sessionstates.ErrCannotMigrateSession.GenWithStackByArgs("the token must be queried with secure transport") - } + // The token may be leaked without secure transport, but the cloud can ensure security in some situations, + // so we don't enforce secure connections. if token, err = sessionstates.CreateSessionToken(user.Username); err != nil { return err } @@ -2051,7 +2020,7 @@ func tryFillViewColumnType(ctx context.Context, sctx sessionctx.Context, is info // Retrieve view columns info. planBuilder, _ := plannercore.NewPlanBuilder( plannercore.PlanBuilderOptNoExecution{}).Init(s, is, &hint.BlockHintProcessor{}) - if viewLogicalPlan, err := planBuilder.BuildDataSourceFromView(ctx, dbName, tbl); err == nil { + if viewLogicalPlan, err := planBuilder.BuildDataSourceFromView(ctx, dbName, tbl, nil, nil); err == nil { viewSchema := viewLogicalPlan.Schema() viewOutputNames := viewLogicalPlan.OutputNames() for _, col := range tbl.Columns { diff --git a/executor/show_stats.go b/executor/show_stats.go index 058b3ed7c62da..6161a173e8fe4 100644 --- a/executor/show_stats.go +++ b/executor/show_stats.go @@ -143,6 +143,49 @@ func (e *ShowExec) appendTableForStatsMeta(dbName, tblName, partitionName string }) } +func (e *ShowExec) appendTableForStatsLocked(dbName, tblName, partitionName string) { + e.appendRow([]interface{}{ + dbName, + tblName, + partitionName, + "locked", + }) +} + +func (e *ShowExec) fetchShowStatsLocked() error { + do := domain.GetDomain(e.ctx) + h := do.StatsHandle() + dbs := do.InfoSchema().AllSchemas() + for _, db := range dbs { + for _, tbl := range db.Tables { + pi := tbl.GetPartitionInfo() + if pi == nil || e.ctx.GetSessionVars().IsDynamicPartitionPruneEnabled() { + partitionName := "" + if pi != nil { + partitionName = "global" + } + if h.IsTableLocked(tbl.ID) { + e.appendTableForStatsLocked(db.Name.O, tbl.Name.O, partitionName) + } + if pi != nil { + for _, def := range pi.Definitions { + if h.IsTableLocked(def.ID) { + e.appendTableForStatsLocked(db.Name.O, tbl.Name.O, def.Name.O) + } + } + } + } else { + for _, def := range pi.Definitions { + if h.IsTableLocked(def.ID) { + e.appendTableForStatsLocked(db.Name.O, tbl.Name.O, def.Name.O) + } + } + } + } + } + return nil +} + func (e *ShowExec) fetchShowStatsHistogram() error { do := domain.GetDomain(e.ctx) h := do.StatsHandle() diff --git a/executor/show_stats_test.go b/executor/show_stats_test.go index cb8bdebcad8ac..4046c2303b429 100644 --- a/executor/show_stats_test.go +++ b/executor/show_stats_test.go @@ -44,6 +44,24 @@ func TestShowStatsMeta(t *testing.T) { require.Equal(t, "t", result.Rows()[0][1]) } +func TestShowStatsLocked(t *testing.T) { + store := testkit.CreateMockStore(t) + + tk := testkit.NewTestKit(t, store) + tk.MustExec("use test") + tk.MustExec("drop table if exists t, t1") + tk.MustExec("create table t (a int, b int)") + tk.MustExec("create table t1 (a int, b int)") + tk.MustExec("lock stats t, t1") + result := tk.MustQuery("show stats_locked") + require.Len(t, result.Rows(), 2) + require.Equal(t, "t", result.Rows()[0][1]) + require.Equal(t, "t1", result.Rows()[1][1]) + result = tk.MustQuery("show stats_locked where table_name = 't'") + require.Len(t, result.Rows(), 1) + require.Equal(t, "t", result.Rows()[0][1]) +} + func TestShowStatsHistograms(t *testing.T) { store := testkit.CreateMockStore(t) @@ -397,4 +415,19 @@ func TestShowAnalyzeStatus(t *testing.T) { require.Equal(t, "", rows[1][8]) require.Equal(t, addr, rows[1][9]) require.Equal(t, "", rows[1][10]) + + tk.MustExec("delete from mysql.analyze_jobs") + tk.MustExec("create table t2 (a int, b int, primary key(a)) PARTITION BY RANGE ( a )(PARTITION p0 VALUES LESS THAN (6))") + tk.MustExec(`insert into t2 values (1, 1), (2, 2)`) + tk.MustExec("analyze table t2") + rows = tk.MustQuery("show analyze status").Rows() + require.Len(t, rows, 2) + require.Equal(t, "merge global stats for test.t2 columns", rows[0][3]) + + tk.MustExec("delete from mysql.analyze_jobs") + tk.MustExec("alter table t2 add index idx(b)") + tk.MustExec("analyze table t2 index idx") + rows = tk.MustQuery("show analyze status").Rows() + require.Len(t, rows, 2) + require.Equal(t, "merge global stats for test.t2's index idx", rows[0][3]) } diff --git a/executor/showtest/main_test.go b/executor/showtest/main_test.go index 131b0b82b1289..cc9e1f5aecbb3 100644 --- a/executor/showtest/main_test.go +++ b/executor/showtest/main_test.go @@ -35,6 +35,7 @@ func TestMain(m *testing.M) { opts := []goleak.Option{ goleak.IgnoreTopFunction("github.com/golang/glog.(*loggingT).flushDaemon"), + goleak.IgnoreTopFunction("github.com/lestrrat-go/httprc.runFetchWorker"), goleak.IgnoreTopFunction("go.etcd.io/etcd/client/pkg/v3/logutil.(*MergeLogger).outputLoop"), goleak.IgnoreTopFunction("gopkg.in/natefinch/lumberjack%2ev2.(*Logger).millRun"), goleak.IgnoreTopFunction("github.com/tikv/client-go/v2/txnkv/transaction.keepAlive"), diff --git a/executor/showtest/show_test.go b/executor/showtest/show_test.go index 5b398be80deb8..3566b1589a271 100644 --- a/executor/showtest/show_test.go +++ b/executor/showtest/show_test.go @@ -186,7 +186,7 @@ func TestShowCreateTable(t *testing.T) { "`END_TIME` datetime NOT NULL," + "`USER_TYPE` int(11) DEFAULT NULL," + "`APP_ID` int(11) DEFAULT NULL," + - "PRIMARY KEY (`LOG_ID`,`END_TIME`)," + + "PRIMARY KEY (`LOG_ID`,`END_TIME`) NONCLUSTERED," + "KEY `IDX_EndTime` (`END_TIME`)," + "KEY `IDX_RoundId` (`ROUND_ID`)," + "KEY `IDX_UserId_EndTime` (`USER_ID`,`END_TIME`)" + @@ -330,7 +330,7 @@ func TestShowCreateTable(t *testing.T) { " `parent_id` int(11) NOT NULL,\n"+ " PRIMARY KEY (`id`) /*T![clustered_index] CLUSTERED */,\n"+ " KEY `par_ind` (`parent_id`),\n"+ - " CONSTRAINT `child_ibfk_1` FOREIGN KEY (`parent_id`) REFERENCES `test`.`parent` (`id`)\n"+ + " CONSTRAINT `child_ibfk_1` FOREIGN KEY (`parent_id`) REFERENCES `test`.`parent` (`id`) /* FOREIGN KEY INVALID */\n"+ ") ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin", )) @@ -344,7 +344,7 @@ func TestShowCreateTable(t *testing.T) { " `parent_id` int(11) NOT NULL,\n"+ " PRIMARY KEY (`id`) /*T![clustered_index] CLUSTERED */,\n"+ " KEY `par_ind` (`parent_id`),\n"+ - " CONSTRAINT `child_ibfk_1` FOREIGN KEY (`parent_id`) REFERENCES `test`.`parent` (`id`) ON DELETE RESTRICT ON UPDATE CASCADE\n"+ + " CONSTRAINT `child_ibfk_1` FOREIGN KEY (`parent_id`) REFERENCES `test`.`parent` (`id`) ON DELETE RESTRICT ON UPDATE CASCADE /* FOREIGN KEY INVALID */\n"+ ") ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin", )) @@ -357,7 +357,7 @@ func TestShowCreateTable(t *testing.T) { " `id` int(11) NOT NULL,\n" + " `b` int(11) DEFAULT NULL,\n" + " PRIMARY KEY (`id`) /*T![clustered_index] CLUSTERED */,\n" + - " CONSTRAINT `fk` FOREIGN KEY (`b`) REFERENCES `test1`.`t1` (`id`)\n" + + " CONSTRAINT `fk` FOREIGN KEY (`b`) REFERENCES `test1`.`t1` (`id`) /* FOREIGN KEY INVALID */\n" + ") ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin")) // Test issue #20327 @@ -775,6 +775,7 @@ func TestShowWarningsForExprPushdown(t *testing.T) { store, dom := testkit.CreateMockStoreAndDomain(t) tk := testkit.NewTestKit(t, store) tk.MustExec("use test") + tk.MustExec(`set tidb_cost_model_version=2`) testSQL := `create table if not exists show_warnings_expr_pushdown (a int, value date)` tk.MustExec(testSQL) @@ -796,10 +797,10 @@ func TestShowWarningsForExprPushdown(t *testing.T) { tk.MustExec("explain select * from show_warnings_expr_pushdown t where md5(value) = '2020-01-01'") require.Equal(t, uint16(1), tk.Session().GetSessionVars().StmtCtx.WarningCount()) tk.MustQuery("show warnings").Check(testkit.RowsWithSep("|", "Warning|1105|Scalar function 'md5'(signature: MD5, return type: var_string(32)) is not supported to push down to tiflash now.")) - tk.MustExec("explain select max(md5(value)) from show_warnings_expr_pushdown group by a") + tk.MustExec("explain select /*+ read_from_storage(tiflash[show_warnings_expr_pushdown]) */ max(md5(value)) from show_warnings_expr_pushdown group by a") require.Equal(t, uint16(2), tk.Session().GetSessionVars().StmtCtx.WarningCount()) tk.MustQuery("show warnings").Check(testkit.RowsWithSep("|", "Warning|1105|Scalar function 'md5'(signature: MD5, return type: var_string(32)) is not supported to push down to tiflash now.", "Warning|1105|Aggregation can not be pushed to tiflash because arguments of AggFunc `max` contains unsupported exprs")) - tk.MustExec("explain select max(a) from show_warnings_expr_pushdown group by md5(value)") + tk.MustExec("explain select /*+ read_from_storage(tiflash[show_warnings_expr_pushdown]) */ max(a) from show_warnings_expr_pushdown group by md5(value)") require.Equal(t, uint16(2), tk.Session().GetSessionVars().StmtCtx.WarningCount()) tk.MustQuery("show warnings").Check(testkit.RowsWithSep("|", "Warning|1105|Scalar function 'md5'(signature: MD5, return type: var_string(32)) is not supported to push down to tiflash now.", "Warning|1105|Aggregation can not be pushed to tiflash because groupByItems contain unsupported exprs")) tk.MustExec("set tidb_opt_distinct_agg_push_down=0") @@ -1112,6 +1113,18 @@ func TestShowCreateUser(t *testing.T) { tk.MustExec("CREATE USER 'lockness'@'%' IDENTIFIED BY 'monster' ACCOUNT LOCK") rows = tk.MustQuery("SHOW CREATE USER 'lockness'@'%'") require.Equal(t, "CREATE USER 'lockness'@'%' IDENTIFIED WITH 'mysql_native_password' AS '*BC05309E7FE12AFD4EBB9FFE7E488A6320F12FF3' REQUIRE NONE PASSWORD EXPIRE DEFAULT ACCOUNT LOCK", rows.Rows()[0][0].(string)) + + // Test COMMENT and ATTRIBUTE + tk.MustExec("CREATE USER commentUser COMMENT '1234'") + tk.MustQuery("SHOW CREATE USER commentUser").Check(testkit.Rows(`CREATE USER 'commentUser'@'%' IDENTIFIED WITH 'mysql_native_password' AS '' REQUIRE NONE PASSWORD EXPIRE DEFAULT ACCOUNT UNLOCK ATTRIBUTE {"comment": "1234"}`)) + tk.MustExec(`CREATE USER attributeUser attribute '{"name": "Tom", "age": 19}'`) + tk.MustQuery("SHOW CREATE USER attributeUser").Check(testkit.Rows(`CREATE USER 'attributeUser'@'%' IDENTIFIED WITH 'mysql_native_password' AS '' REQUIRE NONE PASSWORD EXPIRE DEFAULT ACCOUNT UNLOCK ATTRIBUTE {"age": 19, "name": "Tom"}`)) + + // Creating users with 'IDENTIFIED WITH 'tidb_auth_token'' + tk.MustExec(`CREATE USER 'token_user'@'%' IDENTIFIED WITH 'tidb_auth_token' ATTRIBUTE '{"email": "user@pingcap.com"}'`) + tk.MustQuery("SHOW CREATE USER token_user").Check(testkit.Rows(`CREATE USER 'token_user'@'%' IDENTIFIED WITH 'tidb_auth_token' AS '' REQUIRE NONE PASSWORD EXPIRE DEFAULT ACCOUNT UNLOCK ATTRIBUTE {"email": "user@pingcap.com"}`)) + tk.MustExec(`ALTER USER 'token_user'@'%' REQUIRE token_issuer 'issuer-ABC'`) + tk.MustQuery("SHOW CREATE USER token_user").Check(testkit.Rows(`CREATE USER 'token_user'@'%' IDENTIFIED WITH 'tidb_auth_token' AS '' REQUIRE NONE token_issuer issuer-ABC PASSWORD EXPIRE DEFAULT ACCOUNT UNLOCK ATTRIBUTE {"email": "user@pingcap.com"}`)) } func TestUnprivilegedShow(t *testing.T) { @@ -1472,7 +1485,7 @@ func TestShowBuiltin(t *testing.T) { res := tk.MustQuery("show builtins;") require.NotNil(t, res) rows := res.Rows() - const builtinFuncNum = 282 + const builtinFuncNum = 283 require.Equal(t, builtinFuncNum, len(rows)) require.Equal(t, rows[0][0].(string), "abs") require.Equal(t, rows[builtinFuncNum-1][0].(string), "yearweek") diff --git a/executor/shuffle.go b/executor/shuffle.go index 2827d0e1cece7..7596d2cef1970 100644 --- a/executor/shuffle.go +++ b/executor/shuffle.go @@ -262,7 +262,7 @@ func (e *ShuffleExec) fetchDataAndSplit(ctx context.Context, dataSourceIndex int workerIndices []int ) results := make([]*chunk.Chunk, len(e.workers)) - chk := newFirstChunk(e.dataSources[dataSourceIndex]) + chk := tryNewCacheChunk(e.dataSources[dataSourceIndex]) defer func() { if r := recover(); r != nil { diff --git a/executor/simple.go b/executor/simple.go index 33fd448fb0ae8..2ab99b101dde1 100644 --- a/executor/simple.go +++ b/executor/simple.go @@ -805,32 +805,48 @@ func (e *SimpleExec) executeCreateUser(ctx context.Context, s *ast.CreateUserStm } } - privData, err := tlsOption2GlobalPriv(s.TLSOptions) + privData, err := tlsOption2GlobalPriv(s.AuthTokenOrTLSOptions) if err != nil { return err } - lockAccount := false - if len(s.PasswordOrLockOptions) > 0 { + lockAccount := "N" + if length := len(s.PasswordOrLockOptions); length > 0 { // If "ACCOUNT LOCK" or "ACCOUNT UNLOCK" appears many times, // the last declaration takes effect. - for i := len(s.PasswordOrLockOptions) - 1; i >= 0; i-- { + for i := length - 1; i >= 0; i-- { if s.PasswordOrLockOptions[i].Type == ast.Lock { - lockAccount = true + lockAccount = "Y" break } else if s.PasswordOrLockOptions[i].Type == ast.Unlock { break } } } + if s.IsCreateRole { + lockAccount = "Y" + } - sql := new(strings.Builder) - if s.IsCreateRole || lockAccount { - sqlexec.MustFormatSQL(sql, `INSERT INTO %n.%n (Host, User, authentication_string, plugin, Account_locked) VALUES `, mysql.SystemDB, mysql.UserTable) - } else { - sqlexec.MustFormatSQL(sql, `INSERT INTO %n.%n (Host, User, authentication_string, plugin) VALUES `, mysql.SystemDB, mysql.UserTable) + var userAttributes any = nil + if s.CommentOrAttributeOption != nil { + if s.CommentOrAttributeOption.Type == ast.UserCommentType { + userAttributes = fmt.Sprintf("{\"metadata\": {\"comment\": \"%s\"}}", s.CommentOrAttributeOption.Value) + } else if s.CommentOrAttributeOption.Type == ast.UserAttributeType { + userAttributes = fmt.Sprintf("{\"metadata\": %s}", s.CommentOrAttributeOption.Value) + } } + tokenIssuer := "" + for _, authTokenOption := range s.AuthTokenOrTLSOptions { + switch authTokenOption.Type { + case ast.TokenIssuer: + tokenIssuer = authTokenOption.Value + } + } + + sql := new(strings.Builder) + sqlexec.MustFormatSQL(sql, `INSERT INTO %n.%n (Host, User, authentication_string, plugin, user_attributes, Account_locked, Token_issuer) VALUES `, mysql.SystemDB, mysql.UserTable) + users := make([]*auth.UserIdentity, 0, len(s.Specs)) for _, spec := range s.Specs { if len(spec.User.Username) > auth.UserNameMaxLength { @@ -869,17 +885,23 @@ func (e *SimpleExec) executeCreateUser(ctx context.Context, s *ast.CreateUserStm } switch authPlugin { - case mysql.AuthNativePassword, mysql.AuthCachingSha2Password, mysql.AuthTiDBSM3Password, mysql.AuthSocket: + case mysql.AuthNativePassword, mysql.AuthCachingSha2Password, mysql.AuthTiDBSM3Password, mysql.AuthSocket, mysql.AuthTiDBAuthToken: default: return ErrPluginIsNotLoaded.GenWithStackByArgs(spec.AuthOpt.AuthPlugin) } - hostName := strings.ToLower(spec.User.Hostname) - if s.IsCreateRole || lockAccount { - sqlexec.MustFormatSQL(sql, `(%?, %?, %?, %?, %?)`, hostName, spec.User.Username, pwd, authPlugin, "Y") - } else { - sqlexec.MustFormatSQL(sql, `(%?, %?, %?, %?)`, hostName, spec.User.Username, pwd, authPlugin) + recordTokenIssuer := tokenIssuer + if len(recordTokenIssuer) > 0 && authPlugin != mysql.AuthTiDBAuthToken { + err := fmt.Errorf("TOKEN_ISSUER is not needed for '%s' user", authPlugin) + e.ctx.GetSessionVars().StmtCtx.AppendWarning(err) + recordTokenIssuer = "" + } else if len(recordTokenIssuer) == 0 && authPlugin == mysql.AuthTiDBAuthToken { + err := fmt.Errorf("TOKEN_ISSUER is needed for 'tidb_auth_token' user, please use 'alter user' to declare it") + e.ctx.GetSessionVars().StmtCtx.AppendWarning(err) } + + hostName := strings.ToLower(spec.User.Hostname) + sqlexec.MustFormatSQL(sql, `(%?, %?, %?, %?, %?, %?, %?)`, hostName, spec.User.Username, pwd, authPlugin, userAttributes, lockAccount, recordTokenIssuer) users = append(users, spec.User) } if len(users) == 0 { @@ -958,7 +980,7 @@ func (e *SimpleExec) executeAlterUser(ctx context.Context, s *ast.AlterUserStmt) } } - privData, err := tlsOption2GlobalPriv(s.TLSOptions) + privData, err := tlsOption2GlobalPriv(s.AuthTokenOrTLSOptions) if err != nil { return err } @@ -974,6 +996,13 @@ func (e *SimpleExec) executeAlterUser(ctx context.Context, s *ast.AlterUserStmt) hasRestrictedUserPriv := checker.RequestDynamicVerification(activeRoles, "RESTRICTED_USER_ADMIN", false) hasSystemSchemaPriv := checker.RequestVerification(activeRoles, mysql.SystemDB, mysql.UserTable, "", mysql.UpdatePriv) + var authTokenOptions []*ast.AuthTokenOrTLSOption + for _, authTokenOrTLSOption := range s.AuthTokenOrTLSOptions { + if authTokenOrTLSOption.Type == ast.TokenIssuer { + authTokenOptions = append(authTokenOptions, authTokenOrTLSOption) + } + } + for _, spec := range s.Specs { user := e.ctx.GetSessionVars().User if spec.User.CurrentUser || ((user != nil) && (user.Username == spec.User.Username) && (user.AuthHostname == spec.User.Hostname)) { @@ -1017,7 +1046,29 @@ func (e *SimpleExec) executeAlterUser(ctx context.Context, s *ast.AlterUserStmt) continue } + type AuthTokenOptionHandler int + const ( + // NoNeedAuthTokenOptions means the final auth plugin is NOT tidb_auth_plugin + NoNeedAuthTokenOptions AuthTokenOptionHandler = iota + // OptionalAuthTokenOptions means the final auth_plugin is tidb_auth_plugin, + // and whether to declare AuthTokenOptions or not is ok. + OptionalAuthTokenOptions + // RequireAuthTokenOptions means the final auth_plugin is tidb_auth_plugin and need AuthTokenOptions here + RequireAuthTokenOptions + ) + authTokenOptionHandler := NoNeedAuthTokenOptions + if currentAuthPlugin, err := e.userAuthPlugin(spec.User.Username, spec.User.Hostname); err != nil { + return err + } else if currentAuthPlugin == mysql.AuthTiDBAuthToken { + authTokenOptionHandler = OptionalAuthTokenOptions + } + exec := e.ctx.(sqlexec.RestrictedSQLExecutor) + type alterField struct { + expr string + value string + } + var fields []alterField if spec.AuthOpt != nil { if spec.AuthOpt.AuthPlugin == "" { authplugin, err := e.userAuthPlugin(spec.User.Username, spec.User.Hostname) @@ -1028,6 +1079,11 @@ func (e *SimpleExec) executeAlterUser(ctx context.Context, s *ast.AlterUserStmt) } switch spec.AuthOpt.AuthPlugin { case mysql.AuthNativePassword, mysql.AuthCachingSha2Password, mysql.AuthTiDBSM3Password, mysql.AuthSocket, "": + authTokenOptionHandler = NoNeedAuthTokenOptions + case mysql.AuthTiDBAuthToken: + if authTokenOptionHandler != OptionalAuthTokenOptions { + authTokenOptionHandler = RequireAuthTokenOptions + } default: return ErrPluginIsNotLoaded.GenWithStackByArgs(spec.AuthOpt.AuthPlugin) } @@ -1035,21 +1091,63 @@ func (e *SimpleExec) executeAlterUser(ctx context.Context, s *ast.AlterUserStmt) if !ok { return errors.Trace(ErrPasswordFormat) } - _, _, err := exec.ExecRestrictedSQL(ctx, nil, - `UPDATE %n.%n SET authentication_string=%?, plugin=%? WHERE Host=%? and User=%?;`, - mysql.SystemDB, mysql.UserTable, pwd, spec.AuthOpt.AuthPlugin, strings.ToLower(spec.User.Hostname), spec.User.Username, + fields = append(fields, + alterField{"authentication_string=%?", pwd}, + alterField{"plugin=%?", spec.AuthOpt.AuthPlugin}, ) - if err != nil { - failedUsers = append(failedUsers, spec.User.String()) - } } if len(lockAccount) != 0 { - _, _, err := exec.ExecRestrictedSQL(ctx, nil, - `UPDATE %n.%n SET account_locked=%? WHERE Host=%? and User=%?;`, - mysql.SystemDB, mysql.UserTable, lockAccount, spec.User.Hostname, spec.User.Username) + fields = append(fields, alterField{"account_locked=%?", lockAccount}) + } + + if s.CommentOrAttributeOption != nil { + newAttributesStr := "" + if s.CommentOrAttributeOption.Type == ast.UserCommentType { + newAttributesStr = fmt.Sprintf(`{"metadata": {"comment": "%s"}}`, s.CommentOrAttributeOption.Value) + } else { + newAttributesStr = fmt.Sprintf(`{"metadata": %s}`, s.CommentOrAttributeOption.Value) + } + fields = append(fields, alterField{"user_attributes=json_merge_patch(user_attributes, %?)", newAttributesStr}) + } + + switch authTokenOptionHandler { + case NoNeedAuthTokenOptions: + if len(authTokenOptions) > 0 { + err := errors.New("TOKEN_ISSUER is not needed for the auth plugin") + e.ctx.GetSessionVars().StmtCtx.AppendWarning(err) + } + case OptionalAuthTokenOptions: + if len(authTokenOptions) > 0 { + for _, authTokenOption := range authTokenOptions { + fields = append(fields, alterField{authTokenOption.Type.String() + "=%?", authTokenOption.Value}) + } + } + case RequireAuthTokenOptions: + if len(authTokenOptions) > 0 { + for _, authTokenOption := range authTokenOptions { + fields = append(fields, alterField{authTokenOption.Type.String() + "=%?", authTokenOption.Value}) + } + } else { + err := errors.New("Auth plugin 'tidb_auth_plugin' needs TOKEN_ISSUER") + e.ctx.GetSessionVars().StmtCtx.AppendWarning(err) + } + } + + if len(fields) > 0 { + sql := new(strings.Builder) + sqlexec.MustFormatSQL(sql, "UPDATE %n.%n SET ", mysql.SystemDB, mysql.UserTable) + for i, f := range fields { + sqlexec.MustFormatSQL(sql, f.expr, f.value) + if i < len(fields)-1 { + sqlexec.MustFormatSQL(sql, ",") + } + } + sqlexec.MustFormatSQL(sql, " WHERE Host=%? and User=%?;", spec.User.Hostname, spec.User.Username) + _, _, err := exec.ExecRestrictedSQL(ctx, nil, sql.String()) if err != nil { failedUsers = append(failedUsers, spec.User.String()) + continue } } @@ -1526,6 +1624,14 @@ func (e *SimpleExec) executeSetPwd(ctx context.Context, s *ast.SetPwdStmt) error } func (e *SimpleExec) executeKillStmt(ctx context.Context, s *ast.KillStmt) error { + if x, ok := s.Expr.(*ast.FuncCallExpr); ok { + if x.FnName.L == ast.ConnectionID { + sm := e.ctx.GetSessionManager() + sm.Kill(e.ctx.GetSessionVars().ConnectionID, s.Query) + return nil + } + return errors.New("Invalid operation. Please use 'KILL TIDB [CONNECTION | QUERY] [connectionID | CONNECTION_ID()]' instead") + } if !config.GetGlobalConfig().EnableGlobalKill { conf := config.GetGlobalConfig() if s.TiDBExtension || conf.CompatibleKillQuery { @@ -1535,7 +1641,7 @@ func (e *SimpleExec) executeKillStmt(ctx context.Context, s *ast.KillStmt) error } sm.Kill(s.ConnectionID, s.Query) } else { - err := errors.New("Invalid operation. Please use 'KILL TIDB [CONNECTION | QUERY] connectionID' instead") + err := errors.New("Invalid operation. Please use 'KILL TIDB [CONNECTION | QUERY] [connectionID | CONNECTION_ID()]' instead") e.ctx.GetSessionVars().StmtCtx.AppendWarning(err) } return nil @@ -1670,14 +1776,24 @@ func (e *SimpleExec) executeAlterInstance(s *ast.AlterInstanceStmt) error { func (e *SimpleExec) executeDropStats(s *ast.DropStatsStmt) (err error) { h := domain.GetDomain(e.ctx).StatsHandle() var statsIDs []int64 + // TODO: GLOBAL option will be deprecated. Also remove this condition when the syntax is removed if s.IsGlobalStats { - statsIDs = []int64{s.Table.TableInfo.ID} + statsIDs = []int64{s.Tables[0].TableInfo.ID} } else { - if statsIDs, _, err = core.GetPhysicalIDsAndPartitionNames(s.Table.TableInfo, s.PartitionNames); err != nil { - return err - } if len(s.PartitionNames) == 0 { - statsIDs = append(statsIDs, s.Table.TableInfo.ID) + for _, table := range s.Tables { + partitionStatIds, _, err := core.GetPhysicalIDsAndPartitionNames(table.TableInfo, nil) + if err != nil { + return err + } + statsIDs = append(statsIDs, partitionStatIds...) + statsIDs = append(statsIDs, table.TableInfo.ID) + } + } else { + // TODO: drop stats for specific partition is deprecated. Also remove this condition when the syntax is removed + if statsIDs, _, err = core.GetPhysicalIDsAndPartitionNames(s.Tables[0].TableInfo, s.PartitionNames); err != nil { + return err + } } } if err := h.DeleteTableStatsFromKV(statsIDs); err != nil { diff --git a/executor/simple_test.go b/executor/simple_test.go index 2cad7698d2522..8b284fb9b42e5 100644 --- a/executor/simple_test.go +++ b/executor/simple_test.go @@ -15,14 +15,19 @@ package executor_test import ( + "context" "fmt" "strconv" "testing" "github.com/pingcap/tidb/config" + "github.com/pingcap/tidb/parser/auth" + "github.com/pingcap/tidb/parser/mysql" "github.com/pingcap/tidb/server" "github.com/pingcap/tidb/testkit" "github.com/pingcap/tidb/util" + "github.com/stretchr/testify/require" + tikvutil "github.com/tikv/client-go/v2/util" ) func TestKillStmt(t *testing.T) { @@ -47,7 +52,7 @@ func TestKillStmt(t *testing.T) { tk.MustExec("use test") tk.MustExec(fmt.Sprintf("kill %d", connID)) result := tk.MustQuery("show warnings") - result.Check(testkit.Rows("Warning 1105 Invalid operation. Please use 'KILL TIDB [CONNECTION | QUERY] connectionID' instead")) + result.Check(testkit.Rows("Warning 1105 Invalid operation. Please use 'KILL TIDB [CONNECTION | QUERY] [connectionID | CONNECTION_ID()]' instead")) newCfg2 := *originCfg newCfg2.EnableGlobalKill = true @@ -74,5 +79,46 @@ func TestKillStmt(t *testing.T) { result = tk.MustQuery("show warnings") result.Check(testkit.Rows()) + tk.MustExecToErr("kill rand()", "Invalid operation. Please use 'KILL TIDB [CONNECTION | QUERY] [connectionID | CONNECTION_ID()]' instead") // remote kill is tested in `tests/globalkilltest` } + +func TestUserAttributes(t *testing.T) { + store, _ := testkit.CreateMockStoreAndDomain(t) + rootTK := testkit.NewTestKit(t, store) + ctx := context.WithValue(context.Background(), tikvutil.RequestSourceKey, tikvutil.RequestSource{RequestSourceInternal: true}) + + // https://dev.mysql.com/doc/refman/8.0/en/create-user.html#create-user-comments-attributes + rootTK.MustExec(`CREATE USER testuser COMMENT '1234'`) + rootTK.MustExec(`CREATE USER testuser1 ATTRIBUTE '{"name": "Tom", "age": 19}'`) + _, err := rootTK.Exec(`CREATE USER testuser2 ATTRIBUTE '{"name": "Tom", age: 19}'`) + rootTK.MustExec(`CREATE USER testuser2`) + require.Error(t, err) + rootTK.MustQuery(`SELECT user_attributes FROM mysql.user WHERE user = 'testuser'`).Check(testkit.Rows(`{"metadata": {"comment": "1234"}}`)) + rootTK.MustQuery(`SELECT user_attributes FROM mysql.user WHERE user = 'testuser1'`).Check(testkit.Rows(`{"metadata": {"age": 19, "name": "Tom"}}`)) + rootTK.MustQuery(`SELECT user_attributes FROM mysql.user WHERE user = 'testuser2'`).Check(testkit.Rows(``)) + rootTK.MustQueryWithContext(ctx, `SELECT attribute FROM information_schema.user_attributes WHERE user = 'testuser'`).Check(testkit.Rows(`{"comment": "1234"}`)) + rootTK.MustQueryWithContext(ctx, `SELECT attribute FROM information_schema.user_attributes WHERE user = 'testuser1'`).Check(testkit.Rows(`{"age": 19, "name": "Tom"}`)) + rootTK.MustQueryWithContext(ctx, `SELECT attribute->>"$.age" AS age, attribute->>"$.name" AS name FROM information_schema.user_attributes WHERE user = 'testuser1'`).Check(testkit.Rows(`19 Tom`)) + rootTK.MustQueryWithContext(ctx, `SELECT attribute FROM information_schema.user_attributes WHERE user = 'testuser2'`).Check(testkit.Rows(``)) + + // https://dev.mysql.com/doc/refman/8.0/en/alter-user.html#alter-user-comments-attributes + rootTK.MustExec(`ALTER USER testuser1 ATTRIBUTE '{"age": 20, "sex": "male"}'`) + rootTK.MustQueryWithContext(ctx, `SELECT attribute FROM information_schema.user_attributes WHERE user = 'testuser1'`).Check(testkit.Rows(`{"age": 20, "name": "Tom", "sex": "male"}`)) + rootTK.MustExec(`ALTER USER testuser1 ATTRIBUTE '{"sex": null}'`) + rootTK.MustQueryWithContext(ctx, `SELECT attribute FROM information_schema.user_attributes WHERE user = 'testuser1'`).Check(testkit.Rows(`{"age": 20, "name": "Tom"}`)) + rootTK.MustExec(`ALTER USER testuser1 COMMENT '5678'`) + rootTK.MustQueryWithContext(ctx, `SELECT attribute FROM information_schema.user_attributes WHERE user = 'testuser1'`).Check(testkit.Rows(`{"age": 20, "comment": "5678", "name": "Tom"}`)) + rootTK.MustExec(`ALTER USER testuser1 COMMENT ''`) + rootTK.MustQueryWithContext(ctx, `SELECT attribute FROM information_schema.user_attributes WHERE user = 'testuser1'`).Check(testkit.Rows(`{"age": 20, "comment": "", "name": "Tom"}`)) + rootTK.MustExec(`ALTER USER testuser1 ATTRIBUTE '{"comment": null}'`) + rootTK.MustQueryWithContext(ctx, `SELECT attribute FROM information_schema.user_attributes WHERE user = 'testuser1'`).Check(testkit.Rows(`{"age": 20, "name": "Tom"}`)) + + // Non-root users could access COMMENT or ATTRIBUTE of all users via the view, + // but not via the mysql.user table. + tk := testkit.NewTestKit(t, store) + require.NoError(t, tk.Session().Auth(&auth.UserIdentity{Username: "testuser1"}, nil, nil)) + tk.MustQueryWithContext(ctx, `SELECT user, host, attribute FROM information_schema.user_attributes ORDER BY user`).Check( + testkit.Rows("root % ", "testuser % {\"comment\": \"1234\"}", "testuser1 % {\"age\": 20, \"name\": \"Tom\"}", "testuser2 % ")) + tk.MustGetErrCode(`SELECT user, host, user_attributes FROM mysql.user ORDER BY user`, mysql.ErrTableaccessDenied) +} diff --git a/executor/simpletest/main_test.go b/executor/simpletest/main_test.go index d90b80dbc4a84..6772de87c1301 100644 --- a/executor/simpletest/main_test.go +++ b/executor/simpletest/main_test.go @@ -23,6 +23,7 @@ import ( func TestMain(m *testing.M) { opts := []goleak.Option{ goleak.IgnoreTopFunction("github.com/golang/glog.(*loggingT).flushDaemon"), + goleak.IgnoreTopFunction("github.com/lestrrat-go/httprc.runFetchWorker"), goleak.IgnoreTopFunction("github.com/tikv/client-go/v2/txnkv/transaction.keepAlive"), } goleak.VerifyTestMain(m, opts...) diff --git a/executor/simpletest/simple_test.go b/executor/simpletest/simple_test.go index 1f886a18c4323..738a5808be6fa 100644 --- a/executor/simpletest/simple_test.go +++ b/executor/simpletest/simple_test.go @@ -712,6 +712,29 @@ func TestUser(t *testing.T) { dropUserSQL = `DROP USER IF EXISTS 'test1'@'localhost' ;` tk.MustExec(dropUserSQL) + // Test create/alter user with `tidb_auth_token` + tk.MustExec(`CREATE USER token_user IDENTIFIED WITH 'tidb_auth_token' REQUIRE token_issuer 'issuer-abc'`) + tk.MustQuery(`SELECT plugin, token_issuer FROM mysql.user WHERE user = 'token_user'`).Check(testkit.Rows("tidb_auth_token issuer-abc")) + tk.MustExec(`ALTER USER token_user REQUIRE token_issuer 'issuer-123'`) + tk.MustQuery(`SELECT plugin, token_issuer FROM mysql.user WHERE user = 'token_user'`).Check(testkit.Rows("tidb_auth_token issuer-123")) + tk.MustExec(`ALTER USER token_user IDENTIFIED WITH 'tidb_auth_token'`) + tk.MustExec(`CREATE USER token_user1 IDENTIFIED WITH 'tidb_auth_token'`) + tk.MustQuery(`show warnings`).Check(testkit.RowsWithSep("|", "Warning|1105|TOKEN_ISSUER is needed for 'tidb_auth_token' user, please use 'alter user' to declare it")) + tk.MustExec(`CREATE USER temp_user IDENTIFIED WITH 'mysql_native_password' BY '1234' REQUIRE token_issuer 'issuer-abc'`) + tk.MustQuery(`show warnings`).Check(testkit.RowsWithSep("|", "Warning|1105|TOKEN_ISSUER is not needed for 'mysql_native_password' user")) + tk.MustExec(`ALTER USER temp_user IDENTIFIED WITH 'tidb_auth_token' REQUIRE token_issuer 'issuer-abc'`) + tk.MustQuery(`show warnings`).Check(testkit.Rows()) + tk.MustExec(`ALTER USER temp_user IDENTIFIED WITH 'mysql_native_password' REQUIRE token_issuer 'issuer-abc'`) + tk.MustQuery(`show warnings`).Check(testkit.RowsWithSep("|", "Warning|1105|TOKEN_ISSUER is not needed for the auth plugin")) + tk.MustExec(`ALTER USER temp_user IDENTIFIED WITH 'tidb_auth_token'`) + tk.MustQuery(`show warnings`).Check(testkit.RowsWithSep("|", "Warning|1105|Auth plugin 'tidb_auth_plugin' needs TOKEN_ISSUER")) + tk.MustExec(`ALTER USER token_user REQUIRE SSL`) + tk.MustQuery(`show warnings`).Check(testkit.Rows()) + tk.MustExec(`ALTER USER token_user IDENTIFIED WITH 'mysql_native_password' BY '1234'`) + tk.MustQuery(`show warnings`).Check(testkit.Rows()) + tk.MustExec(`ALTER USER token_user IDENTIFIED WITH 'tidb_auth_token' REQUIRE token_issuer 'issuer-abc'`) + tk.MustQuery(`show warnings`).Check(testkit.Rows()) + // Test alter user. createUserSQL = `CREATE USER 'test1'@'localhost' IDENTIFIED BY '123', 'test2'@'localhost' IDENTIFIED BY '123', 'test3'@'localhost' IDENTIFIED BY '123', 'test4'@'localhost' IDENTIFIED BY '123';` tk.MustExec(createUserSQL) @@ -977,6 +1000,7 @@ partition by range (a) ( checkPartitionStats("global", "p0", "p1", "global") tk.MustExec("drop stats test_drop_gstats partition p0") + tk.MustQuery("show warnings").Check(testkit.RowsWithSep("|", "Warning|1681|'DROP STATS ... PARTITION ...' is deprecated and will be removed in a future release.")) checkPartitionStats("global", "p1", "global") err := tk.ExecToErr("drop stats test_drop_gstats partition abcde") @@ -987,6 +1011,7 @@ partition by range (a) ( checkPartitionStats("global", "p1") tk.MustExec("drop stats test_drop_gstats global") + tk.MustQuery("show warnings").Check(testkit.RowsWithSep("|", "Warning|1287|'DROP STATS ... GLOBAL' is deprecated and will be removed in a future release. Please use DROP STATS ... instead")) checkPartitionStats("p1") tk.MustExec("analyze table test_drop_gstats") @@ -1033,3 +1058,50 @@ func TestDropStats(t *testing.T) { require.True(t, statsTbl.Pseudo) h.SetLease(0) } + +func TestDropStatsForMultipleTable(t *testing.T) { + store, dom := testkit.CreateMockStoreAndDomain(t) + testKit := testkit.NewTestKit(t, store) + testKit.MustExec("use test") + testKit.MustExec("create table t1 (c1 int, c2 int)") + testKit.MustExec("create table t2 (c1 int, c2 int)") + + is := dom.InfoSchema() + tbl1, err := is.TableByName(model.NewCIStr("test"), model.NewCIStr("t1")) + require.NoError(t, err) + tableInfo1 := tbl1.Meta() + + tbl2, err := is.TableByName(model.NewCIStr("test"), model.NewCIStr("t2")) + require.NoError(t, err) + tableInfo2 := tbl2.Meta() + + h := dom.StatsHandle() + h.Clear() + testKit.MustExec("analyze table t1, t2") + statsTbl1 := h.GetTableStats(tableInfo1) + require.False(t, statsTbl1.Pseudo) + statsTbl2 := h.GetTableStats(tableInfo2) + require.False(t, statsTbl2.Pseudo) + + testKit.MustExec("drop stats t1, t2") + require.Nil(t, h.Update(is)) + statsTbl1 = h.GetTableStats(tableInfo1) + require.True(t, statsTbl1.Pseudo) + statsTbl2 = h.GetTableStats(tableInfo2) + require.True(t, statsTbl2.Pseudo) + + testKit.MustExec("analyze table t1, t2") + statsTbl1 = h.GetTableStats(tableInfo1) + require.False(t, statsTbl1.Pseudo) + statsTbl2 = h.GetTableStats(tableInfo2) + require.False(t, statsTbl2.Pseudo) + + h.SetLease(1) + testKit.MustExec("drop stats t1, t2") + require.Nil(t, h.Update(is)) + statsTbl1 = h.GetTableStats(tableInfo1) + require.True(t, statsTbl1.Pseudo) + statsTbl2 = h.GetTableStats(tableInfo2) + require.True(t, statsTbl2.Pseudo) + h.SetLease(0) +} diff --git a/executor/sort.go b/executor/sort.go index efc56aa058d2a..06241993e05f3 100644 --- a/executor/sort.go +++ b/executor/sort.go @@ -189,12 +189,12 @@ func (e *SortExec) fetchRowChunks(ctx context.Context) error { defer e.spillAction.WaitForTest() } }) - e.ctx.GetSessionVars().StmtCtx.MemTracker.FallbackOldAndSetNewAction(e.spillAction) + e.ctx.GetSessionVars().MemTracker.FallbackOldAndSetNewAction(e.spillAction) e.rowChunks.GetDiskTracker().AttachTo(e.diskTracker) e.rowChunks.GetDiskTracker().SetLabel(memory.LabelForRowChunks) } for { - chk := newFirstChunk(e.children[0]) + chk := tryNewCacheChunk(e.children[0]) err := Next(ctx, e.children[0], chk) if err != nil { return err @@ -218,7 +218,7 @@ func (e *SortExec) fetchRowChunks(ctx context.Context) error { defer e.spillAction.WaitForTest() } }) - e.ctx.GetSessionVars().StmtCtx.MemTracker.FallbackOldAndSetNewAction(e.spillAction) + e.ctx.GetSessionVars().MemTracker.FallbackOldAndSetNewAction(e.spillAction) err = e.rowChunks.Add(chk) } if err != nil { @@ -226,6 +226,13 @@ func (e *SortExec) fetchRowChunks(ctx context.Context) error { } } } + failpoint.Inject("SignalCheckpointForSort", func(val failpoint.Value) { + if val.(bool) { + if e.ctx.GetSessionVars().ConnectionID == 123456 { + e.ctx.GetSessionVars().MemTracker.NeedKill.Store(true) + } + } + }) if e.rowChunks.NumRow() > 0 { e.rowChunks.Sort() e.partitionList = append(e.partitionList, e.rowChunks) @@ -427,7 +434,7 @@ func (e *TopNExec) loadChunksUntilTotalLimit(ctx context.Context) error { e.rowChunks.GetMemTracker().AttachTo(e.memTracker) e.rowChunks.GetMemTracker().SetLabel(memory.LabelForRowChunks) for uint64(e.rowChunks.Len()) < e.totalLimit { - srcChk := newFirstChunk(e.children[0]) + srcChk := tryNewCacheChunk(e.children[0]) // adjust required rows by total limit srcChk.SetRequiredRows(int(e.totalLimit-uint64(e.rowChunks.Len())), e.maxChunkSize) err := Next(ctx, e.children[0], srcChk) @@ -453,7 +460,7 @@ func (e *TopNExec) executeTopN(ctx context.Context) error { // The number of rows we loaded may exceeds total limit, remove greatest rows by Pop. heap.Pop(e.chkHeap) } - childRowChk := newFirstChunk(e.children[0]) + childRowChk := tryNewCacheChunk(e.children[0]) for { err := Next(ctx, e.children[0], childRowChk) if err != nil { diff --git a/executor/splittest/BUILD.bazel b/executor/splittest/BUILD.bazel index 77dd2a7e225f8..f3f9f90128bcc 100644 --- a/executor/splittest/BUILD.bazel +++ b/executor/splittest/BUILD.bazel @@ -8,6 +8,7 @@ go_test( "split_table_test.go", ], flaky = True, + race = "on", shard_count = 5, deps = [ "//ddl", diff --git a/executor/splittest/main_test.go b/executor/splittest/main_test.go index a9d6be9bc0212..c7f44e57f49d5 100644 --- a/executor/splittest/main_test.go +++ b/executor/splittest/main_test.go @@ -23,6 +23,7 @@ import ( func TestMain(m *testing.M) { opts := []goleak.Option{ goleak.IgnoreTopFunction("github.com/golang/glog.(*loggingT).flushDaemon"), + goleak.IgnoreTopFunction("github.com/lestrrat-go/httprc.runFetchWorker"), } goleak.VerifyTestMain(m, opts...) } diff --git a/executor/table_reader.go b/executor/table_reader.go index 7aed132691804..500b3ba3ab771 100644 --- a/executor/table_reader.go +++ b/executor/table_reader.go @@ -22,7 +22,10 @@ import ( "github.com/opentracing/opentracing-go" "github.com/pingcap/failpoint" "github.com/pingcap/tidb/distsql" + "github.com/pingcap/tidb/domain" + "github.com/pingcap/tidb/domain/infosync" "github.com/pingcap/tidb/expression" + "github.com/pingcap/tidb/infoschema" "github.com/pingcap/tidb/kv" "github.com/pingcap/tidb/parser/model" plannercore "github.com/pingcap/tidb/planner/core" @@ -410,6 +413,21 @@ func (e *TableReaderExecutor) buildKVReq(ctx context.Context, ranges []*ranger.R } else { reqBuilder = builder.SetHandleRanges(e.ctx.GetSessionVars().StmtCtx, getPhysicalTableID(e.table), e.table.Meta() != nil && e.table.Meta().IsCommonHandle, ranges, e.feedback) } + if e.table != nil && e.table.Type().IsClusterTable() { + copDestination := infoschema.GetClusterTableCopDestination(e.table.Meta().Name.L) + if copDestination == infoschema.DDLOwner { + ownerManager := domain.GetDomain(e.ctx).DDL().OwnerManager() + ddlOwnerID, err := ownerManager.GetOwnerID(ctx) + if err != nil { + return nil, err + } + serverInfo, err := infosync.GetServerInfoByID(ctx, ddlOwnerID) + if err != nil { + return nil, err + } + reqBuilder.SetTiDBServerID(serverInfo.ServerIDGetter()) + } + } reqBuilder. SetDAGRequest(e.dagPB). SetStartTS(e.startTS). diff --git a/executor/testdata/executor_suite_out.json b/executor/testdata/executor_suite_out.json index bb3f91c1d9548..c06ee935e8b37 100644 --- a/executor/testdata/executor_suite_out.json +++ b/executor/testdata/executor_suite_out.json @@ -46,9 +46,10 @@ "HashJoin_7 6400.00 root anti semi join, equal:[nulleq(test.t1.a, test.t3.a)]", "├─TableReader_18(Build) 10000.00 root data:TableFullScan_17", "│ └─TableFullScan_17 10000.00 cop[tikv] table:t3 keep order:false, stats:pseudo", - "└─HashAgg_10(Probe) 8000.00 root group by:test.t1.a, funcs:firstrow(test.t1.a)->test.t1.a", - " └─TableReader_15 10000.00 root data:TableFullScan_14", - " └─TableFullScan_14 10000.00 cop[tikv] table:t1 keep order:false, stats:pseudo" + "└─HashAgg_12(Probe) 8000.00 root group by:test.t1.a, funcs:firstrow(test.t1.a)->test.t1.a", + " └─TableReader_13 8000.00 root data:HashAgg_8", + " └─HashAgg_8 8000.00 cop[tikv] group by:test.t1.a, ", + " └─TableFullScan_11 10000.00 cop[tikv] table:t1 keep order:false, stats:pseudo" ], "Res": [ "1", @@ -61,9 +62,10 @@ "HashJoin_7 6400.00 root semi join, equal:[nulleq(test.t1.a, test.t2.a)]", "├─TableReader_18(Build) 10000.00 root data:TableFullScan_17", "│ └─TableFullScan_17 10000.00 cop[tikv] table:t2 keep order:false, stats:pseudo", - "└─HashAgg_10(Probe) 8000.00 root group by:test.t1.a, funcs:firstrow(test.t1.a)->test.t1.a", - " └─TableReader_15 10000.00 root data:TableFullScan_14", - " └─TableFullScan_14 10000.00 cop[tikv] table:t1 keep order:false, stats:pseudo" + "└─HashAgg_12(Probe) 8000.00 root group by:test.t1.a, funcs:firstrow(test.t1.a)->test.t1.a", + " └─TableReader_13 8000.00 root data:HashAgg_8", + " └─HashAgg_8 8000.00 cop[tikv] group by:test.t1.a, ", + " └─TableFullScan_11 10000.00 cop[tikv] table:t1 keep order:false, stats:pseudo" ], "Res": [ "1", @@ -123,9 +125,10 @@ "└─HashJoin_14(Probe) 6400.00 root semi join, equal:[nulleq(test.t1.a, test.t2.a)]", " ├─TableReader_24(Build) 10000.00 root data:TableFullScan_23", " │ └─TableFullScan_23 10000.00 cop[tikv] table:t2 keep order:false, stats:pseudo", - " └─HashAgg_17(Probe) 8000.00 root group by:test.t1.a, funcs:firstrow(test.t1.a)->test.t1.a", - " └─TableReader_22 10000.00 root data:TableFullScan_21", - " └─TableFullScan_21 10000.00 cop[tikv] table:t1 keep order:false, stats:pseudo" + " └─HashAgg_19(Probe) 8000.00 root group by:test.t1.a, funcs:firstrow(test.t1.a)->test.t1.a", + " └─TableReader_20 8000.00 root data:HashAgg_15", + " └─HashAgg_15 8000.00 cop[tikv] group by:test.t1.a, ", + " └─TableFullScan_18 10000.00 cop[tikv] table:t1 keep order:false, stats:pseudo" ], "Res": [ "1", @@ -142,9 +145,10 @@ "└─HashJoin_17 6400.00 root semi join, equal:[nulleq(test.t2.a, test.t3.a)]", " ├─TableReader_27(Build) 10000.00 root data:TableFullScan_26", " │ └─TableFullScan_26 10000.00 cop[tikv] table:t3 keep order:false, stats:pseudo", - " └─HashAgg_20(Probe) 8000.00 root group by:test.t2.a, funcs:firstrow(test.t2.a)->test.t2.a", - " └─TableReader_25 10000.00 root data:TableFullScan_24", - " └─TableFullScan_24 10000.00 cop[tikv] table:t2 keep order:false, stats:pseudo" + " └─HashAgg_22(Probe) 8000.00 root group by:test.t2.a, funcs:firstrow(test.t2.a)->test.t2.a", + " └─TableReader_23 8000.00 root data:HashAgg_18", + " └─HashAgg_18 8000.00 cop[tikv] group by:test.t2.a, ", + " └─TableFullScan_21 10000.00 cop[tikv] table:t2 keep order:false, stats:pseudo" ], "Res": [ "1", @@ -162,12 +166,14 @@ "├─HashJoin_20(Build) 6400.00 root semi join, equal:[nulleq(test.t2.a, test.t3.a)]", "│ ├─TableReader_31(Build) 10000.00 root data:TableFullScan_30", "│ │ └─TableFullScan_30 10000.00 cop[tikv] table:t3 keep order:false, stats:pseudo", - "│ └─HashAgg_23(Probe) 8000.00 root group by:test.t2.a, funcs:firstrow(test.t2.a)->test.t2.a", - "│ └─TableReader_28 10000.00 root data:TableFullScan_27", - "│ └─TableFullScan_27 10000.00 cop[tikv] table:t2 keep order:false, stats:pseudo", - "└─HashAgg_14(Probe) 8000.00 root group by:test.t1.a, funcs:firstrow(test.t1.a)->test.t1.a", - " └─TableReader_19 10000.00 root data:TableFullScan_18", - " └─TableFullScan_18 10000.00 cop[tikv] table:t1 keep order:false, stats:pseudo" + "│ └─HashAgg_25(Probe) 8000.00 root group by:test.t2.a, funcs:firstrow(test.t2.a)->test.t2.a", + "│ └─TableReader_26 8000.00 root data:HashAgg_21", + "│ └─HashAgg_21 8000.00 cop[tikv] group by:test.t2.a, ", + "│ └─TableFullScan_24 10000.00 cop[tikv] table:t2 keep order:false, stats:pseudo", + "└─HashAgg_16(Probe) 8000.00 root group by:test.t1.a, funcs:firstrow(test.t1.a)->test.t1.a", + " └─TableReader_17 8000.00 root data:HashAgg_12", + " └─HashAgg_12 8000.00 cop[tikv] group by:test.t1.a, ", + " └─TableFullScan_15 10000.00 cop[tikv] table:t1 keep order:false, stats:pseudo" ], "Res": [ "1", @@ -182,12 +188,14 @@ "├─HashJoin_20(Build) 6400.00 root anti semi join, equal:[nulleq(test.t2.a, test.t3.a)]", "│ ├─TableReader_31(Build) 10000.00 root data:TableFullScan_30", "│ │ └─TableFullScan_30 10000.00 cop[tikv] table:t3 keep order:false, stats:pseudo", - "│ └─HashAgg_23(Probe) 8000.00 root group by:test.t2.a, funcs:firstrow(test.t2.a)->test.t2.a", - "│ └─TableReader_28 10000.00 root data:TableFullScan_27", - "│ └─TableFullScan_27 10000.00 cop[tikv] table:t2 keep order:false, stats:pseudo", - "└─HashAgg_14(Probe) 8000.00 root group by:test.t1.a, funcs:firstrow(test.t1.a)->test.t1.a", - " └─TableReader_19 10000.00 root data:TableFullScan_18", - " └─TableFullScan_18 10000.00 cop[tikv] table:t1 keep order:false, stats:pseudo" + "│ └─HashAgg_25(Probe) 8000.00 root group by:test.t2.a, funcs:firstrow(test.t2.a)->test.t2.a", + "│ └─TableReader_26 8000.00 root data:HashAgg_21", + "│ └─HashAgg_21 8000.00 cop[tikv] group by:test.t2.a, ", + "│ └─TableFullScan_24 10000.00 cop[tikv] table:t2 keep order:false, stats:pseudo", + "└─HashAgg_16(Probe) 8000.00 root group by:test.t1.a, funcs:firstrow(test.t1.a)->test.t1.a", + " └─TableReader_17 8000.00 root data:HashAgg_12", + " └─HashAgg_12 8000.00 cop[tikv] group by:test.t1.a, ", + " └─TableFullScan_15 10000.00 cop[tikv] table:t1 keep order:false, stats:pseudo" ], "Res": [ "1", @@ -203,9 +211,10 @@ "└─HashJoin_17 6400.00 root anti semi join, equal:[nulleq(test.t2.a, test.t3.a)]", " ├─TableReader_27(Build) 10000.00 root data:TableFullScan_26", " │ └─TableFullScan_26 10000.00 cop[tikv] table:t3 keep order:false, stats:pseudo", - " └─HashAgg_20(Probe) 8000.00 root group by:test.t2.a, funcs:firstrow(test.t2.a)->test.t2.a", - " └─TableReader_25 10000.00 root data:TableFullScan_24", - " └─TableFullScan_24 10000.00 cop[tikv] table:t2 keep order:false, stats:pseudo" + " └─HashAgg_22(Probe) 8000.00 root group by:test.t2.a, funcs:firstrow(test.t2.a)->test.t2.a", + " └─TableReader_23 8000.00 root data:HashAgg_18", + " └─HashAgg_18 8000.00 cop[tikv] group by:test.t2.a, ", + " └─TableFullScan_21 10000.00 cop[tikv] table:t2 keep order:false, stats:pseudo" ], "Res": [ "1", @@ -250,9 +259,10 @@ "└─HashJoin_20(Probe) 6400.00 root semi join, equal:[nulleq(test.t1.a, test.t1.a)]", " ├─TableReader_30(Build) 10000.00 root data:TableFullScan_29", " │ └─TableFullScan_29 10000.00 cop[tikv] table:t1 keep order:false, stats:pseudo", - " └─HashAgg_23(Probe) 8000.00 root group by:test.t1.a, funcs:firstrow(test.t1.a)->test.t1.a", - " └─TableReader_28 10000.00 root data:TableFullScan_27", - " └─TableFullScan_27 10000.00 cop[tikv] table:t1 keep order:false, stats:pseudo" + " └─HashAgg_25(Probe) 8000.00 root group by:test.t1.a, funcs:firstrow(test.t1.a)->test.t1.a", + " └─TableReader_26 8000.00 root data:HashAgg_21", + " └─HashAgg_21 8000.00 cop[tikv] group by:test.t1.a, ", + " └─TableFullScan_24 10000.00 cop[tikv] table:t1 keep order:false, stats:pseudo" ], "Res": null } @@ -664,7 +674,7 @@ { "SQL": "select count(*) from t as t1 inner join t as t2 on t1.c1 = t2.c1 where t1.c1 != NULL", "Plan": [ - "StreamAgg 1.00 root funcs:count(1)->Column#7", + "HashAgg 1.00 root funcs:count(1)->Column#7", "└─MergeJoin 0.00 root inner join, left key:test.t.c1, right key:test.t.c1", " ├─TableDual(Build) 0.00 root rows:0", " └─TableDual(Probe) 0.00 root rows:0" @@ -694,7 +704,7 @@ { "SQL": "select count(*) from t as t1 left join t as t2 on t1.c1 = t2.c1 where t1.c1 != NULL", "Plan": [ - "StreamAgg 1.00 root funcs:count(1)->Column#7", + "HashAgg 1.00 root funcs:count(1)->Column#7", "└─MergeJoin 0.00 root left outer join, left key:test.t.c1, right key:test.t.c1", " ├─TableDual(Build) 0.00 root rows:0", " └─TableDual(Probe) 0.00 root rows:0" diff --git a/executor/testdata/tiflash_v640_dt_tables.json b/executor/testdata/tiflash_v640_dt_tables.json new file mode 100644 index 0000000000000..d86ce41f6124c --- /dev/null +++ b/executor/testdata/tiflash_v640_dt_tables.json @@ -0,0 +1,241 @@ +{ + "meta": + [ + { + "name": "database", + "type": "String" + }, + { + "name": "table", + "type": "String" + }, + { + "name": "tidb_database", + "type": "String" + }, + { + "name": "tidb_table", + "type": "String" + }, + { + "name": "table_id", + "type": "Int64" + }, + { + "name": "is_tombstone", + "type": "UInt64" + }, + { + "name": "segment_count", + "type": "UInt64" + }, + { + "name": "total_rows", + "type": "UInt64" + }, + { + "name": "total_size", + "type": "UInt64" + }, + { + "name": "total_delete_ranges", + "type": "UInt64" + }, + { + "name": "delta_rate_rows", + "type": "Float64" + }, + { + "name": "delta_rate_segments", + "type": "Float64" + }, + { + "name": "delta_placed_rate", + "type": "Float64" + }, + { + "name": "delta_cache_size", + "type": "UInt64" + }, + { + "name": "delta_cache_rate", + "type": "Float64" + }, + { + "name": "delta_cache_wasted_rate", + "type": "Float64" + }, + { + "name": "delta_index_size", + "type": "UInt64" + }, + { + "name": "avg_segment_rows", + "type": "Float64" + }, + { + "name": "avg_segment_size", + "type": "Float64" + }, + { + "name": "delta_count", + "type": "UInt64" + }, + { + "name": "total_delta_rows", + "type": "UInt64" + }, + { + "name": "total_delta_size", + "type": "UInt64" + }, + { + "name": "avg_delta_rows", + "type": "Float64" + }, + { + "name": "avg_delta_size", + "type": "Float64" + }, + { + "name": "avg_delta_delete_ranges", + "type": "Float64" + }, + { + "name": "stable_count", + "type": "UInt64" + }, + { + "name": "total_stable_rows", + "type": "UInt64" + }, + { + "name": "total_stable_size", + "type": "UInt64" + }, + { + "name": "total_stable_size_on_disk", + "type": "UInt64" + }, + { + "name": "avg_stable_rows", + "type": "Float64" + }, + { + "name": "avg_stable_size", + "type": "Float64" + }, + { + "name": "total_pack_count_in_delta", + "type": "UInt64" + }, + { + "name": "max_pack_count_in_delta", + "type": "UInt64" + }, + { + "name": "avg_pack_count_in_delta", + "type": "Float64" + }, + { + "name": "avg_pack_rows_in_delta", + "type": "Float64" + }, + { + "name": "avg_pack_size_in_delta", + "type": "Float64" + }, + { + "name": "total_pack_count_in_stable", + "type": "UInt64" + }, + { + "name": "avg_pack_count_in_stable", + "type": "Float64" + }, + { + "name": "avg_pack_rows_in_stable", + "type": "Float64" + }, + { + "name": "avg_pack_size_in_stable", + "type": "Float64" + }, + { + "name": "storage_stable_num_snapshots", + "type": "UInt64" + }, + { + "name": "storage_stable_oldest_snapshot_lifetime", + "type": "Float64" + }, + { + "name": "storage_stable_oldest_snapshot_thread_id", + "type": "UInt64" + }, + { + "name": "storage_stable_oldest_snapshot_tracing_id", + "type": "String" + }, + { + "name": "storage_delta_num_snapshots", + "type": "UInt64" + }, + { + "name": "storage_delta_oldest_snapshot_lifetime", + "type": "Float64" + }, + { + "name": "storage_delta_oldest_snapshot_thread_id", + "type": "UInt64" + }, + { + "name": "storage_delta_oldest_snapshot_tracing_id", + "type": "String" + }, + { + "name": "storage_meta_num_snapshots", + "type": "UInt64" + }, + { + "name": "storage_meta_oldest_snapshot_lifetime", + "type": "Float64" + }, + { + "name": "storage_meta_oldest_snapshot_thread_id", + "type": "UInt64" + }, + { + "name": "storage_meta_oldest_snapshot_tracing_id", + "type": "String" + }, + { + "name": "background_tasks_length", + "type": "UInt64" + } + ], + + "data": + [ + ["db_70", "t_135", "tpcc", "customer", "135", "0", "4", "3528714", "2464079200", "0", 0.002329177144988231, 1, 0, "929227", 0.16169850346757514, 0, "8128", 882178.5, 616019800, "4", "8219", "5747810", 2054.75, 1436952.5, 0, "4", "3520495", "2458331390", "1601563417", 880123.75, 614582847.5, "24", "8", 6, 342.4583333333333, 239492.08333333334, "482", 120.5, 7303.9315352697095, 5100272.593360996, "0", 0, "0", "", "0", 0, "0", "", "0", 0, "0", "", "0"], + ["db_70", "t_137", "tpcc", "district", "137", "0", "1", "7993", "1346259", "0", 0.8748905292130614, 1, 0.8055198055198055, "252168", 0.21407121407121407, 0, "147272", 7993, 1346259, "1", "6993", "1178050", 6993, 1178050, 0, "1", "1000", "168209", "91344", 1000, 168209, "6", "6", 6, 1165.5, 196341.66666666666, "10", 10, 100, 16820.9, "0", 0, "0", "", "0", 0, "0", "", "0", 0, "0", "", "0"], + ["db_70", "t_139", "tpcc", "history", "139", "0", "19", "19379697", "1629276978", "0", 0.0006053758219233252, 0.5789473684210527, 0.4626662120695534, "253640", 0.25434708489601093, 0, "293544", 1019984.052631579, 85751419.89473684, "11", "11732", "997220", 1066.5454545454545, 90656.36363636363, 0, "19", "19367965", "1628279758", "625147717", 1019366.5789473684, 85698934.63157895, "15", "4", 1.3636363636363635, 782.1333333333333, 66481.33333333333, "2378", 125.15789473684211, 8144.644659377628, 684726.559293524, "0", 0, "0", "", "0", 0, "0", "", "0", 0, "0", "", "0"], + ["db_70", "t_141", "tpcc", "item", "141", "0", "1", "100000", "10799081", "0", 0, 0, null, "0", null, null, "0", 100000, 10799081, "0", "0", "0", null, null, null, "1", "100000", "10799081", "7357726", 100000, 10799081, "0", "0", null, null, null, "13", 13, 7692.307692307692, 830698.5384615385, "0", 0, "0", "", "0", 0, "0", "", "0", 0, "0", "", "0"], + ["db_70", "t_143", "tpcc", "new_order", "143", "0", "4", "2717707", "78813503", "0", 0.02266763856442214, 1, 0.9678592299201351, "52809", 0.029559768846178818, 0, "1434208", 679426.75, 19703375.75, "4", "61604", "1786516", 15401, 446629, 0, "3", "2656103", "77026987", "40906492", 885367.6666666666, 25675662.333333332, "37", "24", 9.25, 1664.972972972973, 48284.21621621621, "380", 126.66666666666667, 6989.744736842105, 202702.59736842106, "0", 0, "0", "", "0", 0, "0", "", "0", 0, "0", "", "0"], + ["db_70", "t_145", "tpcc", "order_line", "145", "0", "203", "210607202", "20007684190", "0", 0.0054566462546708164, 0.5862068965517241, 0.7810067620424135, "620065", 0.005679558722564825, 0, "22607144", 1037473.9014778325, 98560020.64039409, "119", "1149209", "109174855", 9657.218487394957, 917435.756302521, 0, "203", "209457993", "19898509335", "8724002804", 1031812.7733990147, 98022213.47290641, "893", "39", 7.504201680672269, 1286.9081746920492, 122256.27659574468, "31507", 155.20689655172413, 6647.982765734599, 631558.3627447869, "0", 0, "0", "", "0", 0, "0", "", "0", 0, "0", "", "0"], + ["db_70", "t_147", "tpcc", "orders", "147", "0", "22", "21903301", "1270391458", "0", 0.02021357420052804, 0.7272727272727273, 0.9239944527763222, "260536", 0.010145817899282655, 0, "10025264", 995604.5909090909, 57745066.27272727, "16", "442744", "25679152", 27671.5, 1604947, 0, "22", "21460557", "1244712306", "452173775", 975479.8636363636, 56577832.09090909, "242", "34", 15.125, 1829.5206611570247, 106112.19834710743, "2973", 135.13636363636363, 7218.485368314833, 418672.15136226034, "0", 0, "0", "", "0", 0, "0", "", "0", 0, "0", "", "0"], + ["db_70", "t_149", "tpcc", "stock", "149", "0", "42", "11112720", "4811805131", "0", 0.028085203262567582, 0.9761904761904762, 0.8463391893060944, "10227093", 0.07567373591410528, 0, "6719064", 264588.5714285714, 114566788.83333333, "41", "312103", "135131097", 7612.268292682927, 3295880.4146341463, 0, "42", "10800617", "4676674034", "3231872509", 257157.54761904763, 111349381.76190476, "238", "26", 5.804878048780488, 1311.357142857143, 567777.718487395, "1644", 39.142857142857146, 6569.718369829684, 2844692.234793187, "0", 0, "0", "", "0", 0, "0", "", "0", 0, "0", "", "0"], + ["db_70", "t_151", "tpcc", "warehouse", "151", "0", "1", "5842", "923615", "0", 0.9828825744608011, 1, 0.9669104841518634, "70220", 0.07732497387669801, 0, "133048", 5842, 923615, "1", "5742", "907807", 5742, 907807, 0, "1", "100", "15808", "11642", 100, 15808, "5", "5", 5, 1148.4, 181561.4, "5", 5, 20, 3161.6, "0", 0, "0", "", "0", 0, "0", "", "0", 0, "0", "", "0"] + ], + + "rows": 9, + + "rows_before_limit_at_least": 9, + + "statistics": + { + "elapsed": 0.000217252, + "rows_read": 9, + "bytes_read": 4071 + } +} diff --git a/executor/tiflashtest/main_test.go b/executor/tiflashtest/main_test.go index 60681a496f07a..708cb54bb0283 100644 --- a/executor/tiflashtest/main_test.go +++ b/executor/tiflashtest/main_test.go @@ -39,6 +39,7 @@ func TestMain(m *testing.M) { view.Stop() }), goleak.IgnoreTopFunction("github.com/golang/glog.(*loggingT).flushDaemon"), + goleak.IgnoreTopFunction("github.com/lestrrat-go/httprc.runFetchWorker"), goleak.IgnoreTopFunction("go.etcd.io/etcd/client/pkg/v3/logutil.(*MergeLogger).outputLoop"), goleak.IgnoreTopFunction("gopkg.in/natefinch/lumberjack%2ev2.(*Logger).millRun"), goleak.IgnoreTopFunction("github.com/tikv/client-go/v2/txnkv/transaction.keepAlive"), diff --git a/executor/tiflashtest/tiflash_test.go b/executor/tiflashtest/tiflash_test.go index 37bcc7272575e..becdb2ec1956c 100644 --- a/executor/tiflashtest/tiflash_test.go +++ b/executor/tiflashtest/tiflash_test.go @@ -1089,6 +1089,7 @@ func TestForbidTiFlashIfExtraPhysTableIDIsNeeded(t *testing.T) { require.NoError(t, err) tk.MustExec("set tidb_partition_prune_mode=dynamic") tk.MustExec("set tidb_enforce_mpp=1") + tk.MustExec("set tidb_cost_model_version=2") rows := tk.MustQuery("explain select count(*) from t").Rows() resBuff := bytes.NewBufferString("") diff --git a/executor/union_scan.go b/executor/union_scan.go index 9c0483d974f1c..a23cd8b8c7873 100644 --- a/executor/union_scan.go +++ b/executor/union_scan.go @@ -129,7 +129,7 @@ func (us *UnionScanExec) open(ctx context.Context) error { if err != nil { return err } - us.snapshotChunkBuffer = newFirstChunk(us) + us.snapshotChunkBuffer = tryNewCacheChunk(us) return nil } diff --git a/executor/union_scan_test.go b/executor/union_scan_test.go index 8800e16d750dd..ecc3e0b6bbbfd 100644 --- a/executor/union_scan_test.go +++ b/executor/union_scan_test.go @@ -223,7 +223,7 @@ func TestUnionScanForMemBufferReader(t *testing.T) { tk.MustExec("create table t (a int,b int, unique index idx(b))") tk.MustExec("insert t values (1,1),(2,2)") tk.MustExec("begin") - tk.MustGetErrMsg("update t set b=b+1", "[kv:1062]Duplicate entry '2' for key 'idx'") + tk.MustGetErrMsg("update t set b=b+1", "[kv:1062]Duplicate entry '2' for key 't.idx'") // update with unchange index column. tk.MustExec("update t set a=a+1") tk.MustQuery("select * from t use index (idx)").Check(testkit.Rows("2 1", "3 2")) @@ -340,7 +340,7 @@ func TestForUpdateUntouchedIndex(t *testing.T) { tk.MustExec("begin") _, err := tk.Exec("insert into t values (1, 1), (2, 2), (1, 3) on duplicate key update a = a + 1;") require.NotNil(t, err) - require.EqualError(t, err, "[kv:1062]Duplicate entry '2' for key 'a'") + require.EqualError(t, err, "[kv:1062]Duplicate entry '2' for key 't.a'") tk.MustExec("commit") tk.MustExec("admin check table t") } @@ -544,7 +544,7 @@ func TestIssue36903(t *testing.T) { tk.MustExec("insert into t_vwvgdc values (2, 15000, 61.75);") tk.MustExec("BEGIN OPTIMISTIC;") tk.MustExec("insert into t_vwvgdc (wkey, pkey, c_rdsfbc) values (155, 228000, 99.50);") - tk.MustQuery("select pkey from t_vwvgdc where 0 <> 0 union select pkey from t_vwvgdc;") + tk.MustQuery("select pkey from t_vwvgdc where 0 <> 0 union select pkey from t_vwvgdc;").Sort().Check(testkit.Rows("15000", "228000")) } func BenchmarkUnionScanRead(b *testing.B) { diff --git a/executor/update.go b/executor/update.go index e10875404b912..cf0a6ae2e33f4 100644 --- a/executor/update.go +++ b/executor/update.go @@ -68,6 +68,8 @@ type UpdateExec struct { matches []bool // fkChecks contains the foreign key checkers. the map is tableID -> []*FKCheckExec fkChecks map[int64][]*FKCheckExec + // fkCascades contains the foreign key cascade. the map is tableID -> []*FKCascadeExec + fkCascades map[int64][]*FKCascadeExec } // prepare `handles`, `tableUpdatable`, `changed` to avoid re-computations. @@ -194,7 +196,8 @@ func (e *UpdateExec) exec(ctx context.Context, schema *expression.Schema, row, n // Update row fkChecks := e.fkChecks[content.TblID] - changed, err1 := updateRecord(ctx, e.ctx, handle, oldData, newTableData, flags, tbl, false, e.memTracker, fkChecks) + fkCascades := e.fkCascades[content.TblID] + changed, err1 := updateRecord(ctx, e.ctx, handle, oldData, newTableData, flags, tbl, false, e.memTracker, fkChecks, fkCascades) if err1 == nil { _, exist := e.updatedRowKeys[content.Start].Get(handle) memDelta := e.updatedRowKeys[content.Start].Set(handle, changed) @@ -247,7 +250,7 @@ func (e *UpdateExec) updateRows(ctx context.Context) (int, error) { fields := retTypes(e.children[0]) colsInfo := plannercore.GetUpdateColumnsInfo(e.tblID2table, e.tblColPosInfos, len(fields)) globalRowIdx := 0 - chk := newFirstChunk(e.children[0]) + chk := tryNewCacheChunk(e.children[0]) if !e.allAssignmentsAreConstant { e.evalBuffer = chunk.MutRowFromTypes(fields) } @@ -543,3 +546,17 @@ func (e *UpdateExec) GetFKChecks() []*FKCheckExec { } return fkChecks } + +// GetFKCascades implements WithForeignKeyTrigger interface. +func (e *UpdateExec) GetFKCascades() []*FKCascadeExec { + fkCascades := make([]*FKCascadeExec, 0, len(e.fkChecks)) + for _, fkc := range e.fkCascades { + fkCascades = append(fkCascades, fkc...) + } + return fkCascades +} + +// HasFKCascades implements WithForeignKeyTrigger interface. +func (e *UpdateExec) HasFKCascades() bool { + return len(e.fkCascades) > 0 +} diff --git a/executor/window.go b/executor/window.go index 3ce26a03e59cf..aaa1e51cacc85 100644 --- a/executor/window.go +++ b/executor/window.go @@ -151,7 +151,7 @@ func (e *WindowExec) consumeGroupRows(groupRows []chunk.Row) (err error) { } func (e *WindowExec) fetchChild(ctx context.Context) (EOF bool, err error) { - childResult := newFirstChunk(e.children[0]) + childResult := tryNewCacheChunk(e.children[0]) err = Next(ctx, e.children[0], childResult) if err != nil { return false, errors.Trace(err) @@ -162,7 +162,7 @@ func (e *WindowExec) fetchChild(ctx context.Context) (EOF bool, err error) { return true, nil } - resultChk := chunk.New(e.retFieldTypes, 0, numRows) + resultChk := e.ctx.GetSessionVars().GetNewChunkWithCapacity(e.retFieldTypes, 0, numRows, e.AllocPool) err = e.copyChk(childResult, resultChk) if err != nil { return false, err diff --git a/executor/write.go b/executor/write.go index 8d4336b07b960..01359b56a2571 100644 --- a/executor/write.go +++ b/executor/write.go @@ -51,7 +51,7 @@ var ( // 1. changed (bool) : does the update really change the row values. e.g. update set i = 1 where i = 1; // 2. err (error) : error in the update. func updateRecord(ctx context.Context, sctx sessionctx.Context, h kv.Handle, oldData, newData []types.Datum, modified []bool, t table.Table, - onDup bool, memTracker *memory.Tracker, fkChecks []*FKCheckExec) (bool, error) { + onDup bool, memTracker *memory.Tracker, fkChecks []*FKCheckExec, fkCascades []*FKCascadeExec) (bool, error) { if span := opentracing.SpanFromContext(ctx); span != nil && span.Tracer() != nil { span1 := span.Tracer().StartSpan("executor.updateRecord", opentracing.ChildOf(span.Context())) defer span1.Finish() @@ -220,6 +220,12 @@ func updateRecord(ctx context.Context, sctx sessionctx.Context, h kv.Handle, old return false, err } } + for _, fkc := range fkCascades { + err := fkc.onUpdateRow(sc, oldData, newData) + if err != nil { + return false, err + } + } if onDup { sc.AddAffectedRows(2) } else { diff --git a/executor/write_test.go b/executor/write_test.go index ab3ec6813f5c7..32aa261c5518d 100644 --- a/executor/write_test.go +++ b/executor/write_test.go @@ -319,10 +319,10 @@ func TestInsert(t *testing.T) { tk.MustExec("create table t(name varchar(255), b int, c int, primary key(name(2)))") tk.MustExec("insert into t(name, b) values(\"cha\", 3)") err = tk.ExecToErr("insert into t(name, b) values(\"chb\", 3)") - require.EqualError(t, err, "[kv:1062]Duplicate entry 'ch' for key 'PRIMARY'") + require.EqualError(t, err, "[kv:1062]Duplicate entry 'ch' for key 't.PRIMARY'") tk.MustExec("insert into t(name, b) values(\"测试\", 3)") err = tk.ExecToErr("insert into t(name, b) values(\"测试\", 3)") - require.EqualError(t, err, "[kv:1062]Duplicate entry '测试' for key 'PRIMARY'") + require.EqualError(t, err, "[kv:1062]Duplicate entry '\xe6\xb5' for key 't.PRIMARY'") } func TestMultiBatch(t *testing.T) { @@ -542,7 +542,7 @@ func TestInsertIgnore(t *testing.T) { require.Empty(t, tk.Session().LastMessage()) require.NoError(t, err) r = tk.MustQuery("SHOW WARNINGS") - r.Check(testkit.Rows("Warning 1062 Duplicate entry '1' for key 'PRIMARY'")) + r.Check(testkit.Rows("Warning 1062 Duplicate entry '1' for key 't.PRIMARY'")) testSQL = `drop table if exists test; create table test (i int primary key, j int unique); @@ -785,21 +785,21 @@ func TestInsertIgnoreOnDup(t *testing.T) { tk.MustExec("create table t2(`col_25` set('Alice','Bob','Charlie','David') NOT NULL,`col_26` date NOT NULL DEFAULT '2016-04-15', PRIMARY KEY (`col_26`) clustered, UNIQUE KEY `idx_9` (`col_25`,`col_26`),UNIQUE KEY `idx_10` (`col_25`))") tk.MustExec("insert into t2(col_25, col_26) values('Bob', '1989-03-23'),('Alice', '2023-11-24'), ('Charlie', '2023-12-05')") tk.MustExec("insert ignore into t2 (col_25,col_26) values ( 'Bob','1977-11-23' ) on duplicate key update col_25 = 'Alice', col_26 = '2036-12-13'") - tk.MustQuery("show warnings").Check(testkit.Rows("Warning 1062 Duplicate entry 'Alice' for key 'idx_10'")) + tk.MustQuery("show warnings").Check(testkit.Rows("Warning 1062 Duplicate entry 'Alice' for key 't2.idx_10'")) tk.MustQuery("select * from t2").Check(testkit.Rows("Bob 1989-03-23", "Alice 2023-11-24", "Charlie 2023-12-05")) tk.MustExec("drop table if exists t4") tk.MustExec("create table t4(id int primary key clustered, k int, v int, unique key uk1(k))") tk.MustExec("insert into t4 values (1, 10, 100), (3, 30, 300)") tk.MustExec("insert ignore into t4 (id, k, v) values(1, 0, 0) on duplicate key update id = 2, k = 30") - tk.MustQuery("show warnings").Check(testkit.Rows("Warning 1062 Duplicate entry '30' for key 'uk1'")) + tk.MustQuery("show warnings").Check(testkit.Rows("Warning 1062 Duplicate entry '30' for key 't4.uk1'")) tk.MustQuery("select * from t4").Check(testkit.Rows("1 10 100", "3 30 300")) tk.MustExec("drop table if exists t5") tk.MustExec("create table t5(k1 varchar(100), k2 varchar(100), uk1 int, v int, primary key(k1, k2) clustered, unique key ukk1(uk1), unique key ukk2(v))") tk.MustExec("insert into t5(k1, k2, uk1, v) values('1', '1', 1, '100'), ('1', '3', 2, '200')") tk.MustExec("update ignore t5 set k2 = '2', uk1 = 2 where k1 = '1' and k2 = '1'") - tk.MustQuery("show warnings").Check(testkit.Rows("Warning 1062 Duplicate entry '2' for key 'ukk1'")) + tk.MustQuery("show warnings").Check(testkit.Rows("Warning 1062 Duplicate entry '2' for key 't5.ukk1'")) tk.MustQuery("select * from t5").Check(testkit.Rows("1 1 1 100", "1 3 2 200")) tk.MustExec("drop table if exists t6") @@ -1535,7 +1535,7 @@ func TestPartitionedTableUpdate(t *testing.T) { require.NoError(t, err) require.Equal(t, tk.Session().LastMessage(), "Rows matched: 1 Changed: 0 Warnings: 1") r = tk.MustQuery("SHOW WARNINGS;") - r.Check(testkit.Rows("Warning 1062 Duplicate entry '5' for key 'PRIMARY'")) + r.Check(testkit.Rows("Warning 1062 Duplicate entry '5' for key 't.PRIMARY'")) tk.MustQuery("select * from t order by a").Check(testkit.Rows("5", "7")) // test update ignore for truncate as warning @@ -1556,7 +1556,7 @@ func TestPartitionedTableUpdate(t *testing.T) { require.NoError(t, err) require.Equal(t, tk.Session().LastMessage(), "Rows matched: 1 Changed: 0 Warnings: 1") r = tk.MustQuery("SHOW WARNINGS;") - r.Check(testkit.Rows("Warning 1062 Duplicate entry '5' for key 'I_uniq'")) + r.Check(testkit.Rows("Warning 1062 Duplicate entry '5' for key 't.I_uniq'")) tk.MustQuery("select * from t order by a").Check(testkit.Rows("5", "7")) } @@ -2710,7 +2710,7 @@ func TestDeferConstraintCheckForDelete(t *testing.T) { tk.MustExec("begin") tk.MustExec("insert into t1 values(1, 3)") tk.MustExec("delete from t1 where j = 3") - tk.MustGetErrMsg("commit", "previous statement: delete from t1 where j = 3: [kv:1062]Duplicate entry '1' for key 'PRIMARY'") + tk.MustGetErrMsg("commit", "previous statement: delete from t1 where j = 3: [kv:1062]Duplicate entry '1' for key 't1.PRIMARY'") tk.MustExec("rollback") tk.MustExec("create table t2(i int, j int, unique index idx(i))") @@ -2718,7 +2718,7 @@ func TestDeferConstraintCheckForDelete(t *testing.T) { tk.MustExec("begin") tk.MustExec("insert into t2 values(1, 3)") tk.MustExec("delete from t2 where j = 3") - tk.MustGetErrMsg("commit", "previous statement: delete from t2 where j = 3: [kv:1062]Duplicate entry '1' for key 'idx'") + tk.MustGetErrMsg("commit", "previous statement: delete from t2 where j = 3: [kv:1062]Duplicate entry '1' for key 't2.idx'") tk.MustExec("admin check table t2") tk.MustExec("create table t3(i int, j int, primary key(i))") @@ -3051,7 +3051,7 @@ func TestWriteListPartitionTable(t *testing.T) { // Test insert error tk.MustExec("insert into t values (1, 'a')") - tk.MustGetErrMsg("insert into t values (1, 'd')", "[kv:1062]Duplicate entry '1' for key 'idx'") + tk.MustGetErrMsg("insert into t values (1, 'd')", "[kv:1062]Duplicate entry '1' for key 't.idx'") tk.MustGetErrMsg("insert into t values (100, 'd')", "[table:1526]Table has no partition for value 100") tk.MustExec("admin check table t;") @@ -3099,7 +3099,7 @@ func TestWriteListColumnsPartitionTable(t *testing.T) { // Test insert error tk.MustExec("insert into t values (1, 'a')") err := tk.ExecToErr("insert into t values (1, 'd')") - require.EqualError(t, err, "[kv:1062]Duplicate entry '1' for key 'idx'") + require.EqualError(t, err, "[kv:1062]Duplicate entry '1' for key 't.idx'") err = tk.ExecToErr("insert into t values (100, 'd')") require.EqualError(t, err, "[table:1526]Table has no partition for value from column_list") tk.MustExec("admin check table t;") @@ -3133,7 +3133,7 @@ func TestWriteListPartitionTable1(t *testing.T) { // Test add unique index failed. tk.MustExec("insert into t values (1, 'a'),(1,'b')") err := tk.ExecToErr("alter table t add unique index idx (id)") - require.EqualError(t, err, "[kv:1062]Duplicate entry '1' for key 'idx'") + require.EqualError(t, err, "[kv:1062]Duplicate entry '1' for key 't.idx'") // Test add unique index success. tk.MustExec("delete from t where name='b'") tk.MustExec("alter table t add unique index idx (id)") @@ -3158,11 +3158,11 @@ func TestWriteListPartitionTable1(t *testing.T) { tk.MustQuery("select * from t partition(p3) order by id").Check(testkit.Rows()) // Test insert on duplicate error err = tk.ExecToErr("insert into t values (3, 'a'), (11,'x') on duplicate key update id=id+1") - require.EqualError(t, err, "[kv:1062]Duplicate entry '4' for key 'idx'") + require.EqualError(t, err, "[kv:1062]Duplicate entry '4' for key 't.idx'") tk.MustQuery("select * from t order by id").Check(testkit.Rows("1 x", "3 x", "4 e", "5 g")) // Test insert ignore with duplicate tk.MustExec("insert ignore into t values (1, 'b'), (5,'a'),(null,'y')") - tk.MustQuery("show warnings").Check(testkit.Rows("Warning 1062 Duplicate entry '1' for key 'idx'", "Warning 1062 Duplicate entry '5' for key 'idx'")) + tk.MustQuery("show warnings").Check(testkit.Rows("Warning 1062 Duplicate entry '1' for key 't.idx'", "Warning 1062 Duplicate entry '5' for key 't.idx'")) tk.MustQuery("select * from t partition(p0) order by id").Check(testkit.Rows("3 x", "5 g")) tk.MustQuery("select * from t partition(p1) order by id").Check(testkit.Rows("1 x")) tk.MustQuery("select * from t partition(p2) order by id").Check(testkit.Rows("4 e")) @@ -3187,7 +3187,7 @@ func TestWriteListPartitionTable1(t *testing.T) { tk.MustQuery("select * from t order by id").Check(testkit.Rows("1 y", "2 y", "3 c")) // Test update meet duplicate error. err = tk.ExecToErr("update t set id=2 where id = 1") - require.EqualError(t, err, "[kv:1062]Duplicate entry '2' for key 'idx'") + require.EqualError(t, err, "[kv:1062]Duplicate entry '2' for key 't.idx'") tk.MustQuery("select * from t order by id").Check(testkit.Rows("1 y", "2 y", "3 c")) // Test update multi-partitions @@ -3199,7 +3199,7 @@ func TestWriteListPartitionTable1(t *testing.T) { tk.MustQuery("select * from t order by id").Check(testkit.Rows("3 a", "10 a", "20 a")) // Test update meet duplicate error. err = tk.ExecToErr("update t set id=id+17 where id in (3,10)") - require.EqualError(t, err, "[kv:1062]Duplicate entry '20' for key 'idx'") + require.EqualError(t, err, "[kv:1062]Duplicate entry '20' for key 't.idx'") tk.MustQuery("select * from t order by id").Check(testkit.Rows("3 a", "10 a", "20 a")) // Test update meet no partition error. err = tk.ExecToErr("update t set id=id*2 where id in (3,20)") @@ -3262,7 +3262,7 @@ func TestWriteListPartitionTable2(t *testing.T) { // Test add unique index failed. tk.MustExec("insert into t (id,name) values (1, 'a'),(1,'b')") err := tk.ExecToErr("alter table t add unique index idx (id,b)") - require.EqualError(t, err, "[kv:1062]Duplicate entry '1-2' for key 'idx'") + require.EqualError(t, err, "[kv:1062]Duplicate entry '1-2' for key 't.idx'") // Test add unique index success. tk.MustExec("delete from t where name='b'") tk.MustExec("alter table t add unique index idx (id,b)") @@ -3287,11 +3287,11 @@ func TestWriteListPartitionTable2(t *testing.T) { tk.MustQuery("select id,name from t partition(p3) order by id").Check(testkit.Rows()) // Test insert on duplicate error err = tk.ExecToErr("insert into t (id,name) values (3, 'a'), (11,'x') on duplicate key update id=id+1") - require.EqualError(t, err, "[kv:1062]Duplicate entry '4-2' for key 'idx'") + require.EqualError(t, err, "[kv:1062]Duplicate entry '4-2' for key 't.idx'") tk.MustQuery("select id,name from t order by id").Check(testkit.Rows("1 x", "3 x", "4 e", "5 g")) // Test insert ignore with duplicate tk.MustExec("insert ignore into t (id,name) values (1, 'b'), (5,'a'),(null,'y')") - tk.MustQuery("show warnings").Check(testkit.Rows("Warning 1062 Duplicate entry '1-2' for key 'idx'", "Warning 1062 Duplicate entry '5-2' for key 'idx'")) + tk.MustQuery("show warnings").Check(testkit.Rows("Warning 1062 Duplicate entry '1-2' for key 't.idx'", "Warning 1062 Duplicate entry '5-2' for key 't.idx'")) tk.MustQuery("select id,name from t partition(p0) order by id").Check(testkit.Rows("3 x", "5 g")) tk.MustQuery("select id,name from t partition(p1) order by id").Check(testkit.Rows("1 x")) tk.MustQuery("select id,name from t partition(p2) order by id").Check(testkit.Rows("4 e")) @@ -3315,7 +3315,7 @@ func TestWriteListPartitionTable2(t *testing.T) { tk.MustExec("update t set name='y' where id < 3") tk.MustQuery("select id,name from t order by id").Check(testkit.Rows("1 y", "2 y", "3 c")) // Test update meet duplicate error. - tk.MustGetErrMsg("update t set id=2 where id = 1", "[kv:1062]Duplicate entry '2-2' for key 'idx'") + tk.MustGetErrMsg("update t set id=2 where id = 1", "[kv:1062]Duplicate entry '2-2' for key 't.idx'") tk.MustQuery("select id,name from t order by id").Check(testkit.Rows("1 y", "2 y", "3 c")) // Test update multi-partitions @@ -3326,7 +3326,7 @@ func TestWriteListPartitionTable2(t *testing.T) { tk.MustExec("update t set id=id*10 where id in (1,2)") tk.MustQuery("select id,name from t order by id").Check(testkit.Rows("3 a", "10 a", "20 a")) // Test update meet duplicate error. - tk.MustGetErrMsg("update t set id=id+17 where id in (3,10)", "[kv:1062]Duplicate entry '20-2' for key 'idx'") + tk.MustGetErrMsg("update t set id=id+17 where id in (3,10)", "[kv:1062]Duplicate entry '20-2' for key 't.idx'") tk.MustQuery("select id,name from t order by id").Check(testkit.Rows("3 a", "10 a", "20 a")) // Test update meet no partition error. tk.MustGetErrMsg("update t set id=id*2 where id in (3,20)", "[table:1526]Table has no partition for value 40") @@ -3385,7 +3385,7 @@ func TestWriteListColumnsPartitionTable1(t *testing.T) { // Test add unique index failed. tk.MustExec("insert into t values (1, 'a'),(1,'b')") - tk.MustGetErrMsg("alter table t add unique index idx (id)", "[kv:1062]Duplicate entry '1' for key 'idx'") + tk.MustGetErrMsg("alter table t add unique index idx (id)", "[kv:1062]Duplicate entry '1' for key 't.idx'") // Test add unique index success. tk.MustExec("delete from t where name='b'") tk.MustExec("alter table t add unique index idx (id)") @@ -3409,11 +3409,11 @@ func TestWriteListColumnsPartitionTable1(t *testing.T) { tk.MustQuery("select * from t partition(p2) order by id").Check(testkit.Rows("4 e")) tk.MustQuery("select * from t partition(p3) order by id").Check(testkit.Rows()) // Test insert on duplicate error - tk.MustGetErrMsg("insert into t values (3, 'a'), (11,'x') on duplicate key update id=id+1", "[kv:1062]Duplicate entry '4' for key 'idx'") + tk.MustGetErrMsg("insert into t values (3, 'a'), (11,'x') on duplicate key update id=id+1", "[kv:1062]Duplicate entry '4' for key 't.idx'") tk.MustQuery("select * from t order by id").Check(testkit.Rows("1 x", "3 x", "4 e", "5 g")) // Test insert ignore with duplicate tk.MustExec("insert ignore into t values (1, 'b'), (5,'a'),(null,'y')") - tk.MustQuery("show warnings").Check(testkit.Rows("Warning 1062 Duplicate entry '1' for key 'idx'", "Warning 1062 Duplicate entry '5' for key 'idx'")) + tk.MustQuery("show warnings").Check(testkit.Rows("Warning 1062 Duplicate entry '1' for key 't.idx'", "Warning 1062 Duplicate entry '5' for key 't.idx'")) tk.MustQuery("select * from t partition(p0) order by id").Check(testkit.Rows("3 x", "5 g")) tk.MustQuery("select * from t partition(p1) order by id").Check(testkit.Rows("1 x")) tk.MustQuery("select * from t partition(p2) order by id").Check(testkit.Rows("4 e")) @@ -3436,7 +3436,7 @@ func TestWriteListColumnsPartitionTable1(t *testing.T) { tk.MustExec("update t set name='y' where id < 3") tk.MustQuery("select * from t order by id").Check(testkit.Rows("1 y", "2 y", "3 c")) // Test update meet duplicate error. - tk.MustGetErrMsg("update t set id=2 where id = 1", "[kv:1062]Duplicate entry '2' for key 'idx'") + tk.MustGetErrMsg("update t set id=2 where id = 1", "[kv:1062]Duplicate entry '2' for key 't.idx'") tk.MustQuery("select * from t order by id").Check(testkit.Rows("1 y", "2 y", "3 c")) // Test update multi-partitions @@ -3447,7 +3447,7 @@ func TestWriteListColumnsPartitionTable1(t *testing.T) { tk.MustExec("update t set id=id*10 where id in (1,2)") tk.MustQuery("select * from t order by id").Check(testkit.Rows("3 a", "10 a", "20 a")) // Test update meet duplicate error. - tk.MustGetErrMsg("update t set id=id+17 where id in (3,10)", "[kv:1062]Duplicate entry '20' for key 'idx'") + tk.MustGetErrMsg("update t set id=id+17 where id in (3,10)", "[kv:1062]Duplicate entry '20' for key 't.idx'") tk.MustQuery("select * from t order by id").Check(testkit.Rows("3 a", "10 a", "20 a")) // Test update meet no partition error. tk.MustGetErrMsg("update t set id=id*2 where id in (3,20)", "[table:1526]Table has no partition for value from column_list") @@ -3505,7 +3505,7 @@ func TestWriteListColumnsPartitionTable2(t *testing.T) { // Test add unique index failed. tk.MustExec("insert into t values ('w', 1, 1),('w', 1, 2)") err := tk.ExecToErr("alter table t add unique index idx (location,id)") - require.EqualError(t, err, "[kv:1062]Duplicate entry 'w-1' for key 'idx'") + require.EqualError(t, err, "[kv:1062]Duplicate entry 'w-1' for key 't.idx'") // Test add unique index success. tk.MustExec("delete from t where a=2") tk.MustExec("alter table t add unique index idx (location,id)") @@ -3531,11 +3531,11 @@ func TestWriteListColumnsPartitionTable2(t *testing.T) { tk.MustQuery("select * from t partition(p_west) order by id").Check(testkit.Rows()) // Test insert on duplicate error tk.MustExec("insert into t values ('w', 2, 2), ('w', 1, 1)") - tk.MustGetErrMsg("insert into t values ('w', 2, 3) on duplicate key update id=1", "[kv:1062]Duplicate entry 'w-1' for key 'idx'") + tk.MustGetErrMsg("insert into t values ('w', 2, 3) on duplicate key update id=1", "[kv:1062]Duplicate entry 'w-1' for key 't.idx'") tk.MustQuery("select * from t partition(p_west) order by id").Check(testkit.Rows("w 1 1", "w 2 2")) // Test insert ignore with duplicate tk.MustExec("insert ignore into t values ('w', 2, 2), ('w', 3, 3), ('n', 10, 10)") - tk.MustQuery("show warnings").Check(testkit.Rows("Warning 1062 Duplicate entry 'w-2' for key 'idx'")) + tk.MustQuery("show warnings").Check(testkit.Rows("Warning 1062 Duplicate entry 'w-2' for key 't.idx'")) tk.MustQuery("select * from t partition(p_west) order by id").Check(testkit.Rows("w 1 1", "w 2 2", "w 3 3")) tk.MustQuery("select * from t partition(p_north) order by id").Check(testkit.Rows("n 9 9", "n 10 10")) // Test insert ignore without duplicate @@ -3564,7 +3564,7 @@ func TestWriteListColumnsPartitionTable2(t *testing.T) { tk.MustQuery("select * from t partition(p_west) order by id,a").Check(testkit.Rows("w 1 5", "w 2 5", "w 3 6")) // Test update meet duplicate error. err = tk.ExecToErr("update t set id=id+1 where location='w' and id<2") - require.EqualError(t, err, "[kv:1062]Duplicate entry 'w-2' for key 'idx'") + require.EqualError(t, err, "[kv:1062]Duplicate entry 'w-2' for key 't.idx'") tk.MustQuery("select * from t partition(p_west) order by id,a").Check(testkit.Rows("w 1 5", "w 2 5", "w 3 6")) // Test update multi-partitions @@ -3582,7 +3582,7 @@ func TestWriteListColumnsPartitionTable2(t *testing.T) { tk.MustQuery("select * from t order by id").Check(testkit.Rows("w 1 4", "w 2 4", "e 8 9", "n 11 15")) // Test update meet duplicate error. err = tk.ExecToErr("update t set id=id+1 where location='w' and id in (1,2)") - require.EqualError(t, err, "[kv:1062]Duplicate entry 'w-2' for key 'idx'") + require.EqualError(t, err, "[kv:1062]Duplicate entry 'w-2' for key 't.idx'") tk.MustQuery("select * from t order by id").Check(testkit.Rows("w 1 4", "w 2 4", "e 8 9", "n 11 15")) // Test update meet no partition error. err = tk.ExecToErr("update t set id=id+3 where location='w' and id in (1,2)") @@ -4016,14 +4016,14 @@ func TestUpdate(t *testing.T) { require.NoError(t, err) require.Equal(t, tk.Session().LastMessage(), "Rows matched: 1 Changed: 0 Warnings: 1") r = tk.MustQuery("SHOW WARNINGS;") - r.Check(testkit.Rows("Warning 1062 Duplicate entry '1' for key 'PRIMARY'")) + r.Check(testkit.Rows("Warning 1062 Duplicate entry '1' for key 't.PRIMARY'")) tk.MustQuery("select * from t").Check(testkit.Rows("1", "2")) // test update ignore for truncate as warning err = tk.ExecToErr("update ignore t set a = 1 where a = (select '2a')") require.NoError(t, err) r = tk.MustQuery("SHOW WARNINGS;") - r.Check(testkit.Rows("Warning 1292 Truncated incorrect DOUBLE value: '2a'", "Warning 1292 Truncated incorrect DOUBLE value: '2a'", "Warning 1062 Duplicate entry '1' for key 'PRIMARY'")) + r.Check(testkit.Rows("Warning 1292 Truncated incorrect DOUBLE value: '2a'", "Warning 1292 Truncated incorrect DOUBLE value: '2a'", "Warning 1062 Duplicate entry '1' for key 't.PRIMARY'")) tk.MustExec("update ignore t set a = 42 where a = 2;") tk.MustQuery("select * from t").Check(testkit.Rows("1", "42")) @@ -4037,7 +4037,7 @@ func TestUpdate(t *testing.T) { require.NoError(t, err) require.Equal(t, tk.Session().LastMessage(), "Rows matched: 1 Changed: 0 Warnings: 1") r = tk.MustQuery("SHOW WARNINGS;") - r.Check(testkit.Rows("Warning 1062 Duplicate entry '1' for key 'I_uniq'")) + r.Check(testkit.Rows("Warning 1062 Duplicate entry '1' for key 't.I_uniq'")) tk.MustQuery("select * from t").Check(testkit.Rows("1", "2")) // test issue21965 diff --git a/expression/BUILD.bazel b/expression/BUILD.bazel index c98dcdb1ec483..032c44054dba2 100644 --- a/expression/BUILD.bazel +++ b/expression/BUILD.bazel @@ -52,6 +52,7 @@ go_library( "explain.go", "expr_to_pb.go", "expression.go", + "extension.go", "function_traits.go", "helper.go", "partition_pruner.go", @@ -66,6 +67,7 @@ go_library( deps = [ "//config", "//errno", + "//extension", "//kv", "//parser", "//parser/ast", @@ -97,6 +99,7 @@ go_library( "//util/parser", "//util/plancodec", "//util/printer", + "//util/sem", "//util/set", "//util/size", "//util/sqlexec", @@ -180,6 +183,7 @@ go_test( data = glob(["testdata/**"]), embed = [":expression"], flaky = True, + race = "on", shard_count = 50, deps = [ "//config", diff --git a/expression/aggregation/agg_to_pb.go b/expression/aggregation/agg_to_pb.go index 54fbce47df23a..1d90ab02fb253 100644 --- a/expression/aggregation/agg_to_pb.go +++ b/expression/aggregation/agg_to_pb.go @@ -15,6 +15,7 @@ package aggregation import ( + "context" "strconv" "github.com/pingcap/errors" @@ -130,7 +131,7 @@ func AggFuncToPBExpr(sctx sessionctx.Context, client kv.Client, aggFunc *AggFunc orderBy = append(orderBy, pbArg) } // encode GroupConcatMaxLen - GCMaxLen, err := sctx.GetSessionVars().GetSessionOrGlobalSystemVar(variable.GroupConcatMaxLen) + GCMaxLen, err := sctx.GetSessionVars().GetSessionOrGlobalSystemVar(context.Background(), variable.GroupConcatMaxLen) if err != nil { return nil, errors.Errorf("Error happened when buildGroupConcat: no system variable named '%s'", variable.GroupConcatMaxLen) } diff --git a/expression/aggregation/descriptor.go b/expression/aggregation/descriptor.go index e174108cbd9b4..2af7d4d49f348 100644 --- a/expression/aggregation/descriptor.go +++ b/expression/aggregation/descriptor.go @@ -16,6 +16,7 @@ package aggregation import ( "bytes" + "context" "fmt" "math" "strconv" @@ -229,7 +230,7 @@ func (a *AggFuncDesc) GetAggFunc(ctx sessionctx.Context) Aggregation { var s string var err error var maxLen uint64 - s, err = ctx.GetSessionVars().GetSessionOrGlobalSystemVar(variable.GroupConcatMaxLen) + s, err = ctx.GetSessionVars().GetSessionOrGlobalSystemVar(context.Background(), variable.GroupConcatMaxLen) if err != nil { panic(fmt.Sprintf("Error happened when GetAggFunc: no system variable named '%s'", variable.GroupConcatMaxLen)) } diff --git a/expression/aggregation/main_test.go b/expression/aggregation/main_test.go index deead25faaadc..11504899f250f 100644 --- a/expression/aggregation/main_test.go +++ b/expression/aggregation/main_test.go @@ -25,6 +25,7 @@ func TestMain(m *testing.M) { testsetup.SetupForCommonTest() opts := []goleak.Option{ goleak.IgnoreTopFunction("github.com/golang/glog.(*loggingT).flushDaemon"), + goleak.IgnoreTopFunction("github.com/lestrrat-go/httprc.runFetchWorker"), goleak.IgnoreTopFunction("go.etcd.io/etcd/client/pkg/v3/logutil.(*MergeLogger).outputLoop"), } goleak.VerifyTestMain(m, opts...) diff --git a/expression/builtin.go b/expression/builtin.go index a24d2ac737806..f10cf9aa3dfa9 100644 --- a/expression/builtin.go +++ b/expression/builtin.go @@ -883,6 +883,7 @@ var funcs = map[string]functionClass{ ast.JSONPretty: &jsonPrettyFunctionClass{baseFunctionClass{ast.JSONPretty, 1, 1}}, ast.JSONQuote: &jsonQuoteFunctionClass{baseFunctionClass{ast.JSONQuote, 1, 1}}, ast.JSONSearch: &jsonSearchFunctionClass{baseFunctionClass{ast.JSONSearch, 3, -1}}, + ast.JSONStorageFree: &jsonStorageFreeFunctionClass{baseFunctionClass{ast.JSONStorageFree, 1, 1}}, ast.JSONStorageSize: &jsonStorageSizeFunctionClass{baseFunctionClass{ast.JSONStorageSize, 1, 1}}, ast.JSONDepth: &jsonDepthFunctionClass{baseFunctionClass{ast.JSONDepth, 1, 1}}, ast.JSONKeys: &jsonKeysFunctionClass{baseFunctionClass{ast.JSONKeys, 1, 2}}, @@ -943,6 +944,13 @@ func GetBuiltinList() []string { } res = append(res, funcName) } + + extensionFuncs.Range(func(key, _ any) bool { + funcName := key.(string) + res = append(res, funcName) + return true + }) + slices.Sort(res) return res } @@ -980,8 +988,13 @@ func (b *baseBuiltinFunc) MemoryUsage() (sum int64) { return } - sum = emptyBaseBuiltinFunc + b.bufAllocator.MemoryUsage() + - b.tp.MemoryUsage() + int64(len(b.charset)+len(b.collation)) + sum = emptyBaseBuiltinFunc + int64(len(b.charset)+len(b.collation)) + if b.bufAllocator != nil { + sum += b.bufAllocator.MemoryUsage() + } + if b.tp != nil { + sum += b.tp.MemoryUsage() + } if b.childrenVectorizedOnce != nil { sum += onceSize } diff --git a/expression/builtin_control.go b/expression/builtin_control.go index de055b936505e..643e6cf89e29a 100644 --- a/expression/builtin_control.go +++ b/expression/builtin_control.go @@ -146,6 +146,11 @@ func InferType4ControlFuncs(ctx sessionctx.Context, funcName string, lexp, rexp } flen := maxlen(lhsFlen, rhsFlen) + resultFieldType.GetDecimal() + 1 // account for -1 len fields resultFieldType.SetFlenUnderLimit(flen) + } else if evalType == types.ETString { + lhsLen, rhsLen := lhs.GetFlen(), rhs.GetFlen() + if lhsLen != types.UnspecifiedLength && rhsLen != types.UnspecifiedLength { + resultFieldType.SetFlen(mathutil.Max(lhsLen, rhsLen)) + } } else { resultFieldType.SetFlen(maxlen(lhs.GetFlen(), rhs.GetFlen())) } diff --git a/expression/builtin_json.go b/expression/builtin_json.go index 97891152c82ee..e317fa88e952a 100644 --- a/expression/builtin_json.go +++ b/expression/builtin_json.go @@ -804,8 +804,8 @@ func (b *builtinJSONContainsSig) evalInt(row chunk.Row) (res int64, isNull bool, if err != nil { return res, true, err } - if pathExpr.ContainsAnyAsterisk() { - return res, true, types.ErrInvalidJSONPathWildcard + if pathExpr.CouldMatchMultipleValues() { + return res, true, types.ErrInvalidJSONPathMultipleSelection } var exists bool obj, exists = obj.Extract([]types.JSONPathExpression{pathExpr}) @@ -990,8 +990,8 @@ func (b *builtinJSONArrayAppendSig) appendJSONArray(res types.BinaryJSON, p stri if err != nil { return res, true, types.ErrInvalidJSONPath.GenWithStackByArgs(p) } - if pathExpr.ContainsAnyAsterisk() { - return res, true, types.ErrInvalidJSONPathWildcard.GenWithStackByArgs(p) + if pathExpr.CouldMatchMultipleValues() { + return res, true, types.ErrInvalidJSONPathMultipleSelection } obj, exists := res.Extract([]types.JSONPathExpression{pathExpr}) @@ -1071,8 +1071,8 @@ func (b *builtinJSONArrayInsertSig) evalJSON(row chunk.Row) (res types.BinaryJSO if err != nil { return res, true, types.ErrInvalidJSONPath.GenWithStackByArgs(s) } - if pathExpr.ContainsAnyAsterisk() { - return res, true, types.ErrInvalidJSONPathWildcard.GenWithStackByArgs(s) + if pathExpr.CouldMatchMultipleValues() { + return res, true, types.ErrInvalidJSONPathMultipleSelection } value, isnull, err := b.args[i+1].EvalJSON(b.ctx, row) @@ -1392,6 +1392,43 @@ func (b *builtinJSONSearchSig) evalJSON(row chunk.Row) (res types.BinaryJSON, is return obj.Search(containType, searchStr, escape, nil) } +type jsonStorageFreeFunctionClass struct { + baseFunctionClass +} + +type builtinJSONStorageFreeSig struct { + baseBuiltinFunc +} + +func (b *builtinJSONStorageFreeSig) Clone() builtinFunc { + newSig := &builtinJSONStorageFreeSig{} + newSig.cloneFrom(&b.baseBuiltinFunc) + return newSig +} + +func (c *jsonStorageFreeFunctionClass) getFunction(ctx sessionctx.Context, args []Expression) (builtinFunc, error) { + if err := c.verifyArgs(args); err != nil { + return nil, err + } + + bf, err := newBaseBuiltinFuncWithTp(ctx, c.funcName, args, types.ETInt, types.ETJson) + if err != nil { + return nil, err + } + sig := &builtinJSONStorageFreeSig{bf} + sig.setPbCode(tipb.ScalarFuncSig_JsonStorageFreeSig) + return sig, nil +} + +func (b *builtinJSONStorageFreeSig) evalInt(row chunk.Row) (res int64, isNull bool, err error) { + _, isNull, err = b.args[0].EvalJSON(b.ctx, row) + if isNull || err != nil { + return res, isNull, err + } + + return 0, false, nil +} + type jsonStorageSizeFunctionClass struct { baseFunctionClass } @@ -1459,6 +1496,10 @@ func (c *jsonDepthFunctionClass) getFunction(ctx sessionctx.Context, args []Expr } func (b *builtinJSONDepthSig) evalInt(row chunk.Row) (res int64, isNull bool, err error) { + // as TiDB doesn't support partial update json value, so only check the + // json format and whether it's NULL. For NULL return NULL, for invalid json, return + // an error, otherwise return 0 + obj, isNull, err := b.args[0].EvalJSON(b.ctx, row) if isNull || err != nil { return res, isNull, err @@ -1551,8 +1592,8 @@ func (b *builtinJSONKeys2ArgsSig) evalJSON(row chunk.Row) (res types.BinaryJSON, if err != nil { return res, true, err } - if pathExpr.ContainsAnyAsterisk() { - return res, true, types.ErrInvalidJSONPathWildcard + if pathExpr.CouldMatchMultipleValues() { + return res, true, types.ErrInvalidJSONPathMultipleSelection } res, exists := res.Extract([]types.JSONPathExpression{pathExpr}) @@ -1620,8 +1661,8 @@ func (b *builtinJSONLengthSig) evalInt(row chunk.Row) (res int64, isNull bool, e if err != nil { return res, true, err } - if pathExpr.ContainsAnyAsterisk() { - return res, true, types.ErrInvalidJSONPathWildcard + if pathExpr.CouldMatchMultipleValues() { + return res, true, types.ErrInvalidJSONPathMultipleSelection } var exists bool diff --git a/expression/builtin_json_test.go b/expression/builtin_json_test.go index 566122cfd3b48..3e142860fdd27 100644 --- a/expression/builtin_json_test.go +++ b/expression/builtin_json_test.go @@ -423,9 +423,9 @@ func TestJSONContains(t *testing.T) { {[]interface{}{`[{"a":1,"b":2}]`, `{"a":1}`}, 1, nil}, {[]interface{}{`[{"a":{"a":1},"b":2}]`, `{"a":1}`}, 0, nil}, // Tests path expression contains any asterisk - {[]interface{}{`{"a": [1, 2, {"aa": "xx"}]}`, `1`, "$.*"}, nil, types.ErrInvalidJSONPathWildcard}, - {[]interface{}{`{"a": [1, 2, {"aa": "xx"}]}`, `1`, "$[*]"}, nil, types.ErrInvalidJSONPathWildcard}, - {[]interface{}{`{"a": [1, 2, {"aa": "xx"}]}`, `1`, "$**.a"}, nil, types.ErrInvalidJSONPathWildcard}, + {[]interface{}{`{"a": [1, 2, {"aa": "xx"}]}`, `1`, "$.*"}, nil, types.ErrInvalidJSONPathMultipleSelection}, + {[]interface{}{`{"a": [1, 2, {"aa": "xx"}]}`, `1`, "$[*]"}, nil, types.ErrInvalidJSONPathMultipleSelection}, + {[]interface{}{`{"a": [1, 2, {"aa": "xx"}]}`, `1`, "$**.a"}, nil, types.ErrInvalidJSONPathMultipleSelection}, // Tests path expression does not identify a section of the target document {[]interface{}{`{"a": [1, 2, {"aa": "xx"}]}`, `1`, "$.c"}, nil, nil}, {[]interface{}{`{"a": [1, 2, {"aa": "xx"}]}`, `1`, "$.a[3]"}, nil, nil}, @@ -758,7 +758,7 @@ func TestJSONArrayAppend(t *testing.T) { {[]interface{}{`{"a": 1, "b": [2, 3], "c": 4}`, nil, nil}, nil, nil}, {[]interface{}{`{"a": 1, "b": [2, 3], "c": 4}`, `asdf`, nil}, nil, types.ErrInvalidJSONPath}, {[]interface{}{`{"a": 1, "b": [2, 3], "c": 4}`, 42, nil}, nil, types.ErrInvalidJSONPath}, - {[]interface{}{`{"a": 1, "b": [2, 3], "c": 4}`, `$.*`, nil}, nil, types.ErrInvalidJSONPathWildcard}, + {[]interface{}{`{"a": 1, "b": [2, 3], "c": 4}`, `$.*`, nil}, nil, types.ErrInvalidJSONPathMultipleSelection}, // Following tests come from MySQL doc. {[]interface{}{`["a", ["b", "c"], "d"]`, `$[1]`, 1}, `["a", ["b", "c", 1], "d"]`, nil}, {[]interface{}{`["a", ["b", "c"], "d"]`, `$[0]`, 2}, `[["a", 2], ["b", "c"], "d"]`, nil}, @@ -910,7 +910,7 @@ func TestJSONArrayInsert(t *testing.T) { {[]interface{}{`{"a": 1, "b": [2, 3], "c": 4}`, nil, nil}, nil, true, nil}, {[]interface{}{`{"a": 1, "b": [2, 3], "c": 4}`, `asdf`, nil}, nil, false, types.ErrInvalidJSONPath}, {[]interface{}{`{"a": 1, "b": [2, 3], "c": 4}`, 42, nil}, nil, false, types.ErrInvalidJSONPath}, - {[]interface{}{`{"a": 1, "b": [2, 3], "c": 4}`, `$.*`, nil}, nil, false, types.ErrInvalidJSONPathWildcard}, + {[]interface{}{`{"a": 1, "b": [2, 3], "c": 4}`, `$.*`, nil}, nil, false, types.ErrInvalidJSONPathMultipleSelection}, {[]interface{}{`{"a": 1, "b": [2, 3], "c": 4}`, `$.b[0]`, nil, `$.a`, nil}, nil, false, types.ErrInvalidJSONPathArrayCell}, {[]interface{}{`{"a": 1, "b": [2, 3], "c": 4}`, `$.a`, nil}, nil, false, types.ErrInvalidJSONPathArrayCell}, // Following tests come from MySQL doc. @@ -985,6 +985,49 @@ func TestJSONValid(t *testing.T) { } } +func TestJSONStorageFree(t *testing.T) { + ctx := createContext(t) + fc := funcs[ast.JSONStorageFree] + tbl := []struct { + input []interface{} + expected interface{} + success bool + }{ + // Tests scalar arguments + {[]interface{}{`null`}, 0, true}, + {[]interface{}{`true`}, 0, true}, + {[]interface{}{`1`}, 0, true}, + {[]interface{}{`"1"`}, 0, true}, + // Tests nil arguments + {[]interface{}{nil}, nil, true}, + // Tests valid json documents + {[]interface{}{`{}`}, 0, true}, + {[]interface{}{`{"a":1}`}, 0, true}, + {[]interface{}{`[{"a":{"a":1},"b":2}]`}, 0, true}, + {[]interface{}{`{"a": 1000, "b": "wxyz", "c": "[1, 3, 5, 7]"}`}, 0, true}, + // Tests invalid json documents + {[]interface{}{`[{"a":1]`}, 0, false}, + {[]interface{}{`[{a":1]`}, 0, false}, + } + for _, tt := range tbl { + args := types.MakeDatums(tt.input...) + f, err := fc.getFunction(ctx, datumsToConstants(args)) + require.NoError(t, err) + d, err := evalBuiltinFunc(f, chunk.Row{}) + if tt.success { + require.NoError(t, err) + + if tt.expected == nil { + require.True(t, d.IsNull()) + } else { + require.Equal(t, int64(tt.expected.(int)), d.GetInt64()) + } + } else { + require.Error(t, err) + } + } +} + func TestJSONStorageSize(t *testing.T) { ctx := createContext(t) fc := funcs[ast.JSONStorageSize] diff --git a/expression/builtin_json_vec.go b/expression/builtin_json_vec.go index 7c6d9e5f519f8..fb24808ff2c73 100644 --- a/expression/builtin_json_vec.go +++ b/expression/builtin_json_vec.go @@ -103,6 +103,33 @@ func vecJSONModify(ctx sessionctx.Context, args []Expression, bufAllocator colum return nil } +func (b *builtinJSONStorageFreeSig) vectorized() bool { + return true +} + +func (b *builtinJSONStorageFreeSig) vecEvalInt(input *chunk.Chunk, result *chunk.Column) error { + n := input.NumRows() + buf, err := b.bufAllocator.get() + if err != nil { + return err + } + defer b.bufAllocator.put(buf) + if err := b.args[0].VecEvalJSON(b.ctx, input, buf); err != nil { + return err + } + result.ResizeInt64(n, false) + result.MergeNulls(buf) + int64s := result.Int64s() + for i := 0; i < n; i++ { + if result.IsNull(i) { + continue + } + + int64s[i] = 0 + } + return nil +} + func (b *builtinJSONStorageSizeSig) vectorized() bool { return true } @@ -299,8 +326,8 @@ func (b *builtinJSONContainsSig) vecEvalInt(input *chunk.Chunk, result *chunk.Co if err != nil { return err } - if pathExpr.ContainsAnyAsterisk() { - return types.ErrInvalidJSONPathWildcard + if pathExpr.CouldMatchMultipleValues() { + return types.ErrInvalidJSONPathMultipleSelection } obj, exists := objCol.GetJSON(i).Extract([]types.JSONPathExpression{pathExpr}) @@ -607,8 +634,8 @@ func (b *builtinJSONArrayInsertSig) vecEvalJSON(input *chunk.Chunk, result *chun if err != nil { return types.ErrInvalidJSONPath.GenWithStackByArgs(pathBufs[j].GetString(i)) } - if pathExpr.ContainsAnyAsterisk() { - return types.ErrInvalidJSONPathWildcard.GenWithStackByArgs(pathBufs[j].GetString(i)) + if pathExpr.CouldMatchMultipleValues() { + return types.ErrInvalidJSONPathMultipleSelection } if valueBufs[j].IsNull(i) { value = types.CreateBinaryJSON(nil) @@ -663,8 +690,8 @@ func (b *builtinJSONKeys2ArgsSig) vecEvalJSON(input *chunk.Chunk, result *chunk. if err != nil { return err } - if pathExpr.ContainsAnyAsterisk() { - return types.ErrInvalidJSONPathWildcard + if pathExpr.CouldMatchMultipleValues() { + return types.ErrInvalidJSONPathMultipleSelection } jsonItem := jsonBuf.GetJSON(i) @@ -732,8 +759,8 @@ func (b *builtinJSONLengthSig) vecEvalInt(input *chunk.Chunk, result *chunk.Colu if err != nil { return err } - if pathExpr.ContainsAnyAsterisk() { - return types.ErrInvalidJSONPathWildcard + if pathExpr.CouldMatchMultipleValues() { + return types.ErrInvalidJSONPathMultipleSelection } obj, exists := jsonItem.Extract([]types.JSONPathExpression{pathExpr}) diff --git a/expression/builtin_math.go b/expression/builtin_math.go index 7cdff524fe110..35914aa21cd94 100644 --- a/expression/builtin_math.go +++ b/expression/builtin_math.go @@ -1255,7 +1255,7 @@ func (b *builtinConvSig) conv(str string, fromBase, toBase int64) (res string, i val, err := strconv.ParseUint(str, int(fromBase), 64) if err != nil { - return res, false, types.ErrOverflow.GenWithStackByArgs("BIGINT UNSINGED", str) + return res, false, types.ErrOverflow.GenWithStackByArgs("BIGINT UNSIGNED", str) } if signed { if negative && val > -math.MinInt64 { diff --git a/expression/builtin_time.go b/expression/builtin_time.go index e6bc7fe57371b..83f18d1c1653a 100644 --- a/expression/builtin_time.go +++ b/expression/builtin_time.go @@ -19,6 +19,7 @@ package expression import ( + "context" "fmt" "math" "regexp" @@ -6643,7 +6644,7 @@ func (b *builtinTiDBCurrentTsoSig) Clone() builtinFunc { // evalInt evals currentTSO(). func (b *builtinTiDBCurrentTsoSig) evalInt(row chunk.Row) (d int64, isNull bool, err error) { - tso, _ := b.ctx.GetSessionVars().GetSessionOrGlobalSystemVar("tidb_current_ts") + tso, _ := b.ctx.GetSessionVars().GetSessionOrGlobalSystemVar(context.Background(), "tidb_current_ts") itso, _ := strconv.ParseInt(tso, 10, 64) return itso, false, nil } diff --git a/expression/builtin_time_test.go b/expression/builtin_time_test.go index fe33a92e2a99a..55973f9dab5f8 100644 --- a/expression/builtin_time_test.go +++ b/expression/builtin_time_test.go @@ -15,6 +15,7 @@ package expression import ( + "context" "fmt" "math" "strconv" @@ -3112,7 +3113,7 @@ func TestCurrentTso(t *testing.T) { v, err := evalBuiltinFunc(f, chunk.Row{}) require.NoError(t, err) n := v.GetInt64() - tso, _ := ctx.GetSessionVars().GetSessionOrGlobalSystemVar("tidb_current_ts") + tso, _ := ctx.GetSessionVars().GetSessionOrGlobalSystemVar(context.Background(), "tidb_current_ts") itso, _ := strconv.ParseInt(tso, 10, 64) require.Equal(t, itso, n, v.Kind()) } diff --git a/expression/column.go b/expression/column.go index 1ea8a319aadb3..abeca17409ce9 100644 --- a/expression/column.go +++ b/expression/column.go @@ -767,9 +767,11 @@ func (col *Column) MemoryUsage() (sum int64) { return } - sum = emptyColumnSize + col.RetType.MemoryUsage() + int64(cap(col.hashcode)) + - int64(len(col.OrigName)+len(col.charset)+len(col.collation)) + sum = emptyColumnSize + int64(cap(col.hashcode)) + int64(len(col.OrigName)+len(col.charset)+len(col.collation)) + if col.RetType != nil { + sum += col.RetType.MemoryUsage() + } if col.VirtualExpr != nil { sum += col.VirtualExpr.MemoryUsage() } diff --git a/expression/constant.go b/expression/constant.go index 9e2a1cfa14947..db9f94147f38a 100644 --- a/expression/constant.go +++ b/expression/constant.go @@ -464,6 +464,9 @@ func (c *Constant) MemoryUsage() (sum int64) { return } - sum = emptyConstantSize + c.RetType.MemoryUsage() + c.Value.MemUsage() + int64(cap(c.hashcode)) + sum = emptyConstantSize + c.Value.MemUsage() + int64(cap(c.hashcode)) + if c.RetType != nil { + sum += c.RetType.MemoryUsage() + } return } diff --git a/expression/constant_propagation_test.go b/expression/constant_propagation_test.go index 9c10d9ddd982b..d2ebfdef4080d 100644 --- a/expression/constant_propagation_test.go +++ b/expression/constant_propagation_test.go @@ -27,6 +27,7 @@ func TestOuterJoinPropConst(t *testing.T) { tk := testkit.NewTestKit(t, store) tk.MustExec("use test") + tk.MustExec("set tidb_cost_model_version=2") tk.MustExec("drop table if exists t1, t2;") tk.MustExec("create table t1(id bigint primary key, a int, b int);") tk.MustExec("create table t2(id bigint primary key, a int, b int);") diff --git a/expression/expression.go b/expression/expression.go index e4b8ae764a2bd..fefa1c403c959 100644 --- a/expression/expression.go +++ b/expression/expression.go @@ -858,45 +858,46 @@ func evaluateExprWithNullInNullRejectCheck(ctx sessionctx.Context, schema *Schem for i, arg := range x.GetArgs() { args[i], nullFromSets[i] = evaluateExprWithNullInNullRejectCheck(ctx, schema, arg) } - - // allNullFromSet indicates whether all arguments are Null Constant and the Null Constant is affected by the column of the schema. - allNullFromSet := true + allArgsNullFromSet := true for i := range args { if cons, ok := args[i].(*Constant); ok && cons.Value.IsNull() && !nullFromSets[i] { - allNullFromSet = false + allArgsNullFromSet = false break } } - // allArgsNullFromSet indicates whether all Null Constant are affected by the column of the schema - allArgsNullFromSet := true - for i := range args { - if cons, ok := args[i].(*Constant); ok && cons.Value.IsNull() && nullFromSets[i] { - continue - } - allArgsNullFromSet = false - } - - // If all the args are Null Constant and affected by the column schema, then we should keep it. + // If one of the args of `AND` and `OR` are Null Constant from the column schema, and the another argument is Constant, then we should keep it. // Otherwise, we shouldn't let Null Constant which affected by the column schema participate in computing in `And` and `OR` - // due to the result of `AND` and `OR are uncertain if one of the arguments is NULL. - if !allArgsNullFromSet { - for i := range args { - if cons, ok := args[i].(*Constant); ok && cons.Value.IsNull() && nullFromSets[i] { - if x.FuncName.L == ast.LogicAnd { - args[i] = NewOne() - } - if x.FuncName.L == ast.LogicOr { - args[i] = NewZero() + // due to the result of `AND` and `OR` are uncertain if one of the arguments is NULL. + if x.FuncName.L == ast.LogicAnd || x.FuncName.L == ast.LogicOr { + hasNonConstantArg := false + for _, arg := range args { + if _, ok := arg.(*Constant); !ok { + hasNonConstantArg = true + break + } + } + if hasNonConstantArg { + for i := range args { + if cons, ok := args[i].(*Constant); ok && cons.Value.IsNull() && nullFromSets[i] { + if x.FuncName.L == ast.LogicAnd { + args[i] = NewOne() + break + } + if x.FuncName.L == ast.LogicOr { + args[i] = NewZero() + break + } } } } } + c := NewFunctionInternal(ctx, x.FuncName.L, x.RetType.Clone(), args...) cons, ok := c.(*Constant) // If the return expr is Null Constant, and all the Null Constant arguments are affected by column schema, // then we think the result Null Constant is also affected by the column schema - return c, ok && cons.Value.IsNull() && allNullFromSet + return c, ok && cons.Value.IsNull() && allArgsNullFromSet case *Column: if !schema.Contains(x) { return x, false diff --git a/expression/extension.go b/expression/extension.go new file mode 100644 index 0000000000000..2fca7fdfab6d9 --- /dev/null +++ b/expression/extension.go @@ -0,0 +1,207 @@ +// Copyright 2022 PingCAP, Inc. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +package expression + +import ( + "context" + "strings" + "sync" + + "github.com/pingcap/errors" + "github.com/pingcap/tidb/extension" + "github.com/pingcap/tidb/parser/auth" + "github.com/pingcap/tidb/parser/mysql" + "github.com/pingcap/tidb/privilege" + "github.com/pingcap/tidb/sessionctx" + "github.com/pingcap/tidb/sessionctx/variable" + "github.com/pingcap/tidb/types" + "github.com/pingcap/tidb/util/chunk" + "github.com/pingcap/tidb/util/sem" +) + +var extensionFuncs sync.Map + +func registerExtensionFunc(def *extension.FunctionDef) error { + if def == nil { + return errors.New("extension function def is nil") + } + + if err := def.Validate(); err != nil { + return err + } + + lowerName := strings.ToLower(def.Name) + if _, ok := funcs[lowerName]; ok { + return errors.Errorf("extension function name '%s' conflict with builtin", def.Name) + } + + class, err := newExtensionFuncClass(def) + if err != nil { + return err + } + + _, exist := extensionFuncs.LoadOrStore(lowerName, class) + if exist { + return errors.Errorf("duplicated extension function name '%s'", def.Name) + } + + return nil +} + +func removeExtensionFunc(name string) { + extensionFuncs.Delete(name) +} + +type extensionFuncClass struct { + baseFunctionClass + funcDef extension.FunctionDef + flen int +} + +func newExtensionFuncClass(def *extension.FunctionDef) (*extensionFuncClass, error) { + var flen int + switch def.EvalTp { + case types.ETString: + flen = mysql.MaxFieldVarCharLength + if def.EvalStringFunc == nil { + return nil, errors.New("eval function is nil") + } + case types.ETInt: + flen = mysql.MaxIntWidth + if def.EvalIntFunc == nil { + return nil, errors.New("eval function is nil") + } + default: + return nil, errors.Errorf("unsupported extension function ret type: '%v'", def.EvalTp) + } + + maxArgs := len(def.ArgTps) + minArgs := maxArgs - def.OptionalArgsLen + return &extensionFuncClass{ + baseFunctionClass: baseFunctionClass{def.Name, minArgs, maxArgs}, + flen: flen, + funcDef: *def, + }, nil +} + +func (c *extensionFuncClass) getFunction(ctx sessionctx.Context, args []Expression) (builtinFunc, error) { + if err := c.checkPrivileges(ctx); err != nil { + return nil, err + } + + if err := c.verifyArgs(args); err != nil { + return nil, err + } + bf, err := newBaseBuiltinFuncWithTp(ctx, c.funcName, args, c.funcDef.EvalTp, c.funcDef.ArgTps[:len(args)]...) + if err != nil { + return nil, err + } + bf.tp.SetFlen(c.flen) + sig := &extensionFuncSig{context.TODO(), bf, c.funcDef} + return sig, nil +} + +func (c *extensionFuncClass) checkPrivileges(ctx sessionctx.Context) error { + privs := c.funcDef.RequireDynamicPrivileges + if semPrivs := c.funcDef.SemRequireDynamicPrivileges; len(semPrivs) > 0 && sem.IsEnabled() { + privs = semPrivs + } + + if len(privs) == 0 { + return nil + } + + manager := privilege.GetPrivilegeManager(ctx) + activeRoles := ctx.GetSessionVars().ActiveRoles + + for _, priv := range privs { + if !manager.RequestDynamicVerification(activeRoles, priv, false) { + msg := priv + if !sem.IsEnabled() { + msg = "SUPER or " + msg + } + return errSpecificAccessDenied.GenWithStackByArgs(msg) + } + } + + return nil +} + +var _ extension.FunctionContext = &extensionFuncSig{} + +type extensionFuncSig struct { + context.Context + baseBuiltinFunc + extension.FunctionDef +} + +func (b *extensionFuncSig) Clone() builtinFunc { + newSig := &extensionFuncSig{} + newSig.cloneFrom(&b.baseBuiltinFunc) + newSig.FunctionDef = b.FunctionDef + return newSig +} + +func (b *extensionFuncSig) evalString(row chunk.Row) (string, bool, error) { + if b.EvalTp == types.ETString { + return b.EvalStringFunc(b, row) + } + return b.baseBuiltinFunc.evalString(row) +} + +func (b *extensionFuncSig) evalInt(row chunk.Row) (int64, bool, error) { + if b.EvalTp == types.ETInt { + return b.EvalIntFunc(b, row) + } + return b.baseBuiltinFunc.evalInt(row) +} + +func (b *extensionFuncSig) EvalArgs(row chunk.Row) ([]types.Datum, error) { + if len(b.args) == 0 { + return nil, nil + } + + result := make([]types.Datum, 0, len(b.args)) + for _, arg := range b.args { + val, err := arg.Eval(row) + if err != nil { + return nil, err + } + result = append(result, val) + } + + return result, nil +} + +func (b *extensionFuncSig) ConnectionInfo() *variable.ConnectionInfo { + return b.ctx.GetSessionVars().ConnectionInfo +} + +func (b *extensionFuncSig) User() *auth.UserIdentity { + return b.ctx.GetSessionVars().User +} + +func (b *extensionFuncSig) ActiveRoles() []*auth.RoleIdentity { + return b.ctx.GetSessionVars().ActiveRoles +} + +func (b *extensionFuncSig) CurrentDB() string { + return b.ctx.GetSessionVars().CurrentDB +} + +func init() { + extension.RegisterExtensionFunc = registerExtensionFunc + extension.RemoveExtensionFunc = removeExtensionFunc +} diff --git a/expression/helper.go b/expression/helper.go index 6e235d1abcc96..c9534be9493ff 100644 --- a/expression/helper.go +++ b/expression/helper.go @@ -15,6 +15,7 @@ package expression import ( + "context" "math" "strings" "time" @@ -164,7 +165,7 @@ func getStmtTimestamp(ctx sessionctx.Context) (time.Time, error) { } sessionVars := ctx.GetSessionVars() - timestampStr, err := sessionVars.GetSessionOrGlobalSystemVar("timestamp") + timestampStr, err := sessionVars.GetSessionOrGlobalSystemVar(context.Background(), "timestamp") if err != nil { return now, err } diff --git a/expression/integration_serial_test.go b/expression/integration_serial_test.go index 48d85d813f205..a497d9ef54600 100644 --- a/expression/integration_serial_test.go +++ b/expression/integration_serial_test.go @@ -3795,10 +3795,11 @@ func TestPreparePlanCacheOnCachedTable(t *testing.T) { tk := testkit.NewTestKit(t, store) tk.MustExec("set tidb_enable_prepared_plan_cache=ON") + tk.Session() var err error se, err := session.CreateSession4TestWithOpt(store, &session.Opt{ - PreparedPlanCache: plannercore.NewLRUPlanCache(100, 0.1, math.MaxUint64, plannercore.PickPlanFromBucket), + PreparedPlanCache: plannercore.NewLRUPlanCache(100, 0.1, math.MaxUint64, plannercore.PickPlanFromBucket, tk.Session()), }) require.NoError(t, err) tk.SetSession(se) diff --git a/expression/integration_test.go b/expression/integration_test.go index 5c47118c1ca46..d3b307fb9653b 100644 --- a/expression/integration_test.go +++ b/expression/integration_test.go @@ -2852,7 +2852,7 @@ func TestFilterExtractFromDNF(t *testing.T) { require.NoError(t, err, "error %v, for expr %s", err, tt.exprStr) require.Len(t, stmts, 1) ret := &plannercore.PreprocessorReturn{} - err = plannercore.Preprocess(sctx, stmts[0], plannercore.WithPreprocessorReturn(ret)) + err = plannercore.Preprocess(context.Background(), sctx, stmts[0], plannercore.WithPreprocessorReturn(ret)) require.NoError(t, err, "error %v, for resolve name, expr %s", err, tt.exprStr) p, _, err := plannercore.BuildLogicalPlanForTest(ctx, sctx, stmts[0], ret.InfoSchema) require.NoError(t, err, "error %v, for build plan, expr %s", err, tt.exprStr) @@ -7755,3 +7755,64 @@ func TestFix38127(t *testing.T) { tk.MustQuery("select from_unixtime(dou, '%Y-%m-%d') from t").Check(testkit.Rows("")) tk.MustQuery("select from_unixtime(varc, '%Y-%m-%d') from t").Check(testkit.Rows("")) } + +func TestJSONStorageFree(t *testing.T) { + store := testkit.CreateMockStore(t) + tk := testkit.NewTestKit(t, store) + tk.MustExec("use test") + tk.MustQuery("select json_storage_free(NULL)").Check(testkit.Rows("")) + tk.MustQuery("select json_storage_free('{}')").Check(testkit.Rows("0")) + tk.MustQuery("select json_storage_free('1')").Check(testkit.Rows("0")) + tk.MustQuery(`select json_storage_free('{"a": "b"}')`).Check(testkit.Rows("0")) + err := tk.ExecToErr(`select json_storage_free('{"c":["a","b"]`) + require.Error(t, err, "[json:3140]Invalid JSON text: The document root must not be followed by other values.") +} + +func TestIssue38736(t *testing.T) { + store := testkit.CreateMockStore(t) + tk := testkit.NewTestKit(t, store) + tk.MustExec("use test") + tk.MustExec("CREATE TABLE t0(c0 BOOL, c1 INT);") + tk.MustExec("CREATE TABLE t1 LIKE t0;") + tk.MustExec("CREATE definer='root'@'localhost' VIEW v0(c0) AS SELECT IS_IPV4(t0.c1) FROM t0, t1;") + tk.MustExec("INSERT INTO t0(c0, c1) VALUES (true, 0);") + tk.MustExec("INSERT INTO t1(c0, c1) VALUES (true, 2);") + + // The filter is evaled as false. + tk.MustQuery("SELECT v0.c0 FROM v0 WHERE (v0.c0)NOT LIKE(BINARY v0.c0);").Check(testkit.Rows()) + + // Also the filter is evaled as false. + tk.MustQuery("SELECT v0.c0 FROM v0 WHERE (v0.c0)NOT LIKE(BINARY v0.c0) or v0.c0 > 0").Check(testkit.Rows()) +} + +func TestJSONExtractFromLast(t *testing.T) { + store := testkit.CreateMockStore(t) + tk := testkit.NewTestKit(t, store) + tk.MustExec("use test") + tk.MustQuery(`select json_extract('[{"a": [1,2,3,4]}]', '$[0] . a[last]')`).Check(testkit.Rows("4")) + tk.MustQuery(`select json_extract('[{"a": [1,2,3,4]}]', '$[0] . a [last - 1]')`).Check(testkit.Rows("3")) + tk.MustQuery(`select json_extract('[{"a": [1,2,3,4]}]', '$[0].a [last - 100]')`).Check(testkit.Rows("")) +} + +func TestJSONExtractRange(t *testing.T) { + store := testkit.CreateMockStore(t) + tk := testkit.NewTestKit(t, store) + tk.MustExec("use test") + tk.MustQuery(`select json_extract('[{"a": [1,2,3,4]}]', '$[0].a[1 to last]')`).Check(testkit.Rows("[2, 3, 4]")) + tk.MustQuery(`select json_extract('[{"a": [1,2,3,4]}]', '$[0].a[1 to last - 1]')`).Check(testkit.Rows("[2, 3]")) + tk.MustQuery(`select json_extract('[{"a": [1,2,3,4]}]', '$[0].a[1 to last - 100]')`).Check(testkit.Rows("")) + tk.MustQuery(`select json_extract('[{"a": [1,2,3,4]}]', '$[0].a[1 to 100]')`).Check(testkit.Rows("[2, 3, 4]")) + tk.MustQuery(`select json_extract('[{"a": [1,2,3,4]}]', '$[0].a[0 to last]')`).Check(testkit.Rows("[1, 2, 3, 4]")) + tk.MustQuery(`select json_extract('[{"a": [1,2,3,4]}]', '$[0].a[0 to 2]')`).Check(testkit.Rows("[1, 2, 3]")) +} + +func TestIfNullParamMarker(t *testing.T) { + store := testkit.CreateMockStore(t) + tk := testkit.NewTestKit(t, store) + tk.MustExec("use test") + tk.MustExec("create table t (c1 varchar(100), c2 varchar(128));") + tk.MustExec(`prepare pr1 from "insert into t values(ifnull(?,' '),ifnull(?,' '))";`) + tk.MustExec(`set @a='1',@b=repeat('x', 80);`) + // Should not report 'Data too long for column' error. + tk.MustExec(`execute pr1 using @a,@b;`) +} diff --git a/expression/main_test.go b/expression/main_test.go index 55af0163dc0fd..1875fcaf9869d 100644 --- a/expression/main_test.go +++ b/expression/main_test.go @@ -53,7 +53,9 @@ func TestMain(m *testing.M) { opts := []goleak.Option{ goleak.IgnoreTopFunction("github.com/golang/glog.(*loggingT).flushDaemon"), + goleak.IgnoreTopFunction("github.com/lestrrat-go/httprc.runFetchWorker"), goleak.IgnoreTopFunction("go.etcd.io/etcd/client/pkg/v3/logutil.(*MergeLogger).outputLoop"), + goleak.IgnoreTopFunction("go.opencensus.io/stats/view.(*worker).start"), } callback := func(i int) int { diff --git a/expression/scalar_function.go b/expression/scalar_function.go index 2483d342b662b..131e018fba550 100644 --- a/expression/scalar_function.go +++ b/expression/scalar_function.go @@ -193,6 +193,13 @@ func newFunctionImpl(ctx sessionctx.Context, fold int, funcName string, retType } } fc, ok := funcs[funcName] + if !ok { + if extFunc, exist := extensionFuncs.Load(funcName); exist { + fc = extFunc.(functionClass) + ok = true + } + } + if !ok { db := ctx.GetSessionVars().CurrentDB if db == "" { @@ -618,7 +625,12 @@ func (sf *ScalarFunction) MemoryUsage() (sum int64) { return } - sum = emptyScalarFunctionSize + int64(len(sf.FuncName.L)+len(sf.FuncName.O)) + sf.RetType.MemoryUsage() + - int64(cap(sf.hashcode)) + sf.Function.MemoryUsage() + sum = emptyScalarFunctionSize + int64(len(sf.FuncName.L)+len(sf.FuncName.O)) + int64(cap(sf.hashcode)) + if sf.RetType != nil { + sum += sf.RetType.MemoryUsage() + } + if sf.Function != nil { + sum += sf.Function.MemoryUsage() + } return sum } diff --git a/expression/testdata/expression_suite_out.json b/expression/testdata/expression_suite_out.json index 7047b62ba1156..164ccd7f50311 100644 --- a/expression/testdata/expression_suite_out.json +++ b/expression/testdata/expression_suite_out.json @@ -65,11 +65,11 @@ "Result": [ "HashJoin 4166.67 root right outer join, equal:[eq(test.t1.a, test.t2.a)]", "├─TableReader(Build) 3333.33 root data:Selection", - "│ └─Selection 3333.33 cop[tikv] gt(test.t1.a, 1), not(isnull(test.t1.a))", - "│ └─TableFullScan 10000.00 cop[tikv] table:t1 keep order:false, stats:pseudo", + "│ └─Selection 3333.33 cop[tikv] gt(test.t2.a, 1)", + "│ └─TableFullScan 10000.00 cop[tikv] table:t2 keep order:false, stats:pseudo", "└─TableReader(Probe) 3333.33 root data:Selection", - " └─Selection 3333.33 cop[tikv] gt(test.t2.a, 1)", - " └─TableFullScan 10000.00 cop[tikv] table:t2 keep order:false, stats:pseudo" + " └─Selection 3333.33 cop[tikv] gt(test.t1.a, 1), not(isnull(test.t1.a))", + " └─TableFullScan 10000.00 cop[tikv] table:t1 keep order:false, stats:pseudo" ] }, { diff --git a/expression/typeinfer_test.go b/expression/typeinfer_test.go index b2554c4f3d548..28f71099e9c46 100644 --- a/expression/typeinfer_test.go +++ b/expression/typeinfer_test.go @@ -126,7 +126,7 @@ func TestInferType(t *testing.T) { require.NoError(t, err) ret := &plannercore.PreprocessorReturn{} - err = plannercore.Preprocess(sctx, stmt, plannercore.WithPreprocessorReturn(ret)) + err = plannercore.Preprocess(context.Background(), sctx, stmt, plannercore.WithPreprocessorReturn(ret)) require.NoError(t, err, comment) p, _, err := plannercore.BuildLogicalPlanForTest(ctx, sctx, stmt, ret.InfoSchema) require.NoError(t, err, comment) diff --git a/expression/util.go b/expression/util.go index 72f512038f162..22637d1b8617f 100644 --- a/expression/util.go +++ b/expression/util.go @@ -58,7 +58,7 @@ func (c *cowExprRef) Set(i int, changed bool, val Expression) { return } c.new = make([]Expression, len(c.ref)) - copy(c.new, c.ref[:i]) + copy(c.new, c.ref) c.new[i] = val } @@ -382,17 +382,6 @@ func SetExprColumnInOperand(expr Expression) Expression { return expr } -// ColumnSubstitute4PPD substitutes the columns in filter to expressions in select fields. -// Only used for predicate push down to projection. Some columns can not be substituted for some reasons. -// So we should return the bool value to indicate some expressions can not be pushed down. -// e.g. CREATE TABLE t3(c0 INT, primary key(c0)); -// SELECT v2.c0 FROM (select 1 as c0 from t3) v2 WHERE (v2.c0)like(True); -// The cond `(v2.c0)like(True)` can not be substituted when the new collation enable. So we shouldn't push the cond down to the projection. -func ColumnSubstitute4PPD(expr Expression, schema *Schema, newExprs []Expression) (bool, Expression) { - substituted, _, resExpr := ColumnSubstituteImpl(expr, schema, newExprs, false) - return substituted, resExpr -} - // ColumnSubstitute substitutes the columns in filter to expressions in select fields. // e.g. select * from (select b as a from t) k where a < 10 => select * from (select b as a from t where b < 10) k. func ColumnSubstitute(expr Expression, schema *Schema, newExprs []Expression) Expression { @@ -432,41 +421,43 @@ func ColumnSubstituteImpl(expr Expression, schema *Schema, newExprs []Expression substituted := false hasFail := false if v.FuncName.L == ast.Cast { - newFunc := v.Clone().(*ScalarFunction) - substituted, hasFail, newFunc.GetArgs()[0] = ColumnSubstituteImpl(newFunc.GetArgs()[0], schema, newExprs, fail1Return) + var newArg Expression + substituted, hasFail, newArg = ColumnSubstituteImpl(v.GetArgs()[0], schema, newExprs, fail1Return) if fail1Return && hasFail { - return substituted, hasFail, newFunc + return substituted, hasFail, v } if substituted { - // Workaround for issue https://github.com/pingcap/tidb/issues/28804 - e := NewFunctionInternal(v.GetCtx(), v.FuncName.L, v.RetType, newFunc.GetArgs()...) + e := BuildCastFunction(v.GetCtx(), newArg, v.RetType) e.SetCoercibility(v.Coercibility()) return true, false, e } - return false, false, newFunc + return false, false, v } // cowExprRef is a copy-on-write util, args array allocation happens only // when expr in args is changed refExprArr := cowExprRef{v.GetArgs(), nil} _, coll := DeriveCollationFromExprs(v.GetCtx(), v.GetArgs()...) + var tmpArgForCollCheck []Expression + if collate.NewCollationEnabled() { + tmpArgForCollCheck = make([]Expression, len(v.GetArgs())) + } for idx, arg := range v.GetArgs() { - changed, hasFail, newFuncExpr := ColumnSubstituteImpl(arg, schema, newExprs, fail1Return) - if fail1Return && hasFail { - return changed, hasFail, v + changed, failed, newFuncExpr := ColumnSubstituteImpl(arg, schema, newExprs, fail1Return) + if fail1Return && failed { + return changed, failed, v } oldChanged := changed - if collate.NewCollationEnabled() { + if collate.NewCollationEnabled() && changed { // Make sure the collation used by the ScalarFunction isn't changed and its result collation is not weaker than the collation used by the ScalarFunction. - if changed { - changed = false - tmpArgs := make([]Expression, 0, len(v.GetArgs())) - _ = append(append(append(tmpArgs, refExprArr.Result()[0:idx]...), refExprArr.Result()[idx+1:]...), newFuncExpr) - _, newColl := DeriveCollationFromExprs(v.GetCtx(), append(v.GetArgs(), newFuncExpr)...) - if coll == newColl { - changed = checkCollationStrictness(coll, newFuncExpr.GetType().GetCollate()) - } + changed = false + copy(tmpArgForCollCheck, refExprArr.Result()) + tmpArgForCollCheck[idx] = newFuncExpr + _, newColl := DeriveCollationFromExprs(v.GetCtx(), tmpArgForCollCheck...) + if coll == newColl { + changed = checkCollationStrictness(coll, newFuncExpr.GetType().GetCollate()) } } + hasFail = hasFail || failed || oldChanged != changed if fail1Return && oldChanged != changed { // Only when the oldChanged is true and changed is false, we will get here. // And this means there some dependency in this arg can be substituted with @@ -481,7 +472,7 @@ func ColumnSubstituteImpl(expr Expression, schema *Schema, newExprs []Expression } } if substituted { - return true, false, NewFunctionInternal(v.GetCtx(), v.FuncName.L, v.RetType, refExprArr.Result()...) + return true, hasFail, NewFunctionInternal(v.GetCtx(), v.FuncName.L, v.RetType, refExprArr.Result()...) } } return false, false, expr diff --git a/extension/BUILD.bazel b/extension/BUILD.bazel new file mode 100644 index 0000000000000..67b3351e012a4 --- /dev/null +++ b/extension/BUILD.bazel @@ -0,0 +1,59 @@ +load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test") + +go_library( + name = "extension", + srcs = [ + "extensions.go", + "function.go", + "manifest.go", + "registry.go", + "session.go", + "util.go", + ], + importpath = "github.com/pingcap/tidb/extension", + visibility = ["//visibility:public"], + deps = [ + "//parser", + "//parser/ast", + "//parser/auth", + "//sessionctx/stmtctx", + "//sessionctx/variable", + "//types", + "//util/chunk", + "@com_github_ngaut_pools//:pools", + "@com_github_pingcap_errors//:errors", + "@io_etcd_go_etcd_client_v3//:client", + ], +) + +go_test( + name = "extension_test", + srcs = [ + "bootstrap_test.go", + "event_listener_test.go", + "function_test.go", + "main_test.go", + "registry_test.go", + ], + embed = [":extension"], + deps = [ + "//expression", + "//parser/ast", + "//parser/auth", + "//parser/mysql", + "//privilege/privileges", + "//server", + "//sessionctx", + "//sessionctx/sessionstates", + "//sessionctx/stmtctx", + "//sessionctx/variable", + "//testkit", + "//testkit/testsetup", + "//types", + "//util/chunk", + "//util/sem", + "@com_github_pingcap_errors//:errors", + "@com_github_stretchr_testify//require", + "@org_uber_go_goleak//:goleak", + ], +) diff --git a/extension/bootstrap_test.go b/extension/bootstrap_test.go new file mode 100644 index 0000000000000..ae4a7ff03f091 --- /dev/null +++ b/extension/bootstrap_test.go @@ -0,0 +1,48 @@ +// Copyright 2022 PingCAP, Inc. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +package extension_test + +import ( + "testing" + + "github.com/pingcap/tidb/extension" + "github.com/pingcap/tidb/testkit" + "github.com/stretchr/testify/require" +) + +func TestBootstrap(t *testing.T) { + defer func() { + extension.Reset() + }() + + extension.Reset() + require.NoError(t, extension.Register("test1", extension.WithBootstrapSQL("create table test.t1 (a int)"))) + require.NoError(t, extension.Register("test2", extension.WithBootstrap(func(ctx extension.BootstrapContext) error { + _, err := ctx.ExecuteSQL(ctx, "insert into test.t1 values(1)") + require.NoError(t, err) + + rows, err := ctx.ExecuteSQL(ctx, "select * from test.t1 where a=1") + require.NoError(t, err) + + require.Equal(t, 1, len(rows)) + require.Equal(t, int64(1), rows[0].GetInt64(0)) + return nil + }))) + require.NoError(t, extension.Setup()) + + store := testkit.CreateMockStore(t) + tk := testkit.NewTestKit(t, store) + tk.MustQuery("select * from test.t1").Check(testkit.Rows("1")) +} diff --git a/extension/event_listener_test.go b/extension/event_listener_test.go new file mode 100644 index 0000000000000..be998980b15f8 --- /dev/null +++ b/extension/event_listener_test.go @@ -0,0 +1,468 @@ +// Copyright 2022 PingCAP, Inc. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +package extension_test + +import ( + "context" + "encoding/binary" + "sort" + "strings" + "testing" + "time" + + "github.com/pingcap/tidb/extension" + "github.com/pingcap/tidb/parser/ast" + "github.com/pingcap/tidb/parser/auth" + "github.com/pingcap/tidb/parser/mysql" + "github.com/pingcap/tidb/server" + "github.com/pingcap/tidb/sessionctx" + "github.com/pingcap/tidb/sessionctx/sessionstates" + "github.com/pingcap/tidb/sessionctx/stmtctx" + "github.com/pingcap/tidb/sessionctx/variable" + "github.com/pingcap/tidb/testkit" + "github.com/pingcap/tidb/types" + "github.com/stretchr/testify/require" +) + +type stmtEventRecord struct { + tp extension.StmtEventTp + user *auth.UserIdentity + originalText string + redactText string + params []types.Datum + connInfo *variable.ConnectionInfo + err string + tables []stmtctx.TableEntry + affectedRows uint64 + stmtNode ast.StmtNode + executeStmtNode *ast.ExecuteStmt + preparedNode ast.StmtNode +} + +type sessionHandler struct { + records []stmtEventRecord +} + +func (h *sessionHandler) OnStmtEvent(tp extension.StmtEventTp, info extension.StmtEventInfo) { + tables := make([]stmtctx.TableEntry, len(info.RelatedTables())) + copy(tables, info.RelatedTables()) + + redactText, _ := info.SQLDigest() + r := stmtEventRecord{ + tp: tp, + user: info.User(), + originalText: info.OriginalText(), + redactText: redactText, + params: info.PreparedParams(), + connInfo: info.ConnectionInfo(), + tables: tables, + affectedRows: info.AffectedRows(), + stmtNode: info.StmtNode(), + executeStmtNode: info.ExecuteStmtNode(), + preparedNode: info.ExecutePreparedStmt(), + } + + if err := info.GetError(); err != nil { + r.err = err.Error() + } + + h.records = append(h.records, r) +} + +func (h *sessionHandler) Reset() { + h.records = nil +} + +func (h *sessionHandler) GetHandler() *extension.SessionHandler { + return &extension.SessionHandler{ + OnStmtEvent: h.OnStmtEvent, + } +} + +func registerHandler(t *testing.T) *sessionHandler { + h := &sessionHandler{} + err := extension.Register( + "test", + extension.WithSessionHandlerFactory(h.GetHandler), + ) + require.NoError(t, err) + return h +} + +func getPreparedID(t *testing.T, sctx sessionctx.Context) uint32 { + sessStates := &sessionstates.SessionStates{} + require.NoError(t, sctx.GetSessionVars().EncodeSessionStates(context.Background(), sessStates)) + return sessStates.PreparedStmtID +} + +type stmtEventCase struct { + sql string + binaryExecute uint32 + executeParams []paramInfo + + err string + originalText string + redactText string + affectedRows uint64 + tables []stmtctx.TableEntry + parseError bool + prepareNotFound bool + multiQueryCases []stmtEventCase +} + +func TestExtensionStmtEvents(t *testing.T) { + defer extension.Reset() + extension.Reset() + h := registerHandler(t) + require.NoError(t, extension.Setup()) + + store := testkit.CreateMockStore(t) + serv := server.CreateMockServer(t, store) + defer serv.Close() + conn := server.CreateMockConn(t, serv) + defer conn.Close() + + require.NoError(t, conn.HandleQuery(context.Background(), "SET tidb_multi_statement_mode='ON'")) + require.NoError(t, conn.HandleQuery(context.Background(), "use test")) + require.NoError(t, conn.HandleQuery(context.Background(), "create table t1(a int, b int)")) + require.NoError(t, conn.HandleQuery(context.Background(), "create table t2(id int primary key)")) + require.NoError(t, conn.HandleQuery(context.Background(), "create database test2")) + require.NoError(t, conn.HandleQuery(context.Background(), "create table test2.t1(c int, d int)")) + require.NoError(t, conn.HandleQuery(context.Background(), "set @a=1")) + require.NoError(t, conn.HandleQuery(context.Background(), "set @b=2")) + + cmd := append([]byte{mysql.ComStmtPrepare}, []byte("select ?")...) + require.NoError(t, conn.Dispatch(context.Background(), cmd)) + stmtID1 := getPreparedID(t, conn.Context()) + + cmd = append( + []byte{mysql.ComStmtPrepare}, + []byte("select a, b from t1 left join test2.t1 as t2 on t2.c = t1.a where t1.a = 3 and t1.b = ? and t2.d = ?")...) + require.NoError(t, conn.Dispatch(context.Background(), cmd)) + stmtID2 := getPreparedID(t, conn.Context()) + + require.NoError(t, conn.HandleQuery(context.Background(), "create table tnoexist(n int)")) + cmd = append([]byte{mysql.ComStmtPrepare}, []byte("select * from tnoexist where n=?")...) + require.NoError(t, conn.Dispatch(context.Background(), cmd)) + stmtID3 := getPreparedID(t, conn.Context()) + require.NoError(t, conn.HandleQuery(context.Background(), "drop table tnoexist")) + + cmd = append([]byte{mysql.ComStmtPrepare}, []byte("insert into t2 values(?)")...) + require.NoError(t, conn.Dispatch(context.Background(), cmd)) + stmtID4 := getPreparedID(t, conn.Context()) + + connID := conn.Context().Session.GetSessionVars().ConnectionID + require.NotEqual(t, uint64(0), connID) + + cases := []stmtEventCase{ + { + sql: "select 1", + redactText: "select ?", + }, + { + sql: "invalid sql", + parseError: true, + err: "[parser:1064]You have an error in your SQL syntax; check the manual that corresponds to your TiDB version for the right syntax to use line 1 column 7 near \"invalid sql\" ", + }, + { + binaryExecute: stmtID1, + executeParams: []paramInfo{ + {value: 7}, + }, + originalText: "select ?", + redactText: "select ?", + }, + { + sql: "select a, b from t1 where a > 1 and b < 2", + redactText: "select `a` , `b` from `t1` where `a` > ? and `b` < ?", + tables: []stmtctx.TableEntry{ + {DB: "test", Table: "t1"}, + }, + }, + { + sql: "insert into t2 values(1)", + redactText: "insert into `t2` values ( ? )", + affectedRows: 1, + tables: []stmtctx.TableEntry{ + {DB: "test", Table: "t2"}, + }, + }, + { + binaryExecute: stmtID2, + executeParams: []paramInfo{ + {value: 3}, + {value: 4}, + }, + originalText: "select a, b from t1 left join test2.t1 as t2 on t2.c = t1.a where t1.a = 3 and t1.b = ? and t2.d = ?", + redactText: "select `a` , `b` from `t1` left join `test2` . `t1` as `t2` on `t2` . `c` = `t1` . `a` where `t1` . `a` = ? and `t1` . `b` = ? and `t2` . `d` = ?", + tables: []stmtctx.TableEntry{ + {DB: "test", Table: "t1"}, + {DB: "test2", Table: "t1"}, + }, + }, + { + binaryExecute: stmtID3, + executeParams: []paramInfo{ + {value: 5}, + }, + originalText: "select * from tnoexist where n=?", + redactText: "select * from `tnoexist` where `n` = ?", + tables: []stmtctx.TableEntry{ + {DB: "test", Table: "tnoexist"}, + }, + err: "select * from tnoexist where n=? [arguments: 5]: [planner:8113]Schema change caused error: [schema:1146]Table 'test.tnoexist' doesn't exist", + }, + { + binaryExecute: stmtID4, + executeParams: []paramInfo{ + {value: 3}, + }, + originalText: "insert into t2 values(?)", + redactText: "insert into `t2` values ( ? )", + affectedRows: 1, + tables: []stmtctx.TableEntry{ + {DB: "test", Table: "t2"}, + }, + }, + { + sql: "prepare s from 'select * from t1 where a=1 and b>? and b? and b ? and `b` < ?", + executeParams: []paramInfo{ + {value: 1}, + {value: 2}, + }, + tables: []stmtctx.TableEntry{ + {DB: "test", Table: "t1"}, + }, + }, + { + sql: "execute sn using @a, @b", + redactText: "execute `sn` using @a , @b", + executeParams: []paramInfo{ + {value: 1}, + {value: 2}, + }, + prepareNotFound: true, + err: "[planner:8111]Prepared statement not found", + }, + { + sql: "insert into t1 values(1, 10), (2, 20)", + redactText: "insert into `t1` values ( ... ) , ( ... )", + affectedRows: 2, + tables: []stmtctx.TableEntry{ + {DB: "test", Table: "t1"}, + }, + }, + { + sql: "insert into t2 values(1)", + redactText: "insert into `t2` values ( ? )", + affectedRows: 0, + err: "[kv:1062]Duplicate entry '1' for key 't2.PRIMARY'", + tables: []stmtctx.TableEntry{ + {DB: "test", Table: "t2"}, + }, + }, + { + sql: "select 1;select * from t1 where a > 1", + multiQueryCases: []stmtEventCase{ + { + originalText: "select 1;", + redactText: "select ? ;", + }, + { + originalText: "select * from t1 where a > 1", + redactText: "select * from `t1` where `a` > ?", + tables: []stmtctx.TableEntry{ + {DB: "test", Table: "t1"}, + }, + }, + }, + }, + { + binaryExecute: stmtID4, + executeParams: []paramInfo{ + {value: 3}, + }, + err: "insert into t2 values(?) [arguments: 3]: [kv:1062]Duplicate entry '3' for key 't2.PRIMARY'", + originalText: "insert into t2 values(?)", + redactText: "insert into `t2` values ( ? )", + affectedRows: 0, + tables: []stmtctx.TableEntry{ + {DB: "test", Table: "t2"}, + }, + }, + { + sql: "create database db1", + redactText: "create database `db1`", + tables: []stmtctx.TableEntry{ + {DB: "db1", Table: ""}, + }, + }, + { + sql: "kill query 1", + redactText: "kill query ?", + }, + { + sql: "create placement policy p1 followers=1", + redactText: "create placement policy `p1` followers = ?", + }, + } + + for i, c := range cases { + h.Reset() + conn.Context().SetProcessInfo("", time.Now(), mysql.ComSleep, 0) + + var err error + switch { + case c.sql != "": + err = conn.HandleQuery(context.Background(), c.sql) + if c.originalText == "" { + c.originalText = c.sql + } + if c.redactText == "" { + c.redactText = c.sql + } + case c.binaryExecute != 0: + err = conn.Dispatch(context.Background(), getExecuteBytes(c.binaryExecute, false, true, c.executeParams...)) + } + + if c.err != "" { + require.EqualError(t, err, c.err) + } else { + require.NoError(t, err) + } + + subCases := c.multiQueryCases + if subCases == nil { + subCases = []stmtEventCase{c} + } + + require.Equal(t, len(subCases), len(h.records), "%d", i) + for j, subCase := range subCases { + record := h.records[j] + if subCase.err != "" { + require.Equal(t, subCase.err, record.err) + require.Equal(t, extension.StmtError, record.tp) + } else { + require.Empty(t, record.err) + require.Equal(t, extension.StmtSuccess, record.tp) + } + + require.NotNil(t, record.connInfo) + if subCase.parseError { + require.Nil(t, record.stmtNode) + require.Nil(t, record.executeStmtNode) + require.Nil(t, record.preparedNode) + } else { + require.NotNil(t, record.stmtNode) + if subCase.binaryExecute != 0 || strings.HasPrefix(strings.ToLower(subCase.sql), "execute ") { + require.NotNil(t, record.executeStmtNode) + require.Equal(t, record.stmtNode, record.executeStmtNode) + if c.prepareNotFound { + require.Nil(t, record.preparedNode) + } else { + require.NotNil(t, record.preparedNode) + require.NotEqual(t, record.preparedNode, record.executeStmtNode) + } + } else { + require.Nil(t, record.executeStmtNode) + require.Nil(t, record.preparedNode) + } + } + + require.Equal(t, connID, record.connInfo.ConnectionID) + require.Equal(t, "root", record.user.Username) + require.Equal(t, "localhost", record.user.Hostname) + require.Equal(t, "root", record.user.AuthUsername) + require.Equal(t, "%", record.user.AuthHostname) + + require.Equal(t, subCase.originalText, record.originalText) + require.Equal(t, subCase.redactText, record.redactText) + require.Equal(t, subCase.affectedRows, record.affectedRows) + if subCase.tables == nil { + subCase.tables = []stmtctx.TableEntry{} + } + sort.Slice(subCase.tables, func(i, j int) bool { + l := subCase.tables[i] + r := subCase.tables[j] + return l.DB < r.DB || (l.DB == r.DB && l.Table < r.Table) + }) + sort.Slice(record.tables, func(i, j int) bool { + l := subCase.tables[i] + r := subCase.tables[j] + return l.DB < r.DB || (l.DB == r.DB && l.Table < r.Table) + }) + require.Equal(t, subCase.tables, record.tables) + + require.Equal(t, len(subCase.executeParams), len(record.params)) + for k, param := range subCase.executeParams { + require.Equal(t, uint64(param.value), record.params[k].GetUint64()) + } + } + } +} + +type paramInfo struct { + value uint32 + isNull bool +} + +// create bytes for COM_STMT_EXECUTE. It only supports int type for convenience. +func getExecuteBytes(stmtID uint32, useCursor bool, newParam bool, params ...paramInfo) []byte { + nullBitmapLen := (len(params) + 7) >> 3 + buf := make([]byte, 11+nullBitmapLen+len(params)*6) + pos := 0 + buf[pos] = mysql.ComStmtExecute + pos++ + binary.LittleEndian.PutUint32(buf[pos:], stmtID) + pos += 4 + if useCursor { + buf[pos] = 1 + } + pos++ + binary.LittleEndian.PutUint32(buf[pos:], 1) + pos += 4 + for i, param := range params { + if param.isNull { + buf[pos+(i>>3)] |= 1 << (i % 8) + } + } + pos += nullBitmapLen + if newParam { + buf[pos] = 1 + pos++ + for i := 0; i < len(params); i++ { + buf[pos] = mysql.TypeLong + pos++ + buf[pos] = 0 + pos++ + } + } else { + buf[pos] = 0 + pos++ + } + for _, param := range params { + if !param.isNull { + binary.LittleEndian.PutUint32(buf[pos:], param.value) + pos += 4 + } + } + return buf[:pos] +} diff --git a/extension/extensionimpl/BUILD.bazel b/extension/extensionimpl/BUILD.bazel new file mode 100644 index 0000000000000..8c062a16ae7c9 --- /dev/null +++ b/extension/extensionimpl/BUILD.bazel @@ -0,0 +1,17 @@ +load("@io_bazel_rules_go//go:def.bzl", "go_library") + +go_library( + name = "extensionimpl", + srcs = ["bootstrap.go"], + importpath = "github.com/pingcap/tidb/extension/extensionimpl", + visibility = ["//visibility:public"], + deps = [ + "//domain", + "//extension", + "//kv", + "//util/chunk", + "//util/sqlexec", + "@com_github_pingcap_errors//:errors", + "@io_etcd_go_etcd_client_v3//:client", + ], +) diff --git a/extension/extensionimpl/bootstrap.go b/extension/extensionimpl/bootstrap.go new file mode 100644 index 0000000000000..8b6b154f988ab --- /dev/null +++ b/extension/extensionimpl/bootstrap.go @@ -0,0 +1,95 @@ +// Copyright 2022 PingCAP, Inc. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +package extensionimpl + +import ( + "context" + + "github.com/pingcap/errors" + "github.com/pingcap/tidb/domain" + "github.com/pingcap/tidb/extension" + "github.com/pingcap/tidb/kv" + "github.com/pingcap/tidb/util/chunk" + "github.com/pingcap/tidb/util/sqlexec" + clientv3 "go.etcd.io/etcd/client/v3" +) + +type bootstrapContext struct { + context.Context + + sqlExecutor sqlexec.SQLExecutor + etcdCli *clientv3.Client + sessionPool extension.SessionPool +} + +func (c *bootstrapContext) ExecuteSQL(ctx context.Context, sql string) (rows []chunk.Row, err error) { + ctx = kv.WithInternalSourceType(ctx, kv.InternalTxnBootstrap) + rs, err := c.sqlExecutor.ExecuteInternal(ctx, sql) + if err != nil { + return nil, err + } + + if rs == nil { + return nil, nil + } + + defer func() { + closeErr := rs.Close() + if err == nil { + err = closeErr + } + }() + + return sqlexec.DrainRecordSet(ctx, rs, 8) +} + +func (c *bootstrapContext) EtcdClient() *clientv3.Client { + return c.etcdCli +} + +func (c *bootstrapContext) SessionPool() extension.SessionPool { + return c.sessionPool +} + +// Bootstrap bootstraps all extensions +func Bootstrap(ctx context.Context, do *domain.Domain) error { + extensions, err := extension.GetExtensions() + if err != nil { + return err + } + + if extensions == nil { + return nil + } + + pool := do.SysSessionPool() + sctx, err := pool.Get() + if err != nil { + return err + } + defer pool.Put(sctx) + + executor, ok := sctx.(sqlexec.SQLExecutor) + if !ok { + return errors.Errorf("type '%T' cannot be casted to 'sqlexec.SQLExecutor'", sctx) + } + + return extensions.Bootstrap(&bootstrapContext{ + Context: ctx, + sessionPool: pool, + sqlExecutor: executor, + etcdCli: do.GetEtcdClient(), + }) +} diff --git a/extension/extensions.go b/extension/extensions.go new file mode 100644 index 0000000000000..68bcffd585a89 --- /dev/null +++ b/extension/extensions.go @@ -0,0 +1,54 @@ +// Copyright 2022 PingCAP, Inc. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +package extension + +// Extensions contains all extensions that have already setup +type Extensions struct { + manifests []*Manifest +} + +// Manifests returns a extension manifests +func (es *Extensions) Manifests() []*Manifest { + if es == nil { + return nil + } + manifests := make([]*Manifest, len(es.manifests)) + copy(manifests, es.manifests) + return manifests +} + +// Bootstrap bootstraps all extensions +func (es *Extensions) Bootstrap(ctx BootstrapContext) error { + if es == nil { + return nil + } + + for _, m := range es.manifests { + if m.bootstrap != nil { + if err := m.bootstrap(ctx); err != nil { + return err + } + } + } + return nil +} + +// NewSessionExtensions creates a new ConnExtensions object +func (es *Extensions) NewSessionExtensions() *SessionExtensions { + if es == nil { + return nil + } + return newSessionExtensions(es) +} diff --git a/extension/function.go b/extension/function.go new file mode 100644 index 0000000000000..d01519e9b751d --- /dev/null +++ b/extension/function.go @@ -0,0 +1,76 @@ +// Copyright 2022 PingCAP, Inc. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +package extension + +import ( + "context" + + "github.com/pingcap/errors" + "github.com/pingcap/tidb/parser/auth" + "github.com/pingcap/tidb/sessionctx/variable" + "github.com/pingcap/tidb/types" + "github.com/pingcap/tidb/util/chunk" +) + +// FunctionContext is an interface to provide context to the custom function +type FunctionContext interface { + context.Context + User() *auth.UserIdentity + ActiveRoles() []*auth.RoleIdentity + CurrentDB() string + ConnectionInfo() *variable.ConnectionInfo + EvalArgs(row chunk.Row) ([]types.Datum, error) +} + +// FunctionDef is the definition for the custom function +type FunctionDef struct { + // Name is the function's name + Name string + // EvalTp is the type of the return value + EvalTp types.EvalType + // ArgTps is the argument types + ArgTps []types.EvalType + // OptionalArgsLen is the length of the optional args + OptionalArgsLen int + // EvalStringFunc is the eval function when `EvalTp` is `types.ETString` + EvalStringFunc func(ctx FunctionContext, row chunk.Row) (string, bool, error) + // EvalIntFunc is the eval function when `EvalTp` is `types.ETInt` + EvalIntFunc func(ctx FunctionContext, row chunk.Row) (int64, bool, error) + // RequireDynamicPrivileges is the dynamic privileges needed to invoke the function + // If `RequireDynamicPrivileges` is empty, it means every one can invoke this function + RequireDynamicPrivileges []string + // SemRequireDynamicPrivileges is the dynamic privileges needed to invoke the function in sem mode + // If `SemRequireDynamicPrivileges` is empty, `DynamicPrivileges` will be used in sem mode + SemRequireDynamicPrivileges []string +} + +// Validate validates the function definition +func (def *FunctionDef) Validate() error { + if def.Name == "" { + return errors.New("extension function name should not be empty") + } + + for def.OptionalArgsLen < 0 || def.OptionalArgsLen > len(def.ArgTps) { + return errors.Errorf("invalid OptionalArgsLen: %d", def.OptionalArgsLen) + } + + return nil +} + +// RegisterExtensionFunc is to avoid dependency cycle +var RegisterExtensionFunc func(*FunctionDef) error + +// RemoveExtensionFunc is to avoid dependency cycle +var RemoveExtensionFunc func(string) diff --git a/extension/function_test.go b/extension/function_test.go new file mode 100644 index 0000000000000..c9521e91edadd --- /dev/null +++ b/extension/function_test.go @@ -0,0 +1,406 @@ +// Copyright 2022 PingCAP, Inc. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +package extension_test + +import ( + "fmt" + "sort" + "strings" + "testing" + + "github.com/pingcap/errors" + "github.com/pingcap/tidb/expression" + "github.com/pingcap/tidb/extension" + "github.com/pingcap/tidb/parser/auth" + "github.com/pingcap/tidb/sessionctx/variable" + "github.com/pingcap/tidb/testkit" + "github.com/pingcap/tidb/types" + "github.com/pingcap/tidb/util/chunk" + "github.com/pingcap/tidb/util/sem" + "github.com/stretchr/testify/require" +) + +var customFunc1 = &extension.FunctionDef{ + Name: "custom_func1", + EvalTp: types.ETString, + ArgTps: []types.EvalType{ + types.ETInt, + types.ETString, + }, + EvalStringFunc: func(ctx extension.FunctionContext, row chunk.Row) (string, bool, error) { + args, err := ctx.EvalArgs(row) + if err != nil { + return "", false, err + } + + if args[1].GetString() == "error" { + return "", false, errors.New("custom error") + } + + return fmt.Sprintf("%d,%s", args[0].GetInt64(), args[1].GetString()), false, nil + }, +} + +var customFunc2 = &extension.FunctionDef{ + Name: "custom_func2", + EvalTp: types.ETInt, + ArgTps: []types.EvalType{ + types.ETInt, + types.ETInt, + }, + EvalIntFunc: func(ctx extension.FunctionContext, row chunk.Row) (int64, bool, error) { + args, err := ctx.EvalArgs(row) + if err != nil { + return 0, false, err + } + return args[0].GetInt64()*100 + args[1].GetInt64(), false, nil + }, +} + +func TestExtensionFuncCtx(t *testing.T) { + defer extension.Reset() + extension.Reset() + + invoked := false + var user *auth.UserIdentity + var currentDB string + var activeRoles []*auth.RoleIdentity + var conn *variable.ConnectionInfo + + require.NoError(t, extension.Register("test", extension.WithCustomFunctions([]*extension.FunctionDef{ + { + Name: "custom_get_ctx", + EvalTp: types.ETString, + EvalStringFunc: func(ctx extension.FunctionContext, row chunk.Row) (string, bool, error) { + require.False(t, invoked) + invoked = true + user = ctx.User() + currentDB = ctx.CurrentDB() + activeRoles = ctx.ActiveRoles() + conn = ctx.ConnectionInfo() + return "done", false, nil + }, + }, + }))) + + store := testkit.CreateMockStore(t) + tk := testkit.NewTestKit(t, store) + tk.MustExec("use test") + tk.MustExec("create user u1@localhost") + tk.MustExec("create role r1") + tk.MustExec("grant r1 to u1@localhost") + tk.MustExec("grant ALL ON test.* to u1@localhost") + + tk1 := testkit.NewTestKit(t, store) + require.NoError(t, tk1.Session().Auth(&auth.UserIdentity{Username: "u1", Hostname: "localhost"}, nil, nil)) + tk1.MustExec("set role r1") + tk1.MustExec("use test") + tk1.Session().GetSessionVars().ConnectionInfo = &variable.ConnectionInfo{ + ConnectionID: 12345, + User: "u1", + } + + tk1.MustQuery("select custom_get_ctx()").Check(testkit.Rows("done")) + + require.True(t, invoked) + require.NotNil(t, user) + require.Equal(t, *tk1.Session().GetSessionVars().User, *user) + require.Equal(t, "test", currentDB) + require.NotNil(t, conn) + require.Equal(t, *tk1.Session().GetSessionVars().ConnectionInfo, *conn) + require.Equal(t, 1, len(activeRoles)) + require.Equal(t, auth.RoleIdentity{Username: "r1", Hostname: "%"}, *activeRoles[0]) +} + +func TestInvokeExtensionFunc(t *testing.T) { + defer extension.Reset() + extension.Reset() + + extension.Reset() + orgFuncList := expression.GetBuiltinList() + checkFuncList(t, orgFuncList) + require.NoError(t, extension.Register("test", extension.WithCustomFunctions([]*extension.FunctionDef{ + customFunc1, + customFunc2, + }))) + require.NoError(t, extension.Setup()) + checkFuncList(t, orgFuncList, "custom_func1", "custom_func2") + + store := testkit.CreateMockStore(t) + tk := testkit.NewTestKit(t, store) + tk.MustQuery("select custom_func1(1, 'abc')").Check(testkit.Rows("1,abc")) + tk.MustQuery("select custom_func2(7, 8)").Check(testkit.Rows("708")) + require.EqualError(t, tk.QueryToErr("select custom_func1(1, 'error')"), "custom error") + require.EqualError(t, tk.ExecToErr("select custom_func1(1)"), "[expression:1582]Incorrect parameter count in the call to native function 'custom_func1'") + + extension.Reset() + checkFuncList(t, orgFuncList) + store2 := testkit.CreateMockStore(t) + tk2 := testkit.NewTestKit(t, store2) + tk2.MustExec("use test") + require.EqualError(t, tk2.ExecToErr("select custom_func1(1, 'abc')"), "[expression:1305]FUNCTION test.custom_func1 does not exist") + require.EqualError(t, tk2.ExecToErr("select custom_func2(1, 2)"), "[expression:1305]FUNCTION test.custom_func2 does not exist") +} + +func TestExtensionFuncDynamicArgLen(t *testing.T) { + defer extension.Reset() + extension.Reset() + + fnDef := &extension.FunctionDef{ + Name: "dynamic_arg_func", + EvalTp: types.ETInt, + OptionalArgsLen: 1, + ArgTps: []types.EvalType{ + types.ETInt, + types.ETInt, + types.ETInt, + types.ETInt, + }, + EvalIntFunc: func(ctx extension.FunctionContext, row chunk.Row) (int64, bool, error) { + args, err := ctx.EvalArgs(row) + if err != nil { + return 0, false, err + } + + result := int64(0) + for _, arg := range args { + result = result*10 + arg.GetInt64() + } + + return result, false, nil + }, + } + + require.NoError(t, extension.Register("test", extension.WithCustomFunctions([]*extension.FunctionDef{fnDef}))) + require.NoError(t, extension.Setup()) + + store := testkit.CreateMockStore(t) + tk := testkit.NewTestKit(t, store) + tk.MustQuery("select dynamic_arg_func(1, 2, 3)").Check(testkit.Rows("123")) + tk.MustQuery("select dynamic_arg_func(1, 2, 3, 4)").Check(testkit.Rows("1234")) + + expectedErrMsg := "[expression:1582]Incorrect parameter count in the call to native function 'dynamic_arg_func'" + require.EqualError(t, tk.ExecToErr("select dynamic_arg_func()"), expectedErrMsg) + require.EqualError(t, tk.ExecToErr("select dynamic_arg_func(1)"), expectedErrMsg) + require.EqualError(t, tk.ExecToErr("select dynamic_arg_func(1, 2)"), expectedErrMsg) +} + +func TestRegisterExtensionFunc(t *testing.T) { + defer extension.Reset() + + // nil func + extension.Reset() + orgFuncList := expression.GetBuiltinList() + checkFuncList(t, orgFuncList) + require.NoError(t, extension.Register("test", extension.WithCustomFunctions([]*extension.FunctionDef{ + customFunc1, + nil, + }))) + require.EqualError(t, extension.Setup(), "extension function def is nil") + checkFuncList(t, orgFuncList) + + // dup name with builtin + extension.Reset() + var def extension.FunctionDef + def = *customFunc1 + def.Name = "substring" + require.NoError(t, extension.Register("test", extension.WithCustomFunctions([]*extension.FunctionDef{ + customFunc1, + &def, + }))) + require.EqualError(t, extension.Setup(), "extension function name 'substring' conflict with builtin") + checkFuncList(t, orgFuncList) + + // empty func name + extension.Reset() + def = *customFunc1 + def.Name = "" + require.NoError(t, extension.Register("test", extension.WithCustomFunctions([]*extension.FunctionDef{ + &def, + }))) + require.EqualError(t, extension.Setup(), "extension function name should not be empty") + checkFuncList(t, orgFuncList) + + // dup name with other func in one extension + extension.Reset() + require.NoError(t, extension.Register("test", extension.WithCustomFunctions([]*extension.FunctionDef{ + customFunc1, + customFunc1, + }))) + require.EqualError(t, extension.Setup(), "duplicated extension function name 'custom_func1'") + checkFuncList(t, orgFuncList) + + // dup name with other func in different extension + extension.Reset() + require.NoError(t, extension.Register("test1", extension.WithCustomFunctions([]*extension.FunctionDef{ + customFunc1, + }))) + require.NoError(t, extension.Register("test2", extension.WithCustomFunctions([]*extension.FunctionDef{ + customFunc1, + }))) + require.EqualError(t, extension.Setup(), "duplicated extension function name 'custom_func1'") + checkFuncList(t, orgFuncList) +} + +func checkFuncList(t *testing.T, orgList []string, customFuncs ...string) { + for _, name := range orgList { + require.False(t, strings.HasPrefix(name, "custom_"), name) + } + + checkList := make([]string, 0, len(orgList)+len(customFuncs)) + checkList = append(checkList, orgList...) + checkList = append(checkList, customFuncs...) + sort.Strings(checkList) + require.Equal(t, checkList, expression.GetBuiltinList()) +} + +func TestExtensionFuncPrivilege(t *testing.T) { + defer func() { + extension.Reset() + sem.Disable() + }() + + extension.Reset() + require.NoError(t, extension.Register("test", + extension.WithCustomFunctions([]*extension.FunctionDef{ + { + Name: "custom_no_priv_func", + EvalTp: types.ETString, + EvalStringFunc: func(ctx extension.FunctionContext, row chunk.Row) (string, bool, error) { + return "zzz", false, nil + }, + }, + { + Name: "custom_only_dyn_priv_func", + EvalTp: types.ETString, + RequireDynamicPrivileges: []string{"CUSTOM_DYN_PRIV_1"}, + EvalStringFunc: func(ctx extension.FunctionContext, row chunk.Row) (string, bool, error) { + return "abc", false, nil + }, + }, + { + Name: "custom_only_sem_dyn_priv_func", + EvalTp: types.ETString, + SemRequireDynamicPrivileges: []string{"RESTRICTED_CUSTOM_DYN_PRIV_2"}, + EvalStringFunc: func(ctx extension.FunctionContext, row chunk.Row) (string, bool, error) { + return "def", false, nil + }, + }, + { + Name: "custom_both_dyn_priv_func", + EvalTp: types.ETString, + RequireDynamicPrivileges: []string{"CUSTOM_DYN_PRIV_1"}, + SemRequireDynamicPrivileges: []string{"RESTRICTED_CUSTOM_DYN_PRIV_2"}, + EvalStringFunc: func(ctx extension.FunctionContext, row chunk.Row) (string, bool, error) { + return "ghi", false, nil + }, + }, + }), + extension.WithCustomDynPrivs([]string{ + "CUSTOM_DYN_PRIV_1", + "RESTRICTED_CUSTOM_DYN_PRIV_2", + }), + )) + require.NoError(t, extension.Setup()) + + store := testkit.CreateMockStore(t) + tk := testkit.NewTestKit(t, store) + tk.MustExec("use test") + + tk.MustExec("create user u1@localhost") + + tk.MustExec("create user u2@localhost") + tk.MustExec("GRANT CUSTOM_DYN_PRIV_1 on *.* TO u2@localhost") + + tk.MustExec("create user u3@localhost") + tk.MustExec("GRANT RESTRICTED_CUSTOM_DYN_PRIV_2 on *.* TO u3@localhost") + + tk.MustExec("create user u4@localhost") + tk.MustExec("GRANT CUSTOM_DYN_PRIV_1, RESTRICTED_CUSTOM_DYN_PRIV_2 on *.* TO u4@localhost") + + tk1 := testkit.NewTestKit(t, store) + + // root has all privileges by default + require.NoError(t, tk1.Session().Auth(&auth.UserIdentity{Username: "root", Hostname: "localhost"}, nil, nil)) + tk1.MustQuery("select custom_no_priv_func()").Check(testkit.Rows("zzz")) + tk1.MustQuery("select custom_only_dyn_priv_func()").Check(testkit.Rows("abc")) + tk1.MustQuery("select custom_only_sem_dyn_priv_func()").Check(testkit.Rows("def")) + tk1.MustQuery("select custom_both_dyn_priv_func()").Check(testkit.Rows("ghi")) + + // u1 in non-sem + require.NoError(t, tk1.Session().Auth(&auth.UserIdentity{Username: "u1", Hostname: "localhost"}, nil, nil)) + tk1.MustQuery("select custom_no_priv_func()").Check(testkit.Rows("zzz")) + require.EqualError(t, tk1.ExecToErr("select custom_only_dyn_priv_func()"), "[expression:1227]Access denied; you need (at least one of) the SUPER or CUSTOM_DYN_PRIV_1 privilege(s) for this operation") + tk1.MustQuery("select custom_only_sem_dyn_priv_func()").Check(testkit.Rows("def")) + require.EqualError(t, tk1.ExecToErr("select custom_both_dyn_priv_func()"), "[expression:1227]Access denied; you need (at least one of) the SUPER or CUSTOM_DYN_PRIV_1 privilege(s) for this operation") + + // u2 in non-sem + require.NoError(t, tk1.Session().Auth(&auth.UserIdentity{Username: "u2", Hostname: "localhost"}, nil, nil)) + tk1.MustQuery("select custom_no_priv_func()").Check(testkit.Rows("zzz")) + tk1.MustQuery("select custom_only_dyn_priv_func()").Check(testkit.Rows("abc")) + tk1.MustQuery("select custom_only_sem_dyn_priv_func()").Check(testkit.Rows("def")) + tk1.MustQuery("select custom_both_dyn_priv_func()").Check(testkit.Rows("ghi")) + + // u3 in non-sem + require.NoError(t, tk1.Session().Auth(&auth.UserIdentity{Username: "u3", Hostname: "localhost"}, nil, nil)) + tk1.MustQuery("select custom_no_priv_func()").Check(testkit.Rows("zzz")) + require.EqualError(t, tk1.ExecToErr("select custom_only_dyn_priv_func()"), "[expression:1227]Access denied; you need (at least one of) the SUPER or CUSTOM_DYN_PRIV_1 privilege(s) for this operation") + tk1.MustQuery("select custom_only_sem_dyn_priv_func()").Check(testkit.Rows("def")) + require.EqualError(t, tk1.ExecToErr("select custom_both_dyn_priv_func()"), "[expression:1227]Access denied; you need (at least one of) the SUPER or CUSTOM_DYN_PRIV_1 privilege(s) for this operation") + + // u4 in non-sem + require.NoError(t, tk1.Session().Auth(&auth.UserIdentity{Username: "u4", Hostname: "localhost"}, nil, nil)) + tk1.MustQuery("select custom_no_priv_func()").Check(testkit.Rows("zzz")) + tk1.MustQuery("select custom_only_dyn_priv_func()").Check(testkit.Rows("abc")) + tk1.MustQuery("select custom_only_sem_dyn_priv_func()").Check(testkit.Rows("def")) + tk1.MustQuery("select custom_both_dyn_priv_func()").Check(testkit.Rows("ghi")) + + sem.Enable() + + // root in sem + require.NoError(t, tk1.Session().Auth(&auth.UserIdentity{Username: "root", Hostname: "localhost"}, nil, nil)) + tk1.MustQuery("select custom_no_priv_func()").Check(testkit.Rows("zzz")) + tk1.MustQuery("select custom_only_dyn_priv_func()").Check(testkit.Rows("abc")) + require.EqualError(t, tk1.ExecToErr("select custom_only_sem_dyn_priv_func()"), "[expression:1227]Access denied; you need (at least one of) the RESTRICTED_CUSTOM_DYN_PRIV_2 privilege(s) for this operation") + require.EqualError(t, tk1.ExecToErr("select custom_both_dyn_priv_func()"), "[expression:1227]Access denied; you need (at least one of) the RESTRICTED_CUSTOM_DYN_PRIV_2 privilege(s) for this operation") + + // u1 in sem + require.NoError(t, tk1.Session().Auth(&auth.UserIdentity{Username: "u1", Hostname: "localhost"}, nil, nil)) + tk1.MustQuery("select custom_no_priv_func()").Check(testkit.Rows("zzz")) + require.EqualError(t, tk1.ExecToErr("select custom_only_dyn_priv_func()"), "[expression:1227]Access denied; you need (at least one of) the CUSTOM_DYN_PRIV_1 privilege(s) for this operation") + require.EqualError(t, tk1.ExecToErr("select custom_only_sem_dyn_priv_func()"), "[expression:1227]Access denied; you need (at least one of) the RESTRICTED_CUSTOM_DYN_PRIV_2 privilege(s) for this operation") + require.EqualError(t, tk1.ExecToErr("select custom_both_dyn_priv_func()"), "[expression:1227]Access denied; you need (at least one of) the RESTRICTED_CUSTOM_DYN_PRIV_2 privilege(s) for this operation") + + // u2 in sem + require.NoError(t, tk1.Session().Auth(&auth.UserIdentity{Username: "u2", Hostname: "localhost"}, nil, nil)) + tk1.MustQuery("select custom_no_priv_func()").Check(testkit.Rows("zzz")) + tk1.MustQuery("select custom_only_dyn_priv_func()").Check(testkit.Rows("abc")) + require.EqualError(t, tk1.ExecToErr("select custom_only_sem_dyn_priv_func()"), "[expression:1227]Access denied; you need (at least one of) the RESTRICTED_CUSTOM_DYN_PRIV_2 privilege(s) for this operation") + require.EqualError(t, tk1.ExecToErr("select custom_both_dyn_priv_func()"), "[expression:1227]Access denied; you need (at least one of) the RESTRICTED_CUSTOM_DYN_PRIV_2 privilege(s) for this operation") + + // u3 in sem + require.NoError(t, tk1.Session().Auth(&auth.UserIdentity{Username: "u3", Hostname: "localhost"}, nil, nil)) + tk1.MustQuery("select custom_no_priv_func()").Check(testkit.Rows("zzz")) + require.EqualError(t, tk1.ExecToErr("select custom_only_dyn_priv_func()"), "[expression:1227]Access denied; you need (at least one of) the CUSTOM_DYN_PRIV_1 privilege(s) for this operation") + tk1.MustQuery("select custom_only_sem_dyn_priv_func()").Check(testkit.Rows("def")) + tk1.MustQuery("select custom_both_dyn_priv_func()").Check(testkit.Rows("ghi")) + + // u4 in sem + require.NoError(t, tk1.Session().Auth(&auth.UserIdentity{Username: "u4", Hostname: "localhost"}, nil, nil)) + tk1.MustQuery("select custom_no_priv_func()").Check(testkit.Rows("zzz")) + tk1.MustQuery("select custom_only_dyn_priv_func()").Check(testkit.Rows("abc")) + tk1.MustQuery("select custom_only_sem_dyn_priv_func()").Check(testkit.Rows("def")) + tk1.MustQuery("select custom_both_dyn_priv_func()").Check(testkit.Rows("ghi")) +} diff --git a/extension/main_test.go b/extension/main_test.go new file mode 100644 index 0000000000000..7ffc36a917470 --- /dev/null +++ b/extension/main_test.go @@ -0,0 +1,33 @@ +// Copyright 2022 PingCAP, Inc. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +package extension + +import ( + "testing" + + "github.com/pingcap/tidb/testkit/testsetup" + "go.uber.org/goleak" +) + +func TestMain(m *testing.M) { + testsetup.SetupForCommonTest() + opts := []goleak.Option{ + goleak.IgnoreTopFunction("github.com/golang/glog.(*loggingT).flushDaemon"), + goleak.IgnoreTopFunction("github.com/lestrrat-go/httprc.runFetchWorker"), + goleak.IgnoreTopFunction("go.etcd.io/etcd/client/pkg/v3/logutil.(*MergeLogger).outputLoop"), + goleak.IgnoreTopFunction("go.opencensus.io/stats/view.(*worker).start"), + } + goleak.VerifyTestMain(m, opts...) +} diff --git a/extension/manifest.go b/extension/manifest.go new file mode 100644 index 0000000000000..4a11b93beb4b8 --- /dev/null +++ b/extension/manifest.go @@ -0,0 +1,213 @@ +// Copyright 2022 PingCAP, Inc. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +package extension + +import ( + "context" + + "github.com/ngaut/pools" + "github.com/pingcap/errors" + "github.com/pingcap/tidb/sessionctx/variable" + "github.com/pingcap/tidb/util/chunk" + clientv3 "go.etcd.io/etcd/client/v3" +) + +// SessionPool is the pool for session +type SessionPool interface { + Get() (pools.Resource, error) + Put(pools.Resource) +} + +// Option represents an option to initialize an extension +type Option func(m *Manifest) + +// WithCustomSysVariables specifies custom variables of an extension +func WithCustomSysVariables(vars []*variable.SysVar) Option { + return func(m *Manifest) { + m.sysVariables = vars + } +} + +// WithCustomDynPrivs specifies dynamic privileges of an extension +func WithCustomDynPrivs(privs []string) Option { + return func(m *Manifest) { + m.dynPrivs = privs + } +} + +// WithCustomFunctions specifies custom functions +func WithCustomFunctions(funcs []*FunctionDef) Option { + return func(m *Manifest) { + m.funcs = funcs + } +} + +// WithSessionHandlerFactory specifies a factory function to handle session +func WithSessionHandlerFactory(factory func() *SessionHandler) Option { + return func(m *Manifest) { + m.sessionHandlerFactory = factory + } +} + +// WithClose specifies the close function of an extension. +// It will be invoked when `extension.Reset` is called +func WithClose(fn func()) Option { + return func(m *Manifest) { + m.close = fn + } +} + +// BootstrapContext is the context used by extension in bootstrap +type BootstrapContext interface { + context.Context + // ExecuteSQL is used to execute a sql + ExecuteSQL(ctx context.Context, sql string) ([]chunk.Row, error) + // EtcdClient returns the etcd client + EtcdClient() *clientv3.Client + // SessionPool returns the session pool of domain + SessionPool() SessionPool +} + +// WithBootstrap specifies the bootstrap func of an extension +func WithBootstrap(fn func(BootstrapContext) error) Option { + return func(m *Manifest) { + m.bootstrap = fn + } +} + +// WithBootstrapSQL the bootstrap SQL list +func WithBootstrapSQL(sqlList ...string) Option { + return WithBootstrap(func(ctx BootstrapContext) error { + for _, sql := range sqlList { + if _, err := ctx.ExecuteSQL(ctx, sql); err != nil { + return err + } + } + return nil + }) +} + +// Manifest is an extension's manifest +type Manifest struct { + name string + sysVariables []*variable.SysVar + dynPrivs []string + bootstrap func(BootstrapContext) error + funcs []*FunctionDef + sessionHandlerFactory func() *SessionHandler + close func() +} + +// Name returns the extension's name +func (m *Manifest) Name() string { + return m.name +} + +func newManifestWithSetup(name string, factory func() ([]Option, error)) (_ *Manifest, _ func(), err error) { + clearBuilder := &clearFuncBuilder{} + defer func() { + if err != nil { + clearBuilder.Build()() + } + }() + + // new manifest with factory + m := &Manifest{name: name} + err = clearBuilder.DoWithCollectClear(func() (func(), error) { + options, err := factory() + if err != nil { + return nil, err + } + + for _, opt := range options { + opt(m) + } + + return m.close, nil + }) + + if err != nil { + return nil, nil, err + } + + // setup dynamic privileges + for i := range m.dynPrivs { + priv := m.dynPrivs[i] + err = clearBuilder.DoWithCollectClear(func() (func(), error) { + if err = RegisterDynamicPrivilege(priv); err != nil { + return nil, err + } + return func() { + RemoveDynamicPrivilege(priv) + }, nil + }) + if err != nil { + return nil, nil, err + } + } + + // setup sys vars + for i := range m.sysVariables { + sysVar := m.sysVariables[i] + err = clearBuilder.DoWithCollectClear(func() (func(), error) { + if sysVar == nil { + return nil, errors.New("system var should not be nil") + } + + if sysVar.Name == "" { + return nil, errors.New("system var name should not be empty") + } + + if variable.GetSysVar(sysVar.Name) != nil { + return nil, errors.Errorf("system var '%s' has already registered", sysVar.Name) + } + + variable.RegisterSysVar(sysVar) + return func() { + variable.UnregisterSysVar(sysVar.Name) + }, nil + }) + + if err != nil { + return nil, nil, err + } + } + + // setup functions + for i := range m.funcs { + def := m.funcs[i] + err = clearBuilder.DoWithCollectClear(func() (func(), error) { + if err := RegisterExtensionFunc(def); err != nil { + return nil, err + } + + return func() { + RemoveExtensionFunc(def.Name) + }, nil + }) + + if err != nil { + return nil, nil, err + } + } + + return m, clearBuilder.Build(), nil +} + +// RegisterDynamicPrivilege is used to resolve dependency cycle +var RegisterDynamicPrivilege func(string) error + +// RemoveDynamicPrivilege is used to resolve dependency cycle +var RemoveDynamicPrivilege func(string) bool diff --git a/extension/registry.go b/extension/registry.go new file mode 100644 index 0000000000000..4e838181f9b56 --- /dev/null +++ b/extension/registry.go @@ -0,0 +1,170 @@ +// Copyright 2022 PingCAP, Inc. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +package extension + +import ( + "sort" + "sync" + + "github.com/pingcap/errors" +) + +type registry struct { + sync.RWMutex + factories map[string]func() ([]Option, error) + extensionNames []string + setup bool + extensions *Extensions + close func() +} + +// Setup sets up the extensions +func (r *registry) Setup() error { + r.Lock() + defer r.Unlock() + + if _, err := r.doSetup(); err != nil { + return err + } + return nil +} + +// Extensions returns the extensions after setup +func (r *registry) Extensions() (*Extensions, error) { + r.RLock() + if r.setup { + extensions := r.extensions + r.RUnlock() + return extensions, nil + } + r.RUnlock() + + r.Lock() + defer r.Unlock() + return r.doSetup() +} + +// RegisterFactory registers a new extension with a factory +func (r *registry) RegisterFactory(name string, factory func() ([]Option, error)) error { + r.Lock() + defer r.Unlock() + + if r.setup { + return errors.New("Cannot register new extension because registry has already been setup") + } + + if name == "" { + return errors.New("extension name should not be empty") + } + + if _, ok := r.factories[name]; ok { + return errors.Errorf("extension with name '%s' already registered", name) + } + + if r.factories == nil { + r.factories = make(map[string]func() ([]Option, error)) + } + + r.factories[name] = factory + r.extensionNames = append(r.extensionNames, name) + sort.Strings(r.extensionNames) + return nil +} + +// Setup setups all extensions +func (r *registry) doSetup() (_ *Extensions, err error) { + if r.setup { + return r.extensions, nil + } + + if len(r.factories) == 0 { + r.extensions = nil + r.setup = true + return nil, nil + } + + clearBuilder := &clearFuncBuilder{} + defer func() { + if err != nil { + clearBuilder.Build()() + } + }() + + manifests := make([]*Manifest, 0, len(r.factories)) + for i := range r.extensionNames { + name := r.extensionNames[i] + err = clearBuilder.DoWithCollectClear(func() (func(), error) { + factory := r.factories[name] + m, clear, err := newManifestWithSetup(name, factory) + if err != nil { + return nil, err + } + manifests = append(manifests, m) + return clear, nil + }) + + if err != nil { + return nil, err + } + } + r.extensions = &Extensions{manifests: manifests} + r.setup = true + r.close = clearBuilder.Build() + return r.extensions, nil +} + +// Reset resets the registry. It is only used by test +func (r *registry) Reset() { + r.Lock() + defer r.Unlock() + + if r.close != nil { + r.close() + r.close = nil + } + r.factories = nil + r.extensionNames = nil + r.extensions = nil + r.setup = false +} + +var globalRegistry registry + +// RegisterFactory registers a new extension with a factory +func RegisterFactory(name string, factory func() ([]Option, error)) error { + return globalRegistry.RegisterFactory(name, factory) +} + +// Register registers a new extension with options +func Register(name string, options ...Option) error { + return RegisterFactory(name, func() ([]Option, error) { + return options, nil + }) +} + +// Setup setups extensions +func Setup() error { + return globalRegistry.Setup() +} + +// GetExtensions returns all extensions after setup +func GetExtensions() (*Extensions, error) { + return globalRegistry.Extensions() +} + +// Reset resets the registry. It is only used by test +func Reset() { + globalRegistry.Reset() +} diff --git a/extension/registry_test.go b/extension/registry_test.go new file mode 100644 index 0000000000000..6137d3b0ff013 --- /dev/null +++ b/extension/registry_test.go @@ -0,0 +1,186 @@ +// Copyright 2022 PingCAP, Inc. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +package extension_test + +import ( + "testing" + + "github.com/pingcap/errors" + "github.com/pingcap/tidb/extension" + "github.com/pingcap/tidb/privilege/privileges" + "github.com/pingcap/tidb/sessionctx/variable" + "github.com/stretchr/testify/require" +) + +func TestSetupExtensions(t *testing.T) { + defer func() { + extension.Reset() + }() + + extension.Reset() + require.NoError(t, extension.Setup()) + extensions, err := extension.GetExtensions() + require.NoError(t, err) + require.Equal(t, 0, len(extensions.Manifests())) + + extension.Reset() + require.NoError(t, extension.Register("test1")) + require.NoError(t, extension.Register("test2")) + require.NoError(t, extension.Setup()) + extensions, err = extension.GetExtensions() + require.NoError(t, err) + require.Equal(t, 2, len(extensions.Manifests())) + require.Equal(t, "test1", extensions.Manifests()[0].Name()) + require.Equal(t, "test2", extensions.Manifests()[1].Name()) +} + +func TestExtensionRegisterName(t *testing.T) { + defer func() { + extension.Reset() + }() + + // test empty name + extension.Reset() + require.EqualError(t, extension.Register(""), "extension name should not be empty") + + // test dup name + extension.Reset() + require.NoError(t, extension.Register("test")) + require.EqualError(t, extension.Register("test"), "extension with name 'test' already registered") +} + +func TestRegisterExtensionWithClose(t *testing.T) { + defer func() { + extension.Reset() + }() + + // normal register + extension.Reset() + cnt := 0 + require.NoError(t, extension.Register("test1", extension.WithClose(func() { + cnt++ + }))) + require.NoError(t, extension.Setup()) + require.Equal(t, 0, cnt) + + // reset will call close + extension.Reset() + require.Equal(t, 1, cnt) + + // reset again has no effect + extension.Reset() + require.Equal(t, 1, cnt) + + // Auto close when error + cnt = 0 + extension.Reset() + require.NoError(t, extension.Register("test1", extension.WithClose(func() { + cnt++ + }))) + require.NoError(t, extension.RegisterFactory("test2", func() ([]extension.Option, error) { + return nil, errors.New("error abc") + })) + require.EqualError(t, extension.Setup(), "error abc") + require.Equal(t, 1, cnt) +} + +func TestRegisterExtensionWithDyncPrivs(t *testing.T) { + defer func() { + extension.Reset() + }() + + origDynPrivs := privileges.GetDynamicPrivileges() + origDynPrivs = append([]string{}, origDynPrivs...) + + extension.Reset() + require.NoError(t, extension.Register("test", extension.WithCustomDynPrivs([]string{"priv1", "priv2"}))) + require.NoError(t, extension.Setup()) + privs := privileges.GetDynamicPrivileges() + require.Equal(t, origDynPrivs, privs[:len(origDynPrivs)]) + require.Equal(t, []string{"PRIV1", "PRIV2"}, privs[len(origDynPrivs):]) + + // test for empty dynamic privilege name + extension.Reset() + require.NoError(t, extension.Register("test", extension.WithCustomDynPrivs([]string{"priv1", ""}))) + require.EqualError(t, extension.Setup(), "privilege name should not be empty") + require.Equal(t, origDynPrivs, privileges.GetDynamicPrivileges()) + + // test for duplicate name with builtin + extension.Reset() + require.NoError(t, extension.Register("test", extension.WithCustomDynPrivs([]string{"priv1", "ROLE_ADMIN"}))) + require.EqualError(t, extension.Setup(), "privilege is already registered") + require.Equal(t, origDynPrivs, privileges.GetDynamicPrivileges()) + + // test for duplicate name with other extension + extension.Reset() + require.NoError(t, extension.Register("test1", extension.WithCustomDynPrivs([]string{"priv1"}))) + require.NoError(t, extension.Register("test2", extension.WithCustomDynPrivs([]string{"priv2", "priv1"}))) + require.EqualError(t, extension.Setup(), "privilege is already registered") + require.Equal(t, origDynPrivs, privileges.GetDynamicPrivileges()) +} + +func TestRegisterExtensionWithSysVars(t *testing.T) { + defer func() { + extension.Reset() + }() + + sysVar1 := &variable.SysVar{ + Scope: variable.ScopeGlobal | variable.ScopeSession, + Name: "var1", + Value: variable.On, + Type: variable.TypeBool, + } + + sysVar2 := &variable.SysVar{ + Scope: variable.ScopeSession, + Name: "var2", + Value: "val2", + Type: variable.TypeStr, + } + + // normal register + extension.Reset() + require.NoError(t, extension.Register("test", extension.WithCustomSysVariables([]*variable.SysVar{sysVar1, sysVar2}))) + require.NoError(t, extension.Setup()) + require.Same(t, sysVar1, variable.GetSysVar("var1")) + require.Same(t, sysVar2, variable.GetSysVar("var2")) + + // test for empty name + extension.Reset() + require.NoError(t, extension.Register("test", extension.WithCustomSysVariables([]*variable.SysVar{ + {Scope: variable.ScopeGlobal, Name: "", Value: "val3"}, + }))) + require.EqualError(t, extension.Setup(), "system var name should not be empty") + require.Nil(t, variable.GetSysVar("")) + + // test for duplicate name with builtin + extension.Reset() + require.NoError(t, extension.Register("test", extension.WithCustomSysVariables([]*variable.SysVar{ + sysVar1, + {Scope: variable.ScopeGlobal, Name: variable.TiDBSnapshot, Value: "val3"}, + }))) + require.EqualError(t, extension.Setup(), "system var 'tidb_snapshot' has already registered") + require.Nil(t, variable.GetSysVar("var1")) + require.Equal(t, "", variable.GetSysVar(variable.TiDBSnapshot).Value) + require.Equal(t, variable.ScopeSession, variable.GetSysVar(variable.TiDBSnapshot).Scope) + + // test for duplicate name with other extension + extension.Reset() + require.NoError(t, extension.Register("test1", extension.WithCustomSysVariables([]*variable.SysVar{sysVar1, sysVar2}))) + require.NoError(t, extension.Register("test2", extension.WithCustomSysVariables([]*variable.SysVar{sysVar1}))) + require.EqualError(t, extension.Setup(), "system var 'var1' has already registered") + require.Nil(t, variable.GetSysVar("var1")) + require.Nil(t, variable.GetSysVar("var2")) +} diff --git a/extension/session.go b/extension/session.go new file mode 100644 index 0000000000000..e35f31ec68920 --- /dev/null +++ b/extension/session.go @@ -0,0 +1,147 @@ +// Copyright 2022 PingCAP, Inc. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +package extension + +import ( + "github.com/pingcap/tidb/parser" + "github.com/pingcap/tidb/parser/ast" + "github.com/pingcap/tidb/parser/auth" + "github.com/pingcap/tidb/sessionctx/stmtctx" + "github.com/pingcap/tidb/sessionctx/variable" + "github.com/pingcap/tidb/types" +) + +// ConnEventInfo is the connection info for the event +type ConnEventInfo struct { + *variable.ConnectionInfo + ActiveRoles []*auth.RoleIdentity + Error error +} + +// ConnEventTp is the type of the connection event +type ConnEventTp uint8 + +const ( + // ConnConnected means connection connected, but not handshake yet + ConnConnected ConnEventTp = iota + // ConnHandshakeAccepted means connection is accepted after handshake + ConnHandshakeAccepted + // ConnHandshakeRejected means connections is rejected after handshake + ConnHandshakeRejected + // ConnReset means the connection is reset + ConnReset + // ConnDisconnected means the connection is disconnected + ConnDisconnected +) + +// StmtEventTp is the type of the statement event +type StmtEventTp uint8 + +const ( + // StmtError means the stmt is failed + StmtError StmtEventTp = iota + // StmtSuccess means the stmt is successfully executed + StmtSuccess +) + +// StmtEventInfo is the information of stmt event +type StmtEventInfo interface { + // User returns the user of the session + User() *auth.UserIdentity + // ActiveRoles returns the active roles of the user + ActiveRoles() []*auth.RoleIdentity + // CurrentDB returns the current database + CurrentDB() string + // ConnectionInfo returns the connection info of the current session + ConnectionInfo() *variable.ConnectionInfo + // StmtNode returns the parsed ast of the statement + // When parse error, this method will return a nil value + StmtNode() ast.StmtNode + // ExecuteStmtNode will return the `ast.ExecuteStmt` node when the current statement is EXECUTE, + // otherwise a nil value will be returned + ExecuteStmtNode() *ast.ExecuteStmt + // ExecutePreparedStmt will return the prepared stmt node for the EXECUTE statement. + // If the current statement is not EXECUTE or prepared statement is not found, a nil value will be returned + ExecutePreparedStmt() ast.StmtNode + // PreparedParams will return the params for the EXECUTE statement + PreparedParams() []types.Datum + // OriginalText will return the text of the statement. + // Notice that for the EXECUTE statement, the prepared statement text will be used as the return value + OriginalText() string + // SQLDigest will return the normalized and redact text of the `OriginalText()` + SQLDigest() (normalized string, digest *parser.Digest) + // AffectedRows will return the affected rows of the current statement + AffectedRows() uint64 + // RelatedTables will return the related tables of the current statement + RelatedTables() []stmtctx.TableEntry + // GetError will return the error when the current statement is failed + GetError() error +} + +// SessionHandler is used to listen session events +type SessionHandler struct { + OnConnectionEvent func(ConnEventTp, *ConnEventInfo) + OnStmtEvent func(StmtEventTp, StmtEventInfo) +} + +func newSessionExtensions(es *Extensions) *SessionExtensions { + connExtensions := &SessionExtensions{} + for _, m := range es.Manifests() { + if m.sessionHandlerFactory != nil { + if handler := m.sessionHandlerFactory(); handler != nil { + if fn := handler.OnConnectionEvent; fn != nil { + connExtensions.connectionEventFuncs = append(connExtensions.connectionEventFuncs, fn) + } + if fn := handler.OnStmtEvent; fn != nil { + connExtensions.stmtEventFuncs = append(connExtensions.stmtEventFuncs, fn) + } + } + } + } + return connExtensions +} + +// SessionExtensions is the extensions +type SessionExtensions struct { + connectionEventFuncs []func(ConnEventTp, *ConnEventInfo) + stmtEventFuncs []func(StmtEventTp, StmtEventInfo) +} + +// OnConnectionEvent will be called when a connection event happens +func (es *SessionExtensions) OnConnectionEvent(tp ConnEventTp, event *ConnEventInfo) { + if es == nil { + return + } + + for _, fn := range es.connectionEventFuncs { + fn(tp, event) + } +} + +// HasStmtEventListeners returns a bool that indicates if any stmt event listener exists +func (es *SessionExtensions) HasStmtEventListeners() bool { + return es != nil && len(es.stmtEventFuncs) > 0 +} + +// OnStmtEvent will be called when a stmt event happens +func (es *SessionExtensions) OnStmtEvent(tp StmtEventTp, event StmtEventInfo) { + if es == nil { + return + } + + for _, fn := range es.stmtEventFuncs { + fn(tp, event) + } +} diff --git a/extension/util.go b/extension/util.go new file mode 100644 index 0000000000000..0d0ab6cff7084 --- /dev/null +++ b/extension/util.go @@ -0,0 +1,42 @@ +// Copyright 2022 PingCAP, Inc. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +package extension + +type clearFuncBuilder struct { + clears []func() +} + +// DoWithCollectClear executes a function and collect it clear function +func (b *clearFuncBuilder) DoWithCollectClear(fn func() (func(), error)) error { + clear, err := fn() + if err != nil { + return err + } + + if clear != nil { + b.clears = append(b.clears, clear) + } + + return nil +} + +// Build builds a clear function +func (b *clearFuncBuilder) Build() func() { + return func() { + for _, fn := range b.clears { + fn() + } + } +} diff --git a/go.mod b/go.mod index 853421bf23d5d..01400b701b85b 100644 --- a/go.mod +++ b/go.mod @@ -57,6 +57,7 @@ require ( github.com/kisielk/errcheck v1.6.2 github.com/klauspost/compress v1.15.1 github.com/kyoh86/exportloopref v0.1.8 + github.com/lestrrat-go/jwx/v2 v2.0.6 github.com/mgechev/revive v1.2.4 github.com/ngaut/pools v0.0.0-20180318154953-b7bc8c42aac7 github.com/nishanths/predeclared v0.2.2 @@ -67,11 +68,11 @@ require ( github.com/pingcap/errors v0.11.5-0.20220729040631-518f63d66278 github.com/pingcap/failpoint v0.0.0-20220423142525-ae43b7f4e5c3 github.com/pingcap/fn v0.0.0-20200306044125-d5540d389059 - github.com/pingcap/kvproto v0.0.0-20220929075948-06e08d5ed64c - github.com/pingcap/log v1.1.0 + github.com/pingcap/kvproto v0.0.0-20221103025916-e7e21f0e9cd9 + github.com/pingcap/log v1.1.1-0.20221110065318-21a4942860b3 github.com/pingcap/sysutil v0.0.0-20220114020952-ea68d2dbf5b4 github.com/pingcap/tidb/parser v0.0.0-20211011031125-9b13dc409c5e - github.com/pingcap/tipb v0.0.0-20220824081009-0714a57aff1d + github.com/pingcap/tipb v0.0.0-20221020071514-cd933387bcb5 github.com/pkg/errors v0.9.1 github.com/prometheus/client_golang v1.13.0 github.com/prometheus/client_model v0.2.0 @@ -85,11 +86,12 @@ require ( github.com/stretchr/testify v1.8.0 github.com/tdakkota/asciicheck v0.1.1 github.com/tiancaiamao/appdash v0.0.0-20181126055449-889f96f722a2 - github.com/tikv/client-go/v2 v2.0.1-0.20221012074856-6def8d7b90c4 - github.com/tikv/pd/client v0.0.0-20221010134149-d50e5fe43f14 + github.com/tikv/client-go/v2 v2.0.3-0.20221108030801-9c0835c80eba + github.com/tikv/pd/client v0.0.0-20221031025758-80f0d8ca4d07 github.com/timakin/bodyclose v0.0.0-20210704033933-f49887972144 github.com/twmb/murmur3 v1.1.3 github.com/uber/jaeger-client-go v2.22.1+incompatible + github.com/vbauerster/mpb/v7 v7.5.3 github.com/wangjohn/quickselect v0.0.0-20161129230411-ed8402a42d5f github.com/xitongsys/parquet-go v1.5.5-0.20201110004701-b09c49d6d457 github.com/xitongsys/parquet-go-source v0.0.0-20200817004010-026bad9b25d0 @@ -103,14 +105,14 @@ require ( go.uber.org/automaxprocs v1.4.0 go.uber.org/goleak v1.2.0 go.uber.org/multierr v1.8.0 - go.uber.org/zap v1.21.0 + go.uber.org/zap v1.23.0 golang.org/x/exp v0.0.0-20220722155223-a9213eeb770e - golang.org/x/net v0.0.0-20220722155237-a158d28d115b + golang.org/x/net v0.1.0 golang.org/x/oauth2 v0.0.0-20220411215720-9780585627b5 golang.org/x/sync v0.0.0-20220722155255-886fb9371eb4 - golang.org/x/sys v0.0.0-20220928140112-f11e5e49a4ec - golang.org/x/term v0.0.0-20210927222741-03fcf44c2211 - golang.org/x/text v0.3.7 + golang.org/x/sys v0.1.0 + golang.org/x/term v0.1.0 + golang.org/x/text v0.4.0 golang.org/x/time v0.0.0-20220224211638-0e9765cccd65 golang.org/x/tools v0.1.12 google.golang.org/api v0.74.0 @@ -129,7 +131,8 @@ require ( github.com/Azure/azure-sdk-for-go/sdk/internal v0.8.1 // indirect github.com/DataDog/zstd v1.4.5 // indirect github.com/HdrHistogram/hdrhistogram-go v1.1.2 // indirect - github.com/VividCortex/ewma v1.1.1 // indirect + github.com/VividCortex/ewma v1.2.0 // indirect + github.com/acarl005/stripansi v0.0.0-20180116102854-5a71ef0e047d // indirect github.com/alecthomas/units v0.0.0-20190924025748-f65c72e2690d // indirect github.com/apache/thrift v0.13.1-0.20201008052519-daf620915714 // indirect github.com/benbjohnson/clock v1.3.0 // indirect @@ -145,6 +148,7 @@ require ( github.com/coreos/go-systemd/v22 v22.3.2 // indirect github.com/cznic/mathutil v0.0.0-20181122101859-297441e03548 // indirect github.com/davecgh/go-spew v1.1.1 // indirect + github.com/decred/dcrd/dcrec/secp256k1/v4 v4.1.0 // indirect github.com/dustin/go-humanize v1.0.0 // indirect github.com/eapache/go-resiliency v1.2.0 // indirect github.com/eapache/go-xerial-snappy v0.0.0-20180814174437-776d5712da21 // indirect @@ -155,6 +159,7 @@ require ( github.com/go-kit/kit v0.9.0 // indirect github.com/go-logfmt/logfmt v0.5.1 // indirect github.com/go-ole/go-ole v1.2.6 // indirect + github.com/goccy/go-json v0.9.11 // indirect github.com/golang/glog v1.0.0 // indirect github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect github.com/google/go-cmp v0.5.8 // indirect @@ -179,6 +184,11 @@ require ( github.com/klauspost/cpuid v1.3.1 // indirect github.com/kr/pretty v0.3.0 // indirect github.com/kr/text v0.2.0 // indirect + github.com/lestrrat-go/blackmagic v1.0.1 // indirect + github.com/lestrrat-go/httpcc v1.0.1 // indirect + github.com/lestrrat-go/httprc v1.0.4 // indirect + github.com/lestrrat-go/iter v1.0.2 // indirect + github.com/lestrrat-go/option v1.0.0 // indirect github.com/lufia/plan9stats v0.0.0-20211012122336-39d0f177ccd0 // indirect github.com/mattn/go-colorable v0.1.13 // indirect github.com/mattn/go-isatty v0.0.16 // indirect @@ -203,7 +213,7 @@ require ( github.com/rivo/uniseg v0.4.2 // indirect github.com/rogpeppe/go-internal v1.6.1 // indirect github.com/shurcooL/httpfs v0.0.0-20190707220628-8d4bc4ba7749 // indirect - github.com/shurcooL/vfsgen v0.0.0-20180711163814-62bca832be04 // indirect + github.com/shurcooL/vfsgen v0.0.0-20181202132449-6a9ea43bcacd // indirect github.com/sirupsen/logrus v1.9.0 // indirect github.com/stathat/consistent v1.0.0 // indirect github.com/tklauser/go-sysconf v0.3.10 // indirect @@ -226,7 +236,7 @@ require ( go.opentelemetry.io/otel/sdk/metric v0.20.0 // indirect go.opentelemetry.io/otel/trace v0.20.0 // indirect go.opentelemetry.io/proto/otlp v0.7.0 // indirect - golang.org/x/crypto v0.0.0-20220411220226-7b82a4e95df4 // indirect + golang.org/x/crypto v0.1.0 // indirect golang.org/x/exp/typeparams v0.0.0-20220613132600-b0d781184e0d // indirect golang.org/x/mod v0.6.0-dev.0.20220419223038-86c51ed26bb4 // indirect golang.org/x/xerrors v0.0.0-20220411194840-2f41105eb62f // indirect diff --git a/go.sum b/go.sum index 3b5ae428f06fd..0730b5193bd55 100644 --- a/go.sum +++ b/go.sum @@ -96,8 +96,11 @@ github.com/Shopify/sarama v1.29.0/go.mod h1:2QpgD79wpdAESqNQMxNc0KYMkycd4slxGdV3 github.com/Shopify/toxiproxy v2.1.4+incompatible h1:TKdv8HiTLgE5wdJuEML90aBgNWsokNbMijUGhmcoBJc= github.com/Shopify/toxiproxy v2.1.4+incompatible/go.mod h1:OXgGpZ6Cli1/URJOF1DMxUHB2q5Ap20/P/eIdh4G0pI= github.com/StackExchange/wmi v0.0.0-20180725035823-b12b22c5341f/go.mod h1:3eOhrUMpNV+6aFIbp5/iudMxNCF27Vw2OZgy4xEx0Fg= -github.com/VividCortex/ewma v1.1.1 h1:MnEK4VOv6n0RSY4vtRe3h11qjxL3+t0B8yOL8iMXdcM= github.com/VividCortex/ewma v1.1.1/go.mod h1:2Tkkvm3sRDVXaiyucHiACn4cqf7DpdyLvmxzcbUokwA= +github.com/VividCortex/ewma v1.2.0 h1:f58SaIzcDXrSy3kWaHNvuJgJ3Nmz59Zji6XoJR/q1ow= +github.com/VividCortex/ewma v1.2.0/go.mod h1:nz4BbCtbLyFDeC9SUHbtcT5644juEuWfUAUnGx7j5l4= +github.com/acarl005/stripansi v0.0.0-20180116102854-5a71ef0e047d h1:licZJFw2RwpHMqeKTCYkitsPqHNxTmd4SNR5r94FGM8= +github.com/acarl005/stripansi v0.0.0-20180116102854-5a71ef0e047d/go.mod h1:asat636LX7Bqt5lYEZ27JNDcqxfjdBQuJ/MM4CN/Lzo= github.com/ajg/form v1.5.1/go.mod h1:uL1WgH+h2mgNtvBq0339dVnzXdBETtL2LeUXaIv25UY= github.com/ajstarks/svgo v0.0.0-20180226025133-644b8db467af/go.mod h1:K08gAheRH3/J6wwsYMMT4xOr94bZjxIelGM0+d/wbFw= github.com/alecthomas/template v0.0.0-20160405071501-a0175ee3bccc/go.mod h1:LOuyumcjzFXgccqObfd/Ljyb9UuFJ6TxHnclSeseNhc= @@ -224,6 +227,9 @@ github.com/danjacques/gofslock v0.0.0-20191023191349-0a45f885bc37/go.mod h1:DC3J github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c= github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= +github.com/decred/dcrd/crypto/blake256 v1.0.0/go.mod h1:sQl2p6Y26YV+ZOcSTP6thNdn47hh8kt6rqSlvmrXFAc= +github.com/decred/dcrd/dcrec/secp256k1/v4 v4.1.0 h1:HbphB4TFFXpv7MNrT52FGrrgVXF1owhMVTHFZIlnvd4= +github.com/decred/dcrd/dcrec/secp256k1/v4 v4.1.0/go.mod h1:DZGJHZMqrU4JJqFAWUS2UO1+lbSKsdiOoYi9Zzey7Fc= github.com/dgraph-io/badger v1.6.0/go.mod h1:zwt7syl517jmP8s94KqSxTlM6IMsdhYy6psNgSztDR4= github.com/dgraph-io/ristretto v0.1.1-0.20220403145359-8e850b710d6d h1:Wrc3UKTS+cffkOx0xRGFC+ZesNuTfn0ThvEC72N0krk= github.com/dgraph-io/ristretto v0.1.1-0.20220403145359-8e850b710d6d/go.mod h1:RAy2GVV4sTWVlNMavv3xhLsk18rxhfhDnombTe6EF5c= @@ -328,6 +334,8 @@ github.com/go-stack/stack v1.8.0/go.mod h1:v0f6uXyyMGvRgIKkXu+yp6POWl0qKG85gN/me github.com/gobwas/httphead v0.0.0-20180130184737-2c6c146eadee/go.mod h1:L0fX3K22YWvt/FAX9NnzrNzcI4wNYi9Yku4O0LKYflo= github.com/gobwas/pool v0.2.0/go.mod h1:q8bcK0KcYlCgd9e7WYLm9LpyS+YeLd8JVDW6WezmKEw= github.com/gobwas/ws v1.0.2/go.mod h1:szmBTxLgaFppYjEmNtny/v3w89xOydFnnZMcgRRu/EM= +github.com/goccy/go-json v0.9.11 h1:/pAaQDLHEoCq/5FFmSKBswWmK6H0e8g4159Kc/X/nqk= +github.com/goccy/go-json v0.9.11/go.mod h1:6MelG93GURQebXPDq3khkgXZkazVtN9CRI+MGFi0w8I= github.com/godbus/dbus/v5 v5.0.4/go.mod h1:xhWf0FNVPg57R7Z0UbKHbJfkEywrmjJnf7w5xrFpKfA= github.com/gogo/googleapis v0.0.0-20180223154316-0cd9801be74a/go.mod h1:gf4bu3Q80BeJ6H1S1vYPm8/ELATdvryBaNFGgqEef3s= github.com/gogo/protobuf v0.0.0-20171007142547-342cbe0a0415/go.mod h1:r8qH/GZQm5c6nD/R0oafs1akxWv10x8SbQlK7atdtwQ= @@ -624,6 +632,18 @@ github.com/kyoh86/exportloopref v0.1.8 h1:5Ry/at+eFdkX9Vsdw3qU4YkvGtzuVfzT4X7S77 github.com/kyoh86/exportloopref v0.1.8/go.mod h1:1tUcJeiioIs7VWe5gcOObrux3lb66+sBqGZrRkMwPgg= github.com/labstack/echo/v4 v4.1.11/go.mod h1:i541M3Fj6f76NZtHSj7TXnyM8n2gaodfvfxNnFqi74g= github.com/labstack/gommon v0.3.0/go.mod h1:MULnywXg0yavhxWKc+lOruYdAhDwPK9wf0OL7NoOu+k= +github.com/lestrrat-go/blackmagic v1.0.1 h1:lS5Zts+5HIC/8og6cGHb0uCcNCa3OUt1ygh3Qz2Fe80= +github.com/lestrrat-go/blackmagic v1.0.1/go.mod h1:UrEqBzIR2U6CnzVyUtfM6oZNMt/7O7Vohk2J0OGSAtU= +github.com/lestrrat-go/httpcc v1.0.1 h1:ydWCStUeJLkpYyjLDHihupbn2tYmZ7m22BGkcvZZrIE= +github.com/lestrrat-go/httpcc v1.0.1/go.mod h1:qiltp3Mt56+55GPVCbTdM9MlqhvzyuL6W/NMDA8vA5E= +github.com/lestrrat-go/httprc v1.0.4 h1:bAZymwoZQb+Oq8MEbyipag7iSq6YIga8Wj6GOiJGdI8= +github.com/lestrrat-go/httprc v1.0.4/go.mod h1:mwwz3JMTPBjHUkkDv/IGJ39aALInZLrhBp0X7KGUZlo= +github.com/lestrrat-go/iter v1.0.2 h1:gMXo1q4c2pHmC3dn8LzRhJfP1ceCbgSiT9lUydIzltI= +github.com/lestrrat-go/iter v1.0.2/go.mod h1:Momfcq3AnRlRjI5b5O8/G5/BvpzrhoFTZcn06fEOPt4= +github.com/lestrrat-go/jwx/v2 v2.0.6 h1:RlyYNLV892Ed7+FTfj1ROoF6x7WxL965PGTHso/60G0= +github.com/lestrrat-go/jwx/v2 v2.0.6/go.mod h1:aVrGuwEr3cp2Prw6TtQvr8sQxe+84gruID5C9TxT64Q= +github.com/lestrrat-go/option v1.0.0 h1:WqAWL8kh8VcSoD6xjSH34/1m8yxluXQbDeKNfvFeEO4= +github.com/lestrrat-go/option v1.0.0/go.mod h1:5ZHFbivi4xwXxhxY9XHDe2FHo6/Z7WWmtT7T5nBBp3I= github.com/lib/pq v1.0.0/go.mod h1:5WUZQaWbwv1U+lTReE5YruASi9Al49XbQIvNi/34Woo= github.com/lightstep/lightstep-tracer-go v0.15.6/go.mod h1:6AMpwZpsyCFwSovxzM78e+AsYxE8sGwiM6C3TytaWeI= github.com/lufia/plan9stats v0.0.0-20211012122336-39d0f177ccd0 h1:6E+4a0GO5zZEnZ81pIr0yLvtUWk2if982qA3F3QD6H4= @@ -647,6 +667,7 @@ github.com/mattn/go-isatty v0.0.16/go.mod h1:kYGgaQfpe5nmfYZH+SKPsOc2e4SrIfOl2e/ github.com/mattn/go-runewidth v0.0.4/go.mod h1:LwmH8dsx7+W8Uxz3IHJYH5QSwggIsqBzpuz5H//U1FU= github.com/mattn/go-runewidth v0.0.9/go.mod h1:H031xJmbD/WCDINGzjvQ9THkh0rPKHF+m2gUSrubnMI= github.com/mattn/go-runewidth v0.0.12/go.mod h1:RAqKPSqVFrSLVXbA8x7dzmKdmGzieGRCM46jaSJTDAk= +github.com/mattn/go-runewidth v0.0.13/go.mod h1:Jdepj2loyihRzMpdS35Xk/zdY8IAYHsh153qUoGf23w= github.com/mattn/go-runewidth v0.0.14 h1:+xnbZSEeDbOIg5/mE6JF0w6n9duR1l3/WmbinWVwUuU= github.com/mattn/go-runewidth v0.0.14/go.mod h1:Jdepj2loyihRzMpdS35Xk/zdY8IAYHsh153qUoGf23w= github.com/mattn/goveralls v0.0.2/go.mod h1:8d1ZMHsd7fW6IRPKQh46F2WRpyib5/X4FOpevwGNQEw= @@ -755,19 +776,19 @@ github.com/pingcap/fn v0.0.0-20200306044125-d5540d389059/go.mod h1:fMRU1BA1y+r89 github.com/pingcap/goleveldb v0.0.0-20191226122134-f82aafb29989 h1:surzm05a8C9dN8dIUmo4Be2+pMRb6f55i+UIYrluu2E= github.com/pingcap/goleveldb v0.0.0-20191226122134-f82aafb29989/go.mod h1:O17XtbryoCJhkKGbT62+L2OlrniwqiGLSqrmdHCMzZw= github.com/pingcap/kvproto v0.0.0-20191211054548-3c6b38ea5107/go.mod h1:WWLmULLO7l8IOcQG+t+ItJ3fEcrL5FxF0Wu+HrMy26w= -github.com/pingcap/kvproto v0.0.0-20220818063303-5c20f55db5ad/go.mod h1:OYtxs0786qojVTmkVeufx93xe+jUgm56GUYRIKnmaGI= -github.com/pingcap/kvproto v0.0.0-20220929075948-06e08d5ed64c h1:ceg4xjEEXNgPsScTQ5dtidiltLF4h17Y/jUqfyLAy9E= -github.com/pingcap/kvproto v0.0.0-20220929075948-06e08d5ed64c/go.mod h1:OYtxs0786qojVTmkVeufx93xe+jUgm56GUYRIKnmaGI= +github.com/pingcap/kvproto v0.0.0-20221026112947-f8d61344b172/go.mod h1:OYtxs0786qojVTmkVeufx93xe+jUgm56GUYRIKnmaGI= +github.com/pingcap/kvproto v0.0.0-20221103025916-e7e21f0e9cd9 h1:ho5XUD8DVCnkpEj8oiTR57FXDTXnH6znyLe0gyrtzKk= +github.com/pingcap/kvproto v0.0.0-20221103025916-e7e21f0e9cd9/go.mod h1:OYtxs0786qojVTmkVeufx93xe+jUgm56GUYRIKnmaGI= github.com/pingcap/log v0.0.0-20191012051959-b742a5d432e9/go.mod h1:4rbK1p9ILyIfb6hU7OG2CiWSqMXnp3JMbiaVJ6mvoY8= github.com/pingcap/log v0.0.0-20200511115504-543df19646ad/go.mod h1:4rbK1p9ILyIfb6hU7OG2CiWSqMXnp3JMbiaVJ6mvoY8= github.com/pingcap/log v0.0.0-20210625125904-98ed8e2eb1c7/go.mod h1:8AanEdAHATuRurdGxZXBz0At+9avep+ub7U1AGYLIMM= -github.com/pingcap/log v0.0.0-20211215031037-e024ba4eb0ee/go.mod h1:DWQW5jICDR7UJh4HtxXSM20Churx4CQL0fwL/SoOSA4= -github.com/pingcap/log v1.1.0 h1:ELiPxACz7vdo1qAvvaWJg1NrYFoY6gqAh/+Uo6aXdD8= -github.com/pingcap/log v1.1.0/go.mod h1:DWQW5jICDR7UJh4HtxXSM20Churx4CQL0fwL/SoOSA4= +github.com/pingcap/log v1.1.1-0.20221015072633-39906604fb81/go.mod h1:DWQW5jICDR7UJh4HtxXSM20Churx4CQL0fwL/SoOSA4= +github.com/pingcap/log v1.1.1-0.20221110065318-21a4942860b3 h1:T7e5Low0BU2ZazI2dz2mh3W1qv+w8wtvq1YR8DneA0c= +github.com/pingcap/log v1.1.1-0.20221110065318-21a4942860b3/go.mod h1:DWQW5jICDR7UJh4HtxXSM20Churx4CQL0fwL/SoOSA4= github.com/pingcap/sysutil v0.0.0-20220114020952-ea68d2dbf5b4 h1:HYbcxtnkN3s5tqrZ/z3eJS4j3Db8wMphEm1q10lY/TM= github.com/pingcap/sysutil v0.0.0-20220114020952-ea68d2dbf5b4/go.mod h1:sDCsM39cGiv2vwunZkaFA917vVkqDTGSPbbV7z4Oops= -github.com/pingcap/tipb v0.0.0-20220824081009-0714a57aff1d h1:kWYridgsn8xSKYJ2EkXp7uj5HwJnG5snpY3XP8oYmPU= -github.com/pingcap/tipb v0.0.0-20220824081009-0714a57aff1d/go.mod h1:A7mrd7WHBl1o63LE2bIBGEJMTNWXqhgmYiOvMLxozfs= +github.com/pingcap/tipb v0.0.0-20221020071514-cd933387bcb5 h1:Yoo8j5xQGxjlsC3yt0ndsiAz0WZXED9rzsKmEN0U0DY= +github.com/pingcap/tipb v0.0.0-20221020071514-cd933387bcb5/go.mod h1:A7mrd7WHBl1o63LE2bIBGEJMTNWXqhgmYiOvMLxozfs= github.com/pkg/browser v0.0.0-20180916011732-0a3d74bf9ce4 h1:49lOXmGaUpV9Fz3gd7TFZY106KVlPVa5jcYD1gaQf98= github.com/pkg/browser v0.0.0-20180916011732-0a3d74bf9ce4/go.mod h1:4OwLy04Bl9Ef3GJJCoec+30X3LQs/0/m4HFRt/2LUSA= github.com/pkg/errors v0.8.0/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0= @@ -852,8 +873,9 @@ github.com/shurcooL/httpfs v0.0.0-20190707220628-8d4bc4ba7749/go.mod h1:ZY1cvUeJ github.com/shurcooL/httpgzip v0.0.0-20190720172056-320755c1c1b0 h1:mj/nMDAwTBiaCqMEs4cYCqF7pO6Np7vhy1D1wcQGz+E= github.com/shurcooL/httpgzip v0.0.0-20190720172056-320755c1c1b0/go.mod h1:919LwcH0M7/W4fcZ0/jy0qGght1GIhqyS/EgWGH2j5Q= github.com/shurcooL/sanitized_anchor_name v1.0.0/go.mod h1:1NzhyTcUVG4SuEtjjoZeVRXNmyL/1OwPU0+IJeTBvfc= -github.com/shurcooL/vfsgen v0.0.0-20180711163814-62bca832be04 h1:y0cMJ0qjii33BnD6tMGcF/+gHYsoKQ6tbwQpy233OII= github.com/shurcooL/vfsgen v0.0.0-20180711163814-62bca832be04/go.mod h1:TrYk7fJVaAttu97ZZKrO9UbRa8izdowaMIZcxYMbVaw= +github.com/shurcooL/vfsgen v0.0.0-20181202132449-6a9ea43bcacd h1:ug7PpSOB5RBPK1Kg6qskGBoP3Vnj/aNYFTznWvlkGo0= +github.com/shurcooL/vfsgen v0.0.0-20181202132449-6a9ea43bcacd/go.mod h1:TrYk7fJVaAttu97ZZKrO9UbRa8izdowaMIZcxYMbVaw= github.com/sirupsen/logrus v1.2.0/go.mod h1:LxeOpSwHxABJmUn/MG1IvRgCAasNZTLOkJPxbbu5VWo= github.com/sirupsen/logrus v1.4.2/go.mod h1:tLMulIdttU9McNUspp0xgXVQah82FyeX6MwdIuYE2rE= github.com/sirupsen/logrus v1.6.0/go.mod h1:7uNnSEd1DgxDLC74fIahvMZmmYsHGZGEOFrfsX/uA88= @@ -905,10 +927,10 @@ github.com/tenntenn/text/transform v0.0.0-20200319021203-7eef512accb3 h1:f+jULpR github.com/tenntenn/text/transform v0.0.0-20200319021203-7eef512accb3/go.mod h1:ON8b8w4BN/kE1EOhwT0o+d62W65a6aPw1nouo9LMgyY= github.com/tiancaiamao/appdash v0.0.0-20181126055449-889f96f722a2 h1:mbAskLJ0oJfDRtkanvQPiooDH8HvJ2FBh+iKT/OmiQQ= github.com/tiancaiamao/appdash v0.0.0-20181126055449-889f96f722a2/go.mod h1:2PfKggNGDuadAa0LElHrByyrz4JPZ9fFx6Gs7nx7ZZU= -github.com/tikv/client-go/v2 v2.0.1-0.20221012074856-6def8d7b90c4 h1:/13jzD/AR7v3dCLweFQ2JG8bihh3HLVIci2tbOHHGW0= -github.com/tikv/client-go/v2 v2.0.1-0.20221012074856-6def8d7b90c4/go.mod h1:gdXot2ofS2EOGtrXQ2qyESonQX/gFmgtfBCqCOSWg9E= -github.com/tikv/pd/client v0.0.0-20221010134149-d50e5fe43f14 h1:REQOR1XraH1fT9BCoNBPZs1CAe+w7VPLU+d+si7DLYo= -github.com/tikv/pd/client v0.0.0-20221010134149-d50e5fe43f14/go.mod h1:E/7+Fkqzwsrp4duzJ2gLPqFl6awU7QG+5yFRXaQwimM= +github.com/tikv/client-go/v2 v2.0.3-0.20221108030801-9c0835c80eba h1:nFVdyTXcQYZwQQCdSJcFI1vBFyzG1hVuZ39MAK6wqK4= +github.com/tikv/client-go/v2 v2.0.3-0.20221108030801-9c0835c80eba/go.mod h1:X9s4ct/MLk1sFqe5mU79KClKegLFDTa/FCx3hzexGtk= +github.com/tikv/pd/client v0.0.0-20221031025758-80f0d8ca4d07 h1:ckPpxKcl75mO2N6a4cJXiZH43hvcHPpqc9dh1TmH1nc= +github.com/tikv/pd/client v0.0.0-20221031025758-80f0d8ca4d07/go.mod h1:CipBxPfxPUME+BImx9MUYXCnAVLS3VJUr3mnSJwh40A= github.com/timakin/bodyclose v0.0.0-20210704033933-f49887972144 h1:kl4KhGNsJIbDHS9/4U9yQo1UcPQM0kOMJHn29EoH/Ro= github.com/timakin/bodyclose v0.0.0-20210704033933-f49887972144/go.mod h1:Qimiffbc6q9tBWlVV6x0P9sat/ao1xEkREYPPj9hphk= github.com/tklauser/go-sysconf v0.3.9/go.mod h1:11DU/5sG7UexIrp/O6g35hrWzu0JxlwQ3LSFUzyeuhs= @@ -933,6 +955,8 @@ github.com/valyala/bytebufferpool v1.0.0/go.mod h1:6bBcMArwyJ5K/AmCkWv1jt77kVWyC github.com/valyala/fasthttp v1.6.0/go.mod h1:FstJa9V+Pj9vQ7OJie2qMHdwemEDaDiSdBnvPM1Su9w= github.com/valyala/fasttemplate v1.0.1/go.mod h1:UQGH1tvbgY+Nz5t2n7tXsz52dQxojPUpymEIMZ47gx8= github.com/valyala/tcplisten v0.0.0-20161114210144-ceec8f93295a/go.mod h1:v3UYOV9WzVtRmSR+PDvWpU/qWl4Wa5LApYYX4ZtKbio= +github.com/vbauerster/mpb/v7 v7.5.3 h1:BkGfmb6nMrrBQDFECR/Q7RkKCw7ylMetCb4079CGs4w= +github.com/vbauerster/mpb/v7 v7.5.3/go.mod h1:i+h4QY6lmLvBNK2ah1fSreiw3ajskRlBp9AhY/PnuOE= github.com/wangjohn/quickselect v0.0.0-20161129230411-ed8402a42d5f h1:9DDCDwOyEy/gId+IEMrFHLuQ5R/WV0KNxWLler8X2OY= github.com/wangjohn/quickselect v0.0.0-20161129230411-ed8402a42d5f/go.mod h1:8sdOQnirw1PrcnTJYkmW1iOHtUmblMmGdUOHyWYycLI= github.com/xdg/scram v1.0.3/go.mod h1:lB8K/P019DLNhemzwFU4jHLhdvlE6uDZjXFejJXr49I= @@ -1033,8 +1057,8 @@ go.uber.org/zap v1.12.0/go.mod h1:zwrFLgMcdUuIBviXEYEH1YKNaOBnKXsx2IPda5bBwHM= go.uber.org/zap v1.17.0/go.mod h1:MXVU+bhUf/A7Xi2HNOnopQOrmycQ5Ih87HtOu4q5SSo= go.uber.org/zap v1.19.0/go.mod h1:xg/QME4nWcxGxrpdeYfq7UvYrLh66cuVKdrbD1XF/NI= go.uber.org/zap v1.20.0/go.mod h1:wjWOCqI0f2ZZrJF/UufIOkiC8ii6tm1iqIsLo76RfJw= -go.uber.org/zap v1.21.0 h1:WefMeulhovoZ2sYXz7st6K0sLj7bBhpiFaud4r4zST8= -go.uber.org/zap v1.21.0/go.mod h1:wjWOCqI0f2ZZrJF/UufIOkiC8ii6tm1iqIsLo76RfJw= +go.uber.org/zap v1.23.0 h1:OjGQ5KQDEUawVHxNwQgPpiypGHOxo2mNZsOqTak4fFY= +go.uber.org/zap v1.23.0/go.mod h1:D+nX8jyLsMHMYrln8A0rJjFt/T/9/bGgIhAqxv5URuY= golang.org/x/crypto v0.0.0-20180723164146-c126467f60eb/go.mod h1:6SG95UA2DQfeDnfUPMdvaQW0Q7yPrPDi9nlGo2tz2b4= golang.org/x/crypto v0.0.0-20180904163835-0709b304e793/go.mod h1:6SG95UA2DQfeDnfUPMdvaQW0Q7yPrPDi9nlGo2tz2b4= golang.org/x/crypto v0.0.0-20181029021203-45a5f77698d3/go.mod h1:6SG95UA2DQfeDnfUPMdvaQW0Q7yPrPDi9nlGo2tz2b4= @@ -1052,8 +1076,9 @@ golang.org/x/crypto v0.0.0-20201016220609-9e8e0b390897/go.mod h1:LzIPMQfyMNhhGPh golang.org/x/crypto v0.0.0-20201112155050-0c6587e931a9/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto= golang.org/x/crypto v0.0.0-20210421170649-83a5a9bb288b/go.mod h1:T9bdIzuCu7OtxOm1hfPfRQxPLYneinmdGuTeoZ9dtd4= golang.org/x/crypto v0.0.0-20210921155107-089bfa567519/go.mod h1:GvvjBRRGRdwPK5ydBHafDWAxML/pGHZbMvKqRZ5+Abc= -golang.org/x/crypto v0.0.0-20220411220226-7b82a4e95df4 h1:kUhD7nTDoI3fVd9G4ORWrbV5NY0liEs/Jg2pv5f+bBA= -golang.org/x/crypto v0.0.0-20220411220226-7b82a4e95df4/go.mod h1:IxCIyHEi3zRg3s0A5j5BB6A9Jmi73HwBIUl50j+osU4= +golang.org/x/crypto v0.0.0-20220427172511-eb4f295cb31f/go.mod h1:IxCIyHEi3zRg3s0A5j5BB6A9Jmi73HwBIUl50j+osU4= +golang.org/x/crypto v0.1.0 h1:MDRAIl0xIo9Io2xV565hzXHw3zVseKrJKodhohM5CjU= +golang.org/x/crypto v0.1.0/go.mod h1:RecgLatLF4+eUMCP1PoPZQb+cVrJcOPbHkTkbkB9sbw= golang.org/x/exp v0.0.0-20180321215751-8460e604b9de/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA= golang.org/x/exp v0.0.0-20180807140117-3d87b88a115f/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA= golang.org/x/exp v0.0.0-20190121172915-509febef88a4/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA= @@ -1156,11 +1181,12 @@ golang.org/x/net v0.0.0-20210525063256-abc453219eb5/go.mod h1:9nx3DQGgdP8bBQD5qx golang.org/x/net v0.0.0-20210610132358-84b48f89b13b/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y= golang.org/x/net v0.0.0-20210805182204-aaa1db679c0d/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y= golang.org/x/net v0.0.0-20211015210444-4f30a5c0130f/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y= +golang.org/x/net v0.0.0-20211112202133-69e39bad7dc2/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y= golang.org/x/net v0.0.0-20220127200216-cd36cc0744dd/go.mod h1:CfG3xpIq0wQ8r1q4Su4UZFWDARRcnwPjda9FqA0JpMk= golang.org/x/net v0.0.0-20220225172249-27dd8689420f/go.mod h1:CfG3xpIq0wQ8r1q4Su4UZFWDARRcnwPjda9FqA0JpMk= golang.org/x/net v0.0.0-20220325170049-de3da57026de/go.mod h1:CfG3xpIq0wQ8r1q4Su4UZFWDARRcnwPjda9FqA0JpMk= -golang.org/x/net v0.0.0-20220722155237-a158d28d115b h1:PxfKdU9lEEDYjdIzOtC4qFWgkU2rGHdKlKowJSMN9h0= -golang.org/x/net v0.0.0-20220722155237-a158d28d115b/go.mod h1:XRhObCWvk6IyKnWLug+ECip1KBveYUHfp+8e9klMJ9c= +golang.org/x/net v0.1.0 h1:hZ/3BUoy5aId7sCpA/Tc5lt8DkFgdVS2onTpJsZ/fl0= +golang.org/x/net v0.1.0/go.mod h1:Cx3nUiGt4eDBEyega/BKRp+/AlGL8hYe7U9odMt2Cco= golang.org/x/oauth2 v0.0.0-20180821212333-d2e6202438be/go.mod h1:N/0e6XlmueqKjAGxoOufVs8QHGRruUQn6yWY3a++T0U= golang.org/x/oauth2 v0.0.0-20190226205417-e64efc72b421/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw= golang.org/x/oauth2 v0.0.0-20190604053449-0f29369cfe45/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw= @@ -1283,11 +1309,13 @@ golang.org/x/sys v0.0.0-20220328115105-d36c6a25d886/go.mod h1:oPkhp1MJrh7nUepCBc golang.org/x/sys v0.0.0-20220520151302-bc2c85ada10a/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20220715151400-c0bba94af5f8/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20220811171246-fbc7d0a398ab/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20220928140112-f11e5e49a4ec h1:BkDtF2Ih9xZ7le9ndzTA7KJow28VbQW3odyk/8drmuI= -golang.org/x/sys v0.0.0-20220928140112-f11e5e49a4ec/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20220909162455-aba9fc2a8ff2/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.1.0 h1:kunALQeHf1/185U1i0GOB/fy1IPRDDpuoOOqRReG57U= +golang.org/x/sys v0.1.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1/go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo= -golang.org/x/term v0.0.0-20210927222741-03fcf44c2211 h1:JGgROgKl9N8DuW20oFS5gxc+lE67/N3FcwmBPMe7ArY= golang.org/x/term v0.0.0-20210927222741-03fcf44c2211/go.mod h1:jbD1KX2456YbFQfuXm/mYQcufACuNUgVhRMnK/tPxf8= +golang.org/x/term v0.1.0 h1:g6Z6vPFA9dYBAF7DWcH6sCcOntplXsDKcliusYijMlw= +golang.org/x/term v0.1.0/go.mod h1:jbD1KX2456YbFQfuXm/mYQcufACuNUgVhRMnK/tPxf8= golang.org/x/text v0.0.0-20170915032832-14c0d48ead0c/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= golang.org/x/text v0.3.1-0.20180807135948-17ff2d5776d2/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= @@ -1296,8 +1324,9 @@ golang.org/x/text v0.3.3/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ= golang.org/x/text v0.3.4/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ= golang.org/x/text v0.3.5/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ= golang.org/x/text v0.3.6/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ= -golang.org/x/text v0.3.7 h1:olpwvP2KacW1ZWvsR7uQhoyTYvKAupfQrRGBFM352Gk= golang.org/x/text v0.3.7/go.mod h1:u+2+/6zg+i71rQMx5EYifcz6MCKuco9NR6JIITiCfzQ= +golang.org/x/text v0.4.0 h1:BrVqGRd7+k1DiOgtnFvAkoQEWQvBc25ouMJM6429SFg= +golang.org/x/text v0.4.0/go.mod h1:mrYo+phRRbMaCq/xk9113O4dZlRixOauAjOtrjsXDZ8= golang.org/x/time v0.0.0-20180412165947-fbb02b2291d2/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= golang.org/x/time v0.0.0-20181108054448-85acf8d2951c/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= golang.org/x/time v0.0.0-20190308202827-9d24e82272b4/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= diff --git a/infoschema/BUILD.bazel b/infoschema/BUILD.bazel index fb8abc3b33938..53bf35a2d43e3 100644 --- a/infoschema/BUILD.bazel +++ b/infoschema/BUILD.bazel @@ -99,6 +99,8 @@ go_test( "//testkit/testutil", "//types", "//util", + "//util/gctuner", + "//util/memory", "//util/pdapi", "//util/resourcegrouptag", "//util/set", diff --git a/infoschema/builder.go b/infoschema/builder.go index cb1a0edac8b01..8ff50a8b50435 100644 --- a/infoschema/builder.go +++ b/infoschema/builder.go @@ -199,6 +199,8 @@ func (b *Builder) ApplyDiff(m *meta.Meta, diff *model.SchemaDiff) ([]int64, erro return nil, b.applyCreateSchema(m, diff) case model.ActionDropSchema: return b.applyDropSchema(diff.SchemaID), nil + case model.ActionRecoverSchema: + return b.applyRecoverSchema(m, diff) case model.ActionModifySchemaCharsetAndCollate: return nil, b.applyModifySchemaCharsetAndCollate(m, diff) case model.ActionModifySchemaDefaultPlacement: @@ -217,6 +219,8 @@ func (b *Builder) ApplyDiff(m *meta.Meta, diff *model.SchemaDiff) ([]int64, erro return b.applyRecoverTable(m, diff) case model.ActionCreateTables: return b.applyCreateTables(m, diff) + case model.ActionFlashbackCluster: + return []int64{-1}, nil default: return b.applyDefaultAction(m, diff) } @@ -622,6 +626,23 @@ func (b *Builder) applyDropSchema(schemaID int64) []int64 { return tableIDs } +func (b *Builder) applyRecoverSchema(m *meta.Meta, diff *model.SchemaDiff) ([]int64, error) { + if di, ok := b.is.SchemaByID(diff.SchemaID); ok { + return nil, ErrDatabaseExists.GenWithStackByArgs( + fmt.Sprintf("(Schema ID %d)", di.ID), + ) + } + di, err := m.GetDatabase(diff.SchemaID) + if err != nil { + return nil, errors.Trace(err) + } + b.is.schemaMap[di.Name.L] = &schemaTables{ + dbInfo: di, + tables: make(map[string]table.Table, len(diff.AffectedOpts)), + } + return b.applyCreateTables(m, diff) +} + func (b *Builder) copySortedTablesBucket(bucketIdx int) { oldSortedTables := b.is.sortedTablesBuckets[bucketIdx] newSortedTables := make(sortedTables, len(oldSortedTables)) @@ -678,7 +699,8 @@ func (b *Builder) applyCreateTable(m *meta.Meta, dbInfo *model.DBInfo, tableID i tblVer := autoid.AllocOptionTableInfoVersion(tblInfo.Version) switch tp { case model.ActionRebaseAutoID, model.ActionModifyTableAutoIdCache: - newAlloc := autoid.NewAllocator(b.store, dbInfo.ID, tblInfo.ID, tblInfo.IsAutoIncColUnsigned(), autoid.RowIDAllocType, tblVer) + idCacheOpt := autoid.CustomAutoIncCacheOption(tblInfo.AutoIdCache) + newAlloc := autoid.NewAllocator(b.store, dbInfo.ID, tblInfo.ID, tblInfo.IsAutoIncColUnsigned(), autoid.RowIDAllocType, tblVer, idCacheOpt) allocs = append(allocs, newAlloc) case model.ActionRebaseAutoRandomBase: newAlloc := autoid.NewAllocator(b.store, dbInfo.ID, tblInfo.ID, tblInfo.IsAutoRandomBitColUnsigned(), autoid.AutoRandomType, tblVer) diff --git a/infoschema/cluster.go b/infoschema/cluster.go index 47bb7db4c3434..2977c1c770144 100644 --- a/infoschema/cluster.go +++ b/infoschema/cluster.go @@ -27,9 +27,10 @@ import ( "github.com/pingcap/tidb/util/sem" ) +// Cluster table indicates that these tables need to get data from other tidb nodes, which may get from all other nodes, or may get from the ddl owner. // Cluster table list, attention: // 1. the table name should be upper case. -// 2. clusterTableName should equal to "CLUSTER_" + memTableTableName. +// 2. For tables that need to get data from all other TiDB nodes, clusterTableName should equal to "CLUSTER_" + memTableTableName. const ( // ClusterTableSlowLog is the string constant of cluster slow query memory table. ClusterTableSlowLog = "CLUSTER_SLOW_QUERY" @@ -46,10 +47,14 @@ const ( ClusterTableDeadlocks = "CLUSTER_DEADLOCKS" // ClusterTableDeadlocks is the string constant of cluster transaction summary table. ClusterTableTrxSummary = "CLUSTER_TRX_SUMMARY" + // ClusterTableMemoryUsage is the memory usage status of tidb cluster. + ClusterTableMemoryUsage = "CLUSTER_MEMORY_USAGE" + // ClusterTableMemoryUsageOpsHistory is the memory control operators history of tidb cluster. + ClusterTableMemoryUsageOpsHistory = "CLUSTER_MEMORY_USAGE_OPS_HISTORY" ) -// memTableToClusterTables means add memory table to cluster table. -var memTableToClusterTables = map[string]string{ +// memTableToAllTiDBClusterTables means add memory table to cluster table that will send cop request to all TiDB nodes. +var memTableToAllTiDBClusterTables = map[string]string{ TableSlowQuery: ClusterTableSlowLog, TableProcesslist: ClusterTableProcesslist, TableStatementsSummary: ClusterTableStatementsSummary, @@ -58,11 +63,36 @@ var memTableToClusterTables = map[string]string{ TableTiDBTrx: ClusterTableTiDBTrx, TableDeadlocks: ClusterTableDeadlocks, TableTrxSummary: ClusterTableTrxSummary, + TableMemoryUsage: ClusterTableMemoryUsage, + TableMemoryUsageOpsHistory: ClusterTableMemoryUsageOpsHistory, +} + +// memTableToDDLOwnerClusterTables means add memory table to cluster table that will send cop request to DDL owner node. +var memTableToDDLOwnerClusterTables = map[string]string{ + TableTiFlashReplica: TableTiFlashReplica, +} + +// ClusterTableCopDestination means the destination that cluster tables will send cop requests to. +type ClusterTableCopDestination int + +const ( + // AllTiDB is uese by CLUSTER_* table, means that these tables will send cop request to all TiDB nodes. + AllTiDB ClusterTableCopDestination = iota + // DDLOwner is uese by tiflash_replica currently, means that this table will send cop request to DDL owner node. + DDLOwner +) + +// GetClusterTableCopDestination gets cluster table cop request destination. +func GetClusterTableCopDestination(tableName string) ClusterTableCopDestination { + if _, exist := memTableToDDLOwnerClusterTables[strings.ToUpper(tableName)]; exist { + return DDLOwner + } + return AllTiDB } func init() { var addrCol = columnInfo{name: util.ClusterTableInstanceColumnName, tp: mysql.TypeVarchar, size: 64} - for memTableName, clusterMemTableName := range memTableToClusterTables { + for memTableName, clusterMemTableName := range memTableToAllTiDBClusterTables { memTableCols := tableNameToColumns[memTableName] if len(memTableCols) == 0 { continue @@ -80,7 +110,13 @@ func isClusterTableByName(dbName, tableName string) bool { switch dbName { case util.InformationSchemaName.O, util.PerformanceSchemaName.O: tableName = strings.ToUpper(tableName) - for _, name := range memTableToClusterTables { + for _, name := range memTableToAllTiDBClusterTables { + name = strings.ToUpper(name) + if name == tableName { + return true + } + } + for _, name := range memTableToDDLOwnerClusterTables { name = strings.ToUpper(name) if name == tableName { return true diff --git a/infoschema/infoschema.go b/infoschema/infoschema.go index 085c5f1d3e3e2..d024afde40d7d 100644 --- a/infoschema/infoschema.go +++ b/infoschema/infoschema.go @@ -463,7 +463,7 @@ func (is *infoSchema) addReferredForeignKeys(schema model.CIStr, tbInfo *model.T if newReferredFKList[i].ChildTable.L != newReferredFKList[j].ChildTable.L { return newReferredFKList[i].ChildTable.L < newReferredFKList[j].ChildTable.L } - return newReferredFKList[i].ChildFKName.L != newReferredFKList[j].ChildFKName.L + return newReferredFKList[i].ChildFKName.L < newReferredFKList[j].ChildFKName.L }) is.referredForeignKeyMap[refer] = newReferredFKList } diff --git a/infoschema/infoschema_test.go b/infoschema/infoschema_test.go index 8f92eb3c16ddb..66bd8cc33ef00 100644 --- a/infoschema/infoschema_test.go +++ b/infoschema/infoschema_test.go @@ -316,12 +316,12 @@ func genGlobalID(store kv.Storage) (int64, error) { } func TestBuildSchemaWithGlobalTemporaryTable(t *testing.T) { - store := testkit.CreateMockStore(t) + store, dom := testkit.CreateMockStoreAndDomain(t) tk := testkit.NewTestKit(t, store) tk.MustExec("use test") - is := tk.Session().GetDomainInfoSchema().(infoschema.InfoSchema) + is := dom.InfoSchema() require.False(t, is.HasTemporaryTable()) db, ok := is.SchemaByName(model.NewCIStr("test")) require.True(t, ok) diff --git a/infoschema/main_test.go b/infoschema/main_test.go index 9330b22b360ca..09a412679f664 100644 --- a/infoschema/main_test.go +++ b/infoschema/main_test.go @@ -25,6 +25,7 @@ func TestMain(m *testing.M) { testsetup.SetupForCommonTest() opts := []goleak.Option{ goleak.IgnoreTopFunction("github.com/golang/glog.(*loggingT).flushDaemon"), + goleak.IgnoreTopFunction("github.com/lestrrat-go/httprc.runFetchWorker"), goleak.IgnoreTopFunction("go.etcd.io/etcd/client/pkg/v3/logutil.(*MergeLogger).outputLoop"), goleak.IgnoreTopFunction("go.opencensus.io/stats/view.(*worker).start"), } diff --git a/infoschema/perfschema/main_test.go b/infoschema/perfschema/main_test.go index 43012b2c4dbde..950b95993b536 100644 --- a/infoschema/perfschema/main_test.go +++ b/infoschema/perfschema/main_test.go @@ -25,6 +25,7 @@ func TestMain(m *testing.M) { testsetup.SetupForCommonTest() opts := []goleak.Option{ goleak.IgnoreTopFunction("github.com/golang/glog.(*loggingT).flushDaemon"), + goleak.IgnoreTopFunction("github.com/lestrrat-go/httprc.runFetchWorker"), goleak.IgnoreTopFunction("go.etcd.io/etcd/client/pkg/v3/logutil.(*MergeLogger).outputLoop"), goleak.IgnoreTopFunction("go.opencensus.io/stats/view.(*worker).start"), } diff --git a/infoschema/perfschema/tables.go b/infoschema/perfschema/tables.go index 5046dd318ec19..9a5a36235cfa4 100644 --- a/infoschema/perfschema/tables.go +++ b/infoschema/perfschema/tables.go @@ -15,6 +15,7 @@ package perfschema import ( + "context" "fmt" "net/http" "strings" @@ -219,7 +220,7 @@ func initTableIndices(t *perfSchemaTable) error { return nil } -func (vt *perfSchemaTable) getRows(ctx sessionctx.Context, cols []*table.Column) (fullRows [][]types.Datum, err error) { +func (vt *perfSchemaTable) getRows(ctx context.Context, sctx sessionctx.Context, cols []*table.Column) (fullRows [][]types.Datum, err error) { switch vt.meta.Name.O { case tableNameTiDBProfileCPU: fullRows, err = (&profile.Collector{}).ProfileGraph("cpu") @@ -235,22 +236,22 @@ func (vt *perfSchemaTable) getRows(ctx sessionctx.Context, cols []*table.Column) fullRows, err = (&profile.Collector{}).ProfileGraph("goroutine") case tableNameTiKVProfileCPU: interval := fmt.Sprintf("%d", profile.CPUProfileInterval/time.Second) - fullRows, err = dataForRemoteProfile(ctx, "tikv", "/debug/pprof/profile?seconds="+interval, false) + fullRows, err = dataForRemoteProfile(sctx, "tikv", "/debug/pprof/profile?seconds="+interval, false) case tableNamePDProfileCPU: interval := fmt.Sprintf("%d", profile.CPUProfileInterval/time.Second) - fullRows, err = dataForRemoteProfile(ctx, "pd", "/pd/api/v1/debug/pprof/profile?seconds="+interval, false) + fullRows, err = dataForRemoteProfile(sctx, "pd", "/pd/api/v1/debug/pprof/profile?seconds="+interval, false) case tableNamePDProfileMemory: - fullRows, err = dataForRemoteProfile(ctx, "pd", "/pd/api/v1/debug/pprof/heap", false) + fullRows, err = dataForRemoteProfile(sctx, "pd", "/pd/api/v1/debug/pprof/heap", false) case tableNamePDProfileMutex: - fullRows, err = dataForRemoteProfile(ctx, "pd", "/pd/api/v1/debug/pprof/mutex", false) + fullRows, err = dataForRemoteProfile(sctx, "pd", "/pd/api/v1/debug/pprof/mutex", false) case tableNamePDProfileAllocs: - fullRows, err = dataForRemoteProfile(ctx, "pd", "/pd/api/v1/debug/pprof/allocs", false) + fullRows, err = dataForRemoteProfile(sctx, "pd", "/pd/api/v1/debug/pprof/allocs", false) case tableNamePDProfileBlock: - fullRows, err = dataForRemoteProfile(ctx, "pd", "/pd/api/v1/debug/pprof/block", false) + fullRows, err = dataForRemoteProfile(sctx, "pd", "/pd/api/v1/debug/pprof/block", false) case tableNamePDProfileGoroutines: - fullRows, err = dataForRemoteProfile(ctx, "pd", "/pd/api/v1/debug/pprof/goroutine?debug=2", true) + fullRows, err = dataForRemoteProfile(sctx, "pd", "/pd/api/v1/debug/pprof/goroutine?debug=2", true) case tableNameSessionVariables: - fullRows, err = infoschema.GetDataFromSessionVariables(ctx) + fullRows, err = infoschema.GetDataFromSessionVariables(ctx, sctx) } if err != nil { return @@ -270,9 +271,8 @@ func (vt *perfSchemaTable) getRows(ctx sessionctx.Context, cols []*table.Column) } // IterRecords implements table.Table IterRecords interface. -func (vt *perfSchemaTable) IterRecords(ctx sessionctx.Context, cols []*table.Column, - fn table.RecordIterFunc) error { - rows, err := vt.getRows(ctx, cols) +func (vt *perfSchemaTable) IterRecords(ctx context.Context, sctx sessionctx.Context, cols []*table.Column, fn table.RecordIterFunc) error { + rows, err := vt.getRows(ctx, sctx, cols) if err != nil { return err } diff --git a/infoschema/tables.go b/infoschema/tables.go index 74d064b55759a..656a99f52d838 100644 --- a/infoschema/tables.go +++ b/infoschema/tables.go @@ -184,6 +184,12 @@ const ( TableTrxSummary = "TRX_SUMMARY" // TableVariablesInfo is the string constant of variables_info table. TableVariablesInfo = "VARIABLES_INFO" + // TableUserAttributes is the string constant of user_attributes view. + TableUserAttributes = "USER_ATTRIBUTES" + // TableMemoryUsage is the memory usage status of tidb instance. + TableMemoryUsage = "MEMORY_USAGE" + // TableMemoryUsageOpsHistory is the memory control operators history. + TableMemoryUsageOpsHistory = "MEMORY_USAGE_OPS_HISTORY" ) const ( @@ -285,6 +291,11 @@ var tableIDMap = map[string]int64{ TableTrxSummary: autoid.InformationSchemaDBID + 80, ClusterTableTrxSummary: autoid.InformationSchemaDBID + 81, TableVariablesInfo: autoid.InformationSchemaDBID + 82, + TableUserAttributes: autoid.InformationSchemaDBID + 83, + TableMemoryUsage: autoid.InformationSchemaDBID + 84, + TableMemoryUsageOpsHistory: autoid.InformationSchemaDBID + 85, + ClusterTableMemoryUsage: autoid.InformationSchemaDBID + 86, + ClusterTableMemoryUsageOpsHistory: autoid.InformationSchemaDBID + 87, } // columnInfo represents the basic column information of all kinds of INFORMATION_SCHEMA tables @@ -1358,6 +1369,7 @@ var tableTableTiFlashTablesCols = []columnInfo{ {name: "AVG_STABLE_ROWS", tp: mysql.TypeDouble, size: 64}, {name: "AVG_STABLE_SIZE", tp: mysql.TypeDouble, size: 64}, {name: "TOTAL_PACK_COUNT_IN_DELTA", tp: mysql.TypeLonglong, size: 64}, + {name: "MAX_PACK_COUNT_IN_DELTA", tp: mysql.TypeLonglong, size: 64}, {name: "AVG_PACK_COUNT_IN_DELTA", tp: mysql.TypeDouble, size: 64}, {name: "AVG_PACK_ROWS_IN_DELTA", tp: mysql.TypeDouble, size: 64}, {name: "AVG_PACK_SIZE_IN_DELTA", tp: mysql.TypeDouble, size: 64}, @@ -1369,23 +1381,14 @@ var tableTableTiFlashTablesCols = []columnInfo{ {name: "STORAGE_STABLE_OLDEST_SNAPSHOT_LIFETIME", tp: mysql.TypeDouble, size: 64}, {name: "STORAGE_STABLE_OLDEST_SNAPSHOT_THREAD_ID", tp: mysql.TypeLonglong, size: 64}, {name: "STORAGE_STABLE_OLDEST_SNAPSHOT_TRACING_ID", tp: mysql.TypeVarchar, size: 128}, - {name: "STORAGE_STABLE_NUM_PAGES", tp: mysql.TypeLonglong, size: 64}, - {name: "STORAGE_STABLE_NUM_NORMAL_PAGES", tp: mysql.TypeLonglong, size: 64}, - {name: "STORAGE_STABLE_MAX_PAGE_ID", tp: mysql.TypeLonglong, size: 64}, {name: "STORAGE_DELTA_NUM_SNAPSHOTS", tp: mysql.TypeLonglong, size: 64}, {name: "STORAGE_DELTA_OLDEST_SNAPSHOT_LIFETIME", tp: mysql.TypeDouble, size: 64}, {name: "STORAGE_DELTA_OLDEST_SNAPSHOT_THREAD_ID", tp: mysql.TypeLonglong, size: 64}, {name: "STORAGE_DELTA_OLDEST_SNAPSHOT_TRACING_ID", tp: mysql.TypeVarchar, size: 128}, - {name: "STORAGE_DELTA_NUM_PAGES", tp: mysql.TypeLonglong, size: 64}, - {name: "STORAGE_DELTA_NUM_NORMAL_PAGES", tp: mysql.TypeLonglong, size: 64}, - {name: "STORAGE_DELTA_MAX_PAGE_ID", tp: mysql.TypeLonglong, size: 64}, {name: "STORAGE_META_NUM_SNAPSHOTS", tp: mysql.TypeLonglong, size: 64}, {name: "STORAGE_META_OLDEST_SNAPSHOT_LIFETIME", tp: mysql.TypeDouble, size: 64}, {name: "STORAGE_META_OLDEST_SNAPSHOT_THREAD_ID", tp: mysql.TypeLonglong, size: 64}, {name: "STORAGE_META_OLDEST_SNAPSHOT_TRACING_ID", tp: mysql.TypeVarchar, size: 128}, - {name: "STORAGE_META_NUM_PAGES", tp: mysql.TypeLonglong, size: 64}, - {name: "STORAGE_META_NUM_NORMAL_PAGES", tp: mysql.TypeLonglong, size: 64}, - {name: "STORAGE_META_MAX_PAGE_ID", tp: mysql.TypeLonglong, size: 64}, {name: "BACKGROUND_TASKS_LENGTH", tp: mysql.TypeLonglong, size: 64}, {name: "TIFLASH_INSTANCE", tp: mysql.TypeVarchar, size: 64}, } @@ -1536,6 +1539,41 @@ var tableVariablesInfoCols = []columnInfo{ {name: "IS_NOOP", tp: mysql.TypeVarchar, size: 64, flag: mysql.NotNullFlag}, } +var tableUserAttributesCols = []columnInfo{ + {name: "USER", tp: mysql.TypeVarchar, size: 32, flag: mysql.NotNullFlag}, + {name: "HOST", tp: mysql.TypeVarchar, size: 255, flag: mysql.NotNullFlag}, + {name: "ATTRIBUTE", tp: mysql.TypeLongBlob, size: types.UnspecifiedLength}, +} + +var tableMemoryUsageCols = []columnInfo{ + {name: "MEMORY_TOTAL", tp: mysql.TypeLonglong, size: 21, flag: mysql.NotNullFlag}, + {name: "MEMORY_LIMIT", tp: mysql.TypeLonglong, size: 21, flag: mysql.NotNullFlag}, + {name: "MEMORY_CURRENT", tp: mysql.TypeLonglong, size: 21, flag: mysql.NotNullFlag}, + {name: "MEMORY_MAX_USED", tp: mysql.TypeLonglong, size: 21, flag: mysql.NotNullFlag}, + {name: "CURRENT_OPS", tp: mysql.TypeVarchar, size: 50}, + {name: "SESSION_KILL_LAST", tp: mysql.TypeDatetime}, + {name: "SESSION_KILL_TOTAL", tp: mysql.TypeLonglong, size: 21, flag: mysql.NotNullFlag}, + {name: "GC_LAST", tp: mysql.TypeDatetime}, + {name: "GC_TOTAL", tp: mysql.TypeLonglong, size: 21, flag: mysql.NotNullFlag}, + {name: "DISK_USAGE", tp: mysql.TypeLonglong, size: 21, flag: mysql.NotNullFlag}, + {name: "QUERY_FORCE_DISK", tp: mysql.TypeLonglong, size: 21, flag: mysql.NotNullFlag}, +} + +var tableMemoryUsageOpsHistoryCols = []columnInfo{ + {name: "TIME", tp: mysql.TypeDatetime, size: 64, flag: mysql.NotNullFlag}, + {name: "OPS", tp: mysql.TypeVarchar, size: 20, flag: mysql.NotNullFlag}, + {name: "MEMORY_LIMIT", tp: mysql.TypeLonglong, size: 21, flag: mysql.NotNullFlag}, + {name: "MEMORY_CURRENT", tp: mysql.TypeLonglong, size: 21, flag: mysql.NotNullFlag}, + {name: "PROCESSID", tp: mysql.TypeLonglong, size: 21, flag: mysql.UnsignedFlag}, + {name: "MEM", tp: mysql.TypeLonglong, size: 21, flag: mysql.UnsignedFlag}, + {name: "DISK", tp: mysql.TypeLonglong, size: 21, flag: mysql.UnsignedFlag}, + {name: "CLIENT", tp: mysql.TypeVarchar, size: 64}, + {name: "DB", tp: mysql.TypeVarchar, size: 64}, + {name: "USER", tp: mysql.TypeVarchar, size: 16}, + {name: "SQL_DIGEST", tp: mysql.TypeVarchar, size: 64}, + {name: "SQL_TEXT", tp: mysql.TypeVarchar, size: 256}, +} + // GetShardingInfo returns a nil or description string for the sharding information of given TableInfo. // The returned description string may be: // - "NOT_SHARDED": for tables that SHARD_ROW_ID_BITS is not specified. @@ -1903,16 +1941,16 @@ func SysVarHiddenForSem(ctx sessionctx.Context, sysVarNameInLower string) bool { } // GetDataFromSessionVariables return the [name, value] of all session variables -func GetDataFromSessionVariables(ctx sessionctx.Context) ([][]types.Datum, error) { - sessionVars := ctx.GetSessionVars() +func GetDataFromSessionVariables(ctx context.Context, sctx sessionctx.Context) ([][]types.Datum, error) { + sessionVars := sctx.GetSessionVars() sysVars := variable.GetSysVars() rows := make([][]types.Datum, 0, len(sysVars)) for _, v := range sysVars { - if SysVarHiddenForSem(ctx, v.Name) { + if SysVarHiddenForSem(sctx, v.Name) { continue } var value string - value, err := sessionVars.GetSessionOrGlobalSystemVar(v.Name) + value, err := sessionVars.GetSessionOrGlobalSystemVar(ctx, v.Name) if err != nil { return nil, err } @@ -1995,6 +2033,9 @@ var tableNameToColumns = map[string][]columnInfo{ TablePlacementPolicies: tablePlacementPoliciesCols, TableTrxSummary: tableTrxSummaryCols, TableVariablesInfo: tableVariablesInfoCols, + TableUserAttributes: tableUserAttributesCols, + TableMemoryUsage: tableMemoryUsageCols, + TableMemoryUsageOpsHistory: tableMemoryUsageOpsHistoryCols, } func createInfoSchemaTable(_ autoid.Allocators, meta *model.TableInfo) (table.Table, error) { @@ -2016,8 +2057,7 @@ type infoschemaTable struct { } // IterRecords implements table.Table IterRecords interface. -func (*infoschemaTable) IterRecords(_ sessionctx.Context, _ []*table.Column, - _ table.RecordIterFunc) error { +func (*infoschemaTable) IterRecords(ctx context.Context, sctx sessionctx.Context, cols []*table.Column, fn table.RecordIterFunc) error { return nil } diff --git a/infoschema/tables_test.go b/infoschema/tables_test.go index 15cb2026ba737..3650f2833a1a6 100644 --- a/infoschema/tables_test.go +++ b/infoschema/tables_test.go @@ -18,6 +18,7 @@ import ( "fmt" "math" "os" + "strconv" "strings" "testing" "time" @@ -39,7 +40,10 @@ import ( "github.com/pingcap/tidb/session/txninfo" "github.com/pingcap/tidb/sessionctx/variable" "github.com/pingcap/tidb/testkit" + "github.com/pingcap/tidb/types" "github.com/pingcap/tidb/util" + "github.com/pingcap/tidb/util/gctuner" + "github.com/pingcap/tidb/util/memory" "github.com/stretchr/testify/require" ) @@ -53,7 +57,7 @@ func newTestKitWithRoot(t *testing.T, store kv.Storage) *testkit.TestKit { func newTestKitWithPlanCache(t *testing.T, store kv.Storage) *testkit.TestKit { tk := testkit.NewTestKit(t, store) se, err := session.CreateSession4TestWithOpt(store, &session.Opt{PreparedPlanCache: plannercore.NewLRUPlanCache(100, - 0.1, math.MaxUint64, plannercore.PickPlanFromBucket)}) + 0.1, math.MaxUint64, plannercore.PickPlanFromBucket, tk.Session())}) require.NoError(t, err) tk.SetSession(se) tk.RefreshConnectionID() @@ -1509,6 +1513,10 @@ func TestVariablesInfo(t *testing.T) { tk := testkit.NewTestKit(t, store) + if !variable.EnableConcurrentDDL.Load() { + t.Skip("skip test when concurrent DDL is disabled") + } + tk.MustExec("use information_schema") tk.MustExec("SET GLOBAL innodb_compression_level = 8;") @@ -1539,13 +1547,15 @@ func TestVariablesInfo(t *testing.T) { // See session/bootstrap.go:doDMLWorks() for where the exceptions are defined. stmt := tk.MustQuery(`SELECT variable_name, default_value, current_value FROM information_schema.variables_info WHERE current_value != default_value and default_value != '' ORDER BY variable_name`) stmt.Check(testkit.Rows( - "tidb_enable_auto_analyze ON OFF", // always changed for tests - "tidb_enable_collect_execution_info ON OFF", // for test stability - "tidb_enable_mutation_checker OFF ON", // for new installs - "tidb_mem_oom_action CANCEL LOG", // always changed for tests - "tidb_row_format_version 1 2", // for new installs - "tidb_txn_assertion_level OFF FAST", // for new installs - "timestamp 0 123456789", // always dynamic + "last_sql_use_alloc OFF ON", // for test stability + "tidb_enable_auto_analyze ON OFF", // always changed for tests + "tidb_enable_collect_execution_info ON OFF", // for test stability + "tidb_enable_mutation_checker OFF ON", // for new installs + "tidb_enable_plan_replayer_capture OFF false", // for enable plan replayer capture + "tidb_mem_oom_action CANCEL LOG", // always changed for tests + "tidb_row_format_version 1 2", // for new installs + "tidb_txn_assertion_level OFF FAST", // for new installs + "timestamp 0 123456789", // always dynamic )) } @@ -1560,3 +1570,86 @@ func TestTableConstraintsContainForeignKeys(t *testing.T) { tk.MustQuery("SELECT * FROM INFORMATION_SCHEMA.table_constraints WHERE constraint_schema = 'tableconstraints' AND table_name = 't2'").Sort().Check(testkit.Rows("def tableconstraints PRIMARY tableconstraints t2 PRIMARY KEY", "def tableconstraints fk_t2_t1 tableconstraints t2 FOREIGN KEY")) tk.MustQuery("SELECT * FROM INFORMATION_SCHEMA.table_constraints WHERE constraint_schema = 'tableconstraints' AND table_name = 't1'").Sort().Check(testkit.Rows("def tableconstraints PRIMARY tableconstraints t1 PRIMARY KEY")) } + +func TestMemoryUsageAndOpsHistory(t *testing.T) { + store := testkit.CreateMockStore(t) + tk := testkit.NewTestKit(t, store) + require.NoError(t, failpoint.Enable("github.com/pingcap/tidb/util/gctuner/testMemoryLimitTuner", "return(true)")) + defer func() { + require.NoError(t, failpoint.Disable("github.com/pingcap/tidb/util/gctuner/testMemoryLimitTuner")) + }() + gctuner.GlobalMemoryLimitTuner.Start() + defer func() { + time.Sleep(1 * time.Second) // Wait tuning finished. + }() + tk.MustExec("set global tidb_mem_oom_action = 'CANCEL'") + tk.MustExec("set global tidb_server_memory_limit=512<<20") + tk.MustExec("set global tidb_enable_tmp_storage_on_oom=off") + dom, err := session.GetDomain(store) + require.Nil(t, err) + go dom.ServerMemoryLimitHandle().SetSessionManager(tk.Session().GetSessionManager()).Run() + // OOM + tk.MustExec("use test") + tk.MustExec("create table t(a int)") + tk.MustExec("insert into t values(1)") + for i := 0; i < 9; i++ { + tk.MustExec("insert into t select * from t;") + } + + var tmp string + var ok bool + var beginTime = time.Now().Format(types.TimeFormat) + err = tk.QueryToErr("explain analyze select * from t t1 join t t2 join t t3 on t1.a=t2.a and t1.a=t3.a order by t1.a") + var endTime = time.Now().Format(types.TimeFormat) + require.NotNil(t, err) + // Check Memory Table + rows := tk.MustQuery("select * from INFORMATION_SCHEMA.MEMORY_USAGE").Rows() + require.Len(t, rows, 1) + row := rows[0] + require.Len(t, row, 11) + require.Equal(t, row[0], strconv.FormatUint(memory.GetMemTotalIgnoreErr(), 10)) // MEMORY_TOTAL + require.Equal(t, row[1], "536870912") // MEMORY_LIMIT + require.Greater(t, row[2], "0") // MEMORY_CURRENT + tmp, ok = row[3].(string) // MEMORY_MAX_USED + require.Equal(t, ok, true) + val, err := strconv.ParseUint(tmp, 10, 64) + require.Nil(t, err) + require.Greater(t, val, uint64(536870912)) + + tmp, ok = row[4].(string) // CURRENT_OPS + require.Equal(t, ok, true) + if tmp != "null" && tmp != "shrink" { + require.Fail(t, "CURRENT_OPS get wrong value") + } + require.GreaterOrEqual(t, row[5], beginTime) // SESSION_KILL_LAST + require.LessOrEqual(t, row[5], endTime) + require.Greater(t, row[6], "0") // SESSION_KILL_TOTAL + require.GreaterOrEqual(t, row[7], beginTime) // GC_LAST + require.LessOrEqual(t, row[7], endTime) + require.Greater(t, row[8], "0") // GC_TOTAL + require.Equal(t, row[9], "0") // DISK_USAGE + require.Equal(t, row[10], "0") // QUERY_FORCE_DISK + + rows = tk.MustQuery("select * from INFORMATION_SCHEMA.MEMORY_USAGE_OPS_HISTORY").Rows() + require.Greater(t, len(rows), 0) + row = rows[len(rows)-1] + require.Len(t, row, 12) + require.GreaterOrEqual(t, row[0], beginTime) // TIME + require.LessOrEqual(t, row[0], endTime) + require.Equal(t, row[1], "SessionKill") // OPS + require.Equal(t, row[2], "536870912") // MEMORY_LIMIT + tmp, ok = row[3].(string) // MEMORY_CURRENT + require.Equal(t, ok, true) + val, err = strconv.ParseUint(tmp, 10, 64) + require.Nil(t, err) + require.Greater(t, val, uint64(536870912)) + + require.Greater(t, row[4], "0") // PROCESSID + require.Greater(t, row[5], "0") // MEM + require.Equal(t, row[6], "0") // DISK + require.Equal(t, row[7], "") // CLIENT + require.Equal(t, row[8], "test") // DB + require.Equal(t, row[9], "") // USER + require.Equal(t, row[10], "e3237ec256015a3566757e0c2742507cd30ae04e4cac2fbc14d269eafe7b067b") // SQL_DIGEST + require.Equal(t, row[11], "explain analyze select * from t t1 join t t2 join t t3 on t1.a=t2.a and t1.a=t3.a order by t1.a") // SQL_TEXT +} diff --git a/kv/kv.go b/kv/kv.go index d39dc1ee5c862..06e86f41659cb 100644 --- a/kv/kv.go +++ b/kv/kv.go @@ -394,6 +394,8 @@ type Request struct { } // RequestSource indicates whether the request is an internal request. RequestSource util.RequestSource + // FixedRowCountHint is the optimization hint for copr request for task scheduling. + FixedRowCountHint []int } // CoprRequestAdjuster is used to check and adjust a copr request according to specific rules. diff --git a/kv/main_test.go b/kv/main_test.go index e0b772c63768d..3d161d7ce0704 100644 --- a/kv/main_test.go +++ b/kv/main_test.go @@ -26,6 +26,7 @@ func TestMain(m *testing.M) { opts := []goleak.Option{ goleak.IgnoreTopFunction("github.com/golang/glog.(*loggingT).flushDaemon"), + goleak.IgnoreTopFunction("github.com/lestrrat-go/httprc.runFetchWorker"), goleak.IgnoreTopFunction("go.etcd.io/etcd/client/pkg/v3/logutil.(*MergeLogger).outputLoop"), goleak.IgnoreTopFunction("go.opencensus.io/stats/view.(*worker).start"), } diff --git a/meta/autoid/BUILD.bazel b/meta/autoid/BUILD.bazel index f5bb574907665..7490d65691e4c 100644 --- a/meta/autoid/BUILD.bazel +++ b/meta/autoid/BUILD.bazel @@ -4,12 +4,14 @@ go_library( name = "autoid", srcs = [ "autoid.go", + "autoid_service.go", "errors.go", "memid.go", ], importpath = "github.com/pingcap/tidb/meta/autoid", visibility = ["//visibility:public"], deps = [ + "//autoid_service", "//errno", "//kv", "//meta", @@ -24,8 +26,12 @@ go_library( "@com_github_opentracing_opentracing_go//:opentracing-go", "@com_github_pingcap_errors//:errors", "@com_github_pingcap_failpoint//:failpoint", + "@com_github_pingcap_kvproto//pkg/autoid", "@com_github_tikv_client_go_v2//txnkv/txnsnapshot", "@com_github_tikv_client_go_v2//util", + "@io_etcd_go_etcd_client_v3//:client", + "@org_golang_google_grpc//:grpc", + "@org_golang_google_grpc//credentials/insecure", "@org_uber_go_zap//:zap", ], ) diff --git a/meta/autoid/autoid.go b/meta/autoid/autoid.go index e20c0ed898f13..def3245bb2da3 100644 --- a/meta/autoid/autoid.go +++ b/meta/autoid/autoid.go @@ -26,6 +26,7 @@ import ( "github.com/opentracing/opentracing-go" "github.com/pingcap/errors" "github.com/pingcap/failpoint" + autoid "github.com/pingcap/tidb/autoid_service" "github.com/pingcap/tidb/kv" "github.com/pingcap/tidb/meta" "github.com/pingcap/tidb/metrics" @@ -38,6 +39,7 @@ import ( "github.com/pingcap/tidb/util/mathutil" "github.com/tikv/client-go/v2/txnkv/txnsnapshot" tikvutil "github.com/tikv/client-go/v2/util" + clientv3 "go.etcd.io/etcd/client/v3" "go.uber.org/zap" ) @@ -533,6 +535,47 @@ func NextStep(curStep int64, consumeDur time.Duration) int64 { return res } +func newSinglePointAlloc(store kv.Storage, dbID, tblID int64, isUnsigned bool) *singlePointAlloc { + ebd, ok := store.(kv.EtcdBackend) + if !ok { + // newSinglePointAlloc fail because not etcd background + // This could happen in the server package unit test + return nil + } + + addrs, err := ebd.EtcdAddrs() + if err != nil { + panic(err) + } + spa := &singlePointAlloc{ + dbID: dbID, + tblID: tblID, + isUnsigned: isUnsigned, + } + if len(addrs) > 0 { + etcdCli, err := clientv3.New(clientv3.Config{ + Endpoints: addrs, + TLS: ebd.TLSConfig(), + }) + if err != nil { + logutil.BgLogger().Error("[autoid client] fail to connect etcd, fallback to default", zap.Error(err)) + return nil + } + spa.clientDiscover = clientDiscover{etcdCli: etcdCli} + } else { + spa.clientDiscover = clientDiscover{} + spa.mu.AutoIDAllocClient = autoid.MockForTest(store) + } + + // mockAutoIDChange failpoint is not implemented in this allocator, so fallback to use the default one. + failpoint.Inject("mockAutoIDChange", func(val failpoint.Value) { + if val.(bool) { + spa = nil + } + }) + return spa +} + // NewAllocator returns a new auto increment id generator on the store. func NewAllocator(store kv.Storage, dbID, tbID int64, isUnsigned bool, allocType AllocatorType, opts ...AllocOption) Allocator { @@ -548,6 +591,15 @@ func NewAllocator(store kv.Storage, dbID, tbID int64, isUnsigned bool, for _, fn := range opts { fn.ApplyOn(alloc) } + + // Use the MySQL compatible AUTO_INCREMENT mode. + if allocType == RowIDAllocType && alloc.customStep && alloc.step == 1 { + alloc1 := newSinglePointAlloc(store, dbID, tbID, isUnsigned) + if alloc1 != nil { + return alloc1 + } + } + return alloc } diff --git a/meta/autoid/autoid_service.go b/meta/autoid/autoid_service.go new file mode 100644 index 0000000000000..6133dfdfc3cb2 --- /dev/null +++ b/meta/autoid/autoid_service.go @@ -0,0 +1,236 @@ +// Copyright 2022 PingCAP, Inc. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +package autoid + +import ( + "context" + "strings" + "sync" + "time" + + "github.com/opentracing/opentracing-go" + "github.com/pingcap/errors" + "github.com/pingcap/kvproto/pkg/autoid" + "github.com/pingcap/tidb/metrics" + "github.com/pingcap/tidb/util/logutil" + clientv3 "go.etcd.io/etcd/client/v3" + "go.uber.org/zap" + "google.golang.org/grpc" + "google.golang.org/grpc/credentials/insecure" +) + +var _ Allocator = &singlePointAlloc{} + +type singlePointAlloc struct { + dbID int64 + tblID int64 + lastAllocated int64 + isUnsigned bool + clientDiscover +} + +type clientDiscover struct { + // This the etcd client for service discover + etcdCli *clientv3.Client + // This is the real client for the AutoIDAlloc service + mu struct { + sync.RWMutex + autoid.AutoIDAllocClient + // Release the client conn to avoid resource leak! + // See https://github.com/grpc/grpc-go/issues/5321 + *grpc.ClientConn + } +} + +const ( + autoIDLeaderPath = "tidb/autoid/leader" +) + +func (d *clientDiscover) GetClient(ctx context.Context) (autoid.AutoIDAllocClient, error) { + d.mu.RLock() + cli := d.mu.AutoIDAllocClient + if cli != nil { + d.mu.RUnlock() + return cli, nil + } + d.mu.RUnlock() + + d.mu.Lock() + defer d.mu.Unlock() + if d.mu.AutoIDAllocClient != nil { + return d.mu.AutoIDAllocClient, nil + } + + resp, err := d.etcdCli.Get(ctx, autoIDLeaderPath, clientv3.WithFirstCreate()...) + if err != nil { + return nil, errors.Trace(err) + } + + if len(resp.Kvs) == 0 { + return nil, errors.New("autoid service leader not found") + } + + addr := string(resp.Kvs[0].Value) + grpcConn, err := grpc.Dial(addr, grpc.WithTransportCredentials(insecure.NewCredentials())) + if err != nil { + return nil, errors.Trace(err) + } + cli = autoid.NewAutoIDAllocClient(grpcConn) + d.mu.AutoIDAllocClient = cli + d.mu.ClientConn = grpcConn + return cli, nil +} + +// Alloc allocs N consecutive autoID for table with tableID, returning (min, max] of the allocated autoID batch. +// The consecutive feature is used to insert multiple rows in a statement. +// increment & offset is used to validate the start position (the allocator's base is not always the last allocated id). +// The returned range is (min, max]: +// case increment=1 & offset=1: you can derive the ids like min+1, min+2... max. +// case increment=x & offset=y: you firstly need to seek to firstID by `SeekToFirstAutoIDXXX`, then derive the IDs like firstID, firstID + increment * 2... in the caller. +func (sp *singlePointAlloc) Alloc(ctx context.Context, n uint64, increment, offset int64) (min int64, max int64, _ error) { + if span := opentracing.SpanFromContext(ctx); span != nil && span.Tracer() != nil { + span1 := span.Tracer().StartSpan("autoid.Alloc", opentracing.ChildOf(span.Context())) + defer span1.Finish() + ctx = opentracing.ContextWithSpan(ctx, span1) + } + + if !validIncrementAndOffset(increment, offset) { + return 0, 0, errInvalidIncrementAndOffset.GenWithStackByArgs(increment, offset) + } + +retry: + cli, err := sp.GetClient(ctx) + if err != nil { + return 0, 0, errors.Trace(err) + } + + start := time.Now() + resp, err := cli.AllocAutoID(ctx, &autoid.AutoIDRequest{ + DbID: sp.dbID, + TblID: sp.tblID, + N: n, + Increment: increment, + Offset: offset, + IsUnsigned: sp.isUnsigned, + }) + if err != nil { + if strings.Contains(err.Error(), "rpc error") { + time.Sleep(backoffDuration) + sp.resetConn() + goto retry + } + return 0, 0, errors.Trace(err) + } + + du := time.Since(start) + metrics.AutoIDReqDuration.Observe(du.Seconds()) + sp.lastAllocated = resp.Min + return resp.Min, resp.Max, err +} + +const backoffDuration = 200 * time.Millisecond + +func (sp *singlePointAlloc) resetConn() { + var grpcConn *grpc.ClientConn + sp.mu.Lock() + grpcConn = sp.mu.ClientConn + sp.mu.AutoIDAllocClient = nil + sp.mu.ClientConn = nil + sp.mu.Unlock() + // Close grpc.ClientConn to release resource. + if grpcConn != nil { + err := grpcConn.Close() + logutil.BgLogger().Info("[autoid client] AllocAutoID grpc error, reconnect", zap.Error(err)) + } +} + +// AllocSeqCache allocs sequence batch value cached in table level(rather than in alloc), the returned range covering +// the size of sequence cache with it's increment. The returned round indicates the sequence cycle times if it is with +// cycle option. +func (*singlePointAlloc) AllocSeqCache() (a int64, b int64, c int64, err error) { + return 0, 0, 0, errors.New("AllocSeqCache not implemented") +} + +// Rebase rebases the autoID base for table with tableID and the new base value. +// If allocIDs is true, it will allocate some IDs and save to the cache. +// If allocIDs is false, it will not allocate IDs. +func (sp *singlePointAlloc) Rebase(ctx context.Context, newBase int64, _ bool) error { + if span := opentracing.SpanFromContext(ctx); span != nil && span.Tracer() != nil { + span1 := span.Tracer().StartSpan("autoid.Rebase", opentracing.ChildOf(span.Context())) + defer span1.Finish() + ctx = opentracing.ContextWithSpan(ctx, span1) + } + + return sp.rebase(ctx, newBase, false) +} + +func (sp *singlePointAlloc) rebase(ctx context.Context, newBase int64, force bool) error { +retry: + cli, err := sp.GetClient(ctx) + if err != nil { + return errors.Trace(err) + } + _, err = cli.Rebase(ctx, &autoid.RebaseRequest{ + DbID: sp.dbID, + TblID: sp.tblID, + Base: newBase, + Force: force, + IsUnsigned: sp.isUnsigned, + }) + if err != nil { + if strings.Contains(err.Error(), "rpc error") { + time.Sleep(backoffDuration) + sp.resetConn() + goto retry + } + return errors.Trace(err) + } + sp.lastAllocated = newBase + return err +} + +// ForceRebase set the next global auto ID to newBase. +func (sp *singlePointAlloc) ForceRebase(newBase int64) error { + if newBase == -1 { + return ErrAutoincReadFailed.GenWithStack("Cannot force rebase the next global ID to '0'") + } + return sp.rebase(context.Background(), newBase, true) +} + +// RebaseSeq rebases the sequence value in number axis with tableID and the new base value. +func (*singlePointAlloc) RebaseSeq(_ int64) (int64, bool, error) { + return 0, false, errors.New("RebaseSeq not implemented") +} + +// Base return the current base of Allocator. +func (sp *singlePointAlloc) Base() int64 { + return sp.lastAllocated +} + +// End is only used for test. +func (sp *singlePointAlloc) End() int64 { + return sp.lastAllocated +} + +// NextGlobalAutoID returns the next global autoID. +// Used by 'show create table', 'alter table auto_increment = xxx' +func (sp *singlePointAlloc) NextGlobalAutoID() (int64, error) { + _, max, err := sp.Alloc(context.Background(), 0, 1, 1) + return max + 1, err +} + +func (*singlePointAlloc) GetType() AllocatorType { + return RowIDAllocType +} diff --git a/meta/autoid/errors.go b/meta/autoid/errors.go index aef8bb4cc6fe8..6d76e2dbe3808 100644 --- a/meta/autoid/errors.go +++ b/meta/autoid/errors.go @@ -31,8 +31,10 @@ var ( ) const ( - // AutoRandomPKisNotHandleErrMsg indicates the auto_random column attribute is defined on a non-primary key column, or the primary key is nonclustered. - AutoRandomPKisNotHandleErrMsg = "column %s is not the integer primary key, or the primary key is nonclustered" + // AutoRandomMustFirstColumnInPK is reported when auto_random is not the first column in primary key. + AutoRandomMustFirstColumnInPK = "column '%s' must be the first column in primary key" + // AutoRandomNoClusteredPKErrMsg indicates the primary key is not clustered. + AutoRandomNoClusteredPKErrMsg = "auto_random is only supported on the tables with clustered primary key" // AutoRandomIncompatibleWithAutoIncErrMsg is reported when auto_random and auto_increment are specified on the same column. AutoRandomIncompatibleWithAutoIncErrMsg = "auto_random is incompatible with auto_increment" // AutoRandomIncompatibleWithDefaultValueErrMsg is reported when auto_random and default are specified on the same column. diff --git a/meta/autoid/main_test.go b/meta/autoid/main_test.go index c5dad759b65b1..7eb312e043e3a 100644 --- a/meta/autoid/main_test.go +++ b/meta/autoid/main_test.go @@ -25,6 +25,7 @@ func TestMain(m *testing.M) { testsetup.SetupForCommonTest() opts := []goleak.Option{ goleak.IgnoreTopFunction("github.com/golang/glog.(*loggingT).flushDaemon"), + goleak.IgnoreTopFunction("github.com/lestrrat-go/httprc.runFetchWorker"), goleak.IgnoreTopFunction("go.etcd.io/etcd/client/pkg/v3/logutil.(*MergeLogger).outputLoop"), goleak.IgnoreTopFunction("go.opencensus.io/stats/view.(*worker).start"), } diff --git a/meta/main_test.go b/meta/main_test.go index 1cfa29527043e..3e4abdaa12624 100644 --- a/meta/main_test.go +++ b/meta/main_test.go @@ -25,6 +25,7 @@ func TestMain(m *testing.M) { testsetup.SetupForCommonTest() opts := []goleak.Option{ goleak.IgnoreTopFunction("github.com/golang/glog.(*loggingT).flushDaemon"), + goleak.IgnoreTopFunction("github.com/lestrrat-go/httprc.runFetchWorker"), goleak.IgnoreTopFunction("go.opencensus.io/stats/view.(*worker).start"), goleak.IgnoreTopFunction("go.etcd.io/etcd/client/pkg/v3/logutil.(*MergeLogger).outputLoop"), } diff --git a/meta/meta.go b/meta/meta.go index f132d0597d1da..ad2f5d02e0d05 100644 --- a/meta/meta.go +++ b/meta/meta.go @@ -59,26 +59,25 @@ var ( // var ( - mMetaPrefix = []byte("m") - mNextGlobalIDKey = []byte("NextGlobalID") - mSchemaVersionKey = []byte("SchemaVersionKey") - mDBs = []byte("DBs") - mDBPrefix = "DB" - mTablePrefix = "Table" - mSequencePrefix = "SID" - mSeqCyclePrefix = "SequenceCycle" - mTableIDPrefix = "TID" - mIncIDPrefix = "IID" - mRandomIDPrefix = "TARID" - mBootstrapKey = []byte("BootstrapKey") - mSchemaDiffPrefix = "Diff" - mPolicies = []byte("Policies") - mPolicyPrefix = "Policy" - mPolicyGlobalID = []byte("PolicyGlobalID") - mPolicyMagicByte = CurrentMagicByteVer - mDDLTableVersion = []byte("DDLTableVersion") - mConcurrentDDL = []byte("concurrentDDL") - mFlashbackHistoryTSRange = []byte("FlashbackHistoryTSRange") + mMetaPrefix = []byte("m") + mNextGlobalIDKey = []byte("NextGlobalID") + mSchemaVersionKey = []byte("SchemaVersionKey") + mDBs = []byte("DBs") + mDBPrefix = "DB" + mTablePrefix = "Table" + mSequencePrefix = "SID" + mSeqCyclePrefix = "SequenceCycle" + mTableIDPrefix = "TID" + mIncIDPrefix = "IID" + mRandomIDPrefix = "TARID" + mBootstrapKey = []byte("BootstrapKey") + mSchemaDiffPrefix = "Diff" + mPolicies = []byte("Policies") + mPolicyPrefix = "Policy" + mPolicyGlobalID = []byte("PolicyGlobalID") + mPolicyMagicByte = CurrentMagicByteVer + mDDLTableVersion = []byte("DDLTableVersion") + mConcurrentDDL = []byte("concurrentDDL") ) const ( @@ -166,6 +165,23 @@ func (m *Meta) GenGlobalID() (int64, error) { return newID, err } +// AdvanceGlobalIDs advances the global ID by n. +// return the old global ID. +func (m *Meta) AdvanceGlobalIDs(n int) (int64, error) { + globalIDMutex.Lock() + defer globalIDMutex.Unlock() + + newID, err := m.txn.Inc(mNextGlobalIDKey, int64(n)) + if err != nil { + return 0, err + } + if newID > MaxGlobalID { + return 0, errors.Errorf("global id:%d exceeds the limit:%d", newID, MaxGlobalID) + } + origID := newID - int64(n) + return origID, nil +} + // GenGlobalIDs generates the next n global IDs. func (m *Meta) GenGlobalIDs(n int) ([]int64, error) { globalIDMutex.Lock() @@ -605,37 +621,6 @@ func (m *Meta) CheckMDLTableExists() (bool, error) { return bytes.Equal(v, []byte("2")), nil } -// TSRange store a range time -type TSRange struct { - StartTS uint64 - EndTS uint64 -} - -// SetFlashbackHistoryTSRange store flashback time range to TiKV -func (m *Meta) SetFlashbackHistoryTSRange(timeRange []TSRange) error { - timeRangeByte, err := json.Marshal(timeRange) - if err != nil { - return err - } - return errors.Trace(m.txn.Set(mFlashbackHistoryTSRange, timeRangeByte)) -} - -// GetFlashbackHistoryTSRange get flashback time range from TiKV -func (m *Meta) GetFlashbackHistoryTSRange() (timeRange []TSRange, err error) { - timeRangeByte, err := m.txn.Get(mFlashbackHistoryTSRange) - if err != nil { - return nil, err - } - if len(timeRangeByte) == 0 { - return []TSRange{}, nil - } - err = json.Unmarshal(timeRangeByte, &timeRange) - if err != nil { - return nil, err - } - return timeRange, nil -} - // SetConcurrentDDL set the concurrent DDL flag. func (m *Meta) SetConcurrentDDL(b bool) error { var data []byte diff --git a/metrics/grafana/performance_overview.json b/metrics/grafana/performance_overview.json index 01dbc77ee5553..19f526e562280 100644 --- a/metrics/grafana/performance_overview.json +++ b/metrics/grafana/performance_overview.json @@ -162,7 +162,7 @@ "targets": [ { "exemplar": true, - "expr": "sum(rate(tidb_server_handle_query_duration_seconds_sum{k8s_cluster=\"$k8s_cluster\",tidb_cluster=\"$tidb_cluster\", sql_type!=\"internal\"}[1m]))", + "expr": "sum(tidb_server_tokens{k8s_cluster=\"$k8s_cluster\",tidb_cluster=\"$tidb_cluster\"})", "hide": false, "interval": "", "legendFormat": "database time", @@ -302,7 +302,7 @@ "targets": [ { "exemplar": true, - "expr": "sum(rate(tidb_server_handle_query_duration_seconds_sum{k8s_cluster=\"$k8s_cluster\",tidb_cluster=\"$tidb_cluster\", sql_type!=\"internal\"}[1m]))", + "expr": "sum(tidb_server_tokens{k8s_cluster=\"$k8s_cluster\",tidb_cluster=\"$tidb_cluster\"})", "hide": false, "interval": "", "legendFormat": "database time", @@ -850,13 +850,24 @@ "targets": [ { "exemplar": true, - "expr": "sum(rate(tidb_server_plan_cache_total{k8s_cluster=\"$k8s_cluster\",tidb_cluster=\"$tidb_cluster\"}[1m])) by (type)", + "expr": "sum(rate(tidb_server_plan_cache_total{k8s_cluster=\"$k8s_cluster\",tidb_cluster=\"$tidb_cluster\"}[1m]))", "format": "time_series", "interval": "", "intervalFactor": 2, - "legendFormat": "avg", + "legendFormat": "avg-hit", "refId": "A", "step": 30 + }, + { + "exemplar": true, + "expr": "sum(rate(tidb_server_plan_cache_miss_total{k8s_cluster=\"$k8s_cluster\",tidb_cluster=\"$tidb_cluster\"}[1m]))", + "format": "time_series", + "hide": false, + "interval": "", + "intervalFactor": 2, + "legendFormat": "avg-miss", + "refId": "B", + "step": 30 } ], "thresholds": [], @@ -1109,11 +1120,19 @@ }, { "exemplar": true, - "expr": "sum(rate(tidb_server_handle_query_duration_seconds_sum{k8s_cluster=\"$k8s_cluster\",tidb_cluster=\"$tidb_cluster\", sql_type!=\"internal\"}[1m]))", + "expr": "sum(tidb_server_tokens{k8s_cluster=\"$k8s_cluster\",tidb_cluster=\"$tidb_cluster\"})", "hide": false, "interval": "", "legendFormat": "active connections", - "refId": "C" + "refId": "D" + }, + { + "exemplar": true, + "expr": "sum(tidb_server_tokens{k8s_cluster=\"$k8s_cluster\",tidb_cluster=\"$tidb_cluster\"}) by (instance)", + "hide": true, + "interval": "", + "legendFormat": "ac-{{instance}}", + "refId": "E" } ], "thresholds": [], @@ -2283,7 +2302,7 @@ "dashLength": 10, "dashes": false, "datasource": "${DS_TEST-CLUSTER}", - "description": "- TSO Wait Duration: The duration of a client starting to wait for the TS until received the TS result.\n- TSO RPC Duration: The duration of a client sending TSO request until received the response.", + "description": "- TSO Wait Duration: The duration of a client starting to wait for the TS until received the TS result.\n- TSO RPC Duration: The duration of a client sending TSO request until received the response.\n- PD Server Handle Time: The time consumed by handling TiDB requests.", "editable": true, "error": false, "fill": 1, @@ -2341,6 +2360,14 @@ "legendFormat": "rpc - avg", "refId": "A" }, + { + "exemplar": true, + "expr": "(sum(rate(pd_server_handle_tso_duration_seconds_sum{k8s_cluster=\"$k8s_cluster\",tidb_cluster=\"$tidb_cluster\"}[1m])) / sum(rate(pd_server_handle_tso_duration_seconds_count{k8s_cluster=\"$k8s_cluster\",tidb_cluster=\"$tidb_cluster\"}[1m])))", + "hide": false, + "interval": "", + "legendFormat": "handle - avg", + "refId": "F" + }, { "exemplar": true, "expr": "histogram_quantile(0.99, sum(rate(pd_client_cmd_handle_cmds_duration_seconds_bucket{k8s_cluster=\"$k8s_cluster\",tidb_cluster=\"$tidb_cluster\", type=\"wait\"}[1m])) by (le))", @@ -2359,6 +2386,16 @@ "intervalFactor": 2, "legendFormat": "rpc - 99", "refId": "E" + }, + { + "exemplar": true, + "expr": "histogram_quantile(0.99, sum(rate(pd_server_handle_tso_duration_seconds_bucket{k8s_cluster=\"$k8s_cluster\", tidb_cluster=\"$tidb_cluster\"}[30s])) by (type, le))", + "format": "time_series", + "hide": false, + "interval": "", + "intervalFactor": 2, + "legendFormat": "handle - 99", + "refId": "C" } ], "thresholds": [], @@ -3181,4 +3218,4 @@ "title": "Test-Cluster-Performance-Overview", "uid": "eDbRZpnWa", "version": 2 -} +} \ No newline at end of file diff --git a/metrics/grafana/tidb.json b/metrics/grafana/tidb.json index 0684067314075..bd686ffd05c92 100644 --- a/metrics/grafana/tidb.json +++ b/metrics/grafana/tidb.json @@ -1979,6 +1979,117 @@ "align": false, "alignLevel": null } + }, + { + "aliasColors": {}, + "bars": false, + "dashLength": 10, + "dashes": false, + "datasource": "${DS_TEST-CLUSTER}", + "description": "The number of queries contained in a multi-query statement per second.", + "editable": true, + "error": false, + "fieldConfig": { + "defaults": {}, + "overrides": [] + }, + "fill": 1, + "fillGradient": 0, + "grid": {}, + "gridPos": { + "h": 7, + "w": 12, + "x": 0, + "y": 23 + }, + "hiddenSeries": false, + "id": 272, + "legend": { + "avg": false, + "current": false, + "max": false, + "min": false, + "show": false, + "total": false, + "values": false + }, + "lines": true, + "linewidth": 1, + "links": [], + "nullPointMode": "null as zero", + "options": { + "alertThreshold": true + }, + "percentage": false, + "pluginVersion": "7.5.11", + "pointradius": 5, + "points": false, + "renderer": "flot", + "seriesOverrides": [], + "spaceLength": 10, + "stack": false, + "steppedLine": false, + "targets": [ + { + "exemplar": true, + "expr": "sum(rate(tidb_server_multi_query_num_sum{k8s_cluster=\"$k8s_cluster\", tidb_cluster=\"$tidb_cluster\", instance=~\"$instance\"}[30s]))/sum(rate(tidb_server_multi_query_num_count{k8s_cluster=\"$k8s_cluster\", tidb_cluster=\"$tidb_cluster\", instance=~\"$instance\"}[30s]))", + "format": "time_series", + "interval": "", + "intervalFactor": 2, + "legendFormat": "avg", + "refId": "A", + "step": 10 + }, + { + "exemplar": true, + "expr": "sum(rate(tidb_server_multi_query_num_sum{k8s_cluster=\"$k8s_cluster\", tidb_cluster=\"$tidb_cluster\", instance=~\"$instance\"}[30s]))", + "hide": false, + "interval": "", + "legendFormat": "sum", + "refId": "B" + } + ], + "thresholds": [], + "timeFrom": null, + "timeRegions": [], + "timeShift": null, + "title": "Queries in Multi-Statement", + "tooltip": { + "msResolution": false, + "shared": true, + "sort": 0, + "value_type": "individual" + }, + "type": "graph", + "xaxis": { + "buckets": null, + "mode": "time", + "name": null, + "show": true, + "values": [] + }, + "yaxes": [ + { + "format": "short", + "label": null, + "logBase": 1, + "max": null, + "min": "0", + "show": true + }, + { + "format": "short", + "label": null, + "logBase": 1, + "max": null, + "min": null, + "show": true + } + ], + "yaxis": { + "align": false, + "alignLevel": null + } } ], "repeat": null, @@ -7473,6 +7584,217 @@ "align": false, "alignLevel": null } + }, + { + "aliasColors": {}, + "bars": false, + "dashLength": 10, + "dashes": false, + "datasource": "${DS_TEST-CLUSTER}", + "description": "Total memory usage of all prepared plan cache in a instance", + "fieldConfig": { + "defaults": {}, + "overrides": [] + }, + "fill": 1, + "fillGradient": 0, + "gridPos": { + "h": 8, + "w": 12, + "x": 12, + "y": 29 + }, + "hiddenSeries": false, + "id": 269, + "legend": { + "alignAsTable": true, + "avg": false, + "current": true, + "hideEmpty": true, + "max": true, + "min": false, + "rightSide": true, + "show": true, + "total": false, + "values": true + }, + "lines": true, + "linewidth": 1, + "nullPointMode": "null as zero", + "options": { + "alertThreshold": true + }, + "percentage": false, + "pluginVersion": "7.5.11", + "pointradius": 2, + "points": false, + "renderer": "flot", + "seriesOverrides": [], + "spaceLength": 10, + "stack": false, + "steppedLine": false, + "targets": [ + { + "exemplar": true, + "expr": "tidb_server_plan_cache_instance_memory_usage{k8s_cluster=\"$k8s_cluster\", tidb_cluster=\"$tidb_cluster\", instance=~\"$instance\"}", + "hide": false, + "interval": "", + "legendFormat": "{{instance}}", + "refId": "A" + } + ], + "thresholds": [], + "timeFrom": null, + "timeRegions": [], + "timeShift": null, + "title": "Plan Cache Memory Usage", + "tooltip": { + "shared": true, + "sort": 0, + "value_type": "individual" + }, + "type": "graph", + "xaxis": { + "buckets": null, + "mode": "time", + "name": null, + "show": true, + "values": [] + }, + "yaxes": [ + { + "$$hashKey": "object:122", + "format": "bytes", + "label": null, + "logBase": 1, + "max": null, + "min": "0", + "show": true + }, + { + "$$hashKey": "object:123", + "format": "short", + "label": null, + "logBase": 1, + "max": null, + "min": null, + "show": true + } + ], + "yaxis": { + "align": false, + "alignLevel": null + } + }, + { + "aliasColors": {}, + "bars": false, + "dashLength": 10, + "dashes": false, + "datasource": "${DS_TEST-CLUSTER}", + "decimals": null, + "description": "TiDB prepared plan cache plan num\n", + "editable": true, + "error": false, + "fieldConfig": { + "defaults": {}, + "overrides": [] + }, + "fill": 1, + "fillGradient": 0, + "grid": {}, + "gridPos": { + "h": 8, + "w": 12, + "x": 0, + "y": 37 + }, + "hiddenSeries": false, + "id": 271, + "legend": { + "alignAsTable": true, + "avg": false, + "current": true, + "hideEmpty": true, + "hideZero": true, + "max": true, + "min": false, + "rightSide": true, + "show": true, + "sort": null, + "sortDesc": null, + "total": false, + "values": true + }, + "lines": true, + "linewidth": 1, + "links": [], + "nullPointMode": "null as zero", + "options": { + "alertThreshold": true + }, + "percentage": false, + "pluginVersion": "7.5.11", + "pointradius": 5, + "points": false, + "renderer": "flot", + "seriesOverrides": [], + "spaceLength": 10, + "stack": false, + "steppedLine": false, + "targets": [ + { + "exemplar": true, + "expr": "tidb_server_plan_cache_instance_plan_num_total{k8s_cluster=\"$k8s_cluster\", tidb_cluster=\"$tidb_cluster\", instance=~\"$instance\"}\n", + "format": "time_series", + "interval": "", + "intervalFactor": 2, + "legendFormat": "{{instance}}", + "refId": "A", + "step": 30 + } + ], + "thresholds": [], + "timeFrom": null, + "timeRegions": [], + "timeShift": null, + "title": "Plan Cache Plan Num", + "tooltip": { + "msResolution": false, + "shared": true, + "sort": 0, + "value_type": "cumulative" + }, + "type": "graph", + "xaxis": { + "buckets": null, + "mode": "time", + "name": null, + "show": true, + "values": [] + }, + "yaxes": [ + { + "format": "short", + "label": null, + "logBase": 1, + "max": null, + "min": "0", + "show": true + }, + { + "format": "short", + "label": null, + "logBase": 1, + "max": null, + "min": null, + "show": true + } + ], + "yaxis": { + "align": false, + "alignLevel": null + } } ], "repeat": null, diff --git a/metrics/main_test.go b/metrics/main_test.go index 998921fbc3192..887847a12ba86 100644 --- a/metrics/main_test.go +++ b/metrics/main_test.go @@ -25,6 +25,7 @@ func TestMain(m *testing.M) { testsetup.SetupForCommonTest() opts := []goleak.Option{ goleak.IgnoreTopFunction("github.com/golang/glog.(*loggingT).flushDaemon"), + goleak.IgnoreTopFunction("github.com/lestrrat-go/httprc.runFetchWorker"), goleak.IgnoreTopFunction("go.etcd.io/etcd/client/pkg/v3/logutil.(*MergeLogger).outputLoop"), goleak.IgnoreTopFunction("go.opencensus.io/stats/view.(*worker).start"), } diff --git a/metrics/metrics.go b/metrics/metrics.go index 3d6ba83979f45..a843e794cff1b 100644 --- a/metrics/metrics.go +++ b/metrics/metrics.go @@ -114,6 +114,7 @@ func RegisterMetrics() { prometheus.MustRegister(ExecuteErrorCounter) prometheus.MustRegister(ExecutorCounter) prometheus.MustRegister(GetTokenDurationHistogram) + prometheus.MustRegister(NumOfMultiQueryHistogram) prometheus.MustRegister(HandShakeErrorCounter) prometheus.MustRegister(HandleJobHistogram) prometheus.MustRegister(SignificantFeedbackCounter) @@ -134,6 +135,8 @@ func RegisterMetrics() { prometheus.MustRegister(PanicCounter) prometheus.MustRegister(PlanCacheCounter) prometheus.MustRegister(PlanCacheMissCounter) + prometheus.MustRegister(PlanCacheInstanceMemoryUsage) + prometheus.MustRegister(PlanCacheInstancePlanNumCounter) prometheus.MustRegister(PseudoEstimation) prometheus.MustRegister(PacketIOCounter) prometheus.MustRegister(QueryDurationHistogram) @@ -190,7 +193,7 @@ func RegisterMetrics() { prometheus.MustRegister(CPUProfileCounter) prometheus.MustRegister(ReadFromTableCacheCounter) prometheus.MustRegister(LoadTableCacheDurationHistogram) - prometheus.MustRegister(NonTransactionalDeleteCount) + prometheus.MustRegister(NonTransactionalDMLCount) prometheus.MustRegister(MemoryUsage) prometheus.MustRegister(StatsCacheLRUCounter) prometheus.MustRegister(StatsCacheLRUGauge) @@ -203,6 +206,7 @@ func RegisterMetrics() { prometheus.MustRegister(GetCheckpointBatchSize) prometheus.MustRegister(RegionCheckpointRequest) prometheus.MustRegister(RegionCheckpointFailure) + prometheus.MustRegister(AutoIDReqDuration) prometheus.MustRegister(RCCheckTSWriteConfilictCounter) tikvmetrics.InitMetrics(TiDB, TiKVClient) @@ -227,7 +231,7 @@ func ToggleSimplifiedMode(simplified bool) { ReadFromTableCacheCounter, TiFlashQueryTotalCounter, CampaignOwnerCounter, - NonTransactionalDeleteCount, + NonTransactionalDMLCount, MemoryUsage, TokenGauge, tikvmetrics.TiKVRawkvSizeHistogram, diff --git a/metrics/server.go b/metrics/server.go index d88c84a254581..116b02eb122b6 100644 --- a/metrics/server.go +++ b/metrics/server.go @@ -144,6 +144,22 @@ var ( Help: "Counter of plan cache miss.", }, []string{LblType}) + PlanCacheInstanceMemoryUsage = prometheus.NewGaugeVec( + prometheus.GaugeOpts{ + Namespace: "tidb", + Subsystem: "server", + Name: "plan_cache_instance_memory_usage", + Help: "Total plan cache memory usage of all sessions in a instance", + }, []string{LblType}) + + PlanCacheInstancePlanNumCounter = prometheus.NewGaugeVec( + prometheus.GaugeOpts{ + Namespace: "tidb", + Subsystem: "server", + Name: "plan_cache_instance_plan_num_total", + Help: "Counter of plan of all prepared plan cache in a instance", + }, []string{LblType}) + ReadFromTableCacheCounter = prometheus.NewCounter( prometheus.CounterOpts{ Namespace: "tidb", @@ -171,6 +187,15 @@ var ( Buckets: prometheus.ExponentialBuckets(1, 2, 30), // 1us ~ 528s }) + NumOfMultiQueryHistogram = prometheus.NewHistogram( + prometheus.HistogramOpts{ + Namespace: "tidb", + Subsystem: "server", + Name: "multi_query_num", + Help: "The number of queries contained in a multi-query statement.", + Buckets: prometheus.ExponentialBuckets(1, 2, 20), // 1 ~ 1048576 + }) + TotalQueryProcHistogram = prometheus.NewHistogramVec( prometheus.HistogramOpts{ Namespace: "tidb", diff --git a/metrics/session.go b/metrics/session.go index a54ab8e4cb8d4..11c3bf7a143b8 100644 --- a/metrics/session.go +++ b/metrics/session.go @@ -18,6 +18,15 @@ import "github.com/prometheus/client_golang/prometheus" // Session metrics. var ( + AutoIDReqDuration = prometheus.NewHistogram( + prometheus.HistogramOpts{ + Namespace: "tidb", + Subsystem: "meta", + Name: "autoid_duration_seconds", + Help: "Bucketed histogram of processing time (s) in parse SQL.", + Buckets: prometheus.ExponentialBuckets(0.00004, 2, 28), // 40us ~ 1.5h + }) + SessionExecuteParseDuration = prometheus.NewHistogramVec( prometheus.HistogramOpts{ Namespace: "tidb", @@ -128,13 +137,14 @@ var ( Help: "Counter of validating read ts by getting a timestamp from PD", }) - NonTransactionalDeleteCount = prometheus.NewCounter( + NonTransactionalDMLCount = prometheus.NewCounterVec( prometheus.CounterOpts{ Namespace: "tidb", Subsystem: "session", - Name: "non_transactional_delete_count", + Name: "non_transactional_dml_count", Help: "Counter of non-transactional delete", - }) + }, []string{LblType}, + ) TxnStatusEnteringCounter = prometheus.NewCounterVec( prometheus.CounterOpts{ Namespace: "tidb", @@ -156,7 +166,7 @@ var ( Namespace: "tidb", Subsystem: "session", Name: "lazy_pessimistic_unique_check_set_count", - Help: "Counter of setting tidb_constraint_check_in_place to false", + Help: "Counter of setting tidb_constraint_check_in_place to false, note that it doesn't count the default value set by tidb config", }, ) ) diff --git a/metrics/telemetry.go b/metrics/telemetry.go index 222d723fb9b4f..e7629bcd76f6a 100644 --- a/metrics/telemetry.go +++ b/metrics/telemetry.go @@ -148,6 +148,13 @@ var ( Name: "add_index_ingest_usage", Help: "Counter of usage of add index acceleration solution", }) + TelemetryFlashbackClusterCnt = prometheus.NewCounter( + prometheus.CounterOpts{ + Namespace: "tidb", + Subsystem: "telemetry", + Name: "flashback_cluster_usage", + Help: "Counter of usage of flashback cluster", + }) ) // readCounter reads the value of a prometheus.Counter. @@ -325,19 +332,22 @@ func GetTablePartitionCounter() TablePartitionUsageCounter { // NonTransactionalStmtCounter records the usages of non-transactional statements. type NonTransactionalStmtCounter struct { DeleteCount int64 `json:"delete"` + InsertCount int64 `json:"insert"` } // Sub returns the difference of two counters. func (n NonTransactionalStmtCounter) Sub(rhs NonTransactionalStmtCounter) NonTransactionalStmtCounter { return NonTransactionalStmtCounter{ DeleteCount: n.DeleteCount - rhs.DeleteCount, + InsertCount: n.InsertCount - rhs.InsertCount, } } // GetNonTransactionalStmtCounter gets the NonTransactionalStmtCounter. func GetNonTransactionalStmtCounter() NonTransactionalStmtCounter { return NonTransactionalStmtCounter{ - DeleteCount: readCounter(NonTransactionalDeleteCount), + DeleteCount: readCounter(NonTransactionalDMLCount.With(prometheus.Labels{LblType: "delete"})), + InsertCount: readCounter(NonTransactionalDMLCount.With(prometheus.Labels{LblType: "insert"})), } } @@ -351,22 +361,25 @@ func GetLazyPessimisticUniqueCheckSetCounter() int64 { return readCounter(LazyPessimisticUniqueCheckSetCount) } -// DDLUsageCounter records the usages of Add Index with acceleration solution. +// DDLUsageCounter records the usages of DDL related features. type DDLUsageCounter struct { - AddIndexIngestUsed int64 `json:"add_index_ingest_used"` - MetadataLockUsed bool `json:"metadata_lock_used"` + AddIndexIngestUsed int64 `json:"add_index_ingest_used"` + MetadataLockUsed bool `json:"metadata_lock_used"` + FlashbackClusterUsed int64 `json:"flashback_cluster_used"` } // Sub returns the difference of two counters. func (a DDLUsageCounter) Sub(rhs DDLUsageCounter) DDLUsageCounter { return DDLUsageCounter{ - AddIndexIngestUsed: a.AddIndexIngestUsed - rhs.AddIndexIngestUsed, + AddIndexIngestUsed: a.AddIndexIngestUsed - rhs.AddIndexIngestUsed, + FlashbackClusterUsed: a.FlashbackClusterUsed - rhs.FlashbackClusterUsed, } } // GetDDLUsageCounter gets the add index acceleration solution counts. func GetDDLUsageCounter() DDLUsageCounter { return DDLUsageCounter{ - AddIndexIngestUsed: readCounter(TelemetryAddIndexIngestCnt), + AddIndexIngestUsed: readCounter(TelemetryAddIndexIngestCnt), + FlashbackClusterUsed: readCounter(TelemetryFlashbackClusterCnt), } } diff --git a/owner/main_test.go b/owner/main_test.go index 57bc7021c5ca9..b1e1355258582 100644 --- a/owner/main_test.go +++ b/owner/main_test.go @@ -25,6 +25,7 @@ func TestMain(m *testing.M) { testsetup.SetupForCommonTest() opts := []goleak.Option{ goleak.IgnoreTopFunction("github.com/golang/glog.(*loggingT).flushDaemon"), + goleak.IgnoreTopFunction("github.com/lestrrat-go/httprc.runFetchWorker"), goleak.IgnoreTopFunction("go.opencensus.io/stats/view.(*worker).start"), goleak.IgnoreTopFunction("go.etcd.io/etcd/client/pkg/v3/logutil.(*MergeLogger).outputLoop"), } diff --git a/parser/ast/ddl.go b/parser/ast/ddl.go index 0bf00b7c151b6..9b7042e573cc1 100644 --- a/parser/ast/ddl.go +++ b/parser/ast/ddl.go @@ -35,6 +35,7 @@ var ( _ DDLNode = &CreateSequenceStmt{} _ DDLNode = &CreatePlacementPolicyStmt{} _ DDLNode = &DropDatabaseStmt{} + _ DDLNode = &FlashBackDatabaseStmt{} _ DDLNode = &DropIndexStmt{} _ DDLNode = &DropTableStmt{} _ DDLNode = &DropSequenceStmt{} @@ -253,6 +254,35 @@ func (n *DropDatabaseStmt) Accept(v Visitor) (Node, bool) { return v.Leave(n) } +// FlashBackDatabaseStmt is a statement to restore a database and all tables in the database. +type FlashBackDatabaseStmt struct { + ddlNode + + DBName model.CIStr + NewName string +} + +// Restore implements Node interface. +func (n *FlashBackDatabaseStmt) Restore(ctx *format.RestoreCtx) error { + ctx.WriteKeyWord("FLASHBACK DATABASE ") + ctx.WriteName(n.DBName.O) + if len(n.NewName) > 0 { + ctx.WriteKeyWord(" TO ") + ctx.WriteName(n.NewName) + } + return nil +} + +// Accept implements Node Accept interface. +func (n *FlashBackDatabaseStmt) Accept(v Visitor) (Node, bool) { + newNode, skipChildren := v.Enter(n) + if skipChildren { + return v.Leave(newNode) + } + n = newNode.(*FlashBackDatabaseStmt) + return v.Leave(n) +} + // IndexPartSpecifications is used for parsing index column name or index expression from SQL. type IndexPartSpecification struct { node @@ -4010,29 +4040,57 @@ func (n *RecoverTableStmt) Accept(v Visitor) (Node, bool) { return v.Leave(n) } -// FlashBackClusterStmt is a statement to restore the cluster to the specified timestamp -type FlashBackClusterStmt struct { +// FlashBackToTimestampStmt is a statement to restore the cluster to the specified timestamp +type FlashBackToTimestampStmt struct { ddlNode FlashbackTS ExprNode + Tables []*TableName + DBName model.CIStr } // Restore implements Node interface -func (n *FlashBackClusterStmt) Restore(ctx *format.RestoreCtx) error { - ctx.WriteKeyWord("FLASHBACK CLUSTER TO TIMESTAMP ") +func (n *FlashBackToTimestampStmt) Restore(ctx *format.RestoreCtx) error { + ctx.WriteKeyWord("FLASHBACK ") + if len(n.Tables) != 0 { + ctx.WriteKeyWord("TABLE ") + for index, table := range n.Tables { + if index != 0 { + ctx.WritePlain(", ") + } + if err := table.Restore(ctx); err != nil { + return errors.Annotatef(err, "An error occurred while restore DropTableStmt.Tables[%d]", index) + } + } + } else if n.DBName.O != "" { + ctx.WriteKeyWord("DATABASE ") + ctx.WriteName(n.DBName.O) + } else { + ctx.WriteKeyWord("CLUSTER") + } + ctx.WriteKeyWord(" TO TIMESTAMP ") if err := n.FlashbackTS.Restore(ctx); err != nil { - return errors.Annotate(err, "An error occurred while splicing FlashBackClusterStmt.FlashbackTS") + return errors.Annotate(err, "An error occurred while splicing FlashBackToTimestampStmt.FlashbackTS") } return nil } // Accept implements Node Accept interface. -func (n *FlashBackClusterStmt) Accept(v Visitor) (Node, bool) { +func (n *FlashBackToTimestampStmt) Accept(v Visitor) (Node, bool) { newNode, skipChildren := v.Enter(n) if skipChildren { return v.Leave(newNode) } - n = newNode.(*FlashBackClusterStmt) + n = newNode.(*FlashBackToTimestampStmt) + if len(n.Tables) != 0 { + for i, val := range n.Tables { + node, ok := val.Accept(v) + if !ok { + return n, false + } + n.Tables[i] = node.(*TableName) + } + } node, ok := n.FlashbackTS.Accept(v) if !ok { return n, false diff --git a/parser/ast/ddl_test.go b/parser/ast/ddl_test.go index 44059151db3b6..3a5b1087d0bd2 100644 --- a/parser/ast/ddl_test.go +++ b/parser/ast/ddl_test.go @@ -827,3 +827,16 @@ func TestRemovePlacementRestore(t *testing.T) { runNodeRestoreTestWithFlagsStmtChange(t, testCases, "%s", extractNodeFunc, f) } } + +func TestFlashBackDatabaseRestore(t *testing.T) { + testCases := []NodeRestoreTestCase{ + {"flashback database M", "FLASHBACK DATABASE `M`"}, + {"flashback schema M", "FLASHBACK DATABASE `M`"}, + {"flashback database M to n", "FLASHBACK DATABASE `M` TO `n`"}, + {"flashback schema M to N", "FLASHBACK DATABASE `M` TO `N`"}, + } + extractNodeFunc := func(node Node) Node { + return node + } + runNodeRestoreTest(t, testCases, "%s", extractNodeFunc) +} diff --git a/parser/ast/dml.go b/parser/ast/dml.go index 4b5ddbae45d8d..2712a8f7eba51 100644 --- a/parser/ast/dml.go +++ b/parser/ast/dml.go @@ -31,7 +31,7 @@ var ( _ DMLNode = &ShowStmt{} _ DMLNode = &LoadDataStmt{} _ DMLNode = &SplitRegionStmt{} - _ DMLNode = &NonTransactionalDeleteStmt{} + _ DMLNode = &NonTransactionalDMLStmt{} _ Node = &Assignment{} _ Node = &ByItem{} @@ -1642,7 +1642,7 @@ func (n *SetOprStmt) Restore(ctx *format.RestoreCtx) error { if n.With != nil { defer ctx.RestoreCTEFunc()() //nolint: all_revive if err := n.With.Restore(ctx); err != nil { - return errors.Annotate(err, "An error occurred while restore UnionStmt.With") + return errors.Annotate(err, "An error occurred while restore SetOprStmt.With") } } if n.IsInBraces { @@ -2197,6 +2197,43 @@ func (n *InsertStmt) Accept(v Visitor) (Node, bool) { return v.Leave(n) } +// WhereExpr implements ShardableDMLStmt interface. +func (n *InsertStmt) WhereExpr() ExprNode { + if n.Select == nil { + return nil + } + s, ok := n.Select.(*SelectStmt) + if !ok { + return nil + } + return s.Where +} + +// SetWhereExpr implements ShardableDMLStmt interface. +func (n *InsertStmt) SetWhereExpr(e ExprNode) { + if n.Select == nil { + return + } + s, ok := n.Select.(*SelectStmt) + if !ok { + return + } + s.Where = e +} + +// TableSource implements ShardableDMLStmt interface. +func (n *InsertStmt) TableSource() (*TableSource, bool) { + if n.Select == nil { + return nil, false + } + s, ok := n.Select.(*SelectStmt) + if !ok { + return nil, false + } + table, ok := s.From.TableRefs.Left.(*TableSource) + return table, ok +} + // DeleteStmt is a statement to delete rows from table. // See https://dev.mysql.com/doc/refman/5.7/en/delete.html type DeleteStmt struct { @@ -2363,23 +2400,51 @@ func (n *DeleteStmt) Accept(v Visitor) (Node, bool) { return v.Leave(n) } +// WhereExpr implements ShardableDMLStmt interface. +func (n *DeleteStmt) WhereExpr() ExprNode { + return n.Where +} + +// SetWhereExpr implements ShardableDMLStmt interface. +func (n *DeleteStmt) SetWhereExpr(e ExprNode) { + n.Where = e +} + +// TableSource implements ShardableDMLStmt interface. +func (n *DeleteStmt) TableSource() (*TableSource, bool) { + table, ok := n.TableRefs.TableRefs.Left.(*TableSource) + return table, ok +} + const ( NoDryRun = iota DryRunQuery DryRunSplitDml ) -type NonTransactionalDeleteStmt struct { +type ShardableDMLStmt = interface { + StmtNode + WhereExpr() ExprNode + SetWhereExpr(ExprNode) + // TableSource returns the *only* target table source in the statement. + TableSource() (table *TableSource, ok bool) +} + +var _ ShardableDMLStmt = &DeleteStmt{} +var _ ShardableDMLStmt = &UpdateStmt{} +var _ ShardableDMLStmt = &InsertStmt{} + +type NonTransactionalDMLStmt struct { dmlNode DryRun int // 0: no dry run, 1: dry run the query, 2: dry run split DMLs ShardColumn *ColumnName // if it's nil, the handle column is automatically chosen for it Limit uint64 - DeleteStmt *DeleteStmt + DMLStmt ShardableDMLStmt } // Restore implements Node interface. -func (n *NonTransactionalDeleteStmt) Restore(ctx *format.RestoreCtx) error { +func (n *NonTransactionalDMLStmt) Restore(ctx *format.RestoreCtx) error { ctx.WriteKeyWord("BATCH ") if n.ShardColumn != nil { ctx.WriteKeyWord("ON ") @@ -2396,20 +2461,20 @@ func (n *NonTransactionalDeleteStmt) Restore(ctx *format.RestoreCtx) error { if n.DryRun == DryRunQuery { ctx.WriteKeyWord("DRY RUN QUERY ") } - if err := n.DeleteStmt.Restore(ctx); err != nil { + if err := n.DMLStmt.Restore(ctx); err != nil { return errors.Trace(err) } return nil } // Accept implements Node Accept interface. -func (n *NonTransactionalDeleteStmt) Accept(v Visitor) (Node, bool) { +func (n *NonTransactionalDMLStmt) Accept(v Visitor) (Node, bool) { newNode, skipChildren := v.Enter(n) if skipChildren { return v.Leave(newNode) } - n = newNode.(*NonTransactionalDeleteStmt) + n = newNode.(*NonTransactionalDMLStmt) if n.ShardColumn != nil { node, ok := n.ShardColumn.Accept(v) if !ok { @@ -2417,12 +2482,12 @@ func (n *NonTransactionalDeleteStmt) Accept(v Visitor) (Node, bool) { } n.ShardColumn = node.(*ColumnName) } - if n.DeleteStmt != nil { - node, ok := n.DeleteStmt.Accept(v) + if n.DMLStmt != nil { + node, ok := n.DMLStmt.Accept(v) if !ok { return n, false } - n.DeleteStmt = node.(*DeleteStmt) + n.DMLStmt = node.(ShardableDMLStmt) } return v.Leave(n) } @@ -2574,6 +2639,22 @@ func (n *UpdateStmt) Accept(v Visitor) (Node, bool) { return v.Leave(n) } +// WhereExpr implements ShardableDMLStmt interface. +func (n *UpdateStmt) WhereExpr() ExprNode { + return n.Where +} + +// SetWhereExpr implements ShardableDMLStmt interface. +func (n *UpdateStmt) SetWhereExpr(e ExprNode) { + n.Where = e +} + +// TableSource implements ShardableDMLStmt interface. +func (n *UpdateStmt) TableSource() (*TableSource, bool) { + table, ok := n.TableRefs.TableRefs.Left.(*TableSource) + return table, ok +} + // Limit is the limit clause. type Limit struct { node @@ -2657,6 +2738,7 @@ const ( ShowStatsTopN ShowStatsBuckets ShowStatsHealthy + ShowStatsLocked ShowHistogramsInFlight ShowColumnStatsUsage ShowPlugins @@ -2831,6 +2913,11 @@ func (n *ShowStmt) Restore(ctx *format.RestoreCtx) error { if err := restoreShowLikeOrWhereOpt(); err != nil { return err } + case ShowStatsLocked: + ctx.WriteKeyWord("STATS_LOCKED") + if err := restoreShowLikeOrWhereOpt(); err != nil { + return err + } case ShowStatsHistograms: ctx.WriteKeyWord("STATS_HISTOGRAMS") if err := restoreShowLikeOrWhereOpt(); err != nil { diff --git a/parser/ast/functions.go b/parser/ast/functions.go index 5da3d4ad394c4..af47b56515743 100644 --- a/parser/ast/functions.go +++ b/parser/ast/functions.go @@ -341,6 +341,7 @@ const ( JSONPretty = "json_pretty" JSONQuote = "json_quote" JSONSearch = "json_search" + JSONStorageFree = "json_storage_free" JSONStorageSize = "json_storage_size" JSONDepth = "json_depth" JSONKeys = "json_keys" diff --git a/parser/ast/misc.go b/parser/ast/misc.go index c7d23ddcfddac..b0668c7a09a7e 100644 --- a/parser/ast/misc.go +++ b/parser/ast/misc.go @@ -937,6 +937,8 @@ type KillStmt struct { // So, "KILL TIDB" grammar is introduced, and it REQUIRES DIRECT client -> TiDB TOPOLOGY. // TODO: The standard KILL grammar will be supported once we have global connectionID. TiDBExtension bool + + Expr ExprNode } // Restore implements Node interface. @@ -948,7 +950,14 @@ func (n *KillStmt) Restore(ctx *format.RestoreCtx) error { if n.Query { ctx.WriteKeyWord(" QUERY") } - ctx.WritePlainf(" %d", n.ConnectionID) + if n.Expr != nil { + ctx.WriteKeyWord(" ") + if err := n.Expr.Restore(ctx); err != nil { + return errors.Trace(err) + } + } else { + ctx.WritePlainf(" %d", n.ConnectionID) + } return nil } @@ -1380,22 +1389,12 @@ func (n *UserSpec) EncodedPassword() (string, bool) { return opt.HashString, true } -const ( - TlsNone = iota - Ssl - X509 - Cipher - Issuer - Subject - SAN -) - -type TLSOption struct { - Type int +type AuthTokenOrTLSOption struct { + Type AuthTokenOrTLSOptionType Value string } -func (t *TLSOption) Restore(ctx *format.RestoreCtx) error { +func (t *AuthTokenOrTLSOption) Restore(ctx *format.RestoreCtx) error { switch t.Type { case TlsNone: ctx.WriteKeyWord("NONE") @@ -1415,12 +1414,51 @@ func (t *TLSOption) Restore(ctx *format.RestoreCtx) error { case SAN: ctx.WriteKeyWord("SAN ") ctx.WriteString(t.Value) + case TokenIssuer: + ctx.WriteKeyWord("TOKEN_ISSUER ") + ctx.WriteString(t.Value) default: - return errors.Errorf("Unsupported TLSOption.Type %d", t.Type) + return errors.Errorf("Unsupported AuthTokenOrTLSOption.Type %d", t.Type) } return nil } +type AuthTokenOrTLSOptionType int + +const ( + TlsNone AuthTokenOrTLSOptionType = iota + Ssl + X509 + Cipher + Issuer + Subject + SAN + TokenIssuer +) + +func (t AuthTokenOrTLSOptionType) String() string { + switch t { + case TlsNone: + return "NONE" + case Ssl: + return "SSL" + case X509: + return "X509" + case Cipher: + return "CIPHER" + case Issuer: + return "ISSUER" + case Subject: + return "SUBJECT" + case SAN: + return "SAN" + case TokenIssuer: + return "TOKEN_ISSUER" + default: + return "UNKNOWN" + } +} + const ( MaxQueriesPerHour = iota + 1 MaxUpdatesPerHour @@ -1457,6 +1495,9 @@ const ( PasswordExpireInterval Lock Unlock + + UserCommentType + UserAttributeType ) type PasswordOrLockOption struct { @@ -1486,17 +1527,34 @@ func (p *PasswordOrLockOption) Restore(ctx *format.RestoreCtx) error { return nil } +type CommentOrAttributeOption struct { + Type int + Value string +} + +func (c *CommentOrAttributeOption) Restore(ctx *format.RestoreCtx) error { + if c.Type == UserCommentType { + ctx.WriteKeyWord(" COMMENT ") + ctx.WriteString(c.Value) + } else if c.Type == UserAttributeType { + ctx.WriteKeyWord(" ATTRIBUTE ") + ctx.WriteString(c.Value) + } + return nil +} + // CreateUserStmt creates user account. -// See https://dev.mysql.com/doc/refman/5.7/en/create-user.html +// See https://dev.mysql.com/doc/refman/8.0/en/create-user.html type CreateUserStmt struct { stmtNode - IsCreateRole bool - IfNotExists bool - Specs []*UserSpec - TLSOptions []*TLSOption - ResourceOptions []*ResourceOption - PasswordOrLockOptions []*PasswordOrLockOption + IsCreateRole bool + IfNotExists bool + Specs []*UserSpec + AuthTokenOrTLSOptions []*AuthTokenOrTLSOption + ResourceOptions []*ResourceOption + PasswordOrLockOptions []*PasswordOrLockOption + CommentOrAttributeOption *CommentOrAttributeOption } // Restore implements Node interface. @@ -1518,16 +1576,16 @@ func (n *CreateUserStmt) Restore(ctx *format.RestoreCtx) error { } } - if len(n.TLSOptions) != 0 { + if len(n.AuthTokenOrTLSOptions) != 0 { ctx.WriteKeyWord(" REQUIRE ") } - for i, option := range n.TLSOptions { + for i, option := range n.AuthTokenOrTLSOptions { if i != 0 { ctx.WriteKeyWord(" AND ") } if err := option.Restore(ctx); err != nil { - return errors.Annotatef(err, "An error occurred while restore CreateUserStmt.TLSOptions[%d]", i) + return errors.Annotatef(err, "An error occurred while restore CreateUserStmt.AuthTokenOrTLSOptions[%d]", i) } } @@ -1548,6 +1606,13 @@ func (n *CreateUserStmt) Restore(ctx *format.RestoreCtx) error { return errors.Annotatef(err, "An error occurred while restore CreateUserStmt.PasswordOrLockOptions[%d]", i) } } + + if n.CommentOrAttributeOption != nil { + if err := n.CommentOrAttributeOption.Restore(ctx); err != nil { + return errors.Annotatef(err, "An error occurred while restore CreateUserStmt.CommentOrAttributeOption") + } + } + return nil } @@ -1573,16 +1638,17 @@ func (n *CreateUserStmt) SecureText() string { } // AlterUserStmt modifies user account. -// See https://dev.mysql.com/doc/refman/5.7/en/alter-user.html +// See https://dev.mysql.com/doc/refman/8.0/en/alter-user.html type AlterUserStmt struct { stmtNode - IfExists bool - CurrentAuth *AuthOption - Specs []*UserSpec - TLSOptions []*TLSOption - ResourceOptions []*ResourceOption - PasswordOrLockOptions []*PasswordOrLockOption + IfExists bool + CurrentAuth *AuthOption + Specs []*UserSpec + AuthTokenOrTLSOptions []*AuthTokenOrTLSOption + ResourceOptions []*ResourceOption + PasswordOrLockOptions []*PasswordOrLockOption + CommentOrAttributeOption *CommentOrAttributeOption } // Restore implements Node interface. @@ -1607,16 +1673,16 @@ func (n *AlterUserStmt) Restore(ctx *format.RestoreCtx) error { } } - if len(n.TLSOptions) != 0 { + if len(n.AuthTokenOrTLSOptions) != 0 { ctx.WriteKeyWord(" REQUIRE ") } - for i, option := range n.TLSOptions { + for i, option := range n.AuthTokenOrTLSOptions { if i != 0 { ctx.WriteKeyWord(" AND ") } if err := option.Restore(ctx); err != nil { - return errors.Annotatef(err, "An error occurred while restore AlterUserStmt.TLSOptions[%d]", i) + return errors.Annotatef(err, "An error occurred while restore AlterUserStmt.AuthTokenOrTLSOptions[%d]", i) } } @@ -1637,6 +1703,13 @@ func (n *AlterUserStmt) Restore(ctx *format.RestoreCtx) error { return errors.Annotatef(err, "An error occurred while restore AlterUserStmt.PasswordOrLockOptions[%d]", i) } } + + if n.CommentOrAttributeOption != nil { + if err := n.CommentOrAttributeOption.Restore(ctx); err != nil { + return errors.Annotatef(err, "An error occurred while restore AlterUserStmt.CommentOrAttributeOption") + } + } + return nil } @@ -2608,12 +2681,12 @@ func (n *RevokeRoleStmt) Accept(v Visitor) (Node, bool) { type GrantStmt struct { stmtNode - Privs []*PrivElem - ObjectType ObjectTypeType - Level *GrantLevel - Users []*UserSpec - TLSOptions []*TLSOption - WithGrant bool + Privs []*PrivElem + ObjectType ObjectTypeType + Level *GrantLevel + Users []*UserSpec + AuthTokenOrTLSOptions []*AuthTokenOrTLSOption + WithGrant bool } // Restore implements Node interface. @@ -2648,16 +2721,16 @@ func (n *GrantStmt) Restore(ctx *format.RestoreCtx) error { return errors.Annotatef(err, "An error occurred while restore GrantStmt.Users[%d]", i) } } - if n.TLSOptions != nil { - if len(n.TLSOptions) != 0 { + if n.AuthTokenOrTLSOptions != nil { + if len(n.AuthTokenOrTLSOptions) != 0 { ctx.WriteKeyWord(" REQUIRE ") } - for i, option := range n.TLSOptions { + for i, option := range n.AuthTokenOrTLSOptions { if i != 0 { ctx.WriteKeyWord(" AND ") } if err := option.Restore(ctx); err != nil { - return errors.Annotatef(err, "An error occurred while restore GrantStmt.TLSOptions[%d]", i) + return errors.Annotatef(err, "An error occurred while restore GrantStmt.AuthTokenOrTLSOptions[%d]", i) } } } @@ -3577,7 +3650,7 @@ func (n *TableOptimizerHint) Restore(ctx *format.RestoreCtx) error { } // Hints without args except query block. switch n.HintName.L { - case "hash_agg", "stream_agg", "agg_to_cop", "read_consistent_replica", "no_index_merge", "qb_name", "ignore_plan_cache", "limit_to_cop", "straight_join", "merge", "no_decorrelate": + case "mpp_1phase_agg", "mpp_2phase_agg", "hash_agg", "stream_agg", "agg_to_cop", "read_consistent_replica", "no_index_merge", "qb_name", "ignore_plan_cache", "limit_to_cop", "straight_join", "merge", "no_decorrelate": ctx.WritePlain(")") return nil } @@ -3590,7 +3663,7 @@ func (n *TableOptimizerHint) Restore(ctx *format.RestoreCtx) error { ctx.WritePlainf("%d", n.HintData.(uint64)) case "nth_plan": ctx.WritePlainf("%d", n.HintData.(int64)) - case "tidb_hj", "tidb_smj", "tidb_inlj", "hash_join", "hash_join_build", "hash_join_probe", "merge_join", "inl_join", "broadcast_join", "inl_hash_join", "inl_merge_join", "leading": + case "tidb_hj", "tidb_smj", "tidb_inlj", "hash_join", "hash_join_build", "hash_join_probe", "merge_join", "inl_join", "broadcast_join", "shuffle_join", "inl_hash_join", "inl_merge_join", "leading": for i, table := range n.Tables { if i != 0 { ctx.WritePlain(", ") diff --git a/parser/ast/misc_test.go b/parser/ast/misc_test.go index 5355d81ae266b..8042a171874d0 100644 --- a/parser/ast/misc_test.go +++ b/parser/ast/misc_test.go @@ -75,7 +75,11 @@ func TestMiscVisitorCover(t *testing.T) { &ast.PrivElem{}, &ast.VariableAssignment{Value: valueExpr}, &ast.KillStmt{}, - &ast.DropStatsStmt{Table: &ast.TableName{}}, + &ast.DropStatsStmt{ + Tables: []*ast.TableName{ + {}, + }, + }, &ast.ShutdownStmt{}, } diff --git a/parser/ast/stats.go b/parser/ast/stats.go index 55bb1f7abbdd8..f7e23a404cf0c 100644 --- a/parser/ast/stats.go +++ b/parser/ast/stats.go @@ -189,10 +189,11 @@ func (n *AnalyzeTableStmt) Accept(v Visitor) (Node, bool) { } // DropStatsStmt is used to drop table statistics. +// if the PartitionNames is not empty, or IsGlobalStats is true, it will contain exactly one table type DropStatsStmt struct { stmtNode - Table *TableName + Tables []*TableName PartitionNames []model.CIStr IsGlobalStats bool } @@ -200,8 +201,14 @@ type DropStatsStmt struct { // Restore implements Node interface. func (n *DropStatsStmt) Restore(ctx *format.RestoreCtx) error { ctx.WriteKeyWord("DROP STATS ") - if err := n.Table.Restore(ctx); err != nil { - return errors.Annotate(err, "An error occurred while add table") + + for index, table := range n.Tables { + if index != 0 { + ctx.WritePlain(", ") + } + if err := table.Restore(ctx); err != nil { + return errors.Annotatef(err, "An error occurred while restore DropStatsStmt.Tables[%d]", index) + } } if n.IsGlobalStats { @@ -228,11 +235,13 @@ func (n *DropStatsStmt) Accept(v Visitor) (Node, bool) { return v.Leave(newNode) } n = newNode.(*DropStatsStmt) - node, ok := n.Table.Accept(v) - if !ok { - return n, false + for i, val := range n.Tables { + node, ok := val.Accept(v) + if !ok { + return n, false + } + n.Tables[i] = node.(*TableName) } - n.Table = node.(*TableName) return v.Leave(n) } @@ -259,3 +268,79 @@ func (n *LoadStatsStmt) Accept(v Visitor) (Node, bool) { n = newNode.(*LoadStatsStmt) return v.Leave(n) } + +// LockStatsStmt is the statement node for lock table statistic +type LockStatsStmt struct { + stmtNode + + Tables []*TableName +} + +// Restore implements Node interface. +func (n *LockStatsStmt) Restore(ctx *format.RestoreCtx) error { + ctx.WriteKeyWord("LOCK STATS ") + for index, table := range n.Tables { + if index != 0 { + ctx.WritePlain(", ") + } + if err := table.Restore(ctx); err != nil { + return errors.Annotatef(err, "An error occurred while restore LockStatsStmt.Tables[%d]", index) + } + } + return nil +} + +// Accept implements Node Accept interface. +func (n *LockStatsStmt) Accept(v Visitor) (Node, bool) { + newNode, skipChildren := v.Enter(n) + if skipChildren { + return v.Leave(newNode) + } + n = newNode.(*LockStatsStmt) + for i, val := range n.Tables { + node, ok := val.Accept(v) + if !ok { + return n, false + } + n.Tables[i] = node.(*TableName) + } + return v.Leave(n) +} + +// UnlockStatsStmt is the statement node for unlock table statistic +type UnlockStatsStmt struct { + stmtNode + + Tables []*TableName +} + +// Restore implements Node interface. +func (n *UnlockStatsStmt) Restore(ctx *format.RestoreCtx) error { + ctx.WriteKeyWord("UNLOCK STATS ") + for index, table := range n.Tables { + if index != 0 { + ctx.WritePlain(", ") + } + if err := table.Restore(ctx); err != nil { + return errors.Annotatef(err, "An error occurred while restore UnlockStatsStmt.Tables[%d]", index) + } + } + return nil +} + +// Accept implements Node Accept interface. +func (n *UnlockStatsStmt) Accept(v Visitor) (Node, bool) { + newNode, skipChildren := v.Enter(n) + if skipChildren { + return v.Leave(newNode) + } + n = newNode.(*UnlockStatsStmt) + for i, val := range n.Tables { + node, ok := val.Accept(v) + if !ok { + return n, false + } + n.Tables[i] = node.(*TableName) + } + return v.Leave(n) +} diff --git a/parser/hintparser.go b/parser/hintparser.go index 6b7b5819d5bf8..1b14e7d292e1e 100644 --- a/parser/hintparser.go +++ b/parser/hintparser.go @@ -41,47 +41,49 @@ type yyhintXError struct { } const ( - yyhintDefault = 57421 + yyhintDefault = 57424 yyhintEOFCode = 57344 yyhintErrCode = 57345 hintAggToCop = 57379 - hintBCJoin = 57392 + hintBCJoin = 57394 hintBKA = 57355 hintBNL = 57357 - hintDupsWeedOut = 57417 - hintFalse = 57413 - hintFirstMatch = 57418 - hintForceIndex = 57403 - hintGB = 57416 + hintDupsWeedOut = 57420 + hintFalse = 57416 + hintFirstMatch = 57421 + hintForceIndex = 57406 + hintGB = 57419 hintHashAgg = 57381 hintHashJoin = 57359 hintHashJoinBuild = 57360 hintHashJoinProbe = 57361 hintIdentifier = 57347 - hintIgnoreIndex = 57382 + hintIgnoreIndex = 57384 hintIgnorePlanCache = 57380 hintIndexMerge = 57365 - hintInlHashJoin = 57383 - hintInlJoin = 57384 - hintInlMergeJoin = 57385 + hintInlHashJoin = 57385 + hintInlJoin = 57386 + hintInlMergeJoin = 57387 hintIntLit = 57346 hintInvalid = 57348 hintJoinFixedOrder = 57351 hintJoinOrder = 57352 hintJoinPrefix = 57353 hintJoinSuffix = 57354 - hintLeading = 57405 - hintLimitToCop = 57402 - hintLooseScan = 57419 - hintMB = 57415 + hintLeading = 57408 + hintLimitToCop = 57405 + hintLooseScan = 57422 + hintMB = 57418 hintMRR = 57367 - hintMaterialization = 57420 + hintMaterialization = 57423 hintMaxExecutionTime = 57375 - hintMemoryQuota = 57386 + hintMemoryQuota = 57388 hintMerge = 57363 + hintMpp1PhaseAgg = 57382 + hintMpp2PhaseAgg = 57383 hintNoBKA = 57356 hintNoBNL = 57358 - hintNoDecorrelate = 57407 + hintNoDecorrelate = 57410 hintNoHashJoin = 57362 hintNoICP = 57369 hintNoIndexMerge = 57366 @@ -90,160 +92,166 @@ const ( hintNoRangeOptimization = 57370 hintNoSemijoin = 57374 hintNoSkipScan = 57372 - hintNoSwapJoinInputs = 57387 - hintNthPlan = 57401 - hintOLAP = 57408 - hintOLTP = 57409 - hintPartition = 57410 + hintNoSwapJoinInputs = 57389 + hintNthPlan = 57404 + hintOLAP = 57411 + hintOLTP = 57412 + hintPartition = 57413 hintQBName = 57378 - hintQueryType = 57388 - hintReadConsistentReplica = 57389 - hintReadFromStorage = 57390 + hintQueryType = 57390 + hintReadConsistentReplica = 57391 + hintReadFromStorage = 57392 hintResourceGroup = 57377 - hintSMJoin = 57391 - hintSemiJoinRewrite = 57406 + hintSMJoin = 57393 + hintSemiJoinRewrite = 57409 hintSemijoin = 57373 hintSetVar = 57376 + hintShuffleJoin = 57395 hintSingleAtIdentifier = 57349 hintSkipScan = 57371 - hintStraightJoin = 57404 - hintStreamAgg = 57393 + hintStraightJoin = 57407 + hintStreamAgg = 57396 hintStringLit = 57350 - hintSwapJoinInputs = 57394 - hintTiFlash = 57412 - hintTiKV = 57411 - hintTimeRange = 57399 - hintTrue = 57414 - hintUseCascades = 57400 - hintUseIndex = 57396 - hintUseIndexMerge = 57395 - hintUsePlanCache = 57397 - hintUseToja = 57398 + hintSwapJoinInputs = 57397 + hintTiFlash = 57415 + hintTiKV = 57414 + hintTimeRange = 57402 + hintTrue = 57417 + hintUseCascades = 57403 + hintUseIndex = 57399 + hintUseIndexMerge = 57398 + hintUsePlanCache = 57400 + hintUseToja = 57401 yyhintMaxDepth = 200 - yyhintTabOfs = -182 + yyhintTabOfs = -193 ) var ( yyhintXLAT = map[int]int{ - 41: 0, // ')' (135x) - 57379: 1, // hintAggToCop (127x) - 57392: 2, // hintBCJoin (127x) - 57355: 3, // hintBKA (127x) - 57357: 4, // hintBNL (127x) - 57403: 5, // hintForceIndex (127x) - 57381: 6, // hintHashAgg (127x) - 57359: 7, // hintHashJoin (127x) - 57360: 8, // hintHashJoinBuild (127x) - 57361: 9, // hintHashJoinProbe (127x) - 57382: 10, // hintIgnoreIndex (127x) - 57380: 11, // hintIgnorePlanCache (127x) - 57365: 12, // hintIndexMerge (127x) - 57383: 13, // hintInlHashJoin (127x) - 57384: 14, // hintInlJoin (127x) - 57385: 15, // hintInlMergeJoin (127x) - 57351: 16, // hintJoinFixedOrder (127x) - 57352: 17, // hintJoinOrder (127x) - 57353: 18, // hintJoinPrefix (127x) - 57354: 19, // hintJoinSuffix (127x) - 57405: 20, // hintLeading (127x) - 57402: 21, // hintLimitToCop (127x) - 57375: 22, // hintMaxExecutionTime (127x) - 57386: 23, // hintMemoryQuota (127x) - 57363: 24, // hintMerge (127x) - 57367: 25, // hintMRR (127x) - 57356: 26, // hintNoBKA (127x) - 57358: 27, // hintNoBNL (127x) - 57407: 28, // hintNoDecorrelate (127x) - 57362: 29, // hintNoHashJoin (127x) - 57369: 30, // hintNoICP (127x) - 57366: 31, // hintNoIndexMerge (127x) - 57364: 32, // hintNoMerge (127x) - 57368: 33, // hintNoMRR (127x) - 57370: 34, // hintNoRangeOptimization (127x) - 57374: 35, // hintNoSemijoin (127x) - 57372: 36, // hintNoSkipScan (127x) - 57387: 37, // hintNoSwapJoinInputs (127x) - 57401: 38, // hintNthPlan (127x) - 57378: 39, // hintQBName (127x) - 57388: 40, // hintQueryType (127x) - 57389: 41, // hintReadConsistentReplica (127x) - 57390: 42, // hintReadFromStorage (127x) - 57377: 43, // hintResourceGroup (127x) - 57373: 44, // hintSemijoin (127x) - 57406: 45, // hintSemiJoinRewrite (127x) - 57376: 46, // hintSetVar (127x) - 57371: 47, // hintSkipScan (127x) - 57391: 48, // hintSMJoin (127x) - 57404: 49, // hintStraightJoin (127x) - 57393: 50, // hintStreamAgg (127x) - 57394: 51, // hintSwapJoinInputs (127x) - 57399: 52, // hintTimeRange (127x) - 57400: 53, // hintUseCascades (127x) - 57396: 54, // hintUseIndex (127x) - 57395: 55, // hintUseIndexMerge (127x) - 57397: 56, // hintUsePlanCache (127x) - 57398: 57, // hintUseToja (127x) - 44: 58, // ',' (125x) - 57417: 59, // hintDupsWeedOut (105x) - 57418: 60, // hintFirstMatch (105x) - 57419: 61, // hintLooseScan (105x) - 57420: 62, // hintMaterialization (105x) - 57412: 63, // hintTiFlash (105x) - 57411: 64, // hintTiKV (105x) - 57413: 65, // hintFalse (104x) - 57408: 66, // hintOLAP (104x) - 57409: 67, // hintOLTP (104x) - 57414: 68, // hintTrue (104x) - 57416: 69, // hintGB (103x) - 57415: 70, // hintMB (103x) - 57347: 71, // hintIdentifier (102x) - 57349: 72, // hintSingleAtIdentifier (87x) - 93: 73, // ']' (81x) - 57410: 74, // hintPartition (75x) - 46: 75, // '.' (71x) - 61: 76, // '=' (71x) - 40: 77, // '(' (66x) - 57344: 78, // $end (24x) - 57441: 79, // QueryBlockOpt (17x) - 57433: 80, // Identifier (13x) - 57346: 81, // hintIntLit (8x) - 57350: 82, // hintStringLit (5x) - 57423: 83, // CommaOpt (4x) - 57429: 84, // HintTable (4x) - 57430: 85, // HintTableList (4x) - 91: 86, // '[' (3x) - 57422: 87, // BooleanHintName (2x) - 57424: 88, // HintIndexList (2x) - 57426: 89, // HintStorageType (2x) - 57427: 90, // HintStorageTypeAndTable (2x) - 57431: 91, // HintTableListOpt (2x) - 57436: 92, // JoinOrderOptimizerHintName (2x) - 57437: 93, // NullaryHintName (2x) - 57440: 94, // PartitionListOpt (2x) - 57443: 95, // StorageOptimizerHintOpt (2x) - 57444: 96, // SubqueryOptimizerHintName (2x) - 57447: 97, // SubqueryStrategy (2x) - 57448: 98, // SupportedIndexLevelOptimizerHintName (2x) - 57449: 99, // SupportedTableLevelOptimizerHintName (2x) - 57450: 100, // TableOptimizerHintOpt (2x) - 57452: 101, // UnsupportedIndexLevelOptimizerHintName (2x) - 57453: 102, // UnsupportedTableLevelOptimizerHintName (2x) - 57425: 103, // HintQueryType (1x) - 57428: 104, // HintStorageTypeAndTableList (1x) - 57432: 105, // HintTrueOrFalse (1x) - 57434: 106, // IndexNameList (1x) - 57435: 107, // IndexNameListOpt (1x) - 57438: 108, // OptimizerHintList (1x) - 57439: 109, // PartitionList (1x) - 57442: 110, // Start (1x) - 57445: 111, // SubqueryStrategies (1x) - 57446: 112, // SubqueryStrategiesOpt (1x) - 57451: 113, // UnitOfBytes (1x) - 57454: 114, // Value (1x) - 57421: 115, // $default (0x) - 57345: 116, // error (0x) - 57348: 117, // hintInvalid (0x) + 41: 0, // ')' (146x) + 57379: 1, // hintAggToCop (133x) + 57394: 2, // hintBCJoin (133x) + 57355: 3, // hintBKA (133x) + 57357: 4, // hintBNL (133x) + 57406: 5, // hintForceIndex (133x) + 57381: 6, // hintHashAgg (133x) + 57359: 7, // hintHashJoin (133x) + 57360: 8, // hintHashJoinBuild (133x) + 57361: 9, // hintHashJoinProbe (133x) + 57384: 10, // hintIgnoreIndex (133x) + 57380: 11, // hintIgnorePlanCache (133x) + 57365: 12, // hintIndexMerge (133x) + 57385: 13, // hintInlHashJoin (133x) + 57386: 14, // hintInlJoin (133x) + 57387: 15, // hintInlMergeJoin (133x) + 57351: 16, // hintJoinFixedOrder (133x) + 57352: 17, // hintJoinOrder (133x) + 57353: 18, // hintJoinPrefix (133x) + 57354: 19, // hintJoinSuffix (133x) + 57408: 20, // hintLeading (133x) + 57405: 21, // hintLimitToCop (133x) + 57375: 22, // hintMaxExecutionTime (133x) + 57388: 23, // hintMemoryQuota (133x) + 57363: 24, // hintMerge (133x) + 57382: 25, // hintMpp1PhaseAgg (133x) + 57383: 26, // hintMpp2PhaseAgg (133x) + 57367: 27, // hintMRR (133x) + 57356: 28, // hintNoBKA (133x) + 57358: 29, // hintNoBNL (133x) + 57410: 30, // hintNoDecorrelate (133x) + 57362: 31, // hintNoHashJoin (133x) + 57369: 32, // hintNoICP (133x) + 57366: 33, // hintNoIndexMerge (133x) + 57364: 34, // hintNoMerge (133x) + 57368: 35, // hintNoMRR (133x) + 57370: 36, // hintNoRangeOptimization (133x) + 57374: 37, // hintNoSemijoin (133x) + 57372: 38, // hintNoSkipScan (133x) + 57389: 39, // hintNoSwapJoinInputs (133x) + 57404: 40, // hintNthPlan (133x) + 57378: 41, // hintQBName (133x) + 57390: 42, // hintQueryType (133x) + 57391: 43, // hintReadConsistentReplica (133x) + 57392: 44, // hintReadFromStorage (133x) + 57377: 45, // hintResourceGroup (133x) + 57373: 46, // hintSemijoin (133x) + 57409: 47, // hintSemiJoinRewrite (133x) + 57376: 48, // hintSetVar (133x) + 57395: 49, // hintShuffleJoin (133x) + 57371: 50, // hintSkipScan (133x) + 57393: 51, // hintSMJoin (133x) + 57407: 52, // hintStraightJoin (133x) + 57396: 53, // hintStreamAgg (133x) + 57397: 54, // hintSwapJoinInputs (133x) + 57402: 55, // hintTimeRange (133x) + 57403: 56, // hintUseCascades (133x) + 57399: 57, // hintUseIndex (133x) + 57398: 58, // hintUseIndexMerge (133x) + 57400: 59, // hintUsePlanCache (133x) + 57401: 60, // hintUseToja (133x) + 44: 61, // ',' (130x) + 57420: 62, // hintDupsWeedOut (110x) + 57421: 63, // hintFirstMatch (110x) + 57422: 64, // hintLooseScan (110x) + 57423: 65, // hintMaterialization (110x) + 57415: 66, // hintTiFlash (110x) + 57414: 67, // hintTiKV (110x) + 57416: 68, // hintFalse (109x) + 57411: 69, // hintOLAP (109x) + 57412: 70, // hintOLTP (109x) + 57417: 71, // hintTrue (109x) + 57419: 72, // hintGB (108x) + 57418: 73, // hintMB (108x) + 57347: 74, // hintIdentifier (107x) + 57349: 75, // hintSingleAtIdentifier (93x) + 93: 76, // ']' (84x) + 46: 77, // '.' (83x) + 57413: 78, // hintPartition (78x) + 61: 79, // '=' (74x) + 40: 80, // '(' (69x) + 57344: 81, // $end (25x) + 57444: 82, // QueryBlockOpt (20x) + 57436: 83, // Identifier (15x) + 57346: 84, // hintIntLit (8x) + 57350: 85, // hintStringLit (5x) + 57426: 86, // CommaOpt (4x) + 57432: 87, // HintTable (4x) + 57433: 88, // HintTableList (4x) + 91: 89, // '[' (3x) + 57425: 90, // BooleanHintName (2x) + 57427: 91, // HintIndexList (2x) + 57429: 92, // HintStorageType (2x) + 57430: 93, // HintStorageTypeAndTable (2x) + 57434: 94, // HintTableListOpt (2x) + 57439: 95, // JoinOrderOptimizerHintName (2x) + 57440: 96, // NullaryHintName (2x) + 57443: 97, // PartitionListOpt (2x) + 57446: 98, // StorageOptimizerHintOpt (2x) + 57447: 99, // SubqueryOptimizerHintName (2x) + 57450: 100, // SubqueryStrategy (2x) + 57451: 101, // SupportedIndexLevelOptimizerHintName (2x) + 57452: 102, // SupportedTableLevelOptimizerHintName (2x) + 57453: 103, // TableOptimizerHintOpt (2x) + 57455: 104, // UnsupportedIndexLevelOptimizerHintName (2x) + 57456: 105, // UnsupportedTableLevelOptimizerHintName (2x) + 57458: 106, // ViewName (2x) + 57428: 107, // HintQueryType (1x) + 57431: 108, // HintStorageTypeAndTableList (1x) + 57435: 109, // HintTrueOrFalse (1x) + 57437: 110, // IndexNameList (1x) + 57438: 111, // IndexNameListOpt (1x) + 57441: 112, // OptimizerHintList (1x) + 57442: 113, // PartitionList (1x) + 57445: 114, // Start (1x) + 57448: 115, // SubqueryStrategies (1x) + 57449: 116, // SubqueryStrategiesOpt (1x) + 57454: 117, // UnitOfBytes (1x) + 57457: 118, // Value (1x) + 57459: 119, // ViewNameList (1x) + 57424: 120, // $default (0x) + 57345: 121, // error (0x) + 57348: 122, // hintInvalid (0x) } yyhintSymNames = []string{ @@ -272,6 +280,8 @@ var ( "hintMaxExecutionTime", "hintMemoryQuota", "hintMerge", + "hintMpp1PhaseAgg", + "hintMpp2PhaseAgg", "hintMRR", "hintNoBKA", "hintNoBNL", @@ -294,6 +304,7 @@ var ( "hintSemijoin", "hintSemiJoinRewrite", "hintSetVar", + "hintShuffleJoin", "hintSkipScan", "hintSMJoin", "hintStraightJoin", @@ -321,8 +332,8 @@ var ( "hintIdentifier", "hintSingleAtIdentifier", "']'", - "hintPartition", "'.'", + "hintPartition", "'='", "'('", "$end", @@ -350,6 +361,7 @@ var ( "TableOptimizerHintOpt", "UnsupportedIndexLevelOptimizerHintName", "UnsupportedTableLevelOptimizerHintName", + "ViewName", "HintQueryType", "HintStorageTypeAndTableList", "HintTrueOrFalse", @@ -362,6 +374,7 @@ var ( "SubqueryStrategiesOpt", "UnitOfBytes", "Value", + "ViewNameList", "$default", "error", "hintInvalid", @@ -369,510 +382,539 @@ var ( yyhintReductions = []struct{ xsym, components int }{ {0, 1}, - {110, 1}, - {108, 1}, - {108, 3}, + {114, 1}, + {112, 1}, + {112, 3}, + {112, 1}, + {112, 3}, + {103, 4}, + {103, 4}, + {103, 4}, + {103, 4}, + {103, 4}, + {103, 4}, + {103, 5}, + {103, 5}, + {103, 5}, + {103, 6}, + {103, 4}, + {103, 4}, + {103, 6}, + {103, 6}, + {103, 6}, + {103, 5}, + {103, 4}, + {103, 5}, + {98, 5}, {108, 1}, {108, 3}, - {100, 4}, - {100, 4}, - {100, 4}, - {100, 4}, - {100, 4}, - {100, 4}, - {100, 5}, - {100, 5}, - {100, 5}, - {100, 6}, - {100, 4}, - {100, 4}, - {100, 6}, - {100, 6}, - {100, 5}, - {100, 4}, - {100, 5}, - {95, 5}, - {104, 1}, - {104, 3}, - {90, 4}, - {79, 0}, - {79, 1}, - {83, 0}, - {83, 1}, - {94, 0}, - {94, 4}, - {109, 1}, - {109, 3}, - {91, 1}, - {91, 1}, - {85, 2}, - {85, 3}, - {84, 3}, - {84, 5}, - {88, 4}, - {107, 0}, - {107, 1}, + {93, 4}, + {82, 0}, + {82, 1}, + {86, 0}, + {86, 1}, + {97, 0}, + {97, 4}, + {113, 1}, + {113, 3}, + {94, 1}, + {94, 1}, + {88, 2}, + {88, 3}, + {87, 3}, + {87, 5}, + {119, 3}, + {119, 1}, + {106, 2}, {106, 1}, - {106, 3}, - {112, 0}, - {112, 1}, + {91, 4}, + {111, 0}, {111, 1}, - {111, 3}, - {114, 1}, - {114, 1}, - {114, 1}, - {113, 1}, - {113, 1}, + {110, 1}, + {110, 3}, + {116, 0}, + {116, 1}, + {115, 1}, + {115, 3}, + {118, 1}, + {118, 1}, + {118, 1}, + {117, 1}, + {117, 1}, + {109, 1}, + {109, 1}, + {95, 1}, + {95, 1}, + {95, 1}, + {105, 1}, + {105, 1}, + {105, 1}, + {105, 1}, {105, 1}, {105, 1}, - {92, 1}, - {92, 1}, - {92, 1}, {102, 1}, {102, 1}, {102, 1}, {102, 1}, {102, 1}, {102, 1}, - {99, 1}, - {99, 1}, - {99, 1}, - {99, 1}, - {99, 1}, - {99, 1}, - {99, 1}, - {99, 1}, - {99, 1}, - {99, 1}, - {99, 1}, - {99, 1}, - {101, 1}, - {101, 1}, - {101, 1}, + {102, 1}, + {102, 1}, + {102, 1}, + {102, 1}, + {102, 1}, + {102, 1}, + {102, 1}, + {104, 1}, + {104, 1}, + {104, 1}, + {104, 1}, + {104, 1}, + {104, 1}, + {104, 1}, {101, 1}, {101, 1}, {101, 1}, {101, 1}, - {98, 1}, - {98, 1}, - {98, 1}, - {98, 1}, + {99, 1}, + {99, 1}, + {100, 1}, + {100, 1}, + {100, 1}, + {100, 1}, + {90, 1}, + {90, 1}, + {96, 1}, + {96, 1}, + {96, 1}, + {96, 1}, + {96, 1}, + {96, 1}, + {96, 1}, + {96, 1}, + {96, 1}, {96, 1}, {96, 1}, - {97, 1}, - {97, 1}, - {97, 1}, - {97, 1}, - {87, 1}, - {87, 1}, - {93, 1}, - {93, 1}, - {93, 1}, - {93, 1}, - {93, 1}, - {93, 1}, - {93, 1}, - {93, 1}, - {93, 1}, - {93, 1}, - {93, 1}, - {103, 1}, - {103, 1}, - {89, 1}, - {89, 1}, - {80, 1}, - {80, 1}, - {80, 1}, - {80, 1}, - {80, 1}, - {80, 1}, - {80, 1}, - {80, 1}, - {80, 1}, - {80, 1}, - {80, 1}, - {80, 1}, - {80, 1}, - {80, 1}, - {80, 1}, - {80, 1}, - {80, 1}, - {80, 1}, - {80, 1}, - {80, 1}, - {80, 1}, - {80, 1}, - {80, 1}, - {80, 1}, - {80, 1}, - {80, 1}, - {80, 1}, - {80, 1}, - {80, 1}, - {80, 1}, - {80, 1}, - {80, 1}, - {80, 1}, - {80, 1}, - {80, 1}, - {80, 1}, - {80, 1}, - {80, 1}, - {80, 1}, - {80, 1}, - {80, 1}, - {80, 1}, - {80, 1}, - {80, 1}, - {80, 1}, - {80, 1}, - {80, 1}, - {80, 1}, - {80, 1}, - {80, 1}, - {80, 1}, - {80, 1}, - {80, 1}, - {80, 1}, - {80, 1}, - {80, 1}, - {80, 1}, - {80, 1}, - {80, 1}, - {80, 1}, - {80, 1}, - {80, 1}, - {80, 1}, - {80, 1}, - {80, 1}, - {80, 1}, - {80, 1}, - {80, 1}, - {80, 1}, - {80, 1}, + {96, 1}, + {96, 1}, + {107, 1}, + {107, 1}, + {92, 1}, + {92, 1}, + {83, 1}, + {83, 1}, + {83, 1}, + {83, 1}, + {83, 1}, + {83, 1}, + {83, 1}, + {83, 1}, + {83, 1}, + {83, 1}, + {83, 1}, + {83, 1}, + {83, 1}, + {83, 1}, + {83, 1}, + {83, 1}, + {83, 1}, + {83, 1}, + {83, 1}, + {83, 1}, + {83, 1}, + {83, 1}, + {83, 1}, + {83, 1}, + {83, 1}, + {83, 1}, + {83, 1}, + {83, 1}, + {83, 1}, + {83, 1}, + {83, 1}, + {83, 1}, + {83, 1}, + {83, 1}, + {83, 1}, + {83, 1}, + {83, 1}, + {83, 1}, + {83, 1}, + {83, 1}, + {83, 1}, + {83, 1}, + {83, 1}, + {83, 1}, + {83, 1}, + {83, 1}, + {83, 1}, + {83, 1}, + {83, 1}, + {83, 1}, + {83, 1}, + {83, 1}, + {83, 1}, + {83, 1}, + {83, 1}, + {83, 1}, + {83, 1}, + {83, 1}, + {83, 1}, + {83, 1}, + {83, 1}, + {83, 1}, + {83, 1}, + {83, 1}, + {83, 1}, + {83, 1}, + {83, 1}, + {83, 1}, + {83, 1}, + {83, 1}, + {83, 1}, + {83, 1}, + {83, 1}, } yyhintXErrors = map[yyhintXError]string{} - yyhintParseTab = [265][]uint16{ + yyhintParseTab = [280][]uint16{ // 0 - {1: 244, 215, 208, 210, 236, 242, 222, 223, 224, 234, 248, 226, 218, 216, 221, 187, 205, 206, 207, 225, 245, 194, 199, 217, 227, 209, 211, 251, 212, 229, 246, 213, 228, 230, 238, 232, 220, 195, 198, 203, 247, 204, 197, 237, 250, 196, 231, 214, 249, 243, 219, 200, 240, 233, 235, 241, 239, 87: 201, 92: 188, 202, 95: 186, 193, 98: 192, 190, 185, 191, 189, 108: 184, 110: 183}, - {78: 182}, - {1: 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 344, 78: 181, 83: 444}, - {1: 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 78: 180}, - {1: 178, 178, 178, 178, 178, 178, 178, 178, 178, 178, 178, 178, 178, 178, 178, 178, 178, 178, 178, 178, 178, 178, 178, 178, 178, 178, 178, 178, 178, 178, 178, 178, 178, 178, 178, 178, 178, 178, 178, 178, 178, 178, 178, 178, 178, 178, 178, 178, 178, 178, 178, 178, 178, 178, 178, 178, 178, 178, 78: 178}, + {1: 258, 226, 219, 221, 248, 254, 234, 235, 236, 246, 262, 238, 230, 228, 233, 198, 216, 217, 218, 237, 259, 205, 210, 229, 255, 256, 239, 220, 222, 265, 223, 241, 260, 224, 240, 242, 250, 244, 232, 206, 209, 214, 261, 215, 208, 249, 264, 207, 227, 243, 225, 263, 257, 231, 211, 252, 245, 247, 253, 251, 90: 212, 95: 199, 213, 98: 197, 204, 101: 203, 201, 196, 202, 200, 112: 195, 114: 194}, + {81: 193}, + {1: 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 361, 81: 192, 86: 470}, + {1: 191, 191, 191, 191, 191, 191, 191, 191, 191, 191, 191, 191, 191, 191, 191, 191, 191, 191, 191, 191, 191, 191, 191, 191, 191, 191, 191, 191, 191, 191, 191, 191, 191, 191, 191, 191, 191, 191, 191, 191, 191, 191, 191, 191, 191, 191, 191, 191, 191, 191, 191, 191, 191, 191, 191, 191, 191, 191, 191, 191, 191, 81: 191}, + {1: 189, 189, 189, 189, 189, 189, 189, 189, 189, 189, 189, 189, 189, 189, 189, 189, 189, 189, 189, 189, 189, 189, 189, 189, 189, 189, 189, 189, 189, 189, 189, 189, 189, 189, 189, 189, 189, 189, 189, 189, 189, 189, 189, 189, 189, 189, 189, 189, 189, 189, 189, 189, 189, 189, 189, 189, 189, 189, 189, 189, 189, 81: 189}, // 5 - {77: 441}, - {77: 438}, - {77: 435}, - {77: 430}, - {77: 427}, + {80: 467}, + {80: 464}, + {80: 461}, + {80: 456}, + {80: 453}, // 10 - {77: 416}, - {77: 404}, - {77: 400}, - {77: 396}, - {77: 388}, + {80: 442}, + {80: 430}, + {80: 426}, + {80: 422}, + {80: 414}, // 15 - {77: 385}, - {77: 382}, - {77: 375}, - {77: 370}, - {77: 364}, + {80: 411}, + {80: 399}, + {80: 392}, + {80: 387}, + {80: 381}, // 20 - {77: 361}, - {77: 355}, - {77: 252}, - {77: 125}, - {77: 124}, + {80: 378}, + {80: 372}, + {80: 266}, + {80: 131}, + {80: 130}, // 25 - {77: 123}, - {77: 122}, - {77: 121}, - {77: 120}, - {77: 119}, + {80: 129}, + {80: 128}, + {80: 127}, + {80: 126}, + {80: 125}, // 30 - {77: 118}, - {77: 117}, - {77: 116}, - {77: 115}, - {77: 114}, + {80: 124}, + {80: 123}, + {80: 122}, + {80: 121}, + {80: 120}, // 35 - {77: 113}, - {77: 112}, - {77: 111}, - {77: 110}, - {77: 109}, + {80: 119}, + {80: 118}, + {80: 117}, + {80: 116}, + {80: 115}, // 40 - {77: 108}, - {77: 107}, - {77: 106}, - {77: 105}, - {77: 104}, + {80: 114}, + {80: 113}, + {80: 112}, + {80: 111}, + {80: 110}, // 45 - {77: 103}, - {77: 102}, - {77: 101}, - {77: 100}, - {77: 99}, + {80: 109}, + {80: 108}, + {80: 107}, + {80: 106}, + {80: 105}, // 50 - {77: 98}, - {77: 97}, - {77: 96}, - {77: 95}, - {77: 94}, + {80: 104}, + {80: 103}, + {80: 102}, + {80: 101}, + {80: 100}, // 55 - {77: 93}, - {77: 92}, - {77: 87}, - {77: 86}, - {77: 85}, + {80: 99}, + {80: 98}, + {80: 97}, + {80: 92}, + {80: 91}, // 60 - {77: 84}, - {77: 83}, - {77: 82}, - {77: 81}, - {77: 80}, + {80: 90}, + {80: 89}, + {80: 88}, + {80: 87}, + {80: 86}, // 65 - {77: 79}, - {77: 78}, - {77: 77}, - {77: 76}, - {77: 75}, + {80: 85}, + {80: 84}, + {80: 83}, + {80: 82}, + {80: 81}, // 70 - {63: 155, 155, 72: 254, 79: 253}, - {63: 259, 258, 89: 257, 256, 104: 255}, - {154, 154, 154, 154, 154, 154, 154, 154, 154, 154, 154, 154, 154, 154, 154, 154, 154, 154, 154, 154, 154, 154, 154, 154, 154, 154, 154, 154, 154, 154, 154, 154, 154, 154, 154, 154, 154, 154, 154, 154, 154, 154, 154, 154, 154, 154, 154, 154, 154, 154, 154, 154, 154, 154, 154, 154, 154, 154, 154, 154, 154, 154, 154, 154, 154, 154, 154, 154, 154, 154, 154, 154, 73: 154, 154, 81: 154}, - {352, 58: 353}, - {158, 58: 158}, + {80: 80}, + {80: 79}, + {80: 78}, + {66: 165, 165, 75: 268, 82: 267}, + {66: 273, 272, 92: 271, 270, 108: 269}, // 75 - {86: 260}, - {86: 72}, - {86: 71}, - {1: 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 59: 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 254, 79: 262, 85: 261}, - {58: 350, 73: 349}, + {164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 76: 164, 164, 164, 84: 164}, + {369, 61: 370}, + {168, 61: 168}, + {89: 274}, + {89: 75}, // 80 - {1: 294, 308, 270, 272, 318, 297, 274, 275, 276, 298, 296, 280, 299, 300, 301, 266, 267, 268, 269, 320, 295, 290, 302, 278, 282, 271, 273, 322, 277, 284, 281, 279, 283, 285, 289, 287, 303, 317, 293, 304, 305, 306, 292, 288, 321, 291, 286, 307, 319, 309, 310, 315, 316, 312, 311, 313, 314, 59: 331, 332, 333, 334, 326, 325, 327, 323, 324, 328, 330, 329, 265, 80: 264, 84: 263}, - {145, 58: 145, 73: 145}, - {155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 254, 155, 155, 336, 79: 335}, - {70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70}, - {69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69}, + {89: 74}, + {1: 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 62: 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 268, 82: 276, 88: 275}, + {61: 367, 76: 366}, + {1: 308, 324, 284, 286, 335, 311, 288, 289, 290, 314, 310, 294, 315, 316, 317, 280, 281, 282, 283, 337, 309, 304, 318, 292, 312, 313, 296, 285, 287, 339, 291, 298, 295, 293, 297, 299, 303, 301, 319, 334, 307, 320, 321, 322, 306, 302, 338, 305, 325, 300, 323, 336, 326, 327, 332, 333, 329, 328, 330, 331, 62: 348, 349, 350, 351, 343, 342, 344, 340, 341, 345, 347, 346, 279, 83: 278, 87: 277}, + {155, 61: 155, 76: 155}, // 85 - {68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68}, - {67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67}, - {66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66}, - {65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65}, - {64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64}, + {165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 268, 165, 353, 165, 82: 352}, + {73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73, 73}, + {72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72, 72}, + {71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71, 71}, + {70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70}, // 90 - {63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63}, - {62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62}, - {61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61}, - {60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60}, - {59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59}, + {69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69, 69}, + {68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68, 68}, + {67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67, 67}, + {66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66, 66}, + {65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65, 65}, // 95 - {58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58}, - {57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57}, - {56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56}, - {55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55}, - {54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54}, + {64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64}, + {63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63}, + {62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62, 62}, + {61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61, 61}, + {60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60}, // 100 - {53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53}, - {52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52}, - {51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51}, - {50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50}, - {49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49}, + {59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59, 59}, + {58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58, 58}, + {57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57, 57}, + {56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56}, + {55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55, 55}, // 105 - {48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48}, - {47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47}, - {46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46}, - {45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45}, - {44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44}, + {54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54}, + {53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53, 53}, + {52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52, 52}, + {51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51}, + {50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50}, // 110 - {43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43}, - {42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42}, - {41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41}, - {40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40}, - {39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39}, + {49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49}, + {48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48}, + {47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47}, + {46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46}, + {45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45}, // 115 - {38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38}, - {37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37}, - {36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36}, - {35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35}, - {34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34}, + {44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44}, + {43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43}, + {42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42}, + {41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41}, + {40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40}, // 120 - {33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33}, - {32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32}, - {31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31}, - {30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30}, - {29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29}, + {39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39}, + {38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38}, + {37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37}, + {36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36}, + {35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35}, // 125 - {28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28}, - {27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27}, - {26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26}, - {25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25}, - {24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24}, + {34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34}, + {33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33}, + {32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32}, + {31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31}, + {30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30}, // 130 - {23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23}, - {22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22}, - {21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21}, - {20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20}, - {19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19}, + {29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29}, + {28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28}, + {27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27}, + {26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26}, + {25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25}, // 135 - {18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18}, - {17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17}, - {16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16}, - {15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15}, - {14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14}, + {24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24}, + {23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23}, + {22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22}, + {21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21}, + {20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20}, // 140 - {13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13}, - {12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12}, - {11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11}, - {10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10}, - {9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9}, + {19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19, 19}, + {18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18}, + {17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17, 17}, + {16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16}, + {15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15}, // 145 - {8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8}, - {7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7}, - {6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6}, - {5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5}, - {4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4}, + {14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14}, + {13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13}, + {12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12}, + {11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11}, + {10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10}, // 150 - {3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3}, - {2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2}, - {1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1}, - {151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 73: 151, 339, 94: 348}, - {1: 294, 308, 270, 272, 318, 297, 274, 275, 276, 298, 296, 280, 299, 300, 301, 266, 267, 268, 269, 320, 295, 290, 302, 278, 282, 271, 273, 322, 277, 284, 281, 279, 283, 285, 289, 287, 303, 317, 293, 304, 305, 306, 292, 288, 321, 291, 286, 307, 319, 309, 310, 315, 316, 312, 311, 313, 314, 59: 331, 332, 333, 334, 326, 325, 327, 323, 324, 328, 330, 329, 265, 80: 337}, + {9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9}, + {8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8}, + {7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7}, + {6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6}, + {5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5}, // 155 - {155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 254, 155, 155, 79: 338}, - {151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 151, 73: 151, 339, 94: 340}, - {77: 341}, - {142, 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, 142, 73: 142}, - {1: 294, 308, 270, 272, 318, 297, 274, 275, 276, 298, 296, 280, 299, 300, 301, 266, 267, 268, 269, 320, 295, 290, 302, 278, 282, 271, 273, 322, 277, 284, 281, 279, 283, 285, 289, 287, 303, 317, 293, 304, 305, 306, 292, 288, 321, 291, 286, 307, 319, 309, 310, 315, 316, 312, 311, 313, 314, 59: 331, 332, 333, 334, 326, 325, 327, 323, 324, 328, 330, 329, 265, 80: 343, 109: 342}, + {4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4}, + {3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3}, + {2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2}, + {1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1}, + {161, 161, 161, 161, 161, 161, 161, 161, 161, 161, 161, 161, 161, 161, 161, 161, 161, 161, 161, 161, 161, 161, 161, 161, 161, 161, 161, 161, 161, 161, 161, 161, 161, 161, 161, 161, 161, 161, 161, 161, 161, 161, 161, 161, 161, 161, 161, 161, 161, 161, 161, 161, 161, 161, 161, 161, 161, 161, 161, 161, 161, 161, 161, 161, 161, 161, 161, 161, 161, 161, 161, 161, 161, 161, 161, 76: 161, 78: 356, 97: 365}, // 160 - {345, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 344, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 83: 346}, - {149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149, 149}, - {152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 59: 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 82: 152}, - {150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 150, 73: 150}, - {1: 294, 308, 270, 272, 318, 297, 274, 275, 276, 298, 296, 280, 299, 300, 301, 266, 267, 268, 269, 320, 295, 290, 302, 278, 282, 271, 273, 322, 277, 284, 281, 279, 283, 285, 289, 287, 303, 317, 293, 304, 305, 306, 292, 288, 321, 291, 286, 307, 319, 309, 310, 315, 316, 312, 311, 313, 314, 59: 331, 332, 333, 334, 326, 325, 327, 323, 324, 328, 330, 329, 265, 80: 347}, + {1: 308, 324, 284, 286, 335, 311, 288, 289, 290, 314, 310, 294, 315, 316, 317, 280, 281, 282, 283, 337, 309, 304, 318, 292, 312, 313, 296, 285, 287, 339, 291, 298, 295, 293, 297, 299, 303, 301, 319, 334, 307, 320, 321, 322, 306, 302, 338, 305, 325, 300, 323, 336, 326, 327, 332, 333, 329, 328, 330, 331, 62: 348, 349, 350, 351, 343, 342, 344, 340, 341, 345, 347, 346, 279, 83: 354}, + {165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 268, 165, 78: 165, 82: 355}, + {161, 161, 161, 161, 161, 161, 161, 161, 161, 161, 161, 161, 161, 161, 161, 161, 161, 161, 161, 161, 161, 161, 161, 161, 161, 161, 161, 161, 161, 161, 161, 161, 161, 161, 161, 161, 161, 161, 161, 161, 161, 161, 161, 161, 161, 161, 161, 161, 161, 161, 161, 161, 161, 161, 161, 161, 161, 161, 161, 161, 161, 161, 161, 161, 161, 161, 161, 161, 161, 161, 161, 161, 161, 161, 161, 76: 161, 78: 356, 97: 357}, + {80: 358}, + {152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 152, 76: 152}, // 165 - {148, 148, 148, 148, 148, 148, 148, 148, 148, 148, 148, 148, 148, 148, 148, 148, 148, 148, 148, 148, 148, 148, 148, 148, 148, 148, 148, 148, 148, 148, 148, 148, 148, 148, 148, 148, 148, 148, 148, 148, 148, 148, 148, 148, 148, 148, 148, 148, 148, 148, 148, 148, 148, 148, 148, 148, 148, 148, 148, 148, 148, 148, 148, 148, 148, 148, 148, 148, 148, 148, 148, 148}, - {143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 143, 73: 143}, - {156, 58: 156}, - {1: 294, 308, 270, 272, 318, 297, 274, 275, 276, 298, 296, 280, 299, 300, 301, 266, 267, 268, 269, 320, 295, 290, 302, 278, 282, 271, 273, 322, 277, 284, 281, 279, 283, 285, 289, 287, 303, 317, 293, 304, 305, 306, 292, 288, 321, 291, 286, 307, 319, 309, 310, 315, 316, 312, 311, 313, 314, 59: 331, 332, 333, 334, 326, 325, 327, 323, 324, 328, 330, 329, 265, 80: 264, 84: 351}, - {144, 58: 144, 73: 144}, + {1: 308, 324, 284, 286, 335, 311, 288, 289, 290, 314, 310, 294, 315, 316, 317, 280, 281, 282, 283, 337, 309, 304, 318, 292, 312, 313, 296, 285, 287, 339, 291, 298, 295, 293, 297, 299, 303, 301, 319, 334, 307, 320, 321, 322, 306, 302, 338, 305, 325, 300, 323, 336, 326, 327, 332, 333, 329, 328, 330, 331, 62: 348, 349, 350, 351, 343, 342, 344, 340, 341, 345, 347, 346, 279, 83: 360, 113: 359}, + {362, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 361, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 86: 363}, + {159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159}, + {162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 62: 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 85: 162}, + {160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 76: 160}, // 170 - {1: 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 159, 78: 159}, - {63: 259, 258, 89: 257, 354}, - {157, 58: 157}, - {66: 155, 155, 72: 254, 79: 356}, - {66: 358, 359, 103: 357}, + {1: 308, 324, 284, 286, 335, 311, 288, 289, 290, 314, 310, 294, 315, 316, 317, 280, 281, 282, 283, 337, 309, 304, 318, 292, 312, 313, 296, 285, 287, 339, 291, 298, 295, 293, 297, 299, 303, 301, 319, 334, 307, 320, 321, 322, 306, 302, 338, 305, 325, 300, 323, 336, 326, 327, 332, 333, 329, 328, 330, 331, 62: 348, 349, 350, 351, 343, 342, 344, 340, 341, 345, 347, 346, 279, 83: 364}, + {158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158, 158}, + {153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 76: 153}, + {166, 61: 166}, + {1: 308, 324, 284, 286, 335, 311, 288, 289, 290, 314, 310, 294, 315, 316, 317, 280, 281, 282, 283, 337, 309, 304, 318, 292, 312, 313, 296, 285, 287, 339, 291, 298, 295, 293, 297, 299, 303, 301, 319, 334, 307, 320, 321, 322, 306, 302, 338, 305, 325, 300, 323, 336, 326, 327, 332, 333, 329, 328, 330, 331, 62: 348, 349, 350, 351, 343, 342, 344, 340, 341, 345, 347, 346, 279, 83: 278, 87: 368}, // 175 - {360}, - {74}, - {73}, - {1: 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 160, 78: 160}, - {155, 72: 254, 79: 362}, + {154, 61: 154, 76: 154}, + {1: 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 81: 169}, + {66: 273, 272, 92: 271, 371}, + {167, 61: 167}, + {69: 165, 165, 75: 268, 82: 373}, // 180 - {363}, - {1: 161, 161, 161, 161, 161, 161, 161, 161, 161, 161, 161, 161, 161, 161, 161, 161, 161, 161, 161, 161, 161, 161, 161, 161, 161, 161, 161, 161, 161, 161, 161, 161, 161, 161, 161, 161, 161, 161, 161, 161, 161, 161, 161, 161, 161, 161, 161, 161, 161, 161, 161, 161, 161, 161, 161, 161, 161, 161, 78: 161}, - {65: 155, 68: 155, 72: 254, 79: 365}, - {65: 368, 68: 367, 105: 366}, - {369}, + {69: 375, 376, 107: 374}, + {377}, + {77}, + {76}, + {1: 170, 170, 170, 170, 170, 170, 170, 170, 170, 170, 170, 170, 170, 170, 170, 170, 170, 170, 170, 170, 170, 170, 170, 170, 170, 170, 170, 170, 170, 170, 170, 170, 170, 170, 170, 170, 170, 170, 170, 170, 170, 170, 170, 170, 170, 170, 170, 170, 170, 170, 170, 170, 170, 170, 170, 170, 170, 170, 170, 170, 170, 81: 170}, // 185 - {127}, - {126}, - {1: 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 162, 78: 162}, - {82: 371}, - {58: 344, 82: 153, 372}, + {165, 75: 268, 82: 379}, + {380}, + {1: 171, 171, 171, 171, 171, 171, 171, 171, 171, 171, 171, 171, 171, 171, 171, 171, 171, 171, 171, 171, 171, 171, 171, 171, 171, 171, 171, 171, 171, 171, 171, 171, 171, 171, 171, 171, 171, 171, 171, 171, 171, 171, 171, 171, 171, 171, 171, 171, 171, 171, 171, 171, 171, 171, 171, 171, 171, 171, 171, 171, 171, 81: 171}, + {68: 165, 71: 165, 75: 268, 82: 382}, + {68: 385, 71: 384, 109: 383}, // 190 - {82: 373}, - {374}, - {1: 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 78: 163}, - {72: 254, 79: 376, 81: 155}, - {81: 377}, + {386}, + {133}, + {132}, + {1: 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 81: 172}, + {85: 388}, // 195 - {69: 380, 379, 113: 378}, - {381}, - {129}, - {128}, - {1: 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 164, 78: 164}, + {61: 361, 85: 163, 389}, + {85: 390}, + {391}, + {1: 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 81: 173}, + {75: 268, 82: 393, 84: 165}, // 200 - {1: 294, 308, 270, 272, 318, 297, 274, 275, 276, 298, 296, 280, 299, 300, 301, 266, 267, 268, 269, 320, 295, 290, 302, 278, 282, 271, 273, 322, 277, 284, 281, 279, 283, 285, 289, 287, 303, 317, 293, 304, 305, 306, 292, 288, 321, 291, 286, 307, 319, 309, 310, 315, 316, 312, 311, 313, 314, 59: 331, 332, 333, 334, 326, 325, 327, 323, 324, 328, 330, 329, 265, 80: 383}, - {384}, - {1: 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 78: 165}, - {1: 294, 308, 270, 272, 318, 297, 274, 275, 276, 298, 296, 280, 299, 300, 301, 266, 267, 268, 269, 320, 295, 290, 302, 278, 282, 271, 273, 322, 277, 284, 281, 279, 283, 285, 289, 287, 303, 317, 293, 304, 305, 306, 292, 288, 321, 291, 286, 307, 319, 309, 310, 315, 316, 312, 311, 313, 314, 59: 331, 332, 333, 334, 326, 325, 327, 323, 324, 328, 330, 329, 265, 80: 386}, - {387}, + {84: 394}, + {72: 397, 396, 117: 395}, + {398}, + {135}, + {134}, // 205 - {1: 166, 166, 166, 166, 166, 166, 166, 166, 166, 166, 166, 166, 166, 166, 166, 166, 166, 166, 166, 166, 166, 166, 166, 166, 166, 166, 166, 166, 166, 166, 166, 166, 166, 166, 166, 166, 166, 166, 166, 166, 166, 166, 166, 166, 166, 166, 166, 166, 166, 166, 166, 166, 166, 166, 166, 166, 166, 166, 78: 166}, - {1: 294, 308, 270, 272, 318, 297, 274, 275, 276, 298, 296, 280, 299, 300, 301, 266, 267, 268, 269, 320, 295, 290, 302, 278, 282, 271, 273, 322, 277, 284, 281, 279, 283, 285, 289, 287, 303, 317, 293, 304, 305, 306, 292, 288, 321, 291, 286, 307, 319, 309, 310, 315, 316, 312, 311, 313, 314, 59: 331, 332, 333, 334, 326, 325, 327, 323, 324, 328, 330, 329, 265, 80: 389}, - {76: 390}, - {1: 294, 308, 270, 272, 318, 297, 274, 275, 276, 298, 296, 280, 299, 300, 301, 266, 267, 268, 269, 320, 295, 290, 302, 278, 282, 271, 273, 322, 277, 284, 281, 279, 283, 285, 289, 287, 303, 317, 293, 304, 305, 306, 292, 288, 321, 291, 286, 307, 319, 309, 310, 315, 316, 312, 311, 313, 314, 59: 331, 332, 333, 334, 326, 325, 327, 323, 324, 328, 330, 329, 265, 80: 393, 394, 392, 114: 391}, - {395}, + {1: 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 81: 174}, + {1: 308, 324, 284, 286, 335, 311, 288, 289, 290, 314, 310, 294, 315, 316, 317, 280, 281, 282, 283, 337, 309, 304, 318, 292, 312, 313, 296, 285, 287, 339, 291, 298, 295, 293, 297, 299, 303, 301, 319, 334, 307, 320, 321, 322, 306, 302, 338, 305, 325, 300, 323, 336, 326, 327, 332, 333, 329, 328, 330, 331, 62: 348, 349, 350, 351, 343, 342, 344, 340, 341, 345, 347, 346, 279, 83: 400}, + {401, 61: 402}, + {1: 176, 176, 176, 176, 176, 176, 176, 176, 176, 176, 176, 176, 176, 176, 176, 176, 176, 176, 176, 176, 176, 176, 176, 176, 176, 176, 176, 176, 176, 176, 176, 176, 176, 176, 176, 176, 176, 176, 176, 176, 176, 176, 176, 176, 176, 176, 176, 176, 176, 176, 176, 176, 176, 176, 176, 176, 176, 176, 176, 176, 176, 81: 176}, + {165, 308, 324, 284, 286, 335, 311, 288, 289, 290, 314, 310, 294, 315, 316, 317, 280, 281, 282, 283, 337, 309, 304, 318, 292, 312, 313, 296, 285, 287, 339, 291, 298, 295, 293, 297, 299, 303, 301, 319, 334, 307, 320, 321, 322, 306, 302, 338, 305, 325, 300, 323, 336, 326, 327, 332, 333, 329, 328, 330, 331, 62: 348, 349, 350, 351, 343, 342, 344, 340, 341, 345, 347, 346, 279, 268, 77: 165, 82: 406, 405, 106: 404, 119: 403}, // 210 - {132}, - {131}, - {130}, - {1: 167, 167, 167, 167, 167, 167, 167, 167, 167, 167, 167, 167, 167, 167, 167, 167, 167, 167, 167, 167, 167, 167, 167, 167, 167, 167, 167, 167, 167, 167, 167, 167, 167, 167, 167, 167, 167, 167, 167, 167, 167, 167, 167, 167, 167, 167, 167, 167, 167, 167, 167, 167, 167, 167, 167, 167, 167, 167, 78: 167}, - {72: 254, 79: 397, 81: 155}, + {408, 77: 409}, + {150, 77: 150}, + {165, 75: 268, 77: 165, 82: 407}, + {148, 77: 148}, + {149, 77: 149}, // 215 - {81: 398}, - {399}, - {1: 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 168, 78: 168}, - {72: 254, 79: 401, 81: 155}, - {81: 402}, + {1: 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 81: 175}, + {165, 308, 324, 284, 286, 335, 311, 288, 289, 290, 314, 310, 294, 315, 316, 317, 280, 281, 282, 283, 337, 309, 304, 318, 292, 312, 313, 296, 285, 287, 339, 291, 298, 295, 293, 297, 299, 303, 301, 319, 334, 307, 320, 321, 322, 306, 302, 338, 305, 325, 300, 323, 336, 326, 327, 332, 333, 329, 328, 330, 331, 62: 348, 349, 350, 351, 343, 342, 344, 340, 341, 345, 347, 346, 279, 268, 77: 165, 82: 406, 405, 106: 410}, + {151, 77: 151}, + {1: 308, 324, 284, 286, 335, 311, 288, 289, 290, 314, 310, 294, 315, 316, 317, 280, 281, 282, 283, 337, 309, 304, 318, 292, 312, 313, 296, 285, 287, 339, 291, 298, 295, 293, 297, 299, 303, 301, 319, 334, 307, 320, 321, 322, 306, 302, 338, 305, 325, 300, 323, 336, 326, 327, 332, 333, 329, 328, 330, 331, 62: 348, 349, 350, 351, 343, 342, 344, 340, 341, 345, 347, 346, 279, 83: 412}, + {413}, // 220 - {403}, - {1: 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 169, 78: 169}, - {155, 59: 155, 155, 155, 155, 72: 254, 79: 405}, - {136, 59: 409, 410, 411, 412, 97: 408, 111: 407, 406}, - {415}, + {1: 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 81: 177}, + {1: 308, 324, 284, 286, 335, 311, 288, 289, 290, 314, 310, 294, 315, 316, 317, 280, 281, 282, 283, 337, 309, 304, 318, 292, 312, 313, 296, 285, 287, 339, 291, 298, 295, 293, 297, 299, 303, 301, 319, 334, 307, 320, 321, 322, 306, 302, 338, 305, 325, 300, 323, 336, 326, 327, 332, 333, 329, 328, 330, 331, 62: 348, 349, 350, 351, 343, 342, 344, 340, 341, 345, 347, 346, 279, 83: 415}, + {79: 416}, + {1: 308, 324, 284, 286, 335, 311, 288, 289, 290, 314, 310, 294, 315, 316, 317, 280, 281, 282, 283, 337, 309, 304, 318, 292, 312, 313, 296, 285, 287, 339, 291, 298, 295, 293, 297, 299, 303, 301, 319, 334, 307, 320, 321, 322, 306, 302, 338, 305, 325, 300, 323, 336, 326, 327, 332, 333, 329, 328, 330, 331, 62: 348, 349, 350, 351, 343, 342, 344, 340, 341, 345, 347, 346, 279, 83: 419, 420, 418, 118: 417}, + {421}, // 225 - {135, 58: 413}, - {134, 58: 134}, - {91, 58: 91}, - {90, 58: 90}, - {89, 58: 89}, + {138}, + {137}, + {136}, + {1: 178, 178, 178, 178, 178, 178, 178, 178, 178, 178, 178, 178, 178, 178, 178, 178, 178, 178, 178, 178, 178, 178, 178, 178, 178, 178, 178, 178, 178, 178, 178, 178, 178, 178, 178, 178, 178, 178, 178, 178, 178, 178, 178, 178, 178, 178, 178, 178, 178, 178, 178, 178, 178, 178, 178, 178, 178, 178, 178, 178, 178, 81: 178}, + {75: 268, 82: 423, 84: 165}, // 230 - {88, 58: 88}, - {59: 409, 410, 411, 412, 97: 414}, - {133, 58: 133}, - {1: 170, 170, 170, 170, 170, 170, 170, 170, 170, 170, 170, 170, 170, 170, 170, 170, 170, 170, 170, 170, 170, 170, 170, 170, 170, 170, 170, 170, 170, 170, 170, 170, 170, 170, 170, 170, 170, 170, 170, 170, 170, 170, 170, 170, 170, 170, 170, 170, 170, 170, 170, 170, 170, 170, 170, 170, 170, 170, 78: 170}, - {1: 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 59: 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 254, 79: 418, 88: 417}, + {84: 424}, + {425}, + {1: 179, 179, 179, 179, 179, 179, 179, 179, 179, 179, 179, 179, 179, 179, 179, 179, 179, 179, 179, 179, 179, 179, 179, 179, 179, 179, 179, 179, 179, 179, 179, 179, 179, 179, 179, 179, 179, 179, 179, 179, 179, 179, 179, 179, 179, 179, 179, 179, 179, 179, 179, 179, 179, 179, 179, 179, 179, 179, 179, 179, 179, 81: 179}, + {75: 268, 82: 427, 84: 165}, + {84: 428}, // 235 - {426}, - {1: 294, 308, 270, 272, 318, 297, 274, 275, 276, 298, 296, 280, 299, 300, 301, 266, 267, 268, 269, 320, 295, 290, 302, 278, 282, 271, 273, 322, 277, 284, 281, 279, 283, 285, 289, 287, 303, 317, 293, 304, 305, 306, 292, 288, 321, 291, 286, 307, 319, 309, 310, 315, 316, 312, 311, 313, 314, 59: 331, 332, 333, 334, 326, 325, 327, 323, 324, 328, 330, 329, 265, 80: 264, 84: 419}, - {153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 344, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 153, 83: 420}, - {140, 294, 308, 270, 272, 318, 297, 274, 275, 276, 298, 296, 280, 299, 300, 301, 266, 267, 268, 269, 320, 295, 290, 302, 278, 282, 271, 273, 322, 277, 284, 281, 279, 283, 285, 289, 287, 303, 317, 293, 304, 305, 306, 292, 288, 321, 291, 286, 307, 319, 309, 310, 315, 316, 312, 311, 313, 314, 59: 331, 332, 333, 334, 326, 325, 327, 323, 324, 328, 330, 329, 265, 80: 423, 106: 422, 421}, - {141}, + {429}, + {1: 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 180, 81: 180}, + {165, 62: 165, 165, 165, 165, 75: 268, 82: 431}, + {142, 62: 435, 436, 437, 438, 100: 434, 115: 433, 432}, + {441}, // 240 - {139, 58: 424}, - {138, 58: 138}, - {1: 294, 308, 270, 272, 318, 297, 274, 275, 276, 298, 296, 280, 299, 300, 301, 266, 267, 268, 269, 320, 295, 290, 302, 278, 282, 271, 273, 322, 277, 284, 281, 279, 283, 285, 289, 287, 303, 317, 293, 304, 305, 306, 292, 288, 321, 291, 286, 307, 319, 309, 310, 315, 316, 312, 311, 313, 314, 59: 331, 332, 333, 334, 326, 325, 327, 323, 324, 328, 330, 329, 265, 80: 425}, - {137, 58: 137}, - {1: 171, 171, 171, 171, 171, 171, 171, 171, 171, 171, 171, 171, 171, 171, 171, 171, 171, 171, 171, 171, 171, 171, 171, 171, 171, 171, 171, 171, 171, 171, 171, 171, 171, 171, 171, 171, 171, 171, 171, 171, 171, 171, 171, 171, 171, 171, 171, 171, 171, 171, 171, 171, 171, 171, 171, 171, 171, 171, 78: 171}, + {141, 61: 439}, + {140, 61: 140}, + {96, 61: 96}, + {95, 61: 95}, + {94, 61: 94}, // 245 - {1: 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 59: 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 254, 79: 418, 88: 428}, - {429}, - {1: 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 172, 78: 172}, - {155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 59: 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 254, 79: 433, 85: 432, 91: 431}, - {434}, + {93, 61: 93}, + {62: 435, 436, 437, 438, 100: 440}, + {139, 61: 139}, + {1: 181, 181, 181, 181, 181, 181, 181, 181, 181, 181, 181, 181, 181, 181, 181, 181, 181, 181, 181, 181, 181, 181, 181, 181, 181, 181, 181, 181, 181, 181, 181, 181, 181, 181, 181, 181, 181, 181, 181, 181, 181, 181, 181, 181, 181, 181, 181, 181, 181, 181, 181, 181, 181, 181, 181, 181, 181, 181, 181, 181, 181, 81: 181}, + {1: 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 62: 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 268, 82: 444, 91: 443}, // 250 - {147, 58: 350}, - {146, 294, 308, 270, 272, 318, 297, 274, 275, 276, 298, 296, 280, 299, 300, 301, 266, 267, 268, 269, 320, 295, 290, 302, 278, 282, 271, 273, 322, 277, 284, 281, 279, 283, 285, 289, 287, 303, 317, 293, 304, 305, 306, 292, 288, 321, 291, 286, 307, 319, 309, 310, 315, 316, 312, 311, 313, 314, 59: 331, 332, 333, 334, 326, 325, 327, 323, 324, 328, 330, 329, 265, 80: 264, 84: 263}, - {1: 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 173, 78: 173}, - {155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 59: 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 254, 79: 433, 85: 432, 91: 436}, - {437}, + {452}, + {1: 308, 324, 284, 286, 335, 311, 288, 289, 290, 314, 310, 294, 315, 316, 317, 280, 281, 282, 283, 337, 309, 304, 318, 292, 312, 313, 296, 285, 287, 339, 291, 298, 295, 293, 297, 299, 303, 301, 319, 334, 307, 320, 321, 322, 306, 302, 338, 305, 325, 300, 323, 336, 326, 327, 332, 333, 329, 328, 330, 331, 62: 348, 349, 350, 351, 343, 342, 344, 340, 341, 345, 347, 346, 279, 83: 278, 87: 445}, + {163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 361, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 163, 86: 446}, + {146, 308, 324, 284, 286, 335, 311, 288, 289, 290, 314, 310, 294, 315, 316, 317, 280, 281, 282, 283, 337, 309, 304, 318, 292, 312, 313, 296, 285, 287, 339, 291, 298, 295, 293, 297, 299, 303, 301, 319, 334, 307, 320, 321, 322, 306, 302, 338, 305, 325, 300, 323, 336, 326, 327, 332, 333, 329, 328, 330, 331, 62: 348, 349, 350, 351, 343, 342, 344, 340, 341, 345, 347, 346, 279, 83: 449, 110: 448, 447}, + {147}, // 255 - {1: 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 174, 78: 174}, - {1: 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 59: 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 155, 254, 79: 262, 85: 439}, - {440, 58: 350}, - {1: 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 175, 78: 175}, - {155, 72: 254, 79: 442}, + {145, 61: 450}, + {144, 61: 144}, + {1: 308, 324, 284, 286, 335, 311, 288, 289, 290, 314, 310, 294, 315, 316, 317, 280, 281, 282, 283, 337, 309, 304, 318, 292, 312, 313, 296, 285, 287, 339, 291, 298, 295, 293, 297, 299, 303, 301, 319, 334, 307, 320, 321, 322, 306, 302, 338, 305, 325, 300, 323, 336, 326, 327, 332, 333, 329, 328, 330, 331, 62: 348, 349, 350, 351, 343, 342, 344, 340, 341, 345, 347, 346, 279, 83: 451}, + {143, 61: 143}, + {1: 182, 182, 182, 182, 182, 182, 182, 182, 182, 182, 182, 182, 182, 182, 182, 182, 182, 182, 182, 182, 182, 182, 182, 182, 182, 182, 182, 182, 182, 182, 182, 182, 182, 182, 182, 182, 182, 182, 182, 182, 182, 182, 182, 182, 182, 182, 182, 182, 182, 182, 182, 182, 182, 182, 182, 182, 182, 182, 182, 182, 182, 81: 182}, // 260 - {443}, - {1: 176, 176, 176, 176, 176, 176, 176, 176, 176, 176, 176, 176, 176, 176, 176, 176, 176, 176, 176, 176, 176, 176, 176, 176, 176, 176, 176, 176, 176, 176, 176, 176, 176, 176, 176, 176, 176, 176, 176, 176, 176, 176, 176, 176, 176, 176, 176, 176, 176, 176, 176, 176, 176, 176, 176, 176, 176, 176, 78: 176}, - {1: 244, 215, 208, 210, 236, 242, 222, 223, 224, 234, 248, 226, 218, 216, 221, 187, 205, 206, 207, 225, 245, 194, 199, 217, 227, 209, 211, 251, 212, 229, 246, 213, 228, 230, 238, 232, 220, 195, 198, 203, 247, 204, 197, 237, 250, 196, 231, 214, 249, 243, 219, 200, 240, 233, 235, 241, 239, 87: 201, 92: 188, 202, 95: 446, 193, 98: 192, 190, 445, 191, 189}, - {1: 179, 179, 179, 179, 179, 179, 179, 179, 179, 179, 179, 179, 179, 179, 179, 179, 179, 179, 179, 179, 179, 179, 179, 179, 179, 179, 179, 179, 179, 179, 179, 179, 179, 179, 179, 179, 179, 179, 179, 179, 179, 179, 179, 179, 179, 179, 179, 179, 179, 179, 179, 179, 179, 179, 179, 179, 179, 179, 78: 179}, - {1: 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 177, 78: 177}, + {1: 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 62: 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 268, 82: 444, 91: 454}, + {455}, + {1: 183, 183, 183, 183, 183, 183, 183, 183, 183, 183, 183, 183, 183, 183, 183, 183, 183, 183, 183, 183, 183, 183, 183, 183, 183, 183, 183, 183, 183, 183, 183, 183, 183, 183, 183, 183, 183, 183, 183, 183, 183, 183, 183, 183, 183, 183, 183, 183, 183, 183, 183, 183, 183, 183, 183, 183, 183, 183, 183, 183, 183, 81: 183}, + {165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 62: 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 268, 82: 459, 88: 458, 94: 457}, + {460}, + // 265 + {157, 61: 367}, + {156, 308, 324, 284, 286, 335, 311, 288, 289, 290, 314, 310, 294, 315, 316, 317, 280, 281, 282, 283, 337, 309, 304, 318, 292, 312, 313, 296, 285, 287, 339, 291, 298, 295, 293, 297, 299, 303, 301, 319, 334, 307, 320, 321, 322, 306, 302, 338, 305, 325, 300, 323, 336, 326, 327, 332, 333, 329, 328, 330, 331, 62: 348, 349, 350, 351, 343, 342, 344, 340, 341, 345, 347, 346, 279, 83: 278, 87: 277}, + {1: 184, 184, 184, 184, 184, 184, 184, 184, 184, 184, 184, 184, 184, 184, 184, 184, 184, 184, 184, 184, 184, 184, 184, 184, 184, 184, 184, 184, 184, 184, 184, 184, 184, 184, 184, 184, 184, 184, 184, 184, 184, 184, 184, 184, 184, 184, 184, 184, 184, 184, 184, 184, 184, 184, 184, 184, 184, 184, 184, 184, 184, 81: 184}, + {165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 62: 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 268, 82: 459, 88: 458, 94: 462}, + {463}, + // 270 + {1: 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 185, 81: 185}, + {1: 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 62: 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 165, 268, 82: 276, 88: 465}, + {466, 61: 367}, + {1: 186, 186, 186, 186, 186, 186, 186, 186, 186, 186, 186, 186, 186, 186, 186, 186, 186, 186, 186, 186, 186, 186, 186, 186, 186, 186, 186, 186, 186, 186, 186, 186, 186, 186, 186, 186, 186, 186, 186, 186, 186, 186, 186, 186, 186, 186, 186, 186, 186, 186, 186, 186, 186, 186, 186, 186, 186, 186, 186, 186, 186, 81: 186}, + {165, 75: 268, 82: 468}, + // 275 + {469}, + {1: 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, 187, 81: 187}, + {1: 258, 226, 219, 221, 248, 254, 234, 235, 236, 246, 262, 238, 230, 228, 233, 198, 216, 217, 218, 237, 259, 205, 210, 229, 255, 256, 239, 220, 222, 265, 223, 241, 260, 224, 240, 242, 250, 244, 232, 206, 209, 214, 261, 215, 208, 249, 264, 207, 227, 243, 225, 263, 257, 231, 211, 252, 245, 247, 253, 251, 90: 212, 95: 199, 213, 98: 472, 204, 101: 203, 201, 471, 202, 200}, + {1: 190, 190, 190, 190, 190, 190, 190, 190, 190, 190, 190, 190, 190, 190, 190, 190, 190, 190, 190, 190, 190, 190, 190, 190, 190, 190, 190, 190, 190, 190, 190, 190, 190, 190, 190, 190, 190, 190, 190, 190, 190, 190, 190, 190, 190, 190, 190, 190, 190, 190, 190, 190, 190, 190, 190, 190, 190, 190, 190, 190, 190, 81: 190}, + {1: 188, 188, 188, 188, 188, 188, 188, 188, 188, 188, 188, 188, 188, 188, 188, 188, 188, 188, 188, 188, 188, 188, 188, 188, 188, 188, 188, 188, 188, 188, 188, 188, 188, 188, 188, 188, 188, 188, 188, 188, 188, 188, 188, 188, 188, 188, 188, 188, 188, 188, 188, 188, 188, 188, 188, 188, 188, 188, 188, 188, 188, 81: 188}, } ) @@ -912,7 +954,7 @@ func yyhintlex1(yylex yyhintLexer, lval *yyhintSymType) (n int) { } func yyhintParse(yylex yyhintLexer, parser *hintParser) int { - const yyError = 116 + const yyError = 121 yyEx, _ := yylex.(yyhintLexerEx) var yyn int @@ -1189,6 +1231,14 @@ yynewstate: } } case 18: + { + parser.yyVAL.hint = &ast.TableOptimizerHint{ + HintName: model.NewCIStr(yyS[yypt-5].ident), + QBName: model.NewCIStr(yyS[yypt-3].ident), + Tables: yyS[yypt-1].hint.Tables, + } + } + case 19: { maxValue := uint64(math.MaxInt64) / yyS[yypt-1].number if yyS[yypt-2].number <= maxValue { @@ -1203,7 +1253,7 @@ yynewstate: parser.yyVAL.hint = nil } } - case 19: + case 20: { parser.yyVAL.hint = &ast.TableOptimizerHint{ HintName: model.NewCIStr(yyS[yypt-5].ident), @@ -1213,21 +1263,21 @@ yynewstate: }, } } - case 20: + case 21: { h := yyS[yypt-1].hint h.HintName = model.NewCIStr(yyS[yypt-4].ident) h.QBName = model.NewCIStr(yyS[yypt-2].ident) parser.yyVAL.hint = h } - case 21: + case 22: { parser.yyVAL.hint = &ast.TableOptimizerHint{ HintName: model.NewCIStr(yyS[yypt-3].ident), QBName: model.NewCIStr(yyS[yypt-1].ident), } } - case 22: + case 23: { parser.yyVAL.hint = &ast.TableOptimizerHint{ HintName: model.NewCIStr(yyS[yypt-4].ident), @@ -1235,7 +1285,7 @@ yynewstate: HintData: model.NewCIStr(yyS[yypt-1].ident), } } - case 23: + case 24: { hs := yyS[yypt-1].hints name := model.NewCIStr(yyS[yypt-4].ident) @@ -1246,60 +1296,60 @@ yynewstate: } parser.yyVAL.hints = hs } - case 24: + case 25: { parser.yyVAL.hints = []*ast.TableOptimizerHint{yyS[yypt-0].hint} } - case 25: + case 26: { parser.yyVAL.hints = append(yyS[yypt-2].hints, yyS[yypt-0].hint) } - case 26: + case 27: { h := yyS[yypt-1].hint h.HintData = model.NewCIStr(yyS[yypt-3].ident) parser.yyVAL.hint = h } - case 27: + case 28: { parser.yyVAL.ident = "" } - case 31: + case 32: { parser.yyVAL.modelIdents = nil } - case 32: + case 33: { parser.yyVAL.modelIdents = yyS[yypt-1].modelIdents } - case 33: + case 34: { parser.yyVAL.modelIdents = []model.CIStr{model.NewCIStr(yyS[yypt-0].ident)} } - case 34: + case 35: { parser.yyVAL.modelIdents = append(yyS[yypt-2].modelIdents, model.NewCIStr(yyS[yypt-0].ident)) } - case 36: + case 37: { parser.yyVAL.hint = &ast.TableOptimizerHint{ QBName: model.NewCIStr(yyS[yypt-0].ident), } } - case 37: + case 38: { parser.yyVAL.hint = &ast.TableOptimizerHint{ Tables: []ast.HintTable{yyS[yypt-0].table}, QBName: model.NewCIStr(yyS[yypt-1].ident), } } - case 38: + case 39: { h := yyS[yypt-2].hint h.Tables = append(h.Tables, yyS[yypt-0].table) parser.yyVAL.hint = h } - case 39: + case 40: { parser.yyVAL.table = ast.HintTable{ TableName: model.NewCIStr(yyS[yypt-2].ident), @@ -1307,7 +1357,7 @@ yynewstate: PartitionList: yyS[yypt-0].modelIdents, } } - case 40: + case 41: { parser.yyVAL.table = ast.HintTable{ DBName: model.NewCIStr(yyS[yypt-4].ident), @@ -1316,46 +1366,71 @@ yynewstate: PartitionList: yyS[yypt-0].modelIdents, } } - case 41: + case 42: + { + h := yyS[yypt-2].hint + h.Tables = append(h.Tables, yyS[yypt-0].table) + parser.yyVAL.hint = h + } + case 43: + { + parser.yyVAL.hint = &ast.TableOptimizerHint{ + Tables: []ast.HintTable{yyS[yypt-0].table}, + } + } + case 44: + { + parser.yyVAL.table = ast.HintTable{ + TableName: model.NewCIStr(yyS[yypt-1].ident), + QBName: model.NewCIStr(yyS[yypt-0].ident), + } + } + case 45: + { + parser.yyVAL.table = ast.HintTable{ + QBName: model.NewCIStr(yyS[yypt-0].ident), + } + } + case 46: { h := yyS[yypt-0].hint h.Tables = []ast.HintTable{yyS[yypt-2].table} h.QBName = model.NewCIStr(yyS[yypt-3].ident) parser.yyVAL.hint = h } - case 42: + case 47: { parser.yyVAL.hint = &ast.TableOptimizerHint{} } - case 44: + case 49: { parser.yyVAL.hint = &ast.TableOptimizerHint{ Indexes: []model.CIStr{model.NewCIStr(yyS[yypt-0].ident)}, } } - case 45: + case 50: { h := yyS[yypt-2].hint h.Indexes = append(h.Indexes, model.NewCIStr(yyS[yypt-0].ident)) parser.yyVAL.hint = h } - case 52: + case 57: { parser.yyVAL.ident = strconv.FormatUint(yyS[yypt-0].number, 10) } - case 53: + case 58: { parser.yyVAL.number = 1024 * 1024 } - case 54: + case 59: { parser.yyVAL.number = 1024 * 1024 * 1024 } - case 55: + case 60: { parser.yyVAL.hint = &ast.TableOptimizerHint{HintData: true} } - case 56: + case 61: { parser.yyVAL.hint = &ast.TableOptimizerHint{HintData: false} } diff --git a/parser/hintparser.y b/parser/hintparser.y index 85d7fdba2dd3f..a2ccd21d2d401 100644 --- a/parser/hintparser.y +++ b/parser/hintparser.y @@ -85,6 +85,8 @@ import ( hintAggToCop "AGG_TO_COP" hintIgnorePlanCache "IGNORE_PLAN_CACHE" hintHashAgg "HASH_AGG" + hintMpp1PhaseAgg "MPP_1PHASE_AGG" + hintMpp2PhaseAgg "MPP_2PHASE_AGG" hintIgnoreIndex "IGNORE_INDEX" hintInlHashJoin "INL_HASH_JOIN" hintInlJoin "INL_JOIN" @@ -96,6 +98,7 @@ import ( hintReadFromStorage "READ_FROM_STORAGE" hintSMJoin "MERGE_JOIN" hintBCJoin "BROADCAST_JOIN" + hintShuffleJoin "SHUFFLE_JOIN" hintStreamAgg "STREAM_AGG" hintSwapJoinInputs "SWAP_JOIN_INPUTS" hintUseIndexMerge "USE_INDEX_MERGE" @@ -159,6 +162,7 @@ import ( HintIndexList "table name with index list in optimizer hint" IndexNameList "index list in optimizer hint" IndexNameListOpt "optional index list in optimizer hint" + ViewNameList "view name list in optimizer hint" SubqueryStrategies "subquery strategies" SubqueryStrategiesOpt "optional subquery strategies" HintTrueOrFalse "true or false in optimizer hint" @@ -166,6 +170,7 @@ import ( %type HintTable "Table in optimizer hint" + ViewName "View name in optimizer hint" %type PartitionList "partition name list in optimizer hint" @@ -282,6 +287,14 @@ TableOptimizerHintOpt: QBName: model.NewCIStr($3), } } +| "QB_NAME" '(' Identifier ',' ViewNameList ')' + { + $$ = &ast.TableOptimizerHint{ + HintName: model.NewCIStr($1), + QBName: model.NewCIStr($3), + Tables: $5.Tables, + } + } | "MEMORY_QUOTA" '(' QueryBlockOpt hintIntLit UnitOfBytes ')' { maxValue := uint64(math.MaxInt64) / $5 @@ -444,6 +457,35 @@ HintTable: } } +ViewNameList: + ViewNameList '.' ViewName + { + h := $1 + h.Tables = append(h.Tables, $3) + $$ = h + } +| ViewName + { + $$ = &ast.TableOptimizerHint{ + Tables: []ast.HintTable{$1}, + } + } + +ViewName: + Identifier QueryBlockOpt + { + $$ = ast.HintTable{ + TableName: model.NewCIStr($1), + QBName: model.NewCIStr($2), + } + } +| QueryBlockOpt + { + $$ = ast.HintTable{ + QBName: model.NewCIStr($1), + } + } + /** * HintIndexList: * @@ -538,6 +580,7 @@ UnsupportedTableLevelOptimizerHintName: SupportedTableLevelOptimizerHintName: "MERGE_JOIN" | "BROADCAST_JOIN" +| "SHUFFLE_JOIN" | "INL_JOIN" | "MERGE" | "INL_HASH_JOIN" @@ -582,6 +625,8 @@ BooleanHintName: NullaryHintName: "USE_PLAN_CACHE" | "HASH_AGG" +| "MPP_1PHASE_AGG" +| "MPP_2PHASE_AGG" | "STREAM_AGG" | "AGG_TO_COP" | "LIMIT_TO_COP" @@ -636,6 +681,8 @@ Identifier: | "LIMIT_TO_COP" | "IGNORE_PLAN_CACHE" | "HASH_AGG" +| "MPP_1PHASE_AGG" +| "MPP_2PHASE_AGG" | "IGNORE_INDEX" | "INL_HASH_JOIN" | "INL_JOIN" @@ -647,6 +694,7 @@ Identifier: | "READ_FROM_STORAGE" | "MERGE_JOIN" | "BROADCAST_JOIN" +| "SHUFFLE_JOIN" | "STREAM_AGG" | "SWAP_JOIN_INPUTS" | "USE_INDEX_MERGE" diff --git a/parser/lexer.go b/parser/lexer.go index 039dfe224e34a..0a172abfda027 100644 --- a/parser/lexer.go +++ b/parser/lexer.go @@ -193,6 +193,30 @@ func (s *Scanner) getNextToken() int { return tok } +func (s *Scanner) getNextTwoTokens() (tok1 int, tok2 int) { + r := s.r + tok1, pos, lit := s.scan() + if tok1 == identifier { + tok1 = s.handleIdent(&yySymType{}) + } + if tok1 == identifier { + if tmpToken := s.isTokenIdentifier(lit, pos.Offset); tmpToken != 0 { + tok1 = tmpToken + } + } + tok2, pos, lit = s.scan() + if tok2 == identifier { + tok2 = s.handleIdent(&yySymType{}) + } + if tok2 == identifier { + if tmpToken := s.isTokenIdentifier(lit, pos.Offset); tmpToken != 0 { + tok2 = tmpToken + } + } + s.r = r + return tok1, tok2 +} + // Lex returns a token and store the token value in v. // Scanner satisfies yyLexer interface. // 0 and invalid are special token id this function would return: @@ -236,6 +260,17 @@ func (s *Scanner) Lex(v *yySymType) int { v.offset = pos.Offset return asof } + if tok == to { + tok1, tok2 := s.getNextTwoTokens() + if tok1 == timestampType && tok2 == stringLit { + _, pos, lit = s.scan() + v.ident = fmt.Sprintf("%s %s", v.ident, lit) + s.lastKeyword = toTimestamp + s.lastScanOffset = pos.Offset + v.offset = pos.Offset + return toTimestamp + } + } switch tok { case intLit: diff --git a/parser/misc.go b/parser/misc.go index edc8480cdbf14..372154e054867 100644 --- a/parser/misc.go +++ b/parser/misc.go @@ -156,6 +156,7 @@ var tokenMap = map[string]int{ "AS": as, "ASC": asc, "ASCII": ascii, + "ATTRIBUTE": attribute, "ATTRIBUTES": attributes, "BATCH": batch, "STATS_OPTIONS": statsOptions, @@ -680,6 +681,7 @@ var tokenMap = map[string]int{ "STATS_HISTOGRAMS": statsHistograms, "STATS_TOPN": statsTopN, "STATS_META": statsMeta, + "STATS_LOCKED": statsLocked, "HISTOGRAMS_IN_FLIGHT": histogramsInFlight, "STATS_PERSISTENT": statsPersistent, "STATS_SAMPLE_PAGES": statsSamplePages, @@ -735,6 +737,7 @@ var tokenMap = map[string]int{ "TINYTEXT": tinytextType, "TLS": tls, "TO": to, + "TOKEN_ISSUER": tokenIssuer, "TOKUDB_DEFAULT": tokudbDefault, "TOKUDB_FAST": tokudbFast, "TOKUDB_LZMA": tokudbLzma, @@ -921,6 +924,8 @@ var hintTokenMap = map[string]int{ "LIMIT_TO_COP": hintLimitToCop, "IGNORE_PLAN_CACHE": hintIgnorePlanCache, "HASH_AGG": hintHashAgg, + "MPP_1PHASE_AGG": hintMpp1PhaseAgg, + "MPP_2PHASE_AGG": hintMpp2PhaseAgg, "IGNORE_INDEX": hintIgnoreIndex, "INL_HASH_JOIN": hintInlHashJoin, "INL_JOIN": hintInlJoin, @@ -931,6 +936,7 @@ var hintTokenMap = map[string]int{ "READ_CONSISTENT_REPLICA": hintReadConsistentReplica, "READ_FROM_STORAGE": hintReadFromStorage, "BROADCAST_JOIN": hintBCJoin, + "SHUFFLE_JOIN": hintShuffleJoin, "MERGE_JOIN": hintSMJoin, "STREAM_AGG": hintStreamAgg, "SWAP_JOIN_INPUTS": hintSwapJoinInputs, diff --git a/parser/model/ddl.go b/parser/model/ddl.go index 19164959815a3..8a8acaa292666 100644 --- a/parser/model/ddl.go +++ b/parser/model/ddl.go @@ -97,6 +97,7 @@ const ( ActionCreateTables ActionType = 60 ActionMultiSchemaChange ActionType = 61 ActionFlashbackCluster ActionType = 62 + ActionRecoverSchema ActionType = 63 ) var actionMap = map[ActionType]string{ @@ -158,6 +159,7 @@ var actionMap = map[ActionType]string{ ActionAlterTableStatsOptions: "alter table statistics options", ActionMultiSchemaChange: "alter table multi-schema change", ActionFlashbackCluster: "flashback cluster", + ActionRecoverSchema: "flashback schema", // `ActionAlterTableAlterPartition` is removed and will never be used. // Just left a tombstone here for compatibility. @@ -252,6 +254,19 @@ func (tp ReorgType) NeedMergeProcess() bool { return tp == ReorgTypeLitMerge || tp == ReorgTypeTxnMerge } +// String implements fmt.Stringer interface. +func (tp ReorgType) String() string { + switch tp { + case ReorgTypeTxn: + return "txn" + case ReorgTypeLitMerge: + return "ingest" + case ReorgTypeTxnMerge: + return "txn-merge" + } + return "" +} + // TimeZoneLocation represents a single time zone. type TimeZoneLocation struct { Name string `json:"name"` @@ -295,6 +310,7 @@ type MultiSchemaInfo struct { AddIndexes []CIStr `json:"-"` DropIndexes []CIStr `json:"-"` AlterIndexes []CIStr `json:"-"` + ForeignKeys []CIStr `json:"-"` RelativeColumns []CIStr `json:"-"` PositionColumns []CIStr `json:"-"` @@ -811,7 +827,8 @@ func (job *Job) IsRollbackable() bool { case ActionMultiSchemaChange: return job.MultiSchemaInfo.Revertible case ActionFlashbackCluster: - if job.SchemaState == StateWriteReorganization { + if job.SchemaState == StateWriteReorganization || + job.SchemaState == StateWriteOnly { return false } } diff --git a/parser/model/model.go b/parser/model/model.go index 34f16a72a6edc..add3d59d81ba3 100644 --- a/parser/model/model.go +++ b/parser/model/model.go @@ -333,6 +333,9 @@ func (c *ColumnInfo) GetTypeDesc() string { return desc } +// EmptyColumnInfoSize is the memory usage of ColumnInfoSize +const EmptyColumnInfoSize = int64(unsafe.Sizeof(ColumnInfo{})) + // FindColumnInfo finds ColumnInfo in cols by name. func FindColumnInfo(cols []*ColumnInfo, name string) *ColumnInfo { name = strings.ToLower(name) diff --git a/parser/mysql/const.go b/parser/mysql/const.go index 056be1934265a..2d8da77f90e64 100644 --- a/parser/mysql/const.go +++ b/parser/mysql/const.go @@ -81,6 +81,8 @@ const ( MaxKeyParts = 16 // MaxIndexIdentifierLen is max length of index identifier. MaxIndexIdentifierLen = 64 + // MaxForeignKeyIdentifierLen is max length of foreign key identifier. + MaxForeignKeyIdentifierLen = 64 // MaxConstraintIdentifierLen is max length of constrain identifier. MaxConstraintIdentifierLen = 64 // MaxViewIdentifierLen is max length of view identifier. @@ -177,8 +179,10 @@ const ( AuthNativePassword = "mysql_native_password" // #nosec G101 AuthCachingSha2Password = "caching_sha2_password" // #nosec G101 AuthTiDBSM3Password = "tidb_sm3_password" // #nosec G101 + AuthMySQLClearPassword = "mysql_clear_password" AuthSocket = "auth_socket" AuthTiDBSessionToken = "tidb_session_token" + AuthTiDBAuthToken = "tidb_auth_token" ) // MySQL database and tables. diff --git a/parser/parser.go b/parser/parser.go index 6eafe157e0a77..4dc144d7a6b9d 100644 --- a/parser/parser.go +++ b/parser/parser.go @@ -54,2174 +54,2187 @@ type yyXError struct { } const ( - yyDefault = 58113 + yyDefault = 58117 yyEOFCode = 57344 - account = 57574 - action = 57575 - add = 57359 - addDate = 57914 - admin = 57999 - advise = 57576 - after = 57577 - against = 57578 - ago = 57579 - algorithm = 57580 - all = 57360 - alter = 57361 - always = 57581 - analyze = 57362 - and = 57363 - andand = 57354 - andnot = 58074 - any = 57582 - approxCountDistinct = 57915 - approxPercentile = 57916 - as = 57364 - asc = 57365 - ascii = 57583 + account = 57575 + action = 57576 + add = 57360 + addDate = 57917 + admin = 58002 + advise = 57577 + after = 57578 + against = 57579 + ago = 57580 + algorithm = 57581 + all = 57361 + alter = 57362 + always = 57582 + analyze = 57363 + and = 57364 + andand = 57355 + andnot = 58078 + any = 57583 + approxCountDistinct = 57918 + approxPercentile = 57919 + as = 57365 + asc = 57366 + ascii = 57584 asof = 57347 - assignmentEq = 58075 - attributes = 57584 - autoIdCache = 57589 - autoIncrement = 57590 - autoRandom = 57591 - autoRandomBase = 57592 - avg = 57593 - avgRowLength = 57594 - backend = 57595 - backup = 57596 - backups = 57597 - batch = 58000 - begin = 57598 - bernoulli = 57599 - between = 57366 - bigIntType = 57367 - binaryType = 57368 - binding = 57600 - bindingCache = 57601 - bindings = 57602 - binlog = 57603 - bitAnd = 57917 - bitLit = 58073 - bitOr = 57918 - bitType = 57604 - bitXor = 57919 - blobType = 57369 - block = 57605 - boolType = 57607 - booleanType = 57606 - both = 57370 - bound = 57920 - briefType = 57921 - btree = 57608 - buckets = 58001 - builtinApproxCountDistinct = 58047 - builtinApproxPercentile = 58048 - builtinBitAnd = 58042 - builtinBitOr = 58043 - builtinBitXor = 58044 - builtinCast = 58045 - builtinCount = 58046 - builtinCurDate = 58049 - builtinCurTime = 58050 - builtinDateAdd = 58051 - builtinDateSub = 58052 - builtinExtract = 58053 - builtinGroupConcat = 58054 - builtinMax = 58055 - builtinMin = 58056 - builtinNow = 58057 - builtinPosition = 58058 - builtinStddevPop = 58062 - builtinStddevSamp = 58063 - builtinSubstring = 58059 - builtinSum = 58060 - builtinSysDate = 58061 - builtinTranslate = 58064 - builtinTrim = 58065 - builtinUser = 58066 - builtinVarPop = 58067 - builtinVarSamp = 58068 - builtins = 58002 - by = 57371 - byteType = 57609 - cache = 57610 - call = 57372 - cancel = 58003 - capture = 57611 - cardinality = 58004 - cascade = 57373 - cascaded = 57612 - caseKwd = 57374 - cast = 57922 - causal = 57613 - chain = 57614 - change = 57375 - charType = 57377 - character = 57376 - charsetKwd = 57615 - check = 57378 - checkpoint = 57616 - checksum = 57617 - cipher = 57618 - cleanup = 57619 - client = 57620 - clientErrorsSummary = 57621 - cluster = 57647 - clustered = 57648 - cmSketch = 58005 - coalesce = 57622 - collate = 57379 - collation = 57623 - column = 57380 - columnFormat = 57624 - columnStatsUsage = 58006 - columns = 57625 - comment = 57627 - commit = 57628 - committed = 57629 - compact = 57630 - compressed = 57631 - compression = 57632 - concurrency = 57633 - config = 57626 - connection = 57634 - consistency = 57635 - consistent = 57636 - constraint = 57381 - constraints = 57924 - context = 57637 - convert = 57382 - copyKwd = 57923 - correlation = 58007 - cpu = 57638 - create = 57383 - createTableSelect = 58097 - cross = 57384 - csvBackslashEscape = 57639 - csvDelimiter = 57640 - csvHeader = 57641 - csvNotNull = 57642 - csvNull = 57643 - csvSeparator = 57644 - csvTrimLastSeparators = 57645 - cumeDist = 57385 - curTime = 57925 - current = 57646 - currentDate = 57386 - currentRole = 57390 - currentTime = 57387 - currentTs = 57388 - currentUser = 57389 - cycle = 57649 - data = 57650 - database = 57391 - databases = 57392 - dateAdd = 57926 - dateSub = 57927 - dateType = 57652 - datetimeType = 57651 - day = 57653 - dayHour = 57393 - dayMicrosecond = 57394 - dayMinute = 57395 - daySecond = 57396 - ddl = 58008 - deallocate = 57654 - decLit = 58070 - decimalType = 57397 - defaultKwd = 57398 - definer = 57655 - delayKeyWrite = 57656 - delayed = 57399 - deleteKwd = 57400 - denseRank = 57401 - dependency = 58009 - depth = 58010 - desc = 57402 - describe = 57403 - directory = 57657 - disable = 57658 - disabled = 57659 - discard = 57660 - disk = 57661 - distinct = 57404 - distinctRow = 57405 - div = 57406 - do = 57662 - dotType = 57928 - doubleAtIdentifier = 57351 - doubleType = 57407 - drainer = 58011 - drop = 57408 - dry = 58012 - dual = 57409 - dump = 57929 - duplicate = 57663 - dynamic = 57664 - elseKwd = 57410 - empty = 58088 - enable = 57665 - enabled = 57666 - enclosed = 57411 - encryption = 57667 - end = 57668 - enforced = 57669 - engine = 57670 - engines = 57671 - enum = 57672 - eq = 58076 + assignmentEq = 58079 + attribute = 57585 + attributes = 57586 + autoIdCache = 57591 + autoIncrement = 57592 + autoRandom = 57593 + autoRandomBase = 57594 + avg = 57595 + avgRowLength = 57596 + backend = 57597 + backup = 57598 + backups = 57599 + batch = 58003 + begin = 57600 + bernoulli = 57601 + between = 57367 + bigIntType = 57368 + binaryType = 57369 + binding = 57602 + bindingCache = 57603 + bindings = 57604 + binlog = 57605 + bitAnd = 57920 + bitLit = 58077 + bitOr = 57921 + bitType = 57606 + bitXor = 57922 + blobType = 57370 + block = 57607 + boolType = 57609 + booleanType = 57608 + both = 57371 + bound = 57923 + briefType = 57924 + btree = 57610 + buckets = 58004 + builtinApproxCountDistinct = 58051 + builtinApproxPercentile = 58052 + builtinBitAnd = 58046 + builtinBitOr = 58047 + builtinBitXor = 58048 + builtinCast = 58049 + builtinCount = 58050 + builtinCurDate = 58053 + builtinCurTime = 58054 + builtinDateAdd = 58055 + builtinDateSub = 58056 + builtinExtract = 58057 + builtinGroupConcat = 58058 + builtinMax = 58059 + builtinMin = 58060 + builtinNow = 58061 + builtinPosition = 58062 + builtinStddevPop = 58066 + builtinStddevSamp = 58067 + builtinSubstring = 58063 + builtinSum = 58064 + builtinSysDate = 58065 + builtinTranslate = 58068 + builtinTrim = 58069 + builtinUser = 58070 + builtinVarPop = 58071 + builtinVarSamp = 58072 + builtins = 58005 + by = 57372 + byteType = 57611 + cache = 57612 + call = 57373 + cancel = 58006 + capture = 57613 + cardinality = 58007 + cascade = 57374 + cascaded = 57614 + caseKwd = 57375 + cast = 57925 + causal = 57615 + chain = 57616 + change = 57376 + charType = 57378 + character = 57377 + charsetKwd = 57617 + check = 57379 + checkpoint = 57618 + checksum = 57619 + cipher = 57620 + cleanup = 57621 + client = 57622 + clientErrorsSummary = 57623 + cluster = 57649 + clustered = 57650 + cmSketch = 58008 + coalesce = 57624 + collate = 57380 + collation = 57625 + column = 57381 + columnFormat = 57626 + columnStatsUsage = 58009 + columns = 57627 + comment = 57629 + commit = 57630 + committed = 57631 + compact = 57632 + compressed = 57633 + compression = 57634 + concurrency = 57635 + config = 57628 + connection = 57636 + consistency = 57637 + consistent = 57638 + constraint = 57382 + constraints = 57927 + context = 57639 + convert = 57383 + copyKwd = 57926 + correlation = 58010 + cpu = 57640 + create = 57384 + createTableSelect = 58101 + cross = 57385 + csvBackslashEscape = 57641 + csvDelimiter = 57642 + csvHeader = 57643 + csvNotNull = 57644 + csvNull = 57645 + csvSeparator = 57646 + csvTrimLastSeparators = 57647 + cumeDist = 57386 + curTime = 57928 + current = 57648 + currentDate = 57387 + currentRole = 57391 + currentTime = 57388 + currentTs = 57389 + currentUser = 57390 + cycle = 57651 + data = 57652 + database = 57392 + databases = 57393 + dateAdd = 57929 + dateSub = 57930 + dateType = 57654 + datetimeType = 57653 + day = 57655 + dayHour = 57394 + dayMicrosecond = 57395 + dayMinute = 57396 + daySecond = 57397 + ddl = 58011 + deallocate = 57656 + decLit = 58074 + decimalType = 57398 + defaultKwd = 57399 + definer = 57657 + delayKeyWrite = 57658 + delayed = 57400 + deleteKwd = 57401 + denseRank = 57402 + dependency = 58012 + depth = 58013 + desc = 57403 + describe = 57404 + directory = 57659 + disable = 57660 + disabled = 57661 + discard = 57662 + disk = 57663 + distinct = 57405 + distinctRow = 57406 + div = 57407 + do = 57664 + dotType = 57931 + doubleAtIdentifier = 57352 + doubleType = 57408 + drainer = 58014 + drop = 57409 + dry = 58015 + dual = 57410 + dump = 57932 + duplicate = 57665 + dynamic = 57666 + elseKwd = 57411 + empty = 58092 + enable = 57667 + enabled = 57668 + enclosed = 57412 + encryption = 57669 + end = 57670 + enforced = 57671 + engine = 57672 + engines = 57673 + enum = 57674 + eq = 58080 yyErrCode = 57345 - errorKwd = 57673 - escape = 57674 - escaped = 57412 - event = 57675 - events = 57676 - evolve = 57677 - exact = 57930 - except = 57415 - exchange = 57678 - exclusive = 57679 - execute = 57680 - exists = 57413 - expansion = 57681 - expire = 57682 - explain = 57414 - exprPushdownBlacklist = 57931 - extended = 57683 - extract = 57932 - falseKwd = 57416 - faultsSym = 57684 - fetch = 57417 - fields = 57685 - file = 57686 - first = 57687 - firstValue = 57418 - fixed = 57688 - flashback = 57933 - floatLit = 58069 - floatType = 57419 - flush = 57689 - follower = 57934 - followerConstraints = 57935 - followers = 57936 - following = 57690 - forKwd = 57420 - force = 57421 - foreign = 57422 - format = 57691 - from = 57423 - full = 57692 - fulltext = 57424 - function = 57693 - ge = 58077 - general = 57694 - generated = 57425 - getFormat = 57937 - global = 57695 - grant = 57426 - grants = 57696 - group = 57427 - groupConcat = 57938 - groups = 57428 - hash = 57697 - having = 57429 - help = 57698 - hexLit = 58072 - highPriority = 57430 - higherThanComma = 58112 - higherThanParenthese = 58106 - hintComment = 57353 - histogram = 57699 - histogramsInFlight = 58031 - history = 57700 - hosts = 57701 - hour = 57702 - hourMicrosecond = 57431 - hourMinute = 57432 - hourSecond = 57433 - identSQLErrors = 57704 - identified = 57703 + errorKwd = 57675 + escape = 57676 + escaped = 57413 + event = 57677 + events = 57678 + evolve = 57679 + exact = 57933 + except = 57416 + exchange = 57680 + exclusive = 57681 + execute = 57682 + exists = 57414 + expansion = 57683 + expire = 57684 + explain = 57415 + exprPushdownBlacklist = 57934 + extended = 57685 + extract = 57935 + falseKwd = 57417 + faultsSym = 57686 + fetch = 57418 + fields = 57687 + file = 57688 + first = 57689 + firstValue = 57419 + fixed = 57690 + flashback = 57936 + floatLit = 58073 + floatType = 57420 + flush = 57691 + follower = 57937 + followerConstraints = 57938 + followers = 57939 + following = 57692 + forKwd = 57421 + force = 57422 + foreign = 57423 + format = 57693 + from = 57424 + full = 57694 + fulltext = 57425 + function = 57695 + ge = 58081 + general = 57696 + generated = 57426 + getFormat = 57940 + global = 57697 + grant = 57427 + grants = 57698 + group = 57428 + groupConcat = 57941 + groups = 57429 + hash = 57699 + having = 57430 + help = 57700 + hexLit = 58076 + highPriority = 57431 + higherThanComma = 58116 + higherThanParenthese = 58110 + hintComment = 57354 + histogram = 57701 + histogramsInFlight = 58035 + history = 57702 + hosts = 57703 + hour = 57704 + hourMicrosecond = 57432 + hourMinute = 57433 + hourSecond = 57434 + identSQLErrors = 57706 + identified = 57705 identifier = 57346 - ifKwd = 57434 - ignore = 57435 - importKwd = 57705 - imports = 57706 - in = 57436 - increment = 57707 - incremental = 57708 - index = 57437 - indexes = 57709 - infile = 57438 - inner = 57439 - inplace = 57940 - insert = 57446 - insertMethod = 57710 - insertValues = 58095 - instance = 57711 - instant = 57941 - int1Type = 57448 - int2Type = 57449 - int3Type = 57450 - int4Type = 57451 - int8Type = 57452 - intLit = 58071 - intType = 57447 - integerType = 57440 - internal = 57942 - intersect = 57441 - interval = 57442 - into = 57443 - invalid = 57352 - invisible = 57712 - invoker = 57713 - io = 57714 - ipc = 57715 - is = 57445 - isolation = 57716 - issuer = 57717 - job = 58014 - jobs = 58013 - join = 57453 - jsonArrayagg = 57943 - jsonObjectAgg = 57944 - jsonType = 57718 - jss = 58079 - juss = 58080 - key = 57454 - keyBlockSize = 57719 - keys = 57455 - kill = 57456 - labels = 57720 - lag = 57457 - language = 57721 - last = 57722 - lastBackup = 57723 - lastValue = 57458 - lastval = 57724 - le = 58078 - lead = 57459 - leader = 57945 - leaderConstraints = 57946 - leading = 57460 - learner = 57947 - learnerConstraints = 57948 - learners = 57949 - left = 57461 - less = 57725 - level = 57726 - like = 57462 - limit = 57463 - linear = 57465 - lines = 57464 - list = 57727 - load = 57466 - local = 57728 - localTime = 57467 - localTs = 57468 - location = 57730 - lock = 57469 - locked = 57729 - logs = 57731 - long = 57559 - longblobType = 57470 - longtextType = 57471 - lowPriority = 57472 - lowerThanCharsetKwd = 58098 - lowerThanComma = 58111 - lowerThanCreateTableSelect = 58096 - lowerThanEq = 58108 - lowerThanFunction = 58103 - lowerThanInsertValues = 58094 - lowerThanKey = 58099 - lowerThanLocal = 58100 - lowerThanNot = 58110 - lowerThanOn = 58107 - lowerThanParenthese = 58105 - lowerThanRemove = 58101 - lowerThanSelectOpt = 58089 - lowerThanSelectStmt = 58093 - lowerThanSetKeyword = 58092 - lowerThanStringLitToken = 58091 - lowerThanValueKeyword = 58090 - lowerThenOrder = 58102 - lsh = 58081 - master = 57732 - match = 57473 - max = 57951 - maxConnectionsPerHour = 57735 - maxQueriesPerHour = 57736 - maxRows = 57737 - maxUpdatesPerHour = 57738 - maxUserConnections = 57739 - maxValue = 57474 - max_idxnum = 57733 - max_minutes = 57734 - mb = 57740 - mediumIntType = 57476 - mediumblobType = 57475 - mediumtextType = 57477 - memory = 57741 - merge = 57742 - microsecond = 57743 - min = 57950 - minRows = 57744 - minValue = 57746 - minute = 57745 - minuteMicrosecond = 57478 - minuteSecond = 57479 - mod = 57480 - mode = 57747 - modify = 57748 - month = 57749 - names = 57750 - national = 57751 - natural = 57573 - ncharType = 57752 - neg = 58109 - neq = 58082 - neqSynonym = 58083 - never = 57753 - next = 57754 - next_row_id = 57939 - nextval = 57755 - no = 57756 - noWriteToBinLog = 57482 - nocache = 57757 - nocycle = 57758 - nodeID = 58015 - nodeState = 58016 - nodegroup = 57759 - nomaxvalue = 57760 - nominvalue = 57761 - nonclustered = 57762 - none = 57763 - not = 57481 - not2 = 58087 - now = 57952 - nowait = 57764 - nthValue = 57483 - ntile = 57484 - null = 57485 - nulleq = 58084 - nulls = 57766 - numericType = 57486 - nvarcharType = 57765 - odbcDateType = 57356 - odbcTimeType = 57357 - odbcTimestampType = 57358 - of = 57487 - off = 57767 - offset = 57768 - on = 57488 - onDuplicate = 57769 - online = 57770 - only = 57771 - open = 57772 - optRuleBlacklist = 57953 - optimistic = 58017 - optimize = 57489 - option = 57490 - optional = 57773 - optionally = 57491 - or = 57492 - order = 57493 - outer = 57494 - outfile = 57444 - over = 57495 - packKeys = 57774 - pageSym = 57775 - paramMarker = 58085 - parser = 57776 - partial = 57777 - partition = 57496 - partitioning = 57778 - partitions = 57779 - password = 57780 - per_db = 57782 - per_table = 57783 - percent = 57781 - percentRank = 57497 - pessimistic = 58018 - pipes = 57355 - pipesAsOr = 57784 - placement = 57954 - plan = 57955 - planCache = 57956 - plugins = 57785 - policy = 57786 - position = 57957 - preSplitRegions = 57787 - preceding = 57788 - precisionType = 57498 - predicate = 57958 - prepare = 57789 - preserve = 57790 - primary = 57499 - primaryRegion = 57959 - privileges = 57791 - procedure = 57500 - process = 57792 - processlist = 57793 - profile = 57794 - profiles = 57795 - proxy = 57796 - pump = 58019 - purge = 57797 - quarter = 57798 - queries = 57799 - query = 57800 - quick = 57801 - rangeKwd = 57501 - rank = 57502 - rateLimit = 57802 - read = 57503 - realType = 57504 - rebuild = 57803 - recent = 57960 - recover = 57804 - recursive = 57505 - redundant = 57805 - references = 57506 - regexpKwd = 57507 - region = 58041 - regions = 58040 - release = 57508 - reload = 57806 - remove = 57807 - rename = 57509 - reorganize = 57808 - repair = 57809 - repeat = 57510 - repeatable = 57810 - replace = 57511 - replayer = 57961 - replica = 57811 - replicas = 57812 - replication = 57813 - require = 57512 - required = 57814 - reset = 58039 - respect = 57815 - restart = 57816 - restore = 57817 - restores = 57818 - restrict = 57513 - resume = 57819 - reverse = 57820 - revoke = 57514 - right = 57515 - rlike = 57516 - role = 57821 - rollback = 57822 - routine = 57823 - row = 57517 - rowCount = 57824 - rowFormat = 57825 - rowNumber = 57519 - rows = 57518 - rsh = 58086 - rtree = 57826 - run = 58020 - running = 57962 - s3 = 57963 - sampleRate = 58022 - samples = 58021 - san = 57827 - savepoint = 57828 - schedule = 57964 - second = 57829 - secondMicrosecond = 57520 - secondaryEngine = 57830 - secondaryLoad = 57831 - secondaryUnload = 57832 - security = 57833 - selectKwd = 57521 - sendCredentialsToTiKV = 57834 - separator = 57835 - sequence = 57836 - serial = 57837 - serializable = 57838 - session = 57839 - sessionStates = 58023 - set = 57522 - setval = 57840 - shardRowIDBits = 57841 - share = 57842 - shared = 57843 - show = 57523 - shutdown = 57844 - signed = 57845 - simple = 57846 - singleAtIdentifier = 57350 - skip = 57847 - skipSchemaFiles = 57848 - slave = 57849 - slow = 57850 - smallIntType = 57524 - snapshot = 57851 - some = 57852 - source = 57853 - spatial = 57525 - split = 58037 - sql = 57526 - sqlBigResult = 57527 - sqlBufferResult = 57854 - sqlCache = 57855 - sqlCalcFoundRows = 57528 - sqlNoCache = 57856 - sqlSmallResult = 57529 - sqlTsiDay = 57857 - sqlTsiHour = 57858 - sqlTsiMinute = 57859 - sqlTsiMonth = 57860 - sqlTsiQuarter = 57861 - sqlTsiSecond = 57862 - sqlTsiWeek = 57863 - sqlTsiYear = 57864 - ssl = 57530 - staleness = 57965 - start = 57865 - starting = 57531 - statistics = 58024 - stats = 58025 - statsAutoRecalc = 57866 - statsBuckets = 58028 - statsColChoice = 57587 - statsColList = 57588 - statsExtended = 57532 - statsHealthy = 58029 - statsHistograms = 58027 - statsMeta = 58026 - statsOptions = 57585 - statsPersistent = 57867 - statsSamplePages = 57868 - statsSampleRate = 57586 - statsTopN = 58030 - status = 57869 - std = 57966 - stddev = 57967 - stddevPop = 57968 - stddevSamp = 57969 - stop = 57970 - storage = 57870 - stored = 57537 - straightJoin = 57533 - strict = 57971 - strictFormat = 57871 - stringLit = 57349 - strong = 57972 - subDate = 57973 - subject = 57872 - subpartition = 57873 - subpartitions = 57874 - substring = 57975 - sum = 57974 - super = 57875 - swaps = 57876 - switchesSym = 57877 - system = 57878 - systemTime = 57879 - tableChecksum = 57880 - tableKwd = 57535 - tableRefPriority = 58104 - tableSample = 57536 - tables = 57881 - tablespace = 57882 - target = 57976 - telemetry = 58032 - telemetryID = 58033 - temporary = 57883 - temptable = 57884 - terminated = 57538 - textType = 57885 - than = 57886 - then = 57539 - tiFlash = 58035 - tidb = 58034 - tidbCurrentTSO = 57534 - tikvImporter = 57887 - timeType = 57889 - timestampAdd = 57977 - timestampDiff = 57978 - timestampType = 57888 - tinyIntType = 57541 - tinyblobType = 57540 - tinytextType = 57542 - tls = 57979 - to = 57543 - tokudbDefault = 57980 - tokudbFast = 57981 - tokudbLzma = 57982 - tokudbQuickLZ = 57983 - tokudbSmall = 57985 - tokudbSnappy = 57984 - tokudbUncompressed = 57986 - tokudbZlib = 57987 - tokudbZstd = 57988 - top = 57989 - topn = 58036 - tp = 57890 - trace = 57891 - traditional = 57892 - trailing = 57544 - transaction = 57893 - trigger = 57545 - triggers = 57894 - trim = 57990 - trueCardCost = 57995 - trueKwd = 57546 - truncate = 57895 - unbounded = 57896 - uncommitted = 57897 - undefined = 57898 - underscoreCS = 57348 - unicodeSym = 57899 - union = 57548 - unique = 57547 - unknown = 57900 - unlock = 57549 - unsigned = 57550 - update = 57551 - usage = 57552 - use = 57553 - user = 57901 - using = 57554 - utcDate = 57555 - utcTime = 57557 - utcTimestamp = 57556 - validation = 57902 - value = 57903 - values = 57558 - varPop = 57992 - varSamp = 57993 - varbinaryType = 57562 - varcharType = 57560 - varcharacter = 57561 - variables = 57904 - variance = 57991 - varying = 57563 - verboseType = 57994 - view = 57905 - virtual = 57564 - visible = 57906 - voter = 57996 - voterConstraints = 57997 - voters = 57998 - wait = 57913 - warnings = 57907 - week = 57908 - weightString = 57909 - when = 57565 - where = 57566 - width = 58038 - window = 57568 - with = 57569 - without = 57910 - write = 57567 - x509 = 57911 - xor = 57570 - yearMonth = 57571 - yearType = 57912 - zerofill = 57572 + ifKwd = 57435 + ignore = 57436 + importKwd = 57707 + imports = 57708 + in = 57437 + increment = 57709 + incremental = 57710 + index = 57438 + indexes = 57711 + infile = 57439 + inner = 57440 + inplace = 57943 + insert = 57447 + insertMethod = 57712 + insertValues = 58099 + instance = 57713 + instant = 57944 + int1Type = 57449 + int2Type = 57450 + int3Type = 57451 + int4Type = 57452 + int8Type = 57453 + intLit = 58075 + intType = 57448 + integerType = 57441 + internal = 57945 + intersect = 57442 + interval = 57443 + into = 57444 + invalid = 57353 + invisible = 57714 + invoker = 57715 + io = 57716 + ipc = 57717 + is = 57446 + isolation = 57718 + issuer = 57719 + job = 58017 + jobs = 58016 + join = 57454 + jsonArrayagg = 57946 + jsonObjectAgg = 57947 + jsonType = 57720 + jss = 58083 + juss = 58084 + key = 57455 + keyBlockSize = 57721 + keys = 57456 + kill = 57457 + labels = 57722 + lag = 57458 + language = 57723 + last = 57724 + lastBackup = 57725 + lastValue = 57459 + lastval = 57726 + le = 58082 + lead = 57460 + leader = 57948 + leaderConstraints = 57949 + leading = 57461 + learner = 57950 + learnerConstraints = 57951 + learners = 57952 + left = 57462 + less = 57727 + level = 57728 + like = 57463 + limit = 57464 + linear = 57466 + lines = 57465 + list = 57729 + load = 57467 + local = 57730 + localTime = 57468 + localTs = 57469 + location = 57732 + lock = 57470 + locked = 57731 + logs = 57733 + long = 57560 + longblobType = 57471 + longtextType = 57472 + lowPriority = 57473 + lowerThanCharsetKwd = 58102 + lowerThanComma = 58115 + lowerThanCreateTableSelect = 58100 + lowerThanEq = 58112 + lowerThanFunction = 58107 + lowerThanInsertValues = 58098 + lowerThanKey = 58103 + lowerThanLocal = 58104 + lowerThanNot = 58114 + lowerThanOn = 58111 + lowerThanParenthese = 58109 + lowerThanRemove = 58105 + lowerThanSelectOpt = 58093 + lowerThanSelectStmt = 58097 + lowerThanSetKeyword = 58096 + lowerThanStringLitToken = 58095 + lowerThanValueKeyword = 58094 + lowerThenOrder = 58106 + lsh = 58085 + master = 57734 + match = 57474 + max = 57954 + maxConnectionsPerHour = 57737 + maxQueriesPerHour = 57738 + maxRows = 57739 + maxUpdatesPerHour = 57740 + maxUserConnections = 57741 + maxValue = 57475 + max_idxnum = 57735 + max_minutes = 57736 + mb = 57742 + mediumIntType = 57477 + mediumblobType = 57476 + mediumtextType = 57478 + memory = 57743 + merge = 57744 + microsecond = 57745 + min = 57953 + minRows = 57746 + minValue = 57748 + minute = 57747 + minuteMicrosecond = 57479 + minuteSecond = 57480 + mod = 57481 + mode = 57749 + modify = 57750 + month = 57751 + names = 57752 + national = 57753 + natural = 57574 + ncharType = 57754 + neg = 58113 + neq = 58086 + neqSynonym = 58087 + never = 57755 + next = 57756 + next_row_id = 57942 + nextval = 57757 + no = 57758 + noWriteToBinLog = 57483 + nocache = 57759 + nocycle = 57760 + nodeID = 58018 + nodeState = 58019 + nodegroup = 57761 + nomaxvalue = 57762 + nominvalue = 57763 + nonclustered = 57764 + none = 57765 + not = 57482 + not2 = 58091 + now = 57955 + nowait = 57766 + nthValue = 57484 + ntile = 57485 + null = 57486 + nulleq = 58088 + nulls = 57768 + numericType = 57487 + nvarcharType = 57767 + odbcDateType = 57357 + odbcTimeType = 57358 + odbcTimestampType = 57359 + of = 57488 + off = 57769 + offset = 57770 + on = 57489 + onDuplicate = 57771 + online = 57772 + only = 57773 + open = 57774 + optRuleBlacklist = 57956 + optimistic = 58020 + optimize = 57490 + option = 57491 + optional = 57775 + optionally = 57492 + or = 57493 + order = 57494 + outer = 57495 + outfile = 57445 + over = 57496 + packKeys = 57776 + pageSym = 57777 + paramMarker = 58089 + parser = 57778 + partial = 57779 + partition = 57497 + partitioning = 57780 + partitions = 57781 + password = 57782 + per_db = 57784 + per_table = 57785 + percent = 57783 + percentRank = 57498 + pessimistic = 58021 + pipes = 57356 + pipesAsOr = 57786 + placement = 57957 + plan = 57958 + planCache = 57959 + plugins = 57787 + policy = 57788 + position = 57960 + preSplitRegions = 57789 + preceding = 57790 + precisionType = 57499 + predicate = 57961 + prepare = 57791 + preserve = 57792 + primary = 57500 + primaryRegion = 57962 + privileges = 57793 + procedure = 57501 + process = 57794 + processlist = 57795 + profile = 57796 + profiles = 57797 + proxy = 57798 + pump = 58022 + purge = 57799 + quarter = 57800 + queries = 57801 + query = 57802 + quick = 57803 + rangeKwd = 57502 + rank = 57503 + rateLimit = 57804 + read = 57504 + realType = 57505 + rebuild = 57805 + recent = 57963 + recover = 57806 + recursive = 57506 + redundant = 57807 + references = 57507 + regexpKwd = 57508 + region = 58045 + regions = 58044 + release = 57509 + reload = 57808 + remove = 57809 + rename = 57510 + reorganize = 57810 + repair = 57811 + repeat = 57511 + repeatable = 57812 + replace = 57512 + replayer = 57964 + replica = 57813 + replicas = 57814 + replication = 57815 + require = 57513 + required = 57816 + reset = 58043 + respect = 57817 + restart = 57818 + restore = 57819 + restores = 57820 + restrict = 57514 + resume = 57821 + reverse = 57822 + revoke = 57515 + right = 57516 + rlike = 57517 + role = 57823 + rollback = 57824 + routine = 57825 + row = 57518 + rowCount = 57826 + rowFormat = 57827 + rowNumber = 57520 + rows = 57519 + rsh = 58090 + rtree = 57828 + run = 58023 + running = 57965 + s3 = 57966 + sampleRate = 58025 + samples = 58024 + san = 57829 + savepoint = 57830 + schedule = 57967 + second = 57831 + secondMicrosecond = 57521 + secondaryEngine = 57832 + secondaryLoad = 57833 + secondaryUnload = 57834 + security = 57835 + selectKwd = 57522 + sendCredentialsToTiKV = 57836 + separator = 57837 + sequence = 57838 + serial = 57839 + serializable = 57840 + session = 57841 + sessionStates = 58026 + set = 57523 + setval = 57842 + shardRowIDBits = 57843 + share = 57844 + shared = 57845 + show = 57524 + shutdown = 57846 + signed = 57847 + simple = 57848 + singleAtIdentifier = 57351 + skip = 57849 + skipSchemaFiles = 57850 + slave = 57851 + slow = 57852 + smallIntType = 57525 + snapshot = 57853 + some = 57854 + source = 57855 + spatial = 57526 + split = 58041 + sql = 57527 + sqlBigResult = 57528 + sqlBufferResult = 57856 + sqlCache = 57857 + sqlCalcFoundRows = 57529 + sqlNoCache = 57858 + sqlSmallResult = 57530 + sqlTsiDay = 57859 + sqlTsiHour = 57860 + sqlTsiMinute = 57861 + sqlTsiMonth = 57862 + sqlTsiQuarter = 57863 + sqlTsiSecond = 57864 + sqlTsiWeek = 57865 + sqlTsiYear = 57866 + ssl = 57531 + staleness = 57968 + start = 57867 + starting = 57532 + statistics = 58027 + stats = 58028 + statsAutoRecalc = 57868 + statsBuckets = 58031 + statsColChoice = 57589 + statsColList = 57590 + statsExtended = 57533 + statsHealthy = 58032 + statsHistograms = 58030 + statsLocked = 58034 + statsMeta = 58029 + statsOptions = 57587 + statsPersistent = 57869 + statsSamplePages = 57870 + statsSampleRate = 57588 + statsTopN = 58033 + status = 57871 + std = 57969 + stddev = 57970 + stddevPop = 57971 + stddevSamp = 57972 + stop = 57973 + storage = 57872 + stored = 57538 + straightJoin = 57534 + strict = 57974 + strictFormat = 57873 + stringLit = 57350 + strong = 57975 + subDate = 57976 + subject = 57874 + subpartition = 57875 + subpartitions = 57876 + substring = 57978 + sum = 57977 + super = 57877 + swaps = 57878 + switchesSym = 57879 + system = 57880 + systemTime = 57881 + tableChecksum = 57882 + tableKwd = 57536 + tableRefPriority = 58108 + tableSample = 57537 + tables = 57883 + tablespace = 57884 + target = 57979 + telemetry = 58036 + telemetryID = 58037 + temporary = 57885 + temptable = 57886 + terminated = 57539 + textType = 57887 + than = 57888 + then = 57540 + tiFlash = 58039 + tidb = 58038 + tidbCurrentTSO = 57535 + tikvImporter = 57889 + timeType = 57891 + timestampAdd = 57980 + timestampDiff = 57981 + timestampType = 57890 + tinyIntType = 57542 + tinyblobType = 57541 + tinytextType = 57543 + tls = 57982 + to = 57544 + toTimestamp = 57348 + tokenIssuer = 57892 + tokudbDefault = 57983 + tokudbFast = 57984 + tokudbLzma = 57985 + tokudbQuickLZ = 57986 + tokudbSmall = 57988 + tokudbSnappy = 57987 + tokudbUncompressed = 57989 + tokudbZlib = 57990 + tokudbZstd = 57991 + top = 57992 + topn = 58040 + tp = 57893 + trace = 57894 + traditional = 57895 + trailing = 57545 + transaction = 57896 + trigger = 57546 + triggers = 57897 + trim = 57993 + trueCardCost = 57998 + trueKwd = 57547 + truncate = 57898 + unbounded = 57899 + uncommitted = 57900 + undefined = 57901 + underscoreCS = 57349 + unicodeSym = 57902 + union = 57549 + unique = 57548 + unknown = 57903 + unlock = 57550 + unsigned = 57551 + update = 57552 + usage = 57553 + use = 57554 + user = 57904 + using = 57555 + utcDate = 57556 + utcTime = 57558 + utcTimestamp = 57557 + validation = 57905 + value = 57906 + values = 57559 + varPop = 57995 + varSamp = 57996 + varbinaryType = 57563 + varcharType = 57561 + varcharacter = 57562 + variables = 57907 + variance = 57994 + varying = 57564 + verboseType = 57997 + view = 57908 + virtual = 57565 + visible = 57909 + voter = 57999 + voterConstraints = 58000 + voters = 58001 + wait = 57916 + warnings = 57910 + week = 57911 + weightString = 57912 + when = 57566 + where = 57567 + width = 58042 + window = 57569 + with = 57570 + without = 57913 + write = 57568 + x509 = 57914 + xor = 57571 + yearMonth = 57572 + yearType = 57915 + zerofill = 57573 yyMaxDepth = 200 - yyTabOfs = -2537 + yyTabOfs = -2557 ) var ( yyXLAT = map[int]int{ - 57344: 0, // $end (2243x) - 59: 1, // ';' (2242x) - 58037: 2, // split (1872x) - 57742: 3, // merge (1871x) - 57807: 4, // remove (1870x) - 57808: 5, // reorganize (1870x) - 57627: 6, // comment (1802x) - 57870: 7, // storage (1778x) - 57590: 8, // autoIncrement (1767x) - 44: 9, // ',' (1679x) - 57687: 10, // first (1669x) - 57577: 11, // after (1663x) - 57837: 12, // serial (1659x) - 57591: 13, // autoRandom (1658x) - 57624: 14, // columnFormat (1658x) - 57780: 15, // password (1626x) - 57615: 16, // charsetKwd (1624x) - 57617: 17, // checksum (1612x) - 57954: 18, // placement (1610x) - 57719: 19, // keyBlockSize (1594x) - 57882: 20, // tablespace (1591x) - 57667: 21, // encryption (1589x) - 57670: 22, // engine (1586x) - 57650: 23, // data (1584x) - 57710: 24, // insertMethod (1582x) - 57737: 25, // maxRows (1582x) - 57744: 26, // minRows (1582x) - 57759: 27, // nodegroup (1582x) - 57634: 28, // connection (1574x) - 57592: 29, // autoRandomBase (1571x) - 58028: 30, // statsBuckets (1569x) - 58030: 31, // statsTopN (1569x) - 57589: 32, // autoIdCache (1568x) - 57594: 33, // avgRowLength (1568x) - 57632: 34, // compression (1568x) - 57656: 35, // delayKeyWrite (1568x) - 57774: 36, // packKeys (1568x) - 57787: 37, // preSplitRegions (1568x) - 57825: 38, // rowFormat (1568x) - 57830: 39, // secondaryEngine (1568x) - 57841: 40, // shardRowIDBits (1568x) - 57866: 41, // statsAutoRecalc (1568x) - 57587: 42, // statsColChoice (1568x) - 57588: 43, // statsColList (1568x) - 57867: 44, // statsPersistent (1568x) - 57868: 45, // statsSamplePages (1568x) - 57586: 46, // statsSampleRate (1568x) - 57880: 47, // tableChecksum (1568x) - 57574: 48, // account (1514x) - 41: 49, // ')' (1511x) - 57819: 50, // resume (1504x) - 57845: 51, // signed (1504x) - 57851: 52, // snapshot (1503x) - 57595: 53, // backend (1502x) - 57616: 54, // checkpoint (1502x) - 57633: 55, // concurrency (1502x) - 57639: 56, // csvBackslashEscape (1502x) - 57640: 57, // csvDelimiter (1502x) - 57641: 58, // csvHeader (1502x) - 57642: 59, // csvNotNull (1502x) - 57643: 60, // csvNull (1502x) - 57644: 61, // csvSeparator (1502x) - 57645: 62, // csvTrimLastSeparators (1502x) - 57723: 63, // lastBackup (1502x) - 57769: 64, // onDuplicate (1502x) - 57770: 65, // online (1502x) - 57802: 66, // rateLimit (1502x) - 57834: 67, // sendCredentialsToTiKV (1502x) - 57848: 68, // skipSchemaFiles (1502x) - 57871: 69, // strictFormat (1502x) - 57887: 70, // tikvImporter (1502x) - 57895: 71, // truncate (1499x) - 57756: 72, // no (1498x) - 57865: 73, // start (1496x) - 57610: 74, // cache (1493x) - 57757: 75, // nocache (1492x) - 57649: 76, // cycle (1491x) - 57746: 77, // minValue (1491x) - 57707: 78, // increment (1490x) - 57758: 79, // nocycle (1490x) - 57760: 80, // nomaxvalue (1490x) - 57761: 81, // nominvalue (1490x) - 57816: 82, // restart (1488x) - 57580: 83, // algorithm (1487x) - 57890: 84, // tp (1487x) - 57648: 85, // clustered (1486x) - 57712: 86, // invisible (1486x) - 57762: 87, // nonclustered (1486x) - 58040: 88, // regions (1486x) - 57906: 89, // visible (1486x) - 57873: 90, // subpartition (1483x) - 57779: 91, // partitions (1482x) - 57924: 92, // constraints (1479x) - 57935: 93, // followerConstraints (1479x) - 57936: 94, // followers (1479x) - 57946: 95, // leaderConstraints (1479x) - 57948: 96, // learnerConstraints (1479x) - 57949: 97, // learners (1479x) - 57959: 98, // primaryRegion (1479x) - 57964: 99, // schedule (1479x) - 57997: 100, // voterConstraints (1479x) - 57998: 101, // voters (1479x) - 57625: 102, // columns (1478x) - 57905: 103, // view (1478x) - 57912: 104, // yearType (1475x) - 57653: 105, // day (1474x) - 57583: 106, // ascii (1473x) - 57609: 107, // byteType (1473x) - 57829: 108, // second (1473x) - 57864: 109, // sqlTsiYear (1473x) - 57899: 110, // unicodeSym (1473x) - 57685: 111, // fields (1472x) - 57702: 112, // hour (1472x) - 57743: 113, // microsecond (1472x) - 57745: 114, // minute (1472x) - 57749: 115, // month (1472x) - 57798: 116, // quarter (1472x) - 57857: 117, // sqlTsiDay (1472x) - 57858: 118, // sqlTsiHour (1472x) - 57859: 119, // sqlTsiMinute (1472x) - 57860: 120, // sqlTsiMonth (1472x) - 57861: 121, // sqlTsiQuarter (1472x) - 57862: 122, // sqlTsiSecond (1472x) - 57863: 123, // sqlTsiWeek (1472x) - 57908: 124, // week (1472x) - 57881: 125, // tables (1471x) - 57869: 126, // status (1470x) - 57835: 127, // separator (1469x) - 57735: 128, // maxConnectionsPerHour (1468x) - 57736: 129, // maxQueriesPerHour (1468x) - 57738: 130, // maxUpdatesPerHour (1468x) - 57739: 131, // maxUserConnections (1468x) - 57788: 132, // preceding (1468x) - 57618: 133, // cipher (1467x) - 57705: 134, // importKwd (1467x) - 57717: 135, // issuer (1467x) - 57728: 136, // local (1467x) - 57827: 137, // san (1467x) - 57872: 138, // subject (1467x) - 57800: 139, // query (1466x) - 57847: 140, // skip (1466x) - 57602: 141, // bindings (1465x) - 57655: 142, // definer (1465x) - 57697: 143, // hash (1465x) - 57703: 144, // identified (1465x) - 57731: 145, // logs (1465x) - 57815: 146, // respect (1465x) - 57628: 147, // commit (1464x) - 57646: 148, // current (1464x) - 57669: 149, // enforced (1464x) - 57690: 150, // following (1464x) - 57346: 151, // identifier (1464x) - 57725: 152, // less (1464x) - 57764: 153, // nowait (1464x) - 57771: 154, // only (1464x) - 57822: 155, // rollback (1464x) - 57828: 156, // savepoint (1464x) - 57886: 157, // than (1464x) - 57903: 158, // value (1464x) - 57598: 159, // begin (1463x) - 57600: 160, // binding (1463x) - 57668: 161, // end (1463x) - 57695: 162, // global (1463x) - 57939: 163, // next_row_id (1463x) - 57768: 164, // offset (1463x) - 57786: 165, // policy (1463x) - 57958: 166, // predicate (1463x) - 57883: 167, // temporary (1463x) - 58035: 168, // tiFlash (1463x) - 57896: 169, // unbounded (1463x) - 57901: 170, // user (1463x) - 57718: 171, // jsonType (1462x) - 57956: 172, // planCache (1462x) - 57789: 173, // prepare (1462x) - 57821: 174, // role (1462x) - 57900: 175, // unknown (1462x) - 57913: 176, // wait (1462x) - 57608: 177, // btree (1461x) - 57651: 178, // datetimeType (1461x) - 57652: 179, // dateType (1461x) - 57688: 180, // fixed (1461x) - 57704: 181, // identSQLErrors (1461x) - 57716: 182, // isolation (1461x) - 57722: 183, // last (1461x) - 57730: 184, // location (1461x) - 57733: 185, // max_idxnum (1461x) - 57741: 186, // memory (1461x) - 57767: 187, // off (1461x) - 57773: 188, // optional (1461x) - 57782: 189, // per_db (1461x) - 57791: 190, // privileges (1461x) - 57811: 191, // replica (1461x) - 57814: 192, // required (1461x) - 57826: 193, // rtree (1461x) - 57962: 194, // running (1461x) - 58022: 195, // sampleRate (1461x) - 57836: 196, // sequence (1461x) - 57839: 197, // session (1461x) - 57850: 198, // slow (1461x) - 57888: 199, // timestampType (1461x) - 57889: 200, // timeType (1461x) - 57902: 201, // validation (1461x) - 57904: 202, // variables (1461x) - 57584: 203, // attributes (1460x) - 57630: 204, // compact (1460x) - 57658: 205, // disable (1460x) - 57663: 206, // duplicate (1460x) - 57664: 207, // dynamic (1460x) - 57665: 208, // enable (1460x) - 57673: 209, // errorKwd (1460x) - 57689: 210, // flush (1460x) - 57692: 211, // full (1460x) - 57740: 212, // mb (1460x) - 57747: 213, // mode (1460x) - 57753: 214, // never (1460x) - 57955: 215, // plan (1460x) - 57785: 216, // plugins (1460x) - 57793: 217, // processlist (1460x) - 57804: 218, // recover (1460x) - 57809: 219, // repair (1460x) - 57810: 220, // repeatable (1460x) - 58024: 221, // statistics (1460x) - 57874: 222, // subpartitions (1460x) - 58034: 223, // tidb (1460x) - 57910: 224, // without (1460x) - 57999: 225, // admin (1459x) - 57596: 226, // backup (1459x) - 58000: 227, // batch (1459x) - 57603: 228, // binlog (1459x) - 57605: 229, // block (1459x) - 57606: 230, // booleanType (1459x) - 57921: 231, // briefType (1459x) - 58001: 232, // buckets (1459x) - 58004: 233, // cardinality (1459x) - 57614: 234, // chain (1459x) - 57621: 235, // clientErrorsSummary (1459x) - 58005: 236, // cmSketch (1459x) - 57622: 237, // coalesce (1459x) - 57631: 238, // compressed (1459x) - 57637: 239, // context (1459x) - 57923: 240, // copyKwd (1459x) - 58007: 241, // correlation (1459x) - 57638: 242, // cpu (1459x) - 57654: 243, // deallocate (1459x) - 58009: 244, // dependency (1459x) - 57657: 245, // directory (1459x) - 57660: 246, // discard (1459x) - 57661: 247, // disk (1459x) - 57662: 248, // do (1459x) - 57928: 249, // dotType (1459x) - 58011: 250, // drainer (1459x) - 58012: 251, // dry (1459x) - 57678: 252, // exchange (1459x) - 57680: 253, // execute (1459x) - 57681: 254, // expansion (1459x) - 57933: 255, // flashback (1459x) - 57691: 256, // format (1459x) - 57694: 257, // general (1459x) - 57698: 258, // help (1459x) - 57699: 259, // histogram (1459x) - 57701: 260, // hosts (1459x) - 57940: 261, // inplace (1459x) - 57711: 262, // instance (1459x) - 57941: 263, // instant (1459x) - 57715: 264, // ipc (1459x) - 58014: 265, // job (1459x) - 58013: 266, // jobs (1459x) - 57720: 267, // labels (1459x) - 57729: 268, // locked (1459x) - 57748: 269, // modify (1459x) - 57754: 270, // next (1459x) - 58015: 271, // nodeID (1459x) - 58016: 272, // nodeState (1459x) - 57766: 273, // nulls (1459x) - 57775: 274, // pageSym (1459x) - 58019: 275, // pump (1459x) - 57797: 276, // purge (1459x) - 57803: 277, // rebuild (1459x) - 57805: 278, // redundant (1459x) - 57806: 279, // reload (1459x) - 57817: 280, // restore (1459x) - 57823: 281, // routine (1459x) - 57963: 282, // s3 (1459x) - 58021: 283, // samples (1459x) - 57831: 284, // secondaryLoad (1459x) - 57832: 285, // secondaryUnload (1459x) - 57842: 286, // share (1459x) - 57844: 287, // shutdown (1459x) - 57853: 288, // source (1459x) - 58025: 289, // stats (1459x) - 57585: 290, // statsOptions (1459x) - 57970: 291, // stop (1459x) - 57876: 292, // swaps (1459x) - 57980: 293, // tokudbDefault (1459x) - 57981: 294, // tokudbFast (1459x) - 57982: 295, // tokudbLzma (1459x) - 57983: 296, // tokudbQuickLZ (1459x) - 57985: 297, // tokudbSmall (1459x) - 57984: 298, // tokudbSnappy (1459x) - 57986: 299, // tokudbUncompressed (1459x) - 57987: 300, // tokudbZlib (1459x) - 57988: 301, // tokudbZstd (1459x) - 58036: 302, // topn (1459x) - 57891: 303, // trace (1459x) - 57892: 304, // traditional (1459x) - 57995: 305, // trueCardCost (1459x) - 57994: 306, // verboseType (1459x) - 57907: 307, // warnings (1459x) - 57575: 308, // action (1458x) - 57576: 309, // advise (1458x) - 57578: 310, // against (1458x) - 57579: 311, // ago (1458x) - 57581: 312, // always (1458x) - 57597: 313, // backups (1458x) - 57599: 314, // bernoulli (1458x) - 57601: 315, // bindingCache (1458x) - 57604: 316, // bitType (1458x) - 57607: 317, // boolType (1458x) - 58002: 318, // builtins (1458x) - 58003: 319, // cancel (1458x) - 57611: 320, // capture (1458x) - 57612: 321, // cascaded (1458x) - 57613: 322, // causal (1458x) - 57619: 323, // cleanup (1458x) - 57620: 324, // client (1458x) - 57647: 325, // cluster (1458x) - 57623: 326, // collation (1458x) - 58006: 327, // columnStatsUsage (1458x) - 57629: 328, // committed (1458x) - 57626: 329, // config (1458x) - 57635: 330, // consistency (1458x) - 57636: 331, // consistent (1458x) - 58008: 332, // ddl (1458x) - 58010: 333, // depth (1458x) - 57659: 334, // disabled (1458x) - 57929: 335, // dump (1458x) - 57666: 336, // enabled (1458x) - 57671: 337, // engines (1458x) - 57672: 338, // enum (1458x) - 57676: 339, // events (1458x) - 57677: 340, // evolve (1458x) - 57682: 341, // expire (1458x) - 57931: 342, // exprPushdownBlacklist (1458x) - 57683: 343, // extended (1458x) - 57684: 344, // faultsSym (1458x) - 57693: 345, // function (1458x) - 57696: 346, // grants (1458x) - 58031: 347, // histogramsInFlight (1458x) - 57700: 348, // history (1458x) - 57706: 349, // imports (1458x) - 57708: 350, // incremental (1458x) - 57709: 351, // indexes (1458x) - 57942: 352, // internal (1458x) - 57713: 353, // invoker (1458x) - 57714: 354, // io (1458x) - 57721: 355, // language (1458x) - 57726: 356, // level (1458x) - 57727: 357, // list (1458x) - 57732: 358, // master (1458x) - 57734: 359, // max_minutes (1458x) - 57751: 360, // national (1458x) - 57752: 361, // ncharType (1458x) - 57755: 362, // nextval (1458x) - 57763: 363, // none (1458x) - 57765: 364, // nvarcharType (1458x) - 57772: 365, // open (1458x) - 58017: 366, // optimistic (1458x) - 57953: 367, // optRuleBlacklist (1458x) - 57776: 368, // parser (1458x) - 57777: 369, // partial (1458x) - 57778: 370, // partitioning (1458x) - 57783: 371, // per_table (1458x) - 57781: 372, // percent (1458x) - 58018: 373, // pessimistic (1458x) - 57790: 374, // preserve (1458x) - 57794: 375, // profile (1458x) - 57795: 376, // profiles (1458x) - 57799: 377, // queries (1458x) - 57960: 378, // recent (1458x) - 58041: 379, // region (1458x) - 57961: 380, // replayer (1458x) - 58039: 381, // reset (1458x) - 57818: 382, // restores (1458x) - 58020: 383, // run (1458x) - 57833: 384, // security (1458x) - 57838: 385, // serializable (1458x) - 58023: 386, // sessionStates (1458x) - 57846: 387, // simple (1458x) - 57849: 388, // slave (1458x) - 58029: 389, // statsHealthy (1458x) - 58027: 390, // statsHistograms (1458x) - 58026: 391, // statsMeta (1458x) - 57971: 392, // strict (1458x) - 57877: 393, // switchesSym (1458x) - 57878: 394, // system (1458x) - 57879: 395, // systemTime (1458x) - 57976: 396, // target (1458x) - 58033: 397, // telemetryID (1458x) - 57884: 398, // temptable (1458x) - 57885: 399, // textType (1458x) - 57979: 400, // tls (1458x) - 57989: 401, // top (1458x) - 57893: 402, // transaction (1458x) - 57894: 403, // triggers (1458x) - 57897: 404, // uncommitted (1458x) - 57898: 405, // undefined (1458x) - 58038: 406, // width (1458x) - 57911: 407, // x509 (1458x) - 57914: 408, // addDate (1457x) - 57582: 409, // any (1457x) - 57915: 410, // approxCountDistinct (1457x) - 57916: 411, // approxPercentile (1457x) - 57593: 412, // avg (1457x) - 57917: 413, // bitAnd (1457x) - 57918: 414, // bitOr (1457x) - 57919: 415, // bitXor (1457x) - 57920: 416, // bound (1457x) - 57922: 417, // cast (1457x) - 57925: 418, // curTime (1457x) - 57926: 419, // dateAdd (1457x) - 57927: 420, // dateSub (1457x) - 57674: 421, // escape (1457x) - 57675: 422, // event (1457x) - 57930: 423, // exact (1457x) - 57679: 424, // exclusive (1457x) - 57932: 425, // extract (1457x) - 57686: 426, // file (1457x) - 57934: 427, // follower (1457x) - 57937: 428, // getFormat (1457x) - 57938: 429, // groupConcat (1457x) - 57943: 430, // jsonArrayagg (1457x) - 57944: 431, // jsonObjectAgg (1457x) - 57724: 432, // lastval (1457x) - 57945: 433, // leader (1457x) - 57947: 434, // learner (1457x) - 57951: 435, // max (1457x) - 57950: 436, // min (1457x) - 57750: 437, // names (1457x) - 57952: 438, // now (1457x) - 57957: 439, // position (1457x) - 57792: 440, // process (1457x) - 57796: 441, // proxy (1457x) - 57801: 442, // quick (1457x) - 57812: 443, // replicas (1457x) - 57813: 444, // replication (1457x) - 57820: 445, // reverse (1457x) - 57824: 446, // rowCount (1457x) - 57840: 447, // setval (1457x) - 57843: 448, // shared (1457x) - 57852: 449, // some (1457x) - 57854: 450, // sqlBufferResult (1457x) - 57855: 451, // sqlCache (1457x) - 57856: 452, // sqlNoCache (1457x) - 57965: 453, // staleness (1457x) - 57966: 454, // std (1457x) - 57967: 455, // stddev (1457x) - 57968: 456, // stddevPop (1457x) - 57969: 457, // stddevSamp (1457x) - 57972: 458, // strong (1457x) - 57973: 459, // subDate (1457x) - 57975: 460, // substring (1457x) - 57974: 461, // sum (1457x) - 57875: 462, // super (1457x) - 58032: 463, // telemetry (1457x) - 57977: 464, // timestampAdd (1457x) - 57978: 465, // timestampDiff (1457x) - 57990: 466, // trim (1457x) - 57991: 467, // variance (1457x) - 57992: 468, // varPop (1457x) - 57993: 469, // varSamp (1457x) - 57996: 470, // voter (1457x) - 57909: 471, // weightString (1457x) - 57488: 472, // on (1395x) - 40: 473, // '(' (1324x) - 57569: 474, // with (1211x) - 57349: 475, // stringLit (1195x) - 58087: 476, // not2 (1192x) - 57481: 477, // not (1129x) - 57364: 478, // as (1106x) - 57398: 479, // defaultKwd (1100x) - 57548: 480, // union (1058x) - 57554: 481, // using (1051x) - 57461: 482, // left (1046x) - 57515: 483, // right (1046x) - 57379: 484, // collate (1043x) - 43: 485, // '+' (1023x) - 45: 486, // '-' (1022x) - 57480: 487, // mod (1002x) - 57496: 488, // partition (962x) - 57435: 489, // ignore (957x) - 57415: 490, // except (950x) - 57441: 491, // intersect (949x) - 57485: 492, // null (947x) - 57463: 493, // limit (930x) - 57420: 494, // forKwd (927x) - 57558: 495, // values (922x) - 57443: 496, // into (920x) - 57469: 497, // lock (916x) - 57566: 498, // where (910x) - 58076: 499, // eq (908x) - 57423: 500, // from (908x) - 57417: 501, // fetch (906x) - 57493: 502, // order (902x) - 57421: 503, // force (898x) - 57511: 504, // replace (895x) - 57377: 505, // charType (894x) - 57522: 506, // set (889x) - 57363: 507, // and (887x) - 58071: 508, // intLit (884x) - 57492: 509, // or (864x) - 57354: 510, // andand (863x) - 57784: 511, // pipesAsOr (863x) - 57570: 512, // xor (863x) - 57427: 513, // group (837x) - 57429: 514, // having (837x) - 57533: 515, // straightJoin (831x) - 57568: 516, // window (823x) - 57453: 517, // join (819x) - 57462: 518, // like (811x) - 57573: 519, // natural (809x) - 42: 520, // '*' (808x) - 57384: 521, // cross (808x) - 57439: 522, // inner (808x) - 125: 523, // '}' (805x) - 57518: 524, // rows (793x) - 57553: 525, // use (789x) - 57536: 526, // tableSample (783x) - 57501: 527, // rangeKwd (782x) - 57428: 528, // groups (781x) - 57402: 529, // desc (780x) - 57368: 530, // binaryType (779x) - 57365: 531, // asc (778x) - 57393: 532, // dayHour (778x) - 57394: 533, // dayMicrosecond (778x) - 57395: 534, // dayMinute (778x) - 57396: 535, // daySecond (778x) - 57431: 536, // hourMicrosecond (778x) - 57432: 537, // hourMinute (778x) - 57433: 538, // hourSecond (778x) - 57478: 539, // minuteMicrosecond (778x) - 57479: 540, // minuteSecond (778x) - 57520: 541, // secondMicrosecond (778x) - 57571: 542, // yearMonth (778x) - 57565: 543, // when (775x) - 57436: 544, // in (773x) - 57410: 545, // elseKwd (772x) - 57539: 546, // then (769x) - 47: 547, // '/' (766x) - 37: 548, // '%' (765x) - 38: 549, // '&' (765x) - 94: 550, // '^' (765x) - 124: 551, // '|' (765x) - 57406: 552, // div (765x) - 58081: 553, // lsh (765x) - 58086: 554, // rsh (765x) - 60: 555, // '<' (762x) - 62: 556, // '>' (762x) - 58077: 557, // ge (762x) - 57445: 558, // is (762x) - 58078: 559, // le (762x) - 58082: 560, // neq (762x) - 58083: 561, // neqSynonym (762x) - 58084: 562, // nulleq (762x) - 57366: 563, // between (760x) - 57434: 564, // ifKwd (755x) - 57507: 565, // regexpKwd (752x) - 57516: 566, // rlike (752x) - 57446: 567, // insert (741x) - 57350: 568, // singleAtIdentifier (736x) - 57535: 569, // tableKwd (736x) - 57389: 570, // currentUser (732x) - 57416: 571, // falseKwd (730x) - 57546: 572, // trueKwd (730x) - 58070: 573, // decLit (724x) - 58069: 574, // floatLit (724x) - 57517: 575, // row (724x) - 58072: 576, // hexLit (722x) - 58085: 577, // paramMarker (722x) - 57442: 578, // interval (721x) - 123: 579, // '{' (720x) - 58073: 580, // bitLit (720x) - 57454: 581, // key (720x) - 57391: 582, // database (715x) - 57413: 583, // exists (715x) - 57382: 584, // convert (712x) - 58057: 585, // builtinNow (711x) - 57388: 586, // currentTs (711x) - 57351: 587, // doubleAtIdentifier (711x) - 57467: 588, // localTime (711x) - 57468: 589, // localTs (711x) - 57378: 590, // check (710x) - 57499: 591, // primary (710x) - 57348: 592, // underscoreCS (710x) - 58046: 593, // builtinCount (709x) - 57355: 594, // pipes (709x) - 33: 595, // '!' (708x) - 126: 596, // '~' (708x) - 58047: 597, // builtinApproxCountDistinct (708x) - 58048: 598, // builtinApproxPercentile (708x) - 58042: 599, // builtinBitAnd (708x) - 58043: 600, // builtinBitOr (708x) - 58044: 601, // builtinBitXor (708x) - 58045: 602, // builtinCast (708x) - 58049: 603, // builtinCurDate (708x) - 58050: 604, // builtinCurTime (708x) - 58051: 605, // builtinDateAdd (708x) - 58052: 606, // builtinDateSub (708x) - 58053: 607, // builtinExtract (708x) - 58054: 608, // builtinGroupConcat (708x) - 58055: 609, // builtinMax (708x) - 58056: 610, // builtinMin (708x) - 58058: 611, // builtinPosition (708x) - 58062: 612, // builtinStddevPop (708x) - 58063: 613, // builtinStddevSamp (708x) - 58059: 614, // builtinSubstring (708x) - 58060: 615, // builtinSum (708x) - 58061: 616, // builtinSysDate (708x) - 58064: 617, // builtinTranslate (708x) - 58065: 618, // builtinTrim (708x) - 58066: 619, // builtinUser (708x) - 58067: 620, // builtinVarPop (708x) - 58068: 621, // builtinVarSamp (708x) - 57374: 622, // caseKwd (708x) - 57385: 623, // cumeDist (708x) - 57386: 624, // currentDate (708x) - 57390: 625, // currentRole (708x) - 57387: 626, // currentTime (708x) - 57401: 627, // denseRank (708x) - 57418: 628, // firstValue (708x) - 57457: 629, // lag (708x) - 57458: 630, // lastValue (708x) - 57459: 631, // lead (708x) - 57483: 632, // nthValue (708x) - 57484: 633, // ntile (708x) - 57497: 634, // percentRank (708x) - 57502: 635, // rank (708x) - 57510: 636, // repeat (708x) - 57519: 637, // rowNumber (708x) - 57534: 638, // tidbCurrentTSO (708x) - 57555: 639, // utcDate (708x) - 57557: 640, // utcTime (708x) - 57556: 641, // utcTimestamp (708x) - 57547: 642, // unique (703x) - 57381: 643, // constraint (701x) - 57506: 644, // references (698x) - 57425: 645, // generated (694x) - 57521: 646, // selectKwd (693x) - 57376: 647, // character (658x) - 57473: 648, // match (650x) - 57437: 649, // index (646x) - 57543: 650, // to (569x) - 57360: 651, // all (554x) - 46: 652, // '.' (549x) - 57362: 653, // analyze (533x) - 57551: 654, // update (523x) - 57474: 655, // maxValue (517x) - 58079: 656, // jss (515x) - 58080: 657, // juss (515x) - 57464: 658, // lines (504x) - 58075: 659, // assignmentEq (501x) - 57371: 660, // by (501x) - 58339: 661, // Identifier (499x) - 58417: 662, // NotKeywordToken (499x) - 58645: 663, // TiDBKeyword (499x) - 58655: 664, // UnReservedKeyword (499x) - 57361: 665, // alter (498x) - 57512: 666, // require (496x) - 64: 667, // '@' (491x) - 57526: 668, // sql (488x) - 57408: 669, // drop (485x) - 57373: 670, // cascade (484x) - 57503: 671, // read (484x) - 57513: 672, // restrict (484x) - 57347: 673, // asof (482x) - 57383: 674, // create (480x) - 57422: 675, // foreign (480x) - 57424: 676, // fulltext (480x) - 57561: 677, // varcharacter (478x) - 57560: 678, // varcharType (478x) - 57375: 679, // change (477x) - 57397: 680, // decimalType (477x) - 57407: 681, // doubleType (477x) - 57419: 682, // floatType (477x) - 57440: 683, // integerType (477x) - 57447: 684, // intType (477x) - 57504: 685, // realType (477x) - 57509: 686, // rename (477x) - 57567: 687, // write (477x) - 57562: 688, // varbinaryType (476x) - 57359: 689, // add (475x) - 57367: 690, // bigIntType (475x) - 57369: 691, // blobType (475x) - 57448: 692, // int1Type (475x) - 57449: 693, // int2Type (475x) - 57450: 694, // int3Type (475x) - 57451: 695, // int4Type (475x) - 57452: 696, // int8Type (475x) - 57559: 697, // long (475x) - 57470: 698, // longblobType (475x) - 57471: 699, // longtextType (475x) - 57475: 700, // mediumblobType (475x) - 57476: 701, // mediumIntType (475x) - 57477: 702, // mediumtextType (475x) - 57486: 703, // numericType (475x) - 57489: 704, // optimize (475x) - 57524: 705, // smallIntType (475x) - 57540: 706, // tinyblobType (475x) - 57541: 707, // tinyIntType (475x) - 57542: 708, // tinytextType (475x) - 58610: 709, // SubSelect (223x) - 58664: 710, // UserVariable (181x) - 58585: 711, // SimpleIdent (180x) - 58392: 712, // Literal (178x) - 58600: 713, // StringLiteral (178x) - 58414: 714, // NextValueForSequence (177x) - 58316: 715, // FunctionCallGeneric (176x) - 58317: 716, // FunctionCallKeyword (176x) - 58318: 717, // FunctionCallNonKeyword (176x) - 58319: 718, // FunctionNameConflict (176x) - 58320: 719, // FunctionNameDateArith (176x) - 58321: 720, // FunctionNameDateArithMultiForms (176x) - 58322: 721, // FunctionNameDatetimePrecision (176x) - 58323: 722, // FunctionNameOptionalBraces (176x) - 58324: 723, // FunctionNameSequence (176x) - 58584: 724, // SimpleExpr (176x) - 58611: 725, // SumExpr (176x) - 58613: 726, // SystemVariable (176x) - 58675: 727, // Variable (176x) - 58698: 728, // WindowFuncCall (176x) - 58164: 729, // BitExpr (163x) - 58491: 730, // PredicateExpr (132x) - 58167: 731, // BoolPri (129x) - 58281: 732, // Expression (129x) - 58412: 733, // NUM (103x) - 58713: 734, // logAnd (97x) - 58714: 735, // logOr (97x) - 58271: 736, // EqOpt (75x) - 58623: 737, // TableName (75x) - 58601: 738, // StringName (56x) - 57400: 739, // deleteKwd (52x) - 57550: 740, // unsigned (47x) - 58383: 741, // LengthNum (46x) - 57495: 742, // over (45x) - 57572: 743, // zerofill (45x) - 58190: 744, // ColumnName (41x) - 57404: 745, // distinct (36x) - 57405: 746, // distinctRow (36x) - 58703: 747, // WindowingClause (35x) - 58539: 748, // SelectStmt (34x) - 58540: 749, // SelectStmtBasic (34x) - 58542: 750, // SelectStmtFromDualTable (34x) - 58543: 751, // SelectStmtFromTable (34x) - 58560: 752, // SetOprClause (34x) - 57399: 753, // delayed (33x) - 57430: 754, // highPriority (33x) - 57472: 755, // lowPriority (33x) - 58561: 756, // SetOprClauseList (33x) - 58564: 757, // SetOprStmtWithLimitOrderBy (33x) - 58565: 758, // SetOprStmtWoutLimitOrderBy (33x) - 58704: 759, // WithClause (31x) - 58552: 760, // SelectStmtWithClause (30x) - 58563: 761, // SetOprStmt (30x) - 57353: 762, // hintComment (27x) - 58371: 763, // Int64Num (26x) - 58292: 764, // FieldLen (25x) - 58456: 765, // OptWindowingClause (24x) - 58246: 766, // DeleteWithoutUsingStmt (23x) - 58462: 767, // OrderBy (23x) - 58546: 768, // SelectStmtLimit (23x) - 57527: 769, // sqlBigResult (23x) - 57528: 770, // sqlCalcFoundRows (23x) - 57529: 771, // sqlSmallResult (23x) - 58658: 772, // UpdateStmtNoWith (22x) - 58178: 773, // CharsetKw (20x) - 58368: 774, // InsertIntoStmt (20x) - 58513: 775, // ReplaceIntoStmt (20x) - 58657: 776, // UpdateStmt (20x) - 58666: 777, // Username (20x) - 58282: 778, // ExpressionList (18x) - 58245: 779, // DeleteWithUsingStmt (17x) - 58340: 780, // IfExists (17x) - 58486: 781, // PlacementPolicyOption (17x) - 57538: 782, // terminated (16x) - 58244: 783, // DeleteFromStmt (15x) - 58248: 784, // DistinctKwd (15x) - 58341: 785, // IfNotExists (15x) - 58474: 786, // PartitionNameList (15x) - 58249: 787, // DistinctOpt (14x) - 57411: 788, // enclosed (14x) - 58441: 789, // OptFieldLen (14x) - 58688: 790, // WhereClause (14x) - 58689: 791, // WhereClauseOptional (14x) - 58241: 792, // DefaultKwdOpt (13x) - 57412: 793, // escaped (13x) - 57491: 794, // optionally (13x) - 58624: 795, // TableNameList (13x) - 58647: 796, // TimestampUnit (13x) - 58280: 797, // ExprOrDefault (12x) - 58377: 798, // JoinTable (12x) - 58435: 799, // OptBinary (12x) - 57508: 800, // release (12x) - 58529: 801, // RolenameComposed (12x) - 58620: 802, // TableFactor (12x) - 58633: 803, // TableRef (12x) - 58137: 804, // AnalyzeOptionListOpt (11x) - 58311: 805, // FromOrIn (11x) - 58133: 806, // AlterTableStmt (10x) - 58179: 807, // CharsetName (10x) - 58191: 808, // ColumnNameList (10x) - 57466: 809, // load (10x) - 58418: 810, // NotSym (10x) - 57482: 811, // noWriteToBinLog (10x) - 58463: 812, // OrderByOptional (10x) - 58465: 813, // PartDefOption (10x) - 58583: 814, // SignedNum (10x) - 58646: 815, // TimeUnit (10x) - 58170: 816, // BuggyDefaultFalseDistinctOpt (9x) - 58231: 817, // DBName (9x) - 58240: 818, // DefaultFalseDistinctOpt (9x) - 58378: 819, // JoinType (9x) - 58425: 820, // NumLiteral (9x) - 58528: 821, // Rolename (9x) - 58523: 822, // RoleNameString (9x) - 58230: 823, // CrossOpt (8x) - 58272: 824, // EqOrAssignmentEq (8x) - 58279: 825, // ExplainableStmt (8x) - 58283: 826, // ExpressionListOpt (8x) - 58362: 827, // IndexPartSpecification (8x) - 58379: 828, // KeyOrIndex (8x) - 58415: 829, // NoWriteToBinLogAliasOpt (8x) - 58547: 830, // SelectStmtLimitOpt (8x) - 58678: 831, // VariableName (8x) - 58119: 832, // AllOrPartitionNameList (7x) - 58214: 833, // ConstraintKeywordOpt (7x) - 58298: 834, // FieldsOrColumns (7x) - 58309: 835, // ForceOpt (7x) - 58363: 836, // IndexPartSpecificationList (7x) - 58495: 837, // Priority (7x) - 58533: 838, // RowFormat (7x) - 58536: 839, // RowValue (7x) - 58558: 840, // SetExpr (7x) - 58569: 841, // ShowDatabaseNameOpt (7x) - 58630: 842, // TableOption (7x) - 57563: 843, // varying (7x) - 58138: 844, // AnalyzeTableStmt (6x) - 58159: 845, // BeginTransactionStmt (6x) - 58161: 846, // BindableStmt (6x) - 57380: 847, // column (6x) - 58185: 848, // ColumnDef (6x) - 58204: 849, // CommitStmt (6x) - 58233: 850, // DatabaseOption (6x) - 58236: 851, // DatabaseSym (6x) - 58274: 852, // EscapedTableRef (6x) - 58296: 853, // FieldTerminator (6x) - 57426: 854, // grant (6x) - 58345: 855, // IgnoreOptional (6x) - 58354: 856, // IndexInvisible (6x) - 58359: 857, // IndexNameList (6x) - 58365: 858, // IndexType (6x) - 58396: 859, // LoadDataStmt (6x) - 58475: 860, // PartitionNameListOpt (6x) - 58508: 861, // ReleaseSavepointStmt (6x) - 58530: 862, // RolenameList (6x) - 58532: 863, // RollbackStmt (6x) - 58537: 864, // SavepointStmt (6x) - 58568: 865, // SetStmt (6x) - 57523: 866, // show (6x) - 58628: 867, // TableOptimizerHints (6x) - 58667: 868, // UsernameList (6x) - 58705: 869, // WithClustered (6x) - 58117: 870, // AlgorithmClause (5x) - 58172: 871, // ByItem (5x) - 58184: 872, // CollationName (5x) - 58188: 873, // ColumnKeywordOpt (5x) - 58247: 874, // DirectPlacementOption (5x) - 58294: 875, // FieldOpt (5x) - 58295: 876, // FieldOpts (5x) - 58337: 877, // IdentList (5x) - 58357: 878, // IndexName (5x) - 58360: 879, // IndexOption (5x) - 58361: 880, // IndexOptionList (5x) - 57438: 881, // infile (5x) - 58388: 882, // LimitOption (5x) - 58400: 883, // LockClause (5x) - 58437: 884, // OptCharsetWithOptBinary (5x) - 58448: 885, // OptNullTreatment (5x) - 58489: 886, // PolicyName (5x) - 58496: 887, // PriorityOpt (5x) - 58538: 888, // SelectLockOpt (5x) - 58545: 889, // SelectStmtIntoOption (5x) - 58634: 890, // TableRefs (5x) - 58660: 891, // UserSpec (5x) - 58143: 892, // Assignment (4x) - 58149: 893, // AuthString (4x) - 58151: 894, // BRIEBooleanOptionName (4x) - 58152: 895, // BRIEIntegerOptionName (4x) - 58153: 896, // BRIEKeywordOptionName (4x) - 58154: 897, // BRIEOption (4x) - 58155: 898, // BRIEOptions (4x) - 58157: 899, // BRIEStringOptionName (4x) - 58173: 900, // ByList (4x) - 58177: 901, // Char (4x) - 58208: 902, // ConfigItemName (4x) - 58212: 903, // Constraint (4x) - 58305: 904, // FloatOpt (4x) - 58366: 905, // IndexTypeName (4x) - 57490: 906, // option (4x) - 58453: 907, // OptWild (4x) - 57494: 908, // outer (4x) - 58490: 909, // Precision (4x) - 58504: 910, // ReferDef (4x) - 58519: 911, // RestrictOrCascadeOpt (4x) - 58535: 912, // RowStmt (4x) - 58553: 913, // SequenceOption (4x) - 57532: 914, // statsExtended (4x) - 58615: 915, // TableAsName (4x) - 58616: 916, // TableAsNameOpt (4x) - 58627: 917, // TableNameOptWild (4x) - 58629: 918, // TableOptimizerHintsOpt (4x) - 58631: 919, // TableOptionList (4x) - 58649: 920, // TraceableStmt (4x) - 58650: 921, // TransactionChar (4x) - 58661: 922, // UserSpecList (4x) - 58699: 923, // WindowName (4x) - 58140: 924, // AsOfClause (3x) - 58144: 925, // AssignmentList (3x) - 58146: 926, // AttributesOpt (3x) - 58168: 927, // Boolean (3x) - 58197: 928, // ColumnOption (3x) - 58200: 929, // ColumnPosition (3x) - 58205: 930, // CommonTableExpr (3x) - 58226: 931, // CreateTableStmt (3x) - 58234: 932, // DatabaseOptionList (3x) - 58242: 933, // DefaultTrueDistinctOpt (3x) - 58268: 934, // EnforcedOrNot (3x) - 57414: 935, // explain (3x) - 58285: 936, // ExtendedPriv (3x) - 58325: 937, // GeneratedAlways (3x) - 58327: 938, // GlobalScope (3x) - 58331: 939, // GroupByClause (3x) - 58349: 940, // IndexHint (3x) - 58353: 941, // IndexHintType (3x) - 58358: 942, // IndexNameAndTypeOpt (3x) - 57455: 943, // keys (3x) - 58390: 944, // Lines (3x) - 58409: 945, // MaxValueOrExpression (3x) - 58419: 946, // NowSym (3x) - 58420: 947, // NowSymFunc (3x) - 58421: 948, // NowSymOptionFraction (3x) - 58449: 949, // OptOrder (3x) - 58452: 950, // OptTemporary (3x) - 58466: 951, // PartDefOptionList (3x) - 58468: 952, // PartitionDefinition (3x) - 58478: 953, // PasswordExpire (3x) - 58480: 954, // PasswordOrLockOption (3x) - 58488: 955, // PluginNameList (3x) - 58494: 956, // PrimaryOpt (3x) - 58497: 957, // PrivElem (3x) - 58499: 958, // PrivType (3x) - 57500: 959, // procedure (3x) - 58514: 960, // RequireClause (3x) - 58515: 961, // RequireClauseOpt (3x) - 58517: 962, // RequireListElement (3x) - 58531: 963, // RolenameWithoutIdent (3x) - 58524: 964, // RoleOrPrivElem (3x) - 58544: 965, // SelectStmtGroup (3x) - 58562: 966, // SetOprOpt (3x) - 58614: 967, // TableAliasRefList (3x) - 58617: 968, // TableElement (3x) - 58626: 969, // TableNameListOpt2 (3x) - 58642: 970, // TextString (3x) - 58651: 971, // TransactionChars (3x) - 57545: 972, // trigger (3x) - 57549: 973, // unlock (3x) - 57552: 974, // usage (3x) - 58671: 975, // ValuesList (3x) - 58673: 976, // ValuesStmtList (3x) - 58669: 977, // ValueSym (3x) - 58676: 978, // VariableAssignment (3x) - 58696: 979, // WindowFrameStart (3x) - 58115: 980, // AdminStmt (2x) - 58118: 981, // AllColumnsOrPredicateColumnsOpt (2x) - 58120: 982, // AlterDatabaseStmt (2x) - 58121: 983, // AlterImportStmt (2x) - 58122: 984, // AlterInstanceStmt (2x) - 58123: 985, // AlterOrderItem (2x) - 58125: 986, // AlterPolicyStmt (2x) - 58126: 987, // AlterSequenceOption (2x) - 58128: 988, // AlterSequenceStmt (2x) - 58130: 989, // AlterTableSpec (2x) - 58134: 990, // AlterUserStmt (2x) - 58135: 991, // AnalyzeOption (2x) - 58163: 992, // BinlogStmt (2x) - 58156: 993, // BRIEStmt (2x) - 58158: 994, // BRIETables (2x) - 58171: 995, // BuiltinFunction (2x) - 57372: 996, // call (2x) - 58174: 997, // CallStmt (2x) - 58175: 998, // CastType (2x) - 58176: 999, // ChangeStmt (2x) - 58182: 1000, // CheckConstraintKeyword (2x) - 58192: 1001, // ColumnNameListOpt (2x) - 58195: 1002, // ColumnNameOrUserVariable (2x) - 58198: 1003, // ColumnOptionList (2x) - 58199: 1004, // ColumnOptionListOpt (2x) - 58201: 1005, // ColumnSetValue (2x) - 58207: 1006, // CompletionTypeWithinTransaction (2x) - 58209: 1007, // ConnectionOption (2x) - 58211: 1008, // ConnectionOptions (2x) - 58215: 1009, // CreateBindingStmt (2x) - 58216: 1010, // CreateDatabaseStmt (2x) - 58217: 1011, // CreateImportStmt (2x) - 58218: 1012, // CreateIndexStmt (2x) - 58219: 1013, // CreatePolicyStmt (2x) - 58220: 1014, // CreateRoleStmt (2x) - 58222: 1015, // CreateSequenceStmt (2x) - 58223: 1016, // CreateStatisticsStmt (2x) - 58224: 1017, // CreateTableOptionListOpt (2x) - 58227: 1018, // CreateUserStmt (2x) - 58229: 1019, // CreateViewStmt (2x) - 57392: 1020, // databases (2x) - 58238: 1021, // DeallocateStmt (2x) - 58239: 1022, // DeallocateSym (2x) - 57403: 1023, // describe (2x) - 58250: 1024, // DoStmt (2x) - 58251: 1025, // DropBindingStmt (2x) - 58252: 1026, // DropDatabaseStmt (2x) - 58253: 1027, // DropImportStmt (2x) - 58254: 1028, // DropIndexStmt (2x) - 58255: 1029, // DropPolicyStmt (2x) - 58256: 1030, // DropRoleStmt (2x) - 58257: 1031, // DropSequenceStmt (2x) - 58258: 1032, // DropStatisticsStmt (2x) - 58259: 1033, // DropStatsStmt (2x) - 58260: 1034, // DropTableStmt (2x) - 58261: 1035, // DropUserStmt (2x) - 58262: 1036, // DropViewStmt (2x) - 58264: 1037, // DuplicateOpt (2x) - 58266: 1038, // EmptyStmt (2x) - 58267: 1039, // EncryptionOpt (2x) - 58269: 1040, // EnforcedOrNotOpt (2x) - 58273: 1041, // ErrorHandling (2x) - 58275: 1042, // ExecuteStmt (2x) - 58276: 1043, // ExplainFormatType (2x) - 58277: 1044, // ExplainStmt (2x) - 58278: 1045, // ExplainSym (2x) - 58287: 1046, // Field (2x) - 58290: 1047, // FieldItem (2x) - 58297: 1048, // Fields (2x) - 58302: 1049, // FlashbackClusterStmt (2x) - 58303: 1050, // FlashbackTableStmt (2x) - 58308: 1051, // FlushStmt (2x) - 58314: 1052, // FuncDatetimePrecList (2x) - 58315: 1053, // FuncDatetimePrecListOpt (2x) - 58328: 1054, // GrantProxyStmt (2x) - 58329: 1055, // GrantRoleStmt (2x) - 58330: 1056, // GrantStmt (2x) - 58332: 1057, // HandleRange (2x) - 58334: 1058, // HashString (2x) - 58335: 1059, // HavingClause (2x) - 58336: 1060, // HelpStmt (2x) - 58348: 1061, // IndexAdviseStmt (2x) - 58350: 1062, // IndexHintList (2x) - 58351: 1063, // IndexHintListOpt (2x) - 58356: 1064, // IndexLockAndAlgorithmOpt (2x) - 58369: 1065, // InsertValues (2x) - 58374: 1066, // IntoOpt (2x) - 58380: 1067, // KeyOrIndexOpt (2x) - 57456: 1068, // kill (2x) - 58381: 1069, // KillOrKillTiDB (2x) - 58382: 1070, // KillStmt (2x) - 58387: 1071, // LimitClause (2x) - 57465: 1072, // linear (2x) - 58389: 1073, // LinearOpt (2x) - 58393: 1074, // LoadDataSetItem (2x) - 58397: 1075, // LoadStatsStmt (2x) - 58398: 1076, // LocalOpt (2x) - 58399: 1077, // LocationLabelList (2x) - 58401: 1078, // LockTablesStmt (2x) - 58410: 1079, // MaxValueOrExpressionList (2x) - 58416: 1080, // NonTransactionalDeleteStmt (2x) - 58422: 1081, // NowSymOptionFractionParentheses (2x) - 58424: 1082, // NumList (2x) - 58427: 1083, // ObjectType (2x) - 57487: 1084, // of (2x) - 58428: 1085, // OfTablesOpt (2x) - 58429: 1086, // OnCommitOpt (2x) - 58430: 1087, // OnDelete (2x) - 58433: 1088, // OnUpdate (2x) - 58438: 1089, // OptCollate (2x) - 58443: 1090, // OptFull (2x) - 58445: 1091, // OptInteger (2x) - 58458: 1092, // OptionalBraces (2x) - 58457: 1093, // OptionLevel (2x) - 58447: 1094, // OptLeadLagInfo (2x) - 58446: 1095, // OptLLDefault (2x) - 58464: 1096, // OuterOpt (2x) - 58469: 1097, // PartitionDefinitionList (2x) - 58470: 1098, // PartitionDefinitionListOpt (2x) - 58471: 1099, // PartitionIntervalOpt (2x) - 58477: 1100, // PartitionOpt (2x) - 58479: 1101, // PasswordOpt (2x) - 58481: 1102, // PasswordOrLockOptionList (2x) - 58482: 1103, // PasswordOrLockOptions (2x) - 58485: 1104, // PlacementOptionList (2x) - 58487: 1105, // PlanReplayerStmt (2x) - 58493: 1106, // PreparedStmt (2x) - 58498: 1107, // PrivLevel (2x) - 58501: 1108, // PurgeImportStmt (2x) - 58502: 1109, // QuickOptional (2x) - 58503: 1110, // RecoverTableStmt (2x) - 58505: 1111, // ReferOpt (2x) - 58507: 1112, // RegexpSym (2x) - 58509: 1113, // RenameTableStmt (2x) - 58510: 1114, // RenameUserStmt (2x) - 58512: 1115, // RepeatableOpt (2x) - 58518: 1116, // RestartStmt (2x) - 58520: 1117, // ResumeImportStmt (2x) - 57514: 1118, // revoke (2x) - 58521: 1119, // RevokeRoleStmt (2x) - 58522: 1120, // RevokeStmt (2x) - 58525: 1121, // RoleOrPrivElemList (2x) - 58526: 1122, // RoleSpec (2x) - 58548: 1123, // SelectStmtOpt (2x) - 58551: 1124, // SelectStmtSQLCache (2x) - 58555: 1125, // SetBindingStmt (2x) - 58556: 1126, // SetDefaultRoleOpt (2x) - 58557: 1127, // SetDefaultRoleStmt (2x) - 58567: 1128, // SetRoleStmt (2x) - 58570: 1129, // ShowImportStmt (2x) - 58575: 1130, // ShowProfileType (2x) - 58578: 1131, // ShowStmt (2x) - 58579: 1132, // ShowTableAliasOpt (2x) - 58581: 1133, // ShutdownStmt (2x) - 58582: 1134, // SignedLiteral (2x) - 58586: 1135, // SplitOption (2x) - 58587: 1136, // SplitRegionStmt (2x) - 58591: 1137, // Statement (2x) - 58594: 1138, // StatsOptionsOpt (2x) - 58595: 1139, // StatsPersistentVal (2x) - 58596: 1140, // StatsType (2x) - 58597: 1141, // StopImportStmt (2x) - 58604: 1142, // SubPartDefinition (2x) - 58607: 1143, // SubPartitionMethod (2x) - 58612: 1144, // Symbol (2x) - 58618: 1145, // TableElementList (2x) - 58621: 1146, // TableLock (2x) - 58625: 1147, // TableNameListOpt (2x) - 58632: 1148, // TableOrTables (2x) - 58641: 1149, // TablesTerminalSym (2x) - 58639: 1150, // TableToTable (2x) - 58643: 1151, // TextStringList (2x) - 58648: 1152, // TraceStmt (2x) - 58653: 1153, // TruncateTableStmt (2x) - 58656: 1154, // UnlockTablesStmt (2x) - 58662: 1155, // UserToUser (2x) - 58659: 1156, // UseStmt (2x) - 58674: 1157, // Varchar (2x) - 58677: 1158, // VariableAssignmentList (2x) - 58686: 1159, // WhenClause (2x) - 58691: 1160, // WindowDefinition (2x) - 58694: 1161, // WindowFrameBound (2x) - 58701: 1162, // WindowSpec (2x) - 58706: 1163, // WithGrantOptionOpt (2x) - 58707: 1164, // WithList (2x) - 58711: 1165, // Writeable (2x) - 58114: 1166, // AdminShowSlow (1x) - 58116: 1167, // AdminStmtLimitOpt (1x) - 58124: 1168, // AlterOrderList (1x) - 58127: 1169, // AlterSequenceOptionList (1x) - 58129: 1170, // AlterTablePartitionOpt (1x) - 58131: 1171, // AlterTableSpecList (1x) - 58132: 1172, // AlterTableSpecListOpt (1x) - 58136: 1173, // AnalyzeOptionList (1x) - 58139: 1174, // AnyOrAll (1x) - 58141: 1175, // AsOfClauseOpt (1x) - 58142: 1176, // AsOpt (1x) - 58147: 1177, // AuthOption (1x) - 58148: 1178, // AuthPlugin (1x) - 58150: 1179, // AutoRandomOpt (1x) - 58160: 1180, // BetweenOrNotOp (1x) - 58162: 1181, // BindingStatusType (1x) - 58165: 1182, // BitValueType (1x) - 58166: 1183, // BlobType (1x) - 58169: 1184, // BooleanType (1x) - 57370: 1185, // both (1x) - 58180: 1186, // CharsetNameOrDefault (1x) - 58181: 1187, // CharsetOpt (1x) - 58183: 1188, // ClearPasswordExpireOptions (1x) - 58187: 1189, // ColumnFormat (1x) - 58189: 1190, // ColumnList (1x) - 58196: 1191, // ColumnNameOrUserVariableList (1x) - 58193: 1192, // ColumnNameOrUserVarListOpt (1x) - 58194: 1193, // ColumnNameOrUserVarListOptWithBrackets (1x) - 58202: 1194, // ColumnSetValueList (1x) - 58206: 1195, // CompareOp (1x) - 58210: 1196, // ConnectionOptionList (1x) - 58213: 1197, // ConstraintElem (1x) - 58221: 1198, // CreateSequenceOptionListOpt (1x) - 58225: 1199, // CreateTableSelectOpt (1x) - 58228: 1200, // CreateViewSelectOpt (1x) - 58235: 1201, // DatabaseOptionListOpt (1x) - 58237: 1202, // DateAndTimeType (1x) - 58232: 1203, // DBNameList (1x) - 58243: 1204, // DefaultValueExpr (1x) - 58263: 1205, // DryRunOptions (1x) - 57409: 1206, // dual (1x) - 58265: 1207, // ElseOpt (1x) - 58270: 1208, // EnforcedOrNotOrNotNullOpt (1x) - 58284: 1209, // ExpressionOpt (1x) - 58286: 1210, // FetchFirstOpt (1x) - 58288: 1211, // FieldAsName (1x) - 58289: 1212, // FieldAsNameOpt (1x) - 58291: 1213, // FieldItemList (1x) - 58293: 1214, // FieldList (1x) - 58299: 1215, // FirstAndLastPartOpt (1x) - 58300: 1216, // FirstOrNext (1x) - 58301: 1217, // FixedPointType (1x) - 58304: 1218, // FlashbackToNewName (1x) - 58306: 1219, // FloatingPointType (1x) - 58307: 1220, // FlushOption (1x) - 58310: 1221, // FromDual (1x) - 58312: 1222, // FulltextSearchModifierOpt (1x) - 58313: 1223, // FuncDatetimePrec (1x) - 58326: 1224, // GetFormatSelector (1x) - 58333: 1225, // HandleRangeList (1x) - 58338: 1226, // IdentListWithParenOpt (1x) - 58342: 1227, // IfNotRunning (1x) - 58343: 1228, // IfRunning (1x) - 58344: 1229, // IgnoreLines (1x) - 58346: 1230, // ImportTruncate (1x) - 58352: 1231, // IndexHintScope (1x) - 58355: 1232, // IndexKeyTypeOpt (1x) - 58364: 1233, // IndexPartSpecificationListOpt (1x) - 58367: 1234, // IndexTypeOpt (1x) - 58347: 1235, // InOrNotOp (1x) - 58370: 1236, // InstanceOption (1x) - 58372: 1237, // IntegerType (1x) - 58373: 1238, // IntervalExpr (1x) - 58376: 1239, // IsolationLevel (1x) - 58375: 1240, // IsOrNotOp (1x) - 57460: 1241, // leading (1x) - 58384: 1242, // LikeEscapeOpt (1x) - 58385: 1243, // LikeOrNotOp (1x) - 58386: 1244, // LikeTableWithOrWithoutParen (1x) - 58391: 1245, // LinesTerminated (1x) - 58394: 1246, // LoadDataSetList (1x) - 58395: 1247, // LoadDataSetSpecOpt (1x) - 58402: 1248, // LockType (1x) - 58403: 1249, // LogTypeOpt (1x) - 58404: 1250, // Match (1x) - 58405: 1251, // MatchOpt (1x) - 58406: 1252, // MaxIndexNumOpt (1x) - 58407: 1253, // MaxMinutesOpt (1x) - 58408: 1254, // MaxValPartOpt (1x) - 58411: 1255, // NChar (1x) - 58423: 1256, // NullPartOpt (1x) - 58426: 1257, // NumericType (1x) - 58413: 1258, // NVarchar (1x) - 58431: 1259, // OnDeleteUpdateOpt (1x) - 58432: 1260, // OnDuplicateKeyUpdate (1x) - 58434: 1261, // OptBinMod (1x) - 58436: 1262, // OptCharset (1x) - 58439: 1263, // OptErrors (1x) - 58440: 1264, // OptExistingWindowName (1x) - 58442: 1265, // OptFromFirstLast (1x) - 58444: 1266, // OptGConcatSeparator (1x) - 58459: 1267, // OptionalShardColumn (1x) - 58450: 1268, // OptPartitionClause (1x) - 58451: 1269, // OptTable (1x) - 58454: 1270, // OptWindowFrameClause (1x) - 58455: 1271, // OptWindowOrderByClause (1x) - 58461: 1272, // Order (1x) - 58460: 1273, // OrReplace (1x) - 57444: 1274, // outfile (1x) - 58467: 1275, // PartDefValuesOpt (1x) - 58472: 1276, // PartitionKeyAlgorithmOpt (1x) - 58473: 1277, // PartitionMethod (1x) - 58476: 1278, // PartitionNumOpt (1x) - 58483: 1279, // PerDB (1x) - 58484: 1280, // PerTable (1x) - 57498: 1281, // precisionType (1x) - 58492: 1282, // PrepareSQL (1x) - 58500: 1283, // ProcedureCall (1x) - 57505: 1284, // recursive (1x) - 58506: 1285, // RegexpOrNotOp (1x) - 58511: 1286, // ReorganizePartitionRuleOpt (1x) - 58516: 1287, // RequireList (1x) - 58527: 1288, // RoleSpecList (1x) - 58534: 1289, // RowOrRows (1x) - 58541: 1290, // SelectStmtFieldList (1x) - 58549: 1291, // SelectStmtOpts (1x) - 58550: 1292, // SelectStmtOptsList (1x) - 58554: 1293, // SequenceOptionList (1x) - 58559: 1294, // SetOpr (1x) - 58566: 1295, // SetRoleOpt (1x) - 58571: 1296, // ShowIndexKwd (1x) - 58572: 1297, // ShowLikeOrWhereOpt (1x) - 58573: 1298, // ShowPlacementTarget (1x) - 58574: 1299, // ShowProfileArgsOpt (1x) - 58576: 1300, // ShowProfileTypes (1x) - 58577: 1301, // ShowProfileTypesOpt (1x) - 58580: 1302, // ShowTargetFilterable (1x) - 57525: 1303, // spatial (1x) - 58588: 1304, // SplitSyntaxOption (1x) - 57530: 1305, // ssl (1x) - 58589: 1306, // Start (1x) - 58590: 1307, // Starting (1x) - 57531: 1308, // starting (1x) - 58592: 1309, // StatementList (1x) - 58593: 1310, // StatementScope (1x) - 58598: 1311, // StorageMedia (1x) - 57537: 1312, // stored (1x) - 58599: 1313, // StringList (1x) - 58602: 1314, // StringNameOrBRIEOptionKeyword (1x) - 58603: 1315, // StringType (1x) - 58605: 1316, // SubPartDefinitionList (1x) - 58606: 1317, // SubPartDefinitionListOpt (1x) - 58608: 1318, // SubPartitionNumOpt (1x) - 58609: 1319, // SubPartitionOpt (1x) - 58619: 1320, // TableElementListOpt (1x) - 58622: 1321, // TableLockList (1x) - 58635: 1322, // TableRefsClause (1x) - 58636: 1323, // TableSampleMethodOpt (1x) - 58637: 1324, // TableSampleOpt (1x) - 58638: 1325, // TableSampleUnitOpt (1x) - 58640: 1326, // TableToTableList (1x) - 58644: 1327, // TextType (1x) - 57544: 1328, // trailing (1x) - 58652: 1329, // TrimDirection (1x) - 58654: 1330, // Type (1x) - 58663: 1331, // UserToUserList (1x) - 58665: 1332, // UserVariableList (1x) - 58668: 1333, // UsingRoles (1x) - 58670: 1334, // Values (1x) - 58672: 1335, // ValuesOpt (1x) - 58679: 1336, // ViewAlgorithm (1x) - 58680: 1337, // ViewCheckOption (1x) - 58681: 1338, // ViewDefiner (1x) - 58682: 1339, // ViewFieldList (1x) - 58683: 1340, // ViewName (1x) - 58684: 1341, // ViewSQLSecurity (1x) - 57564: 1342, // virtual (1x) - 58685: 1343, // VirtualOrStored (1x) - 58687: 1344, // WhenClauseList (1x) - 58690: 1345, // WindowClauseOptional (1x) - 58692: 1346, // WindowDefinitionList (1x) - 58693: 1347, // WindowFrameBetween (1x) - 58695: 1348, // WindowFrameExtent (1x) - 58697: 1349, // WindowFrameUnits (1x) - 58700: 1350, // WindowNameOrSpec (1x) - 58702: 1351, // WindowSpecDetails (1x) - 58708: 1352, // WithReadLockOpt (1x) - 58709: 1353, // WithValidation (1x) - 58710: 1354, // WithValidationOpt (1x) - 58712: 1355, // Year (1x) - 58113: 1356, // $default (0x) - 58074: 1357, // andnot (0x) - 58145: 1358, // AssignmentListOpt (0x) - 58186: 1359, // ColumnDefList (0x) - 58203: 1360, // CommaOpt (0x) - 58097: 1361, // createTableSelect (0x) - 58088: 1362, // empty (0x) - 57345: 1363, // error (0x) - 58112: 1364, // higherThanComma (0x) - 58106: 1365, // higherThanParenthese (0x) - 58095: 1366, // insertValues (0x) - 57352: 1367, // invalid (0x) - 58098: 1368, // lowerThanCharsetKwd (0x) - 58111: 1369, // lowerThanComma (0x) - 58096: 1370, // lowerThanCreateTableSelect (0x) - 58108: 1371, // lowerThanEq (0x) - 58103: 1372, // lowerThanFunction (0x) - 58094: 1373, // lowerThanInsertValues (0x) - 58099: 1374, // lowerThanKey (0x) - 58100: 1375, // lowerThanLocal (0x) - 58110: 1376, // lowerThanNot (0x) - 58107: 1377, // lowerThanOn (0x) - 58105: 1378, // lowerThanParenthese (0x) - 58101: 1379, // lowerThanRemove (0x) - 58089: 1380, // lowerThanSelectOpt (0x) - 58093: 1381, // lowerThanSelectStmt (0x) - 58092: 1382, // lowerThanSetKeyword (0x) - 58091: 1383, // lowerThanStringLitToken (0x) - 58090: 1384, // lowerThanValueKeyword (0x) - 58102: 1385, // lowerThenOrder (0x) - 58109: 1386, // neg (0x) - 57356: 1387, // odbcDateType (0x) - 57358: 1388, // odbcTimestampType (0x) - 57357: 1389, // odbcTimeType (0x) - 58104: 1390, // tableRefPriority (0x) + 57344: 0, // $end (2266x) + 59: 1, // ';' (2265x) + 58041: 2, // split (1878x) + 57744: 3, // merge (1877x) + 57809: 4, // remove (1876x) + 57810: 5, // reorganize (1876x) + 57629: 6, // comment (1866x) + 57872: 7, // storage (1784x) + 57592: 8, // autoIncrement (1773x) + 44: 9, // ',' (1688x) + 57689: 10, // first (1675x) + 57578: 11, // after (1669x) + 57839: 12, // serial (1665x) + 57593: 13, // autoRandom (1664x) + 57626: 14, // columnFormat (1664x) + 57782: 15, // password (1633x) + 57617: 16, // charsetKwd (1630x) + 57619: 17, // checksum (1618x) + 57957: 18, // placement (1616x) + 57721: 19, // keyBlockSize (1600x) + 57884: 20, // tablespace (1597x) + 57669: 21, // encryption (1595x) + 57672: 22, // engine (1592x) + 57652: 23, // data (1590x) + 57712: 24, // insertMethod (1588x) + 57739: 25, // maxRows (1588x) + 57746: 26, // minRows (1588x) + 57761: 27, // nodegroup (1588x) + 57636: 28, // connection (1580x) + 57594: 29, // autoRandomBase (1577x) + 58031: 30, // statsBuckets (1575x) + 58033: 31, // statsTopN (1575x) + 57591: 32, // autoIdCache (1574x) + 57596: 33, // avgRowLength (1574x) + 57634: 34, // compression (1574x) + 57658: 35, // delayKeyWrite (1574x) + 57776: 36, // packKeys (1574x) + 57789: 37, // preSplitRegions (1574x) + 57827: 38, // rowFormat (1574x) + 57832: 39, // secondaryEngine (1574x) + 57843: 40, // shardRowIDBits (1574x) + 57868: 41, // statsAutoRecalc (1574x) + 57589: 42, // statsColChoice (1574x) + 57590: 43, // statsColList (1574x) + 57869: 44, // statsPersistent (1574x) + 57870: 45, // statsSamplePages (1574x) + 57588: 46, // statsSampleRate (1574x) + 57882: 47, // tableChecksum (1574x) + 57585: 48, // attribute (1523x) + 57575: 49, // account (1521x) + 41: 50, // ')' (1514x) + 57821: 51, // resume (1510x) + 57847: 52, // signed (1510x) + 57853: 53, // snapshot (1509x) + 57597: 54, // backend (1508x) + 57618: 55, // checkpoint (1508x) + 57635: 56, // concurrency (1508x) + 57641: 57, // csvBackslashEscape (1508x) + 57642: 58, // csvDelimiter (1508x) + 57643: 59, // csvHeader (1508x) + 57644: 60, // csvNotNull (1508x) + 57645: 61, // csvNull (1508x) + 57646: 62, // csvSeparator (1508x) + 57647: 63, // csvTrimLastSeparators (1508x) + 57725: 64, // lastBackup (1508x) + 57771: 65, // onDuplicate (1508x) + 57772: 66, // online (1508x) + 57804: 67, // rateLimit (1508x) + 57836: 68, // sendCredentialsToTiKV (1508x) + 57850: 69, // skipSchemaFiles (1508x) + 57873: 70, // strictFormat (1508x) + 57889: 71, // tikvImporter (1508x) + 57898: 72, // truncate (1505x) + 57758: 73, // no (1504x) + 57867: 74, // start (1502x) + 57612: 75, // cache (1499x) + 57759: 76, // nocache (1498x) + 57651: 77, // cycle (1497x) + 57748: 78, // minValue (1497x) + 57709: 79, // increment (1496x) + 57760: 80, // nocycle (1496x) + 57762: 81, // nomaxvalue (1496x) + 57763: 82, // nominvalue (1496x) + 57818: 83, // restart (1494x) + 57581: 84, // algorithm (1493x) + 57893: 85, // tp (1493x) + 57650: 86, // clustered (1492x) + 57714: 87, // invisible (1492x) + 57764: 88, // nonclustered (1492x) + 58044: 89, // regions (1492x) + 57909: 90, // visible (1492x) + 57875: 91, // subpartition (1489x) + 57781: 92, // partitions (1488x) + 57927: 93, // constraints (1485x) + 57938: 94, // followerConstraints (1485x) + 57939: 95, // followers (1485x) + 57949: 96, // leaderConstraints (1485x) + 57951: 97, // learnerConstraints (1485x) + 57952: 98, // learners (1485x) + 57962: 99, // primaryRegion (1485x) + 57967: 100, // schedule (1485x) + 58000: 101, // voterConstraints (1485x) + 58001: 102, // voters (1485x) + 57627: 103, // columns (1484x) + 57908: 104, // view (1484x) + 57915: 105, // yearType (1481x) + 57655: 106, // day (1480x) + 57584: 107, // ascii (1479x) + 57611: 108, // byteType (1479x) + 57831: 109, // second (1479x) + 57866: 110, // sqlTsiYear (1479x) + 57902: 111, // unicodeSym (1479x) + 57687: 112, // fields (1478x) + 57704: 113, // hour (1478x) + 57745: 114, // microsecond (1478x) + 57747: 115, // minute (1478x) + 57751: 116, // month (1478x) + 57800: 117, // quarter (1478x) + 57859: 118, // sqlTsiDay (1478x) + 57860: 119, // sqlTsiHour (1478x) + 57861: 120, // sqlTsiMinute (1478x) + 57862: 121, // sqlTsiMonth (1478x) + 57863: 122, // sqlTsiQuarter (1478x) + 57864: 123, // sqlTsiSecond (1478x) + 57865: 124, // sqlTsiWeek (1478x) + 57911: 125, // week (1478x) + 57883: 126, // tables (1477x) + 57871: 127, // status (1476x) + 57837: 128, // separator (1475x) + 57620: 129, // cipher (1474x) + 57346: 130, // identifier (1474x) + 57719: 131, // issuer (1474x) + 57737: 132, // maxConnectionsPerHour (1474x) + 57738: 133, // maxQueriesPerHour (1474x) + 57740: 134, // maxUpdatesPerHour (1474x) + 57741: 135, // maxUserConnections (1474x) + 57790: 136, // preceding (1474x) + 57829: 137, // san (1474x) + 57874: 138, // subject (1474x) + 57892: 139, // tokenIssuer (1474x) + 57707: 140, // importKwd (1473x) + 57730: 141, // local (1473x) + 57802: 142, // query (1472x) + 57849: 143, // skip (1472x) + 57604: 144, // bindings (1471x) + 57657: 145, // definer (1471x) + 57699: 146, // hash (1471x) + 57705: 147, // identified (1471x) + 57733: 148, // logs (1471x) + 57817: 149, // respect (1471x) + 57630: 150, // commit (1470x) + 57648: 151, // current (1470x) + 57671: 152, // enforced (1470x) + 57692: 153, // following (1470x) + 57727: 154, // less (1470x) + 57766: 155, // nowait (1470x) + 57773: 156, // only (1470x) + 57824: 157, // rollback (1470x) + 57830: 158, // savepoint (1470x) + 57888: 159, // than (1470x) + 57906: 160, // value (1470x) + 57600: 161, // begin (1469x) + 57602: 162, // binding (1469x) + 57670: 163, // end (1469x) + 57697: 164, // global (1469x) + 57942: 165, // next_row_id (1469x) + 57770: 166, // offset (1469x) + 57788: 167, // policy (1469x) + 57961: 168, // predicate (1469x) + 57885: 169, // temporary (1469x) + 58039: 170, // tiFlash (1469x) + 57899: 171, // unbounded (1469x) + 57904: 172, // user (1469x) + 57720: 173, // jsonType (1468x) + 57959: 174, // planCache (1468x) + 57791: 175, // prepare (1468x) + 57823: 176, // role (1468x) + 57903: 177, // unknown (1468x) + 57916: 178, // wait (1468x) + 57610: 179, // btree (1467x) + 57653: 180, // datetimeType (1467x) + 57654: 181, // dateType (1467x) + 57690: 182, // fixed (1467x) + 57706: 183, // identSQLErrors (1467x) + 57718: 184, // isolation (1467x) + 57724: 185, // last (1467x) + 57732: 186, // location (1467x) + 57735: 187, // max_idxnum (1467x) + 57743: 188, // memory (1467x) + 57769: 189, // off (1467x) + 57775: 190, // optional (1467x) + 57784: 191, // per_db (1467x) + 57793: 192, // privileges (1467x) + 57813: 193, // replica (1467x) + 57816: 194, // required (1467x) + 57828: 195, // rtree (1467x) + 57965: 196, // running (1467x) + 58025: 197, // sampleRate (1467x) + 57838: 198, // sequence (1467x) + 57841: 199, // session (1467x) + 57852: 200, // slow (1467x) + 58028: 201, // stats (1467x) + 57891: 202, // timeType (1467x) + 57905: 203, // validation (1467x) + 57907: 204, // variables (1467x) + 57586: 205, // attributes (1466x) + 57632: 206, // compact (1466x) + 57660: 207, // disable (1466x) + 57665: 208, // duplicate (1466x) + 57666: 209, // dynamic (1466x) + 57667: 210, // enable (1466x) + 57675: 211, // errorKwd (1466x) + 57691: 212, // flush (1466x) + 57694: 213, // full (1466x) + 57742: 214, // mb (1466x) + 57749: 215, // mode (1466x) + 57755: 216, // never (1466x) + 57958: 217, // plan (1466x) + 57787: 218, // plugins (1466x) + 57795: 219, // processlist (1466x) + 57806: 220, // recover (1466x) + 57811: 221, // repair (1466x) + 57812: 222, // repeatable (1466x) + 58027: 223, // statistics (1466x) + 57876: 224, // subpartitions (1466x) + 58038: 225, // tidb (1466x) + 57890: 226, // timestampType (1466x) + 57913: 227, // without (1466x) + 58002: 228, // admin (1465x) + 57598: 229, // backup (1465x) + 58003: 230, // batch (1465x) + 57605: 231, // binlog (1465x) + 57607: 232, // block (1465x) + 57608: 233, // booleanType (1465x) + 57924: 234, // briefType (1465x) + 58004: 235, // buckets (1465x) + 58007: 236, // cardinality (1465x) + 57616: 237, // chain (1465x) + 57623: 238, // clientErrorsSummary (1465x) + 58008: 239, // cmSketch (1465x) + 57624: 240, // coalesce (1465x) + 57633: 241, // compressed (1465x) + 57639: 242, // context (1465x) + 57926: 243, // copyKwd (1465x) + 58010: 244, // correlation (1465x) + 57640: 245, // cpu (1465x) + 57656: 246, // deallocate (1465x) + 58012: 247, // dependency (1465x) + 57659: 248, // directory (1465x) + 57662: 249, // discard (1465x) + 57663: 250, // disk (1465x) + 57664: 251, // do (1465x) + 57931: 252, // dotType (1465x) + 58014: 253, // drainer (1465x) + 58015: 254, // dry (1465x) + 57680: 255, // exchange (1465x) + 57682: 256, // execute (1465x) + 57683: 257, // expansion (1465x) + 57936: 258, // flashback (1465x) + 57693: 259, // format (1465x) + 57696: 260, // general (1465x) + 57700: 261, // help (1465x) + 57701: 262, // histogram (1465x) + 57703: 263, // hosts (1465x) + 57943: 264, // inplace (1465x) + 57713: 265, // instance (1465x) + 57944: 266, // instant (1465x) + 57717: 267, // ipc (1465x) + 58017: 268, // job (1465x) + 58016: 269, // jobs (1465x) + 57722: 270, // labels (1465x) + 57731: 271, // locked (1465x) + 57750: 272, // modify (1465x) + 57756: 273, // next (1465x) + 58018: 274, // nodeID (1465x) + 58019: 275, // nodeState (1465x) + 57768: 276, // nulls (1465x) + 57777: 277, // pageSym (1465x) + 58022: 278, // pump (1465x) + 57799: 279, // purge (1465x) + 57805: 280, // rebuild (1465x) + 57807: 281, // redundant (1465x) + 57808: 282, // reload (1465x) + 57819: 283, // restore (1465x) + 57825: 284, // routine (1465x) + 57966: 285, // s3 (1465x) + 58024: 286, // samples (1465x) + 57833: 287, // secondaryLoad (1465x) + 57834: 288, // secondaryUnload (1465x) + 57844: 289, // share (1465x) + 57846: 290, // shutdown (1465x) + 57855: 291, // source (1465x) + 57587: 292, // statsOptions (1465x) + 57973: 293, // stop (1465x) + 57878: 294, // swaps (1465x) + 57983: 295, // tokudbDefault (1465x) + 57984: 296, // tokudbFast (1465x) + 57985: 297, // tokudbLzma (1465x) + 57986: 298, // tokudbQuickLZ (1465x) + 57988: 299, // tokudbSmall (1465x) + 57987: 300, // tokudbSnappy (1465x) + 57989: 301, // tokudbUncompressed (1465x) + 57990: 302, // tokudbZlib (1465x) + 57991: 303, // tokudbZstd (1465x) + 58040: 304, // topn (1465x) + 57894: 305, // trace (1465x) + 57895: 306, // traditional (1465x) + 57998: 307, // trueCardCost (1465x) + 57997: 308, // verboseType (1465x) + 57910: 309, // warnings (1465x) + 57576: 310, // action (1464x) + 57577: 311, // advise (1464x) + 57579: 312, // against (1464x) + 57580: 313, // ago (1464x) + 57582: 314, // always (1464x) + 57599: 315, // backups (1464x) + 57601: 316, // bernoulli (1464x) + 57603: 317, // bindingCache (1464x) + 57606: 318, // bitType (1464x) + 57609: 319, // boolType (1464x) + 58005: 320, // builtins (1464x) + 58006: 321, // cancel (1464x) + 57613: 322, // capture (1464x) + 57614: 323, // cascaded (1464x) + 57615: 324, // causal (1464x) + 57621: 325, // cleanup (1464x) + 57622: 326, // client (1464x) + 57649: 327, // cluster (1464x) + 57625: 328, // collation (1464x) + 58009: 329, // columnStatsUsage (1464x) + 57631: 330, // committed (1464x) + 57628: 331, // config (1464x) + 57637: 332, // consistency (1464x) + 57638: 333, // consistent (1464x) + 58011: 334, // ddl (1464x) + 58013: 335, // depth (1464x) + 57661: 336, // disabled (1464x) + 57932: 337, // dump (1464x) + 57668: 338, // enabled (1464x) + 57673: 339, // engines (1464x) + 57674: 340, // enum (1464x) + 57678: 341, // events (1464x) + 57679: 342, // evolve (1464x) + 57684: 343, // expire (1464x) + 57934: 344, // exprPushdownBlacklist (1464x) + 57685: 345, // extended (1464x) + 57686: 346, // faultsSym (1464x) + 57695: 347, // function (1464x) + 57698: 348, // grants (1464x) + 58035: 349, // histogramsInFlight (1464x) + 57702: 350, // history (1464x) + 57708: 351, // imports (1464x) + 57710: 352, // incremental (1464x) + 57711: 353, // indexes (1464x) + 57945: 354, // internal (1464x) + 57715: 355, // invoker (1464x) + 57716: 356, // io (1464x) + 57723: 357, // language (1464x) + 57728: 358, // level (1464x) + 57729: 359, // list (1464x) + 57734: 360, // master (1464x) + 57736: 361, // max_minutes (1464x) + 57753: 362, // national (1464x) + 57754: 363, // ncharType (1464x) + 57757: 364, // nextval (1464x) + 57765: 365, // none (1464x) + 57767: 366, // nvarcharType (1464x) + 57774: 367, // open (1464x) + 58020: 368, // optimistic (1464x) + 57956: 369, // optRuleBlacklist (1464x) + 57778: 370, // parser (1464x) + 57779: 371, // partial (1464x) + 57780: 372, // partitioning (1464x) + 57785: 373, // per_table (1464x) + 57783: 374, // percent (1464x) + 58021: 375, // pessimistic (1464x) + 57792: 376, // preserve (1464x) + 57796: 377, // profile (1464x) + 57797: 378, // profiles (1464x) + 57801: 379, // queries (1464x) + 57963: 380, // recent (1464x) + 58045: 381, // region (1464x) + 57964: 382, // replayer (1464x) + 58043: 383, // reset (1464x) + 57820: 384, // restores (1464x) + 58023: 385, // run (1464x) + 57835: 386, // security (1464x) + 57840: 387, // serializable (1464x) + 58026: 388, // sessionStates (1464x) + 57848: 389, // simple (1464x) + 57851: 390, // slave (1464x) + 58032: 391, // statsHealthy (1464x) + 58030: 392, // statsHistograms (1464x) + 58034: 393, // statsLocked (1464x) + 58029: 394, // statsMeta (1464x) + 57974: 395, // strict (1464x) + 57879: 396, // switchesSym (1464x) + 57880: 397, // system (1464x) + 57881: 398, // systemTime (1464x) + 57979: 399, // target (1464x) + 58037: 400, // telemetryID (1464x) + 57886: 401, // temptable (1464x) + 57887: 402, // textType (1464x) + 57982: 403, // tls (1464x) + 57992: 404, // top (1464x) + 57896: 405, // transaction (1464x) + 57897: 406, // triggers (1464x) + 57900: 407, // uncommitted (1464x) + 57901: 408, // undefined (1464x) + 58042: 409, // width (1464x) + 57914: 410, // x509 (1464x) + 57917: 411, // addDate (1463x) + 57583: 412, // any (1463x) + 57918: 413, // approxCountDistinct (1463x) + 57919: 414, // approxPercentile (1463x) + 57595: 415, // avg (1463x) + 57920: 416, // bitAnd (1463x) + 57921: 417, // bitOr (1463x) + 57922: 418, // bitXor (1463x) + 57923: 419, // bound (1463x) + 57925: 420, // cast (1463x) + 57928: 421, // curTime (1463x) + 57929: 422, // dateAdd (1463x) + 57930: 423, // dateSub (1463x) + 57676: 424, // escape (1463x) + 57677: 425, // event (1463x) + 57933: 426, // exact (1463x) + 57681: 427, // exclusive (1463x) + 57935: 428, // extract (1463x) + 57688: 429, // file (1463x) + 57937: 430, // follower (1463x) + 57940: 431, // getFormat (1463x) + 57941: 432, // groupConcat (1463x) + 57946: 433, // jsonArrayagg (1463x) + 57947: 434, // jsonObjectAgg (1463x) + 57726: 435, // lastval (1463x) + 57948: 436, // leader (1463x) + 57950: 437, // learner (1463x) + 57954: 438, // max (1463x) + 57953: 439, // min (1463x) + 57752: 440, // names (1463x) + 57955: 441, // now (1463x) + 57960: 442, // position (1463x) + 57794: 443, // process (1463x) + 57798: 444, // proxy (1463x) + 57803: 445, // quick (1463x) + 57814: 446, // replicas (1463x) + 57815: 447, // replication (1463x) + 57822: 448, // reverse (1463x) + 57826: 449, // rowCount (1463x) + 57842: 450, // setval (1463x) + 57845: 451, // shared (1463x) + 57854: 452, // some (1463x) + 57856: 453, // sqlBufferResult (1463x) + 57857: 454, // sqlCache (1463x) + 57858: 455, // sqlNoCache (1463x) + 57968: 456, // staleness (1463x) + 57969: 457, // std (1463x) + 57970: 458, // stddev (1463x) + 57971: 459, // stddevPop (1463x) + 57972: 460, // stddevSamp (1463x) + 57975: 461, // strong (1463x) + 57976: 462, // subDate (1463x) + 57978: 463, // substring (1463x) + 57977: 464, // sum (1463x) + 57877: 465, // super (1463x) + 58036: 466, // telemetry (1463x) + 57980: 467, // timestampAdd (1463x) + 57981: 468, // timestampDiff (1463x) + 57993: 469, // trim (1463x) + 57994: 470, // variance (1463x) + 57995: 471, // varPop (1463x) + 57996: 472, // varSamp (1463x) + 57999: 473, // voter (1463x) + 57912: 474, // weightString (1463x) + 57489: 475, // on (1398x) + 40: 476, // '(' (1331x) + 57570: 477, // with (1215x) + 57350: 478, // stringLit (1203x) + 58091: 479, // not2 (1195x) + 57482: 480, // not (1132x) + 57365: 481, // as (1109x) + 57399: 482, // defaultKwd (1103x) + 57549: 483, // union (1061x) + 57555: 484, // using (1054x) + 57462: 485, // left (1049x) + 57516: 486, // right (1049x) + 57380: 487, // collate (1046x) + 43: 488, // '+' (1026x) + 45: 489, // '-' (1025x) + 57481: 490, // mod (1005x) + 57497: 491, // partition (965x) + 57436: 492, // ignore (960x) + 57416: 493, // except (953x) + 57442: 494, // intersect (952x) + 57486: 495, // null (950x) + 57464: 496, // limit (933x) + 57421: 497, // forKwd (930x) + 57559: 498, // values (925x) + 57444: 499, // into (923x) + 57470: 500, // lock (919x) + 57567: 501, // where (914x) + 58080: 502, // eq (911x) + 57424: 503, // from (911x) + 57418: 504, // fetch (909x) + 57494: 505, // order (905x) + 57422: 506, // force (901x) + 57512: 507, // replace (898x) + 57378: 508, // charType (897x) + 57523: 509, // set (892x) + 57364: 510, // and (891x) + 58075: 511, // intLit (887x) + 57493: 512, // or (867x) + 57355: 513, // andand (866x) + 57786: 514, // pipesAsOr (866x) + 57571: 515, // xor (866x) + 57428: 516, // group (840x) + 57430: 517, // having (840x) + 57534: 518, // straightJoin (834x) + 57569: 519, // window (826x) + 57454: 520, // join (822x) + 57463: 521, // like (815x) + 57574: 522, // natural (812x) + 42: 523, // '*' (811x) + 57385: 524, // cross (811x) + 57440: 525, // inner (811x) + 125: 526, // '}' (808x) + 57519: 527, // rows (796x) + 57554: 528, // use (792x) + 57537: 529, // tableSample (786x) + 57502: 530, // rangeKwd (785x) + 57429: 531, // groups (784x) + 57403: 532, // desc (783x) + 57369: 533, // binaryType (782x) + 57366: 534, // asc (781x) + 57394: 535, // dayHour (781x) + 57395: 536, // dayMicrosecond (781x) + 57396: 537, // dayMinute (781x) + 57397: 538, // daySecond (781x) + 57432: 539, // hourMicrosecond (781x) + 57433: 540, // hourMinute (781x) + 57434: 541, // hourSecond (781x) + 57479: 542, // minuteMicrosecond (781x) + 57480: 543, // minuteSecond (781x) + 57521: 544, // secondMicrosecond (781x) + 57572: 545, // yearMonth (781x) + 57566: 546, // when (778x) + 57437: 547, // in (776x) + 57411: 548, // elseKwd (775x) + 57540: 549, // then (772x) + 47: 550, // '/' (769x) + 37: 551, // '%' (768x) + 38: 552, // '&' (768x) + 94: 553, // '^' (768x) + 124: 554, // '|' (768x) + 57407: 555, // div (768x) + 58085: 556, // lsh (768x) + 58090: 557, // rsh (768x) + 60: 558, // '<' (765x) + 62: 559, // '>' (765x) + 58081: 560, // ge (765x) + 57446: 561, // is (765x) + 58082: 562, // le (765x) + 58086: 563, // neq (765x) + 58087: 564, // neqSynonym (765x) + 58088: 565, // nulleq (765x) + 57367: 566, // between (763x) + 57435: 567, // ifKwd (758x) + 57508: 568, // regexpKwd (755x) + 57517: 569, // rlike (755x) + 57447: 570, // insert (749x) + 57351: 571, // singleAtIdentifier (739x) + 57536: 572, // tableKwd (739x) + 57390: 573, // currentUser (735x) + 57417: 574, // falseKwd (733x) + 57547: 575, // trueKwd (733x) + 58074: 576, // decLit (727x) + 58073: 577, // floatLit (727x) + 57518: 578, // row (727x) + 58076: 579, // hexLit (725x) + 58089: 580, // paramMarker (725x) + 57443: 581, // interval (724x) + 123: 582, // '{' (723x) + 58077: 583, // bitLit (723x) + 57455: 584, // key (723x) + 57392: 585, // database (719x) + 57414: 586, // exists (718x) + 57383: 587, // convert (715x) + 58061: 588, // builtinNow (714x) + 57389: 589, // currentTs (714x) + 57352: 590, // doubleAtIdentifier (714x) + 57468: 591, // localTime (714x) + 57469: 592, // localTs (714x) + 57379: 593, // check (713x) + 57500: 594, // primary (713x) + 57349: 595, // underscoreCS (713x) + 58050: 596, // builtinCount (712x) + 57356: 597, // pipes (712x) + 33: 598, // '!' (711x) + 126: 599, // '~' (711x) + 58051: 600, // builtinApproxCountDistinct (711x) + 58052: 601, // builtinApproxPercentile (711x) + 58046: 602, // builtinBitAnd (711x) + 58047: 603, // builtinBitOr (711x) + 58048: 604, // builtinBitXor (711x) + 58049: 605, // builtinCast (711x) + 58053: 606, // builtinCurDate (711x) + 58054: 607, // builtinCurTime (711x) + 58055: 608, // builtinDateAdd (711x) + 58056: 609, // builtinDateSub (711x) + 58057: 610, // builtinExtract (711x) + 58058: 611, // builtinGroupConcat (711x) + 58059: 612, // builtinMax (711x) + 58060: 613, // builtinMin (711x) + 58062: 614, // builtinPosition (711x) + 58066: 615, // builtinStddevPop (711x) + 58067: 616, // builtinStddevSamp (711x) + 58063: 617, // builtinSubstring (711x) + 58064: 618, // builtinSum (711x) + 58065: 619, // builtinSysDate (711x) + 58068: 620, // builtinTranslate (711x) + 58069: 621, // builtinTrim (711x) + 58070: 622, // builtinUser (711x) + 58071: 623, // builtinVarPop (711x) + 58072: 624, // builtinVarSamp (711x) + 57375: 625, // caseKwd (711x) + 57386: 626, // cumeDist (711x) + 57387: 627, // currentDate (711x) + 57391: 628, // currentRole (711x) + 57388: 629, // currentTime (711x) + 57402: 630, // denseRank (711x) + 57419: 631, // firstValue (711x) + 57458: 632, // lag (711x) + 57459: 633, // lastValue (711x) + 57460: 634, // lead (711x) + 57484: 635, // nthValue (711x) + 57485: 636, // ntile (711x) + 57498: 637, // percentRank (711x) + 57503: 638, // rank (711x) + 57511: 639, // repeat (711x) + 57520: 640, // rowNumber (711x) + 57535: 641, // tidbCurrentTSO (711x) + 57556: 642, // utcDate (711x) + 57558: 643, // utcTime (711x) + 57557: 644, // utcTimestamp (711x) + 57548: 645, // unique (706x) + 57382: 646, // constraint (704x) + 57507: 647, // references (701x) + 57426: 648, // generated (697x) + 57522: 649, // selectKwd (696x) + 57377: 650, // character (661x) + 57474: 651, // match (653x) + 57438: 652, // index (649x) + 57544: 653, // to (572x) + 57361: 654, // all (557x) + 46: 655, // '.' (552x) + 57363: 656, // analyze (536x) + 57552: 657, // update (532x) + 57475: 658, // maxValue (520x) + 58083: 659, // jss (518x) + 58084: 660, // juss (518x) + 57465: 661, // lines (507x) + 58079: 662, // assignmentEq (504x) + 57372: 663, // by (504x) + 58345: 664, // Identifier (502x) + 58424: 665, // NotKeywordToken (502x) + 58653: 666, // TiDBKeyword (502x) + 58663: 667, // UnReservedKeyword (502x) + 57362: 668, // alter (501x) + 57513: 669, // require (499x) + 64: 670, // '@' (494x) + 57527: 671, // sql (491x) + 57409: 672, // drop (488x) + 57374: 673, // cascade (487x) + 57504: 674, // read (487x) + 57514: 675, // restrict (487x) + 57347: 676, // asof (485x) + 57384: 677, // create (483x) + 57423: 678, // foreign (483x) + 57425: 679, // fulltext (483x) + 57348: 680, // toTimestamp (482x) + 57562: 681, // varcharacter (481x) + 57561: 682, // varcharType (481x) + 57376: 683, // change (480x) + 57398: 684, // decimalType (480x) + 57408: 685, // doubleType (480x) + 57420: 686, // floatType (480x) + 57441: 687, // integerType (480x) + 57448: 688, // intType (480x) + 57505: 689, // realType (480x) + 57510: 690, // rename (480x) + 57568: 691, // write (480x) + 57563: 692, // varbinaryType (479x) + 57360: 693, // add (478x) + 57368: 694, // bigIntType (478x) + 57370: 695, // blobType (478x) + 57449: 696, // int1Type (478x) + 57450: 697, // int2Type (478x) + 57451: 698, // int3Type (478x) + 57452: 699, // int4Type (478x) + 57453: 700, // int8Type (478x) + 57560: 701, // long (478x) + 57471: 702, // longblobType (478x) + 57472: 703, // longtextType (478x) + 57476: 704, // mediumblobType (478x) + 57477: 705, // mediumIntType (478x) + 57478: 706, // mediumtextType (478x) + 57487: 707, // numericType (478x) + 57490: 708, // optimize (478x) + 57525: 709, // smallIntType (478x) + 57541: 710, // tinyblobType (478x) + 57542: 711, // tinyIntType (478x) + 57543: 712, // tinytextType (478x) + 58618: 713, // SubSelect (223x) + 58673: 714, // UserVariable (181x) + 58593: 715, // SimpleIdent (180x) + 58398: 716, // Literal (178x) + 58608: 717, // StringLiteral (178x) + 58421: 718, // NextValueForSequence (177x) + 58322: 719, // FunctionCallGeneric (176x) + 58323: 720, // FunctionCallKeyword (176x) + 58324: 721, // FunctionCallNonKeyword (176x) + 58325: 722, // FunctionNameConflict (176x) + 58326: 723, // FunctionNameDateArith (176x) + 58327: 724, // FunctionNameDateArithMultiForms (176x) + 58328: 725, // FunctionNameDatetimePrecision (176x) + 58329: 726, // FunctionNameOptionalBraces (176x) + 58330: 727, // FunctionNameSequence (176x) + 58592: 728, // SimpleExpr (176x) + 58619: 729, // SumExpr (176x) + 58621: 730, // SystemVariable (176x) + 58684: 731, // Variable (176x) + 58707: 732, // WindowFuncCall (176x) + 58168: 733, // BitExpr (163x) + 58498: 734, // PredicateExpr (132x) + 58171: 735, // BoolPri (129x) + 58286: 736, // Expression (129x) + 58419: 737, // NUM (103x) + 58722: 738, // logAnd (97x) + 58723: 739, // logOr (97x) + 58631: 740, // TableName (77x) + 58276: 741, // EqOpt (75x) + 58609: 742, // StringName (56x) + 57401: 743, // deleteKwd (52x) + 57551: 744, // unsigned (47x) + 58389: 745, // LengthNum (46x) + 57496: 746, // over (45x) + 57573: 747, // zerofill (45x) + 58194: 748, // ColumnName (41x) + 57405: 749, // distinct (36x) + 57406: 750, // distinctRow (36x) + 58712: 751, // WindowingClause (35x) + 58546: 752, // SelectStmt (34x) + 58547: 753, // SelectStmtBasic (34x) + 58549: 754, // SelectStmtFromDualTable (34x) + 58550: 755, // SelectStmtFromTable (34x) + 58567: 756, // SetOprClause (34x) + 57400: 757, // delayed (33x) + 57431: 758, // highPriority (33x) + 57473: 759, // lowPriority (33x) + 58568: 760, // SetOprClauseList (33x) + 58571: 761, // SetOprStmtWithLimitOrderBy (33x) + 58572: 762, // SetOprStmtWoutLimitOrderBy (33x) + 58713: 763, // WithClause (31x) + 58559: 764, // SelectStmtWithClause (30x) + 58570: 765, // SetOprStmt (30x) + 57354: 766, // hintComment (27x) + 58377: 767, // Int64Num (26x) + 58297: 768, // FieldLen (25x) + 58463: 769, // OptWindowingClause (24x) + 58667: 770, // UpdateStmtNoWith (24x) + 58251: 771, // DeleteWithoutUsingStmt (23x) + 58469: 772, // OrderBy (23x) + 58553: 773, // SelectStmtLimit (23x) + 57528: 774, // sqlBigResult (23x) + 57529: 775, // sqlCalcFoundRows (23x) + 57530: 776, // sqlSmallResult (23x) + 58374: 777, // InsertIntoStmt (21x) + 58666: 778, // UpdateStmt (21x) + 58182: 779, // CharsetKw (20x) + 58520: 780, // ReplaceIntoStmt (20x) + 58675: 781, // Username (20x) + 58287: 782, // ExpressionList (18x) + 58250: 783, // DeleteWithUsingStmt (17x) + 58346: 784, // IfExists (17x) + 58493: 785, // PlacementPolicyOption (17x) + 58632: 786, // TableNameList (17x) + 57539: 787, // terminated (16x) + 58249: 788, // DeleteFromStmt (15x) + 58253: 789, // DistinctKwd (15x) + 58347: 790, // IfNotExists (15x) + 58481: 791, // PartitionNameList (15x) + 58254: 792, // DistinctOpt (14x) + 57412: 793, // enclosed (14x) + 58448: 794, // OptFieldLen (14x) + 58697: 795, // WhereClause (14x) + 58698: 796, // WhereClauseOptional (14x) + 58246: 797, // DefaultKwdOpt (13x) + 57413: 798, // escaped (13x) + 57492: 799, // optionally (13x) + 58655: 800, // TimestampUnit (13x) + 58285: 801, // ExprOrDefault (12x) + 58383: 802, // JoinTable (12x) + 58442: 803, // OptBinary (12x) + 57509: 804, // release (12x) + 58536: 805, // RolenameComposed (12x) + 58628: 806, // TableFactor (12x) + 58641: 807, // TableRef (12x) + 58141: 808, // AnalyzeOptionListOpt (11x) + 58317: 809, // FromOrIn (11x) + 58137: 810, // AlterTableStmt (10x) + 58183: 811, // CharsetName (10x) + 58195: 812, // ColumnNameList (10x) + 58236: 813, // DBName (10x) + 57467: 814, // load (10x) + 58425: 815, // NotSym (10x) + 57483: 816, // noWriteToBinLog (10x) + 58470: 817, // OrderByOptional (10x) + 58472: 818, // PartDefOption (10x) + 58591: 819, // SignedNum (10x) + 58654: 820, // TimeUnit (10x) + 58174: 821, // BuggyDefaultFalseDistinctOpt (9x) + 58245: 822, // DefaultFalseDistinctOpt (9x) + 58384: 823, // JoinType (9x) + 58432: 824, // NumLiteral (9x) + 58535: 825, // Rolename (9x) + 58530: 826, // RoleNameString (9x) + 58235: 827, // CrossOpt (8x) + 58277: 828, // EqOrAssignmentEq (8x) + 58284: 829, // ExplainableStmt (8x) + 58288: 830, // ExpressionListOpt (8x) + 58368: 831, // IndexPartSpecification (8x) + 58385: 832, // KeyOrIndex (8x) + 58422: 833, // NoWriteToBinLogAliasOpt (8x) + 58554: 834, // SelectStmtLimitOpt (8x) + 58687: 835, // VariableName (8x) + 58123: 836, // AllOrPartitionNameList (7x) + 58219: 837, // ConstraintKeywordOpt (7x) + 58241: 838, // DatabaseSym (7x) + 58303: 839, // FieldsOrColumns (7x) + 58315: 840, // ForceOpt (7x) + 58369: 841, // IndexPartSpecificationList (7x) + 58502: 842, // Priority (7x) + 58540: 843, // RowFormat (7x) + 58543: 844, // RowValue (7x) + 58565: 845, // SetExpr (7x) + 58577: 846, // ShowDatabaseNameOpt (7x) + 58638: 847, // TableOption (7x) + 57564: 848, // varying (7x) + 58142: 849, // AnalyzeTableStmt (6x) + 58163: 850, // BeginTransactionStmt (6x) + 58165: 851, // BindableStmt (6x) + 57381: 852, // column (6x) + 58189: 853, // ColumnDef (6x) + 58209: 854, // CommitStmt (6x) + 58238: 855, // DatabaseOption (6x) + 58279: 856, // EscapedTableRef (6x) + 58301: 857, // FieldTerminator (6x) + 57427: 858, // grant (6x) + 58351: 859, // IgnoreOptional (6x) + 58360: 860, // IndexInvisible (6x) + 58365: 861, // IndexNameList (6x) + 58371: 862, // IndexType (6x) + 58402: 863, // LoadDataStmt (6x) + 58482: 864, // PartitionNameListOpt (6x) + 58515: 865, // ReleaseSavepointStmt (6x) + 58537: 866, // RolenameList (6x) + 58539: 867, // RollbackStmt (6x) + 58544: 868, // SavepointStmt (6x) + 58575: 869, // SetStmt (6x) + 57524: 870, // show (6x) + 58636: 871, // TableOptimizerHints (6x) + 58676: 872, // UsernameList (6x) + 58714: 873, // WithClustered (6x) + 58121: 874, // AlgorithmClause (5x) + 58176: 875, // ByItem (5x) + 58188: 876, // CollationName (5x) + 58192: 877, // ColumnKeywordOpt (5x) + 58252: 878, // DirectPlacementOption (5x) + 58299: 879, // FieldOpt (5x) + 58300: 880, // FieldOpts (5x) + 58343: 881, // IdentList (5x) + 58363: 882, // IndexName (5x) + 58366: 883, // IndexOption (5x) + 58367: 884, // IndexOptionList (5x) + 57439: 885, // infile (5x) + 58394: 886, // LimitOption (5x) + 58406: 887, // LockClause (5x) + 58444: 888, // OptCharsetWithOptBinary (5x) + 58455: 889, // OptNullTreatment (5x) + 58496: 890, // PolicyName (5x) + 58503: 891, // PriorityOpt (5x) + 58545: 892, // SelectLockOpt (5x) + 58552: 893, // SelectStmtIntoOption (5x) + 58642: 894, // TableRefs (5x) + 58669: 895, // UserSpec (5x) + 58147: 896, // Assignment (4x) + 58153: 897, // AuthString (4x) + 58155: 898, // BRIEBooleanOptionName (4x) + 58156: 899, // BRIEIntegerOptionName (4x) + 58157: 900, // BRIEKeywordOptionName (4x) + 58158: 901, // BRIEOption (4x) + 58159: 902, // BRIEOptions (4x) + 58161: 903, // BRIEStringOptionName (4x) + 58175: 904, // BuiltinFunction (4x) + 58177: 905, // ByList (4x) + 58181: 906, // Char (4x) + 58213: 907, // ConfigItemName (4x) + 58217: 908, // Constraint (4x) + 58311: 909, // FloatOpt (4x) + 58372: 910, // IndexTypeName (4x) + 57491: 911, // option (4x) + 58460: 912, // OptWild (4x) + 57495: 913, // outer (4x) + 58497: 914, // Precision (4x) + 58511: 915, // ReferDef (4x) + 58526: 916, // RestrictOrCascadeOpt (4x) + 58542: 917, // RowStmt (4x) + 58560: 918, // SequenceOption (4x) + 57533: 919, // statsExtended (4x) + 58623: 920, // TableAsName (4x) + 58624: 921, // TableAsNameOpt (4x) + 58635: 922, // TableNameOptWild (4x) + 58637: 923, // TableOptimizerHintsOpt (4x) + 58639: 924, // TableOptionList (4x) + 58657: 925, // TraceableStmt (4x) + 58658: 926, // TransactionChar (4x) + 58670: 927, // UserSpecList (4x) + 58708: 928, // WindowName (4x) + 58144: 929, // AsOfClause (3x) + 58148: 930, // AssignmentList (3x) + 58150: 931, // AttributesOpt (3x) + 58172: 932, // Boolean (3x) + 58201: 933, // ColumnOption (3x) + 58204: 934, // ColumnPosition (3x) + 58210: 935, // CommonTableExpr (3x) + 58231: 936, // CreateTableStmt (3x) + 58239: 937, // DatabaseOptionList (3x) + 58247: 938, // DefaultTrueDistinctOpt (3x) + 58273: 939, // EnforcedOrNot (3x) + 57415: 940, // explain (3x) + 58290: 941, // ExtendedPriv (3x) + 58331: 942, // GeneratedAlways (3x) + 58333: 943, // GlobalScope (3x) + 58337: 944, // GroupByClause (3x) + 58355: 945, // IndexHint (3x) + 58359: 946, // IndexHintType (3x) + 58364: 947, // IndexNameAndTypeOpt (3x) + 57456: 948, // keys (3x) + 58396: 949, // Lines (3x) + 58416: 950, // MaxValueOrExpression (3x) + 58426: 951, // NowSym (3x) + 58427: 952, // NowSymFunc (3x) + 58428: 953, // NowSymOptionFraction (3x) + 58456: 954, // OptOrder (3x) + 58459: 955, // OptTemporary (3x) + 58473: 956, // PartDefOptionList (3x) + 58475: 957, // PartitionDefinition (3x) + 58485: 958, // PasswordExpire (3x) + 58487: 959, // PasswordOrLockOption (3x) + 58495: 960, // PluginNameList (3x) + 58501: 961, // PrimaryOpt (3x) + 58504: 962, // PrivElem (3x) + 58506: 963, // PrivType (3x) + 57501: 964, // procedure (3x) + 58521: 965, // RequireClause (3x) + 58522: 966, // RequireClauseOpt (3x) + 58524: 967, // RequireListElement (3x) + 58538: 968, // RolenameWithoutIdent (3x) + 58531: 969, // RoleOrPrivElem (3x) + 58551: 970, // SelectStmtGroup (3x) + 58569: 971, // SetOprOpt (3x) + 58622: 972, // TableAliasRefList (3x) + 58625: 973, // TableElement (3x) + 58634: 974, // TableNameListOpt2 (3x) + 58650: 975, // TextString (3x) + 58659: 976, // TransactionChars (3x) + 57546: 977, // trigger (3x) + 57550: 978, // unlock (3x) + 57553: 979, // usage (3x) + 58680: 980, // ValuesList (3x) + 58682: 981, // ValuesStmtList (3x) + 58678: 982, // ValueSym (3x) + 58685: 983, // VariableAssignment (3x) + 58705: 984, // WindowFrameStart (3x) + 58119: 985, // AdminStmt (2x) + 58122: 986, // AllColumnsOrPredicateColumnsOpt (2x) + 58124: 987, // AlterDatabaseStmt (2x) + 58125: 988, // AlterImportStmt (2x) + 58126: 989, // AlterInstanceStmt (2x) + 58127: 990, // AlterOrderItem (2x) + 58129: 991, // AlterPolicyStmt (2x) + 58130: 992, // AlterSequenceOption (2x) + 58132: 993, // AlterSequenceStmt (2x) + 58134: 994, // AlterTableSpec (2x) + 58138: 995, // AlterUserStmt (2x) + 58139: 996, // AnalyzeOption (2x) + 58167: 997, // BinlogStmt (2x) + 58160: 998, // BRIEStmt (2x) + 58162: 999, // BRIETables (2x) + 57373: 1000, // call (2x) + 58178: 1001, // CallStmt (2x) + 58179: 1002, // CastType (2x) + 58180: 1003, // ChangeStmt (2x) + 58186: 1004, // CheckConstraintKeyword (2x) + 58196: 1005, // ColumnNameListOpt (2x) + 58199: 1006, // ColumnNameOrUserVariable (2x) + 58202: 1007, // ColumnOptionList (2x) + 58203: 1008, // ColumnOptionListOpt (2x) + 58205: 1009, // ColumnSetValue (2x) + 58208: 1010, // CommentOrAttributeOption (2x) + 58212: 1011, // CompletionTypeWithinTransaction (2x) + 58214: 1012, // ConnectionOption (2x) + 58216: 1013, // ConnectionOptions (2x) + 58220: 1014, // CreateBindingStmt (2x) + 58221: 1015, // CreateDatabaseStmt (2x) + 58222: 1016, // CreateImportStmt (2x) + 58223: 1017, // CreateIndexStmt (2x) + 58224: 1018, // CreatePolicyStmt (2x) + 58225: 1019, // CreateRoleStmt (2x) + 58227: 1020, // CreateSequenceStmt (2x) + 58228: 1021, // CreateStatisticsStmt (2x) + 58229: 1022, // CreateTableOptionListOpt (2x) + 58232: 1023, // CreateUserStmt (2x) + 58234: 1024, // CreateViewStmt (2x) + 57393: 1025, // databases (2x) + 58243: 1026, // DeallocateStmt (2x) + 58244: 1027, // DeallocateSym (2x) + 57404: 1028, // describe (2x) + 58255: 1029, // DoStmt (2x) + 58256: 1030, // DropBindingStmt (2x) + 58257: 1031, // DropDatabaseStmt (2x) + 58258: 1032, // DropImportStmt (2x) + 58259: 1033, // DropIndexStmt (2x) + 58260: 1034, // DropPolicyStmt (2x) + 58261: 1035, // DropRoleStmt (2x) + 58262: 1036, // DropSequenceStmt (2x) + 58263: 1037, // DropStatisticsStmt (2x) + 58264: 1038, // DropStatsStmt (2x) + 58265: 1039, // DropTableStmt (2x) + 58266: 1040, // DropUserStmt (2x) + 58267: 1041, // DropViewStmt (2x) + 58269: 1042, // DuplicateOpt (2x) + 58271: 1043, // EmptyStmt (2x) + 58272: 1044, // EncryptionOpt (2x) + 58274: 1045, // EnforcedOrNotOpt (2x) + 58278: 1046, // ErrorHandling (2x) + 58280: 1047, // ExecuteStmt (2x) + 58281: 1048, // ExplainFormatType (2x) + 58282: 1049, // ExplainStmt (2x) + 58283: 1050, // ExplainSym (2x) + 58292: 1051, // Field (2x) + 58295: 1052, // FieldItem (2x) + 58302: 1053, // Fields (2x) + 58307: 1054, // FlashbackDatabaseStmt (2x) + 58308: 1055, // FlashbackTableStmt (2x) + 58309: 1056, // FlashbackToNewName (2x) + 58310: 1057, // FlashbackToTimestampStmt (2x) + 58314: 1058, // FlushStmt (2x) + 58320: 1059, // FuncDatetimePrecList (2x) + 58321: 1060, // FuncDatetimePrecListOpt (2x) + 58334: 1061, // GrantProxyStmt (2x) + 58335: 1062, // GrantRoleStmt (2x) + 58336: 1063, // GrantStmt (2x) + 58338: 1064, // HandleRange (2x) + 58340: 1065, // HashString (2x) + 58341: 1066, // HavingClause (2x) + 58342: 1067, // HelpStmt (2x) + 58354: 1068, // IndexAdviseStmt (2x) + 58356: 1069, // IndexHintList (2x) + 58357: 1070, // IndexHintListOpt (2x) + 58362: 1071, // IndexLockAndAlgorithmOpt (2x) + 58375: 1072, // InsertValues (2x) + 58380: 1073, // IntoOpt (2x) + 58386: 1074, // KeyOrIndexOpt (2x) + 57457: 1075, // kill (2x) + 58387: 1076, // KillOrKillTiDB (2x) + 58388: 1077, // KillStmt (2x) + 58393: 1078, // LimitClause (2x) + 57466: 1079, // linear (2x) + 58395: 1080, // LinearOpt (2x) + 58399: 1081, // LoadDataSetItem (2x) + 58403: 1082, // LoadStatsStmt (2x) + 58404: 1083, // LocalOpt (2x) + 58405: 1084, // LocationLabelList (2x) + 58407: 1085, // LockStatsStmt (2x) + 58408: 1086, // LockTablesStmt (2x) + 58417: 1087, // MaxValueOrExpressionList (2x) + 58423: 1088, // NonTransactionalDMLStmt (2x) + 58429: 1089, // NowSymOptionFractionParentheses (2x) + 58431: 1090, // NumList (2x) + 58434: 1091, // ObjectType (2x) + 57488: 1092, // of (2x) + 58435: 1093, // OfTablesOpt (2x) + 58436: 1094, // OnCommitOpt (2x) + 58437: 1095, // OnDelete (2x) + 58440: 1096, // OnUpdate (2x) + 58445: 1097, // OptCollate (2x) + 58450: 1098, // OptFull (2x) + 58452: 1099, // OptInteger (2x) + 58465: 1100, // OptionalBraces (2x) + 58464: 1101, // OptionLevel (2x) + 58454: 1102, // OptLeadLagInfo (2x) + 58453: 1103, // OptLLDefault (2x) + 58471: 1104, // OuterOpt (2x) + 58476: 1105, // PartitionDefinitionList (2x) + 58477: 1106, // PartitionDefinitionListOpt (2x) + 58478: 1107, // PartitionIntervalOpt (2x) + 58484: 1108, // PartitionOpt (2x) + 58486: 1109, // PasswordOpt (2x) + 58488: 1110, // PasswordOrLockOptionList (2x) + 58489: 1111, // PasswordOrLockOptions (2x) + 58492: 1112, // PlacementOptionList (2x) + 58494: 1113, // PlanReplayerStmt (2x) + 58500: 1114, // PreparedStmt (2x) + 58505: 1115, // PrivLevel (2x) + 58508: 1116, // PurgeImportStmt (2x) + 58509: 1117, // QuickOptional (2x) + 58510: 1118, // RecoverTableStmt (2x) + 58512: 1119, // ReferOpt (2x) + 58514: 1120, // RegexpSym (2x) + 58516: 1121, // RenameTableStmt (2x) + 58517: 1122, // RenameUserStmt (2x) + 58519: 1123, // RepeatableOpt (2x) + 58525: 1124, // RestartStmt (2x) + 58527: 1125, // ResumeImportStmt (2x) + 57515: 1126, // revoke (2x) + 58528: 1127, // RevokeRoleStmt (2x) + 58529: 1128, // RevokeStmt (2x) + 58532: 1129, // RoleOrPrivElemList (2x) + 58533: 1130, // RoleSpec (2x) + 58555: 1131, // SelectStmtOpt (2x) + 58558: 1132, // SelectStmtSQLCache (2x) + 58562: 1133, // SetBindingStmt (2x) + 58563: 1134, // SetDefaultRoleOpt (2x) + 58564: 1135, // SetDefaultRoleStmt (2x) + 58574: 1136, // SetRoleStmt (2x) + 58578: 1137, // ShowImportStmt (2x) + 58583: 1138, // ShowProfileType (2x) + 58586: 1139, // ShowStmt (2x) + 58587: 1140, // ShowTableAliasOpt (2x) + 58589: 1141, // ShutdownStmt (2x) + 58590: 1142, // SignedLiteral (2x) + 58594: 1143, // SplitOption (2x) + 58595: 1144, // SplitRegionStmt (2x) + 58599: 1145, // Statement (2x) + 58602: 1146, // StatsOptionsOpt (2x) + 58603: 1147, // StatsPersistentVal (2x) + 58604: 1148, // StatsType (2x) + 58605: 1149, // StopImportStmt (2x) + 58612: 1150, // SubPartDefinition (2x) + 58615: 1151, // SubPartitionMethod (2x) + 58620: 1152, // Symbol (2x) + 58626: 1153, // TableElementList (2x) + 58629: 1154, // TableLock (2x) + 58633: 1155, // TableNameListOpt (2x) + 58640: 1156, // TableOrTables (2x) + 58649: 1157, // TablesTerminalSym (2x) + 58647: 1158, // TableToTable (2x) + 58651: 1159, // TextStringList (2x) + 58656: 1160, // TraceStmt (2x) + 58661: 1161, // TruncateTableStmt (2x) + 58664: 1162, // UnlockStatsStmt (2x) + 58665: 1163, // UnlockTablesStmt (2x) + 58671: 1164, // UserToUser (2x) + 58668: 1165, // UseStmt (2x) + 58683: 1166, // Varchar (2x) + 58686: 1167, // VariableAssignmentList (2x) + 58695: 1168, // WhenClause (2x) + 58700: 1169, // WindowDefinition (2x) + 58703: 1170, // WindowFrameBound (2x) + 58710: 1171, // WindowSpec (2x) + 58715: 1172, // WithGrantOptionOpt (2x) + 58716: 1173, // WithList (2x) + 58720: 1174, // Writeable (2x) + 58118: 1175, // AdminShowSlow (1x) + 58120: 1176, // AdminStmtLimitOpt (1x) + 58128: 1177, // AlterOrderList (1x) + 58131: 1178, // AlterSequenceOptionList (1x) + 58133: 1179, // AlterTablePartitionOpt (1x) + 58135: 1180, // AlterTableSpecList (1x) + 58136: 1181, // AlterTableSpecListOpt (1x) + 58140: 1182, // AnalyzeOptionList (1x) + 58143: 1183, // AnyOrAll (1x) + 58145: 1184, // AsOfClauseOpt (1x) + 58146: 1185, // AsOpt (1x) + 58151: 1186, // AuthOption (1x) + 58152: 1187, // AuthPlugin (1x) + 58154: 1188, // AutoRandomOpt (1x) + 58164: 1189, // BetweenOrNotOp (1x) + 58166: 1190, // BindingStatusType (1x) + 58169: 1191, // BitValueType (1x) + 58170: 1192, // BlobType (1x) + 58173: 1193, // BooleanType (1x) + 57371: 1194, // both (1x) + 58184: 1195, // CharsetNameOrDefault (1x) + 58185: 1196, // CharsetOpt (1x) + 58187: 1197, // ClearPasswordExpireOptions (1x) + 58191: 1198, // ColumnFormat (1x) + 58193: 1199, // ColumnList (1x) + 58200: 1200, // ColumnNameOrUserVariableList (1x) + 58197: 1201, // ColumnNameOrUserVarListOpt (1x) + 58198: 1202, // ColumnNameOrUserVarListOptWithBrackets (1x) + 58206: 1203, // ColumnSetValueList (1x) + 58211: 1204, // CompareOp (1x) + 58215: 1205, // ConnectionOptionList (1x) + 58218: 1206, // ConstraintElem (1x) + 58226: 1207, // CreateSequenceOptionListOpt (1x) + 58230: 1208, // CreateTableSelectOpt (1x) + 58233: 1209, // CreateViewSelectOpt (1x) + 58240: 1210, // DatabaseOptionListOpt (1x) + 58242: 1211, // DateAndTimeType (1x) + 58237: 1212, // DBNameList (1x) + 58248: 1213, // DefaultValueExpr (1x) + 58268: 1214, // DryRunOptions (1x) + 57410: 1215, // dual (1x) + 58270: 1216, // ElseOpt (1x) + 58275: 1217, // EnforcedOrNotOrNotNullOpt (1x) + 58289: 1218, // ExpressionOpt (1x) + 58291: 1219, // FetchFirstOpt (1x) + 58293: 1220, // FieldAsName (1x) + 58294: 1221, // FieldAsNameOpt (1x) + 58296: 1222, // FieldItemList (1x) + 58298: 1223, // FieldList (1x) + 58304: 1224, // FirstAndLastPartOpt (1x) + 58305: 1225, // FirstOrNext (1x) + 58306: 1226, // FixedPointType (1x) + 58312: 1227, // FloatingPointType (1x) + 58313: 1228, // FlushOption (1x) + 58316: 1229, // FromDual (1x) + 58318: 1230, // FulltextSearchModifierOpt (1x) + 58319: 1231, // FuncDatetimePrec (1x) + 58332: 1232, // GetFormatSelector (1x) + 58339: 1233, // HandleRangeList (1x) + 58344: 1234, // IdentListWithParenOpt (1x) + 58348: 1235, // IfNotRunning (1x) + 58349: 1236, // IfRunning (1x) + 58350: 1237, // IgnoreLines (1x) + 58352: 1238, // ImportTruncate (1x) + 58358: 1239, // IndexHintScope (1x) + 58361: 1240, // IndexKeyTypeOpt (1x) + 58370: 1241, // IndexPartSpecificationListOpt (1x) + 58373: 1242, // IndexTypeOpt (1x) + 58353: 1243, // InOrNotOp (1x) + 58376: 1244, // InstanceOption (1x) + 58378: 1245, // IntegerType (1x) + 58379: 1246, // IntervalExpr (1x) + 58382: 1247, // IsolationLevel (1x) + 58381: 1248, // IsOrNotOp (1x) + 57461: 1249, // leading (1x) + 58390: 1250, // LikeEscapeOpt (1x) + 58391: 1251, // LikeOrNotOp (1x) + 58392: 1252, // LikeTableWithOrWithoutParen (1x) + 58397: 1253, // LinesTerminated (1x) + 58400: 1254, // LoadDataSetList (1x) + 58401: 1255, // LoadDataSetSpecOpt (1x) + 58409: 1256, // LockType (1x) + 58410: 1257, // LogTypeOpt (1x) + 58411: 1258, // Match (1x) + 58412: 1259, // MatchOpt (1x) + 58413: 1260, // MaxIndexNumOpt (1x) + 58414: 1261, // MaxMinutesOpt (1x) + 58415: 1262, // MaxValPartOpt (1x) + 58418: 1263, // NChar (1x) + 58430: 1264, // NullPartOpt (1x) + 58433: 1265, // NumericType (1x) + 58420: 1266, // NVarchar (1x) + 58438: 1267, // OnDeleteUpdateOpt (1x) + 58439: 1268, // OnDuplicateKeyUpdate (1x) + 58441: 1269, // OptBinMod (1x) + 58443: 1270, // OptCharset (1x) + 58446: 1271, // OptErrors (1x) + 58447: 1272, // OptExistingWindowName (1x) + 58449: 1273, // OptFromFirstLast (1x) + 58451: 1274, // OptGConcatSeparator (1x) + 58466: 1275, // OptionalShardColumn (1x) + 58457: 1276, // OptPartitionClause (1x) + 58458: 1277, // OptTable (1x) + 58461: 1278, // OptWindowFrameClause (1x) + 58462: 1279, // OptWindowOrderByClause (1x) + 58468: 1280, // Order (1x) + 58467: 1281, // OrReplace (1x) + 57445: 1282, // outfile (1x) + 58474: 1283, // PartDefValuesOpt (1x) + 58479: 1284, // PartitionKeyAlgorithmOpt (1x) + 58480: 1285, // PartitionMethod (1x) + 58483: 1286, // PartitionNumOpt (1x) + 58490: 1287, // PerDB (1x) + 58491: 1288, // PerTable (1x) + 57499: 1289, // precisionType (1x) + 58499: 1290, // PrepareSQL (1x) + 58507: 1291, // ProcedureCall (1x) + 57506: 1292, // recursive (1x) + 58513: 1293, // RegexpOrNotOp (1x) + 58518: 1294, // ReorganizePartitionRuleOpt (1x) + 58523: 1295, // RequireList (1x) + 58534: 1296, // RoleSpecList (1x) + 58541: 1297, // RowOrRows (1x) + 58548: 1298, // SelectStmtFieldList (1x) + 58556: 1299, // SelectStmtOpts (1x) + 58557: 1300, // SelectStmtOptsList (1x) + 58561: 1301, // SequenceOptionList (1x) + 58566: 1302, // SetOpr (1x) + 58573: 1303, // SetRoleOpt (1x) + 58576: 1304, // ShardableStmt (1x) + 58579: 1305, // ShowIndexKwd (1x) + 58580: 1306, // ShowLikeOrWhereOpt (1x) + 58581: 1307, // ShowPlacementTarget (1x) + 58582: 1308, // ShowProfileArgsOpt (1x) + 58584: 1309, // ShowProfileTypes (1x) + 58585: 1310, // ShowProfileTypesOpt (1x) + 58588: 1311, // ShowTargetFilterable (1x) + 57526: 1312, // spatial (1x) + 58596: 1313, // SplitSyntaxOption (1x) + 57531: 1314, // ssl (1x) + 58597: 1315, // Start (1x) + 58598: 1316, // Starting (1x) + 57532: 1317, // starting (1x) + 58600: 1318, // StatementList (1x) + 58601: 1319, // StatementScope (1x) + 58606: 1320, // StorageMedia (1x) + 57538: 1321, // stored (1x) + 58607: 1322, // StringList (1x) + 58610: 1323, // StringNameOrBRIEOptionKeyword (1x) + 58611: 1324, // StringType (1x) + 58613: 1325, // SubPartDefinitionList (1x) + 58614: 1326, // SubPartDefinitionListOpt (1x) + 58616: 1327, // SubPartitionNumOpt (1x) + 58617: 1328, // SubPartitionOpt (1x) + 58627: 1329, // TableElementListOpt (1x) + 58630: 1330, // TableLockList (1x) + 58643: 1331, // TableRefsClause (1x) + 58644: 1332, // TableSampleMethodOpt (1x) + 58645: 1333, // TableSampleOpt (1x) + 58646: 1334, // TableSampleUnitOpt (1x) + 58648: 1335, // TableToTableList (1x) + 58652: 1336, // TextType (1x) + 57545: 1337, // trailing (1x) + 58660: 1338, // TrimDirection (1x) + 58662: 1339, // Type (1x) + 58672: 1340, // UserToUserList (1x) + 58674: 1341, // UserVariableList (1x) + 58677: 1342, // UsingRoles (1x) + 58679: 1343, // Values (1x) + 58681: 1344, // ValuesOpt (1x) + 58688: 1345, // ViewAlgorithm (1x) + 58689: 1346, // ViewCheckOption (1x) + 58690: 1347, // ViewDefiner (1x) + 58691: 1348, // ViewFieldList (1x) + 58692: 1349, // ViewName (1x) + 58693: 1350, // ViewSQLSecurity (1x) + 57565: 1351, // virtual (1x) + 58694: 1352, // VirtualOrStored (1x) + 58696: 1353, // WhenClauseList (1x) + 58699: 1354, // WindowClauseOptional (1x) + 58701: 1355, // WindowDefinitionList (1x) + 58702: 1356, // WindowFrameBetween (1x) + 58704: 1357, // WindowFrameExtent (1x) + 58706: 1358, // WindowFrameUnits (1x) + 58709: 1359, // WindowNameOrSpec (1x) + 58711: 1360, // WindowSpecDetails (1x) + 58717: 1361, // WithReadLockOpt (1x) + 58718: 1362, // WithValidation (1x) + 58719: 1363, // WithValidationOpt (1x) + 58721: 1364, // Year (1x) + 58117: 1365, // $default (0x) + 58078: 1366, // andnot (0x) + 58149: 1367, // AssignmentListOpt (0x) + 58190: 1368, // ColumnDefList (0x) + 58207: 1369, // CommaOpt (0x) + 58101: 1370, // createTableSelect (0x) + 58092: 1371, // empty (0x) + 57345: 1372, // error (0x) + 58116: 1373, // higherThanComma (0x) + 58110: 1374, // higherThanParenthese (0x) + 58099: 1375, // insertValues (0x) + 57353: 1376, // invalid (0x) + 58102: 1377, // lowerThanCharsetKwd (0x) + 58115: 1378, // lowerThanComma (0x) + 58100: 1379, // lowerThanCreateTableSelect (0x) + 58112: 1380, // lowerThanEq (0x) + 58107: 1381, // lowerThanFunction (0x) + 58098: 1382, // lowerThanInsertValues (0x) + 58103: 1383, // lowerThanKey (0x) + 58104: 1384, // lowerThanLocal (0x) + 58114: 1385, // lowerThanNot (0x) + 58111: 1386, // lowerThanOn (0x) + 58109: 1387, // lowerThanParenthese (0x) + 58105: 1388, // lowerThanRemove (0x) + 58093: 1389, // lowerThanSelectOpt (0x) + 58097: 1390, // lowerThanSelectStmt (0x) + 58096: 1391, // lowerThanSetKeyword (0x) + 58095: 1392, // lowerThanStringLitToken (0x) + 58094: 1393, // lowerThanValueKeyword (0x) + 58106: 1394, // lowerThenOrder (0x) + 58113: 1395, // neg (0x) + 57357: 1396, // odbcDateType (0x) + 57359: 1397, // odbcTimestampType (0x) + 57358: 1398, // odbcTimeType (0x) + 58108: 1399, // tableRefPriority (0x) } yySymNames = []string{ @@ -2273,6 +2286,7 @@ var ( "statsSamplePages", "statsSampleRate", "tableChecksum", + "attribute", "account", "')'", "resume", @@ -2353,17 +2367,19 @@ var ( "tables", "status", "separator", + "cipher", + "identifier", + "issuer", "maxConnectionsPerHour", "maxQueriesPerHour", "maxUpdatesPerHour", "maxUserConnections", "preceding", - "cipher", - "importKwd", - "issuer", - "local", "san", "subject", + "tokenIssuer", + "importKwd", + "local", "query", "skip", "bindings", @@ -2376,7 +2392,6 @@ var ( "current", "enforced", "following", - "identifier", "less", "nowait", "only", @@ -2424,7 +2439,7 @@ var ( "sequence", "session", "slow", - "timestampType", + "stats", "timeType", "validation", "variables", @@ -2449,6 +2464,7 @@ var ( "statistics", "subpartitions", "tidb", + "timestampType", "without", "admin", "backup", @@ -2514,7 +2530,6 @@ var ( "share", "shutdown", "source", - "stats", "statsOptions", "stop", "swaps", @@ -2616,6 +2631,7 @@ var ( "slave", "statsHealthy", "statsHistograms", + "statsLocked", "statsMeta", "strict", "switchesSym", @@ -2902,6 +2918,7 @@ var ( "create", "foreign", "fulltext", + "toTimestamp", "varcharacter", "varcharType", "change", @@ -2961,8 +2978,8 @@ var ( "NUM", "logAnd", "logOr", - "EqOpt", "TableName", + "EqOpt", "StringName", "deleteKwd", "unsigned", @@ -2991,22 +3008,23 @@ var ( "Int64Num", "FieldLen", "OptWindowingClause", + "UpdateStmtNoWith", "DeleteWithoutUsingStmt", "OrderBy", "SelectStmtLimit", "sqlBigResult", "sqlCalcFoundRows", "sqlSmallResult", - "UpdateStmtNoWith", - "CharsetKw", "InsertIntoStmt", - "ReplaceIntoStmt", "UpdateStmt", + "CharsetKw", + "ReplaceIntoStmt", "Username", "ExpressionList", "DeleteWithUsingStmt", "IfExists", "PlacementPolicyOption", + "TableNameList", "terminated", "DeleteFromStmt", "DistinctKwd", @@ -3020,7 +3038,6 @@ var ( "DefaultKwdOpt", "escaped", "optionally", - "TableNameList", "TimestampUnit", "ExprOrDefault", "JoinTable", @@ -3034,6 +3051,7 @@ var ( "AlterTableStmt", "CharsetName", "ColumnNameList", + "DBName", "load", "NotSym", "noWriteToBinLog", @@ -3042,7 +3060,6 @@ var ( "SignedNum", "TimeUnit", "BuggyDefaultFalseDistinctOpt", - "DBName", "DefaultFalseDistinctOpt", "JoinType", "NumLiteral", @@ -3059,6 +3076,7 @@ var ( "VariableName", "AllOrPartitionNameList", "ConstraintKeywordOpt", + "DatabaseSym", "FieldsOrColumns", "ForceOpt", "IndexPartSpecificationList", @@ -3076,7 +3094,6 @@ var ( "ColumnDef", "CommitStmt", "DatabaseOption", - "DatabaseSym", "EscapedTableRef", "FieldTerminator", "grant", @@ -3125,6 +3142,7 @@ var ( "BRIEOption", "BRIEOptions", "BRIEStringOptionName", + "BuiltinFunction", "ByList", "Char", "ConfigItemName", @@ -3220,7 +3238,6 @@ var ( "BinlogStmt", "BRIEStmt", "BRIETables", - "BuiltinFunction", "call", "CallStmt", "CastType", @@ -3231,6 +3248,7 @@ var ( "ColumnOptionList", "ColumnOptionListOpt", "ColumnSetValue", + "CommentOrAttributeOption", "CompletionTypeWithinTransaction", "ConnectionOption", "ConnectionOptions", @@ -3274,8 +3292,10 @@ var ( "Field", "FieldItem", "Fields", - "FlashbackClusterStmt", + "FlashbackDatabaseStmt", "FlashbackTableStmt", + "FlashbackToNewName", + "FlashbackToTimestampStmt", "FlushStmt", "FuncDatetimePrecList", "FuncDatetimePrecListOpt", @@ -3303,9 +3323,10 @@ var ( "LoadStatsStmt", "LocalOpt", "LocationLabelList", + "LockStatsStmt", "LockTablesStmt", "MaxValueOrExpressionList", - "NonTransactionalDeleteStmt", + "NonTransactionalDMLStmt", "NowSymOptionFractionParentheses", "NumList", "ObjectType", @@ -3379,6 +3400,7 @@ var ( "TextStringList", "TraceStmt", "TruncateTableStmt", + "UnlockStatsStmt", "UnlockTablesStmt", "UserToUser", "UseStmt", @@ -3443,7 +3465,6 @@ var ( "FirstAndLastPartOpt", "FirstOrNext", "FixedPointType", - "FlashbackToNewName", "FloatingPointType", "FlushOption", "FromDual", @@ -3521,6 +3542,7 @@ var ( "SequenceOptionList", "SetOpr", "SetRoleOpt", + "ShardableStmt", "ShowIndexKwd", "ShowLikeOrWhereOpt", "ShowPlacementTarget", @@ -3620,7751 +3642,7809 @@ var ( yyReductions = []struct{ xsym, components int }{ {0, 1}, - {1306, 1}, - {806, 6}, - {806, 8}, - {806, 10}, - {806, 5}, - {806, 7}, - {806, 7}, - {806, 9}, - {1104, 1}, - {1104, 2}, - {1104, 3}, - {874, 3}, - {874, 3}, - {874, 3}, - {874, 3}, - {874, 3}, - {874, 3}, + {1315, 1}, + {810, 6}, + {810, 8}, + {810, 10}, + {810, 5}, + {810, 7}, + {810, 7}, + {810, 9}, + {1112, 1}, + {1112, 2}, + {1112, 3}, + {878, 3}, + {878, 3}, + {878, 3}, + {878, 3}, + {878, 3}, + {878, 3}, + {878, 3}, + {878, 3}, + {878, 3}, + {878, 3}, + {878, 3}, + {785, 4}, + {785, 4}, + {785, 4}, + {785, 4}, + {931, 3}, + {931, 3}, + {1146, 3}, + {1146, 3}, + {1179, 1}, + {1179, 2}, + {1179, 4}, + {1179, 8}, + {1179, 8}, + {1179, 3}, + {1179, 3}, + {1084, 0}, + {1084, 3}, + {994, 1}, + {994, 5}, + {994, 5}, + {994, 5}, + {994, 5}, + {994, 6}, + {994, 2}, + {994, 5}, + {994, 6}, + {994, 8}, + {994, 8}, + {994, 1}, + {994, 1}, + {994, 3}, + {994, 4}, + {994, 5}, + {994, 3}, + {994, 4}, + {994, 8}, + {994, 4}, + {994, 7}, + {994, 3}, + {994, 4}, + {994, 4}, + {994, 4}, + {994, 4}, + {994, 2}, + {994, 2}, + {994, 4}, + {994, 4}, + {994, 5}, + {994, 3}, + {994, 2}, + {994, 2}, + {994, 5}, + {994, 6}, + {994, 6}, + {994, 8}, + {994, 5}, + {994, 5}, + {994, 3}, + {994, 3}, + {994, 3}, + {994, 5}, + {994, 1}, + {994, 1}, + {994, 1}, + {994, 1}, + {994, 2}, + {994, 2}, + {994, 1}, + {994, 1}, + {994, 4}, + {994, 3}, + {994, 4}, + {994, 1}, + {994, 1}, + {1294, 0}, + {1294, 5}, + {836, 1}, + {836, 1}, + {1363, 0}, + {1363, 1}, + {1362, 2}, + {1362, 2}, + {873, 1}, + {873, 1}, {874, 3}, {874, 3}, {874, 3}, {874, 3}, {874, 3}, - {781, 4}, - {781, 4}, - {781, 4}, - {781, 4}, - {926, 3}, - {926, 3}, - {1138, 3}, - {1138, 3}, - {1170, 1}, - {1170, 2}, - {1170, 4}, - {1170, 8}, - {1170, 8}, - {1170, 3}, - {1170, 3}, - {1077, 0}, - {1077, 3}, - {989, 1}, - {989, 5}, - {989, 5}, - {989, 5}, - {989, 5}, - {989, 6}, - {989, 2}, - {989, 5}, - {989, 6}, - {989, 8}, - {989, 8}, - {989, 1}, - {989, 1}, - {989, 3}, - {989, 4}, - {989, 5}, - {989, 3}, - {989, 4}, - {989, 8}, - {989, 4}, - {989, 7}, - {989, 3}, - {989, 4}, - {989, 4}, - {989, 4}, - {989, 4}, - {989, 2}, - {989, 2}, - {989, 4}, - {989, 4}, - {989, 5}, - {989, 3}, - {989, 2}, - {989, 2}, - {989, 5}, - {989, 6}, - {989, 6}, - {989, 8}, - {989, 5}, - {989, 5}, - {989, 3}, - {989, 3}, - {989, 3}, - {989, 5}, - {989, 1}, - {989, 1}, - {989, 1}, - {989, 1}, - {989, 2}, - {989, 2}, - {989, 1}, - {989, 1}, - {989, 4}, - {989, 3}, - {989, 4}, - {989, 1}, - {989, 1}, - {1286, 0}, - {1286, 5}, + {887, 3}, + {887, 3}, + {1174, 2}, + {1174, 2}, {832, 1}, {832, 1}, - {1354, 0}, - {1354, 1}, - {1353, 2}, - {1353, 2}, - {869, 1}, - {869, 1}, - {870, 3}, - {870, 3}, - {870, 3}, - {870, 3}, - {870, 3}, - {883, 3}, - {883, 3}, - {1165, 2}, - {1165, 2}, - {828, 1}, - {828, 1}, - {1067, 0}, - {1067, 1}, - {873, 0}, - {873, 1}, - {929, 0}, - {929, 1}, - {929, 2}, - {1172, 0}, - {1172, 1}, - {1171, 1}, - {1171, 3}, - {786, 1}, - {786, 3}, - {833, 0}, - {833, 1}, - {833, 2}, - {1144, 1}, - {1113, 3}, - {1326, 1}, - {1326, 3}, - {1150, 3}, - {1114, 3}, - {1331, 1}, - {1331, 3}, - {1155, 3}, - {1110, 5}, - {1110, 3}, - {1110, 4}, - {1049, 5}, - {1050, 4}, - {1218, 0}, - {1218, 2}, - {1136, 6}, - {1136, 8}, - {1135, 6}, - {1135, 2}, - {1304, 0}, - {1304, 2}, - {1304, 1}, - {1304, 3}, - {844, 5}, - {844, 6}, - {844, 7}, - {844, 7}, - {844, 8}, - {844, 9}, - {844, 8}, - {844, 7}, - {844, 6}, - {844, 8}, - {981, 0}, - {981, 2}, - {981, 2}, - {804, 0}, - {804, 2}, - {1173, 1}, - {1173, 3}, - {991, 2}, - {991, 2}, - {991, 3}, - {991, 3}, - {991, 2}, - {991, 2}, - {892, 3}, - {925, 1}, - {925, 3}, - {1358, 0}, - {1358, 1}, - {845, 1}, - {845, 2}, - {845, 2}, - {845, 2}, - {845, 4}, - {845, 5}, - {845, 6}, - {845, 4}, - {845, 5}, - {992, 2}, - {1359, 1}, - {1359, 3}, - {848, 3}, - {848, 3}, - {744, 1}, - {744, 3}, - {744, 5}, - {808, 1}, - {808, 3}, - {1001, 0}, - {1001, 1}, - {1226, 0}, - {1226, 3}, + {1074, 0}, + {1074, 1}, + {877, 0}, {877, 1}, - {877, 3}, - {1192, 0}, - {1192, 1}, - {1191, 1}, - {1191, 3}, - {1002, 1}, - {1002, 1}, - {1193, 0}, - {1193, 3}, - {849, 1}, - {849, 2}, - {956, 0}, - {956, 1}, - {810, 1}, - {810, 1}, + {934, 0}, {934, 1}, {934, 2}, - {1040, 0}, - {1040, 1}, - {1208, 2}, - {1208, 1}, - {928, 2}, - {928, 1}, - {928, 1}, - {928, 2}, - {928, 3}, - {928, 1}, - {928, 2}, - {928, 2}, - {928, 3}, - {928, 3}, - {928, 2}, - {928, 6}, - {928, 6}, - {928, 1}, - {928, 2}, - {928, 2}, - {928, 2}, - {928, 2}, - {1179, 0}, - {1179, 3}, - {1179, 5}, - {1311, 1}, - {1311, 1}, - {1311, 1}, - {1189, 1}, - {1189, 1}, - {1189, 1}, - {937, 0}, - {937, 2}, - {1343, 0}, - {1343, 1}, - {1343, 1}, - {1003, 1}, - {1003, 2}, - {1004, 0}, - {1004, 1}, - {1197, 7}, - {1197, 7}, - {1197, 7}, - {1197, 7}, - {1197, 8}, - {1197, 5}, - {1250, 2}, - {1250, 2}, - {1250, 2}, - {1251, 0}, - {1251, 1}, - {910, 5}, - {1087, 3}, - {1088, 3}, - {1259, 0}, - {1259, 1}, - {1259, 1}, - {1259, 2}, - {1259, 2}, - {1111, 1}, - {1111, 1}, - {1111, 2}, - {1111, 2}, - {1111, 2}, - {1204, 1}, - {1204, 1}, - {1204, 1}, - {1204, 1}, - {995, 3}, - {995, 3}, - {995, 4}, - {1081, 3}, - {1081, 1}, - {948, 1}, - {948, 3}, - {948, 4}, - {714, 4}, - {714, 4}, - {947, 1}, - {947, 1}, - {947, 1}, - {947, 1}, - {946, 1}, - {946, 1}, - {946, 1}, - {1134, 1}, - {1134, 2}, - {1134, 2}, - {820, 1}, - {820, 1}, - {820, 1}, - {1140, 1}, - {1140, 1}, - {1140, 1}, + {1181, 0}, {1181, 1}, - {1181, 1}, - {1016, 12}, - {1032, 3}, - {1012, 13}, - {1233, 0}, - {1233, 3}, - {836, 1}, - {836, 3}, - {827, 3}, - {827, 4}, - {1064, 0}, - {1064, 1}, - {1064, 1}, - {1064, 2}, - {1064, 2}, - {1232, 0}, - {1232, 1}, - {1232, 1}, - {1232, 1}, - {982, 4}, - {982, 3}, - {1010, 5}, - {817, 1}, - {886, 1}, - {850, 4}, + {1180, 1}, + {1180, 3}, + {791, 1}, + {791, 3}, + {837, 0}, + {837, 1}, + {837, 2}, + {1152, 1}, + {1121, 3}, + {1335, 1}, + {1335, 3}, + {1158, 3}, + {1122, 3}, + {1340, 1}, + {1340, 3}, + {1164, 3}, + {1118, 5}, + {1118, 3}, + {1118, 4}, + {1057, 4}, + {1057, 5}, + {1057, 5}, + {1055, 4}, + {1056, 0}, + {1056, 2}, + {1054, 4}, + {1144, 6}, + {1144, 8}, + {1143, 6}, + {1143, 2}, + {1313, 0}, + {1313, 2}, + {1313, 1}, + {1313, 3}, + {849, 5}, + {849, 6}, + {849, 7}, + {849, 7}, + {849, 8}, + {849, 9}, + {849, 8}, + {849, 7}, + {849, 6}, + {849, 8}, + {986, 0}, + {986, 2}, + {986, 2}, + {808, 0}, + {808, 2}, + {1182, 1}, + {1182, 3}, + {996, 2}, + {996, 2}, + {996, 3}, + {996, 3}, + {996, 2}, + {996, 2}, + {896, 3}, + {930, 1}, + {930, 3}, + {1367, 0}, + {1367, 1}, + {850, 1}, + {850, 2}, + {850, 2}, + {850, 2}, {850, 4}, + {850, 5}, + {850, 6}, {850, 4}, - {850, 2}, - {850, 1}, {850, 5}, + {997, 2}, + {1368, 1}, + {1368, 3}, + {853, 3}, + {853, 3}, + {748, 1}, + {748, 3}, + {748, 5}, + {812, 1}, + {812, 3}, + {1005, 0}, + {1005, 1}, + {1234, 0}, + {1234, 3}, + {881, 1}, + {881, 3}, {1201, 0}, {1201, 1}, - {932, 1}, - {932, 2}, - {931, 12}, - {931, 7}, - {1086, 0}, - {1086, 4}, - {1086, 4}, - {792, 0}, - {792, 1}, - {1100, 0}, - {1100, 6}, - {1143, 6}, - {1143, 5}, - {1276, 0}, - {1276, 3}, - {1277, 1}, - {1277, 5}, - {1277, 6}, - {1277, 4}, - {1277, 5}, - {1277, 4}, - {1277, 3}, - {1277, 1}, - {1099, 0}, - {1099, 7}, - {1238, 1}, - {1238, 2}, - {1256, 0}, - {1256, 2}, - {1254, 0}, - {1254, 2}, - {1215, 0}, - {1215, 14}, - {1073, 0}, - {1073, 1}, - {1319, 0}, - {1319, 4}, - {1318, 0}, - {1318, 2}, - {1278, 0}, - {1278, 2}, - {1098, 0}, - {1098, 3}, - {1097, 1}, - {1097, 3}, - {952, 5}, - {1317, 0}, - {1317, 3}, - {1316, 1}, - {1316, 3}, - {1142, 3}, - {951, 0}, - {951, 2}, - {813, 3}, - {813, 3}, - {813, 4}, - {813, 3}, - {813, 4}, - {813, 4}, - {813, 3}, - {813, 3}, - {813, 3}, - {813, 3}, - {813, 1}, - {1275, 0}, - {1275, 4}, - {1275, 6}, - {1275, 1}, - {1275, 5}, - {1275, 1}, - {1275, 1}, - {1037, 0}, - {1037, 1}, - {1037, 1}, - {1176, 0}, - {1176, 1}, - {1199, 0}, - {1199, 1}, - {1199, 1}, - {1199, 1}, - {1199, 1}, - {1200, 1}, - {1200, 1}, {1200, 1}, - {1200, 1}, - {1244, 2}, - {1244, 4}, - {1019, 11}, - {1273, 0}, - {1273, 2}, - {1336, 0}, - {1336, 3}, - {1336, 3}, - {1336, 3}, - {1338, 0}, - {1338, 3}, - {1341, 0}, - {1341, 3}, - {1341, 3}, - {1340, 1}, - {1339, 0}, - {1339, 3}, - {1190, 1}, - {1190, 3}, - {1337, 0}, - {1337, 4}, - {1337, 4}, - {1024, 2}, - {766, 13}, - {766, 9}, - {779, 10}, - {783, 1}, - {783, 1}, - {783, 2}, - {783, 2}, - {851, 1}, - {1026, 4}, - {1028, 7}, - {1034, 6}, - {950, 0}, - {950, 1}, - {950, 2}, - {1036, 4}, - {1036, 6}, - {1035, 3}, - {1035, 5}, - {1030, 3}, - {1030, 5}, - {1033, 3}, - {1033, 5}, - {1033, 4}, - {911, 0}, - {911, 1}, - {911, 1}, + {1200, 3}, + {1006, 1}, + {1006, 1}, + {1202, 0}, + {1202, 3}, + {854, 1}, + {854, 2}, + {961, 0}, + {961, 1}, + {815, 1}, + {815, 1}, + {939, 1}, + {939, 2}, + {1045, 0}, + {1045, 1}, + {1217, 2}, + {1217, 1}, + {933, 2}, + {933, 1}, + {933, 1}, + {933, 2}, + {933, 3}, + {933, 1}, + {933, 2}, + {933, 2}, + {933, 3}, + {933, 3}, + {933, 2}, + {933, 6}, + {933, 6}, + {933, 1}, + {933, 2}, + {933, 2}, + {933, 2}, + {933, 2}, + {1188, 0}, + {1188, 3}, + {1188, 5}, + {1320, 1}, + {1320, 1}, + {1320, 1}, + {1198, 1}, + {1198, 1}, + {1198, 1}, + {942, 0}, + {942, 2}, + {1352, 0}, + {1352, 1}, + {1352, 1}, + {1007, 1}, + {1007, 2}, + {1008, 0}, + {1008, 1}, + {1206, 7}, + {1206, 7}, + {1206, 7}, + {1206, 7}, + {1206, 8}, + {1206, 5}, + {1258, 2}, + {1258, 2}, + {1258, 2}, + {1259, 0}, + {1259, 1}, + {915, 5}, + {1095, 3}, + {1096, 3}, + {1267, 0}, + {1267, 1}, + {1267, 1}, + {1267, 2}, + {1267, 2}, + {1119, 1}, + {1119, 1}, + {1119, 2}, + {1119, 2}, + {1119, 2}, + {1213, 1}, + {1213, 1}, + {1213, 1}, + {1213, 1}, + {904, 3}, + {904, 3}, + {904, 4}, + {1089, 3}, + {1089, 1}, + {953, 1}, + {953, 3}, + {953, 4}, + {718, 4}, + {718, 4}, + {952, 1}, + {952, 1}, + {952, 1}, + {952, 1}, + {951, 1}, + {951, 1}, + {951, 1}, + {1142, 1}, + {1142, 2}, + {1142, 2}, + {824, 1}, + {824, 1}, + {824, 1}, {1148, 1}, {1148, 1}, - {736, 0}, - {736, 1}, - {1038, 0}, - {1152, 2}, - {1152, 5}, - {1152, 3}, - {1152, 6}, - {1045, 1}, - {1045, 1}, - {1045, 1}, - {1044, 2}, - {1044, 3}, - {1044, 2}, - {1044, 4}, - {1044, 7}, - {1044, 5}, - {1044, 7}, - {1044, 5}, - {1044, 3}, - {1044, 6}, - {1044, 6}, - {1043, 1}, - {1043, 1}, - {1043, 1}, - {1043, 1}, - {1043, 1}, - {1043, 1}, - {1043, 1}, - {864, 2}, - {861, 3}, - {993, 5}, - {993, 5}, - {994, 2}, - {994, 2}, - {994, 2}, - {1203, 1}, - {1203, 3}, - {898, 0}, - {898, 2}, - {895, 1}, - {895, 1}, - {894, 1}, - {894, 1}, - {894, 1}, - {894, 1}, - {894, 1}, - {894, 1}, - {894, 1}, - {894, 1}, - {899, 1}, - {899, 1}, + {1148, 1}, + {1190, 1}, + {1190, 1}, + {1021, 12}, + {1037, 3}, + {1017, 13}, + {1241, 0}, + {1241, 3}, + {841, 1}, + {841, 3}, + {831, 3}, + {831, 4}, + {1071, 0}, + {1071, 1}, + {1071, 1}, + {1071, 2}, + {1071, 2}, + {1240, 0}, + {1240, 1}, + {1240, 1}, + {1240, 1}, + {987, 4}, + {987, 3}, + {1015, 5}, + {813, 1}, + {890, 1}, + {855, 4}, + {855, 4}, + {855, 4}, + {855, 2}, + {855, 1}, + {855, 5}, + {1210, 0}, + {1210, 1}, + {937, 1}, + {937, 2}, + {936, 12}, + {936, 7}, + {1094, 0}, + {1094, 4}, + {1094, 4}, + {797, 0}, + {797, 1}, + {1108, 0}, + {1108, 6}, + {1151, 6}, + {1151, 5}, + {1284, 0}, + {1284, 3}, + {1285, 1}, + {1285, 5}, + {1285, 6}, + {1285, 4}, + {1285, 5}, + {1285, 4}, + {1285, 3}, + {1285, 1}, + {1107, 0}, + {1107, 7}, + {1246, 1}, + {1246, 2}, + {1264, 0}, + {1264, 2}, + {1262, 0}, + {1262, 2}, + {1224, 0}, + {1224, 14}, + {1080, 0}, + {1080, 1}, + {1328, 0}, + {1328, 4}, + {1327, 0}, + {1327, 2}, + {1286, 0}, + {1286, 2}, + {1106, 0}, + {1106, 3}, + {1105, 1}, + {1105, 3}, + {957, 5}, + {1326, 0}, + {1326, 3}, + {1325, 1}, + {1325, 3}, + {1150, 3}, + {956, 0}, + {956, 2}, + {818, 3}, + {818, 3}, + {818, 4}, + {818, 3}, + {818, 4}, + {818, 4}, + {818, 3}, + {818, 3}, + {818, 3}, + {818, 3}, + {818, 1}, + {1283, 0}, + {1283, 4}, + {1283, 6}, + {1283, 1}, + {1283, 5}, + {1283, 1}, + {1283, 1}, + {1042, 0}, + {1042, 1}, + {1042, 1}, + {1185, 0}, + {1185, 1}, + {1208, 0}, + {1208, 1}, + {1208, 1}, + {1208, 1}, + {1208, 1}, + {1209, 1}, + {1209, 1}, + {1209, 1}, + {1209, 1}, + {1252, 2}, + {1252, 4}, + {1024, 11}, + {1281, 0}, + {1281, 2}, + {1345, 0}, + {1345, 3}, + {1345, 3}, + {1345, 3}, + {1347, 0}, + {1347, 3}, + {1350, 0}, + {1350, 3}, + {1350, 3}, + {1349, 1}, + {1348, 0}, + {1348, 3}, + {1199, 1}, + {1199, 3}, + {1346, 0}, + {1346, 4}, + {1346, 4}, + {1029, 2}, + {771, 13}, + {771, 9}, + {783, 10}, + {788, 1}, + {788, 1}, + {788, 2}, + {788, 2}, + {838, 1}, + {1031, 4}, + {1033, 7}, + {1039, 6}, + {955, 0}, + {955, 1}, + {955, 2}, + {1041, 4}, + {1041, 6}, + {1040, 3}, + {1040, 5}, + {1035, 3}, + {1035, 5}, + {1038, 3}, + {1038, 5}, + {1038, 4}, + {916, 0}, + {916, 1}, + {916, 1}, + {1156, 1}, + {1156, 1}, + {741, 0}, + {741, 1}, + {1043, 0}, + {1160, 2}, + {1160, 5}, + {1160, 3}, + {1160, 6}, + {1050, 1}, + {1050, 1}, + {1050, 1}, + {1049, 2}, + {1049, 3}, + {1049, 2}, + {1049, 4}, + {1049, 7}, + {1049, 5}, + {1049, 7}, + {1049, 5}, + {1049, 3}, + {1049, 6}, + {1049, 6}, + {1048, 1}, + {1048, 1}, + {1048, 1}, + {1048, 1}, + {1048, 1}, + {1048, 1}, + {1048, 1}, + {868, 2}, + {865, 3}, + {998, 5}, + {998, 5}, + {999, 2}, + {999, 2}, + {999, 2}, + {1212, 1}, + {1212, 3}, + {902, 0}, + {902, 2}, {899, 1}, {899, 1}, - {896, 1}, - {896, 1}, - {896, 2}, - {897, 3}, - {897, 3}, - {897, 3}, - {897, 3}, - {897, 5}, - {897, 3}, - {897, 3}, - {897, 3}, - {897, 3}, - {897, 6}, - {897, 3}, - {897, 3}, - {897, 3}, - {897, 3}, - {897, 3}, - {897, 3}, - {741, 1}, - {763, 1}, - {733, 1}, - {927, 1}, - {927, 1}, - {927, 1}, - {1093, 1}, - {1093, 1}, - {1093, 1}, - {1108, 3}, - {1011, 8}, - {1141, 4}, - {1117, 4}, - {983, 6}, - {1027, 4}, - {1129, 5}, - {1228, 0}, - {1228, 2}, - {1227, 0}, - {1227, 3}, - {1263, 0}, - {1263, 1}, - {1041, 0}, - {1041, 1}, - {1041, 2}, - {1041, 2}, - {1041, 2}, - {1041, 2}, + {898, 1}, + {898, 1}, + {898, 1}, + {898, 1}, + {898, 1}, + {898, 1}, + {898, 1}, + {898, 1}, + {903, 1}, + {903, 1}, + {903, 1}, + {903, 1}, + {900, 1}, + {900, 1}, + {900, 2}, + {901, 3}, + {901, 3}, + {901, 3}, + {901, 3}, + {901, 5}, + {901, 3}, + {901, 3}, + {901, 3}, + {901, 3}, + {901, 6}, + {901, 3}, + {901, 3}, + {901, 3}, + {901, 3}, + {901, 3}, + {901, 3}, + {745, 1}, + {767, 1}, + {737, 1}, + {932, 1}, + {932, 1}, + {932, 1}, + {1101, 1}, + {1101, 1}, + {1101, 1}, + {1116, 3}, + {1016, 8}, + {1149, 4}, + {1125, 4}, + {988, 6}, + {1032, 4}, + {1137, 5}, + {1236, 0}, + {1236, 2}, + {1235, 0}, + {1235, 3}, + {1271, 0}, + {1271, 1}, + {1046, 0}, + {1046, 1}, + {1046, 2}, + {1046, 2}, + {1046, 2}, + {1046, 2}, + {1238, 0}, + {1238, 3}, + {1238, 3}, + {736, 3}, + {736, 3}, + {736, 3}, + {736, 3}, + {736, 2}, + {736, 9}, + {736, 3}, + {736, 3}, + {736, 3}, + {736, 1}, + {950, 1}, + {950, 1}, {1230, 0}, + {1230, 4}, + {1230, 7}, {1230, 3}, {1230, 3}, - {732, 3}, - {732, 3}, - {732, 3}, - {732, 3}, - {732, 2}, - {732, 9}, - {732, 3}, - {732, 3}, - {732, 3}, - {732, 1}, - {945, 1}, - {945, 1}, - {1222, 0}, - {1222, 4}, - {1222, 7}, - {1222, 3}, - {1222, 3}, - {735, 1}, + {739, 1}, + {739, 1}, + {738, 1}, + {738, 1}, + {782, 1}, + {782, 3}, + {1087, 1}, + {1087, 3}, + {830, 0}, + {830, 1}, + {1060, 0}, + {1060, 1}, + {1059, 1}, + {735, 3}, + {735, 3}, + {735, 4}, + {735, 5}, {735, 1}, - {734, 1}, - {734, 1}, - {778, 1}, - {778, 3}, - {1079, 1}, - {1079, 3}, - {826, 0}, - {826, 1}, - {1053, 0}, - {1053, 1}, - {1052, 1}, - {731, 3}, - {731, 3}, - {731, 4}, - {731, 5}, - {731, 1}, - {1195, 1}, - {1195, 1}, - {1195, 1}, - {1195, 1}, - {1195, 1}, - {1195, 1}, - {1195, 1}, - {1195, 1}, - {1180, 1}, - {1180, 2}, - {1240, 1}, - {1240, 2}, - {1235, 1}, - {1235, 2}, + {1204, 1}, + {1204, 1}, + {1204, 1}, + {1204, 1}, + {1204, 1}, + {1204, 1}, + {1204, 1}, + {1204, 1}, + {1189, 1}, + {1189, 2}, + {1248, 1}, + {1248, 2}, {1243, 1}, {1243, 2}, - {1285, 1}, - {1285, 2}, - {1174, 1}, - {1174, 1}, - {1174, 1}, - {730, 5}, - {730, 3}, - {730, 5}, - {730, 4}, - {730, 3}, - {730, 1}, - {1112, 1}, - {1112, 1}, + {1251, 1}, + {1251, 2}, + {1293, 1}, + {1293, 2}, + {1183, 1}, + {1183, 1}, + {1183, 1}, + {734, 5}, + {734, 3}, + {734, 5}, + {734, 4}, + {734, 3}, + {734, 1}, + {1120, 1}, + {1120, 1}, + {1250, 0}, + {1250, 2}, + {1051, 1}, + {1051, 3}, + {1051, 5}, + {1051, 2}, + {1221, 0}, + {1221, 1}, + {1220, 1}, + {1220, 2}, + {1220, 1}, + {1220, 2}, + {1223, 1}, + {1223, 3}, + {944, 3}, + {1066, 0}, + {1066, 2}, + {1184, 0}, + {1184, 1}, + {929, 3}, + {784, 0}, + {784, 2}, + {790, 0}, + {790, 3}, + {859, 0}, + {859, 1}, + {882, 0}, + {882, 1}, + {884, 0}, + {884, 2}, + {883, 3}, + {883, 1}, + {883, 3}, + {883, 2}, + {883, 1}, + {883, 1}, + {947, 1}, + {947, 3}, + {947, 3}, {1242, 0}, - {1242, 2}, - {1046, 1}, - {1046, 3}, - {1046, 5}, - {1046, 2}, - {1212, 0}, - {1212, 1}, - {1211, 1}, - {1211, 2}, - {1211, 1}, - {1211, 2}, - {1214, 1}, - {1214, 3}, - {939, 3}, - {1059, 0}, - {1059, 2}, - {1175, 0}, - {1175, 1}, - {924, 3}, - {780, 0}, - {780, 2}, - {785, 0}, - {785, 3}, - {855, 0}, - {855, 1}, - {878, 0}, - {878, 1}, - {880, 0}, - {880, 2}, - {879, 3}, - {879, 1}, - {879, 3}, - {879, 2}, - {879, 1}, - {879, 1}, - {942, 1}, - {942, 3}, - {942, 3}, - {1234, 0}, - {1234, 1}, - {858, 2}, - {858, 2}, - {905, 1}, - {905, 1}, + {1242, 1}, + {862, 2}, + {862, 2}, + {910, 1}, + {910, 1}, + {910, 1}, + {860, 1}, + {860, 1}, + {664, 1}, + {664, 1}, + {664, 1}, + {664, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {667, 1}, + {666, 1}, + {666, 1}, + {666, 1}, + {666, 1}, + {666, 1}, + {666, 1}, + {666, 1}, + {666, 1}, + {666, 1}, + {666, 1}, + {666, 1}, + {666, 1}, + {666, 1}, + {666, 1}, + {666, 1}, + {666, 1}, + {666, 1}, + {666, 1}, + {666, 1}, + {666, 1}, + {666, 1}, + {666, 1}, + {666, 1}, + {666, 1}, + {666, 1}, + {666, 1}, + {666, 1}, + {666, 1}, + {666, 1}, + {666, 1}, + {666, 1}, + {666, 1}, + {666, 1}, + {666, 1}, + {666, 1}, + {666, 1}, + {666, 1}, + {666, 1}, + {666, 1}, + {666, 1}, + {666, 1}, + {666, 1}, + {666, 1}, + {666, 1}, + {665, 1}, + {665, 1}, + {665, 1}, + {665, 1}, + {665, 1}, + {665, 1}, + {665, 1}, + {665, 1}, + {665, 1}, + {665, 1}, + {665, 1}, + {665, 1}, + {665, 1}, + {665, 1}, + {665, 1}, + {665, 1}, + {665, 1}, + {665, 1}, + {665, 1}, + {665, 1}, + {665, 1}, + {665, 1}, + {665, 1}, + {665, 1}, + {665, 1}, + {665, 1}, + {665, 1}, + {665, 1}, + {665, 1}, + {665, 1}, + {665, 1}, + {665, 1}, + {665, 1}, + {665, 1}, + {665, 1}, + {665, 1}, + {665, 1}, + {665, 1}, + {665, 1}, + {665, 1}, + {665, 1}, + {665, 1}, + {665, 1}, + {665, 1}, + {665, 1}, + {665, 1}, + {665, 1}, + {665, 1}, + {665, 1}, + {665, 1}, + {665, 1}, + {665, 1}, + {665, 1}, + {665, 1}, + {665, 1}, + {665, 1}, + {665, 1}, + {665, 1}, + {665, 1}, + {665, 1}, + {665, 1}, + {665, 1}, + {665, 1}, + {665, 1}, + {665, 1}, + {665, 1}, + {665, 1}, + {665, 1}, + {665, 1}, + {665, 1}, + {665, 1}, + {665, 1}, + {665, 1}, + {665, 1}, + {665, 1}, + {665, 1}, + {665, 1}, + {665, 1}, + {665, 1}, + {665, 1}, + {665, 1}, + {665, 1}, + {665, 1}, + {665, 1}, + {665, 1}, + {1001, 2}, + {1291, 1}, + {1291, 3}, + {1291, 4}, + {1291, 6}, + {777, 9}, + {1073, 0}, + {1073, 1}, + {1072, 5}, + {1072, 4}, + {1072, 4}, + {1072, 4}, + {1072, 4}, + {1072, 2}, + {1072, 1}, + {1072, 1}, + {1072, 1}, + {1072, 1}, + {1072, 2}, + {982, 1}, + {982, 1}, + {980, 1}, + {980, 3}, + {844, 3}, + {1344, 0}, + {1344, 1}, + {1343, 3}, + {1343, 1}, + {801, 1}, + {801, 1}, + {1009, 3}, + {1203, 0}, + {1203, 1}, + {1203, 3}, + {1268, 0}, + {1268, 5}, + {780, 6}, + {716, 1}, + {716, 1}, + {716, 1}, + {716, 1}, + {716, 1}, + {716, 1}, + {716, 1}, + {716, 2}, + {716, 1}, + {716, 1}, + {716, 2}, + {716, 2}, + {717, 1}, + {717, 2}, + {1177, 1}, + {1177, 3}, + {990, 2}, + {772, 3}, {905, 1}, - {856, 1}, - {856, 1}, - {661, 1}, - {661, 1}, - {661, 1}, - {661, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {664, 1}, - {663, 1}, - {663, 1}, - {663, 1}, - {663, 1}, - {663, 1}, - {663, 1}, - {663, 1}, - {663, 1}, - {663, 1}, - {663, 1}, - {663, 1}, - {663, 1}, - {663, 1}, - {663, 1}, - {663, 1}, - {663, 1}, - {663, 1}, - {663, 1}, - {663, 1}, - {663, 1}, - {663, 1}, - {663, 1}, - {663, 1}, - {663, 1}, - {663, 1}, - {663, 1}, - {663, 1}, - {663, 1}, - {663, 1}, - {663, 1}, - {663, 1}, - {663, 1}, - {663, 1}, - {663, 1}, - {663, 1}, - {663, 1}, - {663, 1}, - {663, 1}, - {663, 1}, - {663, 1}, - {663, 1}, - {663, 1}, - {663, 1}, - {662, 1}, - {662, 1}, - {662, 1}, - {662, 1}, - {662, 1}, - {662, 1}, - {662, 1}, - {662, 1}, - {662, 1}, - {662, 1}, - {662, 1}, - {662, 1}, - {662, 1}, - {662, 1}, - {662, 1}, - {662, 1}, - {662, 1}, - {662, 1}, - {662, 1}, - {662, 1}, - {662, 1}, - {662, 1}, - {662, 1}, - {662, 1}, - {662, 1}, - {662, 1}, - {662, 1}, - {662, 1}, - {662, 1}, - {662, 1}, - {662, 1}, - {662, 1}, - {662, 1}, - {662, 1}, - {662, 1}, - {662, 1}, - {662, 1}, - {662, 1}, - {662, 1}, - {662, 1}, - {662, 1}, - {662, 1}, - {662, 1}, - {662, 1}, - {662, 1}, - {662, 1}, - {662, 1}, - {662, 1}, - {662, 1}, - {662, 1}, - {662, 1}, - {662, 1}, - {662, 1}, - {662, 1}, - {662, 1}, - {662, 1}, - {662, 1}, - {662, 1}, - {662, 1}, - {662, 1}, - {662, 1}, - {662, 1}, - {662, 1}, - {662, 1}, - {662, 1}, - {662, 1}, - {662, 1}, - {662, 1}, - {662, 1}, - {662, 1}, - {662, 1}, - {662, 1}, - {662, 1}, - {662, 1}, - {662, 1}, - {662, 1}, - {662, 1}, - {662, 1}, - {662, 1}, - {662, 1}, - {662, 1}, - {662, 1}, - {662, 1}, - {662, 1}, - {662, 1}, - {997, 2}, - {1283, 1}, - {1283, 3}, - {1283, 4}, - {1283, 6}, - {774, 9}, - {1066, 0}, - {1066, 1}, - {1065, 5}, - {1065, 4}, - {1065, 4}, - {1065, 4}, - {1065, 4}, - {1065, 2}, - {1065, 1}, - {1065, 1}, - {1065, 1}, - {1065, 1}, - {1065, 2}, - {977, 1}, - {977, 1}, - {975, 1}, - {975, 3}, - {839, 3}, - {1335, 0}, - {1335, 1}, - {1334, 3}, - {1334, 1}, - {797, 1}, - {797, 1}, - {1005, 3}, - {1194, 0}, - {1194, 1}, - {1194, 3}, - {1260, 0}, - {1260, 5}, - {775, 6}, - {712, 1}, - {712, 1}, - {712, 1}, - {712, 1}, - {712, 1}, - {712, 1}, - {712, 1}, - {712, 2}, - {712, 1}, - {712, 1}, - {712, 2}, - {712, 2}, - {713, 1}, - {713, 2}, - {1168, 1}, - {1168, 3}, - {985, 2}, - {767, 3}, - {900, 1}, - {900, 3}, - {871, 1}, - {871, 2}, - {1272, 1}, - {1272, 1}, - {949, 0}, - {949, 1}, - {949, 1}, - {812, 0}, - {812, 1}, - {729, 3}, - {729, 3}, - {729, 3}, - {729, 3}, - {729, 3}, - {729, 3}, - {729, 5}, - {729, 5}, - {729, 5}, - {729, 3}, - {729, 3}, - {729, 3}, - {729, 3}, - {729, 3}, - {729, 3}, - {729, 1}, - {711, 1}, - {711, 3}, - {711, 5}, - {724, 1}, - {724, 1}, - {724, 1}, - {724, 1}, - {724, 3}, - {724, 1}, - {724, 1}, - {724, 1}, - {724, 1}, - {724, 1}, - {724, 2}, - {724, 2}, - {724, 2}, - {724, 2}, - {724, 3}, - {724, 2}, - {724, 1}, - {724, 3}, - {724, 5}, - {724, 6}, - {724, 2}, - {724, 4}, - {724, 2}, - {724, 6}, - {724, 5}, - {724, 6}, - {724, 6}, - {724, 4}, - {724, 4}, - {724, 3}, - {724, 3}, - {784, 1}, - {784, 1}, - {787, 1}, - {787, 1}, - {818, 0}, - {818, 1}, - {933, 0}, - {933, 1}, - {816, 1}, - {816, 2}, - {718, 1}, - {718, 1}, - {718, 1}, - {718, 1}, - {718, 1}, - {718, 1}, - {718, 1}, - {718, 1}, - {718, 1}, - {718, 1}, - {718, 1}, - {718, 1}, - {718, 1}, - {718, 1}, - {718, 1}, - {718, 1}, - {718, 1}, - {718, 1}, - {718, 1}, - {718, 1}, - {718, 1}, - {718, 1}, - {718, 1}, - {718, 1}, - {718, 1}, - {718, 1}, - {718, 1}, - {718, 1}, - {718, 1}, - {1092, 0}, - {1092, 2}, + {905, 3}, + {875, 1}, + {875, 2}, + {1280, 1}, + {1280, 1}, + {954, 0}, + {954, 1}, + {954, 1}, + {817, 0}, + {817, 1}, + {733, 3}, + {733, 3}, + {733, 3}, + {733, 3}, + {733, 3}, + {733, 3}, + {733, 5}, + {733, 5}, + {733, 5}, + {733, 3}, + {733, 3}, + {733, 3}, + {733, 3}, + {733, 3}, + {733, 3}, + {733, 1}, + {715, 1}, + {715, 3}, + {715, 5}, + {728, 1}, + {728, 1}, + {728, 1}, + {728, 1}, + {728, 3}, + {728, 1}, + {728, 1}, + {728, 1}, + {728, 1}, + {728, 1}, + {728, 2}, + {728, 2}, + {728, 2}, + {728, 2}, + {728, 3}, + {728, 2}, + {728, 1}, + {728, 3}, + {728, 5}, + {728, 6}, + {728, 2}, + {728, 4}, + {728, 2}, + {728, 6}, + {728, 5}, + {728, 6}, + {728, 6}, + {728, 4}, + {728, 4}, + {728, 3}, + {728, 3}, + {789, 1}, + {789, 1}, + {792, 1}, + {792, 1}, + {822, 0}, + {822, 1}, + {938, 0}, + {938, 1}, + {821, 1}, + {821, 2}, {722, 1}, {722, 1}, {722, 1}, {722, 1}, {722, 1}, + {722, 1}, + {722, 1}, + {722, 1}, + {722, 1}, + {722, 1}, + {722, 1}, + {722, 1}, + {722, 1}, + {722, 1}, + {722, 1}, + {722, 1}, + {722, 1}, + {722, 1}, + {722, 1}, + {722, 1}, + {722, 1}, + {722, 1}, + {722, 1}, + {722, 1}, + {722, 1}, + {722, 1}, + {722, 1}, + {722, 1}, + {722, 1}, + {1100, 0}, + {1100, 2}, + {726, 1}, + {726, 1}, + {726, 1}, + {726, 1}, + {726, 1}, + {725, 1}, + {725, 1}, + {725, 1}, + {725, 1}, + {725, 1}, + {725, 1}, + {720, 4}, + {720, 4}, + {720, 2}, + {720, 3}, + {720, 2}, + {720, 4}, + {720, 6}, + {720, 2}, + {720, 2}, + {720, 2}, + {720, 4}, + {720, 6}, + {720, 4}, + {721, 4}, + {721, 4}, + {721, 6}, + {721, 8}, + {721, 8}, + {721, 6}, + {721, 6}, + {721, 6}, + {721, 6}, + {721, 6}, + {721, 8}, + {721, 8}, + {721, 8}, + {721, 8}, + {721, 4}, + {721, 6}, + {721, 6}, + {721, 7}, + {721, 4}, + {721, 7}, + {721, 7}, {721, 1}, - {721, 1}, - {721, 1}, - {721, 1}, - {721, 1}, - {721, 1}, - {716, 4}, - {716, 4}, - {716, 2}, - {716, 3}, - {716, 2}, - {716, 4}, - {716, 6}, - {716, 2}, - {716, 2}, - {716, 2}, - {716, 4}, - {716, 6}, - {716, 4}, - {717, 4}, - {717, 4}, - {717, 6}, - {717, 8}, - {717, 8}, - {717, 6}, - {717, 6}, - {717, 6}, - {717, 6}, - {717, 6}, - {717, 8}, - {717, 8}, - {717, 8}, - {717, 8}, - {717, 4}, - {717, 6}, - {717, 6}, - {717, 7}, - {717, 4}, - {717, 7}, - {717, 7}, - {717, 1}, - {717, 8}, - {1224, 1}, - {1224, 1}, - {1224, 1}, - {1224, 1}, - {719, 1}, - {719, 1}, - {720, 1}, - {720, 1}, - {1329, 1}, - {1329, 1}, - {1329, 1}, - {723, 4}, - {723, 6}, + {721, 8}, + {1232, 1}, + {1232, 1}, + {1232, 1}, + {1232, 1}, {723, 1}, - {725, 6}, - {725, 4}, - {725, 4}, - {725, 5}, - {725, 6}, - {725, 5}, - {725, 6}, - {725, 5}, - {725, 6}, - {725, 5}, - {725, 6}, - {725, 5}, - {725, 5}, - {725, 8}, - {725, 6}, - {725, 6}, - {725, 6}, - {725, 6}, - {725, 6}, - {725, 6}, - {725, 6}, - {725, 5}, - {725, 6}, - {725, 7}, - {725, 8}, - {725, 8}, - {725, 9}, - {1266, 0}, - {1266, 2}, - {715, 4}, - {715, 6}, - {1223, 0}, - {1223, 2}, - {1223, 3}, - {815, 1}, - {815, 1}, - {815, 1}, - {815, 1}, - {815, 1}, - {815, 1}, - {815, 1}, - {815, 1}, - {815, 1}, - {815, 1}, - {815, 1}, - {815, 1}, - {796, 1}, - {796, 1}, - {796, 1}, - {796, 1}, - {796, 1}, - {796, 1}, - {796, 1}, - {796, 1}, - {796, 1}, - {796, 1}, - {796, 1}, - {796, 1}, - {796, 1}, - {796, 1}, - {796, 1}, - {796, 1}, - {796, 1}, - {1209, 0}, - {1209, 1}, - {1344, 1}, - {1344, 2}, - {1159, 4}, - {1207, 0}, - {1207, 2}, - {998, 2}, - {998, 3}, - {998, 1}, - {998, 1}, - {998, 2}, - {998, 2}, - {998, 2}, - {998, 2}, - {998, 2}, - {998, 1}, - {998, 1}, - {998, 2}, - {998, 1}, - {837, 1}, - {837, 1}, - {837, 1}, - {887, 0}, - {887, 1}, - {737, 1}, - {737, 3}, - {795, 1}, - {795, 3}, - {917, 2}, - {917, 4}, - {967, 1}, - {967, 3}, - {907, 0}, - {907, 2}, - {1109, 0}, - {1109, 1}, - {1106, 4}, - {1282, 1}, - {1282, 1}, - {1042, 2}, - {1042, 4}, + {723, 1}, + {724, 1}, + {724, 1}, + {1338, 1}, + {1338, 1}, + {1338, 1}, + {727, 4}, + {727, 6}, + {727, 1}, + {729, 6}, + {729, 4}, + {729, 4}, + {729, 5}, + {729, 6}, + {729, 5}, + {729, 6}, + {729, 5}, + {729, 6}, + {729, 5}, + {729, 6}, + {729, 5}, + {729, 5}, + {729, 8}, + {729, 6}, + {729, 6}, + {729, 6}, + {729, 6}, + {729, 6}, + {729, 6}, + {729, 6}, + {729, 5}, + {729, 6}, + {729, 7}, + {729, 8}, + {729, 8}, + {729, 9}, + {1274, 0}, + {1274, 2}, + {719, 4}, + {719, 6}, + {1231, 0}, + {1231, 2}, + {1231, 3}, + {820, 1}, + {820, 1}, + {820, 1}, + {820, 1}, + {820, 1}, + {820, 1}, + {820, 1}, + {820, 1}, + {820, 1}, + {820, 1}, + {820, 1}, + {820, 1}, + {800, 1}, + {800, 1}, + {800, 1}, + {800, 1}, + {800, 1}, + {800, 1}, + {800, 1}, + {800, 1}, + {800, 1}, + {800, 1}, + {800, 1}, + {800, 1}, + {800, 1}, + {800, 1}, + {800, 1}, + {800, 1}, + {800, 1}, + {1218, 0}, + {1218, 1}, + {1353, 1}, + {1353, 2}, + {1168, 4}, + {1216, 0}, + {1216, 2}, + {1002, 2}, + {1002, 3}, + {1002, 1}, + {1002, 1}, + {1002, 2}, + {1002, 2}, + {1002, 2}, + {1002, 2}, + {1002, 2}, + {1002, 1}, + {1002, 1}, + {1002, 2}, + {1002, 1}, + {842, 1}, + {842, 1}, + {842, 1}, + {891, 0}, + {891, 1}, + {740, 1}, + {740, 3}, + {786, 1}, + {786, 3}, + {922, 2}, + {922, 4}, + {972, 1}, + {972, 3}, + {912, 0}, + {912, 2}, + {1117, 0}, + {1117, 1}, + {1114, 4}, + {1290, 1}, + {1290, 1}, + {1047, 2}, + {1047, 4}, + {1341, 1}, + {1341, 3}, + {1026, 3}, + {1027, 1}, + {1027, 1}, + {867, 1}, + {867, 2}, + {867, 3}, + {867, 4}, + {1011, 4}, + {1011, 4}, + {1011, 5}, + {1011, 2}, + {1011, 3}, + {1011, 1}, + {1011, 2}, + {1141, 1}, + {1124, 1}, + {1067, 2}, + {753, 4}, + {754, 3}, + {755, 7}, + {1333, 0}, + {1333, 7}, + {1333, 5}, + {1332, 0}, {1332, 1}, - {1332, 3}, - {1021, 3}, - {1022, 1}, + {1332, 1}, + {1332, 1}, + {1334, 0}, + {1334, 1}, + {1334, 1}, + {1123, 0}, + {1123, 4}, + {752, 7}, + {752, 6}, + {752, 5}, + {752, 6}, + {752, 6}, + {764, 2}, + {764, 2}, + {763, 2}, + {763, 3}, + {1173, 3}, + {1173, 1}, + {935, 4}, + {1229, 2}, + {1354, 0}, + {1354, 2}, + {1355, 1}, + {1355, 3}, + {1169, 3}, + {928, 1}, + {1171, 3}, + {1360, 4}, + {1272, 0}, + {1272, 1}, + {1276, 0}, + {1276, 3}, + {1279, 0}, + {1279, 3}, + {1278, 0}, + {1278, 2}, + {1358, 1}, + {1358, 1}, + {1358, 1}, + {1357, 1}, + {1357, 1}, + {984, 2}, + {984, 2}, + {984, 2}, + {984, 4}, + {984, 2}, + {1356, 4}, + {1170, 1}, + {1170, 2}, + {1170, 2}, + {1170, 2}, + {1170, 4}, + {769, 0}, + {769, 1}, + {751, 2}, + {1359, 1}, + {1359, 1}, + {732, 4}, + {732, 4}, + {732, 4}, + {732, 4}, + {732, 4}, + {732, 5}, + {732, 7}, + {732, 7}, + {732, 6}, + {732, 6}, + {732, 9}, + {1102, 0}, + {1102, 3}, + {1102, 3}, + {1103, 0}, + {1103, 2}, + {889, 0}, + {889, 2}, + {889, 2}, + {1273, 0}, + {1273, 2}, + {1273, 2}, + {1331, 1}, + {894, 1}, + {894, 3}, + {856, 1}, + {856, 4}, + {807, 1}, + {807, 1}, + {806, 6}, + {806, 2}, + {806, 3}, + {864, 0}, + {864, 4}, + {921, 0}, + {921, 1}, + {920, 1}, + {920, 2}, + {946, 2}, + {946, 2}, + {946, 2}, + {1239, 0}, + {1239, 2}, + {1239, 3}, + {1239, 3}, + {945, 5}, + {861, 0}, + {861, 1}, + {861, 3}, + {861, 1}, + {861, 3}, + {1069, 1}, + {1069, 2}, + {1070, 0}, + {1070, 1}, + {802, 3}, + {802, 5}, + {802, 7}, + {802, 7}, + {802, 9}, + {802, 4}, + {802, 6}, + {802, 3}, + {802, 5}, + {823, 1}, + {823, 1}, + {1104, 0}, + {1104, 1}, + {827, 1}, + {827, 2}, + {827, 2}, + {1078, 0}, + {1078, 2}, + {886, 1}, + {886, 1}, + {1297, 1}, + {1297, 1}, + {1225, 1}, + {1225, 1}, + {1219, 0}, + {1219, 1}, + {773, 2}, + {773, 4}, + {773, 4}, + {773, 5}, + {834, 0}, + {834, 1}, + {1131, 1}, + {1131, 1}, + {1131, 1}, + {1131, 1}, + {1131, 1}, + {1131, 1}, + {1131, 1}, + {1131, 1}, + {1131, 1}, + {1299, 0}, + {1299, 1}, + {1300, 2}, + {1300, 1}, + {871, 1}, + {923, 0}, + {923, 1}, + {1132, 1}, + {1132, 1}, + {1298, 1}, + {970, 0}, + {970, 1}, + {893, 0}, + {893, 5}, + {713, 3}, + {713, 3}, + {713, 3}, + {713, 3}, + {892, 0}, + {892, 3}, + {892, 3}, + {892, 4}, + {892, 5}, + {892, 4}, + {892, 5}, + {892, 5}, + {892, 4}, + {1093, 0}, + {1093, 2}, + {765, 1}, + {765, 1}, + {765, 2}, + {765, 2}, + {762, 3}, + {762, 3}, + {761, 4}, + {761, 4}, + {761, 5}, + {761, 2}, + {761, 2}, + {761, 3}, + {760, 1}, + {760, 3}, + {756, 1}, + {756, 1}, + {1302, 2}, + {1302, 2}, + {1302, 2}, + {971, 1}, + {1003, 9}, + {1003, 9}, + {869, 2}, + {869, 4}, + {869, 6}, + {869, 4}, + {869, 4}, + {869, 3}, + {869, 6}, + {869, 6}, + {869, 3}, + {1136, 3}, + {1135, 6}, + {1134, 1}, + {1134, 1}, + {1134, 1}, + {1303, 3}, + {1303, 1}, + {1303, 1}, + {976, 1}, + {976, 3}, + {926, 3}, + {926, 2}, + {926, 2}, + {926, 3}, + {1247, 2}, + {1247, 2}, + {1247, 2}, + {1247, 1}, + {845, 1}, + {845, 1}, + {845, 1}, + {828, 1}, + {828, 1}, + {835, 1}, + {835, 3}, + {907, 1}, + {907, 3}, + {907, 3}, + {983, 3}, + {983, 4}, + {983, 4}, + {983, 4}, + {983, 3}, + {983, 3}, + {983, 2}, + {983, 4}, + {983, 4}, + {983, 2}, + {983, 2}, + {1195, 1}, + {1195, 1}, + {811, 1}, + {811, 1}, + {876, 1}, + {876, 1}, + {1167, 1}, + {1167, 3}, + {731, 1}, + {731, 1}, + {730, 1}, + {714, 1}, + {781, 1}, + {781, 3}, + {781, 2}, + {781, 2}, + {872, 1}, + {872, 3}, + {1109, 1}, + {1109, 4}, + {897, 1}, + {826, 1}, + {826, 1}, + {805, 3}, + {805, 2}, + {968, 1}, + {968, 1}, + {825, 1}, + {825, 1}, + {866, 1}, + {866, 3}, + {1176, 2}, + {1176, 4}, + {1176, 4}, + {985, 3}, + {985, 5}, + {985, 6}, + {985, 4}, + {985, 4}, + {985, 5}, + {985, 5}, + {985, 5}, + {985, 6}, + {985, 4}, + {985, 5}, + {985, 6}, + {985, 6}, + {985, 4}, + {985, 3}, + {985, 3}, + {985, 4}, + {985, 4}, + {985, 5}, + {985, 5}, + {985, 3}, + {985, 3}, + {985, 3}, + {985, 3}, + {985, 3}, + {985, 3}, + {985, 3}, + {985, 3}, + {985, 4}, + {1175, 2}, + {1175, 2}, + {1175, 3}, + {1175, 3}, + {1233, 1}, + {1233, 3}, + {1064, 5}, + {1090, 1}, + {1090, 3}, + {1139, 3}, + {1139, 4}, + {1139, 4}, + {1139, 5}, + {1139, 4}, + {1139, 5}, + {1139, 4}, + {1139, 4}, + {1139, 6}, + {1139, 4}, + {1139, 8}, + {1139, 2}, + {1139, 5}, + {1139, 3}, + {1139, 3}, + {1139, 2}, + {1139, 5}, + {1139, 2}, + {1139, 2}, + {1139, 4}, + {1307, 2}, + {1307, 2}, + {1307, 4}, + {1310, 0}, + {1310, 1}, + {1309, 1}, + {1309, 3}, + {1138, 1}, + {1138, 1}, + {1138, 2}, + {1138, 2}, + {1138, 2}, + {1138, 1}, + {1138, 1}, + {1138, 1}, + {1138, 1}, + {1308, 0}, + {1308, 3}, + {1342, 0}, + {1342, 2}, + {1305, 1}, + {1305, 1}, + {1305, 1}, + {809, 1}, + {809, 1}, + {1311, 1}, + {1311, 1}, + {1311, 1}, + {1311, 1}, + {1311, 3}, + {1311, 3}, + {1311, 3}, + {1311, 3}, + {1311, 5}, + {1311, 4}, + {1311, 5}, + {1311, 5}, + {1311, 1}, + {1311, 5}, + {1311, 1}, + {1311, 2}, + {1311, 2}, + {1311, 2}, + {1311, 1}, + {1311, 2}, + {1311, 2}, + {1311, 2}, + {1311, 2}, + {1311, 2}, + {1311, 2}, + {1311, 2}, + {1311, 1}, + {1311, 1}, + {1311, 1}, + {1311, 1}, + {1311, 1}, + {1311, 1}, + {1311, 1}, + {1311, 1}, + {1311, 1}, + {1311, 1}, + {1311, 1}, + {1311, 2}, + {1311, 1}, + {1311, 1}, + {1311, 1}, + {1311, 1}, + {1311, 2}, + {1306, 0}, + {1306, 2}, + {1306, 2}, + {943, 0}, + {943, 1}, + {943, 1}, + {1319, 0}, + {1319, 1}, + {1319, 1}, + {1319, 1}, + {1098, 0}, + {1098, 1}, + {846, 0}, + {846, 2}, + {1140, 2}, + {1058, 3}, + {960, 1}, + {960, 3}, + {1228, 1}, + {1228, 1}, + {1228, 3}, + {1228, 1}, + {1228, 2}, + {1228, 3}, + {1228, 1}, + {1257, 0}, + {1257, 1}, + {1257, 1}, + {1257, 1}, + {1257, 1}, + {1257, 1}, + {833, 0}, + {833, 1}, + {833, 1}, + {1155, 0}, + {1155, 1}, + {974, 0}, + {974, 2}, + {1361, 0}, + {1361, 3}, + {1145, 1}, + {1145, 1}, + {1145, 1}, + {1145, 1}, + {1145, 1}, + {1145, 1}, + {1145, 1}, + {1145, 1}, + {1145, 1}, + {1145, 1}, + {1145, 1}, + {1145, 1}, + {1145, 1}, + {1145, 1}, + {1145, 1}, + {1145, 1}, + {1145, 1}, + {1145, 1}, + {1145, 1}, + {1145, 1}, + {1145, 1}, + {1145, 1}, + {1145, 1}, + {1145, 1}, + {1145, 1}, + {1145, 1}, + {1145, 1}, + {1145, 1}, + {1145, 1}, + {1145, 1}, + {1145, 1}, + {1145, 1}, + {1145, 1}, + {1145, 1}, + {1145, 1}, + {1145, 1}, + {1145, 1}, + {1145, 1}, + {1145, 1}, + {1145, 1}, + {1145, 1}, + {1145, 1}, + {1145, 1}, + {1145, 1}, + {1145, 1}, + {1145, 1}, + {1145, 1}, + {1145, 1}, + {1145, 1}, + {1145, 1}, + {1145, 1}, + {1145, 1}, + {1145, 1}, + {1145, 1}, + {1145, 1}, + {1145, 1}, + {1145, 1}, + {1145, 1}, + {1145, 1}, + {1145, 1}, + {1145, 1}, + {1145, 1}, + {1145, 1}, + {1145, 1}, + {1145, 1}, + {1145, 1}, + {1145, 1}, + {1145, 1}, + {1145, 1}, + {1145, 1}, + {1145, 1}, + {1145, 1}, + {1145, 1}, + {1145, 1}, + {1145, 1}, + {1145, 1}, + {1145, 1}, + {1145, 1}, + {1145, 1}, + {1145, 1}, + {1145, 1}, + {1145, 1}, + {1145, 1}, + {1145, 1}, + {1145, 1}, + {1145, 1}, + {1145, 1}, + {1145, 1}, + {1145, 1}, + {1145, 1}, + {1145, 1}, + {1145, 1}, + {1145, 1}, + {925, 1}, + {925, 1}, + {925, 1}, + {925, 1}, + {925, 1}, + {925, 1}, + {925, 1}, + {925, 1}, + {925, 1}, + {925, 1}, + {925, 1}, + {925, 1}, + {925, 1}, + {925, 1}, + {925, 1}, + {925, 1}, + {829, 1}, + {829, 1}, + {829, 1}, + {829, 1}, + {829, 1}, + {829, 1}, + {829, 1}, + {829, 1}, + {829, 1}, + {1318, 1}, + {1318, 3}, + {908, 2}, + {1004, 1}, + {1004, 1}, + {973, 1}, + {973, 1}, + {1153, 1}, + {1153, 3}, + {1329, 0}, + {1329, 3}, + {847, 1}, + {847, 4}, + {847, 4}, + {847, 4}, + {847, 3}, + {847, 4}, + {847, 3}, + {847, 3}, + {847, 3}, + {847, 3}, + {847, 3}, + {847, 3}, + {847, 3}, + {847, 3}, + {847, 1}, + {847, 3}, + {847, 3}, + {847, 3}, + {847, 3}, + {847, 3}, + {847, 3}, + {847, 3}, + {847, 3}, + {847, 3}, + {847, 3}, + {847, 3}, + {847, 3}, + {847, 3}, + {847, 2}, + {847, 2}, + {847, 3}, + {847, 3}, + {847, 5}, + {847, 3}, + {840, 0}, + {840, 1}, + {1147, 1}, + {1147, 1}, + {1022, 0}, {1022, 1}, - {863, 1}, - {863, 2}, - {863, 3}, - {863, 4}, - {1006, 4}, - {1006, 4}, - {1006, 5}, - {1006, 2}, - {1006, 3}, - {1006, 1}, - {1006, 2}, - {1133, 1}, - {1116, 1}, - {1060, 2}, - {749, 4}, - {750, 3}, - {751, 7}, - {1324, 0}, - {1324, 7}, + {924, 1}, + {924, 2}, + {924, 3}, + {1277, 0}, + {1277, 1}, + {1161, 3}, + {843, 3}, + {843, 3}, + {843, 3}, + {843, 3}, + {843, 3}, + {843, 3}, + {843, 3}, + {843, 3}, + {843, 3}, + {843, 3}, + {843, 3}, + {843, 3}, + {843, 3}, + {843, 3}, + {843, 3}, + {1339, 1}, + {1339, 1}, + {1339, 1}, + {1265, 3}, + {1265, 2}, + {1265, 3}, + {1265, 3}, + {1265, 2}, + {1245, 1}, + {1245, 1}, + {1245, 1}, + {1245, 1}, + {1245, 1}, + {1245, 1}, + {1245, 1}, + {1245, 1}, + {1245, 1}, + {1245, 1}, + {1245, 1}, + {1193, 1}, + {1193, 1}, + {1099, 0}, + {1099, 1}, + {1099, 1}, + {1226, 1}, + {1226, 1}, + {1226, 1}, + {1227, 1}, + {1227, 1}, + {1227, 1}, + {1227, 2}, + {1191, 1}, + {1324, 3}, + {1324, 2}, + {1324, 3}, + {1324, 2}, + {1324, 3}, + {1324, 3}, + {1324, 2}, + {1324, 2}, + {1324, 1}, + {1324, 2}, {1324, 5}, - {1323, 0}, - {1323, 1}, - {1323, 1}, - {1323, 1}, - {1325, 0}, - {1325, 1}, - {1325, 1}, - {1115, 0}, - {1115, 4}, - {748, 7}, - {748, 6}, - {748, 5}, - {748, 6}, - {748, 6}, - {760, 2}, - {760, 2}, - {759, 2}, - {759, 3}, - {1164, 3}, - {1164, 1}, - {930, 4}, - {1221, 2}, - {1345, 0}, - {1345, 2}, - {1346, 1}, - {1346, 3}, - {1160, 3}, - {923, 1}, - {1162, 3}, - {1351, 4}, - {1264, 0}, - {1264, 1}, - {1268, 0}, - {1268, 3}, - {1271, 0}, - {1271, 3}, + {1324, 5}, + {1324, 1}, + {1324, 3}, + {1324, 2}, + {906, 1}, + {906, 1}, + {1263, 1}, + {1263, 2}, + {1263, 2}, + {1166, 2}, + {1166, 2}, + {1166, 1}, + {1166, 1}, + {1266, 2}, + {1266, 2}, + {1266, 1}, + {1266, 2}, + {1266, 2}, + {1266, 3}, + {1266, 3}, + {1266, 2}, + {1364, 1}, + {1364, 1}, + {1192, 1}, + {1192, 2}, + {1192, 1}, + {1192, 1}, + {1192, 2}, + {1336, 1}, + {1336, 2}, + {1336, 1}, + {1336, 1}, + {888, 1}, + {888, 1}, + {888, 1}, + {888, 1}, + {1211, 1}, + {1211, 2}, + {1211, 2}, + {1211, 2}, + {1211, 3}, + {768, 3}, + {794, 0}, + {794, 1}, + {879, 1}, + {879, 1}, + {879, 1}, + {880, 0}, + {880, 2}, + {909, 0}, + {909, 1}, + {909, 1}, + {914, 5}, + {1269, 0}, + {1269, 1}, + {803, 0}, + {803, 2}, + {803, 3}, {1270, 0}, {1270, 2}, - {1349, 1}, - {1349, 1}, - {1349, 1}, - {1348, 1}, - {1348, 1}, - {979, 2}, - {979, 2}, - {979, 2}, - {979, 4}, - {979, 2}, - {1347, 4}, - {1161, 1}, - {1161, 2}, - {1161, 2}, - {1161, 2}, - {1161, 4}, - {765, 0}, - {765, 1}, - {747, 2}, - {1350, 1}, - {1350, 1}, - {728, 4}, - {728, 4}, - {728, 4}, - {728, 4}, - {728, 4}, - {728, 5}, - {728, 7}, - {728, 7}, - {728, 6}, - {728, 6}, - {728, 9}, - {1094, 0}, - {1094, 3}, - {1094, 3}, - {1095, 0}, - {1095, 2}, - {885, 0}, - {885, 2}, - {885, 2}, - {1265, 0}, - {1265, 2}, - {1265, 2}, + {779, 2}, + {779, 1}, + {779, 2}, + {1097, 0}, + {1097, 2}, {1322, 1}, - {890, 1}, - {890, 3}, - {852, 1}, - {852, 4}, - {803, 1}, - {803, 1}, - {802, 6}, - {802, 2}, - {802, 3}, - {860, 0}, - {860, 4}, - {916, 0}, - {916, 1}, - {915, 1}, - {915, 2}, - {941, 2}, - {941, 2}, - {941, 2}, - {1231, 0}, - {1231, 2}, - {1231, 3}, - {1231, 3}, - {940, 5}, - {857, 0}, - {857, 1}, - {857, 3}, - {857, 1}, - {857, 3}, - {1062, 1}, - {1062, 2}, - {1063, 0}, - {1063, 1}, - {798, 3}, - {798, 5}, - {798, 7}, - {798, 7}, - {798, 9}, - {798, 4}, - {798, 6}, - {798, 3}, - {798, 5}, - {819, 1}, - {819, 1}, - {1096, 0}, - {1096, 1}, - {823, 1}, - {823, 2}, - {823, 2}, - {1071, 0}, - {1071, 2}, - {882, 1}, - {882, 1}, - {1289, 1}, - {1289, 1}, - {1216, 1}, - {1216, 1}, - {1210, 0}, - {1210, 1}, - {768, 2}, - {768, 4}, - {768, 4}, - {768, 5}, - {830, 0}, - {830, 1}, - {1123, 1}, - {1123, 1}, - {1123, 1}, - {1123, 1}, - {1123, 1}, - {1123, 1}, - {1123, 1}, - {1123, 1}, - {1123, 1}, - {1291, 0}, - {1291, 1}, - {1292, 2}, - {1292, 1}, - {867, 1}, - {918, 0}, - {918, 1}, - {1124, 1}, - {1124, 1}, - {1290, 1}, - {965, 0}, - {965, 1}, - {889, 0}, - {889, 5}, - {709, 3}, - {709, 3}, - {709, 3}, - {709, 3}, - {888, 0}, - {888, 3}, - {888, 3}, - {888, 4}, - {888, 5}, - {888, 4}, - {888, 5}, - {888, 5}, - {888, 4}, - {1085, 0}, - {1085, 2}, - {761, 1}, - {761, 1}, - {761, 2}, - {761, 2}, - {758, 3}, - {758, 3}, - {757, 4}, - {757, 4}, - {757, 5}, - {757, 2}, - {757, 2}, - {757, 3}, - {756, 1}, - {756, 3}, - {752, 1}, - {752, 1}, - {1294, 2}, - {1294, 2}, - {1294, 2}, + {1322, 3}, + {975, 1}, + {975, 1}, + {975, 1}, + {1159, 1}, + {1159, 3}, + {742, 1}, + {742, 1}, + {1323, 1}, + {1323, 1}, + {1323, 1}, + {778, 1}, + {778, 2}, + {770, 10}, + {770, 8}, + {1165, 2}, + {795, 2}, + {796, 0}, + {796, 1}, + {1369, 0}, + {1369, 1}, + {1023, 8}, + {1019, 4}, + {995, 8}, + {995, 9}, + {989, 3}, + {1244, 2}, + {1244, 6}, + {895, 2}, + {927, 1}, + {927, 3}, + {1013, 0}, + {1013, 2}, + {1205, 1}, + {1205, 2}, + {1012, 2}, + {1012, 2}, + {1012, 2}, + {1012, 2}, + {966, 0}, {966, 1}, - {999, 9}, - {999, 9}, - {865, 2}, - {865, 4}, - {865, 6}, - {865, 4}, - {865, 4}, - {865, 3}, - {865, 6}, - {865, 6}, - {865, 3}, - {1128, 3}, - {1127, 6}, - {1126, 1}, - {1126, 1}, - {1126, 1}, - {1295, 3}, + {965, 2}, + {965, 2}, + {965, 2}, + {965, 2}, {1295, 1}, - {1295, 1}, - {971, 1}, - {971, 3}, - {921, 3}, - {921, 2}, - {921, 2}, - {921, 3}, - {1239, 2}, - {1239, 2}, - {1239, 2}, - {1239, 1}, - {840, 1}, - {840, 1}, - {840, 1}, - {824, 1}, - {824, 1}, - {831, 1}, - {831, 3}, - {902, 1}, - {902, 3}, - {902, 3}, - {978, 3}, - {978, 4}, - {978, 4}, - {978, 4}, - {978, 3}, - {978, 3}, - {978, 2}, - {978, 4}, - {978, 4}, - {978, 2}, - {978, 2}, - {1186, 1}, - {1186, 1}, - {807, 1}, - {807, 1}, - {872, 1}, - {872, 1}, - {1158, 1}, - {1158, 3}, - {727, 1}, - {727, 1}, - {726, 1}, - {710, 1}, - {777, 1}, - {777, 3}, - {777, 2}, - {777, 2}, - {868, 1}, - {868, 3}, - {1101, 1}, - {1101, 4}, - {893, 1}, - {822, 1}, - {822, 1}, - {801, 3}, - {801, 2}, - {963, 1}, - {963, 1}, - {821, 1}, - {821, 1}, - {862, 1}, - {862, 3}, - {1167, 2}, - {1167, 4}, - {1167, 4}, - {980, 3}, - {980, 5}, - {980, 6}, - {980, 4}, - {980, 4}, - {980, 5}, - {980, 5}, - {980, 5}, - {980, 6}, - {980, 4}, - {980, 5}, - {980, 6}, - {980, 6}, - {980, 4}, - {980, 3}, - {980, 3}, - {980, 4}, - {980, 4}, - {980, 5}, - {980, 5}, - {980, 3}, - {980, 3}, - {980, 3}, - {980, 3}, - {980, 3}, - {980, 3}, - {980, 3}, - {980, 3}, - {980, 4}, - {1166, 2}, - {1166, 2}, - {1166, 3}, - {1166, 3}, - {1225, 1}, - {1225, 3}, - {1057, 5}, - {1082, 1}, - {1082, 3}, - {1131, 3}, - {1131, 4}, - {1131, 4}, - {1131, 5}, - {1131, 4}, - {1131, 5}, - {1131, 4}, - {1131, 4}, - {1131, 6}, - {1131, 4}, - {1131, 8}, - {1131, 2}, - {1131, 5}, - {1131, 3}, - {1131, 3}, - {1131, 2}, - {1131, 5}, - {1131, 2}, - {1131, 2}, - {1131, 4}, - {1298, 2}, - {1298, 2}, - {1298, 4}, - {1301, 0}, - {1301, 1}, - {1300, 1}, - {1300, 3}, - {1130, 1}, - {1130, 1}, - {1130, 2}, - {1130, 2}, - {1130, 2}, - {1130, 1}, - {1130, 1}, - {1130, 1}, + {1295, 3}, + {1295, 2}, + {967, 2}, + {967, 2}, + {967, 2}, + {967, 2}, + {967, 2}, + {1010, 0}, + {1010, 2}, + {1010, 2}, + {1111, 0}, + {1111, 1}, + {1110, 1}, + {1110, 2}, + {959, 2}, + {959, 2}, + {959, 1}, + {959, 4}, + {959, 2}, + {959, 2}, + {958, 3}, + {1197, 0}, + {1186, 0}, + {1186, 3}, + {1186, 3}, + {1186, 5}, + {1186, 5}, + {1186, 4}, + {1187, 1}, + {1065, 1}, + {1065, 1}, {1130, 1}, - {1299, 0}, - {1299, 3}, - {1333, 0}, - {1333, 2}, - {1296, 1}, - {1296, 1}, {1296, 1}, - {805, 1}, - {805, 1}, - {1302, 1}, - {1302, 1}, - {1302, 1}, - {1302, 1}, - {1302, 3}, - {1302, 3}, - {1302, 3}, - {1302, 3}, - {1302, 5}, - {1302, 4}, - {1302, 5}, - {1302, 5}, - {1302, 1}, - {1302, 5}, - {1302, 1}, - {1302, 2}, - {1302, 2}, - {1302, 2}, - {1302, 1}, - {1302, 2}, - {1302, 2}, - {1302, 2}, - {1302, 2}, - {1302, 2}, - {1302, 2}, - {1302, 2}, - {1302, 1}, - {1302, 1}, - {1302, 1}, - {1302, 1}, - {1302, 1}, - {1302, 1}, - {1302, 1}, - {1302, 1}, - {1302, 1}, - {1302, 1}, - {1302, 2}, - {1302, 1}, - {1302, 1}, - {1302, 1}, - {1302, 1}, - {1302, 2}, - {1297, 0}, - {1297, 2}, - {1297, 2}, - {938, 0}, - {938, 1}, - {938, 1}, - {1310, 0}, - {1310, 1}, - {1310, 1}, - {1310, 1}, - {1090, 0}, - {1090, 1}, - {841, 0}, - {841, 2}, - {1132, 2}, - {1051, 3}, - {955, 1}, - {955, 3}, - {1220, 1}, - {1220, 1}, - {1220, 3}, - {1220, 1}, - {1220, 2}, - {1220, 3}, - {1220, 1}, - {1249, 0}, - {1249, 1}, - {1249, 1}, - {1249, 1}, - {1249, 1}, - {1249, 1}, - {829, 0}, - {829, 1}, - {829, 1}, - {1147, 0}, - {1147, 1}, - {969, 0}, - {969, 2}, - {1352, 0}, - {1352, 3}, - {1137, 1}, - {1137, 1}, - {1137, 1}, - {1137, 1}, - {1137, 1}, - {1137, 1}, - {1137, 1}, - {1137, 1}, - {1137, 1}, - {1137, 1}, - {1137, 1}, - {1137, 1}, - {1137, 1}, - {1137, 1}, - {1137, 1}, - {1137, 1}, - {1137, 1}, - {1137, 1}, - {1137, 1}, - {1137, 1}, - {1137, 1}, - {1137, 1}, - {1137, 1}, - {1137, 1}, - {1137, 1}, - {1137, 1}, - {1137, 1}, - {1137, 1}, - {1137, 1}, - {1137, 1}, - {1137, 1}, - {1137, 1}, - {1137, 1}, - {1137, 1}, - {1137, 1}, - {1137, 1}, - {1137, 1}, - {1137, 1}, - {1137, 1}, - {1137, 1}, - {1137, 1}, - {1137, 1}, - {1137, 1}, - {1137, 1}, - {1137, 1}, - {1137, 1}, - {1137, 1}, - {1137, 1}, - {1137, 1}, - {1137, 1}, - {1137, 1}, - {1137, 1}, - {1137, 1}, - {1137, 1}, - {1137, 1}, - {1137, 1}, - {1137, 1}, - {1137, 1}, - {1137, 1}, - {1137, 1}, - {1137, 1}, - {1137, 1}, - {1137, 1}, - {1137, 1}, - {1137, 1}, - {1137, 1}, - {1137, 1}, - {1137, 1}, - {1137, 1}, - {1137, 1}, - {1137, 1}, - {1137, 1}, - {1137, 1}, - {1137, 1}, - {1137, 1}, - {1137, 1}, - {1137, 1}, - {1137, 1}, - {1137, 1}, - {1137, 1}, - {1137, 1}, - {1137, 1}, - {1137, 1}, - {1137, 1}, - {1137, 1}, - {1137, 1}, - {1137, 1}, - {1137, 1}, - {1137, 1}, - {1137, 1}, - {920, 1}, - {920, 1}, - {920, 1}, - {920, 1}, - {920, 1}, - {920, 1}, - {920, 1}, - {920, 1}, - {920, 1}, - {920, 1}, - {920, 1}, - {920, 1}, - {920, 1}, - {920, 1}, - {920, 1}, - {920, 1}, - {825, 1}, - {825, 1}, - {825, 1}, - {825, 1}, - {825, 1}, - {825, 1}, - {825, 1}, - {825, 1}, - {825, 1}, - {1309, 1}, - {1309, 3}, - {903, 2}, - {1000, 1}, - {1000, 1}, - {968, 1}, - {968, 1}, - {1145, 1}, - {1145, 3}, - {1320, 0}, - {1320, 3}, - {842, 1}, - {842, 4}, - {842, 4}, - {842, 4}, - {842, 3}, - {842, 4}, - {842, 3}, - {842, 3}, - {842, 3}, - {842, 3}, - {842, 3}, - {842, 3}, - {842, 3}, - {842, 3}, - {842, 1}, - {842, 3}, - {842, 3}, - {842, 3}, - {842, 3}, - {842, 3}, - {842, 3}, - {842, 3}, - {842, 3}, - {842, 3}, - {842, 3}, - {842, 3}, - {842, 3}, - {842, 3}, - {842, 2}, - {842, 2}, - {842, 3}, - {842, 3}, - {842, 5}, - {842, 3}, - {835, 0}, - {835, 1}, - {1139, 1}, - {1139, 1}, - {1017, 0}, - {1017, 1}, - {919, 1}, - {919, 2}, - {919, 3}, - {1269, 0}, - {1269, 1}, - {1153, 3}, - {838, 3}, - {838, 3}, - {838, 3}, - {838, 3}, - {838, 3}, - {838, 3}, - {838, 3}, - {838, 3}, - {838, 3}, - {838, 3}, - {838, 3}, - {838, 3}, - {838, 3}, - {838, 3}, - {838, 3}, - {1330, 1}, - {1330, 1}, - {1330, 1}, - {1257, 3}, - {1257, 2}, - {1257, 3}, - {1257, 3}, - {1257, 2}, - {1237, 1}, - {1237, 1}, - {1237, 1}, - {1237, 1}, - {1237, 1}, - {1237, 1}, - {1237, 1}, - {1237, 1}, - {1237, 1}, - {1237, 1}, - {1237, 1}, - {1184, 1}, - {1184, 1}, + {1296, 3}, + {851, 1}, + {851, 1}, + {851, 1}, + {851, 1}, + {851, 1}, + {851, 1}, + {851, 1}, + {851, 1}, + {1014, 7}, + {1030, 5}, + {1030, 7}, + {1133, 5}, + {1133, 7}, + {1063, 9}, + {1061, 7}, + {1062, 4}, + {1172, 0}, + {1172, 3}, + {1172, 3}, + {1172, 3}, + {1172, 3}, + {1172, 3}, + {941, 1}, + {941, 2}, + {969, 1}, + {969, 1}, + {969, 1}, + {969, 3}, + {969, 3}, + {1129, 1}, + {1129, 3}, + {962, 1}, + {962, 4}, + {963, 1}, + {963, 2}, + {963, 1}, + {963, 1}, + {963, 2}, + {963, 2}, + {963, 1}, + {963, 1}, + {963, 1}, + {963, 1}, + {963, 1}, + {963, 1}, + {963, 1}, + {963, 1}, + {963, 1}, + {963, 2}, + {963, 1}, + {963, 2}, + {963, 1}, + {963, 2}, + {963, 2}, + {963, 1}, + {963, 1}, + {963, 1}, + {963, 1}, + {963, 3}, + {963, 2}, + {963, 2}, + {963, 2}, + {963, 2}, + {963, 2}, + {963, 2}, + {963, 2}, + {963, 1}, + {963, 1}, {1091, 0}, {1091, 1}, {1091, 1}, - {1217, 1}, - {1217, 1}, - {1217, 1}, - {1219, 1}, - {1219, 1}, - {1219, 1}, - {1219, 2}, - {1182, 1}, - {1315, 3}, - {1315, 2}, - {1315, 3}, - {1315, 2}, - {1315, 3}, - {1315, 3}, - {1315, 2}, - {1315, 2}, - {1315, 1}, - {1315, 2}, - {1315, 5}, - {1315, 5}, - {1315, 1}, - {1315, 3}, - {1315, 2}, - {901, 1}, - {901, 1}, - {1255, 1}, - {1255, 2}, + {1091, 1}, + {1115, 1}, + {1115, 3}, + {1115, 3}, + {1115, 3}, + {1115, 1}, + {1128, 7}, + {1127, 4}, + {863, 15}, + {1237, 0}, + {1237, 3}, + {1196, 0}, + {1196, 3}, + {1083, 0}, + {1083, 1}, + {1053, 0}, + {1053, 2}, + {839, 1}, + {839, 1}, + {1222, 2}, + {1222, 1}, + {1052, 3}, + {1052, 4}, + {1052, 3}, + {1052, 3}, + {857, 1}, + {857, 1}, + {857, 1}, + {949, 0}, + {949, 3}, + {1316, 0}, + {1316, 3}, + {1253, 0}, + {1253, 3}, + {1255, 0}, {1255, 2}, - {1157, 2}, - {1157, 2}, + {1254, 3}, + {1254, 1}, + {1081, 3}, + {1163, 2}, + {1086, 3}, {1157, 1}, {1157, 1}, - {1258, 2}, - {1258, 2}, - {1258, 1}, - {1258, 2}, - {1258, 2}, - {1258, 3}, - {1258, 3}, - {1258, 2}, - {1355, 1}, - {1355, 1}, - {1183, 1}, - {1183, 2}, - {1183, 1}, - {1183, 1}, - {1183, 2}, - {1327, 1}, - {1327, 2}, - {1327, 1}, - {1327, 1}, - {884, 1}, - {884, 1}, - {884, 1}, - {884, 1}, - {1202, 1}, - {1202, 2}, - {1202, 2}, - {1202, 2}, - {1202, 3}, - {764, 3}, - {789, 0}, - {789, 1}, - {875, 1}, - {875, 1}, - {875, 1}, - {876, 0}, - {876, 2}, - {904, 0}, - {904, 1}, - {904, 1}, - {909, 5}, - {1261, 0}, - {1261, 1}, - {799, 0}, - {799, 2}, - {799, 3}, - {1262, 0}, - {1262, 2}, - {773, 2}, - {773, 1}, - {773, 2}, - {1089, 0}, - {1089, 2}, - {1313, 1}, - {1313, 3}, - {970, 1}, - {970, 1}, - {970, 1}, - {1151, 1}, - {1151, 3}, - {738, 1}, - {738, 1}, - {1314, 1}, - {1314, 1}, - {1314, 1}, - {776, 1}, - {776, 2}, - {772, 10}, - {772, 8}, - {1156, 2}, - {790, 2}, - {791, 0}, - {791, 1}, - {1360, 0}, - {1360, 1}, + {1154, 2}, + {1256, 1}, + {1256, 2}, + {1256, 1}, + {1256, 2}, + {1330, 1}, + {1330, 3}, + {1088, 6}, + {1304, 1}, + {1304, 1}, + {1304, 1}, + {1214, 0}, + {1214, 2}, + {1214, 3}, + {1275, 0}, + {1275, 2}, + {1077, 2}, + {1077, 3}, + {1077, 3}, + {1077, 2}, + {1076, 1}, + {1076, 2}, + {1082, 3}, + {1085, 3}, + {1162, 3}, + {1034, 5}, {1018, 7}, - {1014, 4}, - {990, 7}, - {990, 9}, - {984, 3}, - {1236, 2}, - {1236, 6}, - {891, 2}, - {922, 1}, - {922, 3}, - {1008, 0}, - {1008, 2}, - {1196, 1}, - {1196, 2}, - {1007, 2}, - {1007, 2}, - {1007, 2}, - {1007, 2}, - {961, 0}, - {961, 1}, - {960, 2}, - {960, 2}, - {960, 2}, - {960, 2}, - {1287, 1}, - {1287, 3}, - {1287, 2}, - {962, 2}, - {962, 2}, - {962, 2}, - {962, 2}, - {1103, 0}, - {1103, 1}, - {1102, 1}, - {1102, 2}, - {954, 2}, - {954, 2}, - {954, 1}, - {954, 4}, - {954, 2}, - {954, 2}, - {953, 3}, - {1188, 0}, - {1177, 0}, - {1177, 3}, - {1177, 3}, - {1177, 5}, - {1177, 5}, - {1177, 4}, + {991, 6}, + {1020, 6}, + {1207, 0}, + {1207, 1}, + {1301, 1}, + {1301, 2}, + {918, 3}, + {918, 3}, + {918, 3}, + {918, 3}, + {918, 3}, + {918, 1}, + {918, 2}, + {918, 3}, + {918, 1}, + {918, 2}, + {918, 3}, + {918, 1}, + {918, 2}, + {918, 1}, + {918, 1}, + {918, 2}, + {819, 1}, + {819, 2}, + {819, 2}, + {1036, 4}, + {993, 5}, {1178, 1}, - {1058, 1}, - {1058, 1}, - {1122, 1}, - {1288, 1}, - {1288, 3}, - {846, 1}, - {846, 1}, - {846, 1}, - {846, 1}, - {846, 1}, - {846, 1}, - {846, 1}, - {846, 1}, - {1009, 7}, - {1025, 5}, - {1025, 7}, - {1125, 5}, - {1125, 7}, - {1056, 9}, - {1054, 7}, - {1055, 4}, - {1163, 0}, - {1163, 3}, - {1163, 3}, - {1163, 3}, - {1163, 3}, - {1163, 3}, - {936, 1}, - {936, 2}, - {964, 1}, - {964, 1}, - {964, 1}, - {964, 3}, - {964, 3}, - {1121, 1}, - {1121, 3}, - {957, 1}, - {957, 4}, - {958, 1}, - {958, 2}, - {958, 1}, - {958, 1}, - {958, 2}, - {958, 2}, - {958, 1}, - {958, 1}, - {958, 1}, - {958, 1}, - {958, 1}, - {958, 1}, - {958, 1}, - {958, 1}, - {958, 1}, - {958, 2}, - {958, 1}, - {958, 2}, - {958, 1}, - {958, 2}, - {958, 2}, - {958, 1}, - {958, 1}, - {958, 1}, - {958, 1}, - {958, 3}, - {958, 2}, - {958, 2}, - {958, 2}, - {958, 2}, - {958, 2}, - {958, 2}, - {958, 2}, - {958, 1}, - {958, 1}, - {1083, 0}, - {1083, 1}, - {1083, 1}, - {1083, 1}, - {1107, 1}, - {1107, 3}, - {1107, 3}, - {1107, 3}, - {1107, 1}, - {1120, 7}, - {1119, 4}, - {859, 15}, - {1229, 0}, - {1229, 3}, - {1187, 0}, - {1187, 3}, - {1076, 0}, - {1076, 1}, - {1048, 0}, - {1048, 2}, - {834, 1}, - {834, 1}, - {1213, 2}, - {1213, 1}, - {1047, 3}, - {1047, 4}, - {1047, 3}, - {1047, 3}, - {853, 1}, - {853, 1}, - {853, 1}, - {944, 0}, - {944, 3}, - {1307, 0}, - {1307, 3}, - {1245, 0}, - {1245, 3}, - {1247, 0}, - {1247, 2}, - {1246, 3}, - {1246, 1}, - {1074, 3}, - {1154, 2}, - {1078, 3}, - {1149, 1}, - {1149, 1}, - {1146, 2}, - {1248, 1}, - {1248, 2}, - {1248, 1}, - {1248, 2}, - {1321, 1}, - {1321, 3}, - {1080, 6}, - {1205, 0}, - {1205, 2}, - {1205, 3}, - {1267, 0}, - {1267, 2}, - {1070, 2}, - {1070, 3}, - {1070, 3}, - {1069, 1}, - {1069, 2}, - {1075, 3}, - {1029, 5}, - {1013, 7}, - {986, 6}, - {1015, 6}, - {1198, 0}, - {1198, 1}, - {1293, 1}, - {1293, 2}, - {913, 3}, - {913, 3}, - {913, 3}, - {913, 3}, - {913, 3}, - {913, 1}, - {913, 2}, - {913, 3}, - {913, 1}, - {913, 2}, - {913, 3}, - {913, 1}, - {913, 2}, - {913, 1}, - {913, 1}, - {913, 2}, - {814, 1}, - {814, 2}, - {814, 2}, - {1031, 4}, - {988, 5}, - {1169, 1}, - {1169, 2}, - {987, 1}, - {987, 1}, - {987, 3}, - {987, 3}, - {1061, 8}, - {1253, 0}, - {1253, 2}, - {1252, 0}, - {1252, 3}, - {1280, 0}, - {1280, 2}, - {1279, 0}, - {1279, 2}, - {1039, 1}, - {976, 1}, - {976, 3}, - {912, 2}, - {1105, 5}, - {1105, 6}, - {1105, 9}, - {1105, 10}, - {1105, 5}, - {1105, 6}, - {1105, 4}, + {1178, 2}, + {992, 1}, + {992, 1}, + {992, 3}, + {992, 3}, + {1068, 8}, + {1261, 0}, + {1261, 2}, + {1260, 0}, + {1260, 3}, + {1288, 0}, + {1288, 2}, + {1287, 0}, + {1287, 2}, + {1044, 1}, + {981, 1}, + {981, 3}, + {917, 2}, + {1113, 5}, + {1113, 6}, + {1113, 9}, + {1113, 10}, + {1113, 5}, + {1113, 6}, + {1113, 4}, } yyXErrors = map[yyXError]string{} - yyParseTab = [4336][]uint16{ + yyParseTab = [4368][]uint16{ // 0 - {2045, 2045, 2544, 50: 2568, 71: 2688, 73: 2547, 82: 2579, 147: 2549, 155: 2577, 2562, 159: 2546, 173: 2573, 210: 2598, 215: 2701, 218: 2542, 225: 2597, 2564, 2697, 2548, 243: 2576, 248: 2552, 253: 2574, 255: 2543, 258: 2580, 276: 2566, 280: 2565, 287: 2578, 291: 2567, 303: 2557, 473: 2588, 2587, 495: 2586, 497: 2696, 504: 2572, 506: 2596, 525: 2691, 529: 2560, 567: 2571, 569: 2585, 646: 2581, 649: 2700, 653: 2545, 2690, 665: 2540, 669: 2551, 674: 2550, 679: 2595, 686: 2541, 709: 2592, 739: 2553, 748: 2594, 2582, 2583, 2584, 2593, 756: 2591, 2590, 2589, 2556, 2668, 2667, 766: 2554, 772: 2689, 774: 2649, 2660, 2679, 779: 2555, 783: 2614, 800: 2563, 806: 2602, 809: 2694, 844: 2608, 2609, 849: 2612, 854: 2692, 859: 2652, 861: 2662, 863: 2657, 2666, 2669, 2569, 931: 2621, 935: 2558, 973: 2695, 980: 2600, 982: 2601, 2604, 2605, 986: 2607, 988: 2606, 990: 2603, 992: 2610, 2611, 996: 2570, 2648, 999: 2617, 1009: 2625, 2618, 2619, 2620, 2626, 2624, 2627, 2628, 1018: 2623, 2622, 1021: 2613, 2575, 2559, 2629, 2641, 2630, 2631, 2632, 2634, 2638, 2635, 2639, 2640, 2633, 2637, 2636, 1038: 2599, 1042: 2615, 1044: 2616, 2561, 1049: 2643, 2644, 2642, 1054: 2646, 2647, 2645, 1060: 2685, 2650, 1068: 2699, 2698, 2651, 1075: 2653, 1078: 2682, 1080: 2686, 1105: 2654, 2655, 1108: 2656, 1110: 2661, 1113: 2658, 2659, 1116: 2684, 2663, 2693, 2665, 2664, 1125: 2670, 1127: 2672, 2671, 2675, 1131: 2676, 1133: 2683, 1136: 2673, 2687, 1141: 2674, 1152: 2677, 2678, 2681, 1156: 2680, 1306: 2538, 1309: 2539}, - {2537}, - {2536, 6871}, - {18: 6823, 134: 6820, 170: 6821, 196: 6824, 262: 6822, 489: 4191, 569: 1856, 582: 6163, 851: 6819, 855: 4190}, - {170: 6804, 569: 6803}, + {2062, 2062, 2564, 51: 2588, 72: 2711, 74: 2567, 83: 2599, 150: 2569, 157: 2597, 2582, 161: 2566, 175: 2593, 212: 2618, 217: 2724, 220: 2562, 228: 2617, 2584, 2720, 2568, 246: 2596, 251: 2572, 256: 2594, 258: 2563, 261: 2600, 279: 2586, 283: 2585, 290: 2598, 293: 2587, 305: 2577, 476: 2608, 2607, 498: 2606, 500: 2719, 507: 2592, 509: 2616, 528: 2714, 532: 2580, 570: 2591, 572: 2605, 649: 2601, 652: 2723, 656: 2565, 2713, 668: 2560, 672: 2571, 677: 2570, 683: 2615, 690: 2561, 713: 2612, 743: 2573, 752: 2614, 2602, 2603, 2604, 2613, 760: 2611, 2610, 2609, 2576, 2691, 2690, 770: 2712, 2574, 777: 2670, 2702, 780: 2683, 783: 2575, 788: 2634, 804: 2583, 810: 2622, 814: 2717, 849: 2628, 2629, 854: 2632, 858: 2715, 863: 2673, 865: 2685, 867: 2680, 2689, 2692, 2589, 936: 2641, 940: 2578, 978: 2718, 985: 2620, 987: 2621, 2624, 2625, 991: 2627, 993: 2626, 995: 2623, 997: 2630, 2631, 1000: 2590, 2669, 1003: 2637, 1014: 2645, 2638, 2639, 2640, 2646, 2644, 2647, 2648, 1023: 2643, 2642, 1026: 2633, 2595, 2579, 2649, 2661, 2650, 2651, 2652, 2654, 2658, 2655, 2659, 2660, 2653, 2657, 2656, 1043: 2619, 1047: 2635, 1049: 2636, 2581, 1054: 2665, 2663, 1057: 2664, 2662, 1061: 2667, 2668, 2666, 1067: 2708, 2671, 1075: 2722, 2721, 2672, 1082: 2674, 1085: 2675, 2705, 1088: 2709, 1113: 2677, 2678, 1116: 2679, 1118: 2684, 1121: 2681, 2682, 1124: 2707, 2686, 2716, 2688, 2687, 1133: 2693, 1135: 2695, 2694, 2698, 1139: 2699, 1141: 2706, 1144: 2696, 2710, 1149: 2697, 1160: 2700, 2701, 2676, 2704, 1165: 2703, 1315: 2558, 1318: 2559}, + {2557}, + {2556, 6923}, + {18: 6874, 140: 6871, 172: 6872, 198: 6875, 265: 6873, 492: 4217, 572: 1873, 585: 6201, 838: 6870, 859: 4216}, + {172: 6855, 572: 6854}, // 5 - {569: 6797}, - {325: 6788, 569: 6789}, - {379: 6769, 488: 6770, 569: 2383, 1304: 6768}, - {350: 6724, 569: 6723}, - {2351, 2351, 366: 6722, 373: 6721}, + {572: 6848}, + {327: 6832, 572: 6833, 585: 6201, 838: 6834}, + {381: 6813, 491: 6814, 572: 2400, 1313: 6812}, + {352: 6768, 572: 6767}, + {2368, 2368, 368: 6766, 375: 6765}, // 10 - {402: 6710}, - {475: 6709}, - {2318, 2318, 72: 5993, 507: 5991, 800: 5992, 1006: 6708}, - {18: 2095, 83: 2095, 103: 2095, 134: 6485, 142: 2095, 160: 597, 162: 6422, 167: 5591, 170: 6486, 174: 6487, 196: 6489, 6126, 221: 6477, 509: 6484, 569: 2064, 582: 6163, 642: 6479, 649: 2200, 668: 2095, 676: 6481, 851: 6482, 938: 6488, 950: 5590, 1232: 6478, 1273: 6483, 1303: 6480}, - {18: 6429, 103: 6423, 125: 2064, 134: 6427, 160: 597, 162: 6422, 167: 5591, 170: 6424, 173: 1034, 6425, 196: 6430, 6126, 221: 6418, 289: 6426, 569: 2064, 582: 6163, 649: 6420, 851: 6419, 938: 6428, 950: 6421}, + {405: 6754}, + {478: 6753}, + {2335, 2335, 73: 6030, 510: 6028, 804: 6029, 1011: 6752}, + {18: 2112, 84: 2112, 104: 2112, 140: 6524, 145: 2112, 162: 610, 164: 6460, 169: 5629, 172: 6525, 176: 6526, 198: 6528, 6164, 223: 6516, 512: 6523, 572: 2081, 585: 6201, 645: 6518, 652: 2217, 671: 2112, 679: 6520, 838: 6521, 943: 6527, 955: 5628, 1240: 6517, 1281: 6522, 1312: 6519}, + {18: 6467, 104: 6461, 126: 2081, 140: 6465, 162: 610, 164: 6460, 169: 5629, 172: 6462, 175: 1048, 6463, 198: 6468, 6164, 201: 6464, 223: 6456, 572: 2081, 585: 6201, 652: 6458, 838: 6457, 943: 6466, 955: 6459}, // 15 - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 2840, 2788, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 2869, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 2874, 2801, 2766, 2783, 2948, 3031, 3020, 2818, 2830, 2941, 2942, 2937, 2895, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 2876, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 2760, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 2880, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 2799, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 2866, 2865, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 2936, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 2824, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 2751, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 2882, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 2752, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3144, 2878, 3145, 3146, 2777, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3159, 3160, 3211, 3210, 3057, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 2918, 2935, 3058, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3177, 3178, 3179, 2931, 3130, 3189, 3190, 3201, 3185, 3186, 3187, 3220, 2877, 473: 3260, 475: 3239, 3258, 2755, 479: 3268, 482: 3272, 3276, 485: 3257, 3256, 3295, 492: 3230, 495: 3269, 504: 3275, 3293, 508: 3234, 530: 3264, 564: 3271, 567: 3294, 2753, 570: 3277, 3229, 3231, 3233, 3232, 3261, 3237, 3251, 3242, 3263, 3238, 582: 3270, 3262, 3267, 3273, 3283, 3336, 3284, 3285, 592: 3236, 3314, 595: 3254, 3255, 3309, 3310, 3311, 3312, 3313, 3265, 3291, 3296, 3306, 3307, 3300, 3315, 3316, 3317, 3301, 3319, 3320, 3302, 3318, 3297, 3305, 3303, 3289, 3321, 3322, 3266, 3326, 3278, 3279, 3282, 3325, 3331, 3330, 3332, 3329, 3333, 3328, 3327, 3324, 3274, 3323, 3281, 3280, 3286, 3287, 648: 2756, 661: 3244, 2762, 2763, 2761, 709: 3259, 3335, 3245, 3250, 3235, 3308, 3248, 3246, 3247, 3288, 3299, 3298, 3292, 3290, 3304, 3243, 3253, 3334, 3252, 3249, 2759, 2758, 2757, 3588, 778: 6417}, - {2: 853, 853, 853, 853, 853, 853, 853, 10: 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 50: 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 489: 853, 500: 853, 753: 853, 853, 853, 762: 5398, 867: 5399, 918: 6405}, - {2072, 2072}, - {2071, 2071}, - {473: 2588, 495: 2586, 569: 2585, 646: 2581, 654: 2690, 709: 3888, 739: 2553, 748: 3887, 2582, 2583, 2584, 2593, 756: 2591, 3889, 3890, 766: 5184, 772: 5772, 779: 5185}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 2864, 2812, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 2893, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 2898, 2825, 2789, 2807, 2972, 3055, 3044, 2842, 2854, 2965, 2966, 2961, 2919, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 2900, 2885, 2881, 2973, 2997, 2783, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 2904, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 2823, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 2889, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 2890, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 2960, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 2848, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 2774, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 2906, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 2775, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3170, 2902, 3171, 3172, 2801, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3185, 3186, 3237, 3236, 3081, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 2942, 2959, 3082, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3203, 3204, 3205, 2955, 3156, 3215, 3216, 3227, 3211, 3212, 3213, 3246, 2901, 476: 3286, 478: 3265, 3284, 2778, 482: 3294, 485: 3298, 3302, 488: 3283, 3282, 3321, 495: 3256, 498: 3295, 507: 3301, 3319, 511: 3260, 533: 3290, 567: 3297, 570: 3320, 2776, 573: 3303, 3255, 3257, 3259, 3258, 3287, 3263, 3277, 3268, 3289, 3264, 585: 3296, 3288, 3293, 3299, 3309, 3362, 3310, 3311, 595: 3262, 3340, 598: 3280, 3281, 3335, 3336, 3337, 3338, 3339, 3291, 3317, 3322, 3332, 3333, 3326, 3341, 3342, 3343, 3327, 3345, 3346, 3328, 3344, 3323, 3331, 3329, 3315, 3347, 3348, 3292, 3352, 3304, 3305, 3308, 3351, 3357, 3356, 3358, 3355, 3359, 3354, 3353, 3350, 3300, 3349, 3307, 3306, 3312, 3313, 651: 2779, 664: 3270, 2785, 2786, 2784, 713: 3285, 3361, 3271, 3276, 3261, 3334, 3274, 3272, 3273, 3314, 3325, 3324, 3318, 3316, 3330, 3269, 3279, 3360, 3278, 3275, 2782, 2781, 2780, 3614, 782: 6455}, + {2: 867, 867, 867, 867, 867, 867, 867, 10: 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 51: 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 492: 867, 503: 867, 757: 867, 867, 867, 766: 5436, 871: 5437, 923: 6443}, + {2089, 2089}, + {2088, 2088}, + {476: 2608, 498: 2606, 572: 2605, 649: 2601, 657: 2713, 713: 3914, 743: 2573, 752: 3913, 2602, 2603, 2604, 2613, 760: 2611, 3915, 3916, 770: 5217, 5215, 783: 5216}, // 20 - {73: 2547, 147: 2549, 155: 2577, 2562, 159: 2546, 215: 6378, 256: 6377, 473: 2588, 2587, 495: 2586, 504: 2572, 506: 6381, 567: 2571, 569: 2585, 646: 2581, 653: 2545, 2690, 709: 6379, 739: 2553, 748: 6380, 2582, 2583, 2584, 2593, 756: 2591, 2590, 2589, 2556, 6387, 6386, 766: 2554, 772: 2689, 774: 6384, 6385, 6383, 779: 2555, 783: 6382, 800: 2563, 809: 6396, 844: 6395, 6389, 849: 6390, 859: 6388, 861: 6392, 863: 6393, 6391, 6394, 920: 6376}, - {2: 2040, 2040, 2040, 2040, 2040, 2040, 2040, 10: 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 50: 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 2040, 473: 2040, 2040, 494: 2040, 2040, 504: 2040, 567: 2040, 569: 2040, 646: 2040, 653: 2040, 2040, 665: 2040, 739: 2040}, - {2: 2039, 2039, 2039, 2039, 2039, 2039, 2039, 10: 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 50: 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 2039, 473: 2039, 2039, 494: 2039, 2039, 504: 2039, 567: 2039, 569: 2039, 646: 2039, 653: 2039, 2039, 665: 2039, 739: 2039}, - {2: 2038, 2038, 2038, 2038, 2038, 2038, 2038, 10: 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 50: 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 2038, 473: 2038, 2038, 494: 2038, 2038, 504: 2038, 567: 2038, 569: 2038, 646: 2038, 653: 2038, 2038, 665: 2038, 739: 2038}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 6346, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 473: 2588, 2587, 494: 6345, 2586, 504: 2572, 567: 2571, 569: 2585, 646: 2581, 653: 6347, 2690, 661: 3921, 2762, 2763, 2761, 2707, 709: 2708, 737: 6343, 739: 2553, 748: 2709, 2582, 2583, 2584, 2593, 756: 2591, 2590, 2589, 2556, 2715, 2714, 766: 2554, 772: 2689, 774: 2712, 2713, 2711, 779: 2555, 783: 2710, 806: 2716, 825: 6344}, + {74: 2567, 150: 2569, 157: 2597, 2582, 161: 2566, 217: 6416, 259: 6415, 476: 2608, 2607, 498: 2606, 507: 2592, 509: 6419, 570: 2591, 572: 2605, 649: 2601, 656: 2565, 2713, 713: 6417, 743: 2573, 752: 6418, 2602, 2603, 2604, 2613, 760: 2611, 2610, 2609, 2576, 6425, 6424, 770: 2712, 2574, 777: 6422, 6421, 780: 6423, 783: 2575, 788: 6420, 804: 2583, 814: 6434, 849: 6433, 6427, 854: 6428, 863: 6426, 865: 6430, 867: 6431, 6429, 6432, 925: 6414}, + {2: 2057, 2057, 2057, 2057, 2057, 2057, 2057, 10: 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 51: 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 2057, 476: 2057, 2057, 497: 2057, 2057, 507: 2057, 570: 2057, 572: 2057, 649: 2057, 656: 2057, 2057, 668: 2057, 743: 2057}, + {2: 2056, 2056, 2056, 2056, 2056, 2056, 2056, 10: 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 51: 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 2056, 476: 2056, 2056, 497: 2056, 2056, 507: 2056, 570: 2056, 572: 2056, 649: 2056, 656: 2056, 2056, 668: 2056, 743: 2056}, + {2: 2055, 2055, 2055, 2055, 2055, 2055, 2055, 10: 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 51: 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 2055, 476: 2055, 2055, 497: 2055, 2055, 507: 2055, 570: 2055, 572: 2055, 649: 2055, 656: 2055, 2055, 668: 2055, 743: 2055}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 6384, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 476: 2608, 2607, 497: 6383, 2606, 507: 2592, 570: 2591, 572: 2605, 649: 2601, 656: 6385, 2713, 664: 3947, 2785, 2786, 2784, 2730, 713: 2731, 740: 6381, 743: 2573, 752: 2732, 2602, 2603, 2604, 2613, 760: 2611, 2610, 2609, 2576, 2738, 2737, 770: 2712, 2574, 777: 2735, 2734, 780: 2736, 783: 2575, 788: 2733, 810: 2739, 829: 6382}, // 25 - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 661: 6342, 2762, 2763, 2761}, - {156: 6340}, - {569: 6258, 582: 6163, 851: 6257, 994: 6336}, - {569: 6258, 582: 6163, 851: 6257, 994: 6256}, - {134: 6254}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 664: 6380, 2785, 2786, 2784}, + {158: 6378}, + {572: 6296, 585: 6201, 838: 6295, 999: 6374}, + {572: 6296, 585: 6201, 838: 6295, 999: 6294}, + {140: 6292}, // 30 - {134: 6249}, - {134: 6243}, - {16: 3836, 18: 6088, 30: 6117, 6116, 102: 590, 111: 590, 125: 590, 597, 134: 6077, 141: 597, 162: 6125, 181: 6101, 190: 6086, 197: 6126, 202: 597, 211: 6127, 216: 6111, 590, 250: 6108, 275: 6107, 307: 6100, 313: 6122, 315: 6105, 318: 6087, 326: 6103, 6120, 329: 6094, 337: 6092, 339: 6110, 343: 6098, 345: 6109, 6081, 6119, 349: 6124, 351: 6090, 358: 6082, 365: 6096, 375: 6085, 6084, 382: 6123, 386: 6112, 389: 6118, 6115, 6114, 403: 6104, 505: 3837, 569: 6080, 593: 6099, 647: 3835, 649: 6089, 653: 6121, 674: 6079, 773: 6095, 914: 6113, 938: 6102, 943: 6091, 959: 6106, 1020: 6093, 1090: 6083, 1296: 6097, 1302: 6078}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 6066, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 661: 6068, 2762, 2763, 2761, 1283: 6067}, - {2: 853, 853, 853, 853, 853, 853, 853, 10: 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 50: 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 489: 853, 496: 853, 753: 853, 853, 853, 762: 5398, 867: 5399, 918: 6053}, + {140: 6287}, + {140: 6281}, + {16: 3862, 18: 6125, 30: 6154, 6153, 103: 603, 112: 603, 126: 603, 610, 140: 6114, 144: 610, 164: 6163, 183: 6138, 192: 6123, 199: 6164, 204: 610, 213: 6165, 218: 6148, 603, 253: 6145, 278: 6144, 309: 6137, 315: 6160, 317: 6142, 320: 6124, 328: 6140, 6158, 331: 6131, 339: 6129, 341: 6147, 345: 6135, 347: 6146, 6118, 6157, 351: 6162, 353: 6127, 360: 6119, 367: 6133, 377: 6122, 6121, 384: 6161, 388: 6149, 391: 6155, 6152, 6156, 6151, 406: 6141, 508: 3863, 572: 6117, 596: 6136, 650: 3861, 652: 6126, 656: 6159, 677: 6116, 779: 6132, 919: 6150, 943: 6139, 948: 6128, 964: 6143, 1025: 6130, 1098: 6120, 1305: 6134, 1311: 6115}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 6103, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 664: 6105, 2785, 2786, 2784, 1291: 6104}, + {2: 867, 867, 867, 867, 867, 867, 867, 10: 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 51: 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 492: 867, 499: 867, 757: 867, 867, 867, 766: 5436, 871: 5437, 923: 6090}, // 35 - {2: 1057, 1057, 1057, 1057, 1057, 1057, 1057, 10: 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 50: 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 496: 1057, 753: 5403, 5402, 5401, 837: 5404, 887: 6019}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 661: 6014, 2762, 2763, 2761}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 661: 6008, 2762, 2763, 2761}, - {173: 6006}, - {173: 1035}, + {2: 1071, 1071, 1071, 1071, 1071, 1071, 1071, 10: 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 51: 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 499: 1071, 757: 5441, 5440, 5439, 842: 5442, 891: 6056}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 664: 6051, 2785, 2786, 2784}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 664: 6045, 2785, 2786, 2784}, + {175: 6043}, + {175: 1049}, // 40 - {1033, 1033, 72: 5993, 507: 5991, 650: 5990, 800: 5992, 1006: 5989}, - {1022, 1022}, - {1021, 1021}, - {475: 5988}, - {2: 858, 858, 858, 858, 858, 858, 858, 10: 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 50: 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 5958, 5964, 5965, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 473: 858, 475: 858, 858, 858, 479: 858, 482: 858, 858, 485: 858, 858, 858, 492: 858, 495: 858, 504: 858, 858, 508: 858, 515: 5961, 520: 858, 530: 858, 564: 858, 567: 858, 858, 570: 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 582: 858, 858, 858, 858, 858, 858, 858, 858, 592: 858, 858, 595: 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 648: 858, 651: 3546, 745: 3544, 3545, 753: 5403, 5402, 5401, 762: 5398, 769: 5957, 5960, 5956, 784: 5879, 787: 5954, 837: 5955, 867: 5953, 1123: 5963, 5959, 1291: 5952, 5962}, + {1047, 1047, 73: 6030, 510: 6028, 653: 6027, 804: 6029, 1011: 6026}, + {1036, 1036}, + {1035, 1035}, + {478: 6025}, + {2: 872, 872, 872, 872, 872, 872, 872, 10: 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 51: 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 5995, 6001, 6002, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 476: 872, 478: 872, 872, 872, 482: 872, 485: 872, 872, 488: 872, 872, 872, 495: 872, 498: 872, 507: 872, 872, 511: 872, 518: 5998, 523: 872, 533: 872, 567: 872, 570: 872, 872, 573: 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 585: 872, 872, 872, 872, 872, 872, 872, 872, 595: 872, 872, 598: 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 872, 651: 872, 654: 3572, 749: 3570, 3571, 757: 5441, 5440, 5439, 766: 5436, 774: 5994, 5997, 5993, 789: 5916, 792: 5991, 842: 5992, 871: 5990, 1131: 6000, 5996, 1299: 5989, 5999}, // 45 - {247, 247, 49: 247, 472: 247, 474: 247, 480: 247, 247, 490: 247, 247, 493: 247, 247, 496: 247, 247, 2722, 500: 5927, 247, 247, 513: 247, 790: 2723, 5928, 1221: 5926}, - {848, 848, 49: 848, 472: 848, 474: 848, 480: 848, 848, 490: 848, 848, 493: 848, 848, 496: 848, 848, 501: 848, 848, 513: 5917, 939: 5919, 965: 5918}, - {1297, 1297, 49: 1297, 472: 1297, 474: 1297, 480: 1297, 1297, 490: 1297, 1297, 493: 1297, 1297, 496: 1297, 1297, 501: 1297, 2725, 767: 2726, 812: 5913}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 661: 3921, 2762, 2763, 2761, 737: 5908}, - {575: 3896, 912: 3895, 976: 3894}, + {257, 257, 50: 257, 475: 257, 477: 257, 483: 257, 257, 493: 257, 257, 496: 257, 257, 499: 257, 257, 2745, 503: 5964, 257, 257, 516: 257, 795: 2746, 5965, 1229: 5963}, + {862, 862, 50: 862, 475: 862, 477: 862, 483: 862, 862, 493: 862, 862, 496: 862, 862, 499: 862, 862, 504: 862, 862, 516: 5954, 944: 5956, 970: 5955}, + {1311, 1311, 50: 1311, 475: 1311, 477: 1311, 483: 1311, 1311, 493: 1311, 1311, 496: 1311, 1311, 499: 1311, 1311, 504: 1311, 2748, 772: 2749, 817: 5950}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 664: 3947, 2785, 2786, 2784, 740: 5945}, + {578: 3922, 917: 3921, 981: 3920}, // 50 - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 661: 5895, 2762, 2763, 2761, 930: 5894, 1164: 5892, 1284: 5893}, - {473: 2588, 2587, 495: 2586, 569: 2585, 646: 2581, 709: 5891, 748: 3881, 2582, 2583, 2584, 2593, 756: 2591, 2590, 2589, 3880, 3883, 3882}, - {829, 829, 49: 829, 472: 829, 474: 829, 481: 829}, - {828, 828, 49: 828, 472: 828, 474: 828, 481: 828}, - {480: 5876, 490: 5877, 5878, 1294: 5875}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 664: 5932, 2785, 2786, 2784, 935: 5931, 1173: 5929, 1292: 5930}, + {476: 2608, 2607, 498: 2606, 572: 2605, 649: 2601, 713: 5928, 752: 3907, 2602, 2603, 2604, 2613, 760: 2611, 2610, 2609, 3906, 3909, 3908}, + {843, 843, 50: 843, 475: 843, 477: 843, 484: 843}, + {842, 842, 50: 842, 475: 842, 477: 842, 484: 842}, + {483: 5913, 493: 5914, 5915, 1302: 5912}, // 55 - {489, 489, 480: 814, 490: 814, 814, 493: 2728, 501: 2729, 2725, 767: 3891, 3892}, - {480: 817, 490: 817, 817}, - {491, 491, 480: 815, 490: 815, 815}, - {250: 5860, 275: 5859}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 5700, 5695, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 5698, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 5704, 2807, 5697, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 5701, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 5702, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 5696, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 5705, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 5703, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 5699, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 479: 5707, 505: 3837, 568: 5711, 587: 5710, 647: 3835, 661: 5708, 2762, 2763, 2761, 773: 5712, 831: 5709, 978: 5713, 1158: 5706}, + {499, 499, 483: 828, 493: 828, 828, 496: 2751, 504: 2752, 2748, 772: 3917, 3918}, + {483: 831, 493: 831, 831}, + {501, 501, 483: 829, 493: 829, 829}, + {253: 5897, 278: 5896}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 5738, 5733, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 5736, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 5742, 2831, 5735, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 5739, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 5740, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 5734, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 5743, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 5741, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 5737, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 482: 5745, 508: 3863, 571: 5749, 590: 5748, 650: 3861, 664: 5746, 2785, 2786, 2784, 779: 5750, 835: 5747, 983: 5751, 1167: 5744}, // 60 - {17: 5568, 210: 5573, 216: 5571, 218: 5566, 5572, 279: 5570, 319: 5569, 5574, 323: 5567, 340: 5575, 381: 5576, 590: 5565, 866: 5564}, - {22: 569, 125: 569, 569, 136: 4750, 145: 569, 190: 569, 198: 569, 209: 569, 223: 569, 235: 569, 257: 569, 260: 569, 530: 569, 569: 569, 811: 4749, 829: 5537}, + {17: 5606, 212: 5611, 218: 5609, 220: 5604, 5610, 282: 5608, 321: 5607, 5612, 325: 5605, 342: 5613, 383: 5614, 593: 5603, 870: 5602}, + {22: 582, 126: 582, 582, 141: 4776, 148: 582, 192: 582, 200: 582, 211: 582, 225: 582, 238: 582, 260: 582, 263: 582, 533: 582, 572: 582, 816: 4775, 833: 5575}, + {573, 573}, + {572, 572}, + {571, 571}, + // 65 + {570, 570}, + {569, 569}, + {568, 568}, + {567, 567}, + {566, 566}, + // 70 + {565, 565}, + {564, 564}, + {563, 563}, + {562, 562}, + {561, 561}, + // 75 {560, 560}, {559, 559}, {558, 558}, - // 65 {557, 557}, {556, 556}, + // 80 {555, 555}, {554, 554}, {553, 553}, - // 70 {552, 552}, {551, 551}, + // 85 {550, 550}, {549, 549}, {548, 548}, - // 75 {547, 547}, {546, 546}, + // 90 {545, 545}, {544, 544}, {543, 543}, - // 80 {542, 542}, {541, 541}, + // 95 {540, 540}, {539, 539}, {538, 538}, - // 85 {537, 537}, {536, 536}, + // 100 {535, 535}, {534, 534}, {533, 533}, - // 90 {532, 532}, {531, 531}, + // 105 {530, 530}, {529, 529}, {528, 528}, - // 95 {527, 527}, {526, 526}, + // 110 {525, 525}, {524, 524}, {523, 523}, - // 100 {522, 522}, {521, 521}, + // 115 {520, 520}, {519, 519}, {518, 518}, - // 105 {517, 517}, {516, 516}, + // 120 {515, 515}, {514, 514}, {513, 513}, - // 110 {512, 512}, {511, 511}, + // 125 {510, 510}, {509, 509}, {508, 508}, - // 115 {507, 507}, {506, 506}, + // 130 {505, 505}, {504, 504}, {503, 503}, - // 120 {502, 502}, - {501, 501}, {500, 500}, - {499, 499}, + // 135 {498, 498}, - // 125 {497, 497}, {496, 496}, {495, 495}, {494, 494}, + // 140 {493, 493}, - // 130 {492, 492}, + {491, 491}, {490, 490}, + {489, 489}, + // 145 {488, 488}, {487, 487}, {486, 486}, - // 135 {485, 485}, {484, 484}, + // 150 {483, 483}, {482, 482}, {481, 481}, - // 140 - {480, 480}, - {479, 479}, - {478, 478}, - {477, 477}, - {476, 476}, - // 145 - {475, 475}, - {474, 474}, - {473, 473}, - {472, 472}, - {471, 471}, - // 150 - {445, 445}, - {2: 391, 391, 391, 391, 391, 391, 391, 10: 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 50: 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 569: 5534, 1269: 5535}, - {253, 253, 481: 253}, - {2: 853, 853, 853, 853, 853, 853, 853, 10: 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 50: 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 473: 853, 489: 853, 579: 853, 753: 853, 853, 853, 762: 5398, 867: 5399, 918: 5400}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 661: 5396, 2762, 2763, 2761, 817: 5397}, + {455, 455}, + {2: 401, 401, 401, 401, 401, 401, 401, 10: 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 51: 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 572: 5572, 1277: 5573}, // 155 - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 5241, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 5243, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 5249, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 5245, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 5242, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 5250, 3206, 2932, 3158, 5244, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 5247, 5351, 2844, 3083, 5248, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 5246, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 475: 5252, 497: 5275, 567: 5269, 644: 5273, 646: 5258, 649: 5268, 651: 5262, 654: 5271, 661: 3491, 2762, 2763, 2761, 5263, 669: 5267, 674: 5264, 738: 5251, 5266, 801: 5253, 809: 5257, 854: 5272, 866: 5270, 936: 5254, 957: 5255, 5261, 963: 5256, 5259, 972: 5265, 974: 5274, 1121: 5352}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 5241, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 5243, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 5249, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 5245, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 5242, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 5250, 3206, 2932, 3158, 5244, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 5247, 2843, 2844, 3083, 5248, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 5246, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 475: 5252, 497: 5275, 567: 5269, 644: 5273, 646: 5258, 649: 5268, 651: 5262, 654: 5271, 661: 3491, 2762, 2763, 2761, 5263, 669: 5267, 674: 5264, 738: 5251, 5266, 801: 5253, 809: 5257, 854: 5272, 866: 5270, 936: 5254, 957: 5255, 5261, 963: 5256, 5259, 972: 5265, 974: 5274, 1121: 5260}, - {23: 5200, 289: 5201}, - {125: 5187, 569: 5188, 1149: 5199}, - {125: 5187, 569: 5188, 1149: 5186}, + {263, 263, 484: 263}, + {2: 867, 867, 867, 867, 867, 867, 867, 10: 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 51: 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 476: 867, 492: 867, 582: 867, 757: 867, 867, 867, 766: 5436, 871: 5437, 923: 5438}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 664: 5434, 2785, 2786, 2784, 813: 5435}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 5277, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 5279, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 5285, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 5281, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 5278, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 5286, 3232, 2956, 3184, 5280, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 5283, 5387, 2868, 3107, 5284, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 5282, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 478: 5288, 500: 5311, 570: 5305, 647: 5309, 649: 5294, 652: 5304, 654: 5298, 657: 5307, 664: 3517, 2785, 2786, 2784, 5299, 672: 5303, 677: 5300, 742: 5287, 5302, 805: 5289, 814: 5293, 858: 5308, 870: 5306, 941: 5290, 962: 5291, 5297, 968: 5292, 5295, 977: 5301, 979: 5310, 1129: 5388}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 5277, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 5279, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 5285, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 5281, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 5278, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 5286, 3232, 2956, 3184, 5280, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 5283, 2867, 2868, 3107, 5284, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 5282, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 478: 5288, 500: 5311, 570: 5305, 647: 5309, 649: 5294, 652: 5304, 654: 5298, 657: 5307, 664: 3517, 2785, 2786, 2784, 5299, 672: 5303, 677: 5300, 742: 5287, 5302, 805: 5289, 814: 5293, 858: 5308, 870: 5306, 941: 5290, 962: 5291, 5297, 968: 5292, 5295, 977: 5301, 979: 5310, 1129: 5296}, // 160 - {472: 5174, 493: 63, 1267: 5173}, - {28: 5169, 139: 5170, 508: 2736, 733: 5168}, - {28: 58, 139: 58, 223: 5167, 508: 58}, - {309: 5150}, - {380: 2702}, + {23: 5236, 201: 5237}, + {126: 5219, 201: 5234, 572: 5220, 1157: 5233}, + {126: 5219, 201: 5221, 572: 5220, 1157: 5218}, + {475: 5202, 496: 66, 1275: 5201}, + {28: 5196, 130: 4735, 142: 5197, 476: 5194, 511: 2759, 737: 5195, 904: 5198}, // 165 - {335: 2703, 809: 2704}, - {935: 2706}, - {475: 2705}, - {1, 1}, - {198: 2719, 473: 2588, 2587, 2720, 495: 2586, 504: 2572, 567: 2571, 569: 2585, 646: 2581, 653: 2718, 2690, 665: 2707, 709: 2708, 739: 2553, 748: 2709, 2582, 2583, 2584, 2593, 756: 2591, 2590, 2589, 2556, 2715, 2714, 766: 2554, 772: 2689, 774: 2712, 2713, 2711, 779: 2555, 783: 2710, 806: 2716, 825: 2717}, + {28: 60, 130: 60, 142: 60, 225: 5193, 476: 60, 511: 60}, + {311: 5176}, + {382: 2725}, + {337: 2726, 814: 2727}, + {940: 2729}, // 170 - {489: 4191, 569: 1856, 855: 4190}, - {447, 447, 480: 814, 490: 814, 814, 493: 2728, 501: 2729, 2725, 767: 3891, 3892}, - {449, 449, 480: 815, 490: 815, 815}, - {454, 454}, - {453, 453}, + {478: 2728}, + {1, 1}, + {200: 2742, 476: 2608, 2607, 2743, 498: 2606, 507: 2592, 570: 2591, 572: 2605, 649: 2601, 656: 2741, 2713, 668: 2730, 713: 2731, 743: 2573, 752: 2732, 2602, 2603, 2604, 2613, 760: 2611, 2610, 2609, 2576, 2738, 2737, 770: 2712, 2574, 777: 2735, 2734, 780: 2736, 783: 2575, 788: 2733, 810: 2739, 829: 2740}, + {492: 4217, 572: 1873, 859: 4216}, + {457, 457, 483: 828, 493: 828, 828, 496: 2751, 504: 2752, 2748, 772: 3917, 3918}, // 175 - {452, 452}, - {451, 451}, - {450, 450}, - {448, 448}, - {446, 446}, + {459, 459, 483: 829, 493: 829, 829}, + {464, 464}, + {463, 463}, + {462, 462}, + {461, 461}, // 180 + {460, 460}, + {458, 458}, + {456, 456}, {7, 7}, - {198: 4184, 473: 2588, 2587, 4185, 495: 2586, 504: 2572, 567: 2571, 569: 2585, 646: 2581, 654: 2690, 665: 2707, 709: 2708, 739: 2553, 748: 2709, 2582, 2583, 2584, 2593, 756: 2591, 2590, 2589, 2556, 2715, 2714, 766: 2554, 772: 2689, 774: 2712, 2713, 2711, 779: 2555, 783: 2710, 806: 2716, 825: 4183}, - {139: 2721}, - {3, 3}, - {247, 247, 493: 247, 498: 2722, 501: 247, 247, 790: 2723, 2724}, + {200: 4210, 476: 2608, 2607, 4211, 498: 2606, 507: 2592, 570: 2591, 572: 2605, 649: 2601, 657: 2713, 668: 2730, 713: 2731, 743: 2573, 752: 2732, 2602, 2603, 2604, 2613, 760: 2611, 2610, 2609, 2576, 2738, 2737, 770: 2712, 2574, 777: 2735, 2734, 780: 2736, 783: 2575, 788: 2733, 810: 2739, 829: 4209}, // 185 - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 2840, 2788, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 2869, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 2874, 2801, 2766, 2783, 2948, 3031, 3020, 2818, 2830, 2941, 2942, 2937, 2895, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 2876, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 2760, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 2880, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 2799, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 2866, 2865, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 2936, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 2824, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 2751, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 2882, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 2752, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3144, 2878, 3145, 3146, 2777, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3159, 3160, 3211, 3210, 3057, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 2918, 2935, 3058, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3177, 3178, 3179, 2931, 3130, 3189, 3190, 3201, 3185, 3186, 3187, 3220, 2877, 473: 3260, 475: 3239, 3258, 2755, 479: 3268, 482: 3272, 3276, 485: 3257, 3256, 3295, 492: 3230, 495: 3269, 504: 3275, 3293, 508: 3234, 530: 3264, 564: 3271, 567: 3294, 2753, 570: 3277, 3229, 3231, 3233, 3232, 3261, 3237, 3251, 3242, 3263, 3238, 582: 3270, 3262, 3267, 3273, 3283, 3336, 3284, 3285, 592: 3236, 3314, 595: 3254, 3255, 3309, 3310, 3311, 3312, 3313, 3265, 3291, 3296, 3306, 3307, 3300, 3315, 3316, 3317, 3301, 3319, 3320, 3302, 3318, 3297, 3305, 3303, 3289, 3321, 3322, 3266, 3326, 3278, 3279, 3282, 3325, 3331, 3330, 3332, 3329, 3333, 3328, 3327, 3324, 3274, 3323, 3281, 3280, 3286, 3287, 648: 2756, 661: 3244, 2762, 2763, 2761, 709: 3259, 3335, 3245, 3250, 3235, 3308, 3248, 3246, 3247, 3288, 3299, 3298, 3292, 3290, 3304, 3243, 3253, 3334, 3252, 3249, 2759, 2758, 2757, 4182}, - {246, 246, 49: 246, 472: 246, 474: 246, 480: 246, 246, 490: 246, 246, 493: 246, 246, 496: 246, 246, 501: 246, 246, 513: 246, 246, 516: 246}, - {1297, 1297, 493: 1297, 501: 1297, 2725, 767: 2726, 812: 2727}, - {660: 2750}, - {1296, 1296, 49: 1296, 127: 1296, 472: 1296, 474: 1296, 480: 1296, 1296, 490: 1296, 1296, 493: 1296, 1296, 496: 1296, 1296, 501: 1296}, + {142: 2744}, + {3, 3}, + {257, 257, 496: 257, 501: 2745, 504: 257, 257, 795: 2746, 2747}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 2864, 2812, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 2893, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 2898, 2825, 2789, 2807, 2972, 3055, 3044, 2842, 2854, 2965, 2966, 2961, 2919, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 2900, 2885, 2881, 2973, 2997, 2783, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 2904, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 2823, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 2889, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 2890, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 2960, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 2848, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 2774, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 2906, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 2775, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3170, 2902, 3171, 3172, 2801, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3185, 3186, 3237, 3236, 3081, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 2942, 2959, 3082, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3203, 3204, 3205, 2955, 3156, 3215, 3216, 3227, 3211, 3212, 3213, 3246, 2901, 476: 3286, 478: 3265, 3284, 2778, 482: 3294, 485: 3298, 3302, 488: 3283, 3282, 3321, 495: 3256, 498: 3295, 507: 3301, 3319, 511: 3260, 533: 3290, 567: 3297, 570: 3320, 2776, 573: 3303, 3255, 3257, 3259, 3258, 3287, 3263, 3277, 3268, 3289, 3264, 585: 3296, 3288, 3293, 3299, 3309, 3362, 3310, 3311, 595: 3262, 3340, 598: 3280, 3281, 3335, 3336, 3337, 3338, 3339, 3291, 3317, 3322, 3332, 3333, 3326, 3341, 3342, 3343, 3327, 3345, 3346, 3328, 3344, 3323, 3331, 3329, 3315, 3347, 3348, 3292, 3352, 3304, 3305, 3308, 3351, 3357, 3356, 3358, 3355, 3359, 3354, 3353, 3350, 3300, 3349, 3307, 3306, 3312, 3313, 651: 2779, 664: 3270, 2785, 2786, 2784, 713: 3285, 3361, 3271, 3276, 3261, 3334, 3274, 3272, 3273, 3314, 3325, 3324, 3318, 3316, 3330, 3269, 3279, 3360, 3278, 3275, 2782, 2781, 2780, 4208}, + {256, 256, 50: 256, 475: 256, 477: 256, 483: 256, 256, 493: 256, 256, 496: 256, 256, 499: 256, 256, 504: 256, 256, 516: 256, 256, 519: 256}, // 190 - {869, 869, 493: 2728, 501: 2729, 768: 2730, 830: 2731}, - {508: 2736, 577: 2738, 733: 2735, 741: 2737, 882: 2745}, - {10: 2732, 270: 2733, 1216: 2734}, - {868, 868, 49: 868, 472: 868, 474: 868, 480: 868, 868, 490: 868, 868, 494: 868, 496: 868, 868}, - {5, 5}, + {1311, 1311, 496: 1311, 504: 1311, 2748, 772: 2749, 817: 2750}, + {663: 2773}, + {1310, 1310, 50: 1310, 128: 1310, 475: 1310, 477: 1310, 483: 1310, 1310, 493: 1310, 1310, 496: 1310, 1310, 499: 1310, 1310, 504: 1310}, + {883, 883, 496: 2751, 504: 2752, 773: 2753, 834: 2754}, + {511: 2759, 580: 2761, 737: 2758, 745: 2760, 886: 2768}, // 195 - {508: 877, 524: 877, 575: 877, 577: 877}, - {508: 876, 524: 876, 575: 876, 577: 876}, - {508: 2736, 524: 875, 575: 875, 577: 2738, 733: 2735, 741: 2737, 882: 2739, 1210: 2740}, - {1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 15: 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 49: 1975, 1975, 52: 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 83: 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 104: 1975, 1975, 108: 1975, 1975, 112: 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 164: 1975, 184: 1975, 212: 1975, 472: 1975, 1975, 1975, 478: 1975, 1975, 1975, 1975, 484: 1975, 488: 1975, 1975, 1975, 1975, 494: 1975, 1975, 1975, 1975, 503: 1975, 1975, 1975, 1975, 524: 1975, 569: 1975, 575: 1975, 646: 1975, 1975, 649: 1975, 653: 1975}, - {1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 15: 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 52: 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 104: 1973, 1973, 108: 1973, 1973, 112: 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 128: 1973, 1973, 1973, 1973, 164: 1973, 184: 1973, 1973, 189: 1973, 212: 1973, 251: 1973, 472: 1973, 1973, 1973, 478: 1973, 1973, 1973, 1973, 484: 1973, 488: 1973, 1973, 1973, 1973, 493: 1973, 1973, 1973, 1973, 1973, 1973, 501: 1973, 503: 1973, 1973, 1973, 1973, 524: 1973, 569: 1973, 575: 1973, 646: 1973, 1973, 649: 1973, 653: 1973, 655: 1973, 658: 1973, 739: 1973}, + {10: 2755, 273: 2756, 1225: 2757}, + {882, 882, 50: 882, 475: 882, 477: 882, 483: 882, 882, 493: 882, 882, 497: 882, 499: 882, 882}, + {5, 5}, + {511: 891, 527: 891, 578: 891, 580: 891}, + {511: 890, 527: 890, 578: 890, 580: 890}, // 200 - {881, 881, 9: 881, 49: 881, 164: 881, 472: 881, 474: 881, 480: 881, 881, 490: 881, 881, 494: 881, 496: 881, 881, 524: 881, 575: 881}, - {880, 880, 9: 880, 49: 880, 164: 880, 472: 880, 474: 880, 480: 880, 880, 490: 880, 880, 494: 880, 496: 880, 880, 524: 880, 575: 880}, - {524: 874, 575: 874}, - {524: 2742, 575: 2741, 1289: 2743}, - {154: 879}, + {511: 2759, 527: 889, 578: 889, 580: 2761, 737: 2758, 745: 2760, 886: 2762, 1219: 2763}, + {1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 15: 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 50: 1992, 1992, 53: 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 84: 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 105: 1992, 1992, 109: 1992, 1992, 113: 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 166: 1992, 186: 1992, 214: 1992, 475: 1992, 1992, 1992, 481: 1992, 1992, 1992, 1992, 487: 1992, 491: 1992, 1992, 1992, 1992, 497: 1992, 1992, 1992, 1992, 506: 1992, 1992, 1992, 1992, 527: 1992, 572: 1992, 578: 1992, 649: 1992, 1992, 652: 1992, 656: 1992}, + {1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 15: 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 53: 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 105: 1990, 1990, 109: 1990, 1990, 113: 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 132: 1990, 1990, 1990, 1990, 166: 1990, 186: 1990, 1990, 191: 1990, 214: 1990, 254: 1990, 475: 1990, 1990, 1990, 481: 1990, 1990, 1990, 1990, 487: 1990, 491: 1990, 1990, 1990, 1990, 496: 1990, 1990, 1990, 1990, 1990, 1990, 504: 1990, 506: 1990, 1990, 1990, 1990, 527: 1990, 570: 1990, 572: 1990, 578: 1990, 649: 1990, 1990, 652: 1990, 656: 1990, 1990, 1990, 661: 1990, 743: 1990}, + {895, 895, 9: 895, 50: 895, 166: 895, 475: 895, 477: 895, 483: 895, 895, 493: 895, 895, 497: 895, 499: 895, 895, 527: 895, 578: 895}, + {894, 894, 9: 894, 50: 894, 166: 894, 475: 894, 477: 894, 483: 894, 894, 493: 894, 894, 497: 894, 499: 894, 894, 527: 894, 578: 894}, // 205 - {154: 878}, - {154: 2744}, - {870, 870, 49: 870, 472: 870, 474: 870, 480: 870, 870, 490: 870, 870, 494: 870, 496: 870, 870}, - {873, 873, 9: 2746, 49: 873, 164: 2747, 472: 873, 474: 873, 480: 873, 873, 490: 873, 873, 494: 873, 496: 873, 873}, - {508: 2736, 577: 2738, 733: 2735, 741: 2737, 882: 2749}, + {527: 888, 578: 888}, + {527: 2765, 578: 2764, 1297: 2766}, + {156: 893}, + {156: 892}, + {156: 2767}, // 210 - {508: 2736, 577: 2738, 733: 2735, 741: 2737, 882: 2748}, - {871, 871, 49: 871, 472: 871, 474: 871, 480: 871, 871, 490: 871, 871, 494: 871, 496: 871, 871}, - {872, 872, 49: 872, 472: 872, 474: 872, 480: 872, 872, 490: 872, 872, 494: 872, 496: 872, 872}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 2840, 2788, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 2869, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 2874, 2801, 2766, 2783, 2948, 3031, 3020, 2818, 2830, 2941, 2942, 2937, 2895, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 2876, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 2760, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 2880, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 2799, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 2866, 2865, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 2936, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 2824, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 2751, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 2882, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 2752, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3144, 2878, 3145, 3146, 2777, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3159, 3160, 3211, 3210, 3057, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 2918, 2935, 3058, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3177, 3178, 3179, 2931, 3130, 3189, 3190, 3201, 3185, 3186, 3187, 3220, 2877, 473: 3260, 475: 3239, 3258, 2755, 479: 3268, 482: 3272, 3276, 485: 3257, 3256, 3295, 492: 3230, 495: 3269, 504: 3275, 3293, 508: 3234, 530: 3264, 564: 3271, 567: 3294, 2753, 570: 3277, 3229, 3231, 3233, 3232, 3261, 3237, 3251, 3242, 3263, 3238, 582: 3270, 3262, 3267, 3273, 3283, 3336, 3284, 3285, 592: 3236, 3314, 595: 3254, 3255, 3309, 3310, 3311, 3312, 3313, 3265, 3291, 3296, 3306, 3307, 3300, 3315, 3316, 3317, 3301, 3319, 3320, 3302, 3318, 3297, 3305, 3303, 3289, 3321, 3322, 3266, 3326, 3278, 3279, 3282, 3325, 3331, 3330, 3332, 3329, 3333, 3328, 3327, 3324, 3274, 3323, 3281, 3280, 3286, 3287, 648: 2756, 661: 3244, 2762, 2763, 2761, 709: 3259, 3335, 3245, 3250, 3235, 3308, 3248, 3246, 3247, 3288, 3299, 3298, 3292, 3290, 3304, 3243, 3253, 3334, 3252, 3249, 2759, 2758, 2757, 2754, 871: 3241, 900: 3240}, - {1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 4179, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 474: 1535, 1535, 1535, 1535, 1535, 480: 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 489: 1535, 1535, 1535, 493: 1535, 1535, 496: 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 506: 1535, 1535, 509: 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 531: 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 565: 1535, 1535, 594: 1535, 652: 1535, 656: 1535, 1535}, + {884, 884, 50: 884, 475: 884, 477: 884, 483: 884, 884, 493: 884, 884, 497: 884, 499: 884, 884}, + {887, 887, 9: 2769, 50: 887, 166: 2770, 475: 887, 477: 887, 483: 887, 887, 493: 887, 887, 497: 887, 499: 887, 887}, + {511: 2759, 580: 2761, 737: 2758, 745: 2760, 886: 2772}, + {511: 2759, 580: 2761, 737: 2758, 745: 2760, 886: 2771}, + {885, 885, 50: 885, 475: 885, 477: 885, 483: 885, 885, 493: 885, 885, 497: 885, 499: 885, 885}, // 215 - {1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 4176, 1534, 1534, 1534, 1534, 1534, 480: 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 489: 1534, 1534, 1534, 493: 1534, 1534, 496: 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 506: 1534, 1534, 509: 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 531: 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 565: 1534, 1534, 594: 1534, 652: 1534, 656: 1534, 1534}, - {748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 474: 748, 748, 748, 748, 748, 480: 748, 748, 748, 748, 748, 748, 748, 748, 489: 748, 748, 748, 493: 748, 748, 496: 748, 748, 748, 748, 748, 748, 748, 748, 506: 748, 748, 509: 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 531: 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 565: 748, 748, 594: 748, 659: 4174}, - {1304, 1304, 9: 1304, 49: 1304, 127: 1304, 472: 1304, 474: 1304, 480: 1304, 1304, 490: 1304, 1304, 493: 1304, 1304, 496: 1304, 1304, 501: 1304, 1304, 507: 3345, 509: 3343, 3344, 3342, 3340, 514: 1304, 516: 1304, 524: 1304, 527: 1304, 1304, 4173, 531: 4172, 734: 3341, 3339, 1272: 4171}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 2840, 2788, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 2869, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 2874, 2801, 2766, 2783, 2948, 3031, 3020, 2818, 2830, 2941, 2942, 2937, 2895, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 2876, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 2760, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 2880, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 2799, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 2866, 2865, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 2936, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 2824, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 2751, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 2882, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 2752, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3144, 2878, 3145, 3146, 2777, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3159, 3160, 3211, 3210, 3057, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 2918, 2935, 3058, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3177, 3178, 3179, 2931, 3130, 3189, 3190, 3201, 3185, 3186, 3187, 3220, 2877, 473: 3260, 475: 3239, 3258, 2755, 479: 3268, 482: 3272, 3276, 485: 3257, 3256, 3295, 492: 3230, 495: 3269, 504: 3275, 3293, 508: 3234, 530: 3264, 564: 3271, 567: 3294, 2753, 570: 3277, 3229, 3231, 3233, 3232, 3261, 3237, 3251, 3242, 3263, 3238, 582: 3270, 3262, 3267, 3273, 3283, 3336, 3284, 3285, 592: 3236, 3314, 595: 3254, 3255, 3309, 3310, 3311, 3312, 3313, 3265, 3291, 3296, 3306, 3307, 3300, 3315, 3316, 3317, 3301, 3319, 3320, 3302, 3318, 3297, 3305, 3303, 3289, 3321, 3322, 3266, 3326, 3278, 3279, 3282, 3325, 3331, 3330, 3332, 3329, 3333, 3328, 3327, 3324, 3274, 3323, 3281, 3280, 3286, 3287, 648: 2756, 661: 3244, 2762, 2763, 2761, 709: 3259, 3335, 3245, 3250, 3235, 3308, 3248, 3246, 3247, 3288, 3299, 3298, 3292, 3290, 3304, 3243, 3253, 3334, 3252, 3249, 2759, 2758, 2757, 4170}, - {473: 4142}, + {886, 886, 50: 886, 475: 886, 477: 886, 483: 886, 886, 493: 886, 886, 497: 886, 499: 886, 886}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 2864, 2812, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 2893, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 2898, 2825, 2789, 2807, 2972, 3055, 3044, 2842, 2854, 2965, 2966, 2961, 2919, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 2900, 2885, 2881, 2973, 2997, 2783, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 2904, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 2823, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 2889, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 2890, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 2960, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 2848, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 2774, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 2906, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 2775, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3170, 2902, 3171, 3172, 2801, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3185, 3186, 3237, 3236, 3081, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 2942, 2959, 3082, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3203, 3204, 3205, 2955, 3156, 3215, 3216, 3227, 3211, 3212, 3213, 3246, 2901, 476: 3286, 478: 3265, 3284, 2778, 482: 3294, 485: 3298, 3302, 488: 3283, 3282, 3321, 495: 3256, 498: 3295, 507: 3301, 3319, 511: 3260, 533: 3290, 567: 3297, 570: 3320, 2776, 573: 3303, 3255, 3257, 3259, 3258, 3287, 3263, 3277, 3268, 3289, 3264, 585: 3296, 3288, 3293, 3299, 3309, 3362, 3310, 3311, 595: 3262, 3340, 598: 3280, 3281, 3335, 3336, 3337, 3338, 3339, 3291, 3317, 3322, 3332, 3333, 3326, 3341, 3342, 3343, 3327, 3345, 3346, 3328, 3344, 3323, 3331, 3329, 3315, 3347, 3348, 3292, 3352, 3304, 3305, 3308, 3351, 3357, 3356, 3358, 3355, 3359, 3354, 3353, 3350, 3300, 3349, 3307, 3306, 3312, 3313, 651: 2779, 664: 3270, 2785, 2786, 2784, 713: 3285, 3361, 3271, 3276, 3261, 3334, 3274, 3272, 3273, 3314, 3325, 3324, 3318, 3316, 3330, 3269, 3279, 3360, 3278, 3275, 2782, 2781, 2780, 2777, 875: 3267, 905: 3266}, + {1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 4205, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 477: 1551, 1551, 1551, 1551, 1551, 483: 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 492: 1551, 1551, 1551, 496: 1551, 1551, 499: 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 509: 1551, 1551, 512: 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 534: 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 568: 1551, 1551, 597: 1551, 655: 1551, 659: 1551, 1551}, + {1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 4202, 1550, 1550, 1550, 1550, 1550, 483: 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 492: 1550, 1550, 1550, 496: 1550, 1550, 499: 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 509: 1550, 1550, 512: 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 534: 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 568: 1550, 1550, 597: 1550, 655: 1550, 659: 1550, 1550}, + {762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 477: 762, 762, 762, 762, 762, 483: 762, 762, 762, 762, 762, 762, 762, 762, 492: 762, 762, 762, 496: 762, 762, 499: 762, 762, 762, 762, 762, 762, 762, 762, 509: 762, 762, 512: 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 534: 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 568: 762, 762, 597: 762, 662: 4200}, // 220 - {1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 474: 1935, 1935, 478: 1935, 480: 1935, 1935, 1935, 1935, 489: 1935, 1935, 1935, 493: 1935, 1935, 496: 1935, 1935, 1935, 4125, 1935, 1935, 1935, 1935, 506: 1935, 1935, 509: 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 519: 1935, 521: 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 531: 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 1935, 545: 1935, 1935, 555: 4122, 4120, 4119, 4127, 4121, 4123, 4124, 4126, 1195: 4118, 1240: 4117}, - {1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 474: 1910, 1910, 478: 1910, 480: 1910, 1910, 1910, 1910, 489: 1910, 1910, 1910, 493: 1910, 1910, 496: 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 506: 1910, 1910, 509: 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 519: 1910, 521: 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 531: 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 545: 1910, 1910, 555: 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910}, - {1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 474: 1883, 1883, 4089, 4088, 1883, 480: 1883, 1883, 1883, 1883, 485: 3686, 3687, 3692, 489: 1883, 1883, 1883, 493: 1883, 1883, 496: 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 506: 1883, 1883, 509: 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 4093, 1883, 3688, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 531: 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 4092, 1883, 1883, 3689, 3690, 3683, 3693, 3682, 3691, 3684, 3685, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 1883, 4090, 565: 4099, 4100, 810: 4091, 1112: 4094, 1180: 4096, 1235: 4095, 1243: 4097, 1285: 4098}, - {1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 4085, 1832, 1832, 1832, 1832, 1832, 480: 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 489: 1832, 1832, 1832, 493: 1832, 1832, 496: 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 506: 1832, 1832, 509: 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 531: 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 565: 1832, 1832, 594: 1832, 652: 1832, 656: 1832, 1832}, - {1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 665: 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831}, + {1318, 1318, 9: 1318, 50: 1318, 128: 1318, 475: 1318, 477: 1318, 483: 1318, 1318, 493: 1318, 1318, 496: 1318, 1318, 499: 1318, 1318, 504: 1318, 1318, 510: 3371, 512: 3369, 3370, 3368, 3366, 517: 1318, 519: 1318, 527: 1318, 530: 1318, 1318, 4199, 534: 4198, 738: 3367, 3365, 1280: 4197}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 2864, 2812, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 2893, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 2898, 2825, 2789, 2807, 2972, 3055, 3044, 2842, 2854, 2965, 2966, 2961, 2919, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 2900, 2885, 2881, 2973, 2997, 2783, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 2904, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 2823, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 2889, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 2890, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 2960, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 2848, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 2774, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 2906, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 2775, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3170, 2902, 3171, 3172, 2801, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3185, 3186, 3237, 3236, 3081, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 2942, 2959, 3082, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3203, 3204, 3205, 2955, 3156, 3215, 3216, 3227, 3211, 3212, 3213, 3246, 2901, 476: 3286, 478: 3265, 3284, 2778, 482: 3294, 485: 3298, 3302, 488: 3283, 3282, 3321, 495: 3256, 498: 3295, 507: 3301, 3319, 511: 3260, 533: 3290, 567: 3297, 570: 3320, 2776, 573: 3303, 3255, 3257, 3259, 3258, 3287, 3263, 3277, 3268, 3289, 3264, 585: 3296, 3288, 3293, 3299, 3309, 3362, 3310, 3311, 595: 3262, 3340, 598: 3280, 3281, 3335, 3336, 3337, 3338, 3339, 3291, 3317, 3322, 3332, 3333, 3326, 3341, 3342, 3343, 3327, 3345, 3346, 3328, 3344, 3323, 3331, 3329, 3315, 3347, 3348, 3292, 3352, 3304, 3305, 3308, 3351, 3357, 3356, 3358, 3355, 3359, 3354, 3353, 3350, 3300, 3349, 3307, 3306, 3312, 3313, 651: 2779, 664: 3270, 2785, 2786, 2784, 713: 3285, 3361, 3271, 3276, 3261, 3334, 3274, 3272, 3273, 3314, 3325, 3324, 3318, 3316, 3330, 3269, 3279, 3360, 3278, 3275, 2782, 2781, 2780, 4196}, + {476: 4168}, + {1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 477: 1952, 1952, 481: 1952, 483: 1952, 1952, 1952, 1952, 492: 1952, 1952, 1952, 496: 1952, 1952, 499: 1952, 1952, 1952, 4151, 1952, 1952, 1952, 1952, 509: 1952, 1952, 512: 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 522: 1952, 524: 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 534: 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 548: 1952, 1952, 558: 4148, 4146, 4145, 4153, 4147, 4149, 4150, 4152, 1204: 4144, 1248: 4143}, + {1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 477: 1927, 1927, 481: 1927, 483: 1927, 1927, 1927, 1927, 492: 1927, 1927, 1927, 496: 1927, 1927, 499: 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 509: 1927, 1927, 512: 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 522: 1927, 524: 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 534: 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 548: 1927, 1927, 558: 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927}, // 225 - {1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 665: 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830}, - {1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 665: 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829}, - {1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 665: 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828}, - {1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 665: 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827}, - {1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1235, 1826, 1826, 1826, 1826, 1826, 480: 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 489: 1826, 1826, 1826, 493: 1826, 1826, 496: 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 506: 1826, 1826, 509: 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 531: 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 565: 1826, 1826, 594: 1826, 652: 1826, 656: 1826, 1826}, + {1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 477: 1900, 1900, 4115, 4114, 1900, 483: 1900, 1900, 1900, 1900, 488: 3712, 3713, 3718, 492: 1900, 1900, 1900, 496: 1900, 1900, 499: 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 509: 1900, 1900, 512: 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 4119, 1900, 3714, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 534: 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 4118, 1900, 1900, 3715, 3716, 3709, 3719, 3708, 3717, 3710, 3711, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 4116, 568: 4125, 4126, 815: 4117, 1120: 4120, 1189: 4122, 1243: 4121, 1251: 4123, 1293: 4124}, + {1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 4111, 1849, 1849, 1849, 1849, 1849, 483: 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 492: 1849, 1849, 1849, 496: 1849, 1849, 499: 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 509: 1849, 1849, 512: 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 534: 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 568: 1849, 1849, 597: 1849, 655: 1849, 659: 1849, 1849}, + {1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 668: 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848, 1848}, + {1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 668: 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847, 1847}, + {1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 668: 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846, 1846}, // 230 - {1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 665: 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825}, - {1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 665: 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824}, - {1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 665: 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823}, - {1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 665: 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822}, - {1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 665: 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821}, + {1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 668: 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845, 1845}, + {1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 668: 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844, 1844}, + {1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1249, 1843, 1843, 1843, 1843, 1843, 483: 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 492: 1843, 1843, 1843, 496: 1843, 1843, 499: 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 509: 1843, 1843, 512: 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 534: 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 568: 1843, 1843, 597: 1843, 655: 1843, 659: 1843, 1843}, + {1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 668: 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842, 1842}, + {1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 668: 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841, 1841}, // 235 - {1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 665: 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820}, - {1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 665: 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819}, - {1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 665: 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818}, - {1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 665: 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817}, - {1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 665: 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816}, + {1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 668: 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840, 1840}, + {1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 668: 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839, 1839}, + {1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 668: 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838, 1838}, + {1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 668: 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837, 1837}, + {1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 668: 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836, 1836}, // 240 - {1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 4080, 1815, 1815, 1815, 1815, 1815, 480: 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 489: 1815, 1815, 1815, 493: 1815, 1815, 496: 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 506: 1815, 1815, 509: 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 531: 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 565: 1815, 1815, 594: 1815, 652: 1815, 656: 1815, 1815}, - {1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 665: 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814}, - {1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 665: 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813}, - {1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 665: 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812}, - {1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 665: 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811}, + {1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 668: 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835, 1835}, + {1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 668: 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834, 1834}, + {1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 668: 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833, 1833}, + {1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 668: 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832}, + {1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 4106, 1831, 1831, 1831, 1831, 1831, 483: 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 492: 1831, 1831, 1831, 496: 1831, 1831, 499: 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 509: 1831, 1831, 512: 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 534: 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 568: 1831, 1831, 597: 1831, 655: 1831, 659: 1831, 1831}, // 245 - {1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 665: 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810}, - {1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 665: 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809}, - {1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 665: 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808}, - {1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 665: 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807}, - {1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 665: 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806}, + {1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 668: 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830, 1830}, + {1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 668: 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829, 1829}, + {1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 668: 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828, 1828}, + {1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 668: 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827, 1827}, + {1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 668: 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826}, // 250 - {1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 665: 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805}, - {1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1234, 1804, 1804, 1804, 1804, 1804, 480: 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 489: 1804, 1804, 1804, 493: 1804, 1804, 496: 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 506: 1804, 1804, 509: 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 531: 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 565: 1804, 1804, 594: 1804, 652: 1804, 656: 1804, 1804}, - {1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 665: 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803}, - {1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 665: 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802}, - {1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 665: 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801}, + {1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 668: 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825, 1825}, + {1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 668: 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824, 1824}, + {1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 668: 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823, 1823}, + {1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 668: 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822, 1822}, + {1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 668: 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821, 1821}, // 255 - {1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 665: 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800}, - {1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 665: 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799}, - {1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 665: 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798}, - {1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 665: 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797}, - {1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 665: 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796}, + {1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1248, 1820, 1820, 1820, 1820, 1820, 483: 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 492: 1820, 1820, 1820, 496: 1820, 1820, 499: 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 509: 1820, 1820, 512: 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 534: 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 568: 1820, 1820, 597: 1820, 655: 1820, 659: 1820, 1820}, + {1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 668: 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819, 1819}, + {1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 668: 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818, 1818}, + {1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 668: 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817, 1817}, + {1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 668: 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816, 1816}, // 260 - {1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 665: 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795}, - {1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 665: 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794}, - {1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1231, 1793, 4079, 1793, 1793, 1793, 480: 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 489: 1793, 1793, 1793, 493: 1793, 1793, 496: 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 506: 1793, 1793, 509: 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 531: 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 565: 1793, 1793, 594: 1793, 652: 1793, 656: 1793, 1793}, - {1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 665: 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792}, - {1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1229, 1791, 1791, 1791, 1791, 1791, 480: 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 489: 1791, 1791, 1791, 493: 1791, 1791, 496: 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 506: 1791, 1791, 509: 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 531: 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 565: 1791, 1791, 594: 1791, 652: 1791, 656: 1791, 1791}, + {1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 668: 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815}, + {1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 668: 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814, 1814}, + {1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 668: 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813, 1813}, + {1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 668: 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812, 1812}, + {1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 668: 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811, 1811}, // 265 - {1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 665: 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790}, - {1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 665: 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789}, - {1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 665: 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788}, - {1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 665: 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787}, - {1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 665: 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786}, + {1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 668: 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810, 1810}, + {1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1245, 1809, 4105, 1809, 1809, 1809, 483: 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 492: 1809, 1809, 1809, 496: 1809, 1809, 499: 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 509: 1809, 1809, 512: 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 534: 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 568: 1809, 1809, 597: 1809, 655: 1809, 659: 1809, 1809}, + {1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 668: 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808, 1808}, + {1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1243, 1807, 1807, 1807, 1807, 1807, 483: 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 492: 1807, 1807, 1807, 496: 1807, 1807, 499: 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 509: 1807, 1807, 512: 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 534: 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 568: 1807, 1807, 597: 1807, 655: 1807, 659: 1807, 1807}, + {1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 668: 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806, 1806}, // 270 - {1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 665: 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785}, - {1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 665: 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784}, - {1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 665: 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783}, - {1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 665: 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782}, - {1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 665: 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781}, + {1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 668: 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805, 1805}, + {1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 668: 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804}, + {1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 668: 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803, 1803}, + {1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 668: 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802, 1802}, + {1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 668: 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801, 1801}, // 275 - {1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 665: 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780}, - {1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 665: 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779}, - {1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 665: 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778}, - {1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 665: 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777}, - {1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 665: 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776}, + {1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 668: 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800, 1800}, + {1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 668: 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799, 1799}, + {1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 668: 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798, 1798}, + {1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 668: 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797, 1797}, + {1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 668: 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796, 1796}, // 280 - {1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 665: 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775}, - {1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 665: 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774}, - {1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 665: 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773}, - {1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 665: 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772}, - {1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 665: 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771}, + {1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 668: 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795, 1795}, + {1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 668: 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794, 1794}, + {1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 668: 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793}, + {1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 668: 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792, 1792}, + {1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 668: 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791}, // 285 - {1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 665: 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770}, - {1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 665: 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769}, - {1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1225, 1768, 1768, 1768, 1768, 1768, 480: 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 489: 1768, 1768, 1768, 493: 1768, 1768, 496: 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 506: 1768, 1768, 509: 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 531: 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 565: 1768, 1768, 594: 1768, 652: 1768, 656: 1768, 1768}, - {1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 665: 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767}, - {1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 665: 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766}, + {1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 668: 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790, 1790}, + {1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 668: 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789, 1789}, + {1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 668: 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788, 1788}, + {1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 668: 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787, 1787}, + {1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 668: 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786, 1786}, // 290 - {1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 665: 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765}, - {1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 665: 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764}, - {1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 665: 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763}, - {1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1228, 1762, 1762, 1762, 1762, 1762, 480: 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 489: 1762, 1762, 1762, 493: 1762, 1762, 496: 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 506: 1762, 1762, 509: 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 531: 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 565: 1762, 1762, 594: 1762, 652: 1762, 656: 1762, 1762}, - {1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 665: 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761}, + {1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 668: 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785, 1785}, + {1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1239, 1784, 1784, 1784, 1784, 1784, 483: 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 492: 1784, 1784, 1784, 496: 1784, 1784, 499: 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 509: 1784, 1784, 512: 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 534: 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 568: 1784, 1784, 597: 1784, 655: 1784, 659: 1784, 1784}, + {1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 668: 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783, 1783}, + {1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 668: 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782, 1782}, + {1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 668: 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781, 1781}, // 295 - {1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 665: 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760}, - {1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 665: 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759}, - {1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 665: 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758}, - {1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 665: 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757}, - {1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 665: 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756}, + {1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 668: 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780, 1780}, + {1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 668: 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779, 1779}, + {1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1242, 1778, 1778, 1778, 1778, 1778, 483: 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 492: 1778, 1778, 1778, 496: 1778, 1778, 499: 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 509: 1778, 1778, 512: 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 534: 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 568: 1778, 1778, 597: 1778, 655: 1778, 659: 1778, 1778}, + {1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 668: 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777, 1777}, + {1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 668: 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776, 1776}, // 300 - {1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 665: 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755}, - {1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 665: 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754}, - {1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 665: 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753}, - {1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 4076, 1752, 1752, 1752, 1752, 1752, 480: 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 489: 1752, 1752, 1752, 493: 1752, 1752, 496: 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 506: 1752, 1752, 509: 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 531: 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 565: 1752, 1752, 594: 1752, 652: 1752, 656: 1752, 1752}, - {1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 665: 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751}, + {1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 668: 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775, 1775}, + {1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 668: 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774, 1774}, + {1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 668: 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773, 1773}, + {1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 668: 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772, 1772}, + {1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 668: 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771, 1771}, // 305 - {1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 665: 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750}, - {1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 665: 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749}, - {1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 665: 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748}, - {1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 665: 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747}, - {1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 665: 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746}, + {1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 668: 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770, 1770}, + {1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 668: 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769, 1769}, + {1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 4102, 1768, 1768, 1768, 1768, 1768, 483: 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 492: 1768, 1768, 1768, 496: 1768, 1768, 499: 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 509: 1768, 1768, 512: 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 534: 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 568: 1768, 1768, 597: 1768, 655: 1768, 659: 1768, 1768}, + {1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 668: 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767, 1767}, + {1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 668: 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766, 1766}, // 310 - {1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 665: 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745}, - {1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 665: 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744}, - {1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 665: 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743}, - {1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 665: 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742}, - {1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 665: 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741}, + {1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 668: 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765, 1765}, + {1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 668: 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764, 1764}, + {1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 668: 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763, 1763}, + {1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 668: 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762}, + {1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 668: 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761, 1761}, // 315 - {1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 665: 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740}, - {1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 665: 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739}, - {1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 665: 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738}, - {1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 665: 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737}, - {1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 665: 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736}, + {1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 668: 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760, 1760}, + {1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 668: 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759, 1759}, + {1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 668: 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758, 1758}, + {1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 668: 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757, 1757}, + {1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 668: 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756, 1756}, // 320 - {1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 665: 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735}, - {1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 665: 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734}, - {1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 665: 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733}, - {1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 665: 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732}, - {1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 665: 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731}, + {1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 668: 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755, 1755}, + {1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 668: 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754, 1754}, + {1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 668: 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753, 1753}, + {1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 668: 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752}, + {1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 668: 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751, 1751}, // 325 - {1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 665: 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730}, - {1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 665: 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729}, - {1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 665: 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728}, - {1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1212, 1727, 4075, 1727, 1727, 1727, 480: 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 489: 1727, 1727, 1727, 493: 1727, 1727, 496: 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 506: 1727, 1727, 509: 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 531: 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 565: 1727, 1727, 594: 1727, 652: 1727, 656: 1727, 1727}, - {1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1211, 1726, 4074, 1726, 1726, 1726, 480: 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 489: 1726, 1726, 1726, 493: 1726, 1726, 496: 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 506: 1726, 1726, 509: 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 531: 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 565: 1726, 1726, 594: 1726, 652: 1726, 656: 1726, 1726}, + {1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 668: 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750, 1750}, + {1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 668: 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749, 1749}, + {1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 668: 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748, 1748}, + {1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 668: 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747, 1747}, + {1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 668: 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746, 1746}, // 330 - {1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 665: 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725}, - {1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 665: 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724}, - {1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1210, 1723, 1723, 1723, 1723, 1723, 480: 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 489: 1723, 1723, 1723, 493: 1723, 1723, 496: 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 506: 1723, 1723, 509: 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 531: 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 565: 1723, 1723, 594: 1723, 652: 1723, 656: 1723, 1723}, - {1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 665: 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722}, - {1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 665: 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721}, + {1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 668: 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745, 1745}, + {1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 668: 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744, 1744}, + {1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1226, 1743, 4101, 1743, 1743, 1743, 483: 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 492: 1743, 1743, 1743, 496: 1743, 1743, 499: 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 509: 1743, 1743, 512: 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 534: 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 568: 1743, 1743, 597: 1743, 655: 1743, 659: 1743, 1743}, + {1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1225, 1742, 4100, 1742, 1742, 1742, 483: 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 492: 1742, 1742, 1742, 496: 1742, 1742, 499: 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 509: 1742, 1742, 512: 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 534: 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 568: 1742, 1742, 597: 1742, 655: 1742, 659: 1742, 1742}, + {1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 668: 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741, 1741}, // 335 - {1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 665: 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720}, - {1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 665: 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719}, - {1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1207, 1718, 1718, 1718, 1718, 1718, 480: 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 489: 1718, 1718, 1718, 493: 1718, 1718, 496: 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 506: 1718, 1718, 509: 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 531: 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 565: 1718, 1718, 594: 1718, 652: 1718, 656: 1718, 1718}, - {1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 665: 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717}, - {1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1208, 1716, 1716, 1716, 1716, 1716, 480: 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 489: 1716, 1716, 1716, 493: 1716, 1716, 496: 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 506: 1716, 1716, 509: 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 531: 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 565: 1716, 1716, 594: 1716, 652: 1716, 656: 1716, 1716}, + {1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 668: 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740, 1740}, + {1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1224, 1739, 1739, 1739, 1739, 1739, 483: 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 492: 1739, 1739, 1739, 496: 1739, 1739, 499: 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 509: 1739, 1739, 512: 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 534: 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 568: 1739, 1739, 597: 1739, 655: 1739, 659: 1739, 1739}, + {1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 668: 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738, 1738}, + {1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 668: 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737, 1737}, + {1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 668: 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736, 1736}, // 340 - {1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 4064, 1715, 1715, 1715, 1715, 1715, 480: 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 489: 1715, 1715, 1715, 493: 1715, 1715, 496: 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 506: 1715, 1715, 509: 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 531: 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 565: 1715, 1715, 594: 1715, 652: 1715, 656: 1715, 1715}, - {1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 665: 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714}, - {1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 665: 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713}, - {1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1209, 1712, 1712, 1712, 1712, 1712, 480: 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 489: 1712, 1712, 1712, 493: 1712, 1712, 496: 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 506: 1712, 1712, 509: 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 531: 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 565: 1712, 1712, 594: 1712, 652: 1712, 656: 1712, 1712}, - {1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 665: 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711}, + {1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 668: 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735, 1735}, + {1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1221, 1734, 1734, 1734, 1734, 1734, 483: 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 492: 1734, 1734, 1734, 496: 1734, 1734, 499: 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 509: 1734, 1734, 512: 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 534: 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 568: 1734, 1734, 597: 1734, 655: 1734, 659: 1734, 1734}, + {1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 668: 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733, 1733}, + {1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1222, 1732, 1732, 1732, 1732, 1732, 483: 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 492: 1732, 1732, 1732, 496: 1732, 1732, 499: 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 509: 1732, 1732, 512: 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 534: 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 568: 1732, 1732, 597: 1732, 655: 1732, 659: 1732, 1732}, + {1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 4090, 1731, 1731, 1731, 1731, 1731, 483: 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 492: 1731, 1731, 1731, 496: 1731, 1731, 499: 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 509: 1731, 1731, 512: 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 534: 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 568: 1731, 1731, 597: 1731, 655: 1731, 659: 1731, 1731}, // 345 - {1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1232, 1710, 1710, 1710, 1710, 1710, 480: 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 489: 1710, 1710, 1710, 493: 1710, 1710, 496: 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 506: 1710, 1710, 509: 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 531: 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 565: 1710, 1710, 594: 1710, 652: 1710, 656: 1710, 1710}, - {1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 665: 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709}, - {1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 665: 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708}, - {1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 665: 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707}, - {1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 665: 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706}, + {1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 668: 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730}, + {1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 668: 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729}, + {1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1223, 1728, 1728, 1728, 1728, 1728, 483: 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 492: 1728, 1728, 1728, 496: 1728, 1728, 499: 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 509: 1728, 1728, 512: 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 534: 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 568: 1728, 1728, 597: 1728, 655: 1728, 659: 1728, 1728}, + {1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 668: 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727}, + {1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1246, 1726, 1726, 1726, 1726, 1726, 483: 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 492: 1726, 1726, 1726, 496: 1726, 1726, 499: 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 509: 1726, 1726, 512: 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 534: 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 568: 1726, 1726, 597: 1726, 655: 1726, 659: 1726, 1726}, // 350 - {1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 665: 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705}, - {1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 665: 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704}, - {1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 665: 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703}, - {1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 665: 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702}, - {1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 665: 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701}, + {1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 668: 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725, 1725}, + {1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 668: 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724, 1724}, + {1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 668: 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723}, + {1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 668: 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722, 1722}, + {1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 668: 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721, 1721}, // 355 - {1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 665: 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700}, - {1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 665: 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699}, - {1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 665: 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698}, - {1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1219, 1697, 1697, 1697, 1697, 1697, 480: 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 489: 1697, 1697, 1697, 493: 1697, 1697, 496: 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 506: 1697, 1697, 509: 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 531: 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 565: 1697, 1697, 594: 1697, 652: 1697, 656: 1697, 1697}, - {1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 665: 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696}, + {1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 668: 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720, 1720}, + {1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 668: 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719, 1719}, + {1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 668: 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718}, + {1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 668: 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717, 1717}, + {1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 668: 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716}, // 360 - {1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 665: 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695}, - {1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 665: 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694}, - {1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 665: 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693}, - {1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 665: 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692}, - {1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 665: 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691}, + {1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 668: 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715}, + {1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 668: 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714}, + {1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1233, 1713, 1713, 1713, 1713, 1713, 483: 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 492: 1713, 1713, 1713, 496: 1713, 1713, 499: 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 509: 1713, 1713, 512: 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 534: 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 568: 1713, 1713, 597: 1713, 655: 1713, 659: 1713, 1713}, + {1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 668: 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712}, + {1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 668: 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711, 1711}, // 365 - {1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 665: 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690}, - {1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 665: 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689}, - {1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 665: 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688}, - {1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 665: 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687}, - {1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 665: 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686}, + {1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 668: 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710}, + {1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 668: 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709, 1709}, + {1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 668: 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708, 1708}, + {1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 668: 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707, 1707}, + {1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 668: 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706, 1706}, // 370 - {1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 665: 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685}, - {1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 665: 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684}, - {1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 665: 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683}, - {1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 665: 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682}, - {1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 665: 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681}, + {1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 668: 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705, 1705}, + {1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 668: 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704, 1704}, + {1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 668: 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703, 1703}, + {1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 668: 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702, 1702}, + {1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 668: 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701, 1701}, // 375 - {1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 665: 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680}, - {1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 665: 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679}, - {1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 665: 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678}, - {1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 665: 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677}, - {1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 665: 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676}, + {1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 668: 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700, 1700}, + {1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 668: 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699, 1699}, + {1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 668: 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698, 1698}, + {1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 668: 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697}, + {1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 668: 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696, 1696}, // 380 - {1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 665: 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675}, - {1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1216, 1674, 1674, 1674, 1674, 1674, 480: 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 489: 1674, 1674, 1674, 493: 1674, 1674, 496: 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 506: 1674, 1674, 509: 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 531: 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 565: 1674, 1674, 594: 1674, 652: 1674, 656: 1674, 1674}, - {1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 665: 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673}, - {1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 665: 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672}, - {1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 665: 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671}, + {1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 668: 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695, 1695}, + {1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 668: 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694, 1694}, + {1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 668: 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693, 1693}, + {1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 668: 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692, 1692}, + {1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 668: 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691, 1691}, // 385 - {1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 665: 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670}, - {1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 665: 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669}, - {1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 665: 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668}, - {1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 665: 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667}, - {1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 665: 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666}, + {1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1230, 1690, 1690, 1690, 1690, 1690, 483: 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 492: 1690, 1690, 1690, 496: 1690, 1690, 499: 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 509: 1690, 1690, 512: 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 534: 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 568: 1690, 1690, 597: 1690, 655: 1690, 659: 1690, 1690}, + {1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 668: 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689, 1689}, + {1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 668: 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688, 1688}, + {1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 668: 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687, 1687}, + {1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 668: 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686, 1686}, // 390 - {1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 665: 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665}, - {1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 665: 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664}, - {1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 665: 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663}, - {1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 665: 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662}, - {1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 665: 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661}, + {1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 668: 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685, 1685}, + {1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 668: 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684, 1684}, + {1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 668: 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683, 1683}, + {1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 668: 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682, 1682}, + {1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 668: 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681, 1681}, // 395 - {1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 665: 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660}, - {1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 665: 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659}, - {1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 665: 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658}, - {1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1214, 1657, 1657, 1657, 1657, 1657, 480: 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 489: 1657, 1657, 1657, 493: 1657, 1657, 496: 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 506: 1657, 1657, 509: 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 531: 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 565: 1657, 1657, 594: 1657, 652: 1657, 656: 1657, 1657}, - {1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1233, 1656, 1656, 1656, 1656, 1656, 480: 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 489: 1656, 1656, 1656, 493: 1656, 1656, 496: 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 506: 1656, 1656, 509: 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 531: 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 565: 1656, 1656, 594: 1656, 652: 1656, 656: 1656, 1656}, + {1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 668: 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680, 1680}, + {1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 668: 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679, 1679}, + {1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 668: 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678, 1678}, + {1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 668: 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677, 1677}, + {1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 668: 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676, 1676}, // 400 - {1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1221, 1655, 1655, 1655, 1655, 1655, 480: 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 489: 1655, 1655, 1655, 493: 1655, 1655, 496: 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 506: 1655, 1655, 509: 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 531: 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 565: 1655, 1655, 594: 1655, 652: 1655, 656: 1655, 1655}, - {1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 665: 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654}, - {1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 665: 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653}, - {1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 665: 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652}, - {1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1223, 1651, 1651, 1651, 1651, 1651, 480: 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 489: 1651, 1651, 1651, 493: 1651, 1651, 496: 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 506: 1651, 1651, 509: 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 531: 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 565: 1651, 1651, 594: 1651, 652: 1651, 656: 1651, 1651}, + {1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 668: 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675, 1675}, + {1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 668: 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674}, + {1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1228, 1673, 1673, 1673, 1673, 1673, 483: 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 492: 1673, 1673, 1673, 496: 1673, 1673, 499: 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 509: 1673, 1673, 512: 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 534: 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 568: 1673, 1673, 597: 1673, 655: 1673, 659: 1673, 1673}, + {1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1247, 1672, 1672, 1672, 1672, 1672, 483: 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 492: 1672, 1672, 1672, 496: 1672, 1672, 499: 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 509: 1672, 1672, 512: 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 534: 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 568: 1672, 1672, 597: 1672, 655: 1672, 659: 1672, 1672}, + {1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1235, 1671, 1671, 1671, 1671, 1671, 483: 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 492: 1671, 1671, 1671, 496: 1671, 1671, 499: 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 509: 1671, 1671, 512: 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 534: 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 568: 1671, 1671, 597: 1671, 655: 1671, 659: 1671, 1671}, // 405 - {1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1222, 1650, 1650, 1650, 1650, 1650, 480: 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 489: 1650, 1650, 1650, 493: 1650, 1650, 496: 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 506: 1650, 1650, 509: 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 531: 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 565: 1650, 1650, 594: 1650, 652: 1650, 656: 1650, 1650}, - {1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 665: 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649}, - {1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 665: 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648}, - {1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 665: 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647}, - {1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 665: 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646}, + {1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 668: 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670, 1670}, + {1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 668: 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669, 1669}, + {1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 668: 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668, 1668}, + {1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1237, 1667, 1667, 1667, 1667, 1667, 483: 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 492: 1667, 1667, 1667, 496: 1667, 1667, 499: 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 509: 1667, 1667, 512: 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 534: 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 568: 1667, 1667, 597: 1667, 655: 1667, 659: 1667, 1667}, + {1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1236, 1666, 1666, 1666, 1666, 1666, 483: 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 492: 1666, 1666, 1666, 496: 1666, 1666, 499: 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 509: 1666, 1666, 512: 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 534: 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 568: 1666, 1666, 597: 1666, 655: 1666, 659: 1666, 1666}, // 410 - {1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 665: 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645}, - {1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1213, 1644, 1644, 1644, 1644, 1644, 480: 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 489: 1644, 1644, 1644, 493: 1644, 1644, 496: 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 506: 1644, 1644, 509: 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 531: 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 565: 1644, 1644, 594: 1644, 652: 1644, 656: 1644, 1644}, - {1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 665: 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643}, - {1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 665: 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642}, - {1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 665: 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641}, + {1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 668: 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665, 1665}, + {1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 668: 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664, 1664}, + {1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 668: 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663, 1663}, + {1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 668: 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662, 1662}, + {1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 668: 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661, 1661}, // 415 - {1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 665: 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640}, - {1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 665: 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639}, - {1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 665: 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638}, - {1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 665: 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637}, - {1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 665: 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636}, + {1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1227, 1660, 1660, 1660, 1660, 1660, 483: 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 492: 1660, 1660, 1660, 496: 1660, 1660, 499: 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 509: 1660, 1660, 512: 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 534: 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 568: 1660, 1660, 597: 1660, 655: 1660, 659: 1660, 1660}, + {1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 668: 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659, 1659}, + {1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 668: 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658, 1658}, + {1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 668: 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657}, + {1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 668: 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656}, // 420 - {1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 665: 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635}, - {1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 665: 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634}, - {1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 665: 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633}, - {1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 665: 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632}, - {1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 665: 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631}, + {1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 668: 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655}, + {1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 668: 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654, 1654}, + {1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 668: 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653, 1653}, + {1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 668: 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652, 1652}, + {1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 668: 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651}, // 425 - {1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 665: 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630}, - {1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 665: 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629}, - {1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 665: 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628}, - {1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 665: 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627}, - {1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 665: 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626}, + {1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 668: 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650}, + {1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 668: 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649, 1649}, + {1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 668: 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648, 1648}, + {1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 668: 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647, 1647}, + {1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 668: 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646, 1646}, // 430 - {1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 665: 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625}, - {1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 665: 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624}, - {1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 665: 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623}, - {1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 665: 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622}, - {1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 665: 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621}, + {1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 668: 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645, 1645}, + {1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 668: 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644}, + {1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 668: 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643, 1643}, + {1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 668: 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642, 1642}, + {1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 668: 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641, 1641}, // 435 - {1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 665: 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620}, - {1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 665: 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619}, - {1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 665: 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618}, - {1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 665: 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617}, - {1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 665: 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616}, + {1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 668: 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640, 1640}, + {1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 668: 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639, 1639}, + {1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 668: 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638, 1638}, + {1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 668: 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637, 1637}, + {1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 668: 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636, 1636}, // 440 - {1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 665: 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615}, - {1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 665: 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614}, - {1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 665: 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613}, - {1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 665: 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612}, - {1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 665: 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611}, + {1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 668: 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635, 1635}, + {1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 668: 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634, 1634}, + {1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 668: 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633, 1633}, + {1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 668: 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632, 1632}, + {1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 668: 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631, 1631}, // 445 - {1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 665: 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610}, - {1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 665: 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609}, - {1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 665: 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608}, - {1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 665: 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607}, - {1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 665: 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606}, + {1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 668: 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630, 1630}, + {1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 668: 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629, 1629}, + {1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 668: 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628, 1628}, + {1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 668: 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627, 1627}, + {1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 668: 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626, 1626}, // 450 - {1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 665: 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605}, - {1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 665: 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604}, - {1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 665: 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603}, - {1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 665: 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602}, - {1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 665: 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601}, + {1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 668: 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625, 1625}, + {1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 668: 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624, 1624}, + {1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 668: 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623, 1623}, + {1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 668: 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622, 1622}, + {1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 668: 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621, 1621}, // 455 - {1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 665: 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600}, - {1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 665: 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599}, - {1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 665: 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598}, - {1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 665: 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597}, - {1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 665: 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596}, + {1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 668: 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620, 1620}, + {1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 668: 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619, 1619}, + {1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 668: 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618, 1618}, + {1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 668: 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617, 1617}, + {1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 668: 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616, 1616}, // 460 - {1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 665: 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595}, - {1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 665: 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594}, - {1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 665: 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593}, - {1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 665: 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592}, - {1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 665: 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591}, + {1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 668: 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615, 1615}, + {1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 668: 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614, 1614}, + {1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 668: 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613, 1613}, + {1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 668: 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612, 1612}, + {1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 668: 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611, 1611}, // 465 - {1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 665: 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590}, - {1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 665: 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589}, - {1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 665: 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588}, - {1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 665: 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587}, - {1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 665: 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586}, + {1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 668: 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610, 1610}, + {1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 668: 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609, 1609}, + {1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 668: 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608, 1608}, + {1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 668: 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607, 1607}, + {1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 668: 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606, 1606}, // 470 - {1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 665: 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585}, - {1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 665: 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584}, - {1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 665: 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583}, - {1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 665: 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582}, - {1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 665: 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581}, + {1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 668: 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605, 1605}, + {1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 668: 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604, 1604}, + {1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 668: 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603, 1603}, + {1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 668: 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602, 1602}, + {1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 668: 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601, 1601}, // 475 - {1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 665: 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580}, - {1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 665: 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579}, - {1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 665: 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578}, - {1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 665: 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577}, - {1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 665: 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576}, + {1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 668: 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600, 1600}, + {1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 668: 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599, 1599}, + {1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 668: 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598, 1598}, + {1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 668: 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597, 1597}, + {1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 668: 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596, 1596}, // 480 - {1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 665: 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575}, - {1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 665: 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574}, - {1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 665: 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573}, - {1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 665: 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572}, - {1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 665: 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571}, + {1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 668: 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595, 1595}, + {1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 668: 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594, 1594}, + {1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 668: 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593, 1593}, + {1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 668: 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592, 1592}, + {1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 668: 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591, 1591}, // 485 - {1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 665: 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570}, - {1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 665: 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569}, - {1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 665: 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568}, - {1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 665: 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567}, - {1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 665: 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566}, + {1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 668: 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590}, + {1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 668: 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589, 1589}, + {1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 668: 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588, 1588}, + {1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 668: 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587, 1587}, + {1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 668: 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586, 1586}, // 490 - {1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 665: 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565}, - {1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 665: 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564}, - {1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 665: 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563}, - {1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 665: 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562}, - {1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 665: 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561}, + {1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 668: 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585, 1585}, + {1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 668: 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584, 1584}, + {1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 668: 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583, 1583}, + {1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 668: 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582, 1582}, + {1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 668: 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581, 1581}, // 495 - {1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 665: 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560}, - {1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 665: 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559}, - {1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 665: 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558}, - {1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 665: 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557}, - {1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 665: 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556}, + {1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 668: 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580, 1580}, + {1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 668: 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579, 1579}, + {1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 668: 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578, 1578}, + {1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 668: 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577, 1577}, + {1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 668: 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576, 1576}, // 500 - {1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 665: 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555}, - {1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 665: 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554}, - {1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 665: 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553}, - {1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 665: 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552}, - {1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 665: 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551}, + {1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 668: 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575, 1575}, + {1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 668: 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574, 1574}, + {1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 668: 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573, 1573}, + {1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 668: 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572, 1572}, + {1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 668: 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571, 1571}, // 505 - {1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 665: 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550}, - {1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 665: 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549}, - {1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 665: 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548}, - {1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 665: 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547}, - {1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 665: 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546}, + {1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 668: 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570, 1570}, + {1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 668: 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569, 1569}, + {1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 668: 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568, 1568}, + {1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 668: 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567, 1567}, + {1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 668: 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566, 1566}, // 510 - {1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 665: 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545}, - {1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 665: 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544}, - {1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 665: 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543}, - {1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 665: 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542}, - {1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 665: 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541}, + {1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 668: 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565, 1565}, + {1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 668: 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564, 1564}, + {1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 668: 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563, 1563}, + {1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 668: 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562, 1562}, + {1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 668: 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561, 1561}, // 515 - {1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 665: 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540}, - {1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 665: 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539}, - {1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 665: 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538}, - {1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 665: 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537}, - {1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 665: 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536}, + {1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 668: 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560, 1560}, + {1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 668: 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559, 1559}, + {1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 668: 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558, 1558}, + {1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 668: 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557, 1557}, + {1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 668: 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556, 1556}, // 520 - {1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 4061, 1533, 1533, 1533, 1533, 1533, 480: 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 489: 1533, 1533, 1533, 493: 1533, 1533, 496: 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 506: 1533, 1533, 509: 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 531: 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 565: 1533, 1533, 594: 1533, 652: 1533, 656: 1533, 1533}, - {1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 4050, 1532, 1532, 1532, 1532, 1532, 480: 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 489: 1532, 1532, 1532, 493: 1532, 1532, 496: 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 506: 1532, 1532, 509: 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 531: 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 565: 1532, 1532, 594: 1532, 652: 1532, 656: 1532, 1532}, - {1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 665: 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531}, - {1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 665: 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530}, - {1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 665: 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529}, + {1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 668: 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555, 1555}, + {1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 668: 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554, 1554}, + {1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 668: 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553, 1553}, + {1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 668: 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552, 1552}, + {1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 4087, 1549, 1549, 1549, 1549, 1549, 483: 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 492: 1549, 1549, 1549, 496: 1549, 1549, 499: 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 509: 1549, 1549, 512: 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 534: 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 568: 1549, 1549, 597: 1549, 655: 1549, 659: 1549, 1549}, // 525 - {1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 665: 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528}, - {1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 665: 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527}, - {1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 665: 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526}, - {1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 665: 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525}, - {1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 665: 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524}, + {1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 4076, 1548, 1548, 1548, 1548, 1548, 483: 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 492: 1548, 1548, 1548, 496: 1548, 1548, 499: 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 509: 1548, 1548, 512: 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 534: 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 568: 1548, 1548, 597: 1548, 655: 1548, 659: 1548, 1548}, + {1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 668: 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547, 1547}, + {1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 668: 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546, 1546}, + {1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 668: 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545, 1545}, + {1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 668: 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544, 1544}, // 530 - {1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 665: 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523}, - {1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 665: 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522}, - {1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 665: 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521}, - {1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 665: 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520}, - {1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 665: 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519}, + {1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 668: 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543, 1543}, + {1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 668: 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542, 1542}, + {1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 668: 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541, 1541}, + {1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 668: 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540, 1540}, + {1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 668: 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539, 1539}, // 535 - {1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 665: 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518}, - {1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 665: 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517}, - {1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 665: 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516}, - {1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 665: 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515}, - {1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 665: 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514}, + {1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 668: 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538, 1538}, + {1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 668: 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537, 1537}, + {1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 668: 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536, 1536}, + {1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 668: 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535}, + {1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 668: 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534}, // 540 - {1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 665: 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513}, - {1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 665: 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512}, - {1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 665: 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511}, - {1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 665: 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510}, - {1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 665: 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509}, + {1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 668: 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533}, + {1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 668: 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532}, + {1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 668: 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531, 1531}, + {1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 668: 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530, 1530}, + {1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 668: 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529, 1529}, // 545 - {1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 665: 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508}, - {1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 665: 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507}, - {1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 665: 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506}, - {1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 665: 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505}, - {1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 665: 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504}, + {1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 668: 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528, 1528}, + {1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 668: 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527, 1527}, + {1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 668: 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526, 1526}, + {1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 668: 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525, 1525}, + {1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 668: 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524, 1524}, // 550 - {1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 665: 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503}, - {1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 665: 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502}, - {1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 665: 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501}, - {1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 665: 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500}, - {1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 665: 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499}, + {1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 668: 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523, 1523}, + {1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 668: 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522, 1522}, + {1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 668: 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521, 1521}, + {1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 668: 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520, 1520}, + {1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 668: 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519, 1519}, // 555 - {1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 665: 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498}, - {1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 665: 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497}, - {1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 665: 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496}, - {1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 665: 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495}, - {1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 665: 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494}, + {1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 668: 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518, 1518}, + {1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 668: 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517, 1517}, + {1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 668: 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516, 1516}, + {1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 668: 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515, 1515}, + {1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 668: 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514, 1514}, // 560 - {1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 665: 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493}, - {1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 665: 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492}, - {1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 665: 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491}, - {1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 665: 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490}, - {1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 665: 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489}, + {1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 668: 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513, 1513}, + {1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 668: 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512, 1512}, + {1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 668: 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511, 1511}, + {1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 668: 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510, 1510}, + {1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 668: 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509, 1509}, // 565 - {1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 665: 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488}, - {1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 665: 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487}, - {1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 665: 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486}, - {1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 665: 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485}, - {1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 665: 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484}, + {1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 668: 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508, 1508}, + {1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 668: 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507, 1507}, + {1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 668: 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506, 1506}, + {1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 668: 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505, 1505}, + {1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 668: 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504, 1504}, // 570 - {1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 665: 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483}, - {1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 665: 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482}, - {1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 665: 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481}, - {1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 665: 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480}, - {1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 665: 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479}, + {1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 668: 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503, 1503}, + {1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 668: 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502, 1502}, + {1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 668: 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501, 1501}, + {1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 668: 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500, 1500}, + {1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 668: 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499, 1499}, // 575 - {1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 665: 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478}, - {1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 665: 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477}, - {1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 665: 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476}, - {1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 665: 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475}, - {1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 665: 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474}, + {1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 668: 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498, 1498}, + {1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 668: 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497, 1497}, + {1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 668: 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496, 1496}, + {1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 668: 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495, 1495}, + {1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 668: 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494, 1494}, // 580 - {1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 665: 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473}, - {1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 665: 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472}, - {1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 665: 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471}, - {1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 665: 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470}, - {1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 665: 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469}, + {1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 668: 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493, 1493}, + {1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 668: 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492, 1492}, + {1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 668: 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491, 1491}, + {1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 668: 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490, 1490}, + {1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 668: 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489, 1489}, // 585 - {1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 665: 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468}, - {1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 665: 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467}, - {1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 665: 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466}, - {1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 665: 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465}, - {1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 665: 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464}, + {1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 668: 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488, 1488}, + {1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 668: 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487, 1487}, + {1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 668: 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486, 1486}, + {1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 668: 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485, 1485}, + {1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 668: 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484, 1484}, // 590 - {1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 665: 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463}, - {1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 665: 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462}, - {1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 665: 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461}, - {1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 665: 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460}, - {1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 665: 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459}, + {1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 668: 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483, 1483}, + {1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 668: 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482, 1482}, + {1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 668: 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481, 1481}, + {1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 668: 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480, 1480}, + {1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 668: 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479, 1479}, // 595 - {1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 665: 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458}, - {1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 665: 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457}, - {1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 665: 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456}, - {1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 665: 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455}, - {1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 665: 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454}, + {1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 668: 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478, 1478}, + {1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 668: 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477, 1477}, + {1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 668: 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476, 1476}, + {1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 668: 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475, 1475}, + {1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 668: 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474, 1474}, // 600 - {1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 665: 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453}, - {1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 665: 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452}, - {1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 665: 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451}, - {1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 665: 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450}, - {1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 665: 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449}, + {1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 668: 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473, 1473}, + {1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 668: 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472, 1472}, + {1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 668: 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471, 1471}, + {1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 668: 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470, 1470}, + {1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 668: 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469, 1469}, // 605 - {1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 665: 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448}, - {1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 665: 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447}, - {1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1151, 1446, 1446, 1446, 1446, 1446, 480: 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 489: 1446, 1446, 1446, 493: 1446, 1446, 496: 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 506: 1446, 1446, 509: 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 531: 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 565: 1446, 1446, 594: 1446, 652: 1446, 656: 1446, 1446}, - {1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 665: 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445}, - {1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 665: 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444}, + {1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 668: 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468, 1468}, + {1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 668: 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467, 1467}, + {1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 668: 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466, 1466}, + {1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 668: 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465, 1465}, + {1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 668: 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464, 1464}, // 610 - {1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 665: 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443}, - {1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 665: 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442}, - {1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 665: 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441}, - {1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 665: 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440}, - {1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 665: 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439}, + {1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 668: 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463, 1463}, + {1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 668: 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462, 1462}, + {1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 668: 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461, 1461}, + {1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1165, 1460, 1460, 1460, 1460, 1460, 483: 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 492: 1460, 1460, 1460, 496: 1460, 1460, 499: 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 509: 1460, 1460, 512: 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 534: 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 568: 1460, 1460, 597: 1460, 655: 1460, 659: 1460, 1460}, + {1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 668: 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459, 1459}, // 615 - {1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 665: 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438}, - {1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 665: 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437}, - {1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 665: 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436}, - {1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 665: 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435}, - {1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 665: 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434}, + {1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 668: 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458, 1458}, + {1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 668: 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457, 1457}, + {1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 668: 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456, 1456}, + {1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 668: 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455, 1455}, + {1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 668: 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454, 1454}, // 620 - {1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 665: 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433}, - {1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 665: 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432}, - {1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 4041, 1431, 1431, 1431, 1431, 1431, 480: 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 489: 1431, 1431, 1431, 493: 1431, 1431, 496: 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 506: 1431, 1431, 509: 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 531: 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 565: 1431, 1431, 594: 1431, 652: 1431, 656: 1431, 1431}, - {1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 665: 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430}, - {1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 665: 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429}, + {1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 668: 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453, 1453}, + {1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 668: 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452, 1452}, + {1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 668: 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451, 1451}, + {1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 668: 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450, 1450}, + {1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 668: 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449, 1449}, // 625 - {1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 665: 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428}, - {1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 665: 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427}, - {1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 665: 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426}, - {1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 665: 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425}, - {1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 665: 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424}, + {1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 668: 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448, 1448}, + {1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 668: 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447, 1447}, + {1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 668: 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446}, + {1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 4067, 1445, 1445, 1445, 1445, 1445, 483: 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 492: 1445, 1445, 1445, 496: 1445, 1445, 499: 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 509: 1445, 1445, 512: 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 534: 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 568: 1445, 1445, 597: 1445, 655: 1445, 659: 1445, 1445}, + {1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 668: 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444, 1444}, // 630 - {1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 665: 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423}, - {1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 665: 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422}, - {1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 665: 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421}, - {1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 665: 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420}, - {1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 665: 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419}, + {1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 668: 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443, 1443}, + {1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 668: 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442, 1442}, + {1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 668: 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441, 1441}, + {1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 668: 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440, 1440}, + {1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 668: 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439, 1439}, // 635 - {1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 665: 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418}, - {1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 665: 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417}, - {1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 665: 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416}, - {1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 665: 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415}, - {1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 665: 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414}, + {1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 668: 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438, 1438}, + {1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 668: 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437, 1437}, + {1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 668: 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436, 1436}, + {1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 668: 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435, 1435}, + {1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 668: 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434, 1434}, // 640 - {1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1150, 1413, 1413, 1413, 1413, 1413, 480: 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 489: 1413, 1413, 1413, 493: 1413, 1413, 496: 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 506: 1413, 1413, 509: 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 531: 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 565: 1413, 1413, 594: 1413, 652: 1413, 656: 1413, 1413}, - {1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 665: 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412}, - {1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 665: 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411}, - {1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 665: 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410}, - {1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 665: 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409}, + {1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 668: 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433, 1433}, + {1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 668: 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432, 1432}, + {1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 668: 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431}, + {1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 668: 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430, 1430}, + {1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 668: 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429, 1429}, // 645 - {1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 665: 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408}, - {1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 665: 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407}, - {1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 665: 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406}, - {1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 665: 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405}, - {1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 665: 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404}, + {1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 668: 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428, 1428}, + {1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1164, 1427, 1427, 1427, 1427, 1427, 483: 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 492: 1427, 1427, 1427, 496: 1427, 1427, 499: 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 509: 1427, 1427, 512: 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 534: 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 568: 1427, 1427, 597: 1427, 655: 1427, 659: 1427, 1427}, + {1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 668: 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426, 1426}, + {1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 668: 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425, 1425}, + {1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 668: 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424, 1424}, // 650 - {1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 665: 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403}, - {1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 665: 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402}, - {1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 4034, 1401, 1401, 1401, 1401, 1401, 480: 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 489: 1401, 1401, 1401, 493: 1401, 1401, 496: 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 506: 1401, 1401, 509: 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 531: 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 565: 1401, 1401, 594: 1401, 652: 1401, 656: 1401, 1401}, - {1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 4027, 1400, 1400, 1400, 1400, 1400, 480: 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 489: 1400, 1400, 1400, 493: 1400, 1400, 496: 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 506: 1400, 1400, 509: 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 531: 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 565: 1400, 1400, 594: 1400, 652: 1400, 656: 1400, 1400}, - {1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 665: 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399}, + {1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 668: 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423, 1423}, + {1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 668: 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422, 1422}, + {1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 668: 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421, 1421}, + {1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 668: 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420, 1420}, + {1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 668: 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419, 1419}, // 655 - {1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 665: 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398}, - {1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 665: 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397}, - {1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 665: 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396}, - {1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 665: 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395}, - {1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 665: 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394}, + {1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 668: 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418, 1418}, + {1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 668: 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417, 1417}, + {1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 668: 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416, 1416}, + {1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 4060, 1415, 1415, 1415, 1415, 1415, 483: 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 492: 1415, 1415, 1415, 496: 1415, 1415, 499: 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 509: 1415, 1415, 512: 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 534: 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 568: 1415, 1415, 597: 1415, 655: 1415, 659: 1415, 1415}, + {1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 4053, 1414, 1414, 1414, 1414, 1414, 483: 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 492: 1414, 1414, 1414, 496: 1414, 1414, 499: 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 509: 1414, 1414, 512: 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 534: 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 568: 1414, 1414, 597: 1414, 655: 1414, 659: 1414, 1414}, // 660 - {1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 665: 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393}, - {1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 665: 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392}, - {1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 665: 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391}, - {1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 665: 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390}, - {1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 665: 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389}, + {1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 668: 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413}, + {1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 668: 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412, 1412}, + {1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 668: 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411, 1411}, + {1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 668: 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410, 1410}, + {1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 668: 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409, 1409}, // 665 - {1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 665: 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388}, - {1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 665: 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387}, - {1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 665: 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386}, - {1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 665: 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385}, - {1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 665: 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384}, + {1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 668: 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408, 1408}, + {1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 668: 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407, 1407}, + {1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 668: 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406, 1406}, + {1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 668: 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405, 1405}, + {1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 668: 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404, 1404}, // 670 - {1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 665: 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383}, - {1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 665: 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382}, - {1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 665: 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381}, - {1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 4007, 1380, 1380, 1380, 1380, 1380, 480: 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 489: 1380, 1380, 1380, 493: 1380, 1380, 496: 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 506: 1380, 1380, 509: 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 531: 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 565: 1380, 1380, 594: 1380, 652: 1380, 656: 1380, 1380}, - {1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 3999, 1379, 1379, 1379, 1379, 1379, 480: 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 489: 1379, 1379, 1379, 493: 1379, 1379, 496: 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 506: 1379, 1379, 509: 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 531: 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 565: 1379, 1379, 594: 1379, 652: 1379, 656: 1379, 1379}, + {1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 668: 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403, 1403}, + {1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 668: 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402, 1402}, + {1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 668: 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401}, + {1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 668: 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400}, + {1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 668: 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399, 1399}, // 675 - {1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 665: 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378}, - {1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 665: 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377}, - {1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 665: 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376}, - {1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 665: 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375, 1375}, - {1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 665: 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374, 1374}, + {1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 668: 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398, 1398}, + {1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 668: 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397, 1397}, + {1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 668: 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396, 1396}, + {1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 668: 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395, 1395}, + {1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 4033, 1394, 1394, 1394, 1394, 1394, 483: 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 492: 1394, 1394, 1394, 496: 1394, 1394, 499: 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 509: 1394, 1394, 512: 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 534: 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 568: 1394, 1394, 597: 1394, 655: 1394, 659: 1394, 1394}, // 680 - {1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 665: 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373, 1373}, - {1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 665: 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372, 1372}, - {1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 665: 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371, 1371}, - {1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 665: 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370, 1370}, - {1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 665: 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369}, + {1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 4025, 1393, 1393, 1393, 1393, 1393, 483: 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 492: 1393, 1393, 1393, 496: 1393, 1393, 499: 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 509: 1393, 1393, 512: 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 534: 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 568: 1393, 1393, 597: 1393, 655: 1393, 659: 1393, 1393}, + {1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 668: 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392, 1392}, + {1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 668: 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391, 1391}, + {1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 668: 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390, 1390}, + {1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 668: 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389, 1389}, // 685 - {1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 665: 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368}, - {1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 665: 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367, 1367}, - {1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 665: 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366, 1366}, - {1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 665: 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365, 1365}, - {1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 665: 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364, 1364}, + {1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 668: 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388, 1388}, + {1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 668: 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387, 1387}, + {1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 668: 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386, 1386}, + {1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 668: 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385, 1385}, + {1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 668: 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384, 1384}, // 690 - {1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 665: 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363, 1363}, - {1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 665: 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362, 1362}, - {1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 474: 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 496: 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 506: 1324, 1324, 509: 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 531: 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 1324, 565: 1324, 1324, 581: 1324, 590: 1324, 1324, 594: 1324, 642: 1324, 1324, 1324, 1324}, - {1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 474: 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 496: 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 506: 1323, 1323, 509: 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 531: 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 1323, 565: 1323, 1323, 581: 1323, 590: 1323, 1323, 594: 1323, 642: 1323, 1323, 1323, 1323}, - {1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 474: 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 496: 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 506: 1322, 1322, 509: 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 531: 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 1322, 565: 1322, 1322, 581: 1322, 590: 1322, 1322, 594: 1322, 642: 1322, 1322, 1322, 1322}, + {1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 668: 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383, 1383}, + {1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 668: 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382, 1382}, + {1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 668: 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381, 1381}, + {1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 668: 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380}, + {1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 668: 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379}, // 695 - {1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 474: 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 496: 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 506: 1321, 1321, 509: 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 531: 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 1321, 565: 1321, 1321, 581: 1321, 590: 1321, 1321, 594: 1321, 642: 1321, 1321, 1321, 1321}, - {1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 474: 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 496: 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 506: 1320, 1320, 509: 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 531: 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 1320, 565: 1320, 1320, 581: 1320, 590: 1320, 1320, 594: 1320, 642: 1320, 1320, 1320, 1320}, - {1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 474: 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 496: 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 506: 1319, 1319, 509: 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 531: 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 1319, 565: 1319, 1319, 581: 1319, 590: 1319, 1319, 594: 1319, 642: 1319, 1319, 1319, 1319}, - {1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 474: 1318, 3998, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 496: 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 506: 1318, 1318, 509: 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 531: 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 1318, 565: 1318, 1318, 581: 1318, 590: 1318, 1318, 594: 1318, 642: 1318, 1318, 1318, 1318}, - {475: 3995, 576: 3996, 580: 3997}, + {1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 668: 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378, 1378}, + {1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 668: 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377, 1377}, + {1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 668: 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376, 1376}, + {1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 477: 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 499: 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 509: 1338, 1338, 512: 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 534: 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 1338, 568: 1338, 1338, 584: 1338, 593: 1338, 1338, 597: 1338, 645: 1338, 1338, 1338, 1338}, + {1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 477: 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 499: 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 509: 1337, 1337, 512: 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 534: 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 1337, 568: 1337, 1337, 584: 1337, 593: 1337, 1337, 597: 1337, 645: 1337, 1337, 1337, 1337}, // 700 - {1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 474: 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 496: 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 506: 1316, 1316, 509: 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 531: 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 1316, 565: 1316, 1316, 581: 1316, 590: 1316, 1316, 594: 1316, 642: 1316, 1316, 1316, 1316}, - {1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 474: 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 496: 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 506: 1315, 1315, 509: 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 531: 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 1315, 565: 1315, 1315, 581: 1315, 590: 1315, 1315, 594: 1315, 642: 1315, 1315, 1315, 1315}, - {1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 474: 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 496: 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 506: 1312, 1312, 509: 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 531: 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 1312, 565: 1312, 1312, 581: 1312, 590: 1312, 1312, 594: 1312, 642: 1312, 1312, 1312, 1312}, - {1307, 1307, 9: 3412, 49: 1307, 127: 1307, 472: 1307, 474: 1307, 480: 1307, 1307, 490: 1307, 1307, 493: 1307, 1307, 496: 1307, 1307, 501: 1307}, - {1306, 1306, 9: 1306, 49: 1306, 127: 1306, 472: 1306, 474: 1306, 480: 1306, 1306, 490: 1306, 1306, 493: 1306, 1306, 496: 1306, 1306, 501: 1306, 1306, 514: 1306, 516: 1306, 524: 1306, 527: 1306, 1306}, + {1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 477: 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 499: 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 509: 1336, 1336, 512: 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 534: 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 1336, 568: 1336, 1336, 584: 1336, 593: 1336, 1336, 597: 1336, 645: 1336, 1336, 1336, 1336}, + {1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 477: 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 499: 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 509: 1335, 1335, 512: 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 534: 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 1335, 568: 1335, 1335, 584: 1335, 593: 1335, 1335, 597: 1335, 645: 1335, 1335, 1335, 1335}, + {1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 477: 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 499: 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 509: 1334, 1334, 512: 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 534: 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 1334, 568: 1334, 1334, 584: 1334, 593: 1334, 1334, 597: 1334, 645: 1334, 1334, 1334, 1334}, + {1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 477: 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 499: 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 509: 1333, 1333, 512: 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 534: 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 1333, 568: 1333, 1333, 584: 1333, 593: 1333, 1333, 597: 1333, 645: 1333, 1333, 1333, 1333}, + {1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 477: 1332, 4024, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 499: 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 509: 1332, 1332, 512: 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 534: 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 1332, 568: 1332, 1332, 584: 1332, 593: 1332, 1332, 597: 1332, 645: 1332, 1332, 1332, 1332}, // 705 - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 2840, 2788, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 2869, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 2874, 2801, 2766, 2783, 2948, 3031, 3020, 2818, 2830, 2941, 2942, 2937, 2895, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 2876, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 2760, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 2880, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 2799, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 2866, 2865, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 2936, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 2824, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 2751, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 2882, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 2752, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3144, 2878, 3145, 3146, 2777, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3159, 3160, 3211, 3210, 3057, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 2918, 2935, 3058, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3177, 3178, 3179, 2931, 3130, 3189, 3190, 3201, 3185, 3186, 3187, 3220, 2877, 473: 1226, 475: 3239, 3258, 2755, 479: 3268, 482: 3272, 3276, 485: 3257, 3256, 3295, 492: 3230, 495: 3269, 504: 3275, 3293, 508: 3234, 530: 3264, 564: 3271, 567: 3294, 2753, 570: 3277, 3229, 3231, 3233, 3232, 3261, 3237, 3251, 3242, 3263, 3238, 582: 3270, 3262, 3267, 3273, 3283, 3336, 3284, 3285, 592: 3236, 3314, 595: 3254, 3255, 3309, 3310, 3311, 3312, 3313, 3265, 3291, 3296, 3306, 3307, 3300, 3315, 3316, 3317, 3301, 3319, 3320, 3302, 3318, 3297, 3305, 3303, 3289, 3321, 3322, 3266, 3326, 3278, 3279, 3282, 3325, 3331, 3330, 3332, 3329, 3333, 3328, 3327, 3324, 3274, 3323, 3281, 3280, 3286, 3287, 648: 2756, 661: 3244, 2762, 2763, 2761, 709: 3259, 3335, 3245, 3250, 3235, 3308, 3248, 3246, 3247, 3288, 3299, 3298, 3292, 3290, 3304, 3243, 3253, 3334, 3252, 3249, 2759, 2758, 2757, 3993}, - {1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 474: 1280, 1280, 1280, 1280, 1280, 480: 1280, 1280, 1280, 1280, 3350, 1280, 1280, 1280, 489: 1280, 1280, 1280, 493: 1280, 1280, 496: 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 506: 1280, 1280, 509: 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 531: 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 565: 1280, 1280, 594: 3351}, - {1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 474: 1279, 1279, 1279, 1279, 1279, 480: 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 489: 1279, 1279, 1279, 493: 1279, 1279, 496: 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 506: 1279, 1279, 509: 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 531: 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 565: 1279, 1279, 594: 1279, 652: 3988, 656: 1279, 1279}, - {1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 474: 1276, 1276, 1276, 1276, 1276, 480: 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 489: 1276, 1276, 1276, 493: 1276, 1276, 496: 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 506: 1276, 1276, 509: 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 531: 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 565: 1276, 1276, 594: 1276, 656: 3984, 3985}, - {1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 474: 1275, 1275, 1275, 1275, 1275, 480: 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 489: 1275, 1275, 1275, 493: 1275, 1275, 496: 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 506: 1275, 1275, 509: 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 531: 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 565: 1275, 1275, 594: 1275}, + {478: 4021, 579: 4022, 583: 4023}, + {1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 477: 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 499: 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 509: 1330, 1330, 512: 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 534: 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 1330, 568: 1330, 1330, 584: 1330, 593: 1330, 1330, 597: 1330, 645: 1330, 1330, 1330, 1330}, + {1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 477: 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 499: 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 509: 1329, 1329, 512: 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 534: 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 1329, 568: 1329, 1329, 584: 1329, 593: 1329, 1329, 597: 1329, 645: 1329, 1329, 1329, 1329}, + {1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 477: 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 499: 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 509: 1326, 1326, 512: 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 534: 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 1326, 568: 1326, 1326, 584: 1326, 593: 1326, 1326, 597: 1326, 645: 1326, 1326, 1326, 1326}, + {1321, 1321, 9: 3438, 50: 1321, 128: 1321, 475: 1321, 477: 1321, 483: 1321, 1321, 493: 1321, 1321, 496: 1321, 1321, 499: 1321, 1321, 504: 1321}, // 710 - {1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 474: 1274, 1274, 1274, 1274, 1274, 480: 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 489: 1274, 1274, 1274, 493: 1274, 1274, 496: 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 506: 1274, 1274, 509: 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 531: 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 565: 1274, 1274, 594: 1274}, - {1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 474: 1273, 1273, 1273, 1273, 1273, 480: 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 489: 1273, 1273, 1273, 493: 1273, 1273, 496: 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 506: 1273, 1273, 509: 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 531: 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 565: 1273, 1273, 594: 1273}, - {1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 474: 1271, 1271, 1271, 1271, 1271, 480: 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 489: 1271, 1271, 1271, 493: 1271, 1271, 496: 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 506: 1271, 1271, 509: 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 531: 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 565: 1271, 1271, 594: 1271}, - {1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 474: 1270, 1270, 1270, 1270, 1270, 480: 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 489: 1270, 1270, 1270, 493: 1270, 1270, 496: 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 506: 1270, 1270, 509: 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 531: 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 565: 1270, 1270, 594: 1270}, - {1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 474: 1269, 1269, 1269, 1269, 1269, 480: 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 489: 1269, 1269, 1269, 493: 1269, 1269, 496: 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 506: 1269, 1269, 509: 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 531: 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 565: 1269, 1269, 594: 1269}, + {1320, 1320, 9: 1320, 50: 1320, 128: 1320, 475: 1320, 477: 1320, 483: 1320, 1320, 493: 1320, 1320, 496: 1320, 1320, 499: 1320, 1320, 504: 1320, 1320, 517: 1320, 519: 1320, 527: 1320, 530: 1320, 1320}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 2864, 2812, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 2893, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 2898, 2825, 2789, 2807, 2972, 3055, 3044, 2842, 2854, 2965, 2966, 2961, 2919, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 2900, 2885, 2881, 2973, 2997, 2783, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 2904, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 2823, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 2889, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 2890, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 2960, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 2848, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 2774, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 2906, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 2775, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3170, 2902, 3171, 3172, 2801, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3185, 3186, 3237, 3236, 3081, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 2942, 2959, 3082, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3203, 3204, 3205, 2955, 3156, 3215, 3216, 3227, 3211, 3212, 3213, 3246, 2901, 476: 1240, 478: 3265, 3284, 2778, 482: 3294, 485: 3298, 3302, 488: 3283, 3282, 3321, 495: 3256, 498: 3295, 507: 3301, 3319, 511: 3260, 533: 3290, 567: 3297, 570: 3320, 2776, 573: 3303, 3255, 3257, 3259, 3258, 3287, 3263, 3277, 3268, 3289, 3264, 585: 3296, 3288, 3293, 3299, 3309, 3362, 3310, 3311, 595: 3262, 3340, 598: 3280, 3281, 3335, 3336, 3337, 3338, 3339, 3291, 3317, 3322, 3332, 3333, 3326, 3341, 3342, 3343, 3327, 3345, 3346, 3328, 3344, 3323, 3331, 3329, 3315, 3347, 3348, 3292, 3352, 3304, 3305, 3308, 3351, 3357, 3356, 3358, 3355, 3359, 3354, 3353, 3350, 3300, 3349, 3307, 3306, 3312, 3313, 651: 2779, 664: 3270, 2785, 2786, 2784, 713: 3285, 3361, 3271, 3276, 3261, 3334, 3274, 3272, 3273, 3314, 3325, 3324, 3318, 3316, 3330, 3269, 3279, 3360, 3278, 3275, 2782, 2781, 2780, 4019}, + {1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 477: 1294, 1294, 1294, 1294, 1294, 483: 1294, 1294, 1294, 1294, 3376, 1294, 1294, 1294, 492: 1294, 1294, 1294, 496: 1294, 1294, 499: 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 509: 1294, 1294, 512: 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 534: 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 568: 1294, 1294, 597: 3377}, + {1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 477: 1293, 1293, 1293, 1293, 1293, 483: 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 492: 1293, 1293, 1293, 496: 1293, 1293, 499: 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 509: 1293, 1293, 512: 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 534: 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 568: 1293, 1293, 597: 1293, 655: 4014, 659: 1293, 1293}, + {1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 477: 1290, 1290, 1290, 1290, 1290, 483: 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 492: 1290, 1290, 1290, 496: 1290, 1290, 499: 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 509: 1290, 1290, 512: 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 534: 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 568: 1290, 1290, 597: 1290, 659: 4010, 4011}, // 715 - {1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 474: 1268, 1268, 1268, 1268, 1268, 480: 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 489: 1268, 1268, 1268, 493: 1268, 1268, 496: 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 506: 1268, 1268, 509: 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 531: 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 565: 1268, 1268, 594: 1268}, - {1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 474: 1267, 1267, 1267, 1267, 1267, 480: 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 489: 1267, 1267, 1267, 493: 1267, 1267, 496: 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 506: 1267, 1267, 509: 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 531: 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 565: 1267, 1267, 594: 1267}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 2840, 2788, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 2869, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 2874, 2801, 2766, 2783, 2948, 3031, 3020, 2818, 2830, 2941, 2942, 2937, 2895, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 2876, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 2760, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 2880, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 2799, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 2866, 2865, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 2936, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 2824, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 2751, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 2882, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 2752, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3144, 2878, 3145, 3146, 2777, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3159, 3160, 3211, 3210, 3057, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 2918, 2935, 3058, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3177, 3178, 3179, 2931, 3130, 3189, 3190, 3201, 3185, 3186, 3187, 3220, 2877, 473: 3260, 475: 3239, 3258, 479: 3268, 482: 3272, 3276, 485: 3257, 3256, 3295, 492: 3230, 495: 3269, 504: 3275, 3293, 508: 3234, 530: 3264, 564: 3271, 567: 3294, 3349, 570: 3277, 3229, 3231, 3233, 3232, 3261, 3237, 3251, 3348, 3263, 3238, 582: 3270, 3262, 3267, 3273, 3283, 3336, 3284, 3285, 592: 3236, 3314, 595: 3254, 3255, 3309, 3310, 3311, 3312, 3313, 3265, 3291, 3296, 3306, 3307, 3300, 3315, 3316, 3317, 3301, 3319, 3320, 3302, 3318, 3297, 3305, 3303, 3289, 3321, 3322, 3266, 3326, 3278, 3279, 3282, 3325, 3331, 3330, 3332, 3329, 3333, 3328, 3327, 3324, 3274, 3323, 3281, 3280, 3286, 3287, 661: 3244, 2762, 2763, 2761, 709: 3259, 3335, 3245, 3250, 3235, 3308, 3248, 3246, 3247, 3288, 3299, 3298, 3292, 3290, 3304, 3983, 3253, 3334, 3252, 3249}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 2840, 2788, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 2869, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 2874, 2801, 2766, 2783, 2948, 3031, 3020, 2818, 2830, 2941, 2942, 2937, 2895, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 2876, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 2760, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 2880, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 2799, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 2866, 2865, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 2936, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 2824, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 2751, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 2882, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 2752, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3144, 2878, 3145, 3146, 2777, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3159, 3160, 3211, 3210, 3057, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 2918, 2935, 3058, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3177, 3178, 3179, 2931, 3130, 3189, 3190, 3201, 3185, 3186, 3187, 3220, 2877, 473: 3260, 475: 3239, 3258, 479: 3268, 482: 3272, 3276, 485: 3257, 3256, 3295, 492: 3230, 495: 3269, 504: 3275, 3293, 508: 3234, 530: 3264, 564: 3271, 567: 3294, 3349, 570: 3277, 3229, 3231, 3233, 3232, 3261, 3237, 3251, 3348, 3263, 3238, 582: 3270, 3262, 3267, 3273, 3283, 3336, 3284, 3285, 592: 3236, 3314, 595: 3254, 3255, 3309, 3310, 3311, 3312, 3313, 3265, 3291, 3296, 3306, 3307, 3300, 3315, 3316, 3317, 3301, 3319, 3320, 3302, 3318, 3297, 3305, 3303, 3289, 3321, 3322, 3266, 3326, 3278, 3279, 3282, 3325, 3331, 3330, 3332, 3329, 3333, 3328, 3327, 3324, 3274, 3323, 3281, 3280, 3286, 3287, 661: 3244, 2762, 2763, 2761, 709: 3259, 3335, 3245, 3250, 3235, 3308, 3248, 3246, 3247, 3288, 3299, 3298, 3292, 3290, 3304, 3982, 3253, 3334, 3252, 3249}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 2840, 2788, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 2869, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 2874, 2801, 2766, 2783, 2948, 3031, 3020, 2818, 2830, 2941, 2942, 2937, 2895, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 2876, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 2760, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 2880, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 2799, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 2866, 2865, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 2936, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 2824, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 2751, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 2882, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 2752, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3144, 2878, 3145, 3146, 2777, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3159, 3160, 3211, 3210, 3057, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 2918, 2935, 3058, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3177, 3178, 3179, 2931, 3130, 3189, 3190, 3201, 3185, 3186, 3187, 3220, 2877, 473: 3260, 475: 3239, 3258, 479: 3268, 482: 3272, 3276, 485: 3257, 3256, 3295, 492: 3230, 495: 3269, 504: 3275, 3293, 508: 3234, 530: 3264, 564: 3271, 567: 3294, 3349, 570: 3277, 3229, 3231, 3233, 3232, 3261, 3237, 3251, 3348, 3263, 3238, 582: 3270, 3262, 3267, 3273, 3283, 3336, 3284, 3285, 592: 3236, 3314, 595: 3254, 3255, 3309, 3310, 3311, 3312, 3313, 3265, 3291, 3296, 3306, 3307, 3300, 3315, 3316, 3317, 3301, 3319, 3320, 3302, 3318, 3297, 3305, 3303, 3289, 3321, 3322, 3266, 3326, 3278, 3279, 3282, 3325, 3331, 3330, 3332, 3329, 3333, 3328, 3327, 3324, 3274, 3323, 3281, 3280, 3286, 3287, 661: 3244, 2762, 2763, 2761, 709: 3259, 3335, 3245, 3250, 3235, 3308, 3248, 3246, 3247, 3288, 3299, 3298, 3292, 3290, 3304, 3981, 3253, 3334, 3252, 3249}, + {1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 477: 1289, 1289, 1289, 1289, 1289, 483: 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 492: 1289, 1289, 1289, 496: 1289, 1289, 499: 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 509: 1289, 1289, 512: 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 534: 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 568: 1289, 1289, 597: 1289}, + {1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 477: 1288, 1288, 1288, 1288, 1288, 483: 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 492: 1288, 1288, 1288, 496: 1288, 1288, 499: 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 509: 1288, 1288, 512: 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 534: 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 568: 1288, 1288, 597: 1288}, + {1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 477: 1287, 1287, 1287, 1287, 1287, 483: 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 492: 1287, 1287, 1287, 496: 1287, 1287, 499: 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 509: 1287, 1287, 512: 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 534: 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 568: 1287, 1287, 597: 1287}, + {1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 477: 1285, 1285, 1285, 1285, 1285, 483: 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 492: 1285, 1285, 1285, 496: 1285, 1285, 499: 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 509: 1285, 1285, 512: 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 534: 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 568: 1285, 1285, 597: 1285}, + {1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 477: 1284, 1284, 1284, 1284, 1284, 483: 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 492: 1284, 1284, 1284, 496: 1284, 1284, 499: 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 509: 1284, 1284, 512: 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 534: 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 568: 1284, 1284, 597: 1284}, // 720 - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 2840, 2788, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 2869, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 2874, 2801, 2766, 2783, 2948, 3031, 3020, 2818, 2830, 2941, 2942, 2937, 2895, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 2876, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 2760, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 2880, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 2799, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 2866, 2865, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 2936, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 2824, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 2751, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 2882, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 2752, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3144, 2878, 3145, 3146, 2777, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3159, 3160, 3211, 3210, 3057, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 2918, 2935, 3058, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3177, 3178, 3179, 2931, 3130, 3189, 3190, 3201, 3185, 3186, 3187, 3220, 2877, 473: 3260, 475: 3239, 3258, 479: 3268, 482: 3272, 3276, 485: 3257, 3256, 3295, 492: 3230, 495: 3269, 504: 3275, 3293, 508: 3234, 530: 3264, 564: 3271, 567: 3294, 3349, 570: 3277, 3229, 3231, 3233, 3232, 3261, 3237, 3251, 3348, 3263, 3238, 582: 3270, 3262, 3267, 3273, 3283, 3336, 3284, 3285, 592: 3236, 3314, 595: 3254, 3255, 3309, 3310, 3311, 3312, 3313, 3265, 3291, 3296, 3306, 3307, 3300, 3315, 3316, 3317, 3301, 3319, 3320, 3302, 3318, 3297, 3305, 3303, 3289, 3321, 3322, 3266, 3326, 3278, 3279, 3282, 3325, 3331, 3330, 3332, 3329, 3333, 3328, 3327, 3324, 3274, 3323, 3281, 3280, 3286, 3287, 661: 3244, 2762, 2763, 2761, 709: 3259, 3335, 3245, 3250, 3235, 3308, 3248, 3246, 3247, 3288, 3299, 3298, 3292, 3290, 3304, 3980, 3253, 3334, 3252, 3249}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 2840, 2788, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 2869, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 2874, 2801, 2766, 2783, 2948, 3031, 3020, 2818, 2830, 2941, 2942, 2937, 2895, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 2876, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 2760, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 2880, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 2799, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 2866, 2865, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 2936, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 2824, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 2751, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 2882, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 2752, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3144, 2878, 3145, 3146, 2777, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3159, 3160, 3211, 3210, 3057, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 2918, 2935, 3058, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3177, 3178, 3179, 2931, 3130, 3189, 3190, 3201, 3185, 3186, 3187, 3220, 2877, 473: 3260, 475: 3239, 3258, 479: 3268, 482: 3272, 3276, 485: 3257, 3256, 3295, 492: 3230, 495: 3269, 504: 3275, 3293, 508: 3234, 530: 3264, 564: 3271, 567: 3294, 3349, 570: 3277, 3229, 3231, 3233, 3232, 3261, 3237, 3251, 3348, 3263, 3238, 582: 3270, 3262, 3267, 3273, 3283, 3336, 3284, 3285, 592: 3236, 3314, 595: 3254, 3255, 3309, 3310, 3311, 3312, 3313, 3265, 3291, 3296, 3306, 3307, 3300, 3315, 3316, 3317, 3301, 3319, 3320, 3302, 3318, 3297, 3305, 3303, 3289, 3321, 3322, 3266, 3326, 3278, 3279, 3282, 3325, 3331, 3330, 3332, 3329, 3333, 3328, 3327, 3324, 3274, 3323, 3281, 3280, 3286, 3287, 661: 3244, 2762, 2763, 2761, 709: 3259, 3335, 3245, 3250, 3235, 3308, 3248, 3246, 3247, 3288, 3299, 3298, 3292, 3290, 3304, 3979, 3253, 3334, 3252, 3249}, - {1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 474: 1260, 1260, 1260, 1260, 1260, 480: 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 489: 1260, 1260, 1260, 493: 1260, 1260, 496: 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 506: 1260, 1260, 509: 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 531: 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 565: 1260, 1260, 594: 1260}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 2840, 2788, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 2869, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 2874, 2801, 2766, 2783, 2948, 3031, 3020, 2818, 2830, 2941, 2942, 2937, 2895, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 2876, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 2760, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 2880, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 2799, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 2866, 2865, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 2936, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 2824, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 2751, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 2882, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 2752, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3144, 2878, 3145, 3146, 2777, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3159, 3160, 3211, 3210, 3057, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 2918, 2935, 3058, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3177, 3178, 3179, 2931, 3130, 3189, 3190, 3201, 3185, 3186, 3187, 3220, 2877, 473: 3260, 2587, 3239, 3258, 2755, 479: 3268, 482: 3272, 3276, 485: 3257, 3256, 3295, 492: 3230, 495: 3879, 504: 3275, 3293, 508: 3234, 530: 3264, 564: 3271, 567: 3294, 2753, 2585, 3277, 3229, 3231, 3233, 3232, 3261, 3237, 3251, 3242, 3263, 3238, 582: 3270, 3262, 3267, 3273, 3283, 3336, 3284, 3285, 592: 3236, 3314, 595: 3254, 3255, 3309, 3310, 3311, 3312, 3313, 3265, 3291, 3296, 3306, 3307, 3300, 3315, 3316, 3317, 3301, 3319, 3320, 3302, 3318, 3297, 3305, 3303, 3289, 3321, 3322, 3266, 3326, 3278, 3279, 3282, 3325, 3331, 3330, 3332, 3329, 3333, 3328, 3327, 3324, 3274, 3323, 3281, 3280, 3286, 3287, 646: 2581, 648: 2756, 661: 3244, 2762, 2763, 2761, 709: 3878, 3335, 3245, 3250, 3235, 3308, 3248, 3246, 3247, 3288, 3299, 3298, 3292, 3290, 3304, 3243, 3253, 3334, 3252, 3249, 2759, 2758, 2757, 3876, 748: 3881, 2582, 2583, 2584, 2593, 756: 2591, 2590, 2589, 3880, 3883, 3882, 778: 3877}, - {473: 3871}, + {1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 477: 1283, 1283, 1283, 1283, 1283, 483: 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 492: 1283, 1283, 1283, 496: 1283, 1283, 499: 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 509: 1283, 1283, 512: 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 534: 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 568: 1283, 1283, 597: 1283}, + {1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 477: 1282, 1282, 1282, 1282, 1282, 483: 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 492: 1282, 1282, 1282, 496: 1282, 1282, 499: 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 509: 1282, 1282, 512: 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 534: 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 568: 1282, 1282, 597: 1282}, + {1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 477: 1281, 1281, 1281, 1281, 1281, 483: 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 492: 1281, 1281, 1281, 496: 1281, 1281, 499: 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 509: 1281, 1281, 512: 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 534: 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 568: 1281, 1281, 597: 1281}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 2864, 2812, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 2893, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 2898, 2825, 2789, 2807, 2972, 3055, 3044, 2842, 2854, 2965, 2966, 2961, 2919, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 2900, 2885, 2881, 2973, 2997, 2783, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 2904, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 2823, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 2889, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 2890, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 2960, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 2848, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 2774, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 2906, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 2775, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3170, 2902, 3171, 3172, 2801, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3185, 3186, 3237, 3236, 3081, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 2942, 2959, 3082, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3203, 3204, 3205, 2955, 3156, 3215, 3216, 3227, 3211, 3212, 3213, 3246, 2901, 476: 3286, 478: 3265, 3284, 482: 3294, 485: 3298, 3302, 488: 3283, 3282, 3321, 495: 3256, 498: 3295, 507: 3301, 3319, 511: 3260, 533: 3290, 567: 3297, 570: 3320, 3375, 573: 3303, 3255, 3257, 3259, 3258, 3287, 3263, 3277, 3374, 3289, 3264, 585: 3296, 3288, 3293, 3299, 3309, 3362, 3310, 3311, 595: 3262, 3340, 598: 3280, 3281, 3335, 3336, 3337, 3338, 3339, 3291, 3317, 3322, 3332, 3333, 3326, 3341, 3342, 3343, 3327, 3345, 3346, 3328, 3344, 3323, 3331, 3329, 3315, 3347, 3348, 3292, 3352, 3304, 3305, 3308, 3351, 3357, 3356, 3358, 3355, 3359, 3354, 3353, 3350, 3300, 3349, 3307, 3306, 3312, 3313, 664: 3270, 2785, 2786, 2784, 713: 3285, 3361, 3271, 3276, 3261, 3334, 3274, 3272, 3273, 3314, 3325, 3324, 3318, 3316, 3330, 4009, 3279, 3360, 3278, 3275}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 2864, 2812, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 2893, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 2898, 2825, 2789, 2807, 2972, 3055, 3044, 2842, 2854, 2965, 2966, 2961, 2919, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 2900, 2885, 2881, 2973, 2997, 2783, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 2904, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 2823, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 2889, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 2890, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 2960, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 2848, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 2774, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 2906, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 2775, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3170, 2902, 3171, 3172, 2801, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3185, 3186, 3237, 3236, 3081, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 2942, 2959, 3082, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3203, 3204, 3205, 2955, 3156, 3215, 3216, 3227, 3211, 3212, 3213, 3246, 2901, 476: 3286, 478: 3265, 3284, 482: 3294, 485: 3298, 3302, 488: 3283, 3282, 3321, 495: 3256, 498: 3295, 507: 3301, 3319, 511: 3260, 533: 3290, 567: 3297, 570: 3320, 3375, 573: 3303, 3255, 3257, 3259, 3258, 3287, 3263, 3277, 3374, 3289, 3264, 585: 3296, 3288, 3293, 3299, 3309, 3362, 3310, 3311, 595: 3262, 3340, 598: 3280, 3281, 3335, 3336, 3337, 3338, 3339, 3291, 3317, 3322, 3332, 3333, 3326, 3341, 3342, 3343, 3327, 3345, 3346, 3328, 3344, 3323, 3331, 3329, 3315, 3347, 3348, 3292, 3352, 3304, 3305, 3308, 3351, 3357, 3356, 3358, 3355, 3359, 3354, 3353, 3350, 3300, 3349, 3307, 3306, 3312, 3313, 664: 3270, 2785, 2786, 2784, 713: 3285, 3361, 3271, 3276, 3261, 3334, 3274, 3272, 3273, 3314, 3325, 3324, 3318, 3316, 3330, 4008, 3279, 3360, 3278, 3275}, // 725 - {473: 2588, 709: 3870}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 661: 3867, 2762, 2763, 2761}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 2840, 2788, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 2869, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 2874, 2801, 2766, 2783, 2948, 3031, 3020, 2818, 2830, 2941, 2942, 2937, 2895, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 2876, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 2760, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 2880, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 2799, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 2866, 2865, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 2936, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 2824, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 2751, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 2882, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 2752, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3144, 2878, 3145, 3146, 2777, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3159, 3160, 3211, 3210, 3057, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 2918, 2935, 3058, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3177, 3178, 3179, 2931, 3130, 3189, 3190, 3201, 3185, 3186, 3187, 3220, 2877, 473: 3260, 475: 3239, 3258, 479: 3268, 482: 3272, 3276, 485: 3257, 3256, 3295, 492: 3230, 495: 3269, 504: 3275, 3293, 508: 3234, 530: 3264, 564: 3271, 567: 3294, 3349, 570: 3277, 3229, 3231, 3233, 3232, 3261, 3237, 3251, 3348, 3263, 3238, 582: 3270, 3262, 3267, 3273, 3283, 3336, 3284, 3285, 592: 3236, 3314, 595: 3254, 3255, 3309, 3310, 3311, 3312, 3313, 3265, 3291, 3296, 3306, 3307, 3300, 3315, 3316, 3317, 3301, 3319, 3320, 3302, 3318, 3297, 3305, 3303, 3289, 3321, 3322, 3266, 3326, 3278, 3279, 3282, 3325, 3331, 3330, 3332, 3329, 3333, 3328, 3327, 3324, 3274, 3323, 3281, 3280, 3286, 3287, 661: 3244, 2762, 2763, 2761, 709: 3259, 3335, 3245, 3250, 3235, 3308, 3248, 3246, 3247, 3288, 3299, 3298, 3292, 3290, 3304, 3866, 3253, 3334, 3252, 3249}, - {473: 3861}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 2840, 2788, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 2869, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 2874, 2801, 2766, 2783, 2948, 3031, 3020, 2818, 2830, 2941, 2942, 2937, 2895, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 2876, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 2760, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 2880, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 2799, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 2866, 2865, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 2936, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 2824, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 2751, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 2882, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 2752, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3144, 2878, 3145, 3146, 2777, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3159, 3160, 3211, 3210, 3057, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 2918, 2935, 3058, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3177, 3178, 3179, 2931, 3130, 3189, 3190, 3201, 3185, 3186, 3187, 3220, 2877, 473: 3260, 475: 3239, 3258, 2755, 479: 3268, 482: 3272, 3276, 485: 3257, 3256, 3295, 492: 3230, 495: 3269, 504: 3275, 3293, 508: 3234, 530: 3264, 543: 1080, 564: 3271, 567: 3294, 2753, 570: 3277, 3229, 3231, 3233, 3232, 3261, 3237, 3251, 3242, 3263, 3238, 582: 3270, 3262, 3267, 3273, 3283, 3336, 3284, 3285, 592: 3236, 3314, 595: 3254, 3255, 3309, 3310, 3311, 3312, 3313, 3265, 3291, 3296, 3306, 3307, 3300, 3315, 3316, 3317, 3301, 3319, 3320, 3302, 3318, 3297, 3305, 3303, 3289, 3321, 3322, 3266, 3326, 3278, 3279, 3282, 3325, 3331, 3330, 3332, 3329, 3333, 3328, 3327, 3324, 3274, 3323, 3281, 3280, 3286, 3287, 648: 2756, 661: 3244, 2762, 2763, 2761, 709: 3259, 3335, 3245, 3250, 3235, 3308, 3248, 3246, 3247, 3288, 3299, 3298, 3292, 3290, 3304, 3243, 3253, 3334, 3252, 3249, 2759, 2758, 2757, 3848, 1209: 3849}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 2864, 2812, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 2893, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 2898, 2825, 2789, 2807, 2972, 3055, 3044, 2842, 2854, 2965, 2966, 2961, 2919, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 2900, 2885, 2881, 2973, 2997, 2783, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 2904, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 2823, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 2889, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 2890, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 2960, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 2848, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 2774, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 2906, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 2775, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3170, 2902, 3171, 3172, 2801, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3185, 3186, 3237, 3236, 3081, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 2942, 2959, 3082, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3203, 3204, 3205, 2955, 3156, 3215, 3216, 3227, 3211, 3212, 3213, 3246, 2901, 476: 3286, 478: 3265, 3284, 482: 3294, 485: 3298, 3302, 488: 3283, 3282, 3321, 495: 3256, 498: 3295, 507: 3301, 3319, 511: 3260, 533: 3290, 567: 3297, 570: 3320, 3375, 573: 3303, 3255, 3257, 3259, 3258, 3287, 3263, 3277, 3374, 3289, 3264, 585: 3296, 3288, 3293, 3299, 3309, 3362, 3310, 3311, 595: 3262, 3340, 598: 3280, 3281, 3335, 3336, 3337, 3338, 3339, 3291, 3317, 3322, 3332, 3333, 3326, 3341, 3342, 3343, 3327, 3345, 3346, 3328, 3344, 3323, 3331, 3329, 3315, 3347, 3348, 3292, 3352, 3304, 3305, 3308, 3351, 3357, 3356, 3358, 3355, 3359, 3354, 3353, 3350, 3300, 3349, 3307, 3306, 3312, 3313, 664: 3270, 2785, 2786, 2784, 713: 3285, 3361, 3271, 3276, 3261, 3334, 3274, 3272, 3273, 3314, 3325, 3324, 3318, 3316, 3330, 4007, 3279, 3360, 3278, 3275}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 2864, 2812, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 2893, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 2898, 2825, 2789, 2807, 2972, 3055, 3044, 2842, 2854, 2965, 2966, 2961, 2919, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 2900, 2885, 2881, 2973, 2997, 2783, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 2904, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 2823, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 2889, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 2890, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 2960, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 2848, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 2774, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 2906, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 2775, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3170, 2902, 3171, 3172, 2801, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3185, 3186, 3237, 3236, 3081, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 2942, 2959, 3082, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3203, 3204, 3205, 2955, 3156, 3215, 3216, 3227, 3211, 3212, 3213, 3246, 2901, 476: 3286, 478: 3265, 3284, 482: 3294, 485: 3298, 3302, 488: 3283, 3282, 3321, 495: 3256, 498: 3295, 507: 3301, 3319, 511: 3260, 533: 3290, 567: 3297, 570: 3320, 3375, 573: 3303, 3255, 3257, 3259, 3258, 3287, 3263, 3277, 3374, 3289, 3264, 585: 3296, 3288, 3293, 3299, 3309, 3362, 3310, 3311, 595: 3262, 3340, 598: 3280, 3281, 3335, 3336, 3337, 3338, 3339, 3291, 3317, 3322, 3332, 3333, 3326, 3341, 3342, 3343, 3327, 3345, 3346, 3328, 3344, 3323, 3331, 3329, 3315, 3347, 3348, 3292, 3352, 3304, 3305, 3308, 3351, 3357, 3356, 3358, 3355, 3359, 3354, 3353, 3350, 3300, 3349, 3307, 3306, 3312, 3313, 664: 3270, 2785, 2786, 2784, 713: 3285, 3361, 3271, 3276, 3261, 3334, 3274, 3272, 3273, 3314, 3325, 3324, 3318, 3316, 3330, 4006, 3279, 3360, 3278, 3275}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 2864, 2812, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 2893, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 2898, 2825, 2789, 2807, 2972, 3055, 3044, 2842, 2854, 2965, 2966, 2961, 2919, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 2900, 2885, 2881, 2973, 2997, 2783, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 2904, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 2823, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 2889, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 2890, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 2960, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 2848, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 2774, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 2906, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 2775, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3170, 2902, 3171, 3172, 2801, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3185, 3186, 3237, 3236, 3081, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 2942, 2959, 3082, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3203, 3204, 3205, 2955, 3156, 3215, 3216, 3227, 3211, 3212, 3213, 3246, 2901, 476: 3286, 478: 3265, 3284, 482: 3294, 485: 3298, 3302, 488: 3283, 3282, 3321, 495: 3256, 498: 3295, 507: 3301, 3319, 511: 3260, 533: 3290, 567: 3297, 570: 3320, 3375, 573: 3303, 3255, 3257, 3259, 3258, 3287, 3263, 3277, 3374, 3289, 3264, 585: 3296, 3288, 3293, 3299, 3309, 3362, 3310, 3311, 595: 3262, 3340, 598: 3280, 3281, 3335, 3336, 3337, 3338, 3339, 3291, 3317, 3322, 3332, 3333, 3326, 3341, 3342, 3343, 3327, 3345, 3346, 3328, 3344, 3323, 3331, 3329, 3315, 3347, 3348, 3292, 3352, 3304, 3305, 3308, 3351, 3357, 3356, 3358, 3355, 3359, 3354, 3353, 3350, 3300, 3349, 3307, 3306, 3312, 3313, 664: 3270, 2785, 2786, 2784, 713: 3285, 3361, 3271, 3276, 3261, 3334, 3274, 3272, 3273, 3314, 3325, 3324, 3318, 3316, 3330, 4005, 3279, 3360, 3278, 3275}, + {1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 477: 1274, 1274, 1274, 1274, 1274, 483: 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 492: 1274, 1274, 1274, 496: 1274, 1274, 499: 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 509: 1274, 1274, 512: 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 534: 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 568: 1274, 1274, 597: 1274}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 2864, 2812, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 2893, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 2898, 2825, 2789, 2807, 2972, 3055, 3044, 2842, 2854, 2965, 2966, 2961, 2919, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 2900, 2885, 2881, 2973, 2997, 2783, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 2904, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 2823, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 2889, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 2890, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 2960, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 2848, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 2774, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 2906, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 2775, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3170, 2902, 3171, 3172, 2801, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3185, 3186, 3237, 3236, 3081, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 2942, 2959, 3082, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3203, 3204, 3205, 2955, 3156, 3215, 3216, 3227, 3211, 3212, 3213, 3246, 2901, 476: 3286, 2607, 3265, 3284, 2778, 482: 3294, 485: 3298, 3302, 488: 3283, 3282, 3321, 495: 3256, 498: 3905, 507: 3301, 3319, 511: 3260, 533: 3290, 567: 3297, 570: 3320, 2776, 2605, 3303, 3255, 3257, 3259, 3258, 3287, 3263, 3277, 3268, 3289, 3264, 585: 3296, 3288, 3293, 3299, 3309, 3362, 3310, 3311, 595: 3262, 3340, 598: 3280, 3281, 3335, 3336, 3337, 3338, 3339, 3291, 3317, 3322, 3332, 3333, 3326, 3341, 3342, 3343, 3327, 3345, 3346, 3328, 3344, 3323, 3331, 3329, 3315, 3347, 3348, 3292, 3352, 3304, 3305, 3308, 3351, 3357, 3356, 3358, 3355, 3359, 3354, 3353, 3350, 3300, 3349, 3307, 3306, 3312, 3313, 649: 2601, 651: 2779, 664: 3270, 2785, 2786, 2784, 713: 3904, 3361, 3271, 3276, 3261, 3334, 3274, 3272, 3273, 3314, 3325, 3324, 3318, 3316, 3330, 3269, 3279, 3360, 3278, 3275, 2782, 2781, 2780, 3902, 752: 3907, 2602, 2603, 2604, 2613, 760: 2611, 2610, 2609, 3906, 3909, 3908, 782: 3903}, // 730 - {473: 3790}, - {473: 3787}, - {473: 3779}, - {473: 1230}, - {473: 1227}, + {476: 3897}, + {476: 2608, 713: 3896}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 664: 3893, 2785, 2786, 2784}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 2864, 2812, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 2893, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 2898, 2825, 2789, 2807, 2972, 3055, 3044, 2842, 2854, 2965, 2966, 2961, 2919, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 2900, 2885, 2881, 2973, 2997, 2783, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 2904, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 2823, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 2889, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 2890, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 2960, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 2848, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 2774, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 2906, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 2775, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3170, 2902, 3171, 3172, 2801, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3185, 3186, 3237, 3236, 3081, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 2942, 2959, 3082, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3203, 3204, 3205, 2955, 3156, 3215, 3216, 3227, 3211, 3212, 3213, 3246, 2901, 476: 3286, 478: 3265, 3284, 482: 3294, 485: 3298, 3302, 488: 3283, 3282, 3321, 495: 3256, 498: 3295, 507: 3301, 3319, 511: 3260, 533: 3290, 567: 3297, 570: 3320, 3375, 573: 3303, 3255, 3257, 3259, 3258, 3287, 3263, 3277, 3374, 3289, 3264, 585: 3296, 3288, 3293, 3299, 3309, 3362, 3310, 3311, 595: 3262, 3340, 598: 3280, 3281, 3335, 3336, 3337, 3338, 3339, 3291, 3317, 3322, 3332, 3333, 3326, 3341, 3342, 3343, 3327, 3345, 3346, 3328, 3344, 3323, 3331, 3329, 3315, 3347, 3348, 3292, 3352, 3304, 3305, 3308, 3351, 3357, 3356, 3358, 3355, 3359, 3354, 3353, 3350, 3300, 3349, 3307, 3306, 3312, 3313, 664: 3270, 2785, 2786, 2784, 713: 3285, 3361, 3271, 3276, 3261, 3334, 3274, 3272, 3273, 3314, 3325, 3324, 3318, 3316, 3330, 3892, 3279, 3360, 3278, 3275}, + {476: 3887}, // 735 - {473: 1224}, - {473: 1220}, - {473: 1218}, - {473: 1217}, - {473: 1215}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 2864, 2812, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 2893, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 2898, 2825, 2789, 2807, 2972, 3055, 3044, 2842, 2854, 2965, 2966, 2961, 2919, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 2900, 2885, 2881, 2973, 2997, 2783, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 2904, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 2823, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 2889, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 2890, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 2960, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 2848, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 2774, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 2906, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 2775, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3170, 2902, 3171, 3172, 2801, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3185, 3186, 3237, 3236, 3081, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 2942, 2959, 3082, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3203, 3204, 3205, 2955, 3156, 3215, 3216, 3227, 3211, 3212, 3213, 3246, 2901, 476: 3286, 478: 3265, 3284, 2778, 482: 3294, 485: 3298, 3302, 488: 3283, 3282, 3321, 495: 3256, 498: 3295, 507: 3301, 3319, 511: 3260, 533: 3290, 546: 1094, 567: 3297, 570: 3320, 2776, 573: 3303, 3255, 3257, 3259, 3258, 3287, 3263, 3277, 3268, 3289, 3264, 585: 3296, 3288, 3293, 3299, 3309, 3362, 3310, 3311, 595: 3262, 3340, 598: 3280, 3281, 3335, 3336, 3337, 3338, 3339, 3291, 3317, 3322, 3332, 3333, 3326, 3341, 3342, 3343, 3327, 3345, 3346, 3328, 3344, 3323, 3331, 3329, 3315, 3347, 3348, 3292, 3352, 3304, 3305, 3308, 3351, 3357, 3356, 3358, 3355, 3359, 3354, 3353, 3350, 3300, 3349, 3307, 3306, 3312, 3313, 651: 2779, 664: 3270, 2785, 2786, 2784, 713: 3285, 3361, 3271, 3276, 3261, 3334, 3274, 3272, 3273, 3314, 3325, 3324, 3318, 3316, 3330, 3269, 3279, 3360, 3278, 3275, 2782, 2781, 2780, 3874, 1218: 3875}, + {476: 3816}, + {476: 3813}, + {476: 3805}, + {476: 1244}, // 740 - {1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 480: 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 489: 1204, 1204, 1204, 493: 1204, 1204, 496: 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 506: 1204, 1204, 509: 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 531: 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 565: 1204, 1204, 594: 1204}, - {1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 480: 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 489: 1203, 1203, 1203, 493: 1203, 1203, 496: 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 506: 1203, 1203, 509: 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 531: 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 565: 1203, 1203, 594: 1203}, - {1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 480: 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 489: 1202, 1202, 1202, 493: 1202, 1202, 496: 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 506: 1202, 1202, 509: 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 531: 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 565: 1202, 1202, 594: 1202}, - {1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 480: 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 489: 1201, 1201, 1201, 493: 1201, 1201, 496: 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 506: 1201, 1201, 509: 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 531: 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 565: 1201, 1201, 594: 1201}, - {1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 480: 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 489: 1200, 1200, 1200, 493: 1200, 1200, 496: 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 506: 1200, 1200, 509: 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 531: 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 565: 1200, 1200, 594: 1200}, + {476: 1241}, + {476: 1238}, + {476: 1234}, + {476: 1232}, + {476: 1231}, // 745 - {1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 480: 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 489: 1199, 1199, 1199, 493: 1199, 1199, 496: 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 506: 1199, 1199, 509: 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 531: 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 565: 1199, 1199, 594: 1199}, - {1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 480: 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 489: 1198, 1198, 1198, 493: 1198, 1198, 496: 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 506: 1198, 1198, 509: 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 531: 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 565: 1198, 1198, 594: 1198}, - {1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 480: 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 489: 1197, 1197, 1197, 493: 1197, 1197, 496: 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 506: 1197, 1197, 509: 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 531: 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 565: 1197, 1197, 594: 1197}, - {1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 480: 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 489: 1196, 1196, 1196, 493: 1196, 1196, 496: 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 506: 1196, 1196, 509: 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 531: 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 565: 1196, 1196, 594: 1196}, - {1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 480: 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 489: 1195, 1195, 1195, 493: 1195, 1195, 496: 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 506: 1195, 1195, 509: 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 531: 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 565: 1195, 1195, 594: 1195}, + {476: 1229}, + {1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 483: 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 492: 1218, 1218, 1218, 496: 1218, 1218, 499: 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 509: 1218, 1218, 512: 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 534: 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 1218, 568: 1218, 1218, 597: 1218}, + {1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 483: 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 492: 1217, 1217, 1217, 496: 1217, 1217, 499: 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 509: 1217, 1217, 512: 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 534: 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 1217, 568: 1217, 1217, 597: 1217}, + {1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 483: 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 492: 1216, 1216, 1216, 496: 1216, 1216, 499: 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 509: 1216, 1216, 512: 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 534: 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 1216, 568: 1216, 1216, 597: 1216}, + {1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 483: 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 492: 1215, 1215, 1215, 496: 1215, 1215, 499: 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 509: 1215, 1215, 512: 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 534: 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 1215, 568: 1215, 1215, 597: 1215}, // 750 - {1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 480: 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 489: 1194, 1194, 1194, 493: 1194, 1194, 496: 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 506: 1194, 1194, 509: 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 531: 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 565: 1194, 1194, 594: 1194}, - {473: 3776}, - {473: 3773}, - {1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 3770, 1206, 1206, 1206, 1206, 1206, 480: 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 489: 1206, 1206, 1206, 493: 1206, 1206, 496: 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 506: 1206, 1206, 509: 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 531: 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 565: 1206, 1206, 594: 1206, 1092: 3771}, - {473: 3768}, + {1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 483: 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 492: 1214, 1214, 1214, 496: 1214, 1214, 499: 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 509: 1214, 1214, 512: 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 534: 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 1214, 568: 1214, 1214, 597: 1214}, + {1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 483: 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 492: 1213, 1213, 1213, 496: 1213, 1213, 499: 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 509: 1213, 1213, 512: 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 534: 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 1213, 568: 1213, 1213, 597: 1213}, + {1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 483: 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 492: 1212, 1212, 1212, 496: 1212, 1212, 499: 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 509: 1212, 1212, 512: 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 534: 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 1212, 568: 1212, 1212, 597: 1212}, + {1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 483: 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 492: 1211, 1211, 1211, 496: 1211, 1211, 499: 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 509: 1211, 1211, 512: 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 534: 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 1211, 568: 1211, 1211, 597: 1211}, + {1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 483: 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 492: 1210, 1210, 1210, 496: 1210, 1210, 499: 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 509: 1210, 1210, 512: 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 534: 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 1210, 568: 1210, 1210, 597: 1210}, // 755 - {1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 3764, 1112, 1112, 1112, 1112, 1112, 480: 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 489: 1112, 1112, 1112, 493: 1112, 1112, 496: 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 506: 1112, 1112, 509: 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 531: 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 565: 1112, 1112, 594: 1112, 1223: 3763}, - {473: 3755}, - {473: 3751}, - {473: 3746}, - {473: 3743}, + {1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 483: 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 492: 1209, 1209, 1209, 496: 1209, 1209, 499: 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 509: 1209, 1209, 512: 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 534: 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 1209, 568: 1209, 1209, 597: 1209}, + {1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 483: 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 492: 1208, 1208, 1208, 496: 1208, 1208, 499: 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 509: 1208, 1208, 512: 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 534: 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 1208, 568: 1208, 1208, 597: 1208}, + {476: 3802}, + {476: 3799}, + {1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 3796, 1220, 1220, 1220, 1220, 1220, 483: 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 492: 1220, 1220, 1220, 496: 1220, 1220, 499: 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 509: 1220, 1220, 512: 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 534: 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 1220, 568: 1220, 1220, 597: 1220, 1100: 3797}, // 760 - {473: 3738}, - {473: 3729}, - {473: 3722}, - {473: 3717}, - {473: 3680}, + {476: 3794}, + {1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 3790, 1126, 1126, 1126, 1126, 1126, 483: 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 492: 1126, 1126, 1126, 496: 1126, 1126, 499: 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 509: 1126, 1126, 512: 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 534: 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 568: 1126, 1126, 597: 1126, 1231: 3789}, + {476: 3781}, + {476: 3777}, + {476: 3772}, // 765 - {473: 3666}, - {473: 3649}, - {1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 474: 1159, 1159, 1159, 1159, 1159, 480: 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 489: 1159, 1159, 1159, 493: 1159, 1159, 496: 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 506: 1159, 1159, 509: 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 531: 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 565: 1159, 1159, 594: 1159}, - {473: 3642}, - {473: 1153}, + {476: 3769}, + {476: 3764}, + {476: 3755}, + {476: 3748}, + {476: 3743}, // 770 - {473: 1152}, - {1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 474: 1144, 1144, 1144, 1144, 1144, 480: 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 489: 1144, 1144, 1144, 493: 1144, 1144, 496: 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 506: 1144, 1144, 509: 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 531: 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 565: 1144, 1144, 594: 1144}, - {473: 3639}, - {473: 3636}, - {473: 3628}, + {476: 3706}, + {476: 3692}, + {476: 3675}, + {1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 477: 1173, 1173, 1173, 1173, 1173, 483: 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 492: 1173, 1173, 1173, 496: 1173, 1173, 499: 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 509: 1173, 1173, 512: 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 534: 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 568: 1173, 1173, 597: 1173}, + {476: 3668}, // 775 - {473: 3620}, - {473: 3612}, - {473: 3598}, - {473: 3586}, - {473: 3581}, + {476: 1167}, + {476: 1166}, + {1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 477: 1158, 1158, 1158, 1158, 1158, 483: 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 492: 1158, 1158, 1158, 496: 1158, 1158, 499: 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 509: 1158, 1158, 512: 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 534: 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 568: 1158, 1158, 597: 1158}, + {476: 3665}, + {476: 3662}, // 780 - {473: 3576}, - {473: 3571}, - {473: 3566}, - {473: 3561}, - {473: 3556}, + {476: 3654}, + {476: 3646}, + {476: 3638}, + {476: 3624}, + {476: 3612}, // 785 - {473: 3543}, - {473: 3540}, - {473: 3537}, - {473: 3534}, - {473: 3531}, + {476: 3607}, + {476: 3602}, + {476: 3597}, + {476: 3592}, + {476: 3587}, // 790 - {473: 3528}, - {473: 3524}, - {473: 3518}, - {473: 3505}, - {473: 3500}, + {476: 3582}, + {476: 3569}, + {476: 3566}, + {476: 3563}, + {476: 3560}, // 795 - {473: 3495}, - {473: 3337}, - {751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 474: 751, 751, 751, 751, 751, 480: 751, 751, 751, 751, 751, 751, 751, 751, 489: 751, 751, 751, 493: 751, 751, 496: 751, 751, 751, 751, 751, 751, 751, 751, 506: 751, 751, 509: 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 531: 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 751, 565: 751, 751, 594: 751}, - {750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 474: 750, 750, 750, 750, 750, 480: 750, 750, 750, 750, 750, 750, 750, 750, 489: 750, 750, 750, 493: 750, 750, 496: 750, 750, 750, 750, 750, 750, 750, 750, 506: 750, 750, 509: 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 531: 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 750, 565: 750, 750, 594: 750}, - {749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 474: 749, 749, 749, 749, 749, 480: 749, 749, 749, 749, 749, 749, 749, 749, 489: 749, 749, 749, 493: 749, 749, 496: 749, 749, 749, 749, 749, 749, 749, 749, 506: 749, 749, 509: 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 531: 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 749, 565: 749, 749, 594: 749}, + {476: 3557}, + {476: 3554}, + {476: 3550}, + {476: 3544}, + {476: 3531}, // 800 - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 2840, 2788, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 2869, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 2874, 2801, 2766, 2783, 2948, 3031, 3020, 2818, 2830, 2941, 2942, 2937, 2895, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 2876, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 2760, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 2880, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 2799, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 2866, 2865, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 2936, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 2824, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 2751, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 2882, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 2752, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3144, 2878, 3145, 3146, 2777, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3159, 3160, 3211, 3210, 3057, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 2918, 2935, 3058, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3177, 3178, 3179, 2931, 3130, 3189, 3190, 3201, 3185, 3186, 3187, 3220, 2877, 473: 3260, 475: 3239, 3258, 2755, 479: 3268, 482: 3272, 3276, 485: 3257, 3256, 3295, 492: 3230, 495: 3269, 504: 3275, 3293, 508: 3234, 530: 3264, 564: 3271, 567: 3294, 2753, 570: 3277, 3229, 3231, 3233, 3232, 3261, 3237, 3251, 3242, 3263, 3238, 582: 3270, 3262, 3267, 3273, 3283, 3336, 3284, 3285, 592: 3236, 3314, 595: 3254, 3255, 3309, 3310, 3311, 3312, 3313, 3265, 3291, 3296, 3306, 3307, 3300, 3315, 3316, 3317, 3301, 3319, 3320, 3302, 3318, 3297, 3305, 3303, 3289, 3321, 3322, 3266, 3326, 3278, 3279, 3282, 3325, 3331, 3330, 3332, 3329, 3333, 3328, 3327, 3324, 3274, 3323, 3281, 3280, 3286, 3287, 648: 2756, 661: 3244, 2762, 2763, 2761, 709: 3259, 3335, 3245, 3250, 3235, 3308, 3248, 3246, 3247, 3288, 3299, 3298, 3292, 3290, 3304, 3243, 3253, 3334, 3252, 3249, 2759, 2758, 2757, 3338}, - {9: 3346, 507: 3345, 509: 3343, 3344, 3342, 3340, 734: 3341, 3339}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 2840, 2788, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 2869, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 2874, 2801, 2766, 2783, 2948, 3031, 3020, 2818, 2830, 2941, 2942, 2937, 2895, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 2876, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 2760, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 2880, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 2799, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 2866, 2865, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 2936, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 2824, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 2751, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 2882, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 2752, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3144, 2878, 3145, 3146, 2777, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3159, 3160, 3211, 3210, 3057, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 2918, 2935, 3058, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3177, 3178, 3179, 2931, 3130, 3189, 3190, 3201, 3185, 3186, 3187, 3220, 2877, 473: 3260, 475: 3239, 3258, 2755, 479: 3268, 482: 3272, 3276, 485: 3257, 3256, 3295, 492: 3230, 495: 3269, 504: 3275, 3293, 508: 3234, 530: 3264, 564: 3271, 567: 3294, 2753, 570: 3277, 3229, 3231, 3233, 3232, 3261, 3237, 3251, 3242, 3263, 3238, 582: 3270, 3262, 3267, 3273, 3283, 3336, 3284, 3285, 592: 3236, 3314, 595: 3254, 3255, 3309, 3310, 3311, 3312, 3313, 3265, 3291, 3296, 3306, 3307, 3300, 3315, 3316, 3317, 3301, 3319, 3320, 3302, 3318, 3297, 3305, 3303, 3289, 3321, 3322, 3266, 3326, 3278, 3279, 3282, 3325, 3331, 3330, 3332, 3329, 3333, 3328, 3327, 3324, 3274, 3323, 3281, 3280, 3286, 3287, 648: 2756, 661: 3244, 2762, 2763, 2761, 709: 3259, 3335, 3245, 3250, 3235, 3308, 3248, 3246, 3247, 3288, 3299, 3298, 3292, 3290, 3304, 3243, 3253, 3334, 3252, 3249, 2759, 2758, 2757, 3494}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 2840, 2788, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 2869, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 2874, 2801, 2766, 2783, 2948, 3031, 3020, 2818, 2830, 2941, 2942, 2937, 2895, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 2876, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 2760, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 2880, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 2799, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 2866, 2865, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 2936, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 2824, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 2751, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 2882, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 2752, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3144, 2878, 3145, 3146, 2777, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3159, 3160, 3211, 3210, 3057, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 2918, 2935, 3058, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3177, 3178, 3179, 2931, 3130, 3189, 3190, 3201, 3185, 3186, 3187, 3220, 2877, 473: 3260, 475: 3239, 3258, 2755, 479: 3268, 482: 3272, 3276, 485: 3257, 3256, 3295, 492: 3230, 495: 3269, 504: 3275, 3293, 508: 3234, 530: 3264, 564: 3271, 567: 3294, 2753, 570: 3277, 3229, 3231, 3233, 3232, 3261, 3237, 3251, 3242, 3263, 3238, 582: 3270, 3262, 3267, 3273, 3283, 3336, 3284, 3285, 592: 3236, 3314, 595: 3254, 3255, 3309, 3310, 3311, 3312, 3313, 3265, 3291, 3296, 3306, 3307, 3300, 3315, 3316, 3317, 3301, 3319, 3320, 3302, 3318, 3297, 3305, 3303, 3289, 3321, 3322, 3266, 3326, 3278, 3279, 3282, 3325, 3331, 3330, 3332, 3329, 3333, 3328, 3327, 3324, 3274, 3323, 3281, 3280, 3286, 3287, 648: 2756, 661: 3244, 2762, 2763, 2761, 709: 3259, 3335, 3245, 3250, 3235, 3308, 3248, 3246, 3247, 3288, 3299, 3298, 3292, 3290, 3304, 3243, 3253, 3334, 3252, 3249, 2759, 2758, 2757, 3493}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 2840, 2788, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 2869, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 2874, 2801, 2766, 2783, 2948, 3031, 3020, 2818, 2830, 2941, 2942, 2937, 2895, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 2876, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 2760, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 2880, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 2799, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 2866, 2865, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 2936, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 2824, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 2751, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 2882, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 2752, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3144, 2878, 3145, 3146, 2777, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3159, 3160, 3211, 3210, 3057, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 2918, 2935, 3058, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3177, 3178, 3179, 2931, 3130, 3189, 3190, 3201, 3185, 3186, 3187, 3220, 2877, 473: 3260, 475: 3239, 3258, 2755, 479: 3268, 482: 3272, 3276, 485: 3257, 3256, 3295, 492: 3230, 495: 3269, 504: 3275, 3293, 508: 3234, 530: 3264, 564: 3271, 567: 3294, 2753, 570: 3277, 3229, 3231, 3233, 3232, 3261, 3237, 3251, 3242, 3263, 3238, 582: 3270, 3262, 3267, 3273, 3283, 3336, 3284, 3285, 592: 3236, 3314, 595: 3254, 3255, 3309, 3310, 3311, 3312, 3313, 3265, 3291, 3296, 3306, 3307, 3300, 3315, 3316, 3317, 3301, 3319, 3320, 3302, 3318, 3297, 3305, 3303, 3289, 3321, 3322, 3266, 3326, 3278, 3279, 3282, 3325, 3331, 3330, 3332, 3329, 3333, 3328, 3327, 3324, 3274, 3323, 3281, 3280, 3286, 3287, 648: 2756, 661: 3244, 2762, 2763, 2761, 709: 3259, 3335, 3245, 3250, 3235, 3308, 3248, 3246, 3247, 3288, 3299, 3298, 3292, 3290, 3304, 3243, 3253, 3334, 3252, 3249, 2759, 2758, 2757, 3492}, + {476: 3526}, + {476: 3521}, + {476: 3363}, + {765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 477: 765, 765, 765, 765, 765, 483: 765, 765, 765, 765, 765, 765, 765, 765, 492: 765, 765, 765, 496: 765, 765, 499: 765, 765, 765, 765, 765, 765, 765, 765, 509: 765, 765, 512: 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 534: 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 765, 568: 765, 765, 597: 765}, + {764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 477: 764, 764, 764, 764, 764, 483: 764, 764, 764, 764, 764, 764, 764, 764, 492: 764, 764, 764, 496: 764, 764, 499: 764, 764, 764, 764, 764, 764, 764, 764, 509: 764, 764, 512: 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 534: 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 764, 568: 764, 764, 597: 764}, // 805 - {2: 1927, 1927, 1927, 1927, 1927, 1927, 1927, 10: 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 50: 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 473: 1927, 475: 1927, 1927, 1927, 479: 1927, 482: 1927, 1927, 485: 1927, 1927, 1927, 492: 1927, 495: 1927, 504: 1927, 1927, 508: 1927, 530: 1927, 564: 1927, 567: 1927, 1927, 570: 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 582: 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 592: 1927, 1927, 595: 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 1927, 648: 1927}, - {2: 1926, 1926, 1926, 1926, 1926, 1926, 1926, 10: 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 50: 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 473: 1926, 475: 1926, 1926, 1926, 479: 1926, 482: 1926, 1926, 485: 1926, 1926, 1926, 492: 1926, 495: 1926, 504: 1926, 1926, 508: 1926, 530: 1926, 564: 1926, 567: 1926, 1926, 570: 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 582: 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 592: 1926, 1926, 595: 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 648: 1926}, - {2: 1925, 1925, 1925, 1925, 1925, 1925, 1925, 10: 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 50: 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 473: 1925, 475: 1925, 1925, 1925, 479: 1925, 482: 1925, 1925, 485: 1925, 1925, 1925, 492: 1925, 495: 1925, 504: 1925, 1925, 508: 1925, 530: 1925, 564: 1925, 567: 1925, 1925, 570: 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 582: 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 592: 1925, 1925, 595: 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 648: 1925}, - {2: 1924, 1924, 1924, 1924, 1924, 1924, 1924, 10: 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 50: 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 473: 1924, 475: 1924, 1924, 1924, 479: 1924, 482: 1924, 1924, 485: 1924, 1924, 1924, 492: 1924, 495: 1924, 504: 1924, 1924, 508: 1924, 530: 1924, 564: 1924, 567: 1924, 1924, 570: 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 582: 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 592: 1924, 1924, 595: 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 648: 1924}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 2840, 2788, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 2869, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 2874, 2801, 2766, 2783, 2948, 3031, 3020, 2818, 2830, 2941, 2942, 2937, 2895, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 2876, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 2760, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 2880, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 2799, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 2866, 2865, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 2936, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 2824, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 2751, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 2882, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 2752, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3144, 2878, 3145, 3146, 2777, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3159, 3160, 3211, 3210, 3057, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 2918, 2935, 3058, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3177, 3178, 3179, 2931, 3130, 3189, 3190, 3201, 3185, 3186, 3187, 3220, 2877, 473: 3260, 475: 3239, 3258, 479: 3268, 482: 3272, 3276, 485: 3257, 3256, 3295, 492: 3230, 495: 3269, 504: 3275, 3293, 508: 3234, 530: 3264, 564: 3271, 567: 3294, 3349, 570: 3277, 3229, 3231, 3233, 3232, 3261, 3237, 3251, 3348, 3263, 3238, 582: 3270, 3262, 3267, 3273, 3283, 3336, 3284, 3285, 592: 3236, 3314, 595: 3254, 3255, 3309, 3310, 3311, 3312, 3313, 3265, 3291, 3296, 3306, 3307, 3300, 3315, 3316, 3317, 3301, 3319, 3320, 3302, 3318, 3297, 3305, 3303, 3289, 3321, 3322, 3266, 3326, 3278, 3279, 3282, 3325, 3331, 3330, 3332, 3329, 3333, 3328, 3327, 3324, 3274, 3323, 3281, 3280, 3286, 3287, 661: 3244, 2762, 2763, 2761, 709: 3259, 3335, 3245, 3250, 3235, 3308, 3248, 3246, 3247, 3288, 3299, 3298, 3292, 3290, 3304, 3347, 3253, 3334, 3252, 3249}, + {763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 477: 763, 763, 763, 763, 763, 483: 763, 763, 763, 763, 763, 763, 763, 763, 492: 763, 763, 763, 496: 763, 763, 499: 763, 763, 763, 763, 763, 763, 763, 763, 509: 763, 763, 512: 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 534: 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 763, 568: 763, 763, 597: 763}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 2864, 2812, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 2893, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 2898, 2825, 2789, 2807, 2972, 3055, 3044, 2842, 2854, 2965, 2966, 2961, 2919, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 2900, 2885, 2881, 2973, 2997, 2783, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 2904, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 2823, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 2889, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 2890, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 2960, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 2848, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 2774, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 2906, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 2775, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3170, 2902, 3171, 3172, 2801, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3185, 3186, 3237, 3236, 3081, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 2942, 2959, 3082, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3203, 3204, 3205, 2955, 3156, 3215, 3216, 3227, 3211, 3212, 3213, 3246, 2901, 476: 3286, 478: 3265, 3284, 2778, 482: 3294, 485: 3298, 3302, 488: 3283, 3282, 3321, 495: 3256, 498: 3295, 507: 3301, 3319, 511: 3260, 533: 3290, 567: 3297, 570: 3320, 2776, 573: 3303, 3255, 3257, 3259, 3258, 3287, 3263, 3277, 3268, 3289, 3264, 585: 3296, 3288, 3293, 3299, 3309, 3362, 3310, 3311, 595: 3262, 3340, 598: 3280, 3281, 3335, 3336, 3337, 3338, 3339, 3291, 3317, 3322, 3332, 3333, 3326, 3341, 3342, 3343, 3327, 3345, 3346, 3328, 3344, 3323, 3331, 3329, 3315, 3347, 3348, 3292, 3352, 3304, 3305, 3308, 3351, 3357, 3356, 3358, 3355, 3359, 3354, 3353, 3350, 3300, 3349, 3307, 3306, 3312, 3313, 651: 2779, 664: 3270, 2785, 2786, 2784, 713: 3285, 3361, 3271, 3276, 3261, 3334, 3274, 3272, 3273, 3314, 3325, 3324, 3318, 3316, 3330, 3269, 3279, 3360, 3278, 3275, 2782, 2781, 2780, 3364}, + {9: 3372, 510: 3371, 512: 3369, 3370, 3368, 3366, 738: 3367, 3365}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 2864, 2812, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 2893, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 2898, 2825, 2789, 2807, 2972, 3055, 3044, 2842, 2854, 2965, 2966, 2961, 2919, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 2900, 2885, 2881, 2973, 2997, 2783, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 2904, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 2823, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 2889, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 2890, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 2960, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 2848, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 2774, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 2906, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 2775, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3170, 2902, 3171, 3172, 2801, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3185, 3186, 3237, 3236, 3081, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 2942, 2959, 3082, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3203, 3204, 3205, 2955, 3156, 3215, 3216, 3227, 3211, 3212, 3213, 3246, 2901, 476: 3286, 478: 3265, 3284, 2778, 482: 3294, 485: 3298, 3302, 488: 3283, 3282, 3321, 495: 3256, 498: 3295, 507: 3301, 3319, 511: 3260, 533: 3290, 567: 3297, 570: 3320, 2776, 573: 3303, 3255, 3257, 3259, 3258, 3287, 3263, 3277, 3268, 3289, 3264, 585: 3296, 3288, 3293, 3299, 3309, 3362, 3310, 3311, 595: 3262, 3340, 598: 3280, 3281, 3335, 3336, 3337, 3338, 3339, 3291, 3317, 3322, 3332, 3333, 3326, 3341, 3342, 3343, 3327, 3345, 3346, 3328, 3344, 3323, 3331, 3329, 3315, 3347, 3348, 3292, 3352, 3304, 3305, 3308, 3351, 3357, 3356, 3358, 3355, 3359, 3354, 3353, 3350, 3300, 3349, 3307, 3306, 3312, 3313, 651: 2779, 664: 3270, 2785, 2786, 2784, 713: 3285, 3361, 3271, 3276, 3261, 3334, 3274, 3272, 3273, 3314, 3325, 3324, 3318, 3316, 3330, 3269, 3279, 3360, 3278, 3275, 2782, 2781, 2780, 3520}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 2864, 2812, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 2893, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 2898, 2825, 2789, 2807, 2972, 3055, 3044, 2842, 2854, 2965, 2966, 2961, 2919, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 2900, 2885, 2881, 2973, 2997, 2783, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 2904, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 2823, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 2889, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 2890, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 2960, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 2848, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 2774, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 2906, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 2775, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3170, 2902, 3171, 3172, 2801, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3185, 3186, 3237, 3236, 3081, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 2942, 2959, 3082, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3203, 3204, 3205, 2955, 3156, 3215, 3216, 3227, 3211, 3212, 3213, 3246, 2901, 476: 3286, 478: 3265, 3284, 2778, 482: 3294, 485: 3298, 3302, 488: 3283, 3282, 3321, 495: 3256, 498: 3295, 507: 3301, 3319, 511: 3260, 533: 3290, 567: 3297, 570: 3320, 2776, 573: 3303, 3255, 3257, 3259, 3258, 3287, 3263, 3277, 3268, 3289, 3264, 585: 3296, 3288, 3293, 3299, 3309, 3362, 3310, 3311, 595: 3262, 3340, 598: 3280, 3281, 3335, 3336, 3337, 3338, 3339, 3291, 3317, 3322, 3332, 3333, 3326, 3341, 3342, 3343, 3327, 3345, 3346, 3328, 3344, 3323, 3331, 3329, 3315, 3347, 3348, 3292, 3352, 3304, 3305, 3308, 3351, 3357, 3356, 3358, 3355, 3359, 3354, 3353, 3350, 3300, 3349, 3307, 3306, 3312, 3313, 651: 2779, 664: 3270, 2785, 2786, 2784, 713: 3285, 3361, 3271, 3276, 3261, 3334, 3274, 3272, 3273, 3314, 3325, 3324, 3318, 3316, 3330, 3269, 3279, 3360, 3278, 3275, 2782, 2781, 2780, 3519}, // 810 - {49: 3352, 484: 3350, 594: 3351}, - {473: 1226}, - {748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 474: 748, 748, 748, 748, 748, 480: 748, 748, 748, 748, 748, 748, 748, 748, 489: 748, 748, 748, 493: 748, 748, 496: 748, 748, 748, 748, 748, 748, 748, 748, 506: 748, 748, 509: 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 531: 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 565: 748, 748, 594: 748}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 475: 3490, 530: 3489, 661: 3491, 2762, 2763, 2761, 738: 3488, 872: 3487}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 2840, 2788, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 2869, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 2874, 2801, 2766, 2783, 2948, 3031, 3020, 2818, 2830, 2941, 2942, 2937, 2895, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 2876, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 2760, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 2880, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 2799, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 2866, 2865, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 2936, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 2824, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 2751, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 2882, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 2752, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3144, 2878, 3145, 3146, 2777, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3159, 3160, 3211, 3210, 3057, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 2918, 2935, 3058, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3177, 3178, 3179, 2931, 3130, 3189, 3190, 3201, 3185, 3186, 3187, 3220, 2877, 473: 3260, 475: 3239, 3258, 479: 3268, 482: 3272, 3276, 485: 3257, 3256, 3295, 492: 3230, 495: 3269, 504: 3275, 3293, 508: 3234, 530: 3264, 564: 3271, 567: 3294, 3349, 570: 3277, 3229, 3231, 3233, 3232, 3261, 3237, 3251, 3348, 3263, 3238, 582: 3270, 3262, 3267, 3273, 3283, 3336, 3284, 3285, 592: 3236, 3314, 595: 3254, 3255, 3309, 3310, 3311, 3312, 3313, 3265, 3291, 3296, 3306, 3307, 3300, 3315, 3316, 3317, 3301, 3319, 3320, 3302, 3318, 3297, 3305, 3303, 3289, 3321, 3322, 3266, 3326, 3278, 3279, 3282, 3325, 3331, 3330, 3332, 3329, 3333, 3328, 3327, 3324, 3274, 3323, 3281, 3280, 3286, 3287, 661: 3244, 2762, 2763, 2761, 709: 3259, 3335, 3245, 3250, 3235, 3308, 3248, 3246, 3247, 3288, 3299, 3298, 3292, 3290, 3304, 3486, 3253, 3334, 3252, 3249}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 2864, 2812, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 2893, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 2898, 2825, 2789, 2807, 2972, 3055, 3044, 2842, 2854, 2965, 2966, 2961, 2919, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 2900, 2885, 2881, 2973, 2997, 2783, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 2904, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 2823, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 2889, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 2890, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 2960, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 2848, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 2774, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 2906, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 2775, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3170, 2902, 3171, 3172, 2801, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3185, 3186, 3237, 3236, 3081, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 2942, 2959, 3082, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3203, 3204, 3205, 2955, 3156, 3215, 3216, 3227, 3211, 3212, 3213, 3246, 2901, 476: 3286, 478: 3265, 3284, 2778, 482: 3294, 485: 3298, 3302, 488: 3283, 3282, 3321, 495: 3256, 498: 3295, 507: 3301, 3319, 511: 3260, 533: 3290, 567: 3297, 570: 3320, 2776, 573: 3303, 3255, 3257, 3259, 3258, 3287, 3263, 3277, 3268, 3289, 3264, 585: 3296, 3288, 3293, 3299, 3309, 3362, 3310, 3311, 595: 3262, 3340, 598: 3280, 3281, 3335, 3336, 3337, 3338, 3339, 3291, 3317, 3322, 3332, 3333, 3326, 3341, 3342, 3343, 3327, 3345, 3346, 3328, 3344, 3323, 3331, 3329, 3315, 3347, 3348, 3292, 3352, 3304, 3305, 3308, 3351, 3357, 3356, 3358, 3355, 3359, 3354, 3353, 3350, 3300, 3349, 3307, 3306, 3312, 3313, 651: 2779, 664: 3270, 2785, 2786, 2784, 713: 3285, 3361, 3271, 3276, 3261, 3334, 3274, 3272, 3273, 3314, 3325, 3324, 3318, 3316, 3330, 3269, 3279, 3360, 3278, 3275, 2782, 2781, 2780, 3518}, + {2: 1944, 1944, 1944, 1944, 1944, 1944, 1944, 10: 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 51: 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 476: 1944, 478: 1944, 1944, 1944, 482: 1944, 485: 1944, 1944, 488: 1944, 1944, 1944, 495: 1944, 498: 1944, 507: 1944, 1944, 511: 1944, 533: 1944, 567: 1944, 570: 1944, 1944, 573: 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 585: 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 595: 1944, 1944, 598: 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 651: 1944}, + {2: 1943, 1943, 1943, 1943, 1943, 1943, 1943, 10: 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 51: 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 476: 1943, 478: 1943, 1943, 1943, 482: 1943, 485: 1943, 1943, 488: 1943, 1943, 1943, 495: 1943, 498: 1943, 507: 1943, 1943, 511: 1943, 533: 1943, 567: 1943, 570: 1943, 1943, 573: 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 585: 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 595: 1943, 1943, 598: 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 651: 1943}, + {2: 1942, 1942, 1942, 1942, 1942, 1942, 1942, 10: 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 51: 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 476: 1942, 478: 1942, 1942, 1942, 482: 1942, 485: 1942, 1942, 488: 1942, 1942, 1942, 495: 1942, 498: 1942, 507: 1942, 1942, 511: 1942, 533: 1942, 567: 1942, 570: 1942, 1942, 573: 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 585: 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 595: 1942, 1942, 598: 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 651: 1942}, + {2: 1941, 1941, 1941, 1941, 1941, 1941, 1941, 10: 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 51: 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 476: 1941, 478: 1941, 1941, 1941, 482: 1941, 485: 1941, 1941, 488: 1941, 1941, 1941, 495: 1941, 498: 1941, 507: 1941, 1941, 511: 1941, 533: 1941, 567: 1941, 570: 1941, 1941, 573: 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 585: 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 595: 1941, 1941, 598: 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 651: 1941}, // 815 - {146: 935, 489: 935, 500: 3354, 742: 935, 1265: 3353}, - {146: 3358, 489: 3359, 742: 938, 885: 3357}, - {10: 3355, 183: 3356}, - {146: 934, 489: 934, 742: 934}, - {146: 933, 489: 933, 742: 933}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 2864, 2812, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 2893, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 2898, 2825, 2789, 2807, 2972, 3055, 3044, 2842, 2854, 2965, 2966, 2961, 2919, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 2900, 2885, 2881, 2973, 2997, 2783, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 2904, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 2823, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 2889, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 2890, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 2960, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 2848, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 2774, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 2906, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 2775, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3170, 2902, 3171, 3172, 2801, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3185, 3186, 3237, 3236, 3081, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 2942, 2959, 3082, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3203, 3204, 3205, 2955, 3156, 3215, 3216, 3227, 3211, 3212, 3213, 3246, 2901, 476: 3286, 478: 3265, 3284, 482: 3294, 485: 3298, 3302, 488: 3283, 3282, 3321, 495: 3256, 498: 3295, 507: 3301, 3319, 511: 3260, 533: 3290, 567: 3297, 570: 3320, 3375, 573: 3303, 3255, 3257, 3259, 3258, 3287, 3263, 3277, 3374, 3289, 3264, 585: 3296, 3288, 3293, 3299, 3309, 3362, 3310, 3311, 595: 3262, 3340, 598: 3280, 3281, 3335, 3336, 3337, 3338, 3339, 3291, 3317, 3322, 3332, 3333, 3326, 3341, 3342, 3343, 3327, 3345, 3346, 3328, 3344, 3323, 3331, 3329, 3315, 3347, 3348, 3292, 3352, 3304, 3305, 3308, 3351, 3357, 3356, 3358, 3355, 3359, 3354, 3353, 3350, 3300, 3349, 3307, 3306, 3312, 3313, 664: 3270, 2785, 2786, 2784, 713: 3285, 3361, 3271, 3276, 3261, 3334, 3274, 3272, 3273, 3314, 3325, 3324, 3318, 3316, 3330, 3373, 3279, 3360, 3278, 3275}, + {50: 3378, 487: 3376, 597: 3377}, + {476: 1240}, + {762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 477: 762, 762, 762, 762, 762, 483: 762, 762, 762, 762, 762, 762, 762, 762, 492: 762, 762, 762, 496: 762, 762, 499: 762, 762, 762, 762, 762, 762, 762, 762, 509: 762, 762, 512: 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 534: 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 568: 762, 762, 597: 762}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 478: 3516, 533: 3515, 664: 3517, 2785, 2786, 2784, 742: 3514, 876: 3513}, // 820 - {742: 3362, 747: 3363}, - {273: 3361}, - {273: 3360}, - {742: 936}, - {742: 937}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 2864, 2812, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 2893, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 2898, 2825, 2789, 2807, 2972, 3055, 3044, 2842, 2854, 2965, 2966, 2961, 2919, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 2900, 2885, 2881, 2973, 2997, 2783, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 2904, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 2823, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 2889, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 2890, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 2960, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 2848, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 2774, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 2906, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 2775, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3170, 2902, 3171, 3172, 2801, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3185, 3186, 3237, 3236, 3081, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 2942, 2959, 3082, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3203, 3204, 3205, 2955, 3156, 3215, 3216, 3227, 3211, 3212, 3213, 3246, 2901, 476: 3286, 478: 3265, 3284, 482: 3294, 485: 3298, 3302, 488: 3283, 3282, 3321, 495: 3256, 498: 3295, 507: 3301, 3319, 511: 3260, 533: 3290, 567: 3297, 570: 3320, 3375, 573: 3303, 3255, 3257, 3259, 3258, 3287, 3263, 3277, 3374, 3289, 3264, 585: 3296, 3288, 3293, 3299, 3309, 3362, 3310, 3311, 595: 3262, 3340, 598: 3280, 3281, 3335, 3336, 3337, 3338, 3339, 3291, 3317, 3322, 3332, 3333, 3326, 3341, 3342, 3343, 3327, 3345, 3346, 3328, 3344, 3323, 3331, 3329, 3315, 3347, 3348, 3292, 3352, 3304, 3305, 3308, 3351, 3357, 3356, 3358, 3355, 3359, 3354, 3353, 3350, 3300, 3349, 3307, 3306, 3312, 3313, 664: 3270, 2785, 2786, 2784, 713: 3285, 3361, 3271, 3276, 3261, 3334, 3274, 3272, 3273, 3314, 3325, 3324, 3318, 3316, 3330, 3512, 3279, 3360, 3278, 3275}, + {149: 949, 492: 949, 503: 3380, 746: 949, 1273: 3379}, + {149: 3384, 492: 3385, 746: 952, 889: 3383}, + {10: 3381, 185: 3382}, + {149: 948, 492: 948, 746: 948}, // 825 - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 473: 3401, 661: 3400, 2762, 2763, 2761, 923: 3403, 1162: 3404, 1350: 3402}, - {944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 474: 944, 944, 944, 944, 944, 480: 944, 944, 944, 944, 944, 944, 944, 944, 489: 944, 944, 944, 493: 944, 944, 496: 944, 944, 944, 944, 944, 944, 944, 944, 506: 944, 944, 509: 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 531: 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 944, 565: 944, 944, 594: 944}, - {1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 665: 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832, 1832}, - {1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 665: 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826, 1826}, - {1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 665: 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815, 1815}, + {149: 947, 492: 947, 746: 947}, + {746: 3388, 751: 3389}, + {276: 3387}, + {276: 3386}, + {746: 950}, // 830 - {1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 665: 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804, 1804}, - {1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 665: 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793, 1793}, - {1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 665: 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791, 1791}, - {1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 665: 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768}, - {1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 665: 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762, 1762}, + {746: 951}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 476: 3427, 664: 3426, 2785, 2786, 2784, 928: 3429, 1171: 3430, 1359: 3428}, + {958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 477: 958, 958, 958, 958, 958, 483: 958, 958, 958, 958, 958, 958, 958, 958, 492: 958, 958, 958, 496: 958, 958, 499: 958, 958, 958, 958, 958, 958, 958, 958, 509: 958, 958, 512: 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 534: 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 568: 958, 958, 597: 958}, + {1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 668: 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849, 1849}, + {1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 668: 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843, 1843}, // 835 - {1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 665: 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752, 1752}, - {1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 665: 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727, 1727}, - {1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 665: 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726}, - {1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 665: 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723, 1723}, - {1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 665: 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718, 1718}, + {1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 668: 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831, 1831}, + {1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 668: 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820, 1820}, + {1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 668: 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809, 1809}, + {1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 668: 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807, 1807}, + {1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 668: 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784}, // 840 - {1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 665: 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716, 1716}, - {1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 665: 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715, 1715}, - {1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 665: 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712, 1712}, - {1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 665: 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710, 1710}, - {1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 665: 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697, 1697}, + {1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 668: 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778, 1778}, + {1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 668: 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768}, + {1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 668: 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743, 1743}, + {1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 668: 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742, 1742}, + {1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 668: 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739, 1739}, // 845 - {1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 665: 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674, 1674}, - {1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 665: 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657, 1657}, - {1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 665: 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656, 1656}, - {1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 665: 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655, 1655}, - {1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 665: 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651, 1651}, + {1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 668: 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734, 1734}, + {1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 668: 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732, 1732}, + {1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 668: 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731, 1731}, + {1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 668: 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728, 1728}, + {1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 668: 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726, 1726}, // 850 - {1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 665: 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650, 1650}, - {1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 665: 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644, 1644}, - {1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 665: 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535, 1535}, - {1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 665: 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534, 1534}, - {1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 665: 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533, 1533}, + {1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 668: 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713}, + {1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 668: 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690, 1690}, + {1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 668: 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673, 1673}, + {1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 668: 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672, 1672}, + {1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 668: 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671, 1671}, // 855 - {1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 665: 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532, 1532}, - {1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 665: 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446, 1446}, - {1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 665: 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431, 1431}, - {1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 665: 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413, 1413}, - {1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 665: 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401, 1401}, + {1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 668: 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667, 1667}, + {1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 668: 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666, 1666}, + {1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 668: 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660, 1660}, + {1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 668: 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551, 1551}, + {1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 668: 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550, 1550}, // 860 - {1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 665: 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400, 1400}, - {1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 665: 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380, 1380}, - {1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 665: 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379, 1379}, - {986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 474: 986, 986, 986, 986, 986, 480: 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 493: 986, 986, 496: 986, 986, 986, 986, 986, 986, 986, 986, 506: 986, 986, 509: 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 531: 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 986, 565: 986, 986, 594: 986}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 983, 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 488: 983, 502: 983, 524: 983, 527: 983, 983, 661: 3400, 2762, 2763, 2761, 923: 3407, 1264: 3406, 1351: 3405}, + {1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 668: 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549, 1549}, + {1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 668: 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548, 1548}, + {1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 668: 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460, 1460}, + {1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 668: 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445, 1445}, + {1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 668: 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427, 1427}, // 865 - {957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 474: 957, 957, 957, 957, 957, 480: 957, 957, 957, 957, 957, 957, 957, 957, 489: 957, 957, 957, 493: 957, 957, 496: 957, 957, 957, 957, 957, 957, 957, 957, 506: 957, 957, 509: 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 531: 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 957, 565: 957, 957, 594: 957}, - {956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 474: 956, 956, 956, 956, 956, 480: 956, 956, 956, 956, 956, 956, 956, 956, 489: 956, 956, 956, 493: 956, 956, 496: 956, 956, 956, 956, 956, 956, 956, 956, 506: 956, 956, 509: 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 531: 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 956, 565: 956, 956, 594: 956}, - {955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 474: 955, 955, 955, 955, 955, 480: 955, 955, 955, 955, 955, 955, 955, 955, 489: 955, 955, 955, 493: 955, 955, 496: 955, 955, 955, 955, 955, 955, 955, 955, 506: 955, 955, 509: 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 531: 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 955, 565: 955, 955, 594: 955}, - {49: 3485}, - {49: 981, 488: 3409, 502: 981, 524: 981, 527: 981, 981, 1268: 3408}, + {1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 668: 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415, 1415}, + {1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 668: 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414, 1414}, + {1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 668: 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394, 1394}, + {1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 668: 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393, 1393}, + {1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 477: 1000, 1000, 1000, 1000, 1000, 483: 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 496: 1000, 1000, 499: 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 509: 1000, 1000, 512: 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 534: 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 568: 1000, 1000, 597: 1000}, // 870 - {49: 982, 488: 982, 502: 982, 524: 982, 527: 982, 982}, - {49: 979, 502: 3415, 524: 979, 527: 979, 979, 1271: 3414}, - {660: 3410}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 2840, 2788, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 2869, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 2874, 2801, 2766, 2783, 2948, 3031, 3020, 2818, 2830, 2941, 2942, 2937, 2895, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 2876, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 2760, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 2880, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 2799, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 2866, 2865, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 2936, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 2824, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 2751, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 2882, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 2752, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3144, 2878, 3145, 3146, 2777, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3159, 3160, 3211, 3210, 3057, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 2918, 2935, 3058, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3177, 3178, 3179, 2931, 3130, 3189, 3190, 3201, 3185, 3186, 3187, 3220, 2877, 473: 3260, 475: 3239, 3258, 2755, 479: 3268, 482: 3272, 3276, 485: 3257, 3256, 3295, 492: 3230, 495: 3269, 504: 3275, 3293, 508: 3234, 530: 3264, 564: 3271, 567: 3294, 2753, 570: 3277, 3229, 3231, 3233, 3232, 3261, 3237, 3251, 3242, 3263, 3238, 582: 3270, 3262, 3267, 3273, 3283, 3336, 3284, 3285, 592: 3236, 3314, 595: 3254, 3255, 3309, 3310, 3311, 3312, 3313, 3265, 3291, 3296, 3306, 3307, 3300, 3315, 3316, 3317, 3301, 3319, 3320, 3302, 3318, 3297, 3305, 3303, 3289, 3321, 3322, 3266, 3326, 3278, 3279, 3282, 3325, 3331, 3330, 3332, 3329, 3333, 3328, 3327, 3324, 3274, 3323, 3281, 3280, 3286, 3287, 648: 2756, 661: 3244, 2762, 2763, 2761, 709: 3259, 3335, 3245, 3250, 3235, 3308, 3248, 3246, 3247, 3288, 3299, 3298, 3292, 3290, 3304, 3243, 3253, 3334, 3252, 3249, 2759, 2758, 2757, 2754, 871: 3241, 900: 3411}, - {9: 3412, 49: 980, 502: 980, 524: 980, 527: 980, 980}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 997, 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 491: 997, 505: 997, 527: 997, 530: 997, 997, 664: 3426, 2785, 2786, 2784, 928: 3433, 1272: 3432, 1360: 3431}, + {971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 477: 971, 971, 971, 971, 971, 483: 971, 971, 971, 971, 971, 971, 971, 971, 492: 971, 971, 971, 496: 971, 971, 499: 971, 971, 971, 971, 971, 971, 971, 971, 509: 971, 971, 512: 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 534: 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 971, 568: 971, 971, 597: 971}, + {970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 477: 970, 970, 970, 970, 970, 483: 970, 970, 970, 970, 970, 970, 970, 970, 492: 970, 970, 970, 496: 970, 970, 499: 970, 970, 970, 970, 970, 970, 970, 970, 509: 970, 970, 512: 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 534: 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 970, 568: 970, 970, 597: 970}, + {969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 477: 969, 969, 969, 969, 969, 483: 969, 969, 969, 969, 969, 969, 969, 969, 492: 969, 969, 969, 496: 969, 969, 499: 969, 969, 969, 969, 969, 969, 969, 969, 509: 969, 969, 512: 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 534: 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 969, 568: 969, 969, 597: 969}, + {50: 3511}, // 875 - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 2840, 2788, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 2869, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 2874, 2801, 2766, 2783, 2948, 3031, 3020, 2818, 2830, 2941, 2942, 2937, 2895, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 2876, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 2760, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 2880, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 2799, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 2866, 2865, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 2936, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 2824, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 2751, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 2882, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 2752, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3144, 2878, 3145, 3146, 2777, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3159, 3160, 3211, 3210, 3057, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 2918, 2935, 3058, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3177, 3178, 3179, 2931, 3130, 3189, 3190, 3201, 3185, 3186, 3187, 3220, 2877, 473: 3260, 475: 3239, 3258, 2755, 479: 3268, 482: 3272, 3276, 485: 3257, 3256, 3295, 492: 3230, 495: 3269, 504: 3275, 3293, 508: 3234, 530: 3264, 564: 3271, 567: 3294, 2753, 570: 3277, 3229, 3231, 3233, 3232, 3261, 3237, 3251, 3242, 3263, 3238, 582: 3270, 3262, 3267, 3273, 3283, 3336, 3284, 3285, 592: 3236, 3314, 595: 3254, 3255, 3309, 3310, 3311, 3312, 3313, 3265, 3291, 3296, 3306, 3307, 3300, 3315, 3316, 3317, 3301, 3319, 3320, 3302, 3318, 3297, 3305, 3303, 3289, 3321, 3322, 3266, 3326, 3278, 3279, 3282, 3325, 3331, 3330, 3332, 3329, 3333, 3328, 3327, 3324, 3274, 3323, 3281, 3280, 3286, 3287, 648: 2756, 661: 3244, 2762, 2763, 2761, 709: 3259, 3335, 3245, 3250, 3235, 3308, 3248, 3246, 3247, 3288, 3299, 3298, 3292, 3290, 3304, 3243, 3253, 3334, 3252, 3249, 2759, 2758, 2757, 2754, 871: 3413}, - {1305, 1305, 9: 1305, 49: 1305, 127: 1305, 472: 1305, 474: 1305, 480: 1305, 1305, 490: 1305, 1305, 493: 1305, 1305, 496: 1305, 1305, 501: 1305, 1305, 514: 1305, 516: 1305, 524: 1305, 527: 1305, 1305}, - {49: 977, 524: 3420, 527: 3421, 3422, 1270: 3418, 1349: 3419}, - {660: 3416}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 2840, 2788, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 2869, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 2874, 2801, 2766, 2783, 2948, 3031, 3020, 2818, 2830, 2941, 2942, 2937, 2895, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 2876, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 2760, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 2880, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 2799, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 2866, 2865, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 2936, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 2824, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 2751, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 2882, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 2752, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3144, 2878, 3145, 3146, 2777, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3159, 3160, 3211, 3210, 3057, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 2918, 2935, 3058, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3177, 3178, 3179, 2931, 3130, 3189, 3190, 3201, 3185, 3186, 3187, 3220, 2877, 473: 3260, 475: 3239, 3258, 2755, 479: 3268, 482: 3272, 3276, 485: 3257, 3256, 3295, 492: 3230, 495: 3269, 504: 3275, 3293, 508: 3234, 530: 3264, 564: 3271, 567: 3294, 2753, 570: 3277, 3229, 3231, 3233, 3232, 3261, 3237, 3251, 3242, 3263, 3238, 582: 3270, 3262, 3267, 3273, 3283, 3336, 3284, 3285, 592: 3236, 3314, 595: 3254, 3255, 3309, 3310, 3311, 3312, 3313, 3265, 3291, 3296, 3306, 3307, 3300, 3315, 3316, 3317, 3301, 3319, 3320, 3302, 3318, 3297, 3305, 3303, 3289, 3321, 3322, 3266, 3326, 3278, 3279, 3282, 3325, 3331, 3330, 3332, 3329, 3333, 3328, 3327, 3324, 3274, 3323, 3281, 3280, 3286, 3287, 648: 2756, 661: 3244, 2762, 2763, 2761, 709: 3259, 3335, 3245, 3250, 3235, 3308, 3248, 3246, 3247, 3288, 3299, 3298, 3292, 3290, 3304, 3243, 3253, 3334, 3252, 3249, 2759, 2758, 2757, 2754, 871: 3241, 900: 3417}, + {50: 995, 491: 3435, 505: 995, 527: 995, 530: 995, 995, 1276: 3434}, + {50: 996, 491: 996, 505: 996, 527: 996, 530: 996, 996}, + {50: 993, 505: 3441, 527: 993, 530: 993, 993, 1279: 3440}, + {663: 3436}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 2864, 2812, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 2893, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 2898, 2825, 2789, 2807, 2972, 3055, 3044, 2842, 2854, 2965, 2966, 2961, 2919, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 2900, 2885, 2881, 2973, 2997, 2783, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 2904, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 2823, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 2889, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 2890, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 2960, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 2848, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 2774, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 2906, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 2775, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3170, 2902, 3171, 3172, 2801, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3185, 3186, 3237, 3236, 3081, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 2942, 2959, 3082, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3203, 3204, 3205, 2955, 3156, 3215, 3216, 3227, 3211, 3212, 3213, 3246, 2901, 476: 3286, 478: 3265, 3284, 2778, 482: 3294, 485: 3298, 3302, 488: 3283, 3282, 3321, 495: 3256, 498: 3295, 507: 3301, 3319, 511: 3260, 533: 3290, 567: 3297, 570: 3320, 2776, 573: 3303, 3255, 3257, 3259, 3258, 3287, 3263, 3277, 3268, 3289, 3264, 585: 3296, 3288, 3293, 3299, 3309, 3362, 3310, 3311, 595: 3262, 3340, 598: 3280, 3281, 3335, 3336, 3337, 3338, 3339, 3291, 3317, 3322, 3332, 3333, 3326, 3341, 3342, 3343, 3327, 3345, 3346, 3328, 3344, 3323, 3331, 3329, 3315, 3347, 3348, 3292, 3352, 3304, 3305, 3308, 3351, 3357, 3356, 3358, 3355, 3359, 3354, 3353, 3350, 3300, 3349, 3307, 3306, 3312, 3313, 651: 2779, 664: 3270, 2785, 2786, 2784, 713: 3285, 3361, 3271, 3276, 3261, 3334, 3274, 3272, 3273, 3314, 3325, 3324, 3318, 3316, 3330, 3269, 3279, 3360, 3278, 3275, 2782, 2781, 2780, 2777, 875: 3267, 905: 3437}, // 880 - {9: 3412, 49: 978, 524: 978, 527: 978, 978}, - {49: 984}, - {148: 3433, 169: 3429, 508: 3423, 563: 3434, 573: 3425, 3424, 577: 3431, 3432, 820: 3430, 979: 3427, 1347: 3428, 3426}, - {148: 975, 169: 975, 508: 975, 563: 975, 573: 975, 975, 577: 975, 975}, - {148: 974, 169: 974, 508: 974, 563: 974, 573: 974, 974, 577: 974, 974}, + {9: 3438, 50: 994, 505: 994, 527: 994, 530: 994, 994}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 2864, 2812, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 2893, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 2898, 2825, 2789, 2807, 2972, 3055, 3044, 2842, 2854, 2965, 2966, 2961, 2919, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 2900, 2885, 2881, 2973, 2997, 2783, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 2904, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 2823, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 2889, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 2890, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 2960, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 2848, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 2774, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 2906, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 2775, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3170, 2902, 3171, 3172, 2801, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3185, 3186, 3237, 3236, 3081, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 2942, 2959, 3082, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3203, 3204, 3205, 2955, 3156, 3215, 3216, 3227, 3211, 3212, 3213, 3246, 2901, 476: 3286, 478: 3265, 3284, 2778, 482: 3294, 485: 3298, 3302, 488: 3283, 3282, 3321, 495: 3256, 498: 3295, 507: 3301, 3319, 511: 3260, 533: 3290, 567: 3297, 570: 3320, 2776, 573: 3303, 3255, 3257, 3259, 3258, 3287, 3263, 3277, 3268, 3289, 3264, 585: 3296, 3288, 3293, 3299, 3309, 3362, 3310, 3311, 595: 3262, 3340, 598: 3280, 3281, 3335, 3336, 3337, 3338, 3339, 3291, 3317, 3322, 3332, 3333, 3326, 3341, 3342, 3343, 3327, 3345, 3346, 3328, 3344, 3323, 3331, 3329, 3315, 3347, 3348, 3292, 3352, 3304, 3305, 3308, 3351, 3357, 3356, 3358, 3355, 3359, 3354, 3353, 3350, 3300, 3349, 3307, 3306, 3312, 3313, 651: 2779, 664: 3270, 2785, 2786, 2784, 713: 3285, 3361, 3271, 3276, 3261, 3334, 3274, 3272, 3273, 3314, 3325, 3324, 3318, 3316, 3330, 3269, 3279, 3360, 3278, 3275, 2782, 2781, 2780, 2777, 875: 3439}, + {1319, 1319, 9: 1319, 50: 1319, 128: 1319, 475: 1319, 477: 1319, 483: 1319, 1319, 493: 1319, 1319, 496: 1319, 1319, 499: 1319, 1319, 504: 1319, 1319, 517: 1319, 519: 1319, 527: 1319, 530: 1319, 1319}, + {50: 991, 527: 3446, 530: 3447, 3448, 1278: 3444, 1358: 3445}, + {663: 3442}, // 885 - {148: 973, 169: 973, 508: 973, 563: 973, 573: 973, 973, 577: 973, 973}, - {2222, 2222, 2222, 2222, 2222, 2222, 2222, 2222, 2222, 2222, 2222, 2222, 2222, 2222, 2222, 2222, 2222, 2222, 2222, 2222, 2222, 2222, 2222, 2222, 2222, 2222, 2222, 2222, 2222, 2222, 2222, 2222, 2222, 2222, 2222, 2222, 2222, 2222, 2222, 2222, 2222, 2222, 2222, 2222, 2222, 2222, 2222, 2222, 49: 2222, 132: 2222, 150: 2222, 472: 2222, 2222, 2222, 476: 2222, 2222, 2222, 2222, 2222, 484: 2222, 488: 2222, 2222, 492: 2222, 495: 2222, 503: 2222, 2222, 2222, 569: 2222, 581: 2222, 590: 2222, 2222, 642: 2222, 2222, 2222, 2222, 2222, 2222, 649: 2222}, - {2221, 2221, 2221, 2221, 2221, 2221, 2221, 2221, 2221, 2221, 2221, 2221, 2221, 2221, 2221, 2221, 2221, 2221, 2221, 2221, 2221, 2221, 2221, 2221, 2221, 2221, 2221, 2221, 2221, 2221, 2221, 2221, 2221, 2221, 2221, 2221, 2221, 2221, 2221, 2221, 2221, 2221, 2221, 2221, 2221, 2221, 2221, 2221, 49: 2221, 132: 2221, 150: 2221, 195: 2221, 472: 2221, 2221, 2221, 476: 2221, 2221, 2221, 2221, 2221, 484: 2221, 488: 2221, 2221, 492: 2221, 495: 2221, 503: 2221, 2221, 2221, 569: 2221, 581: 2221, 590: 2221, 2221, 642: 2221, 2221, 2221, 2221, 2221, 2221, 649: 2221}, - {2220, 2220, 2220, 2220, 2220, 2220, 2220, 2220, 2220, 2220, 2220, 2220, 2220, 2220, 2220, 2220, 2220, 2220, 2220, 2220, 2220, 2220, 2220, 2220, 2220, 2220, 2220, 2220, 2220, 2220, 2220, 2220, 2220, 2220, 2220, 2220, 2220, 2220, 2220, 2220, 2220, 2220, 2220, 2220, 2220, 2220, 2220, 2220, 49: 2220, 132: 2220, 150: 2220, 195: 2220, 472: 2220, 2220, 2220, 476: 2220, 2220, 2220, 2220, 2220, 484: 2220, 488: 2220, 2220, 492: 2220, 495: 2220, 503: 2220, 2220, 2220, 569: 2220, 581: 2220, 590: 2220, 2220, 642: 2220, 2220, 2220, 2220, 2220, 2220, 649: 2220}, - {49: 976}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 2864, 2812, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 2893, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 2898, 2825, 2789, 2807, 2972, 3055, 3044, 2842, 2854, 2965, 2966, 2961, 2919, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 2900, 2885, 2881, 2973, 2997, 2783, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 2904, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 2823, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 2889, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 2890, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 2960, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 2848, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 2774, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 2906, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 2775, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3170, 2902, 3171, 3172, 2801, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3185, 3186, 3237, 3236, 3081, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 2942, 2959, 3082, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3203, 3204, 3205, 2955, 3156, 3215, 3216, 3227, 3211, 3212, 3213, 3246, 2901, 476: 3286, 478: 3265, 3284, 2778, 482: 3294, 485: 3298, 3302, 488: 3283, 3282, 3321, 495: 3256, 498: 3295, 507: 3301, 3319, 511: 3260, 533: 3290, 567: 3297, 570: 3320, 2776, 573: 3303, 3255, 3257, 3259, 3258, 3287, 3263, 3277, 3268, 3289, 3264, 585: 3296, 3288, 3293, 3299, 3309, 3362, 3310, 3311, 595: 3262, 3340, 598: 3280, 3281, 3335, 3336, 3337, 3338, 3339, 3291, 3317, 3322, 3332, 3333, 3326, 3341, 3342, 3343, 3327, 3345, 3346, 3328, 3344, 3323, 3331, 3329, 3315, 3347, 3348, 3292, 3352, 3304, 3305, 3308, 3351, 3357, 3356, 3358, 3355, 3359, 3354, 3353, 3350, 3300, 3349, 3307, 3306, 3312, 3313, 651: 2779, 664: 3270, 2785, 2786, 2784, 713: 3285, 3361, 3271, 3276, 3261, 3334, 3274, 3272, 3273, 3314, 3325, 3324, 3318, 3316, 3330, 3269, 3279, 3360, 3278, 3275, 2782, 2781, 2780, 2777, 875: 3267, 905: 3443}, + {9: 3438, 50: 992, 527: 992, 530: 992, 992}, + {50: 998}, + {151: 3459, 171: 3455, 511: 3449, 566: 3460, 576: 3451, 3450, 580: 3457, 3458, 824: 3456, 984: 3453, 1356: 3454, 3452}, + {151: 989, 171: 989, 511: 989, 566: 989, 576: 989, 989, 580: 989, 989}, // 890 - {49: 972}, - {49: 971}, - {132: 3480}, - {132: 3478}, - {132: 3476}, + {151: 988, 171: 988, 511: 988, 566: 988, 576: 988, 988, 580: 988, 988}, + {151: 987, 171: 987, 511: 987, 566: 987, 576: 987, 987, 580: 987, 987}, + {2239, 2239, 2239, 2239, 2239, 2239, 2239, 2239, 2239, 2239, 2239, 2239, 2239, 2239, 2239, 2239, 2239, 2239, 2239, 2239, 2239, 2239, 2239, 2239, 2239, 2239, 2239, 2239, 2239, 2239, 2239, 2239, 2239, 2239, 2239, 2239, 2239, 2239, 2239, 2239, 2239, 2239, 2239, 2239, 2239, 2239, 2239, 2239, 50: 2239, 136: 2239, 153: 2239, 475: 2239, 2239, 2239, 479: 2239, 2239, 2239, 2239, 2239, 487: 2239, 491: 2239, 2239, 495: 2239, 498: 2239, 506: 2239, 2239, 2239, 572: 2239, 584: 2239, 593: 2239, 2239, 645: 2239, 2239, 2239, 2239, 2239, 2239, 652: 2239}, + {2238, 2238, 2238, 2238, 2238, 2238, 2238, 2238, 2238, 2238, 2238, 2238, 2238, 2238, 2238, 2238, 2238, 2238, 2238, 2238, 2238, 2238, 2238, 2238, 2238, 2238, 2238, 2238, 2238, 2238, 2238, 2238, 2238, 2238, 2238, 2238, 2238, 2238, 2238, 2238, 2238, 2238, 2238, 2238, 2238, 2238, 2238, 2238, 50: 2238, 136: 2238, 153: 2238, 197: 2238, 475: 2238, 2238, 2238, 479: 2238, 2238, 2238, 2238, 2238, 487: 2238, 491: 2238, 2238, 495: 2238, 498: 2238, 506: 2238, 2238, 2238, 572: 2238, 584: 2238, 593: 2238, 2238, 645: 2238, 2238, 2238, 2238, 2238, 2238, 652: 2238}, + {2237, 2237, 2237, 2237, 2237, 2237, 2237, 2237, 2237, 2237, 2237, 2237, 2237, 2237, 2237, 2237, 2237, 2237, 2237, 2237, 2237, 2237, 2237, 2237, 2237, 2237, 2237, 2237, 2237, 2237, 2237, 2237, 2237, 2237, 2237, 2237, 2237, 2237, 2237, 2237, 2237, 2237, 2237, 2237, 2237, 2237, 2237, 2237, 50: 2237, 136: 2237, 153: 2237, 197: 2237, 475: 2237, 2237, 2237, 479: 2237, 2237, 2237, 2237, 2237, 487: 2237, 491: 2237, 2237, 495: 2237, 498: 2237, 506: 2237, 2237, 2237, 572: 2237, 584: 2237, 593: 2237, 2237, 645: 2237, 2237, 2237, 2237, 2237, 2237, 652: 2237}, // 895 - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 2840, 2788, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 2869, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 2874, 2801, 2766, 2783, 2948, 3031, 3020, 2818, 2830, 2941, 2942, 2937, 2895, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 2876, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 2760, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 2880, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 2799, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 2866, 2865, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 2936, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 2824, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 2751, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 2882, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 2752, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3144, 2878, 3145, 3146, 2777, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3159, 3160, 3211, 3210, 3057, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 2918, 2935, 3058, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3177, 3178, 3179, 2931, 3130, 3189, 3190, 3201, 3185, 3186, 3187, 3220, 2877, 473: 3260, 475: 3239, 3258, 2755, 479: 3268, 482: 3272, 3276, 485: 3257, 3256, 3295, 492: 3230, 495: 3269, 504: 3275, 3293, 508: 3234, 530: 3264, 564: 3271, 567: 3294, 2753, 570: 3277, 3229, 3231, 3233, 3232, 3261, 3237, 3251, 3242, 3263, 3238, 582: 3270, 3262, 3267, 3273, 3283, 3336, 3284, 3285, 592: 3236, 3314, 595: 3254, 3255, 3309, 3310, 3311, 3312, 3313, 3265, 3291, 3296, 3306, 3307, 3300, 3315, 3316, 3317, 3301, 3319, 3320, 3302, 3318, 3297, 3305, 3303, 3289, 3321, 3322, 3266, 3326, 3278, 3279, 3282, 3325, 3331, 3330, 3332, 3329, 3333, 3328, 3327, 3324, 3274, 3323, 3281, 3280, 3286, 3287, 648: 2756, 661: 3244, 2762, 2763, 2761, 709: 3259, 3335, 3245, 3250, 3235, 3308, 3248, 3246, 3247, 3288, 3299, 3298, 3292, 3290, 3304, 3243, 3253, 3334, 3252, 3249, 2759, 2758, 2757, 3483}, - {575: 3482}, - {148: 3433, 169: 3435, 508: 3423, 573: 3425, 3424, 577: 3437, 3438, 820: 3436, 979: 3440, 1161: 3439}, - {132: 3480, 150: 3481}, - {132: 3478, 150: 3479}, + {50: 990}, + {50: 986}, + {50: 985}, + {136: 3506}, + {136: 3504}, // 900 - {132: 3476, 150: 3477}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 2840, 2788, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 2869, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 2874, 2801, 2766, 2783, 2948, 3031, 3020, 2818, 2830, 2941, 2942, 2937, 2895, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 2876, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 2760, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 2880, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 2799, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 2866, 2865, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 2936, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 2824, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 2751, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 2882, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 2752, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3144, 2878, 3145, 3146, 2777, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3159, 3160, 3211, 3210, 3057, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 2918, 2935, 3058, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3177, 3178, 3179, 2931, 3130, 3189, 3190, 3201, 3185, 3186, 3187, 3220, 2877, 473: 3260, 475: 3239, 3258, 2755, 479: 3268, 482: 3272, 3276, 485: 3257, 3256, 3295, 492: 3230, 495: 3269, 504: 3275, 3293, 508: 3234, 530: 3264, 564: 3271, 567: 3294, 2753, 570: 3277, 3229, 3231, 3233, 3232, 3261, 3237, 3251, 3242, 3263, 3238, 582: 3270, 3262, 3267, 3273, 3283, 3336, 3284, 3285, 592: 3236, 3314, 595: 3254, 3255, 3309, 3310, 3311, 3312, 3313, 3265, 3291, 3296, 3306, 3307, 3300, 3315, 3316, 3317, 3301, 3319, 3320, 3302, 3318, 3297, 3305, 3303, 3289, 3321, 3322, 3266, 3326, 3278, 3279, 3282, 3325, 3331, 3330, 3332, 3329, 3333, 3328, 3327, 3324, 3274, 3323, 3281, 3280, 3286, 3287, 648: 2756, 661: 3244, 2762, 2763, 2761, 709: 3259, 3335, 3245, 3250, 3235, 3308, 3248, 3246, 3247, 3288, 3299, 3298, 3292, 3290, 3304, 3243, 3253, 3334, 3252, 3249, 2759, 2758, 2757, 3443}, - {507: 3441}, - {49: 964, 507: 964}, - {148: 3433, 169: 3435, 508: 3423, 573: 3425, 3424, 577: 3437, 3438, 820: 3436, 979: 3440, 1161: 3442}, + {136: 3502}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 2864, 2812, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 2893, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 2898, 2825, 2789, 2807, 2972, 3055, 3044, 2842, 2854, 2965, 2966, 2961, 2919, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 2900, 2885, 2881, 2973, 2997, 2783, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 2904, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 2823, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 2889, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 2890, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 2960, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 2848, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 2774, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 2906, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 2775, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3170, 2902, 3171, 3172, 2801, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3185, 3186, 3237, 3236, 3081, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 2942, 2959, 3082, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3203, 3204, 3205, 2955, 3156, 3215, 3216, 3227, 3211, 3212, 3213, 3246, 2901, 476: 3286, 478: 3265, 3284, 2778, 482: 3294, 485: 3298, 3302, 488: 3283, 3282, 3321, 495: 3256, 498: 3295, 507: 3301, 3319, 511: 3260, 533: 3290, 567: 3297, 570: 3320, 2776, 573: 3303, 3255, 3257, 3259, 3258, 3287, 3263, 3277, 3268, 3289, 3264, 585: 3296, 3288, 3293, 3299, 3309, 3362, 3310, 3311, 595: 3262, 3340, 598: 3280, 3281, 3335, 3336, 3337, 3338, 3339, 3291, 3317, 3322, 3332, 3333, 3326, 3341, 3342, 3343, 3327, 3345, 3346, 3328, 3344, 3323, 3331, 3329, 3315, 3347, 3348, 3292, 3352, 3304, 3305, 3308, 3351, 3357, 3356, 3358, 3355, 3359, 3354, 3353, 3350, 3300, 3349, 3307, 3306, 3312, 3313, 651: 2779, 664: 3270, 2785, 2786, 2784, 713: 3285, 3361, 3271, 3276, 3261, 3334, 3274, 3272, 3273, 3314, 3325, 3324, 3318, 3316, 3330, 3269, 3279, 3360, 3278, 3275, 2782, 2781, 2780, 3509}, + {578: 3508}, + {151: 3459, 171: 3461, 511: 3449, 576: 3451, 3450, 580: 3463, 3464, 824: 3462, 984: 3466, 1170: 3465}, + {136: 3506, 153: 3507}, // 905 - {49: 965}, - {104: 3464, 3460, 108: 3457, 3472, 112: 3459, 3456, 3458, 3462, 3463, 3468, 3467, 3466, 3470, 3471, 3465, 3469, 3461, 507: 3345, 509: 3343, 3344, 3342, 3340, 532: 3454, 3451, 3453, 3452, 3448, 3450, 3449, 3446, 3447, 3445, 3455, 734: 3341, 3339, 796: 3444, 815: 3473}, - {1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 480: 1109, 1109, 1109, 1109, 485: 1109, 1109, 1109, 489: 1109, 1109, 1109, 493: 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 506: 1109, 1109, 509: 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 531: 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 565: 1109, 1109, 569: 1109, 646: 1109}, - {1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 480: 1108, 1108, 1108, 1108, 485: 1108, 1108, 1108, 489: 1108, 1108, 1108, 493: 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 506: 1108, 1108, 509: 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 531: 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 565: 1108, 1108, 569: 1108, 646: 1108}, - {1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 480: 1107, 1107, 1107, 1107, 485: 1107, 1107, 1107, 489: 1107, 1107, 1107, 493: 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 506: 1107, 1107, 509: 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 531: 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 565: 1107, 1107, 569: 1107, 646: 1107}, + {136: 3504, 153: 3505}, + {136: 3502, 153: 3503}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 2864, 2812, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 2893, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 2898, 2825, 2789, 2807, 2972, 3055, 3044, 2842, 2854, 2965, 2966, 2961, 2919, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 2900, 2885, 2881, 2973, 2997, 2783, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 2904, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 2823, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 2889, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 2890, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 2960, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 2848, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 2774, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 2906, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 2775, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3170, 2902, 3171, 3172, 2801, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3185, 3186, 3237, 3236, 3081, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 2942, 2959, 3082, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3203, 3204, 3205, 2955, 3156, 3215, 3216, 3227, 3211, 3212, 3213, 3246, 2901, 476: 3286, 478: 3265, 3284, 2778, 482: 3294, 485: 3298, 3302, 488: 3283, 3282, 3321, 495: 3256, 498: 3295, 507: 3301, 3319, 511: 3260, 533: 3290, 567: 3297, 570: 3320, 2776, 573: 3303, 3255, 3257, 3259, 3258, 3287, 3263, 3277, 3268, 3289, 3264, 585: 3296, 3288, 3293, 3299, 3309, 3362, 3310, 3311, 595: 3262, 3340, 598: 3280, 3281, 3335, 3336, 3337, 3338, 3339, 3291, 3317, 3322, 3332, 3333, 3326, 3341, 3342, 3343, 3327, 3345, 3346, 3328, 3344, 3323, 3331, 3329, 3315, 3347, 3348, 3292, 3352, 3304, 3305, 3308, 3351, 3357, 3356, 3358, 3355, 3359, 3354, 3353, 3350, 3300, 3349, 3307, 3306, 3312, 3313, 651: 2779, 664: 3270, 2785, 2786, 2784, 713: 3285, 3361, 3271, 3276, 3261, 3334, 3274, 3272, 3273, 3314, 3325, 3324, 3318, 3316, 3330, 3269, 3279, 3360, 3278, 3275, 2782, 2781, 2780, 3469}, + {510: 3467}, + {50: 978, 510: 978}, // 910 - {1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 480: 1106, 1106, 1106, 1106, 485: 1106, 1106, 1106, 489: 1106, 1106, 1106, 493: 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 506: 1106, 1106, 509: 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 531: 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 565: 1106, 1106, 569: 1106, 646: 1106}, - {1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 480: 1105, 1105, 1105, 1105, 485: 1105, 1105, 1105, 489: 1105, 1105, 1105, 493: 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 506: 1105, 1105, 509: 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 531: 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 565: 1105, 1105, 569: 1105, 646: 1105}, - {1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 480: 1104, 1104, 1104, 1104, 485: 1104, 1104, 1104, 489: 1104, 1104, 1104, 493: 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 506: 1104, 1104, 509: 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 531: 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 565: 1104, 1104, 569: 1104, 646: 1104}, - {1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 480: 1103, 1103, 1103, 1103, 485: 1103, 1103, 1103, 489: 1103, 1103, 1103, 493: 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 506: 1103, 1103, 509: 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 531: 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 565: 1103, 1103, 569: 1103, 646: 1103}, - {1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 480: 1102, 1102, 1102, 1102, 485: 1102, 1102, 1102, 489: 1102, 1102, 1102, 493: 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 506: 1102, 1102, 509: 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 531: 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 565: 1102, 1102, 569: 1102, 646: 1102}, + {151: 3459, 171: 3461, 511: 3449, 576: 3451, 3450, 580: 3463, 3464, 824: 3462, 984: 3466, 1170: 3468}, + {50: 979}, + {105: 3490, 3486, 109: 3483, 3498, 113: 3485, 3482, 3484, 3488, 3489, 3494, 3493, 3492, 3496, 3497, 3491, 3495, 3487, 510: 3371, 512: 3369, 3370, 3368, 3366, 535: 3480, 3477, 3479, 3478, 3474, 3476, 3475, 3472, 3473, 3471, 3481, 738: 3367, 3365, 800: 3470, 820: 3499}, + {1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 483: 1123, 1123, 1123, 1123, 488: 1123, 1123, 1123, 492: 1123, 1123, 1123, 496: 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 509: 1123, 1123, 512: 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 534: 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 568: 1123, 1123, 572: 1123, 649: 1123}, + {1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 483: 1122, 1122, 1122, 1122, 488: 1122, 1122, 1122, 492: 1122, 1122, 1122, 496: 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 509: 1122, 1122, 512: 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 534: 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 568: 1122, 1122, 572: 1122, 649: 1122}, // 915 - {1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 480: 1101, 1101, 1101, 1101, 485: 1101, 1101, 1101, 489: 1101, 1101, 1101, 493: 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 506: 1101, 1101, 509: 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 531: 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 565: 1101, 1101, 569: 1101, 646: 1101}, - {1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 480: 1100, 1100, 1100, 1100, 485: 1100, 1100, 1100, 489: 1100, 1100, 1100, 493: 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 506: 1100, 1100, 509: 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 531: 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 565: 1100, 1100, 569: 1100, 646: 1100}, - {1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 480: 1099, 1099, 1099, 1099, 485: 1099, 1099, 1099, 489: 1099, 1099, 1099, 493: 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 506: 1099, 1099, 509: 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 531: 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 565: 1099, 1099, 569: 1099, 646: 1099}, - {1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 480: 1098, 1098, 1098, 1098, 485: 1098, 1098, 1098, 489: 1098, 1098, 1098, 493: 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 506: 1098, 1098, 509: 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 531: 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 565: 1098, 1098, 569: 1098, 646: 1098}, - {1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 480: 1097, 1097, 1097, 1097, 485: 1097, 1097, 1097, 489: 1097, 1097, 1097, 493: 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 506: 1097, 1097, 509: 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 531: 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 565: 1097, 1097, 569: 1097, 646: 1097}, + {1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 483: 1121, 1121, 1121, 1121, 488: 1121, 1121, 1121, 492: 1121, 1121, 1121, 496: 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 509: 1121, 1121, 512: 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 534: 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 568: 1121, 1121, 572: 1121, 649: 1121}, + {1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 483: 1120, 1120, 1120, 1120, 488: 1120, 1120, 1120, 492: 1120, 1120, 1120, 496: 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 509: 1120, 1120, 512: 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 534: 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 568: 1120, 1120, 572: 1120, 649: 1120}, + {1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 483: 1119, 1119, 1119, 1119, 488: 1119, 1119, 1119, 492: 1119, 1119, 1119, 496: 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 509: 1119, 1119, 512: 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 534: 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 568: 1119, 1119, 572: 1119, 649: 1119}, + {1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 483: 1118, 1118, 1118, 1118, 488: 1118, 1118, 1118, 492: 1118, 1118, 1118, 496: 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 509: 1118, 1118, 512: 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 534: 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 568: 1118, 1118, 572: 1118, 649: 1118}, + {1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 483: 1117, 1117, 1117, 1117, 488: 1117, 1117, 1117, 492: 1117, 1117, 1117, 496: 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 509: 1117, 1117, 512: 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 534: 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 568: 1117, 1117, 572: 1117, 649: 1117}, // 920 - {1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 480: 1096, 1096, 1096, 1096, 485: 1096, 1096, 1096, 489: 1096, 1096, 1096, 493: 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 506: 1096, 1096, 509: 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 531: 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 565: 1096, 1096, 569: 1096, 646: 1096}, - {1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 480: 1095, 1095, 1095, 1095, 485: 1095, 1095, 1095, 489: 1095, 1095, 1095, 493: 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 506: 1095, 1095, 509: 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 531: 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 565: 1095, 1095, 569: 1095, 646: 1095}, - {1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 480: 1094, 1094, 1094, 1094, 485: 1094, 1094, 1094, 489: 1094, 1094, 1094, 493: 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 506: 1094, 1094, 509: 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 531: 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 1094, 565: 1094, 1094, 569: 1094, 646: 1094}, - {1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 480: 1093, 1093, 1093, 1093, 485: 1093, 1093, 1093, 489: 1093, 1093, 1093, 493: 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 506: 1093, 1093, 509: 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 531: 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 1093, 565: 1093, 1093, 569: 1093, 646: 1093}, - {1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 480: 1092, 1092, 1092, 1092, 485: 1092, 1092, 1092, 489: 1092, 1092, 1092, 493: 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 506: 1092, 1092, 509: 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 531: 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 1092, 565: 1092, 1092, 569: 1092, 646: 1092}, + {1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 483: 1116, 1116, 1116, 1116, 488: 1116, 1116, 1116, 492: 1116, 1116, 1116, 496: 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 509: 1116, 1116, 512: 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 534: 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 1116, 568: 1116, 1116, 572: 1116, 649: 1116}, + {1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 483: 1115, 1115, 1115, 1115, 488: 1115, 1115, 1115, 492: 1115, 1115, 1115, 496: 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 509: 1115, 1115, 512: 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 534: 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 1115, 568: 1115, 1115, 572: 1115, 649: 1115}, + {1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 483: 1114, 1114, 1114, 1114, 488: 1114, 1114, 1114, 492: 1114, 1114, 1114, 496: 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 509: 1114, 1114, 512: 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 534: 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 568: 1114, 1114, 572: 1114, 649: 1114}, + {1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 483: 1113, 1113, 1113, 1113, 488: 1113, 1113, 1113, 492: 1113, 1113, 1113, 496: 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 509: 1113, 1113, 512: 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 534: 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 568: 1113, 1113, 572: 1113, 649: 1113}, + {1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 483: 1112, 1112, 1112, 1112, 488: 1112, 1112, 1112, 492: 1112, 1112, 1112, 496: 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 509: 1112, 1112, 512: 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 534: 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 1112, 568: 1112, 1112, 572: 1112, 649: 1112}, // 925 - {1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 480: 1091, 1091, 1091, 1091, 485: 1091, 1091, 1091, 489: 1091, 1091, 1091, 493: 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 506: 1091, 1091, 509: 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 531: 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 1091, 565: 1091, 1091, 569: 1091, 646: 1091}, - {1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 480: 1090, 1090, 1090, 1090, 485: 1090, 1090, 1090, 489: 1090, 1090, 1090, 493: 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 506: 1090, 1090, 509: 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 531: 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 1090, 565: 1090, 1090, 569: 1090, 646: 1090}, - {1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 480: 1089, 1089, 1089, 1089, 485: 1089, 1089, 1089, 489: 1089, 1089, 1089, 493: 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 506: 1089, 1089, 509: 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 531: 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 1089, 565: 1089, 1089, 569: 1089, 646: 1089}, - {1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 480: 1088, 1088, 1088, 1088, 485: 1088, 1088, 1088, 489: 1088, 1088, 1088, 493: 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 506: 1088, 1088, 509: 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 531: 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 1088, 565: 1088, 1088, 569: 1088, 646: 1088}, - {1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 480: 1087, 1087, 1087, 1087, 485: 1087, 1087, 1087, 489: 1087, 1087, 1087, 493: 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 506: 1087, 1087, 509: 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 531: 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 1087, 565: 1087, 1087, 569: 1087, 646: 1087}, + {1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 483: 1111, 1111, 1111, 1111, 488: 1111, 1111, 1111, 492: 1111, 1111, 1111, 496: 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 509: 1111, 1111, 512: 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 534: 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 568: 1111, 1111, 572: 1111, 649: 1111}, + {1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 483: 1110, 1110, 1110, 1110, 488: 1110, 1110, 1110, 492: 1110, 1110, 1110, 496: 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 509: 1110, 1110, 512: 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 534: 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 568: 1110, 1110, 572: 1110, 649: 1110}, + {1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 483: 1109, 1109, 1109, 1109, 488: 1109, 1109, 1109, 492: 1109, 1109, 1109, 496: 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 509: 1109, 1109, 512: 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 534: 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 1109, 568: 1109, 1109, 572: 1109, 649: 1109}, + {1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 483: 1108, 1108, 1108, 1108, 488: 1108, 1108, 1108, 492: 1108, 1108, 1108, 496: 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 509: 1108, 1108, 512: 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 534: 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 1108, 568: 1108, 1108, 572: 1108, 649: 1108}, + {1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 483: 1107, 1107, 1107, 1107, 488: 1107, 1107, 1107, 492: 1107, 1107, 1107, 496: 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 509: 1107, 1107, 512: 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 534: 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 1107, 568: 1107, 1107, 572: 1107, 649: 1107}, // 930 - {1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 480: 1086, 1086, 1086, 1086, 485: 1086, 1086, 1086, 489: 1086, 1086, 1086, 493: 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 506: 1086, 1086, 509: 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 531: 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 1086, 565: 1086, 1086, 569: 1086, 646: 1086}, - {1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 480: 1085, 1085, 1085, 1085, 485: 1085, 1085, 1085, 489: 1085, 1085, 1085, 493: 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 506: 1085, 1085, 509: 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 531: 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 1085, 565: 1085, 1085, 569: 1085, 646: 1085}, - {1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 480: 1084, 1084, 1084, 1084, 485: 1084, 1084, 1084, 489: 1084, 1084, 1084, 493: 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 506: 1084, 1084, 509: 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 531: 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 1084, 565: 1084, 1084, 569: 1084, 646: 1084}, - {1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 480: 1083, 1083, 1083, 1083, 485: 1083, 1083, 1083, 489: 1083, 1083, 1083, 493: 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 506: 1083, 1083, 509: 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 531: 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 1083, 565: 1083, 1083, 569: 1083, 646: 1083}, - {1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 480: 1082, 1082, 1082, 1082, 485: 1082, 1082, 1082, 489: 1082, 1082, 1082, 493: 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 506: 1082, 1082, 509: 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 531: 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 1082, 565: 1082, 1082, 569: 1082, 646: 1082}, + {1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 483: 1106, 1106, 1106, 1106, 488: 1106, 1106, 1106, 492: 1106, 1106, 1106, 496: 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 509: 1106, 1106, 512: 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 534: 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 1106, 568: 1106, 1106, 572: 1106, 649: 1106}, + {1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 483: 1105, 1105, 1105, 1105, 488: 1105, 1105, 1105, 492: 1105, 1105, 1105, 496: 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 509: 1105, 1105, 512: 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 534: 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 1105, 568: 1105, 1105, 572: 1105, 649: 1105}, + {1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 483: 1104, 1104, 1104, 1104, 488: 1104, 1104, 1104, 492: 1104, 1104, 1104, 496: 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 509: 1104, 1104, 512: 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 534: 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 1104, 568: 1104, 1104, 572: 1104, 649: 1104}, + {1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 483: 1103, 1103, 1103, 1103, 488: 1103, 1103, 1103, 492: 1103, 1103, 1103, 496: 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 509: 1103, 1103, 512: 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 534: 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 1103, 568: 1103, 1103, 572: 1103, 649: 1103}, + {1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 483: 1102, 1102, 1102, 1102, 488: 1102, 1102, 1102, 492: 1102, 1102, 1102, 496: 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 509: 1102, 1102, 512: 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 534: 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 1102, 568: 1102, 1102, 572: 1102, 649: 1102}, // 935 - {1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 480: 1081, 1081, 1081, 1081, 485: 1081, 1081, 1081, 489: 1081, 1081, 1081, 493: 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 506: 1081, 1081, 509: 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 531: 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 1081, 565: 1081, 1081, 569: 1081, 646: 1081}, - {132: 3474, 150: 3475}, - {49: 967, 507: 967}, - {49: 960, 507: 960}, - {49: 968, 507: 968}, + {1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 483: 1101, 1101, 1101, 1101, 488: 1101, 1101, 1101, 492: 1101, 1101, 1101, 496: 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 509: 1101, 1101, 512: 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 534: 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 1101, 568: 1101, 1101, 572: 1101, 649: 1101}, + {1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 483: 1100, 1100, 1100, 1100, 488: 1100, 1100, 1100, 492: 1100, 1100, 1100, 496: 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 509: 1100, 1100, 512: 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 534: 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 1100, 568: 1100, 1100, 572: 1100, 649: 1100}, + {1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 483: 1099, 1099, 1099, 1099, 488: 1099, 1099, 1099, 492: 1099, 1099, 1099, 496: 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 509: 1099, 1099, 512: 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 534: 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 1099, 568: 1099, 1099, 572: 1099, 649: 1099}, + {1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 483: 1098, 1098, 1098, 1098, 488: 1098, 1098, 1098, 492: 1098, 1098, 1098, 496: 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 509: 1098, 1098, 512: 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 534: 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 1098, 568: 1098, 1098, 572: 1098, 649: 1098}, + {1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 483: 1097, 1097, 1097, 1097, 488: 1097, 1097, 1097, 492: 1097, 1097, 1097, 496: 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 509: 1097, 1097, 512: 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 534: 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 1097, 568: 1097, 1097, 572: 1097, 649: 1097}, // 940 - {49: 961, 507: 961}, - {49: 969, 507: 969}, - {49: 962, 507: 962}, - {49: 970, 507: 970}, - {49: 963, 507: 963}, + {1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 483: 1096, 1096, 1096, 1096, 488: 1096, 1096, 1096, 492: 1096, 1096, 1096, 496: 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 509: 1096, 1096, 512: 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 534: 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 1096, 568: 1096, 1096, 572: 1096, 649: 1096}, + {1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 483: 1095, 1095, 1095, 1095, 488: 1095, 1095, 1095, 492: 1095, 1095, 1095, 496: 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 509: 1095, 1095, 512: 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 534: 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 1095, 568: 1095, 1095, 572: 1095, 649: 1095}, + {136: 3500, 153: 3501}, + {50: 981, 510: 981}, + {50: 974, 510: 974}, // 945 - {49: 966, 507: 966}, - {104: 3464, 3460, 108: 3457, 3472, 112: 3459, 3456, 3458, 3462, 3463, 3468, 3467, 3466, 3470, 3471, 3465, 3469, 3461, 507: 3345, 509: 3343, 3344, 3342, 3340, 532: 3454, 3451, 3453, 3452, 3448, 3450, 3449, 3446, 3447, 3445, 3455, 734: 3341, 3339, 796: 3444, 815: 3484}, - {132: 3474}, - {985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 474: 985, 985, 985, 985, 985, 480: 985, 985, 985, 985, 985, 985, 985, 985, 489: 985, 985, 985, 493: 985, 985, 496: 985, 985, 985, 985, 985, 985, 985, 985, 506: 985, 985, 509: 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 531: 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 985, 565: 985, 985, 594: 985}, - {1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 474: 1262, 1262, 1262, 1262, 1262, 480: 1262, 1262, 1262, 1262, 3350, 1262, 1262, 1262, 489: 1262, 1262, 1262, 493: 1262, 1262, 496: 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 506: 1262, 1262, 509: 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 531: 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 565: 1262, 1262, 594: 1262}, + {50: 982, 510: 982}, + {50: 975, 510: 975}, + {50: 983, 510: 983}, + {50: 976, 510: 976}, + {50: 984, 510: 984}, // 950 - {1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 474: 1272, 1272, 1272, 1272, 1272, 480: 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 489: 1272, 1272, 1272, 493: 1272, 1272, 496: 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 506: 1272, 1272, 509: 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 531: 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 565: 1272, 1272, 594: 1272}, - {755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 509: 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 531: 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 755, 565: 755, 755, 569: 755, 581: 755, 590: 755, 755, 594: 755, 642: 755, 755, 755, 755, 755, 755, 649: 755}, - {754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 509: 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 531: 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 754, 565: 754, 754, 569: 754, 581: 754, 590: 754, 754, 594: 754, 642: 754, 754, 754, 754, 754, 754, 649: 754}, - {258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 509: 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 258, 565: 258, 258, 568: 258, 258, 581: 258, 590: 258, 258, 594: 258, 642: 258, 258, 258, 258, 258, 258, 649: 258, 258, 653: 258, 658: 258, 660: 258, 666: 258, 258, 258}, - {257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 509: 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 257, 565: 257, 257, 568: 257, 257, 581: 257, 590: 257, 257, 594: 257, 642: 257, 257, 257, 257, 257, 257, 649: 257, 257, 653: 257, 658: 257, 660: 257, 666: 257, 257, 257}, + {50: 977, 510: 977}, + {50: 980, 510: 980}, + {105: 3490, 3486, 109: 3483, 3498, 113: 3485, 3482, 3484, 3488, 3489, 3494, 3493, 3492, 3496, 3497, 3491, 3495, 3487, 510: 3371, 512: 3369, 3370, 3368, 3366, 535: 3480, 3477, 3479, 3478, 3474, 3476, 3475, 3472, 3473, 3471, 3481, 738: 3367, 3365, 800: 3470, 820: 3510}, + {136: 3500}, + {999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 477: 999, 999, 999, 999, 999, 483: 999, 999, 999, 999, 999, 999, 999, 999, 492: 999, 999, 999, 496: 999, 999, 499: 999, 999, 999, 999, 999, 999, 999, 999, 509: 999, 999, 512: 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 534: 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 999, 568: 999, 999, 597: 999}, // 955 - {1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 474: 1941, 1941, 478: 1941, 480: 1941, 1941, 1941, 1941, 489: 1941, 1941, 1941, 493: 1941, 1941, 496: 1941, 1941, 1941, 500: 1941, 1941, 1941, 1941, 506: 1941, 1941, 509: 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 519: 1941, 521: 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 531: 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 1941, 545: 1941, 1941, 734: 3341, 3339}, - {1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 474: 1942, 1942, 478: 1942, 480: 1942, 1942, 1942, 1942, 489: 1942, 1942, 1942, 493: 1942, 1942, 496: 1942, 1942, 1942, 500: 1942, 1942, 1942, 1942, 506: 1942, 3345, 509: 1942, 3344, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 519: 1942, 521: 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 531: 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 1942, 545: 1942, 1942, 734: 3341, 3339}, - {1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 474: 1943, 1943, 478: 1943, 480: 1943, 1943, 1943, 1943, 489: 1943, 1943, 1943, 493: 1943, 1943, 496: 1943, 1943, 1943, 500: 1943, 1943, 1943, 1943, 506: 1943, 3345, 509: 1943, 3344, 1943, 3340, 1943, 1943, 1943, 1943, 1943, 519: 1943, 521: 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 531: 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 1943, 545: 1943, 1943, 734: 3341, 3339}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 2840, 2788, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 2869, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 2874, 2801, 2766, 2783, 2948, 3031, 3020, 2818, 2830, 2941, 2942, 2937, 2895, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 2876, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 2760, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 2880, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 2799, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 2866, 2865, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 2936, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 2824, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 2751, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 2882, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 2752, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3144, 2878, 3145, 3146, 2777, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3159, 3160, 3211, 3210, 3057, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 2918, 2935, 3058, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3177, 3178, 3179, 2931, 3130, 3189, 3190, 3201, 3185, 3186, 3187, 3220, 2877, 473: 3260, 475: 3239, 3258, 2755, 479: 3268, 482: 3272, 3276, 485: 3257, 3256, 3295, 492: 3230, 495: 3269, 504: 3275, 3293, 508: 3234, 530: 3264, 564: 3271, 567: 3294, 2753, 570: 3277, 3229, 3231, 3233, 3232, 3261, 3237, 3251, 3242, 3263, 3238, 582: 3270, 3262, 3267, 3273, 3283, 3336, 3284, 3285, 592: 3236, 3314, 595: 3254, 3255, 3309, 3310, 3311, 3312, 3313, 3265, 3291, 3296, 3306, 3307, 3300, 3315, 3316, 3317, 3301, 3319, 3320, 3302, 3318, 3297, 3305, 3303, 3289, 3321, 3322, 3266, 3326, 3278, 3279, 3282, 3325, 3331, 3330, 3332, 3329, 3333, 3328, 3327, 3324, 3274, 3323, 3281, 3280, 3286, 3287, 648: 2756, 661: 3244, 2762, 2763, 2761, 709: 3259, 3335, 3245, 3250, 3235, 3308, 3248, 3246, 3247, 3288, 3299, 3298, 3292, 3290, 3304, 3243, 3253, 3334, 3252, 3249, 2759, 2758, 2757, 3496}, - {49: 3497, 507: 3345, 509: 3343, 3344, 3342, 3340, 734: 3341, 3339}, + {1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 477: 1276, 1276, 1276, 1276, 1276, 483: 1276, 1276, 1276, 1276, 3376, 1276, 1276, 1276, 492: 1276, 1276, 1276, 496: 1276, 1276, 499: 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 509: 1276, 1276, 512: 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 534: 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 1276, 568: 1276, 1276, 597: 1276}, + {1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 477: 1286, 1286, 1286, 1286, 1286, 483: 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 492: 1286, 1286, 1286, 496: 1286, 1286, 499: 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 509: 1286, 1286, 512: 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 534: 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 568: 1286, 1286, 597: 1286}, + {769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 512: 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 534: 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 769, 568: 769, 769, 572: 769, 584: 769, 593: 769, 769, 597: 769, 645: 769, 769, 769, 769, 769, 769, 652: 769}, + {768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 512: 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 534: 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 768, 568: 768, 768, 572: 768, 584: 768, 593: 768, 768, 597: 768, 645: 768, 768, 768, 768, 768, 768, 652: 768}, + {268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 512: 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 568: 268, 268, 571: 268, 268, 584: 268, 593: 268, 268, 597: 268, 645: 268, 268, 268, 268, 268, 268, 652: 268, 268, 656: 268, 661: 268, 663: 268, 669: 268, 268, 268}, // 960 - {146: 3358, 489: 3359, 742: 938, 885: 3498}, - {742: 3362, 747: 3499}, - {945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 474: 945, 945, 945, 945, 945, 480: 945, 945, 945, 945, 945, 945, 945, 945, 489: 945, 945, 945, 493: 945, 945, 496: 945, 945, 945, 945, 945, 945, 945, 945, 506: 945, 945, 509: 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 531: 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 945, 565: 945, 945, 594: 945}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 2840, 2788, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 2869, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 2874, 2801, 2766, 2783, 2948, 3031, 3020, 2818, 2830, 2941, 2942, 2937, 2895, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 2876, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 2760, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 2880, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 2799, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 2866, 2865, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 2936, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 2824, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 2751, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 2882, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 2752, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3144, 2878, 3145, 3146, 2777, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3159, 3160, 3211, 3210, 3057, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 2918, 2935, 3058, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3177, 3178, 3179, 2931, 3130, 3189, 3190, 3201, 3185, 3186, 3187, 3220, 2877, 473: 3260, 475: 3239, 3258, 2755, 479: 3268, 482: 3272, 3276, 485: 3257, 3256, 3295, 492: 3230, 495: 3269, 504: 3275, 3293, 508: 3234, 530: 3264, 564: 3271, 567: 3294, 2753, 570: 3277, 3229, 3231, 3233, 3232, 3261, 3237, 3251, 3242, 3263, 3238, 582: 3270, 3262, 3267, 3273, 3283, 3336, 3284, 3285, 592: 3236, 3314, 595: 3254, 3255, 3309, 3310, 3311, 3312, 3313, 3265, 3291, 3296, 3306, 3307, 3300, 3315, 3316, 3317, 3301, 3319, 3320, 3302, 3318, 3297, 3305, 3303, 3289, 3321, 3322, 3266, 3326, 3278, 3279, 3282, 3325, 3331, 3330, 3332, 3329, 3333, 3328, 3327, 3324, 3274, 3323, 3281, 3280, 3286, 3287, 648: 2756, 661: 3244, 2762, 2763, 2761, 709: 3259, 3335, 3245, 3250, 3235, 3308, 3248, 3246, 3247, 3288, 3299, 3298, 3292, 3290, 3304, 3243, 3253, 3334, 3252, 3249, 2759, 2758, 2757, 3501}, - {49: 3502, 507: 3345, 509: 3343, 3344, 3342, 3340, 734: 3341, 3339}, + {267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 512: 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 267, 568: 267, 267, 571: 267, 267, 584: 267, 593: 267, 267, 597: 267, 645: 267, 267, 267, 267, 267, 267, 652: 267, 267, 656: 267, 661: 267, 663: 267, 669: 267, 267, 267}, + {1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 477: 1958, 1958, 481: 1958, 483: 1958, 1958, 1958, 1958, 492: 1958, 1958, 1958, 496: 1958, 1958, 499: 1958, 1958, 1958, 503: 1958, 1958, 1958, 1958, 509: 1958, 1958, 512: 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 522: 1958, 524: 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 534: 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 548: 1958, 1958, 738: 3367, 3365}, + {1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 477: 1959, 1959, 481: 1959, 483: 1959, 1959, 1959, 1959, 492: 1959, 1959, 1959, 496: 1959, 1959, 499: 1959, 1959, 1959, 503: 1959, 1959, 1959, 1959, 509: 1959, 3371, 512: 1959, 3370, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 522: 1959, 524: 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 534: 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 548: 1959, 1959, 738: 3367, 3365}, + {1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 477: 1960, 1960, 481: 1960, 483: 1960, 1960, 1960, 1960, 492: 1960, 1960, 1960, 496: 1960, 1960, 499: 1960, 1960, 1960, 503: 1960, 1960, 1960, 1960, 509: 1960, 3371, 512: 1960, 3370, 1960, 3366, 1960, 1960, 1960, 1960, 1960, 522: 1960, 524: 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 534: 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 1960, 548: 1960, 1960, 738: 3367, 3365}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 2864, 2812, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 2893, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 2898, 2825, 2789, 2807, 2972, 3055, 3044, 2842, 2854, 2965, 2966, 2961, 2919, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 2900, 2885, 2881, 2973, 2997, 2783, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 2904, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 2823, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 2889, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 2890, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 2960, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 2848, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 2774, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 2906, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 2775, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3170, 2902, 3171, 3172, 2801, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3185, 3186, 3237, 3236, 3081, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 2942, 2959, 3082, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3203, 3204, 3205, 2955, 3156, 3215, 3216, 3227, 3211, 3212, 3213, 3246, 2901, 476: 3286, 478: 3265, 3284, 2778, 482: 3294, 485: 3298, 3302, 488: 3283, 3282, 3321, 495: 3256, 498: 3295, 507: 3301, 3319, 511: 3260, 533: 3290, 567: 3297, 570: 3320, 2776, 573: 3303, 3255, 3257, 3259, 3258, 3287, 3263, 3277, 3268, 3289, 3264, 585: 3296, 3288, 3293, 3299, 3309, 3362, 3310, 3311, 595: 3262, 3340, 598: 3280, 3281, 3335, 3336, 3337, 3338, 3339, 3291, 3317, 3322, 3332, 3333, 3326, 3341, 3342, 3343, 3327, 3345, 3346, 3328, 3344, 3323, 3331, 3329, 3315, 3347, 3348, 3292, 3352, 3304, 3305, 3308, 3351, 3357, 3356, 3358, 3355, 3359, 3354, 3353, 3350, 3300, 3349, 3307, 3306, 3312, 3313, 651: 2779, 664: 3270, 2785, 2786, 2784, 713: 3285, 3361, 3271, 3276, 3261, 3334, 3274, 3272, 3273, 3314, 3325, 3324, 3318, 3316, 3330, 3269, 3279, 3360, 3278, 3275, 2782, 2781, 2780, 3522}, // 965 - {146: 3358, 489: 3359, 742: 938, 885: 3503}, - {742: 3362, 747: 3504}, - {946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 474: 946, 946, 946, 946, 946, 480: 946, 946, 946, 946, 946, 946, 946, 946, 489: 946, 946, 946, 493: 946, 946, 496: 946, 946, 946, 946, 946, 946, 946, 946, 506: 946, 946, 509: 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 531: 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 946, 565: 946, 946, 594: 946}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 2840, 2788, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 2869, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 2874, 2801, 2766, 2783, 2948, 3031, 3020, 2818, 2830, 2941, 2942, 2937, 2895, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 2876, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 2760, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 2880, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 2799, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 2866, 2865, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 2936, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 2824, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 2751, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 2882, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 2752, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3144, 2878, 3145, 3146, 2777, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3159, 3160, 3211, 3210, 3057, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 2918, 2935, 3058, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3177, 3178, 3179, 2931, 3130, 3189, 3190, 3201, 3185, 3186, 3187, 3220, 2877, 473: 3260, 475: 3239, 3258, 2755, 479: 3268, 482: 3272, 3276, 485: 3257, 3256, 3295, 492: 3230, 495: 3269, 504: 3275, 3293, 508: 3234, 530: 3264, 564: 3271, 567: 3294, 2753, 570: 3277, 3229, 3231, 3233, 3232, 3261, 3237, 3251, 3242, 3263, 3238, 582: 3270, 3262, 3267, 3273, 3283, 3336, 3284, 3285, 592: 3236, 3314, 595: 3254, 3255, 3309, 3310, 3311, 3312, 3313, 3265, 3291, 3296, 3306, 3307, 3300, 3315, 3316, 3317, 3301, 3319, 3320, 3302, 3318, 3297, 3305, 3303, 3289, 3321, 3322, 3266, 3326, 3278, 3279, 3282, 3325, 3331, 3330, 3332, 3329, 3333, 3328, 3327, 3324, 3274, 3323, 3281, 3280, 3286, 3287, 648: 2756, 661: 3244, 2762, 2763, 2761, 709: 3259, 3335, 3245, 3250, 3235, 3308, 3248, 3246, 3247, 3288, 3299, 3298, 3292, 3290, 3304, 3243, 3253, 3334, 3252, 3249, 2759, 2758, 2757, 3506}, - {9: 3508, 49: 943, 507: 3345, 509: 3343, 3344, 3342, 3340, 734: 3341, 3339, 1094: 3507}, + {50: 3523, 510: 3371, 512: 3369, 3370, 3368, 3366, 738: 3367, 3365}, + {149: 3384, 492: 3385, 746: 952, 889: 3524}, + {746: 3388, 751: 3525}, + {959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 477: 959, 959, 959, 959, 959, 483: 959, 959, 959, 959, 959, 959, 959, 959, 492: 959, 959, 959, 496: 959, 959, 499: 959, 959, 959, 959, 959, 959, 959, 959, 509: 959, 959, 512: 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 534: 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 568: 959, 959, 597: 959}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 2864, 2812, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 2893, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 2898, 2825, 2789, 2807, 2972, 3055, 3044, 2842, 2854, 2965, 2966, 2961, 2919, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 2900, 2885, 2881, 2973, 2997, 2783, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 2904, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 2823, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 2889, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 2890, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 2960, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 2848, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 2774, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 2906, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 2775, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3170, 2902, 3171, 3172, 2801, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3185, 3186, 3237, 3236, 3081, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 2942, 2959, 3082, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3203, 3204, 3205, 2955, 3156, 3215, 3216, 3227, 3211, 3212, 3213, 3246, 2901, 476: 3286, 478: 3265, 3284, 2778, 482: 3294, 485: 3298, 3302, 488: 3283, 3282, 3321, 495: 3256, 498: 3295, 507: 3301, 3319, 511: 3260, 533: 3290, 567: 3297, 570: 3320, 2776, 573: 3303, 3255, 3257, 3259, 3258, 3287, 3263, 3277, 3268, 3289, 3264, 585: 3296, 3288, 3293, 3299, 3309, 3362, 3310, 3311, 595: 3262, 3340, 598: 3280, 3281, 3335, 3336, 3337, 3338, 3339, 3291, 3317, 3322, 3332, 3333, 3326, 3341, 3342, 3343, 3327, 3345, 3346, 3328, 3344, 3323, 3331, 3329, 3315, 3347, 3348, 3292, 3352, 3304, 3305, 3308, 3351, 3357, 3356, 3358, 3355, 3359, 3354, 3353, 3350, 3300, 3349, 3307, 3306, 3312, 3313, 651: 2779, 664: 3270, 2785, 2786, 2784, 713: 3285, 3361, 3271, 3276, 3261, 3334, 3274, 3272, 3273, 3314, 3325, 3324, 3318, 3316, 3330, 3269, 3279, 3360, 3278, 3275, 2782, 2781, 2780, 3527}, // 970 - {49: 3515}, - {508: 3423, 573: 3425, 3424, 577: 3510, 820: 3509}, - {9: 3512, 49: 940, 1095: 3514}, - {9: 3512, 49: 940, 1095: 3511}, - {49: 941}, + {50: 3528, 510: 3371, 512: 3369, 3370, 3368, 3366, 738: 3367, 3365}, + {149: 3384, 492: 3385, 746: 952, 889: 3529}, + {746: 3388, 751: 3530}, + {960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 477: 960, 960, 960, 960, 960, 483: 960, 960, 960, 960, 960, 960, 960, 960, 492: 960, 960, 960, 496: 960, 960, 499: 960, 960, 960, 960, 960, 960, 960, 960, 509: 960, 960, 512: 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 534: 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 960, 568: 960, 960, 597: 960}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 2864, 2812, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 2893, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 2898, 2825, 2789, 2807, 2972, 3055, 3044, 2842, 2854, 2965, 2966, 2961, 2919, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 2900, 2885, 2881, 2973, 2997, 2783, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 2904, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 2823, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 2889, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 2890, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 2960, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 2848, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 2774, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 2906, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 2775, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3170, 2902, 3171, 3172, 2801, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3185, 3186, 3237, 3236, 3081, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 2942, 2959, 3082, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3203, 3204, 3205, 2955, 3156, 3215, 3216, 3227, 3211, 3212, 3213, 3246, 2901, 476: 3286, 478: 3265, 3284, 2778, 482: 3294, 485: 3298, 3302, 488: 3283, 3282, 3321, 495: 3256, 498: 3295, 507: 3301, 3319, 511: 3260, 533: 3290, 567: 3297, 570: 3320, 2776, 573: 3303, 3255, 3257, 3259, 3258, 3287, 3263, 3277, 3268, 3289, 3264, 585: 3296, 3288, 3293, 3299, 3309, 3362, 3310, 3311, 595: 3262, 3340, 598: 3280, 3281, 3335, 3336, 3337, 3338, 3339, 3291, 3317, 3322, 3332, 3333, 3326, 3341, 3342, 3343, 3327, 3345, 3346, 3328, 3344, 3323, 3331, 3329, 3315, 3347, 3348, 3292, 3352, 3304, 3305, 3308, 3351, 3357, 3356, 3358, 3355, 3359, 3354, 3353, 3350, 3300, 3349, 3307, 3306, 3312, 3313, 651: 2779, 664: 3270, 2785, 2786, 2784, 713: 3285, 3361, 3271, 3276, 3261, 3334, 3274, 3272, 3273, 3314, 3325, 3324, 3318, 3316, 3330, 3269, 3279, 3360, 3278, 3275, 2782, 2781, 2780, 3532}, // 975 - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 2840, 2788, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 2869, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 2874, 2801, 2766, 2783, 2948, 3031, 3020, 2818, 2830, 2941, 2942, 2937, 2895, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 2876, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 2760, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 2880, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 2799, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 2866, 2865, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 2936, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 2824, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 2751, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 2882, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 2752, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3144, 2878, 3145, 3146, 2777, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3159, 3160, 3211, 3210, 3057, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 2918, 2935, 3058, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3177, 3178, 3179, 2931, 3130, 3189, 3190, 3201, 3185, 3186, 3187, 3220, 2877, 473: 3260, 475: 3239, 3258, 2755, 479: 3268, 482: 3272, 3276, 485: 3257, 3256, 3295, 492: 3230, 495: 3269, 504: 3275, 3293, 508: 3234, 530: 3264, 564: 3271, 567: 3294, 2753, 570: 3277, 3229, 3231, 3233, 3232, 3261, 3237, 3251, 3242, 3263, 3238, 582: 3270, 3262, 3267, 3273, 3283, 3336, 3284, 3285, 592: 3236, 3314, 595: 3254, 3255, 3309, 3310, 3311, 3312, 3313, 3265, 3291, 3296, 3306, 3307, 3300, 3315, 3316, 3317, 3301, 3319, 3320, 3302, 3318, 3297, 3305, 3303, 3289, 3321, 3322, 3266, 3326, 3278, 3279, 3282, 3325, 3331, 3330, 3332, 3329, 3333, 3328, 3327, 3324, 3274, 3323, 3281, 3280, 3286, 3287, 648: 2756, 661: 3244, 2762, 2763, 2761, 709: 3259, 3335, 3245, 3250, 3235, 3308, 3248, 3246, 3247, 3288, 3299, 3298, 3292, 3290, 3304, 3243, 3253, 3334, 3252, 3249, 2759, 2758, 2757, 3513}, - {49: 939, 507: 3345, 509: 3343, 3344, 3342, 3340, 734: 3341, 3339}, - {49: 942}, - {146: 3358, 489: 3359, 742: 938, 885: 3516}, - {742: 3362, 747: 3517}, + {9: 3534, 50: 957, 510: 3371, 512: 3369, 3370, 3368, 3366, 738: 3367, 3365, 1102: 3533}, + {50: 3541}, + {511: 3449, 576: 3451, 3450, 580: 3536, 824: 3535}, + {9: 3538, 50: 954, 1103: 3540}, + {9: 3538, 50: 954, 1103: 3537}, // 980 - {947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 474: 947, 947, 947, 947, 947, 480: 947, 947, 947, 947, 947, 947, 947, 947, 489: 947, 947, 947, 493: 947, 947, 496: 947, 947, 947, 947, 947, 947, 947, 947, 506: 947, 947, 509: 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 531: 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 947, 565: 947, 947, 594: 947}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 2840, 2788, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 2869, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 2874, 2801, 2766, 2783, 2948, 3031, 3020, 2818, 2830, 2941, 2942, 2937, 2895, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 2876, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 2760, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 2880, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 2799, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 2866, 2865, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 2936, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 2824, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 2751, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 2882, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 2752, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3144, 2878, 3145, 3146, 2777, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3159, 3160, 3211, 3210, 3057, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 2918, 2935, 3058, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3177, 3178, 3179, 2931, 3130, 3189, 3190, 3201, 3185, 3186, 3187, 3220, 2877, 473: 3260, 475: 3239, 3258, 2755, 479: 3268, 482: 3272, 3276, 485: 3257, 3256, 3295, 492: 3230, 495: 3269, 504: 3275, 3293, 508: 3234, 530: 3264, 564: 3271, 567: 3294, 2753, 570: 3277, 3229, 3231, 3233, 3232, 3261, 3237, 3251, 3242, 3263, 3238, 582: 3270, 3262, 3267, 3273, 3283, 3336, 3284, 3285, 592: 3236, 3314, 595: 3254, 3255, 3309, 3310, 3311, 3312, 3313, 3265, 3291, 3296, 3306, 3307, 3300, 3315, 3316, 3317, 3301, 3319, 3320, 3302, 3318, 3297, 3305, 3303, 3289, 3321, 3322, 3266, 3326, 3278, 3279, 3282, 3325, 3331, 3330, 3332, 3329, 3333, 3328, 3327, 3324, 3274, 3323, 3281, 3280, 3286, 3287, 648: 2756, 661: 3244, 2762, 2763, 2761, 709: 3259, 3335, 3245, 3250, 3235, 3308, 3248, 3246, 3247, 3288, 3299, 3298, 3292, 3290, 3304, 3243, 3253, 3334, 3252, 3249, 2759, 2758, 2757, 3519}, - {9: 3508, 49: 943, 507: 3345, 509: 3343, 3344, 3342, 3340, 734: 3341, 3339, 1094: 3520}, - {49: 3521}, - {146: 3358, 489: 3359, 742: 938, 885: 3522}, + {50: 955}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 2864, 2812, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 2893, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 2898, 2825, 2789, 2807, 2972, 3055, 3044, 2842, 2854, 2965, 2966, 2961, 2919, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 2900, 2885, 2881, 2973, 2997, 2783, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 2904, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 2823, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 2889, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 2890, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 2960, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 2848, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 2774, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 2906, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 2775, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3170, 2902, 3171, 3172, 2801, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3185, 3186, 3237, 3236, 3081, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 2942, 2959, 3082, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3203, 3204, 3205, 2955, 3156, 3215, 3216, 3227, 3211, 3212, 3213, 3246, 2901, 476: 3286, 478: 3265, 3284, 2778, 482: 3294, 485: 3298, 3302, 488: 3283, 3282, 3321, 495: 3256, 498: 3295, 507: 3301, 3319, 511: 3260, 533: 3290, 567: 3297, 570: 3320, 2776, 573: 3303, 3255, 3257, 3259, 3258, 3287, 3263, 3277, 3268, 3289, 3264, 585: 3296, 3288, 3293, 3299, 3309, 3362, 3310, 3311, 595: 3262, 3340, 598: 3280, 3281, 3335, 3336, 3337, 3338, 3339, 3291, 3317, 3322, 3332, 3333, 3326, 3341, 3342, 3343, 3327, 3345, 3346, 3328, 3344, 3323, 3331, 3329, 3315, 3347, 3348, 3292, 3352, 3304, 3305, 3308, 3351, 3357, 3356, 3358, 3355, 3359, 3354, 3353, 3350, 3300, 3349, 3307, 3306, 3312, 3313, 651: 2779, 664: 3270, 2785, 2786, 2784, 713: 3285, 3361, 3271, 3276, 3261, 3334, 3274, 3272, 3273, 3314, 3325, 3324, 3318, 3316, 3330, 3269, 3279, 3360, 3278, 3275, 2782, 2781, 2780, 3539}, + {50: 953, 510: 3371, 512: 3369, 3370, 3368, 3366, 738: 3367, 3365}, + {50: 956}, + {149: 3384, 492: 3385, 746: 952, 889: 3542}, // 985 - {742: 3362, 747: 3523}, - {948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 474: 948, 948, 948, 948, 948, 480: 948, 948, 948, 948, 948, 948, 948, 948, 489: 948, 948, 948, 493: 948, 948, 496: 948, 948, 948, 948, 948, 948, 948, 948, 506: 948, 948, 509: 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 531: 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 948, 565: 948, 948, 594: 948}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 2840, 2788, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 2869, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 2874, 2801, 2766, 2783, 2948, 3031, 3020, 2818, 2830, 2941, 2942, 2937, 2895, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 2876, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 2760, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 2880, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 2799, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 2866, 2865, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 2936, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 2824, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 2751, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 2882, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 2752, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3144, 2878, 3145, 3146, 2777, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3159, 3160, 3211, 3210, 3057, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 2918, 2935, 3058, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3177, 3178, 3179, 2931, 3130, 3189, 3190, 3201, 3185, 3186, 3187, 3220, 2877, 473: 3260, 475: 3239, 3258, 479: 3268, 482: 3272, 3276, 485: 3257, 3256, 3295, 492: 3230, 495: 3269, 504: 3275, 3293, 508: 3234, 530: 3264, 564: 3271, 567: 3294, 3349, 570: 3277, 3229, 3231, 3233, 3232, 3261, 3237, 3251, 3348, 3263, 3238, 582: 3270, 3262, 3267, 3273, 3283, 3336, 3284, 3285, 592: 3236, 3314, 595: 3254, 3255, 3309, 3310, 3311, 3312, 3313, 3265, 3291, 3296, 3306, 3307, 3300, 3315, 3316, 3317, 3301, 3319, 3320, 3302, 3318, 3297, 3305, 3303, 3289, 3321, 3322, 3266, 3326, 3278, 3279, 3282, 3325, 3331, 3330, 3332, 3329, 3333, 3328, 3327, 3324, 3274, 3323, 3281, 3280, 3286, 3287, 661: 3244, 2762, 2763, 2761, 709: 3259, 3335, 3245, 3250, 3235, 3308, 3248, 3246, 3247, 3288, 3299, 3298, 3292, 3290, 3304, 3525, 3253, 3334, 3252, 3249}, - {49: 3526, 484: 3350, 594: 3351}, - {742: 3362, 747: 3527}, + {746: 3388, 751: 3543}, + {961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 477: 961, 961, 961, 961, 961, 483: 961, 961, 961, 961, 961, 961, 961, 961, 492: 961, 961, 961, 496: 961, 961, 499: 961, 961, 961, 961, 961, 961, 961, 961, 509: 961, 961, 512: 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 534: 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 961, 568: 961, 961, 597: 961}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 2864, 2812, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 2893, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 2898, 2825, 2789, 2807, 2972, 3055, 3044, 2842, 2854, 2965, 2966, 2961, 2919, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 2900, 2885, 2881, 2973, 2997, 2783, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 2904, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 2823, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 2889, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 2890, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 2960, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 2848, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 2774, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 2906, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 2775, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3170, 2902, 3171, 3172, 2801, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3185, 3186, 3237, 3236, 3081, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 2942, 2959, 3082, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3203, 3204, 3205, 2955, 3156, 3215, 3216, 3227, 3211, 3212, 3213, 3246, 2901, 476: 3286, 478: 3265, 3284, 2778, 482: 3294, 485: 3298, 3302, 488: 3283, 3282, 3321, 495: 3256, 498: 3295, 507: 3301, 3319, 511: 3260, 533: 3290, 567: 3297, 570: 3320, 2776, 573: 3303, 3255, 3257, 3259, 3258, 3287, 3263, 3277, 3268, 3289, 3264, 585: 3296, 3288, 3293, 3299, 3309, 3362, 3310, 3311, 595: 3262, 3340, 598: 3280, 3281, 3335, 3336, 3337, 3338, 3339, 3291, 3317, 3322, 3332, 3333, 3326, 3341, 3342, 3343, 3327, 3345, 3346, 3328, 3344, 3323, 3331, 3329, 3315, 3347, 3348, 3292, 3352, 3304, 3305, 3308, 3351, 3357, 3356, 3358, 3355, 3359, 3354, 3353, 3350, 3300, 3349, 3307, 3306, 3312, 3313, 651: 2779, 664: 3270, 2785, 2786, 2784, 713: 3285, 3361, 3271, 3276, 3261, 3334, 3274, 3272, 3273, 3314, 3325, 3324, 3318, 3316, 3330, 3269, 3279, 3360, 3278, 3275, 2782, 2781, 2780, 3545}, + {9: 3534, 50: 957, 510: 3371, 512: 3369, 3370, 3368, 3366, 738: 3367, 3365, 1102: 3546}, + {50: 3547}, // 990 - {949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 474: 949, 949, 949, 949, 949, 480: 949, 949, 949, 949, 949, 949, 949, 949, 489: 949, 949, 949, 493: 949, 949, 496: 949, 949, 949, 949, 949, 949, 949, 949, 506: 949, 949, 509: 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 531: 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 949, 565: 949, 949, 594: 949}, - {49: 3529}, - {742: 3362, 747: 3530}, - {950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 474: 950, 950, 950, 950, 950, 480: 950, 950, 950, 950, 950, 950, 950, 950, 489: 950, 950, 950, 493: 950, 950, 496: 950, 950, 950, 950, 950, 950, 950, 950, 506: 950, 950, 509: 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 531: 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 950, 565: 950, 950, 594: 950}, - {49: 3532}, + {149: 3384, 492: 3385, 746: 952, 889: 3548}, + {746: 3388, 751: 3549}, + {962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 477: 962, 962, 962, 962, 962, 483: 962, 962, 962, 962, 962, 962, 962, 962, 492: 962, 962, 962, 496: 962, 962, 499: 962, 962, 962, 962, 962, 962, 962, 962, 509: 962, 962, 512: 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 534: 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 962, 568: 962, 962, 597: 962}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 2864, 2812, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 2893, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 2898, 2825, 2789, 2807, 2972, 3055, 3044, 2842, 2854, 2965, 2966, 2961, 2919, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 2900, 2885, 2881, 2973, 2997, 2783, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 2904, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 2823, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 2889, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 2890, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 2960, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 2848, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 2774, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 2906, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 2775, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3170, 2902, 3171, 3172, 2801, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3185, 3186, 3237, 3236, 3081, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 2942, 2959, 3082, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3203, 3204, 3205, 2955, 3156, 3215, 3216, 3227, 3211, 3212, 3213, 3246, 2901, 476: 3286, 478: 3265, 3284, 482: 3294, 485: 3298, 3302, 488: 3283, 3282, 3321, 495: 3256, 498: 3295, 507: 3301, 3319, 511: 3260, 533: 3290, 567: 3297, 570: 3320, 3375, 573: 3303, 3255, 3257, 3259, 3258, 3287, 3263, 3277, 3374, 3289, 3264, 585: 3296, 3288, 3293, 3299, 3309, 3362, 3310, 3311, 595: 3262, 3340, 598: 3280, 3281, 3335, 3336, 3337, 3338, 3339, 3291, 3317, 3322, 3332, 3333, 3326, 3341, 3342, 3343, 3327, 3345, 3346, 3328, 3344, 3323, 3331, 3329, 3315, 3347, 3348, 3292, 3352, 3304, 3305, 3308, 3351, 3357, 3356, 3358, 3355, 3359, 3354, 3353, 3350, 3300, 3349, 3307, 3306, 3312, 3313, 664: 3270, 2785, 2786, 2784, 713: 3285, 3361, 3271, 3276, 3261, 3334, 3274, 3272, 3273, 3314, 3325, 3324, 3318, 3316, 3330, 3551, 3279, 3360, 3278, 3275}, + {50: 3552, 487: 3376, 597: 3377}, // 995 - {742: 3362, 747: 3533}, - {951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 474: 951, 951, 951, 951, 951, 480: 951, 951, 951, 951, 951, 951, 951, 951, 489: 951, 951, 951, 493: 951, 951, 496: 951, 951, 951, 951, 951, 951, 951, 951, 506: 951, 951, 509: 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 531: 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 951, 565: 951, 951, 594: 951}, - {49: 3535}, - {742: 3362, 747: 3536}, - {952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 474: 952, 952, 952, 952, 952, 480: 952, 952, 952, 952, 952, 952, 952, 952, 489: 952, 952, 952, 493: 952, 952, 496: 952, 952, 952, 952, 952, 952, 952, 952, 506: 952, 952, 509: 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 531: 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 952, 565: 952, 952, 594: 952}, + {746: 3388, 751: 3553}, + {963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 477: 963, 963, 963, 963, 963, 483: 963, 963, 963, 963, 963, 963, 963, 963, 492: 963, 963, 963, 496: 963, 963, 499: 963, 963, 963, 963, 963, 963, 963, 963, 509: 963, 963, 512: 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 534: 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 963, 568: 963, 963, 597: 963}, + {50: 3555}, + {746: 3388, 751: 3556}, + {964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 477: 964, 964, 964, 964, 964, 483: 964, 964, 964, 964, 964, 964, 964, 964, 492: 964, 964, 964, 496: 964, 964, 499: 964, 964, 964, 964, 964, 964, 964, 964, 509: 964, 964, 512: 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 534: 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 964, 568: 964, 964, 597: 964}, // 1000 - {49: 3538}, - {742: 3362, 747: 3539}, - {953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 474: 953, 953, 953, 953, 953, 480: 953, 953, 953, 953, 953, 953, 953, 953, 489: 953, 953, 953, 493: 953, 953, 496: 953, 953, 953, 953, 953, 953, 953, 953, 506: 953, 953, 509: 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 531: 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 953, 565: 953, 953, 594: 953}, - {49: 3541}, - {742: 3362, 747: 3542}, + {50: 3558}, + {746: 3388, 751: 3559}, + {965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 477: 965, 965, 965, 965, 965, 483: 965, 965, 965, 965, 965, 965, 965, 965, 492: 965, 965, 965, 496: 965, 965, 499: 965, 965, 965, 965, 965, 965, 965, 965, 509: 965, 965, 512: 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 534: 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 965, 568: 965, 965, 597: 965}, + {50: 3561}, + {746: 3388, 751: 3562}, // 1005 - {954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 474: 954, 954, 954, 954, 954, 480: 954, 954, 954, 954, 954, 954, 954, 954, 489: 954, 954, 954, 493: 954, 954, 496: 954, 954, 954, 954, 954, 954, 954, 954, 506: 954, 954, 509: 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 531: 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 954, 565: 954, 954, 594: 954}, - {2: 1241, 1241, 1241, 1241, 1241, 1241, 1241, 10: 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 50: 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 473: 1241, 475: 1241, 1241, 1241, 479: 1241, 482: 1241, 1241, 485: 1241, 1241, 1241, 492: 1241, 495: 1241, 504: 1241, 1241, 508: 1241, 530: 1241, 564: 1241, 567: 1241, 1241, 570: 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 582: 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 592: 1241, 1241, 595: 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 648: 1241, 651: 3546, 745: 3544, 3545, 784: 3547, 787: 3548, 816: 3550, 818: 3549}, - {2: 1245, 1245, 1245, 1245, 1245, 1245, 1245, 10: 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 50: 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 473: 1245, 475: 1245, 1245, 1245, 479: 1245, 482: 1245, 1245, 485: 1245, 1245, 1245, 492: 1245, 495: 1245, 504: 1245, 1245, 508: 1245, 515: 1245, 520: 1245, 530: 1245, 564: 1245, 567: 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 582: 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 592: 1245, 1245, 595: 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 1245, 646: 1245, 648: 1245, 651: 1245, 745: 1245, 1245, 753: 1245, 1245, 1245, 762: 1245, 769: 1245, 1245, 1245}, - {2: 1244, 1244, 1244, 1244, 1244, 1244, 1244, 10: 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 50: 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 473: 1244, 475: 1244, 1244, 1244, 479: 1244, 482: 1244, 1244, 485: 1244, 1244, 1244, 492: 1244, 495: 1244, 504: 1244, 1244, 508: 1244, 515: 1244, 520: 1244, 530: 1244, 564: 1244, 567: 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 582: 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 592: 1244, 1244, 595: 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 1244, 646: 1244, 648: 1244, 651: 1244, 745: 1244, 1244, 753: 1244, 1244, 1244, 762: 1244, 769: 1244, 1244, 1244}, - {2: 1243, 1243, 1243, 1243, 1243, 1243, 1243, 10: 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 50: 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 473: 1243, 475: 1243, 1243, 1243, 479: 1243, 482: 1243, 1243, 485: 1243, 1243, 1243, 492: 1243, 495: 1243, 504: 1243, 1243, 508: 1243, 515: 1243, 520: 1243, 530: 1243, 564: 1243, 567: 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 582: 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 592: 1243, 1243, 595: 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 1243, 646: 1243, 648: 1243, 651: 1243, 745: 1243, 1243, 753: 1243, 1243, 1243, 762: 1243, 769: 1243, 1243, 1243}, + {966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 477: 966, 966, 966, 966, 966, 483: 966, 966, 966, 966, 966, 966, 966, 966, 492: 966, 966, 966, 496: 966, 966, 499: 966, 966, 966, 966, 966, 966, 966, 966, 509: 966, 966, 512: 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 534: 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 966, 568: 966, 966, 597: 966}, + {50: 3564}, + {746: 3388, 751: 3565}, + {967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 477: 967, 967, 967, 967, 967, 483: 967, 967, 967, 967, 967, 967, 967, 967, 492: 967, 967, 967, 496: 967, 967, 499: 967, 967, 967, 967, 967, 967, 967, 967, 509: 967, 967, 512: 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 534: 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 967, 568: 967, 967, 597: 967}, + {50: 3567}, // 1010 - {2: 1242, 1242, 1242, 1242, 1242, 1242, 1242, 10: 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 50: 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 473: 1242, 475: 1242, 1242, 1242, 479: 1242, 482: 1242, 1242, 485: 1242, 1242, 1242, 492: 1242, 495: 1242, 504: 1242, 1242, 508: 1242, 530: 1242, 564: 1242, 567: 1242, 1242, 570: 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 582: 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 592: 1242, 1242, 595: 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 648: 1242, 651: 3555}, - {2: 1240, 1240, 1240, 1240, 1240, 1240, 1240, 10: 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 50: 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 473: 1240, 475: 1240, 1240, 1240, 479: 1240, 482: 1240, 1240, 485: 1240, 1240, 1240, 492: 1240, 495: 1240, 504: 1240, 1240, 508: 1240, 530: 1240, 564: 1240, 567: 1240, 1240, 570: 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 582: 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 592: 1240, 1240, 595: 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 1240, 648: 1240}, - {2: 1237, 1237, 1237, 1237, 1237, 1237, 1237, 10: 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 50: 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 473: 1237, 475: 1237, 1237, 1237, 479: 1237, 482: 1237, 1237, 485: 1237, 1237, 1237, 492: 1237, 495: 1237, 504: 1237, 1237, 508: 1237, 530: 1237, 564: 1237, 567: 1237, 1237, 570: 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 582: 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 592: 1237, 1237, 595: 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 1237, 648: 1237}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 2840, 2788, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 2869, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 2874, 2801, 2766, 2783, 2948, 3031, 3020, 2818, 2830, 2941, 2942, 2937, 2895, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 2876, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 2760, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 2880, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 2799, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 2866, 2865, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 2936, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 2824, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 2751, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 2882, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 2752, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3144, 2878, 3145, 3146, 2777, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3159, 3160, 3211, 3210, 3057, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 2918, 2935, 3058, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3177, 3178, 3179, 2931, 3130, 3189, 3190, 3201, 3185, 3186, 3187, 3220, 2877, 473: 3260, 475: 3239, 3258, 2755, 479: 3268, 482: 3272, 3276, 485: 3257, 3256, 3295, 492: 3230, 495: 3269, 504: 3275, 3293, 508: 3234, 530: 3264, 564: 3271, 567: 3294, 2753, 570: 3277, 3229, 3231, 3233, 3232, 3261, 3237, 3251, 3242, 3263, 3238, 582: 3270, 3262, 3267, 3273, 3283, 3336, 3284, 3285, 592: 3236, 3314, 595: 3254, 3255, 3309, 3310, 3311, 3312, 3313, 3265, 3291, 3296, 3306, 3307, 3300, 3315, 3316, 3317, 3301, 3319, 3320, 3302, 3318, 3297, 3305, 3303, 3289, 3321, 3322, 3266, 3326, 3278, 3279, 3282, 3325, 3331, 3330, 3332, 3329, 3333, 3328, 3327, 3324, 3274, 3323, 3281, 3280, 3286, 3287, 648: 2756, 661: 3244, 2762, 2763, 2761, 709: 3259, 3335, 3245, 3250, 3235, 3308, 3248, 3246, 3247, 3288, 3299, 3298, 3292, 3290, 3304, 3243, 3253, 3334, 3252, 3249, 2759, 2758, 2757, 3551}, - {49: 3552, 507: 3345, 509: 3343, 3344, 3342, 3340, 734: 3341, 3339}, + {746: 3388, 751: 3568}, + {968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 477: 968, 968, 968, 968, 968, 483: 968, 968, 968, 968, 968, 968, 968, 968, 492: 968, 968, 968, 496: 968, 968, 499: 968, 968, 968, 968, 968, 968, 968, 968, 509: 968, 968, 512: 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 534: 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 968, 568: 968, 968, 597: 968}, + {2: 1255, 1255, 1255, 1255, 1255, 1255, 1255, 10: 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 51: 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 476: 1255, 478: 1255, 1255, 1255, 482: 1255, 485: 1255, 1255, 488: 1255, 1255, 1255, 495: 1255, 498: 1255, 507: 1255, 1255, 511: 1255, 533: 1255, 567: 1255, 570: 1255, 1255, 573: 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 585: 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 595: 1255, 1255, 598: 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 651: 1255, 654: 3572, 749: 3570, 3571, 789: 3573, 792: 3574, 821: 3576, 3575}, + {2: 1259, 1259, 1259, 1259, 1259, 1259, 1259, 10: 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 51: 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 476: 1259, 478: 1259, 1259, 1259, 482: 1259, 485: 1259, 1259, 488: 1259, 1259, 1259, 495: 1259, 498: 1259, 507: 1259, 1259, 511: 1259, 518: 1259, 523: 1259, 533: 1259, 567: 1259, 570: 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 585: 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 595: 1259, 1259, 598: 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 649: 1259, 651: 1259, 654: 1259, 749: 1259, 1259, 757: 1259, 1259, 1259, 766: 1259, 774: 1259, 1259, 1259}, + {2: 1258, 1258, 1258, 1258, 1258, 1258, 1258, 10: 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 51: 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 476: 1258, 478: 1258, 1258, 1258, 482: 1258, 485: 1258, 1258, 488: 1258, 1258, 1258, 495: 1258, 498: 1258, 507: 1258, 1258, 511: 1258, 518: 1258, 523: 1258, 533: 1258, 567: 1258, 570: 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 585: 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 595: 1258, 1258, 598: 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 649: 1258, 651: 1258, 654: 1258, 749: 1258, 1258, 757: 1258, 1258, 1258, 766: 1258, 774: 1258, 1258, 1258}, // 1015 - {959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 474: 959, 959, 959, 959, 959, 480: 959, 959, 959, 959, 959, 959, 959, 959, 489: 959, 959, 959, 493: 959, 959, 496: 959, 959, 959, 959, 959, 959, 959, 959, 506: 959, 959, 509: 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 531: 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 565: 959, 959, 594: 959, 742: 3362, 747: 3554, 765: 3553}, - {1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 474: 1123, 1123, 1123, 1123, 1123, 480: 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 489: 1123, 1123, 1123, 493: 1123, 1123, 496: 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 506: 1123, 1123, 509: 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 531: 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 1123, 565: 1123, 1123, 594: 1123}, - {958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 474: 958, 958, 958, 958, 958, 480: 958, 958, 958, 958, 958, 958, 958, 958, 489: 958, 958, 958, 493: 958, 958, 496: 958, 958, 958, 958, 958, 958, 958, 958, 506: 958, 958, 509: 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 531: 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 958, 565: 958, 958, 594: 958}, - {2: 1236, 1236, 1236, 1236, 1236, 1236, 1236, 10: 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 50: 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 473: 1236, 475: 1236, 1236, 1236, 479: 1236, 482: 1236, 1236, 485: 1236, 1236, 1236, 492: 1236, 495: 1236, 504: 1236, 1236, 508: 1236, 530: 1236, 564: 1236, 567: 1236, 1236, 570: 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 582: 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 592: 1236, 1236, 595: 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 1236, 648: 1236}, - {2: 1241, 1241, 1241, 1241, 1241, 1241, 1241, 10: 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 50: 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 473: 1241, 475: 1241, 1241, 1241, 479: 1241, 482: 1241, 1241, 485: 1241, 1241, 1241, 492: 1241, 495: 1241, 504: 1241, 1241, 508: 1241, 530: 1241, 564: 1241, 567: 1241, 1241, 570: 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 582: 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 592: 1241, 1241, 595: 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 648: 1241, 651: 3546, 745: 3544, 3545, 784: 3547, 787: 3548, 816: 3557, 818: 3549}, + {2: 1257, 1257, 1257, 1257, 1257, 1257, 1257, 10: 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 51: 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 476: 1257, 478: 1257, 1257, 1257, 482: 1257, 485: 1257, 1257, 488: 1257, 1257, 1257, 495: 1257, 498: 1257, 507: 1257, 1257, 511: 1257, 518: 1257, 523: 1257, 533: 1257, 567: 1257, 570: 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 585: 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 595: 1257, 1257, 598: 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 649: 1257, 651: 1257, 654: 1257, 749: 1257, 1257, 757: 1257, 1257, 1257, 766: 1257, 774: 1257, 1257, 1257}, + {2: 1256, 1256, 1256, 1256, 1256, 1256, 1256, 10: 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 51: 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 476: 1256, 478: 1256, 1256, 1256, 482: 1256, 485: 1256, 1256, 488: 1256, 1256, 1256, 495: 1256, 498: 1256, 507: 1256, 1256, 511: 1256, 533: 1256, 567: 1256, 570: 1256, 1256, 573: 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 585: 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 595: 1256, 1256, 598: 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 651: 1256, 654: 3581}, + {2: 1254, 1254, 1254, 1254, 1254, 1254, 1254, 10: 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 51: 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 476: 1254, 478: 1254, 1254, 1254, 482: 1254, 485: 1254, 1254, 488: 1254, 1254, 1254, 495: 1254, 498: 1254, 507: 1254, 1254, 511: 1254, 533: 1254, 567: 1254, 570: 1254, 1254, 573: 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 585: 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 595: 1254, 1254, 598: 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 651: 1254}, + {2: 1251, 1251, 1251, 1251, 1251, 1251, 1251, 10: 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 51: 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 476: 1251, 478: 1251, 1251, 1251, 482: 1251, 485: 1251, 1251, 488: 1251, 1251, 1251, 495: 1251, 498: 1251, 507: 1251, 1251, 511: 1251, 533: 1251, 567: 1251, 570: 1251, 1251, 573: 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 585: 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 595: 1251, 1251, 598: 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 651: 1251}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 2864, 2812, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 2893, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 2898, 2825, 2789, 2807, 2972, 3055, 3044, 2842, 2854, 2965, 2966, 2961, 2919, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 2900, 2885, 2881, 2973, 2997, 2783, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 2904, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 2823, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 2889, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 2890, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 2960, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 2848, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 2774, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 2906, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 2775, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3170, 2902, 3171, 3172, 2801, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3185, 3186, 3237, 3236, 3081, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 2942, 2959, 3082, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3203, 3204, 3205, 2955, 3156, 3215, 3216, 3227, 3211, 3212, 3213, 3246, 2901, 476: 3286, 478: 3265, 3284, 2778, 482: 3294, 485: 3298, 3302, 488: 3283, 3282, 3321, 495: 3256, 498: 3295, 507: 3301, 3319, 511: 3260, 533: 3290, 567: 3297, 570: 3320, 2776, 573: 3303, 3255, 3257, 3259, 3258, 3287, 3263, 3277, 3268, 3289, 3264, 585: 3296, 3288, 3293, 3299, 3309, 3362, 3310, 3311, 595: 3262, 3340, 598: 3280, 3281, 3335, 3336, 3337, 3338, 3339, 3291, 3317, 3322, 3332, 3333, 3326, 3341, 3342, 3343, 3327, 3345, 3346, 3328, 3344, 3323, 3331, 3329, 3315, 3347, 3348, 3292, 3352, 3304, 3305, 3308, 3351, 3357, 3356, 3358, 3355, 3359, 3354, 3353, 3350, 3300, 3349, 3307, 3306, 3312, 3313, 651: 2779, 664: 3270, 2785, 2786, 2784, 713: 3285, 3361, 3271, 3276, 3261, 3334, 3274, 3272, 3273, 3314, 3325, 3324, 3318, 3316, 3330, 3269, 3279, 3360, 3278, 3275, 2782, 2781, 2780, 3577}, // 1020 - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 2840, 2788, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 2869, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 2874, 2801, 2766, 2783, 2948, 3031, 3020, 2818, 2830, 2941, 2942, 2937, 2895, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 2876, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 2760, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 2880, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 2799, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 2866, 2865, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 2936, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 2824, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 2751, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 2882, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 2752, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3144, 2878, 3145, 3146, 2777, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3159, 3160, 3211, 3210, 3057, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 2918, 2935, 3058, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3177, 3178, 3179, 2931, 3130, 3189, 3190, 3201, 3185, 3186, 3187, 3220, 2877, 473: 3260, 475: 3239, 3258, 2755, 479: 3268, 482: 3272, 3276, 485: 3257, 3256, 3295, 492: 3230, 495: 3269, 504: 3275, 3293, 508: 3234, 530: 3264, 564: 3271, 567: 3294, 2753, 570: 3277, 3229, 3231, 3233, 3232, 3261, 3237, 3251, 3242, 3263, 3238, 582: 3270, 3262, 3267, 3273, 3283, 3336, 3284, 3285, 592: 3236, 3314, 595: 3254, 3255, 3309, 3310, 3311, 3312, 3313, 3265, 3291, 3296, 3306, 3307, 3300, 3315, 3316, 3317, 3301, 3319, 3320, 3302, 3318, 3297, 3305, 3303, 3289, 3321, 3322, 3266, 3326, 3278, 3279, 3282, 3325, 3331, 3330, 3332, 3329, 3333, 3328, 3327, 3324, 3274, 3323, 3281, 3280, 3286, 3287, 648: 2756, 661: 3244, 2762, 2763, 2761, 709: 3259, 3335, 3245, 3250, 3235, 3308, 3248, 3246, 3247, 3288, 3299, 3298, 3292, 3290, 3304, 3243, 3253, 3334, 3252, 3249, 2759, 2758, 2757, 3558}, - {49: 3559, 507: 3345, 509: 3343, 3344, 3342, 3340, 734: 3341, 3339}, - {959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 474: 959, 959, 959, 959, 959, 480: 959, 959, 959, 959, 959, 959, 959, 959, 489: 959, 959, 959, 493: 959, 959, 496: 959, 959, 959, 959, 959, 959, 959, 959, 506: 959, 959, 509: 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 531: 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 565: 959, 959, 594: 959, 742: 3362, 747: 3554, 765: 3560}, - {1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 474: 1124, 1124, 1124, 1124, 1124, 480: 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 489: 1124, 1124, 1124, 493: 1124, 1124, 496: 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 506: 1124, 1124, 509: 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 531: 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 565: 1124, 1124, 594: 1124}, - {2: 1241, 1241, 1241, 1241, 1241, 1241, 1241, 10: 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 50: 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 473: 1241, 475: 1241, 1241, 1241, 479: 1241, 482: 1241, 1241, 485: 1241, 1241, 1241, 492: 1241, 495: 1241, 504: 1241, 1241, 508: 1241, 530: 1241, 564: 1241, 567: 1241, 1241, 570: 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 582: 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 592: 1241, 1241, 595: 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 648: 1241, 651: 3546, 745: 3544, 3545, 784: 3547, 787: 3548, 816: 3562, 818: 3549}, + {50: 3578, 510: 3371, 512: 3369, 3370, 3368, 3366, 738: 3367, 3365}, + {973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 477: 973, 973, 973, 973, 973, 483: 973, 973, 973, 973, 973, 973, 973, 973, 492: 973, 973, 973, 496: 973, 973, 499: 973, 973, 973, 973, 973, 973, 973, 973, 509: 973, 973, 512: 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 534: 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 568: 973, 973, 597: 973, 746: 3388, 751: 3580, 769: 3579}, + {1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 477: 1137, 1137, 1137, 1137, 1137, 483: 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 492: 1137, 1137, 1137, 496: 1137, 1137, 499: 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 509: 1137, 1137, 512: 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 534: 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 568: 1137, 1137, 597: 1137}, + {972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 477: 972, 972, 972, 972, 972, 483: 972, 972, 972, 972, 972, 972, 972, 972, 492: 972, 972, 972, 496: 972, 972, 499: 972, 972, 972, 972, 972, 972, 972, 972, 509: 972, 972, 512: 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 534: 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 972, 568: 972, 972, 597: 972}, + {2: 1250, 1250, 1250, 1250, 1250, 1250, 1250, 10: 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 51: 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 476: 1250, 478: 1250, 1250, 1250, 482: 1250, 485: 1250, 1250, 488: 1250, 1250, 1250, 495: 1250, 498: 1250, 507: 1250, 1250, 511: 1250, 533: 1250, 567: 1250, 570: 1250, 1250, 573: 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 585: 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 595: 1250, 1250, 598: 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 651: 1250}, // 1025 - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 2840, 2788, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 2869, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 2874, 2801, 2766, 2783, 2948, 3031, 3020, 2818, 2830, 2941, 2942, 2937, 2895, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 2876, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 2760, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 2880, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 2799, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 2866, 2865, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 2936, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 2824, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 2751, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 2882, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 2752, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3144, 2878, 3145, 3146, 2777, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3159, 3160, 3211, 3210, 3057, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 2918, 2935, 3058, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3177, 3178, 3179, 2931, 3130, 3189, 3190, 3201, 3185, 3186, 3187, 3220, 2877, 473: 3260, 475: 3239, 3258, 2755, 479: 3268, 482: 3272, 3276, 485: 3257, 3256, 3295, 492: 3230, 495: 3269, 504: 3275, 3293, 508: 3234, 530: 3264, 564: 3271, 567: 3294, 2753, 570: 3277, 3229, 3231, 3233, 3232, 3261, 3237, 3251, 3242, 3263, 3238, 582: 3270, 3262, 3267, 3273, 3283, 3336, 3284, 3285, 592: 3236, 3314, 595: 3254, 3255, 3309, 3310, 3311, 3312, 3313, 3265, 3291, 3296, 3306, 3307, 3300, 3315, 3316, 3317, 3301, 3319, 3320, 3302, 3318, 3297, 3305, 3303, 3289, 3321, 3322, 3266, 3326, 3278, 3279, 3282, 3325, 3331, 3330, 3332, 3329, 3333, 3328, 3327, 3324, 3274, 3323, 3281, 3280, 3286, 3287, 648: 2756, 661: 3244, 2762, 2763, 2761, 709: 3259, 3335, 3245, 3250, 3235, 3308, 3248, 3246, 3247, 3288, 3299, 3298, 3292, 3290, 3304, 3243, 3253, 3334, 3252, 3249, 2759, 2758, 2757, 3563}, - {49: 3564, 507: 3345, 509: 3343, 3344, 3342, 3340, 734: 3341, 3339}, - {959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 474: 959, 959, 959, 959, 959, 480: 959, 959, 959, 959, 959, 959, 959, 959, 489: 959, 959, 959, 493: 959, 959, 496: 959, 959, 959, 959, 959, 959, 959, 959, 506: 959, 959, 509: 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 531: 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 565: 959, 959, 594: 959, 742: 3362, 747: 3554, 765: 3565}, - {1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 474: 1125, 1125, 1125, 1125, 1125, 480: 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 489: 1125, 1125, 1125, 493: 1125, 1125, 496: 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 506: 1125, 1125, 509: 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 531: 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 565: 1125, 1125, 594: 1125}, - {2: 1241, 1241, 1241, 1241, 1241, 1241, 1241, 10: 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 50: 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 473: 1241, 475: 1241, 1241, 1241, 479: 1241, 482: 1241, 1241, 485: 1241, 1241, 1241, 492: 1241, 495: 1241, 504: 1241, 1241, 508: 1241, 530: 1241, 564: 1241, 567: 1241, 1241, 570: 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 582: 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 592: 1241, 1241, 595: 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 648: 1241, 651: 3546, 745: 3544, 3545, 784: 3547, 787: 3548, 816: 3567, 818: 3549}, + {2: 1255, 1255, 1255, 1255, 1255, 1255, 1255, 10: 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 51: 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 476: 1255, 478: 1255, 1255, 1255, 482: 1255, 485: 1255, 1255, 488: 1255, 1255, 1255, 495: 1255, 498: 1255, 507: 1255, 1255, 511: 1255, 533: 1255, 567: 1255, 570: 1255, 1255, 573: 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 585: 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 595: 1255, 1255, 598: 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 651: 1255, 654: 3572, 749: 3570, 3571, 789: 3573, 792: 3574, 821: 3583, 3575}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 2864, 2812, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 2893, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 2898, 2825, 2789, 2807, 2972, 3055, 3044, 2842, 2854, 2965, 2966, 2961, 2919, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 2900, 2885, 2881, 2973, 2997, 2783, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 2904, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 2823, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 2889, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 2890, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 2960, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 2848, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 2774, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 2906, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 2775, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3170, 2902, 3171, 3172, 2801, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3185, 3186, 3237, 3236, 3081, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 2942, 2959, 3082, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3203, 3204, 3205, 2955, 3156, 3215, 3216, 3227, 3211, 3212, 3213, 3246, 2901, 476: 3286, 478: 3265, 3284, 2778, 482: 3294, 485: 3298, 3302, 488: 3283, 3282, 3321, 495: 3256, 498: 3295, 507: 3301, 3319, 511: 3260, 533: 3290, 567: 3297, 570: 3320, 2776, 573: 3303, 3255, 3257, 3259, 3258, 3287, 3263, 3277, 3268, 3289, 3264, 585: 3296, 3288, 3293, 3299, 3309, 3362, 3310, 3311, 595: 3262, 3340, 598: 3280, 3281, 3335, 3336, 3337, 3338, 3339, 3291, 3317, 3322, 3332, 3333, 3326, 3341, 3342, 3343, 3327, 3345, 3346, 3328, 3344, 3323, 3331, 3329, 3315, 3347, 3348, 3292, 3352, 3304, 3305, 3308, 3351, 3357, 3356, 3358, 3355, 3359, 3354, 3353, 3350, 3300, 3349, 3307, 3306, 3312, 3313, 651: 2779, 664: 3270, 2785, 2786, 2784, 713: 3285, 3361, 3271, 3276, 3261, 3334, 3274, 3272, 3273, 3314, 3325, 3324, 3318, 3316, 3330, 3269, 3279, 3360, 3278, 3275, 2782, 2781, 2780, 3584}, + {50: 3585, 510: 3371, 512: 3369, 3370, 3368, 3366, 738: 3367, 3365}, + {973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 477: 973, 973, 973, 973, 973, 483: 973, 973, 973, 973, 973, 973, 973, 973, 492: 973, 973, 973, 496: 973, 973, 499: 973, 973, 973, 973, 973, 973, 973, 973, 509: 973, 973, 512: 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 534: 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 568: 973, 973, 597: 973, 746: 3388, 751: 3580, 769: 3586}, + {1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 477: 1138, 1138, 1138, 1138, 1138, 483: 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 492: 1138, 1138, 1138, 496: 1138, 1138, 499: 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 509: 1138, 1138, 512: 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 534: 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 568: 1138, 1138, 597: 1138}, // 1030 - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 2840, 2788, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 2869, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 2874, 2801, 2766, 2783, 2948, 3031, 3020, 2818, 2830, 2941, 2942, 2937, 2895, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 2876, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 2760, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 2880, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 2799, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 2866, 2865, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 2936, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 2824, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 2751, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 2882, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 2752, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3144, 2878, 3145, 3146, 2777, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3159, 3160, 3211, 3210, 3057, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 2918, 2935, 3058, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3177, 3178, 3179, 2931, 3130, 3189, 3190, 3201, 3185, 3186, 3187, 3220, 2877, 473: 3260, 475: 3239, 3258, 2755, 479: 3268, 482: 3272, 3276, 485: 3257, 3256, 3295, 492: 3230, 495: 3269, 504: 3275, 3293, 508: 3234, 530: 3264, 564: 3271, 567: 3294, 2753, 570: 3277, 3229, 3231, 3233, 3232, 3261, 3237, 3251, 3242, 3263, 3238, 582: 3270, 3262, 3267, 3273, 3283, 3336, 3284, 3285, 592: 3236, 3314, 595: 3254, 3255, 3309, 3310, 3311, 3312, 3313, 3265, 3291, 3296, 3306, 3307, 3300, 3315, 3316, 3317, 3301, 3319, 3320, 3302, 3318, 3297, 3305, 3303, 3289, 3321, 3322, 3266, 3326, 3278, 3279, 3282, 3325, 3331, 3330, 3332, 3329, 3333, 3328, 3327, 3324, 3274, 3323, 3281, 3280, 3286, 3287, 648: 2756, 661: 3244, 2762, 2763, 2761, 709: 3259, 3335, 3245, 3250, 3235, 3308, 3248, 3246, 3247, 3288, 3299, 3298, 3292, 3290, 3304, 3243, 3253, 3334, 3252, 3249, 2759, 2758, 2757, 3568}, - {49: 3569, 507: 3345, 509: 3343, 3344, 3342, 3340, 734: 3341, 3339}, - {959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 474: 959, 959, 959, 959, 959, 480: 959, 959, 959, 959, 959, 959, 959, 959, 489: 959, 959, 959, 493: 959, 959, 496: 959, 959, 959, 959, 959, 959, 959, 959, 506: 959, 959, 509: 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 531: 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 565: 959, 959, 594: 959, 742: 3362, 747: 3554, 765: 3570}, - {1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 474: 1126, 1126, 1126, 1126, 1126, 480: 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 489: 1126, 1126, 1126, 493: 1126, 1126, 496: 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 506: 1126, 1126, 509: 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 531: 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 1126, 565: 1126, 1126, 594: 1126}, - {2: 1241, 1241, 1241, 1241, 1241, 1241, 1241, 10: 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 50: 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 473: 1241, 475: 1241, 1241, 1241, 479: 1241, 482: 1241, 1241, 485: 1241, 1241, 1241, 492: 1241, 495: 1241, 504: 1241, 1241, 508: 1241, 530: 1241, 564: 1241, 567: 1241, 1241, 570: 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 582: 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 592: 1241, 1241, 595: 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 648: 1241, 651: 3546, 745: 3544, 3545, 784: 3547, 787: 3548, 816: 3572, 818: 3549}, + {2: 1255, 1255, 1255, 1255, 1255, 1255, 1255, 10: 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 51: 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 476: 1255, 478: 1255, 1255, 1255, 482: 1255, 485: 1255, 1255, 488: 1255, 1255, 1255, 495: 1255, 498: 1255, 507: 1255, 1255, 511: 1255, 533: 1255, 567: 1255, 570: 1255, 1255, 573: 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 585: 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 595: 1255, 1255, 598: 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 651: 1255, 654: 3572, 749: 3570, 3571, 789: 3573, 792: 3574, 821: 3588, 3575}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 2864, 2812, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 2893, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 2898, 2825, 2789, 2807, 2972, 3055, 3044, 2842, 2854, 2965, 2966, 2961, 2919, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 2900, 2885, 2881, 2973, 2997, 2783, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 2904, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 2823, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 2889, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 2890, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 2960, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 2848, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 2774, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 2906, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 2775, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3170, 2902, 3171, 3172, 2801, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3185, 3186, 3237, 3236, 3081, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 2942, 2959, 3082, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3203, 3204, 3205, 2955, 3156, 3215, 3216, 3227, 3211, 3212, 3213, 3246, 2901, 476: 3286, 478: 3265, 3284, 2778, 482: 3294, 485: 3298, 3302, 488: 3283, 3282, 3321, 495: 3256, 498: 3295, 507: 3301, 3319, 511: 3260, 533: 3290, 567: 3297, 570: 3320, 2776, 573: 3303, 3255, 3257, 3259, 3258, 3287, 3263, 3277, 3268, 3289, 3264, 585: 3296, 3288, 3293, 3299, 3309, 3362, 3310, 3311, 595: 3262, 3340, 598: 3280, 3281, 3335, 3336, 3337, 3338, 3339, 3291, 3317, 3322, 3332, 3333, 3326, 3341, 3342, 3343, 3327, 3345, 3346, 3328, 3344, 3323, 3331, 3329, 3315, 3347, 3348, 3292, 3352, 3304, 3305, 3308, 3351, 3357, 3356, 3358, 3355, 3359, 3354, 3353, 3350, 3300, 3349, 3307, 3306, 3312, 3313, 651: 2779, 664: 3270, 2785, 2786, 2784, 713: 3285, 3361, 3271, 3276, 3261, 3334, 3274, 3272, 3273, 3314, 3325, 3324, 3318, 3316, 3330, 3269, 3279, 3360, 3278, 3275, 2782, 2781, 2780, 3589}, + {50: 3590, 510: 3371, 512: 3369, 3370, 3368, 3366, 738: 3367, 3365}, + {973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 477: 973, 973, 973, 973, 973, 483: 973, 973, 973, 973, 973, 973, 973, 973, 492: 973, 973, 973, 496: 973, 973, 499: 973, 973, 973, 973, 973, 973, 973, 973, 509: 973, 973, 512: 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 534: 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 568: 973, 973, 597: 973, 746: 3388, 751: 3580, 769: 3591}, + {1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 477: 1139, 1139, 1139, 1139, 1139, 483: 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 492: 1139, 1139, 1139, 496: 1139, 1139, 499: 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 509: 1139, 1139, 512: 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 534: 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 568: 1139, 1139, 597: 1139}, // 1035 - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 2840, 2788, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 2869, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 2874, 2801, 2766, 2783, 2948, 3031, 3020, 2818, 2830, 2941, 2942, 2937, 2895, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 2876, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 2760, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 2880, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 2799, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 2866, 2865, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 2936, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 2824, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 2751, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 2882, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 2752, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3144, 2878, 3145, 3146, 2777, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3159, 3160, 3211, 3210, 3057, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 2918, 2935, 3058, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3177, 3178, 3179, 2931, 3130, 3189, 3190, 3201, 3185, 3186, 3187, 3220, 2877, 473: 3260, 475: 3239, 3258, 2755, 479: 3268, 482: 3272, 3276, 485: 3257, 3256, 3295, 492: 3230, 495: 3269, 504: 3275, 3293, 508: 3234, 530: 3264, 564: 3271, 567: 3294, 2753, 570: 3277, 3229, 3231, 3233, 3232, 3261, 3237, 3251, 3242, 3263, 3238, 582: 3270, 3262, 3267, 3273, 3283, 3336, 3284, 3285, 592: 3236, 3314, 595: 3254, 3255, 3309, 3310, 3311, 3312, 3313, 3265, 3291, 3296, 3306, 3307, 3300, 3315, 3316, 3317, 3301, 3319, 3320, 3302, 3318, 3297, 3305, 3303, 3289, 3321, 3322, 3266, 3326, 3278, 3279, 3282, 3325, 3331, 3330, 3332, 3329, 3333, 3328, 3327, 3324, 3274, 3323, 3281, 3280, 3286, 3287, 648: 2756, 661: 3244, 2762, 2763, 2761, 709: 3259, 3335, 3245, 3250, 3235, 3308, 3248, 3246, 3247, 3288, 3299, 3298, 3292, 3290, 3304, 3243, 3253, 3334, 3252, 3249, 2759, 2758, 2757, 3573}, - {49: 3574, 507: 3345, 509: 3343, 3344, 3342, 3340, 734: 3341, 3339}, - {959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 474: 959, 959, 959, 959, 959, 480: 959, 959, 959, 959, 959, 959, 959, 959, 489: 959, 959, 959, 493: 959, 959, 496: 959, 959, 959, 959, 959, 959, 959, 959, 506: 959, 959, 509: 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 531: 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 565: 959, 959, 594: 959, 742: 3362, 747: 3554, 765: 3575}, - {1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 474: 1127, 1127, 1127, 1127, 1127, 480: 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 489: 1127, 1127, 1127, 493: 1127, 1127, 496: 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 506: 1127, 1127, 509: 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 531: 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 565: 1127, 1127, 594: 1127}, - {2: 1241, 1241, 1241, 1241, 1241, 1241, 1241, 10: 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 50: 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 473: 1241, 475: 1241, 1241, 1241, 479: 1241, 482: 1241, 1241, 485: 1241, 1241, 1241, 492: 1241, 495: 1241, 504: 1241, 1241, 508: 1241, 530: 1241, 564: 1241, 567: 1241, 1241, 570: 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 582: 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 592: 1241, 1241, 595: 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 648: 1241, 651: 3546, 745: 3544, 3545, 784: 3547, 787: 3548, 816: 3577, 818: 3549}, + {2: 1255, 1255, 1255, 1255, 1255, 1255, 1255, 10: 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 51: 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 476: 1255, 478: 1255, 1255, 1255, 482: 1255, 485: 1255, 1255, 488: 1255, 1255, 1255, 495: 1255, 498: 1255, 507: 1255, 1255, 511: 1255, 533: 1255, 567: 1255, 570: 1255, 1255, 573: 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 585: 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 595: 1255, 1255, 598: 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 651: 1255, 654: 3572, 749: 3570, 3571, 789: 3573, 792: 3574, 821: 3593, 3575}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 2864, 2812, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 2893, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 2898, 2825, 2789, 2807, 2972, 3055, 3044, 2842, 2854, 2965, 2966, 2961, 2919, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 2900, 2885, 2881, 2973, 2997, 2783, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 2904, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 2823, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 2889, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 2890, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 2960, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 2848, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 2774, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 2906, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 2775, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3170, 2902, 3171, 3172, 2801, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3185, 3186, 3237, 3236, 3081, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 2942, 2959, 3082, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3203, 3204, 3205, 2955, 3156, 3215, 3216, 3227, 3211, 3212, 3213, 3246, 2901, 476: 3286, 478: 3265, 3284, 2778, 482: 3294, 485: 3298, 3302, 488: 3283, 3282, 3321, 495: 3256, 498: 3295, 507: 3301, 3319, 511: 3260, 533: 3290, 567: 3297, 570: 3320, 2776, 573: 3303, 3255, 3257, 3259, 3258, 3287, 3263, 3277, 3268, 3289, 3264, 585: 3296, 3288, 3293, 3299, 3309, 3362, 3310, 3311, 595: 3262, 3340, 598: 3280, 3281, 3335, 3336, 3337, 3338, 3339, 3291, 3317, 3322, 3332, 3333, 3326, 3341, 3342, 3343, 3327, 3345, 3346, 3328, 3344, 3323, 3331, 3329, 3315, 3347, 3348, 3292, 3352, 3304, 3305, 3308, 3351, 3357, 3356, 3358, 3355, 3359, 3354, 3353, 3350, 3300, 3349, 3307, 3306, 3312, 3313, 651: 2779, 664: 3270, 2785, 2786, 2784, 713: 3285, 3361, 3271, 3276, 3261, 3334, 3274, 3272, 3273, 3314, 3325, 3324, 3318, 3316, 3330, 3269, 3279, 3360, 3278, 3275, 2782, 2781, 2780, 3594}, + {50: 3595, 510: 3371, 512: 3369, 3370, 3368, 3366, 738: 3367, 3365}, + {973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 477: 973, 973, 973, 973, 973, 483: 973, 973, 973, 973, 973, 973, 973, 973, 492: 973, 973, 973, 496: 973, 973, 499: 973, 973, 973, 973, 973, 973, 973, 973, 509: 973, 973, 512: 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 534: 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 568: 973, 973, 597: 973, 746: 3388, 751: 3580, 769: 3596}, + {1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 477: 1140, 1140, 1140, 1140, 1140, 483: 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 492: 1140, 1140, 1140, 496: 1140, 1140, 499: 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 509: 1140, 1140, 512: 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 534: 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 568: 1140, 1140, 597: 1140}, // 1040 - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 2840, 2788, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 2869, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 2874, 2801, 2766, 2783, 2948, 3031, 3020, 2818, 2830, 2941, 2942, 2937, 2895, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 2876, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 2760, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 2880, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 2799, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 2866, 2865, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 2936, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 2824, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 2751, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 2882, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 2752, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3144, 2878, 3145, 3146, 2777, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3159, 3160, 3211, 3210, 3057, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 2918, 2935, 3058, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3177, 3178, 3179, 2931, 3130, 3189, 3190, 3201, 3185, 3186, 3187, 3220, 2877, 473: 3260, 475: 3239, 3258, 2755, 479: 3268, 482: 3272, 3276, 485: 3257, 3256, 3295, 492: 3230, 495: 3269, 504: 3275, 3293, 508: 3234, 530: 3264, 564: 3271, 567: 3294, 2753, 570: 3277, 3229, 3231, 3233, 3232, 3261, 3237, 3251, 3242, 3263, 3238, 582: 3270, 3262, 3267, 3273, 3283, 3336, 3284, 3285, 592: 3236, 3314, 595: 3254, 3255, 3309, 3310, 3311, 3312, 3313, 3265, 3291, 3296, 3306, 3307, 3300, 3315, 3316, 3317, 3301, 3319, 3320, 3302, 3318, 3297, 3305, 3303, 3289, 3321, 3322, 3266, 3326, 3278, 3279, 3282, 3325, 3331, 3330, 3332, 3329, 3333, 3328, 3327, 3324, 3274, 3323, 3281, 3280, 3286, 3287, 648: 2756, 661: 3244, 2762, 2763, 2761, 709: 3259, 3335, 3245, 3250, 3235, 3308, 3248, 3246, 3247, 3288, 3299, 3298, 3292, 3290, 3304, 3243, 3253, 3334, 3252, 3249, 2759, 2758, 2757, 3578}, - {49: 3579, 507: 3345, 509: 3343, 3344, 3342, 3340, 734: 3341, 3339}, - {959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 474: 959, 959, 959, 959, 959, 480: 959, 959, 959, 959, 959, 959, 959, 959, 489: 959, 959, 959, 493: 959, 959, 496: 959, 959, 959, 959, 959, 959, 959, 959, 506: 959, 959, 509: 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 531: 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 565: 959, 959, 594: 959, 742: 3362, 747: 3554, 765: 3580}, - {1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 474: 1128, 1128, 1128, 1128, 1128, 480: 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 489: 1128, 1128, 1128, 493: 1128, 1128, 496: 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 506: 1128, 1128, 509: 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 531: 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 565: 1128, 1128, 594: 1128}, - {2: 1241, 1241, 1241, 1241, 1241, 1241, 1241, 10: 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 50: 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 473: 1241, 475: 1241, 1241, 1241, 479: 1241, 482: 1241, 1241, 485: 1241, 1241, 1241, 492: 1241, 495: 1241, 504: 1241, 1241, 508: 1241, 530: 1241, 564: 1241, 567: 1241, 1241, 570: 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 582: 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 592: 1241, 1241, 595: 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 648: 1241, 651: 3546, 745: 3544, 3545, 784: 3547, 787: 3548, 816: 3582, 818: 3549}, + {2: 1255, 1255, 1255, 1255, 1255, 1255, 1255, 10: 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 51: 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 476: 1255, 478: 1255, 1255, 1255, 482: 1255, 485: 1255, 1255, 488: 1255, 1255, 1255, 495: 1255, 498: 1255, 507: 1255, 1255, 511: 1255, 533: 1255, 567: 1255, 570: 1255, 1255, 573: 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 585: 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 595: 1255, 1255, 598: 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 651: 1255, 654: 3572, 749: 3570, 3571, 789: 3573, 792: 3574, 821: 3598, 3575}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 2864, 2812, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 2893, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 2898, 2825, 2789, 2807, 2972, 3055, 3044, 2842, 2854, 2965, 2966, 2961, 2919, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 2900, 2885, 2881, 2973, 2997, 2783, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 2904, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 2823, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 2889, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 2890, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 2960, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 2848, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 2774, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 2906, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 2775, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3170, 2902, 3171, 3172, 2801, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3185, 3186, 3237, 3236, 3081, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 2942, 2959, 3082, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3203, 3204, 3205, 2955, 3156, 3215, 3216, 3227, 3211, 3212, 3213, 3246, 2901, 476: 3286, 478: 3265, 3284, 2778, 482: 3294, 485: 3298, 3302, 488: 3283, 3282, 3321, 495: 3256, 498: 3295, 507: 3301, 3319, 511: 3260, 533: 3290, 567: 3297, 570: 3320, 2776, 573: 3303, 3255, 3257, 3259, 3258, 3287, 3263, 3277, 3268, 3289, 3264, 585: 3296, 3288, 3293, 3299, 3309, 3362, 3310, 3311, 595: 3262, 3340, 598: 3280, 3281, 3335, 3336, 3337, 3338, 3339, 3291, 3317, 3322, 3332, 3333, 3326, 3341, 3342, 3343, 3327, 3345, 3346, 3328, 3344, 3323, 3331, 3329, 3315, 3347, 3348, 3292, 3352, 3304, 3305, 3308, 3351, 3357, 3356, 3358, 3355, 3359, 3354, 3353, 3350, 3300, 3349, 3307, 3306, 3312, 3313, 651: 2779, 664: 3270, 2785, 2786, 2784, 713: 3285, 3361, 3271, 3276, 3261, 3334, 3274, 3272, 3273, 3314, 3325, 3324, 3318, 3316, 3330, 3269, 3279, 3360, 3278, 3275, 2782, 2781, 2780, 3599}, + {50: 3600, 510: 3371, 512: 3369, 3370, 3368, 3366, 738: 3367, 3365}, + {973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 477: 973, 973, 973, 973, 973, 483: 973, 973, 973, 973, 973, 973, 973, 973, 492: 973, 973, 973, 496: 973, 973, 499: 973, 973, 973, 973, 973, 973, 973, 973, 509: 973, 973, 512: 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 534: 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 568: 973, 973, 597: 973, 746: 3388, 751: 3580, 769: 3601}, + {1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 477: 1141, 1141, 1141, 1141, 1141, 483: 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 492: 1141, 1141, 1141, 496: 1141, 1141, 499: 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 509: 1141, 1141, 512: 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 534: 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 568: 1141, 1141, 597: 1141}, // 1045 - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 2840, 2788, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 2869, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 2874, 2801, 2766, 2783, 2948, 3031, 3020, 2818, 2830, 2941, 2942, 2937, 2895, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 2876, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 2760, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 2880, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 2799, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 2866, 2865, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 2936, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 2824, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 2751, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 2882, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 2752, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3144, 2878, 3145, 3146, 2777, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3159, 3160, 3211, 3210, 3057, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 2918, 2935, 3058, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3177, 3178, 3179, 2931, 3130, 3189, 3190, 3201, 3185, 3186, 3187, 3220, 2877, 473: 3260, 475: 3239, 3258, 2755, 479: 3268, 482: 3272, 3276, 485: 3257, 3256, 3295, 492: 3230, 495: 3269, 504: 3275, 3293, 508: 3234, 530: 3264, 564: 3271, 567: 3294, 2753, 570: 3277, 3229, 3231, 3233, 3232, 3261, 3237, 3251, 3242, 3263, 3238, 582: 3270, 3262, 3267, 3273, 3283, 3336, 3284, 3285, 592: 3236, 3314, 595: 3254, 3255, 3309, 3310, 3311, 3312, 3313, 3265, 3291, 3296, 3306, 3307, 3300, 3315, 3316, 3317, 3301, 3319, 3320, 3302, 3318, 3297, 3305, 3303, 3289, 3321, 3322, 3266, 3326, 3278, 3279, 3282, 3325, 3331, 3330, 3332, 3329, 3333, 3328, 3327, 3324, 3274, 3323, 3281, 3280, 3286, 3287, 648: 2756, 661: 3244, 2762, 2763, 2761, 709: 3259, 3335, 3245, 3250, 3235, 3308, 3248, 3246, 3247, 3288, 3299, 3298, 3292, 3290, 3304, 3243, 3253, 3334, 3252, 3249, 2759, 2758, 2757, 3583}, - {49: 3584, 507: 3345, 509: 3343, 3344, 3342, 3340, 734: 3341, 3339}, - {959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 474: 959, 959, 959, 959, 959, 480: 959, 959, 959, 959, 959, 959, 959, 959, 489: 959, 959, 959, 493: 959, 959, 496: 959, 959, 959, 959, 959, 959, 959, 959, 506: 959, 959, 509: 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 531: 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 565: 959, 959, 594: 959, 742: 3362, 747: 3554, 765: 3585}, - {1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 474: 1129, 1129, 1129, 1129, 1129, 480: 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 489: 1129, 1129, 1129, 493: 1129, 1129, 496: 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 506: 1129, 1129, 509: 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 531: 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 1129, 565: 1129, 1129, 594: 1129}, - {2: 1241, 1241, 1241, 1241, 1241, 1241, 1241, 10: 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 50: 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 473: 1241, 475: 1241, 1241, 1241, 479: 1241, 482: 1241, 1241, 485: 1241, 1241, 1241, 492: 1241, 495: 1241, 504: 1241, 1241, 508: 1241, 530: 1241, 564: 1241, 567: 1241, 1241, 570: 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 582: 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 592: 1241, 1241, 595: 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 648: 1241, 651: 3546, 745: 3544, 3545, 784: 3547, 787: 3548, 816: 3587, 818: 3549}, + {2: 1255, 1255, 1255, 1255, 1255, 1255, 1255, 10: 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 51: 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 476: 1255, 478: 1255, 1255, 1255, 482: 1255, 485: 1255, 1255, 488: 1255, 1255, 1255, 495: 1255, 498: 1255, 507: 1255, 1255, 511: 1255, 533: 1255, 567: 1255, 570: 1255, 1255, 573: 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 585: 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 595: 1255, 1255, 598: 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 651: 1255, 654: 3572, 749: 3570, 3571, 789: 3573, 792: 3574, 821: 3603, 3575}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 2864, 2812, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 2893, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 2898, 2825, 2789, 2807, 2972, 3055, 3044, 2842, 2854, 2965, 2966, 2961, 2919, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 2900, 2885, 2881, 2973, 2997, 2783, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 2904, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 2823, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 2889, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 2890, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 2960, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 2848, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 2774, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 2906, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 2775, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3170, 2902, 3171, 3172, 2801, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3185, 3186, 3237, 3236, 3081, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 2942, 2959, 3082, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3203, 3204, 3205, 2955, 3156, 3215, 3216, 3227, 3211, 3212, 3213, 3246, 2901, 476: 3286, 478: 3265, 3284, 2778, 482: 3294, 485: 3298, 3302, 488: 3283, 3282, 3321, 495: 3256, 498: 3295, 507: 3301, 3319, 511: 3260, 533: 3290, 567: 3297, 570: 3320, 2776, 573: 3303, 3255, 3257, 3259, 3258, 3287, 3263, 3277, 3268, 3289, 3264, 585: 3296, 3288, 3293, 3299, 3309, 3362, 3310, 3311, 595: 3262, 3340, 598: 3280, 3281, 3335, 3336, 3337, 3338, 3339, 3291, 3317, 3322, 3332, 3333, 3326, 3341, 3342, 3343, 3327, 3345, 3346, 3328, 3344, 3323, 3331, 3329, 3315, 3347, 3348, 3292, 3352, 3304, 3305, 3308, 3351, 3357, 3356, 3358, 3355, 3359, 3354, 3353, 3350, 3300, 3349, 3307, 3306, 3312, 3313, 651: 2779, 664: 3270, 2785, 2786, 2784, 713: 3285, 3361, 3271, 3276, 3261, 3334, 3274, 3272, 3273, 3314, 3325, 3324, 3318, 3316, 3330, 3269, 3279, 3360, 3278, 3275, 2782, 2781, 2780, 3604}, + {50: 3605, 510: 3371, 512: 3369, 3370, 3368, 3366, 738: 3367, 3365}, + {973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 477: 973, 973, 973, 973, 973, 483: 973, 973, 973, 973, 973, 973, 973, 973, 492: 973, 973, 973, 496: 973, 973, 499: 973, 973, 973, 973, 973, 973, 973, 973, 509: 973, 973, 512: 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 534: 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 568: 973, 973, 597: 973, 746: 3388, 751: 3580, 769: 3606}, + {1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 477: 1142, 1142, 1142, 1142, 1142, 483: 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 492: 1142, 1142, 1142, 496: 1142, 1142, 499: 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 509: 1142, 1142, 512: 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 534: 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 568: 1142, 1142, 597: 1142}, // 1050 - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 2840, 2788, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 2869, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 2874, 2801, 2766, 2783, 2948, 3031, 3020, 2818, 2830, 2941, 2942, 2937, 2895, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 2876, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 2760, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 2880, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 2799, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 2866, 2865, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 2936, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 2824, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 2751, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 2882, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 2752, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3144, 2878, 3145, 3146, 2777, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3159, 3160, 3211, 3210, 3057, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 2918, 2935, 3058, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3177, 3178, 3179, 2931, 3130, 3189, 3190, 3201, 3185, 3186, 3187, 3220, 2877, 473: 3260, 475: 3239, 3258, 2755, 479: 3268, 482: 3272, 3276, 485: 3257, 3256, 3295, 492: 3230, 495: 3269, 504: 3275, 3293, 508: 3234, 530: 3264, 564: 3271, 567: 3294, 2753, 570: 3277, 3229, 3231, 3233, 3232, 3261, 3237, 3251, 3242, 3263, 3238, 582: 3270, 3262, 3267, 3273, 3283, 3336, 3284, 3285, 592: 3236, 3314, 595: 3254, 3255, 3309, 3310, 3311, 3312, 3313, 3265, 3291, 3296, 3306, 3307, 3300, 3315, 3316, 3317, 3301, 3319, 3320, 3302, 3318, 3297, 3305, 3303, 3289, 3321, 3322, 3266, 3326, 3278, 3279, 3282, 3325, 3331, 3330, 3332, 3329, 3333, 3328, 3327, 3324, 3274, 3323, 3281, 3280, 3286, 3287, 648: 2756, 661: 3244, 2762, 2763, 2761, 709: 3259, 3335, 3245, 3250, 3235, 3308, 3248, 3246, 3247, 3288, 3299, 3298, 3292, 3290, 3304, 3243, 3253, 3334, 3252, 3249, 2759, 2758, 2757, 3588, 778: 3589}, - {1923, 1923, 9: 1923, 49: 1923, 127: 1923, 481: 1923, 502: 1923, 507: 3345, 509: 3343, 3344, 3342, 3340, 734: 3341, 3339}, - {9: 3590, 49: 1297, 127: 1297, 502: 2725, 767: 2726, 812: 3591}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 2840, 2788, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 2869, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 2874, 2801, 2766, 2783, 2948, 3031, 3020, 2818, 2830, 2941, 2942, 2937, 2895, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 2876, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 2760, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 2880, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 2799, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 2866, 2865, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 2936, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 2824, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 2751, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 2882, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 2752, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3144, 2878, 3145, 3146, 2777, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3159, 3160, 3211, 3210, 3057, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 2918, 2935, 3058, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3177, 3178, 3179, 2931, 3130, 3189, 3190, 3201, 3185, 3186, 3187, 3220, 2877, 473: 3260, 475: 3239, 3258, 2755, 479: 3268, 482: 3272, 3276, 485: 3257, 3256, 3295, 492: 3230, 495: 3269, 504: 3275, 3293, 508: 3234, 530: 3264, 564: 3271, 567: 3294, 2753, 570: 3277, 3229, 3231, 3233, 3232, 3261, 3237, 3251, 3242, 3263, 3238, 582: 3270, 3262, 3267, 3273, 3283, 3336, 3284, 3285, 592: 3236, 3314, 595: 3254, 3255, 3309, 3310, 3311, 3312, 3313, 3265, 3291, 3296, 3306, 3307, 3300, 3315, 3316, 3317, 3301, 3319, 3320, 3302, 3318, 3297, 3305, 3303, 3289, 3321, 3322, 3266, 3326, 3278, 3279, 3282, 3325, 3331, 3330, 3332, 3329, 3333, 3328, 3327, 3324, 3274, 3323, 3281, 3280, 3286, 3287, 648: 2756, 661: 3244, 2762, 2763, 2761, 709: 3259, 3335, 3245, 3250, 3235, 3308, 3248, 3246, 3247, 3288, 3299, 3298, 3292, 3290, 3304, 3243, 3253, 3334, 3252, 3249, 2759, 2758, 2757, 3597}, - {49: 1116, 127: 3593, 1266: 3592}, + {2: 1255, 1255, 1255, 1255, 1255, 1255, 1255, 10: 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 51: 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 476: 1255, 478: 1255, 1255, 1255, 482: 1255, 485: 1255, 1255, 488: 1255, 1255, 1255, 495: 1255, 498: 1255, 507: 1255, 1255, 511: 1255, 533: 1255, 567: 1255, 570: 1255, 1255, 573: 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 585: 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 595: 1255, 1255, 598: 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 651: 1255, 654: 3572, 749: 3570, 3571, 789: 3573, 792: 3574, 821: 3608, 3575}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 2864, 2812, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 2893, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 2898, 2825, 2789, 2807, 2972, 3055, 3044, 2842, 2854, 2965, 2966, 2961, 2919, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 2900, 2885, 2881, 2973, 2997, 2783, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 2904, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 2823, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 2889, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 2890, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 2960, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 2848, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 2774, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 2906, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 2775, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3170, 2902, 3171, 3172, 2801, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3185, 3186, 3237, 3236, 3081, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 2942, 2959, 3082, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3203, 3204, 3205, 2955, 3156, 3215, 3216, 3227, 3211, 3212, 3213, 3246, 2901, 476: 3286, 478: 3265, 3284, 2778, 482: 3294, 485: 3298, 3302, 488: 3283, 3282, 3321, 495: 3256, 498: 3295, 507: 3301, 3319, 511: 3260, 533: 3290, 567: 3297, 570: 3320, 2776, 573: 3303, 3255, 3257, 3259, 3258, 3287, 3263, 3277, 3268, 3289, 3264, 585: 3296, 3288, 3293, 3299, 3309, 3362, 3310, 3311, 595: 3262, 3340, 598: 3280, 3281, 3335, 3336, 3337, 3338, 3339, 3291, 3317, 3322, 3332, 3333, 3326, 3341, 3342, 3343, 3327, 3345, 3346, 3328, 3344, 3323, 3331, 3329, 3315, 3347, 3348, 3292, 3352, 3304, 3305, 3308, 3351, 3357, 3356, 3358, 3355, 3359, 3354, 3353, 3350, 3300, 3349, 3307, 3306, 3312, 3313, 651: 2779, 664: 3270, 2785, 2786, 2784, 713: 3285, 3361, 3271, 3276, 3261, 3334, 3274, 3272, 3273, 3314, 3325, 3324, 3318, 3316, 3330, 3269, 3279, 3360, 3278, 3275, 2782, 2781, 2780, 3609}, + {50: 3610, 510: 3371, 512: 3369, 3370, 3368, 3366, 738: 3367, 3365}, + {973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 477: 973, 973, 973, 973, 973, 483: 973, 973, 973, 973, 973, 973, 973, 973, 492: 973, 973, 973, 496: 973, 973, 499: 973, 973, 973, 973, 973, 973, 973, 973, 509: 973, 973, 512: 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 534: 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 568: 973, 973, 597: 973, 746: 3388, 751: 3580, 769: 3611}, + {1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 477: 1143, 1143, 1143, 1143, 1143, 483: 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 492: 1143, 1143, 1143, 496: 1143, 1143, 499: 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 509: 1143, 1143, 512: 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 534: 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 568: 1143, 1143, 597: 1143}, // 1055 - {49: 3595}, - {475: 3594}, - {49: 1115}, - {959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 474: 959, 959, 959, 959, 959, 480: 959, 959, 959, 959, 959, 959, 959, 959, 489: 959, 959, 959, 493: 959, 959, 496: 959, 959, 959, 959, 959, 959, 959, 959, 506: 959, 959, 509: 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 531: 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 565: 959, 959, 594: 959, 742: 3362, 747: 3554, 765: 3596}, - {1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 474: 1130, 1130, 1130, 1130, 1130, 480: 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 489: 1130, 1130, 1130, 493: 1130, 1130, 496: 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 506: 1130, 1130, 509: 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 531: 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 1130, 565: 1130, 1130, 594: 1130}, + {2: 1255, 1255, 1255, 1255, 1255, 1255, 1255, 10: 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 51: 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 476: 1255, 478: 1255, 1255, 1255, 482: 1255, 485: 1255, 1255, 488: 1255, 1255, 1255, 495: 1255, 498: 1255, 507: 1255, 1255, 511: 1255, 533: 1255, 567: 1255, 570: 1255, 1255, 573: 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 585: 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 595: 1255, 1255, 598: 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 651: 1255, 654: 3572, 749: 3570, 3571, 789: 3573, 792: 3574, 821: 3613, 3575}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 2864, 2812, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 2893, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 2898, 2825, 2789, 2807, 2972, 3055, 3044, 2842, 2854, 2965, 2966, 2961, 2919, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 2900, 2885, 2881, 2973, 2997, 2783, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 2904, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 2823, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 2889, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 2890, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 2960, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 2848, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 2774, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 2906, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 2775, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3170, 2902, 3171, 3172, 2801, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3185, 3186, 3237, 3236, 3081, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 2942, 2959, 3082, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3203, 3204, 3205, 2955, 3156, 3215, 3216, 3227, 3211, 3212, 3213, 3246, 2901, 476: 3286, 478: 3265, 3284, 2778, 482: 3294, 485: 3298, 3302, 488: 3283, 3282, 3321, 495: 3256, 498: 3295, 507: 3301, 3319, 511: 3260, 533: 3290, 567: 3297, 570: 3320, 2776, 573: 3303, 3255, 3257, 3259, 3258, 3287, 3263, 3277, 3268, 3289, 3264, 585: 3296, 3288, 3293, 3299, 3309, 3362, 3310, 3311, 595: 3262, 3340, 598: 3280, 3281, 3335, 3336, 3337, 3338, 3339, 3291, 3317, 3322, 3332, 3333, 3326, 3341, 3342, 3343, 3327, 3345, 3346, 3328, 3344, 3323, 3331, 3329, 3315, 3347, 3348, 3292, 3352, 3304, 3305, 3308, 3351, 3357, 3356, 3358, 3355, 3359, 3354, 3353, 3350, 3300, 3349, 3307, 3306, 3312, 3313, 651: 2779, 664: 3270, 2785, 2786, 2784, 713: 3285, 3361, 3271, 3276, 3261, 3334, 3274, 3272, 3273, 3314, 3325, 3324, 3318, 3316, 3330, 3269, 3279, 3360, 3278, 3275, 2782, 2781, 2780, 3614, 782: 3615}, + {1940, 1940, 9: 1940, 50: 1940, 128: 1940, 484: 1940, 505: 1940, 510: 3371, 512: 3369, 3370, 3368, 3366, 738: 3367, 3365}, + {9: 3616, 50: 1311, 128: 1311, 505: 2748, 772: 2749, 817: 3617}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 2864, 2812, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 2893, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 2898, 2825, 2789, 2807, 2972, 3055, 3044, 2842, 2854, 2965, 2966, 2961, 2919, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 2900, 2885, 2881, 2973, 2997, 2783, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 2904, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 2823, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 2889, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 2890, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 2960, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 2848, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 2774, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 2906, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 2775, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3170, 2902, 3171, 3172, 2801, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3185, 3186, 3237, 3236, 3081, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 2942, 2959, 3082, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3203, 3204, 3205, 2955, 3156, 3215, 3216, 3227, 3211, 3212, 3213, 3246, 2901, 476: 3286, 478: 3265, 3284, 2778, 482: 3294, 485: 3298, 3302, 488: 3283, 3282, 3321, 495: 3256, 498: 3295, 507: 3301, 3319, 511: 3260, 533: 3290, 567: 3297, 570: 3320, 2776, 573: 3303, 3255, 3257, 3259, 3258, 3287, 3263, 3277, 3268, 3289, 3264, 585: 3296, 3288, 3293, 3299, 3309, 3362, 3310, 3311, 595: 3262, 3340, 598: 3280, 3281, 3335, 3336, 3337, 3338, 3339, 3291, 3317, 3322, 3332, 3333, 3326, 3341, 3342, 3343, 3327, 3345, 3346, 3328, 3344, 3323, 3331, 3329, 3315, 3347, 3348, 3292, 3352, 3304, 3305, 3308, 3351, 3357, 3356, 3358, 3355, 3359, 3354, 3353, 3350, 3300, 3349, 3307, 3306, 3312, 3313, 651: 2779, 664: 3270, 2785, 2786, 2784, 713: 3285, 3361, 3271, 3276, 3261, 3334, 3274, 3272, 3273, 3314, 3325, 3324, 3318, 3316, 3330, 3269, 3279, 3360, 3278, 3275, 2782, 2781, 2780, 3623}, // 1060 - {1922, 1922, 9: 1922, 49: 1922, 127: 1922, 481: 1922, 502: 1922, 507: 3345, 509: 3343, 3344, 3342, 3340, 734: 3341, 3339}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 2840, 2788, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 2869, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 2874, 2801, 2766, 2783, 2948, 3031, 3020, 2818, 2830, 2941, 2942, 2937, 2895, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 2876, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 2760, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 2880, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 2799, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 2866, 2865, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 2936, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 2824, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 2751, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 2882, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 2752, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3144, 2878, 3145, 3146, 2777, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3159, 3160, 3211, 3210, 3057, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 2918, 2935, 3058, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3177, 3178, 3179, 2931, 3130, 3189, 3190, 3201, 3185, 3186, 3187, 3220, 2877, 473: 3260, 475: 3239, 3258, 2755, 479: 3268, 482: 3272, 3276, 485: 3257, 3256, 3295, 492: 3230, 495: 3269, 504: 3275, 3293, 508: 3234, 520: 3602, 530: 3264, 564: 3271, 567: 3294, 2753, 570: 3277, 3229, 3231, 3233, 3232, 3261, 3237, 3251, 3242, 3263, 3238, 582: 3270, 3262, 3267, 3273, 3283, 3336, 3284, 3285, 592: 3236, 3314, 595: 3254, 3255, 3309, 3310, 3311, 3312, 3313, 3265, 3291, 3296, 3306, 3307, 3300, 3315, 3316, 3317, 3301, 3319, 3320, 3302, 3318, 3297, 3305, 3303, 3289, 3321, 3322, 3266, 3326, 3278, 3279, 3282, 3325, 3331, 3330, 3332, 3329, 3333, 3328, 3327, 3324, 3274, 3323, 3281, 3280, 3286, 3287, 648: 2756, 651: 3601, 661: 3244, 2762, 2763, 2761, 709: 3259, 3335, 3245, 3250, 3235, 3308, 3248, 3246, 3247, 3288, 3299, 3298, 3292, 3290, 3304, 3243, 3253, 3334, 3252, 3249, 2759, 2758, 2757, 3599, 745: 3544, 3545, 784: 3600}, - {49: 3610, 507: 3345, 509: 3343, 3344, 3342, 3340, 734: 3341, 3339}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 2840, 2788, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 2869, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 2874, 2801, 2766, 2783, 2948, 3031, 3020, 2818, 2830, 2941, 2942, 2937, 2895, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 2876, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 2760, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 2880, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 2799, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 2866, 2865, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 2936, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 2824, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 2751, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 2882, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 2752, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3144, 2878, 3145, 3146, 2777, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3159, 3160, 3211, 3210, 3057, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 2918, 2935, 3058, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3177, 3178, 3179, 2931, 3130, 3189, 3190, 3201, 3185, 3186, 3187, 3220, 2877, 473: 3260, 475: 3239, 3258, 2755, 479: 3268, 482: 3272, 3276, 485: 3257, 3256, 3295, 492: 3230, 495: 3269, 504: 3275, 3293, 508: 3234, 530: 3264, 564: 3271, 567: 3294, 2753, 570: 3277, 3229, 3231, 3233, 3232, 3261, 3237, 3251, 3242, 3263, 3238, 582: 3270, 3262, 3267, 3273, 3283, 3336, 3284, 3285, 592: 3236, 3314, 595: 3254, 3255, 3309, 3310, 3311, 3312, 3313, 3265, 3291, 3296, 3306, 3307, 3300, 3315, 3316, 3317, 3301, 3319, 3320, 3302, 3318, 3297, 3305, 3303, 3289, 3321, 3322, 3266, 3326, 3278, 3279, 3282, 3325, 3331, 3330, 3332, 3329, 3333, 3328, 3327, 3324, 3274, 3323, 3281, 3280, 3286, 3287, 648: 2756, 661: 3244, 2762, 2763, 2761, 709: 3259, 3335, 3245, 3250, 3235, 3308, 3248, 3246, 3247, 3288, 3299, 3298, 3292, 3290, 3304, 3243, 3253, 3334, 3252, 3249, 2759, 2758, 2757, 3588, 778: 3608}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 2840, 2788, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 2869, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 2874, 2801, 2766, 2783, 2948, 3031, 3020, 2818, 2830, 2941, 2942, 2937, 2895, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 2876, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 2760, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 2880, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 2799, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 2866, 2865, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 2936, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 2824, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 2751, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 2882, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 2752, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3144, 2878, 3145, 3146, 2777, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3159, 3160, 3211, 3210, 3057, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 2918, 2935, 3058, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3177, 3178, 3179, 2931, 3130, 3189, 3190, 3201, 3185, 3186, 3187, 3220, 2877, 473: 3260, 475: 3239, 3258, 2755, 479: 3268, 482: 3272, 3276, 485: 3257, 3256, 3295, 492: 3230, 495: 3269, 504: 3275, 3293, 508: 3234, 530: 3264, 564: 3271, 567: 3294, 2753, 570: 3277, 3229, 3231, 3233, 3232, 3261, 3237, 3251, 3242, 3263, 3238, 582: 3270, 3262, 3267, 3273, 3283, 3336, 3284, 3285, 592: 3236, 3314, 595: 3254, 3255, 3309, 3310, 3311, 3312, 3313, 3265, 3291, 3296, 3306, 3307, 3300, 3315, 3316, 3317, 3301, 3319, 3320, 3302, 3318, 3297, 3305, 3303, 3289, 3321, 3322, 3266, 3326, 3278, 3279, 3282, 3325, 3331, 3330, 3332, 3329, 3333, 3328, 3327, 3324, 3274, 3323, 3281, 3280, 3286, 3287, 648: 2756, 661: 3244, 2762, 2763, 2761, 709: 3259, 3335, 3245, 3250, 3235, 3308, 3248, 3246, 3247, 3288, 3299, 3298, 3292, 3290, 3304, 3243, 3253, 3334, 3252, 3249, 2759, 2758, 2757, 3605}, + {50: 1130, 128: 3619, 1274: 3618}, + {50: 3621}, + {478: 3620}, + {50: 1129}, + {973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 477: 973, 973, 973, 973, 973, 483: 973, 973, 973, 973, 973, 973, 973, 973, 492: 973, 973, 973, 496: 973, 973, 499: 973, 973, 973, 973, 973, 973, 973, 973, 509: 973, 973, 512: 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 534: 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 568: 973, 973, 597: 973, 746: 3388, 751: 3580, 769: 3622}, // 1065 - {49: 3603}, - {959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 474: 959, 959, 959, 959, 959, 480: 959, 959, 959, 959, 959, 959, 959, 959, 489: 959, 959, 959, 493: 959, 959, 496: 959, 959, 959, 959, 959, 959, 959, 959, 506: 959, 959, 509: 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 531: 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 565: 959, 959, 594: 959, 742: 3362, 747: 3554, 765: 3604}, - {1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 474: 1131, 1131, 1131, 1131, 1131, 480: 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 489: 1131, 1131, 1131, 493: 1131, 1131, 496: 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 506: 1131, 1131, 509: 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 531: 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 565: 1131, 1131, 594: 1131}, - {49: 3606, 507: 3345, 509: 3343, 3344, 3342, 3340, 734: 3341, 3339}, - {959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 474: 959, 959, 959, 959, 959, 480: 959, 959, 959, 959, 959, 959, 959, 959, 489: 959, 959, 959, 493: 959, 959, 496: 959, 959, 959, 959, 959, 959, 959, 959, 506: 959, 959, 509: 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 531: 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 565: 959, 959, 594: 959, 742: 3362, 747: 3554, 765: 3607}, + {1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 477: 1144, 1144, 1144, 1144, 1144, 483: 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 492: 1144, 1144, 1144, 496: 1144, 1144, 499: 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 509: 1144, 1144, 512: 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 534: 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 1144, 568: 1144, 1144, 597: 1144}, + {1939, 1939, 9: 1939, 50: 1939, 128: 1939, 484: 1939, 505: 1939, 510: 3371, 512: 3369, 3370, 3368, 3366, 738: 3367, 3365}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 2864, 2812, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 2893, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 2898, 2825, 2789, 2807, 2972, 3055, 3044, 2842, 2854, 2965, 2966, 2961, 2919, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 2900, 2885, 2881, 2973, 2997, 2783, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 2904, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 2823, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 2889, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 2890, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 2960, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 2848, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 2774, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 2906, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 2775, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3170, 2902, 3171, 3172, 2801, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3185, 3186, 3237, 3236, 3081, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 2942, 2959, 3082, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3203, 3204, 3205, 2955, 3156, 3215, 3216, 3227, 3211, 3212, 3213, 3246, 2901, 476: 3286, 478: 3265, 3284, 2778, 482: 3294, 485: 3298, 3302, 488: 3283, 3282, 3321, 495: 3256, 498: 3295, 507: 3301, 3319, 511: 3260, 523: 3628, 533: 3290, 567: 3297, 570: 3320, 2776, 573: 3303, 3255, 3257, 3259, 3258, 3287, 3263, 3277, 3268, 3289, 3264, 585: 3296, 3288, 3293, 3299, 3309, 3362, 3310, 3311, 595: 3262, 3340, 598: 3280, 3281, 3335, 3336, 3337, 3338, 3339, 3291, 3317, 3322, 3332, 3333, 3326, 3341, 3342, 3343, 3327, 3345, 3346, 3328, 3344, 3323, 3331, 3329, 3315, 3347, 3348, 3292, 3352, 3304, 3305, 3308, 3351, 3357, 3356, 3358, 3355, 3359, 3354, 3353, 3350, 3300, 3349, 3307, 3306, 3312, 3313, 651: 2779, 654: 3627, 664: 3270, 2785, 2786, 2784, 713: 3285, 3361, 3271, 3276, 3261, 3334, 3274, 3272, 3273, 3314, 3325, 3324, 3318, 3316, 3330, 3269, 3279, 3360, 3278, 3275, 2782, 2781, 2780, 3625, 749: 3570, 3571, 789: 3626}, + {50: 3636, 510: 3371, 512: 3369, 3370, 3368, 3366, 738: 3367, 3365}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 2864, 2812, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 2893, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 2898, 2825, 2789, 2807, 2972, 3055, 3044, 2842, 2854, 2965, 2966, 2961, 2919, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 2900, 2885, 2881, 2973, 2997, 2783, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 2904, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 2823, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 2889, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 2890, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 2960, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 2848, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 2774, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 2906, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 2775, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3170, 2902, 3171, 3172, 2801, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3185, 3186, 3237, 3236, 3081, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 2942, 2959, 3082, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3203, 3204, 3205, 2955, 3156, 3215, 3216, 3227, 3211, 3212, 3213, 3246, 2901, 476: 3286, 478: 3265, 3284, 2778, 482: 3294, 485: 3298, 3302, 488: 3283, 3282, 3321, 495: 3256, 498: 3295, 507: 3301, 3319, 511: 3260, 533: 3290, 567: 3297, 570: 3320, 2776, 573: 3303, 3255, 3257, 3259, 3258, 3287, 3263, 3277, 3268, 3289, 3264, 585: 3296, 3288, 3293, 3299, 3309, 3362, 3310, 3311, 595: 3262, 3340, 598: 3280, 3281, 3335, 3336, 3337, 3338, 3339, 3291, 3317, 3322, 3332, 3333, 3326, 3341, 3342, 3343, 3327, 3345, 3346, 3328, 3344, 3323, 3331, 3329, 3315, 3347, 3348, 3292, 3352, 3304, 3305, 3308, 3351, 3357, 3356, 3358, 3355, 3359, 3354, 3353, 3350, 3300, 3349, 3307, 3306, 3312, 3313, 651: 2779, 664: 3270, 2785, 2786, 2784, 713: 3285, 3361, 3271, 3276, 3261, 3334, 3274, 3272, 3273, 3314, 3325, 3324, 3318, 3316, 3330, 3269, 3279, 3360, 3278, 3275, 2782, 2781, 2780, 3614, 782: 3634}, // 1070 - {1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 474: 1133, 1133, 1133, 1133, 1133, 480: 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 489: 1133, 1133, 1133, 493: 1133, 1133, 496: 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 506: 1133, 1133, 509: 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 531: 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 565: 1133, 1133, 594: 1133}, - {9: 3590, 49: 3609}, - {1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 474: 1134, 1134, 1134, 1134, 1134, 480: 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 489: 1134, 1134, 1134, 493: 1134, 1134, 496: 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 506: 1134, 1134, 509: 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 531: 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 565: 1134, 1134, 594: 1134}, - {959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 474: 959, 959, 959, 959, 959, 480: 959, 959, 959, 959, 959, 959, 959, 959, 489: 959, 959, 959, 493: 959, 959, 496: 959, 959, 959, 959, 959, 959, 959, 959, 506: 959, 959, 509: 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 531: 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 565: 959, 959, 594: 959, 742: 3362, 747: 3554, 765: 3611}, - {1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 474: 1132, 1132, 1132, 1132, 1132, 480: 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 489: 1132, 1132, 1132, 493: 1132, 1132, 496: 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 506: 1132, 1132, 509: 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 531: 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 565: 1132, 1132, 594: 1132}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 2864, 2812, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 2893, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 2898, 2825, 2789, 2807, 2972, 3055, 3044, 2842, 2854, 2965, 2966, 2961, 2919, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 2900, 2885, 2881, 2973, 2997, 2783, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 2904, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 2823, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 2889, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 2890, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 2960, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 2848, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 2774, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 2906, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 2775, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3170, 2902, 3171, 3172, 2801, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3185, 3186, 3237, 3236, 3081, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 2942, 2959, 3082, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3203, 3204, 3205, 2955, 3156, 3215, 3216, 3227, 3211, 3212, 3213, 3246, 2901, 476: 3286, 478: 3265, 3284, 2778, 482: 3294, 485: 3298, 3302, 488: 3283, 3282, 3321, 495: 3256, 498: 3295, 507: 3301, 3319, 511: 3260, 533: 3290, 567: 3297, 570: 3320, 2776, 573: 3303, 3255, 3257, 3259, 3258, 3287, 3263, 3277, 3268, 3289, 3264, 585: 3296, 3288, 3293, 3299, 3309, 3362, 3310, 3311, 595: 3262, 3340, 598: 3280, 3281, 3335, 3336, 3337, 3338, 3339, 3291, 3317, 3322, 3332, 3333, 3326, 3341, 3342, 3343, 3327, 3345, 3346, 3328, 3344, 3323, 3331, 3329, 3315, 3347, 3348, 3292, 3352, 3304, 3305, 3308, 3351, 3357, 3356, 3358, 3355, 3359, 3354, 3353, 3350, 3300, 3349, 3307, 3306, 3312, 3313, 651: 2779, 664: 3270, 2785, 2786, 2784, 713: 3285, 3361, 3271, 3276, 3261, 3334, 3274, 3272, 3273, 3314, 3325, 3324, 3318, 3316, 3330, 3269, 3279, 3360, 3278, 3275, 2782, 2781, 2780, 3631}, + {50: 3629}, + {973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 477: 973, 973, 973, 973, 973, 483: 973, 973, 973, 973, 973, 973, 973, 973, 492: 973, 973, 973, 496: 973, 973, 499: 973, 973, 973, 973, 973, 973, 973, 973, 509: 973, 973, 512: 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 534: 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 568: 973, 973, 597: 973, 746: 3388, 751: 3580, 769: 3630}, + {1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 477: 1145, 1145, 1145, 1145, 1145, 483: 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 492: 1145, 1145, 1145, 496: 1145, 1145, 499: 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 509: 1145, 1145, 512: 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 534: 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 568: 1145, 1145, 597: 1145}, + {50: 3632, 510: 3371, 512: 3369, 3370, 3368, 3366, 738: 3367, 3365}, // 1075 - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 2840, 2788, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 2869, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 2874, 2801, 2766, 2783, 2948, 3031, 3020, 2818, 2830, 2941, 2942, 2937, 2895, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 2876, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 2760, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 2880, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 2799, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 2866, 2865, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 2936, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 2824, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 2751, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 2882, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 2752, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3144, 2878, 3145, 3146, 2777, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3159, 3160, 3211, 3210, 3057, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 2918, 2935, 3058, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3177, 3178, 3179, 2931, 3130, 3189, 3190, 3201, 3185, 3186, 3187, 3220, 2877, 473: 3260, 475: 3239, 3258, 2755, 479: 3268, 482: 3272, 3276, 485: 3257, 3256, 3295, 492: 3230, 495: 3269, 504: 3275, 3293, 508: 3234, 530: 3264, 564: 3271, 567: 3294, 2753, 570: 3277, 3229, 3231, 3233, 3232, 3261, 3237, 3251, 3242, 3263, 3238, 582: 3270, 3262, 3267, 3273, 3283, 3336, 3284, 3285, 592: 3236, 3314, 595: 3254, 3255, 3309, 3310, 3311, 3312, 3313, 3265, 3291, 3296, 3306, 3307, 3300, 3315, 3316, 3317, 3301, 3319, 3320, 3302, 3318, 3297, 3305, 3303, 3289, 3321, 3322, 3266, 3326, 3278, 3279, 3282, 3325, 3331, 3330, 3332, 3329, 3333, 3328, 3327, 3324, 3274, 3323, 3281, 3280, 3286, 3287, 648: 2756, 651: 3614, 661: 3244, 2762, 2763, 2761, 709: 3259, 3335, 3245, 3250, 3235, 3308, 3248, 3246, 3247, 3288, 3299, 3298, 3292, 3290, 3304, 3243, 3253, 3334, 3252, 3249, 2759, 2758, 2757, 3613}, - {49: 3618, 507: 3345, 509: 3343, 3344, 3342, 3340, 734: 3341, 3339}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 2840, 2788, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 2869, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 2874, 2801, 2766, 2783, 2948, 3031, 3020, 2818, 2830, 2941, 2942, 2937, 2895, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 2876, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 2760, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 2880, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 2799, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 2866, 2865, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 2936, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 2824, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 2751, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 2882, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 2752, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3144, 2878, 3145, 3146, 2777, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3159, 3160, 3211, 3210, 3057, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 2918, 2935, 3058, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3177, 3178, 3179, 2931, 3130, 3189, 3190, 3201, 3185, 3186, 3187, 3220, 2877, 473: 3260, 475: 3239, 3258, 2755, 479: 3268, 482: 3272, 3276, 485: 3257, 3256, 3295, 492: 3230, 495: 3269, 504: 3275, 3293, 508: 3234, 530: 3264, 564: 3271, 567: 3294, 2753, 570: 3277, 3229, 3231, 3233, 3232, 3261, 3237, 3251, 3242, 3263, 3238, 582: 3270, 3262, 3267, 3273, 3283, 3336, 3284, 3285, 592: 3236, 3314, 595: 3254, 3255, 3309, 3310, 3311, 3312, 3313, 3265, 3291, 3296, 3306, 3307, 3300, 3315, 3316, 3317, 3301, 3319, 3320, 3302, 3318, 3297, 3305, 3303, 3289, 3321, 3322, 3266, 3326, 3278, 3279, 3282, 3325, 3331, 3330, 3332, 3329, 3333, 3328, 3327, 3324, 3274, 3323, 3281, 3280, 3286, 3287, 648: 2756, 661: 3244, 2762, 2763, 2761, 709: 3259, 3335, 3245, 3250, 3235, 3308, 3248, 3246, 3247, 3288, 3299, 3298, 3292, 3290, 3304, 3243, 3253, 3334, 3252, 3249, 2759, 2758, 2757, 3615}, - {49: 3616, 507: 3345, 509: 3343, 3344, 3342, 3340, 734: 3341, 3339}, - {959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 474: 959, 959, 959, 959, 959, 480: 959, 959, 959, 959, 959, 959, 959, 959, 489: 959, 959, 959, 493: 959, 959, 496: 959, 959, 959, 959, 959, 959, 959, 959, 506: 959, 959, 509: 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 531: 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 565: 959, 959, 594: 959, 742: 3362, 747: 3554, 765: 3617}, + {973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 477: 973, 973, 973, 973, 973, 483: 973, 973, 973, 973, 973, 973, 973, 973, 492: 973, 973, 973, 496: 973, 973, 499: 973, 973, 973, 973, 973, 973, 973, 973, 509: 973, 973, 512: 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 534: 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 568: 973, 973, 597: 973, 746: 3388, 751: 3580, 769: 3633}, + {1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 477: 1147, 1147, 1147, 1147, 1147, 483: 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 492: 1147, 1147, 1147, 496: 1147, 1147, 499: 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 509: 1147, 1147, 512: 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 534: 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 568: 1147, 1147, 597: 1147}, + {9: 3616, 50: 3635}, + {1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 477: 1148, 1148, 1148, 1148, 1148, 483: 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 492: 1148, 1148, 1148, 496: 1148, 1148, 499: 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 509: 1148, 1148, 512: 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 534: 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 568: 1148, 1148, 597: 1148}, + {973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 477: 973, 973, 973, 973, 973, 483: 973, 973, 973, 973, 973, 973, 973, 973, 492: 973, 973, 973, 496: 973, 973, 499: 973, 973, 973, 973, 973, 973, 973, 973, 509: 973, 973, 512: 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 534: 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 568: 973, 973, 597: 973, 746: 3388, 751: 3580, 769: 3637}, // 1080 - {1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 474: 1135, 1135, 1135, 1135, 1135, 480: 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 489: 1135, 1135, 1135, 493: 1135, 1135, 496: 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 506: 1135, 1135, 509: 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 531: 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 565: 1135, 1135, 594: 1135}, - {959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 474: 959, 959, 959, 959, 959, 480: 959, 959, 959, 959, 959, 959, 959, 959, 489: 959, 959, 959, 493: 959, 959, 496: 959, 959, 959, 959, 959, 959, 959, 959, 506: 959, 959, 509: 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 531: 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 565: 959, 959, 594: 959, 742: 3362, 747: 3554, 765: 3619}, - {1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 474: 1136, 1136, 1136, 1136, 1136, 480: 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 489: 1136, 1136, 1136, 493: 1136, 1136, 496: 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 506: 1136, 1136, 509: 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 531: 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 565: 1136, 1136, 594: 1136}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 2840, 2788, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 2869, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 2874, 2801, 2766, 2783, 2948, 3031, 3020, 2818, 2830, 2941, 2942, 2937, 2895, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 2876, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 2760, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 2880, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 2799, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 2866, 2865, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 2936, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 2824, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 2751, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 2882, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 2752, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3144, 2878, 3145, 3146, 2777, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3159, 3160, 3211, 3210, 3057, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 2918, 2935, 3058, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3177, 3178, 3179, 2931, 3130, 3189, 3190, 3201, 3185, 3186, 3187, 3220, 2877, 473: 3260, 475: 3239, 3258, 2755, 479: 3268, 482: 3272, 3276, 485: 3257, 3256, 3295, 492: 3230, 495: 3269, 504: 3275, 3293, 508: 3234, 530: 3264, 564: 3271, 567: 3294, 2753, 570: 3277, 3229, 3231, 3233, 3232, 3261, 3237, 3251, 3242, 3263, 3238, 582: 3270, 3262, 3267, 3273, 3283, 3336, 3284, 3285, 592: 3236, 3314, 595: 3254, 3255, 3309, 3310, 3311, 3312, 3313, 3265, 3291, 3296, 3306, 3307, 3300, 3315, 3316, 3317, 3301, 3319, 3320, 3302, 3318, 3297, 3305, 3303, 3289, 3321, 3322, 3266, 3326, 3278, 3279, 3282, 3325, 3331, 3330, 3332, 3329, 3333, 3328, 3327, 3324, 3274, 3323, 3281, 3280, 3286, 3287, 648: 2756, 651: 3622, 661: 3244, 2762, 2763, 2761, 709: 3259, 3335, 3245, 3250, 3235, 3308, 3248, 3246, 3247, 3288, 3299, 3298, 3292, 3290, 3304, 3243, 3253, 3334, 3252, 3249, 2759, 2758, 2757, 3621}, - {49: 3626, 507: 3345, 509: 3343, 3344, 3342, 3340, 734: 3341, 3339}, + {1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 477: 1146, 1146, 1146, 1146, 1146, 483: 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 492: 1146, 1146, 1146, 496: 1146, 1146, 499: 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 509: 1146, 1146, 512: 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 534: 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 568: 1146, 1146, 597: 1146}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 2864, 2812, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 2893, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 2898, 2825, 2789, 2807, 2972, 3055, 3044, 2842, 2854, 2965, 2966, 2961, 2919, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 2900, 2885, 2881, 2973, 2997, 2783, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 2904, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 2823, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 2889, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 2890, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 2960, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 2848, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 2774, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 2906, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 2775, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3170, 2902, 3171, 3172, 2801, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3185, 3186, 3237, 3236, 3081, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 2942, 2959, 3082, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3203, 3204, 3205, 2955, 3156, 3215, 3216, 3227, 3211, 3212, 3213, 3246, 2901, 476: 3286, 478: 3265, 3284, 2778, 482: 3294, 485: 3298, 3302, 488: 3283, 3282, 3321, 495: 3256, 498: 3295, 507: 3301, 3319, 511: 3260, 533: 3290, 567: 3297, 570: 3320, 2776, 573: 3303, 3255, 3257, 3259, 3258, 3287, 3263, 3277, 3268, 3289, 3264, 585: 3296, 3288, 3293, 3299, 3309, 3362, 3310, 3311, 595: 3262, 3340, 598: 3280, 3281, 3335, 3336, 3337, 3338, 3339, 3291, 3317, 3322, 3332, 3333, 3326, 3341, 3342, 3343, 3327, 3345, 3346, 3328, 3344, 3323, 3331, 3329, 3315, 3347, 3348, 3292, 3352, 3304, 3305, 3308, 3351, 3357, 3356, 3358, 3355, 3359, 3354, 3353, 3350, 3300, 3349, 3307, 3306, 3312, 3313, 651: 2779, 654: 3640, 664: 3270, 2785, 2786, 2784, 713: 3285, 3361, 3271, 3276, 3261, 3334, 3274, 3272, 3273, 3314, 3325, 3324, 3318, 3316, 3330, 3269, 3279, 3360, 3278, 3275, 2782, 2781, 2780, 3639}, + {50: 3644, 510: 3371, 512: 3369, 3370, 3368, 3366, 738: 3367, 3365}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 2864, 2812, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 2893, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 2898, 2825, 2789, 2807, 2972, 3055, 3044, 2842, 2854, 2965, 2966, 2961, 2919, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 2900, 2885, 2881, 2973, 2997, 2783, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 2904, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 2823, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 2889, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 2890, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 2960, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 2848, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 2774, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 2906, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 2775, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3170, 2902, 3171, 3172, 2801, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3185, 3186, 3237, 3236, 3081, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 2942, 2959, 3082, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3203, 3204, 3205, 2955, 3156, 3215, 3216, 3227, 3211, 3212, 3213, 3246, 2901, 476: 3286, 478: 3265, 3284, 2778, 482: 3294, 485: 3298, 3302, 488: 3283, 3282, 3321, 495: 3256, 498: 3295, 507: 3301, 3319, 511: 3260, 533: 3290, 567: 3297, 570: 3320, 2776, 573: 3303, 3255, 3257, 3259, 3258, 3287, 3263, 3277, 3268, 3289, 3264, 585: 3296, 3288, 3293, 3299, 3309, 3362, 3310, 3311, 595: 3262, 3340, 598: 3280, 3281, 3335, 3336, 3337, 3338, 3339, 3291, 3317, 3322, 3332, 3333, 3326, 3341, 3342, 3343, 3327, 3345, 3346, 3328, 3344, 3323, 3331, 3329, 3315, 3347, 3348, 3292, 3352, 3304, 3305, 3308, 3351, 3357, 3356, 3358, 3355, 3359, 3354, 3353, 3350, 3300, 3349, 3307, 3306, 3312, 3313, 651: 2779, 664: 3270, 2785, 2786, 2784, 713: 3285, 3361, 3271, 3276, 3261, 3334, 3274, 3272, 3273, 3314, 3325, 3324, 3318, 3316, 3330, 3269, 3279, 3360, 3278, 3275, 2782, 2781, 2780, 3641}, + {50: 3642, 510: 3371, 512: 3369, 3370, 3368, 3366, 738: 3367, 3365}, // 1085 - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 2840, 2788, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 2869, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 2874, 2801, 2766, 2783, 2948, 3031, 3020, 2818, 2830, 2941, 2942, 2937, 2895, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 2876, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 2760, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 2880, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 2799, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 2866, 2865, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 2936, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 2824, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 2751, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 2882, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 2752, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3144, 2878, 3145, 3146, 2777, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3159, 3160, 3211, 3210, 3057, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 2918, 2935, 3058, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3177, 3178, 3179, 2931, 3130, 3189, 3190, 3201, 3185, 3186, 3187, 3220, 2877, 473: 3260, 475: 3239, 3258, 2755, 479: 3268, 482: 3272, 3276, 485: 3257, 3256, 3295, 492: 3230, 495: 3269, 504: 3275, 3293, 508: 3234, 530: 3264, 564: 3271, 567: 3294, 2753, 570: 3277, 3229, 3231, 3233, 3232, 3261, 3237, 3251, 3242, 3263, 3238, 582: 3270, 3262, 3267, 3273, 3283, 3336, 3284, 3285, 592: 3236, 3314, 595: 3254, 3255, 3309, 3310, 3311, 3312, 3313, 3265, 3291, 3296, 3306, 3307, 3300, 3315, 3316, 3317, 3301, 3319, 3320, 3302, 3318, 3297, 3305, 3303, 3289, 3321, 3322, 3266, 3326, 3278, 3279, 3282, 3325, 3331, 3330, 3332, 3329, 3333, 3328, 3327, 3324, 3274, 3323, 3281, 3280, 3286, 3287, 648: 2756, 661: 3244, 2762, 2763, 2761, 709: 3259, 3335, 3245, 3250, 3235, 3308, 3248, 3246, 3247, 3288, 3299, 3298, 3292, 3290, 3304, 3243, 3253, 3334, 3252, 3249, 2759, 2758, 2757, 3623}, - {49: 3624, 507: 3345, 509: 3343, 3344, 3342, 3340, 734: 3341, 3339}, - {959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 474: 959, 959, 959, 959, 959, 480: 959, 959, 959, 959, 959, 959, 959, 959, 489: 959, 959, 959, 493: 959, 959, 496: 959, 959, 959, 959, 959, 959, 959, 959, 506: 959, 959, 509: 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 531: 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 565: 959, 959, 594: 959, 742: 3362, 747: 3554, 765: 3625}, - {1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 474: 1137, 1137, 1137, 1137, 1137, 480: 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 489: 1137, 1137, 1137, 493: 1137, 1137, 496: 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 506: 1137, 1137, 509: 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 531: 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 1137, 565: 1137, 1137, 594: 1137}, - {959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 474: 959, 959, 959, 959, 959, 480: 959, 959, 959, 959, 959, 959, 959, 959, 489: 959, 959, 959, 493: 959, 959, 496: 959, 959, 959, 959, 959, 959, 959, 959, 506: 959, 959, 509: 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 531: 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 565: 959, 959, 594: 959, 742: 3362, 747: 3554, 765: 3627}, + {973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 477: 973, 973, 973, 973, 973, 483: 973, 973, 973, 973, 973, 973, 973, 973, 492: 973, 973, 973, 496: 973, 973, 499: 973, 973, 973, 973, 973, 973, 973, 973, 509: 973, 973, 512: 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 534: 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 568: 973, 973, 597: 973, 746: 3388, 751: 3580, 769: 3643}, + {1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 477: 1149, 1149, 1149, 1149, 1149, 483: 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 492: 1149, 1149, 1149, 496: 1149, 1149, 499: 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 509: 1149, 1149, 512: 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 534: 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 568: 1149, 1149, 597: 1149}, + {973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 477: 973, 973, 973, 973, 973, 483: 973, 973, 973, 973, 973, 973, 973, 973, 492: 973, 973, 973, 496: 973, 973, 499: 973, 973, 973, 973, 973, 973, 973, 973, 509: 973, 973, 512: 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 534: 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 568: 973, 973, 597: 973, 746: 3388, 751: 3580, 769: 3645}, + {1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 477: 1150, 1150, 1150, 1150, 1150, 483: 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 492: 1150, 1150, 1150, 496: 1150, 1150, 499: 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 509: 1150, 1150, 512: 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 534: 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 1150, 568: 1150, 1150, 597: 1150}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 2864, 2812, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 2893, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 2898, 2825, 2789, 2807, 2972, 3055, 3044, 2842, 2854, 2965, 2966, 2961, 2919, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 2900, 2885, 2881, 2973, 2997, 2783, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 2904, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 2823, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 2889, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 2890, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 2960, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 2848, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 2774, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 2906, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 2775, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3170, 2902, 3171, 3172, 2801, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3185, 3186, 3237, 3236, 3081, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 2942, 2959, 3082, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3203, 3204, 3205, 2955, 3156, 3215, 3216, 3227, 3211, 3212, 3213, 3246, 2901, 476: 3286, 478: 3265, 3284, 2778, 482: 3294, 485: 3298, 3302, 488: 3283, 3282, 3321, 495: 3256, 498: 3295, 507: 3301, 3319, 511: 3260, 533: 3290, 567: 3297, 570: 3320, 2776, 573: 3303, 3255, 3257, 3259, 3258, 3287, 3263, 3277, 3268, 3289, 3264, 585: 3296, 3288, 3293, 3299, 3309, 3362, 3310, 3311, 595: 3262, 3340, 598: 3280, 3281, 3335, 3336, 3337, 3338, 3339, 3291, 3317, 3322, 3332, 3333, 3326, 3341, 3342, 3343, 3327, 3345, 3346, 3328, 3344, 3323, 3331, 3329, 3315, 3347, 3348, 3292, 3352, 3304, 3305, 3308, 3351, 3357, 3356, 3358, 3355, 3359, 3354, 3353, 3350, 3300, 3349, 3307, 3306, 3312, 3313, 651: 2779, 654: 3648, 664: 3270, 2785, 2786, 2784, 713: 3285, 3361, 3271, 3276, 3261, 3334, 3274, 3272, 3273, 3314, 3325, 3324, 3318, 3316, 3330, 3269, 3279, 3360, 3278, 3275, 2782, 2781, 2780, 3647}, // 1090 - {1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 474: 1138, 1138, 1138, 1138, 1138, 480: 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 489: 1138, 1138, 1138, 493: 1138, 1138, 496: 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 506: 1138, 1138, 509: 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 531: 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 1138, 565: 1138, 1138, 594: 1138}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 2840, 2788, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 2869, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 2874, 2801, 2766, 2783, 2948, 3031, 3020, 2818, 2830, 2941, 2942, 2937, 2895, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 2876, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 2760, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 2880, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 2799, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 2866, 2865, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 2936, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 2824, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 2751, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 2882, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 2752, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3144, 2878, 3145, 3146, 2777, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3159, 3160, 3211, 3210, 3057, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 2918, 2935, 3058, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3177, 3178, 3179, 2931, 3130, 3189, 3190, 3201, 3185, 3186, 3187, 3220, 2877, 473: 3260, 475: 3239, 3258, 2755, 479: 3268, 482: 3272, 3276, 485: 3257, 3256, 3295, 492: 3230, 495: 3269, 504: 3275, 3293, 508: 3234, 530: 3264, 564: 3271, 567: 3294, 2753, 570: 3277, 3229, 3231, 3233, 3232, 3261, 3237, 3251, 3242, 3263, 3238, 582: 3270, 3262, 3267, 3273, 3283, 3336, 3284, 3285, 592: 3236, 3314, 595: 3254, 3255, 3309, 3310, 3311, 3312, 3313, 3265, 3291, 3296, 3306, 3307, 3300, 3315, 3316, 3317, 3301, 3319, 3320, 3302, 3318, 3297, 3305, 3303, 3289, 3321, 3322, 3266, 3326, 3278, 3279, 3282, 3325, 3331, 3330, 3332, 3329, 3333, 3328, 3327, 3324, 3274, 3323, 3281, 3280, 3286, 3287, 648: 2756, 651: 3630, 661: 3244, 2762, 2763, 2761, 709: 3259, 3335, 3245, 3250, 3235, 3308, 3248, 3246, 3247, 3288, 3299, 3298, 3292, 3290, 3304, 3243, 3253, 3334, 3252, 3249, 2759, 2758, 2757, 3629}, - {49: 3634, 507: 3345, 509: 3343, 3344, 3342, 3340, 734: 3341, 3339}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 2840, 2788, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 2869, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 2874, 2801, 2766, 2783, 2948, 3031, 3020, 2818, 2830, 2941, 2942, 2937, 2895, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 2876, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 2760, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 2880, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 2799, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 2866, 2865, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 2936, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 2824, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 2751, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 2882, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 2752, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3144, 2878, 3145, 3146, 2777, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3159, 3160, 3211, 3210, 3057, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 2918, 2935, 3058, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3177, 3178, 3179, 2931, 3130, 3189, 3190, 3201, 3185, 3186, 3187, 3220, 2877, 473: 3260, 475: 3239, 3258, 2755, 479: 3268, 482: 3272, 3276, 485: 3257, 3256, 3295, 492: 3230, 495: 3269, 504: 3275, 3293, 508: 3234, 530: 3264, 564: 3271, 567: 3294, 2753, 570: 3277, 3229, 3231, 3233, 3232, 3261, 3237, 3251, 3242, 3263, 3238, 582: 3270, 3262, 3267, 3273, 3283, 3336, 3284, 3285, 592: 3236, 3314, 595: 3254, 3255, 3309, 3310, 3311, 3312, 3313, 3265, 3291, 3296, 3306, 3307, 3300, 3315, 3316, 3317, 3301, 3319, 3320, 3302, 3318, 3297, 3305, 3303, 3289, 3321, 3322, 3266, 3326, 3278, 3279, 3282, 3325, 3331, 3330, 3332, 3329, 3333, 3328, 3327, 3324, 3274, 3323, 3281, 3280, 3286, 3287, 648: 2756, 661: 3244, 2762, 2763, 2761, 709: 3259, 3335, 3245, 3250, 3235, 3308, 3248, 3246, 3247, 3288, 3299, 3298, 3292, 3290, 3304, 3243, 3253, 3334, 3252, 3249, 2759, 2758, 2757, 3631}, - {49: 3632, 507: 3345, 509: 3343, 3344, 3342, 3340, 734: 3341, 3339}, + {50: 3652, 510: 3371, 512: 3369, 3370, 3368, 3366, 738: 3367, 3365}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 2864, 2812, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 2893, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 2898, 2825, 2789, 2807, 2972, 3055, 3044, 2842, 2854, 2965, 2966, 2961, 2919, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 2900, 2885, 2881, 2973, 2997, 2783, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 2904, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 2823, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 2889, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 2890, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 2960, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 2848, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 2774, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 2906, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 2775, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3170, 2902, 3171, 3172, 2801, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3185, 3186, 3237, 3236, 3081, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 2942, 2959, 3082, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3203, 3204, 3205, 2955, 3156, 3215, 3216, 3227, 3211, 3212, 3213, 3246, 2901, 476: 3286, 478: 3265, 3284, 2778, 482: 3294, 485: 3298, 3302, 488: 3283, 3282, 3321, 495: 3256, 498: 3295, 507: 3301, 3319, 511: 3260, 533: 3290, 567: 3297, 570: 3320, 2776, 573: 3303, 3255, 3257, 3259, 3258, 3287, 3263, 3277, 3268, 3289, 3264, 585: 3296, 3288, 3293, 3299, 3309, 3362, 3310, 3311, 595: 3262, 3340, 598: 3280, 3281, 3335, 3336, 3337, 3338, 3339, 3291, 3317, 3322, 3332, 3333, 3326, 3341, 3342, 3343, 3327, 3345, 3346, 3328, 3344, 3323, 3331, 3329, 3315, 3347, 3348, 3292, 3352, 3304, 3305, 3308, 3351, 3357, 3356, 3358, 3355, 3359, 3354, 3353, 3350, 3300, 3349, 3307, 3306, 3312, 3313, 651: 2779, 664: 3270, 2785, 2786, 2784, 713: 3285, 3361, 3271, 3276, 3261, 3334, 3274, 3272, 3273, 3314, 3325, 3324, 3318, 3316, 3330, 3269, 3279, 3360, 3278, 3275, 2782, 2781, 2780, 3649}, + {50: 3650, 510: 3371, 512: 3369, 3370, 3368, 3366, 738: 3367, 3365}, + {973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 477: 973, 973, 973, 973, 973, 483: 973, 973, 973, 973, 973, 973, 973, 973, 492: 973, 973, 973, 496: 973, 973, 499: 973, 973, 973, 973, 973, 973, 973, 973, 509: 973, 973, 512: 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 534: 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 568: 973, 973, 597: 973, 746: 3388, 751: 3580, 769: 3651}, + {1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 477: 1151, 1151, 1151, 1151, 1151, 483: 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 492: 1151, 1151, 1151, 496: 1151, 1151, 499: 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 509: 1151, 1151, 512: 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 534: 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 1151, 568: 1151, 1151, 597: 1151}, // 1095 - {959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 474: 959, 959, 959, 959, 959, 480: 959, 959, 959, 959, 959, 959, 959, 959, 489: 959, 959, 959, 493: 959, 959, 496: 959, 959, 959, 959, 959, 959, 959, 959, 506: 959, 959, 509: 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 531: 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 565: 959, 959, 594: 959, 742: 3362, 747: 3554, 765: 3633}, - {1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 474: 1139, 1139, 1139, 1139, 1139, 480: 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 489: 1139, 1139, 1139, 493: 1139, 1139, 496: 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 506: 1139, 1139, 509: 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 531: 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 1139, 565: 1139, 1139, 594: 1139}, - {959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 474: 959, 959, 959, 959, 959, 480: 959, 959, 959, 959, 959, 959, 959, 959, 489: 959, 959, 959, 493: 959, 959, 496: 959, 959, 959, 959, 959, 959, 959, 959, 506: 959, 959, 509: 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 531: 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 565: 959, 959, 594: 959, 742: 3362, 747: 3554, 765: 3635}, - {1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 474: 1140, 1140, 1140, 1140, 1140, 480: 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 489: 1140, 1140, 1140, 493: 1140, 1140, 496: 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 506: 1140, 1140, 509: 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 531: 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 1140, 565: 1140, 1140, 594: 1140}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 2840, 2788, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 2869, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 2874, 2801, 2766, 2783, 2948, 3031, 3020, 2818, 2830, 2941, 2942, 2937, 2895, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 2876, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 2760, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 2880, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 2799, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 2866, 2865, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 2936, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 2824, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 2751, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 2882, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 2752, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3144, 2878, 3145, 3146, 2777, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3159, 3160, 3211, 3210, 3057, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 2918, 2935, 3058, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3177, 3178, 3179, 2931, 3130, 3189, 3190, 3201, 3185, 3186, 3187, 3220, 2877, 473: 3260, 475: 3239, 3258, 2755, 479: 3268, 482: 3272, 3276, 485: 3257, 3256, 3295, 492: 3230, 495: 3269, 504: 3275, 3293, 508: 3234, 530: 3264, 564: 3271, 567: 3294, 2753, 570: 3277, 3229, 3231, 3233, 3232, 3261, 3237, 3251, 3242, 3263, 3238, 582: 3270, 3262, 3267, 3273, 3283, 3336, 3284, 3285, 592: 3236, 3314, 595: 3254, 3255, 3309, 3310, 3311, 3312, 3313, 3265, 3291, 3296, 3306, 3307, 3300, 3315, 3316, 3317, 3301, 3319, 3320, 3302, 3318, 3297, 3305, 3303, 3289, 3321, 3322, 3266, 3326, 3278, 3279, 3282, 3325, 3331, 3330, 3332, 3329, 3333, 3328, 3327, 3324, 3274, 3323, 3281, 3280, 3286, 3287, 648: 2756, 661: 3244, 2762, 2763, 2761, 709: 3259, 3335, 3245, 3250, 3235, 3308, 3248, 3246, 3247, 3288, 3299, 3298, 3292, 3290, 3304, 3243, 3253, 3334, 3252, 3249, 2759, 2758, 2757, 3588, 778: 3637}, + {973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 477: 973, 973, 973, 973, 973, 483: 973, 973, 973, 973, 973, 973, 973, 973, 492: 973, 973, 973, 496: 973, 973, 499: 973, 973, 973, 973, 973, 973, 973, 973, 509: 973, 973, 512: 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 534: 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 568: 973, 973, 597: 973, 746: 3388, 751: 3580, 769: 3653}, + {1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 477: 1152, 1152, 1152, 1152, 1152, 483: 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 492: 1152, 1152, 1152, 496: 1152, 1152, 499: 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 509: 1152, 1152, 512: 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 534: 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 1152, 568: 1152, 1152, 597: 1152}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 2864, 2812, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 2893, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 2898, 2825, 2789, 2807, 2972, 3055, 3044, 2842, 2854, 2965, 2966, 2961, 2919, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 2900, 2885, 2881, 2973, 2997, 2783, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 2904, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 2823, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 2889, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 2890, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 2960, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 2848, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 2774, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 2906, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 2775, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3170, 2902, 3171, 3172, 2801, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3185, 3186, 3237, 3236, 3081, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 2942, 2959, 3082, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3203, 3204, 3205, 2955, 3156, 3215, 3216, 3227, 3211, 3212, 3213, 3246, 2901, 476: 3286, 478: 3265, 3284, 2778, 482: 3294, 485: 3298, 3302, 488: 3283, 3282, 3321, 495: 3256, 498: 3295, 507: 3301, 3319, 511: 3260, 533: 3290, 567: 3297, 570: 3320, 2776, 573: 3303, 3255, 3257, 3259, 3258, 3287, 3263, 3277, 3268, 3289, 3264, 585: 3296, 3288, 3293, 3299, 3309, 3362, 3310, 3311, 595: 3262, 3340, 598: 3280, 3281, 3335, 3336, 3337, 3338, 3339, 3291, 3317, 3322, 3332, 3333, 3326, 3341, 3342, 3343, 3327, 3345, 3346, 3328, 3344, 3323, 3331, 3329, 3315, 3347, 3348, 3292, 3352, 3304, 3305, 3308, 3351, 3357, 3356, 3358, 3355, 3359, 3354, 3353, 3350, 3300, 3349, 3307, 3306, 3312, 3313, 651: 2779, 654: 3656, 664: 3270, 2785, 2786, 2784, 713: 3285, 3361, 3271, 3276, 3261, 3334, 3274, 3272, 3273, 3314, 3325, 3324, 3318, 3316, 3330, 3269, 3279, 3360, 3278, 3275, 2782, 2781, 2780, 3655}, + {50: 3660, 510: 3371, 512: 3369, 3370, 3368, 3366, 738: 3367, 3365}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 2864, 2812, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 2893, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 2898, 2825, 2789, 2807, 2972, 3055, 3044, 2842, 2854, 2965, 2966, 2961, 2919, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 2900, 2885, 2881, 2973, 2997, 2783, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 2904, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 2823, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 2889, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 2890, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 2960, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 2848, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 2774, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 2906, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 2775, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3170, 2902, 3171, 3172, 2801, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3185, 3186, 3237, 3236, 3081, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 2942, 2959, 3082, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3203, 3204, 3205, 2955, 3156, 3215, 3216, 3227, 3211, 3212, 3213, 3246, 2901, 476: 3286, 478: 3265, 3284, 2778, 482: 3294, 485: 3298, 3302, 488: 3283, 3282, 3321, 495: 3256, 498: 3295, 507: 3301, 3319, 511: 3260, 533: 3290, 567: 3297, 570: 3320, 2776, 573: 3303, 3255, 3257, 3259, 3258, 3287, 3263, 3277, 3268, 3289, 3264, 585: 3296, 3288, 3293, 3299, 3309, 3362, 3310, 3311, 595: 3262, 3340, 598: 3280, 3281, 3335, 3336, 3337, 3338, 3339, 3291, 3317, 3322, 3332, 3333, 3326, 3341, 3342, 3343, 3327, 3345, 3346, 3328, 3344, 3323, 3331, 3329, 3315, 3347, 3348, 3292, 3352, 3304, 3305, 3308, 3351, 3357, 3356, 3358, 3355, 3359, 3354, 3353, 3350, 3300, 3349, 3307, 3306, 3312, 3313, 651: 2779, 664: 3270, 2785, 2786, 2784, 713: 3285, 3361, 3271, 3276, 3261, 3334, 3274, 3272, 3273, 3314, 3325, 3324, 3318, 3316, 3330, 3269, 3279, 3360, 3278, 3275, 2782, 2781, 2780, 3657}, // 1100 - {9: 3590, 49: 3638}, - {1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 474: 1141, 1141, 1141, 1141, 1141, 480: 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 489: 1141, 1141, 1141, 493: 1141, 1141, 496: 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 506: 1141, 1141, 509: 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 531: 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 1141, 565: 1141, 1141, 594: 1141}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 2840, 2788, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 2869, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 2874, 2801, 2766, 2783, 2948, 3031, 3020, 2818, 2830, 2941, 2942, 2937, 2895, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 2876, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 2760, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 2880, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 2799, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 2866, 2865, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 2936, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 2824, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 2751, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 2882, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 2752, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3144, 2878, 3145, 3146, 2777, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3159, 3160, 3211, 3210, 3057, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 2918, 2935, 3058, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3177, 3178, 3179, 2931, 3130, 3189, 3190, 3201, 3185, 3186, 3187, 3220, 2877, 473: 3260, 475: 3239, 3258, 2755, 479: 3268, 482: 3272, 3276, 485: 3257, 3256, 3295, 492: 3230, 495: 3269, 504: 3275, 3293, 508: 3234, 530: 3264, 564: 3271, 567: 3294, 2753, 570: 3277, 3229, 3231, 3233, 3232, 3261, 3237, 3251, 3242, 3263, 3238, 582: 3270, 3262, 3267, 3273, 3283, 3336, 3284, 3285, 592: 3236, 3314, 595: 3254, 3255, 3309, 3310, 3311, 3312, 3313, 3265, 3291, 3296, 3306, 3307, 3300, 3315, 3316, 3317, 3301, 3319, 3320, 3302, 3318, 3297, 3305, 3303, 3289, 3321, 3322, 3266, 3326, 3278, 3279, 3282, 3325, 3331, 3330, 3332, 3329, 3333, 3328, 3327, 3324, 3274, 3323, 3281, 3280, 3286, 3287, 648: 2756, 661: 3244, 2762, 2763, 2761, 709: 3259, 3335, 3245, 3250, 3235, 3308, 3248, 3246, 3247, 3288, 3299, 3298, 3292, 3290, 3304, 3243, 3253, 3334, 3252, 3249, 2759, 2758, 2757, 3588, 778: 3640}, - {9: 3590, 49: 3641}, - {1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 474: 1142, 1142, 1142, 1142, 1142, 480: 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 489: 1142, 1142, 1142, 493: 1142, 1142, 496: 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 506: 1142, 1142, 509: 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 531: 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 1142, 565: 1142, 1142, 594: 1142}, + {50: 3658, 510: 3371, 512: 3369, 3370, 3368, 3366, 738: 3367, 3365}, + {973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 477: 973, 973, 973, 973, 973, 483: 973, 973, 973, 973, 973, 973, 973, 973, 492: 973, 973, 973, 496: 973, 973, 499: 973, 973, 973, 973, 973, 973, 973, 973, 509: 973, 973, 512: 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 534: 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 568: 973, 973, 597: 973, 746: 3388, 751: 3580, 769: 3659}, + {1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 477: 1153, 1153, 1153, 1153, 1153, 483: 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 492: 1153, 1153, 1153, 496: 1153, 1153, 499: 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 509: 1153, 1153, 512: 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 534: 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 1153, 568: 1153, 1153, 597: 1153}, + {973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 477: 973, 973, 973, 973, 973, 483: 973, 973, 973, 973, 973, 973, 973, 973, 492: 973, 973, 973, 496: 973, 973, 499: 973, 973, 973, 973, 973, 973, 973, 973, 509: 973, 973, 512: 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 534: 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 568: 973, 973, 597: 973, 746: 3388, 751: 3580, 769: 3661}, + {1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 477: 1154, 1154, 1154, 1154, 1154, 483: 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 492: 1154, 1154, 1154, 496: 1154, 1154, 499: 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 509: 1154, 1154, 512: 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 534: 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 1154, 568: 1154, 1154, 597: 1154}, // 1105 - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 2840, 2788, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 2869, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 2874, 2801, 2766, 2783, 2948, 3031, 3020, 2818, 2830, 2941, 2942, 2937, 2895, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 2876, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 2760, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 2880, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 2799, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 2866, 2865, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 2936, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 2824, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 2751, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 2882, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 2752, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3144, 2878, 3145, 3146, 2777, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3159, 3160, 3211, 3210, 3057, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 2918, 2935, 3058, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3177, 3178, 3179, 2931, 3130, 3189, 3190, 3201, 3185, 3186, 3187, 3220, 2877, 473: 3260, 475: 3239, 3258, 2755, 479: 3268, 482: 3272, 3276, 485: 3257, 3256, 3295, 492: 3230, 495: 3269, 504: 3275, 3293, 508: 3234, 530: 3264, 564: 3271, 567: 3294, 2753, 570: 3277, 3229, 3231, 3233, 3232, 3261, 3237, 3251, 3242, 3263, 3238, 582: 3270, 3262, 3267, 3273, 3283, 3336, 3284, 3285, 592: 3236, 3314, 595: 3254, 3255, 3309, 3310, 3311, 3312, 3313, 3265, 3291, 3296, 3306, 3307, 3300, 3315, 3316, 3317, 3301, 3319, 3320, 3302, 3318, 3297, 3305, 3303, 3289, 3321, 3322, 3266, 3326, 3278, 3279, 3282, 3325, 3331, 3330, 3332, 3329, 3333, 3328, 3327, 3324, 3274, 3323, 3281, 3280, 3286, 3287, 648: 2756, 661: 3244, 2762, 2763, 2761, 709: 3259, 3335, 3245, 3250, 3235, 3308, 3248, 3246, 3247, 3288, 3299, 3298, 3292, 3290, 3304, 3243, 3253, 3334, 3252, 3249, 2759, 2758, 2757, 3643}, - {9: 3644, 507: 3345, 509: 3343, 3344, 3342, 3340, 734: 3341, 3339}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 2840, 2788, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 2869, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 2874, 2801, 2766, 2783, 2948, 3031, 3020, 2818, 2830, 2941, 2942, 2937, 2895, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 2876, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 2760, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 2880, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 2799, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 2866, 2865, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 2936, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 2824, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 2751, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 2882, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 2752, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3144, 2878, 3145, 3146, 2777, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3159, 3160, 3211, 3210, 3057, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 2918, 2935, 3058, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3177, 3178, 3179, 2931, 3130, 3189, 3190, 3201, 3185, 3186, 3187, 3220, 2877, 473: 3260, 475: 3239, 3258, 2755, 479: 3268, 482: 3272, 3276, 485: 3257, 3256, 3295, 492: 3230, 495: 3269, 504: 3275, 3293, 508: 3234, 530: 3264, 564: 3271, 567: 3294, 2753, 570: 3277, 3229, 3231, 3233, 3232, 3261, 3237, 3251, 3242, 3263, 3238, 582: 3270, 3262, 3267, 3273, 3283, 3336, 3284, 3285, 592: 3236, 3314, 595: 3254, 3255, 3309, 3310, 3311, 3312, 3313, 3265, 3291, 3296, 3306, 3307, 3300, 3315, 3316, 3317, 3301, 3319, 3320, 3302, 3318, 3297, 3305, 3303, 3289, 3321, 3322, 3266, 3326, 3278, 3279, 3282, 3325, 3331, 3330, 3332, 3329, 3333, 3328, 3327, 3324, 3274, 3323, 3281, 3280, 3286, 3287, 648: 2756, 661: 3244, 2762, 2763, 2761, 709: 3259, 3335, 3245, 3250, 3235, 3308, 3248, 3246, 3247, 3288, 3299, 3298, 3292, 3290, 3304, 3243, 3253, 3334, 3252, 3249, 2759, 2758, 2757, 3645}, - {9: 3646, 507: 3345, 509: 3343, 3344, 3342, 3340, 734: 3341, 3339}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 2840, 2788, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 2869, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 2874, 2801, 2766, 2783, 2948, 3031, 3020, 2818, 2830, 2941, 2942, 2937, 2895, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 2876, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 2760, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 2880, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 2799, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 2866, 2865, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 2936, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 2824, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 2751, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 2882, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 2752, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3144, 2878, 3145, 3146, 2777, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3159, 3160, 3211, 3210, 3057, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 2918, 2935, 3058, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3177, 3178, 3179, 2931, 3130, 3189, 3190, 3201, 3185, 3186, 3187, 3220, 2877, 473: 3260, 475: 3239, 3258, 2755, 479: 3268, 482: 3272, 3276, 485: 3257, 3256, 3295, 492: 3230, 495: 3269, 504: 3275, 3293, 508: 3234, 530: 3264, 564: 3271, 567: 3294, 2753, 570: 3277, 3229, 3231, 3233, 3232, 3261, 3237, 3251, 3242, 3263, 3238, 582: 3270, 3262, 3267, 3273, 3283, 3336, 3284, 3285, 592: 3236, 3314, 595: 3254, 3255, 3309, 3310, 3311, 3312, 3313, 3265, 3291, 3296, 3306, 3307, 3300, 3315, 3316, 3317, 3301, 3319, 3320, 3302, 3318, 3297, 3305, 3303, 3289, 3321, 3322, 3266, 3326, 3278, 3279, 3282, 3325, 3331, 3330, 3332, 3329, 3333, 3328, 3327, 3324, 3274, 3323, 3281, 3280, 3286, 3287, 648: 2756, 661: 3244, 2762, 2763, 2761, 709: 3259, 3335, 3245, 3250, 3235, 3308, 3248, 3246, 3247, 3288, 3299, 3298, 3292, 3290, 3304, 3243, 3253, 3334, 3252, 3249, 2759, 2758, 2757, 3647}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 2864, 2812, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 2893, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 2898, 2825, 2789, 2807, 2972, 3055, 3044, 2842, 2854, 2965, 2966, 2961, 2919, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 2900, 2885, 2881, 2973, 2997, 2783, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 2904, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 2823, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 2889, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 2890, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 2960, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 2848, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 2774, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 2906, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 2775, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3170, 2902, 3171, 3172, 2801, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3185, 3186, 3237, 3236, 3081, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 2942, 2959, 3082, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3203, 3204, 3205, 2955, 3156, 3215, 3216, 3227, 3211, 3212, 3213, 3246, 2901, 476: 3286, 478: 3265, 3284, 2778, 482: 3294, 485: 3298, 3302, 488: 3283, 3282, 3321, 495: 3256, 498: 3295, 507: 3301, 3319, 511: 3260, 533: 3290, 567: 3297, 570: 3320, 2776, 573: 3303, 3255, 3257, 3259, 3258, 3287, 3263, 3277, 3268, 3289, 3264, 585: 3296, 3288, 3293, 3299, 3309, 3362, 3310, 3311, 595: 3262, 3340, 598: 3280, 3281, 3335, 3336, 3337, 3338, 3339, 3291, 3317, 3322, 3332, 3333, 3326, 3341, 3342, 3343, 3327, 3345, 3346, 3328, 3344, 3323, 3331, 3329, 3315, 3347, 3348, 3292, 3352, 3304, 3305, 3308, 3351, 3357, 3356, 3358, 3355, 3359, 3354, 3353, 3350, 3300, 3349, 3307, 3306, 3312, 3313, 651: 2779, 664: 3270, 2785, 2786, 2784, 713: 3285, 3361, 3271, 3276, 3261, 3334, 3274, 3272, 3273, 3314, 3325, 3324, 3318, 3316, 3330, 3269, 3279, 3360, 3278, 3275, 2782, 2781, 2780, 3614, 782: 3663}, + {9: 3616, 50: 3664}, + {1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 477: 1155, 1155, 1155, 1155, 1155, 483: 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 492: 1155, 1155, 1155, 496: 1155, 1155, 499: 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 509: 1155, 1155, 512: 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 534: 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 1155, 568: 1155, 1155, 597: 1155}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 2864, 2812, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 2893, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 2898, 2825, 2789, 2807, 2972, 3055, 3044, 2842, 2854, 2965, 2966, 2961, 2919, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 2900, 2885, 2881, 2973, 2997, 2783, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 2904, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 2823, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 2889, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 2890, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 2960, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 2848, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 2774, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 2906, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 2775, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3170, 2902, 3171, 3172, 2801, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3185, 3186, 3237, 3236, 3081, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 2942, 2959, 3082, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3203, 3204, 3205, 2955, 3156, 3215, 3216, 3227, 3211, 3212, 3213, 3246, 2901, 476: 3286, 478: 3265, 3284, 2778, 482: 3294, 485: 3298, 3302, 488: 3283, 3282, 3321, 495: 3256, 498: 3295, 507: 3301, 3319, 511: 3260, 533: 3290, 567: 3297, 570: 3320, 2776, 573: 3303, 3255, 3257, 3259, 3258, 3287, 3263, 3277, 3268, 3289, 3264, 585: 3296, 3288, 3293, 3299, 3309, 3362, 3310, 3311, 595: 3262, 3340, 598: 3280, 3281, 3335, 3336, 3337, 3338, 3339, 3291, 3317, 3322, 3332, 3333, 3326, 3341, 3342, 3343, 3327, 3345, 3346, 3328, 3344, 3323, 3331, 3329, 3315, 3347, 3348, 3292, 3352, 3304, 3305, 3308, 3351, 3357, 3356, 3358, 3355, 3359, 3354, 3353, 3350, 3300, 3349, 3307, 3306, 3312, 3313, 651: 2779, 664: 3270, 2785, 2786, 2784, 713: 3285, 3361, 3271, 3276, 3261, 3334, 3274, 3272, 3273, 3314, 3325, 3324, 3318, 3316, 3330, 3269, 3279, 3360, 3278, 3275, 2782, 2781, 2780, 3614, 782: 3666}, + {9: 3616, 50: 3667}, // 1110 - {49: 3648, 507: 3345, 509: 3343, 3344, 3342, 3340, 734: 3341, 3339}, - {1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 474: 1158, 1158, 1158, 1158, 1158, 480: 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 489: 1158, 1158, 1158, 493: 1158, 1158, 496: 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 506: 1158, 1158, 509: 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 531: 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 1158, 565: 1158, 1158, 594: 1158}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 2840, 2788, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 2869, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 2874, 2801, 2766, 2783, 2948, 3031, 3020, 2818, 2830, 2941, 2942, 2937, 2895, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 2876, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 2760, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 2880, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 2799, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 2866, 2865, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 2936, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 2824, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 2751, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 2882, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 2752, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3144, 2878, 3145, 3146, 2777, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3159, 3160, 3211, 3210, 3057, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 2918, 2935, 3058, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3177, 3178, 3179, 2931, 3130, 3189, 3190, 3201, 3185, 3186, 3187, 3220, 2877, 473: 3260, 475: 3239, 3258, 2755, 479: 3268, 482: 3272, 3276, 485: 3257, 3256, 3295, 492: 3230, 495: 3269, 504: 3275, 3293, 508: 3234, 530: 3264, 564: 3271, 567: 3294, 2753, 570: 3277, 3229, 3231, 3233, 3232, 3261, 3237, 3251, 3242, 3263, 3238, 582: 3270, 3262, 3267, 3273, 3283, 3336, 3284, 3285, 592: 3236, 3314, 595: 3254, 3255, 3309, 3310, 3311, 3312, 3313, 3265, 3291, 3296, 3306, 3307, 3300, 3315, 3316, 3317, 3301, 3319, 3320, 3302, 3318, 3297, 3305, 3303, 3289, 3321, 3322, 3266, 3326, 3278, 3279, 3282, 3325, 3331, 3330, 3332, 3329, 3333, 3328, 3327, 3324, 3274, 3323, 3281, 3280, 3286, 3287, 648: 2756, 661: 3244, 2762, 2763, 2761, 709: 3259, 3335, 3245, 3250, 3235, 3308, 3248, 3246, 3247, 3288, 3299, 3298, 3292, 3290, 3304, 3243, 3253, 3334, 3252, 3249, 2759, 2758, 2757, 3650, 1185: 3652, 1241: 3653, 1328: 3654, 3651}, - {49: 3662, 500: 3663, 507: 3345, 509: 3343, 3344, 3342, 3340, 734: 3341, 3339}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 2840, 2788, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 2869, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 2874, 2801, 2766, 2783, 2948, 3031, 3020, 2818, 2830, 2941, 2942, 2937, 2895, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 2876, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 2760, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 2880, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 2799, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 2866, 2865, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 2936, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 2824, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 2751, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 2882, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 2752, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3144, 2878, 3145, 3146, 2777, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3159, 3160, 3211, 3210, 3057, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 2918, 2935, 3058, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3177, 3178, 3179, 2931, 3130, 3189, 3190, 3201, 3185, 3186, 3187, 3220, 2877, 473: 3260, 475: 3239, 3258, 2755, 479: 3268, 482: 3272, 3276, 485: 3257, 3256, 3295, 492: 3230, 495: 3269, 500: 3656, 504: 3275, 3293, 508: 3234, 530: 3264, 564: 3271, 567: 3294, 2753, 570: 3277, 3229, 3231, 3233, 3232, 3261, 3237, 3251, 3242, 3263, 3238, 582: 3270, 3262, 3267, 3273, 3283, 3336, 3284, 3285, 592: 3236, 3314, 595: 3254, 3255, 3309, 3310, 3311, 3312, 3313, 3265, 3291, 3296, 3306, 3307, 3300, 3315, 3316, 3317, 3301, 3319, 3320, 3302, 3318, 3297, 3305, 3303, 3289, 3321, 3322, 3266, 3326, 3278, 3279, 3282, 3325, 3331, 3330, 3332, 3329, 3333, 3328, 3327, 3324, 3274, 3323, 3281, 3280, 3286, 3287, 648: 2756, 661: 3244, 2762, 2763, 2761, 709: 3259, 3335, 3245, 3250, 3235, 3308, 3248, 3246, 3247, 3288, 3299, 3298, 3292, 3290, 3304, 3243, 3253, 3334, 3252, 3249, 2759, 2758, 2757, 3655}, + {1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 477: 1156, 1156, 1156, 1156, 1156, 483: 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 492: 1156, 1156, 1156, 496: 1156, 1156, 499: 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 509: 1156, 1156, 512: 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 534: 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 1156, 568: 1156, 1156, 597: 1156}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 2864, 2812, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 2893, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 2898, 2825, 2789, 2807, 2972, 3055, 3044, 2842, 2854, 2965, 2966, 2961, 2919, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 2900, 2885, 2881, 2973, 2997, 2783, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 2904, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 2823, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 2889, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 2890, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 2960, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 2848, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 2774, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 2906, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 2775, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3170, 2902, 3171, 3172, 2801, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3185, 3186, 3237, 3236, 3081, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 2942, 2959, 3082, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3203, 3204, 3205, 2955, 3156, 3215, 3216, 3227, 3211, 3212, 3213, 3246, 2901, 476: 3286, 478: 3265, 3284, 2778, 482: 3294, 485: 3298, 3302, 488: 3283, 3282, 3321, 495: 3256, 498: 3295, 507: 3301, 3319, 511: 3260, 533: 3290, 567: 3297, 570: 3320, 2776, 573: 3303, 3255, 3257, 3259, 3258, 3287, 3263, 3277, 3268, 3289, 3264, 585: 3296, 3288, 3293, 3299, 3309, 3362, 3310, 3311, 595: 3262, 3340, 598: 3280, 3281, 3335, 3336, 3337, 3338, 3339, 3291, 3317, 3322, 3332, 3333, 3326, 3341, 3342, 3343, 3327, 3345, 3346, 3328, 3344, 3323, 3331, 3329, 3315, 3347, 3348, 3292, 3352, 3304, 3305, 3308, 3351, 3357, 3356, 3358, 3355, 3359, 3354, 3353, 3350, 3300, 3349, 3307, 3306, 3312, 3313, 651: 2779, 664: 3270, 2785, 2786, 2784, 713: 3285, 3361, 3271, 3276, 3261, 3334, 3274, 3272, 3273, 3314, 3325, 3324, 3318, 3316, 3330, 3269, 3279, 3360, 3278, 3275, 2782, 2781, 2780, 3669}, + {9: 3670, 510: 3371, 512: 3369, 3370, 3368, 3366, 738: 3367, 3365}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 2864, 2812, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 2893, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 2898, 2825, 2789, 2807, 2972, 3055, 3044, 2842, 2854, 2965, 2966, 2961, 2919, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 2900, 2885, 2881, 2973, 2997, 2783, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 2904, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 2823, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 2889, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 2890, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 2960, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 2848, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 2774, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 2906, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 2775, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3170, 2902, 3171, 3172, 2801, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3185, 3186, 3237, 3236, 3081, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 2942, 2959, 3082, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3203, 3204, 3205, 2955, 3156, 3215, 3216, 3227, 3211, 3212, 3213, 3246, 2901, 476: 3286, 478: 3265, 3284, 2778, 482: 3294, 485: 3298, 3302, 488: 3283, 3282, 3321, 495: 3256, 498: 3295, 507: 3301, 3319, 511: 3260, 533: 3290, 567: 3297, 570: 3320, 2776, 573: 3303, 3255, 3257, 3259, 3258, 3287, 3263, 3277, 3268, 3289, 3264, 585: 3296, 3288, 3293, 3299, 3309, 3362, 3310, 3311, 595: 3262, 3340, 598: 3280, 3281, 3335, 3336, 3337, 3338, 3339, 3291, 3317, 3322, 3332, 3333, 3326, 3341, 3342, 3343, 3327, 3345, 3346, 3328, 3344, 3323, 3331, 3329, 3315, 3347, 3348, 3292, 3352, 3304, 3305, 3308, 3351, 3357, 3356, 3358, 3355, 3359, 3354, 3353, 3350, 3300, 3349, 3307, 3306, 3312, 3313, 651: 2779, 664: 3270, 2785, 2786, 2784, 713: 3285, 3361, 3271, 3276, 3261, 3334, 3274, 3272, 3273, 3314, 3325, 3324, 3318, 3316, 3330, 3269, 3279, 3360, 3278, 3275, 2782, 2781, 2780, 3671}, + {9: 3672, 510: 3371, 512: 3369, 3370, 3368, 3366, 738: 3367, 3365}, // 1115 - {2: 1149, 1149, 1149, 1149, 1149, 1149, 1149, 10: 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 50: 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 473: 1149, 475: 1149, 1149, 1149, 479: 1149, 482: 1149, 1149, 485: 1149, 1149, 1149, 492: 1149, 495: 1149, 500: 1149, 504: 1149, 1149, 508: 1149, 530: 1149, 564: 1149, 567: 1149, 1149, 570: 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 582: 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 592: 1149, 1149, 595: 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 1149, 648: 1149}, - {2: 1148, 1148, 1148, 1148, 1148, 1148, 1148, 10: 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 50: 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 473: 1148, 475: 1148, 1148, 1148, 479: 1148, 482: 1148, 1148, 485: 1148, 1148, 1148, 492: 1148, 495: 1148, 500: 1148, 504: 1148, 1148, 508: 1148, 530: 1148, 564: 1148, 567: 1148, 1148, 570: 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 582: 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 592: 1148, 1148, 595: 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 1148, 648: 1148}, - {2: 1147, 1147, 1147, 1147, 1147, 1147, 1147, 10: 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 50: 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 473: 1147, 475: 1147, 1147, 1147, 479: 1147, 482: 1147, 1147, 485: 1147, 1147, 1147, 492: 1147, 495: 1147, 500: 1147, 504: 1147, 1147, 508: 1147, 530: 1147, 564: 1147, 567: 1147, 1147, 570: 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 582: 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 592: 1147, 1147, 595: 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 1147, 648: 1147}, - {500: 3659, 507: 3345, 509: 3343, 3344, 3342, 3340, 734: 3341, 3339}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 2840, 2788, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 2869, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 2874, 2801, 2766, 2783, 2948, 3031, 3020, 2818, 2830, 2941, 2942, 2937, 2895, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 2876, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 2760, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 2880, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 2799, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 2866, 2865, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 2936, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 2824, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 2751, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 2882, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 2752, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3144, 2878, 3145, 3146, 2777, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3159, 3160, 3211, 3210, 3057, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 2918, 2935, 3058, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3177, 3178, 3179, 2931, 3130, 3189, 3190, 3201, 3185, 3186, 3187, 3220, 2877, 473: 3260, 475: 3239, 3258, 2755, 479: 3268, 482: 3272, 3276, 485: 3257, 3256, 3295, 492: 3230, 495: 3269, 504: 3275, 3293, 508: 3234, 530: 3264, 564: 3271, 567: 3294, 2753, 570: 3277, 3229, 3231, 3233, 3232, 3261, 3237, 3251, 3242, 3263, 3238, 582: 3270, 3262, 3267, 3273, 3283, 3336, 3284, 3285, 592: 3236, 3314, 595: 3254, 3255, 3309, 3310, 3311, 3312, 3313, 3265, 3291, 3296, 3306, 3307, 3300, 3315, 3316, 3317, 3301, 3319, 3320, 3302, 3318, 3297, 3305, 3303, 3289, 3321, 3322, 3266, 3326, 3278, 3279, 3282, 3325, 3331, 3330, 3332, 3329, 3333, 3328, 3327, 3324, 3274, 3323, 3281, 3280, 3286, 3287, 648: 2756, 661: 3244, 2762, 2763, 2761, 709: 3259, 3335, 3245, 3250, 3235, 3308, 3248, 3246, 3247, 3288, 3299, 3298, 3292, 3290, 3304, 3243, 3253, 3334, 3252, 3249, 2759, 2758, 2757, 3657}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 2864, 2812, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 2893, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 2898, 2825, 2789, 2807, 2972, 3055, 3044, 2842, 2854, 2965, 2966, 2961, 2919, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 2900, 2885, 2881, 2973, 2997, 2783, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 2904, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 2823, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 2889, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 2890, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 2960, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 2848, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 2774, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 2906, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 2775, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3170, 2902, 3171, 3172, 2801, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3185, 3186, 3237, 3236, 3081, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 2942, 2959, 3082, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3203, 3204, 3205, 2955, 3156, 3215, 3216, 3227, 3211, 3212, 3213, 3246, 2901, 476: 3286, 478: 3265, 3284, 2778, 482: 3294, 485: 3298, 3302, 488: 3283, 3282, 3321, 495: 3256, 498: 3295, 507: 3301, 3319, 511: 3260, 533: 3290, 567: 3297, 570: 3320, 2776, 573: 3303, 3255, 3257, 3259, 3258, 3287, 3263, 3277, 3268, 3289, 3264, 585: 3296, 3288, 3293, 3299, 3309, 3362, 3310, 3311, 595: 3262, 3340, 598: 3280, 3281, 3335, 3336, 3337, 3338, 3339, 3291, 3317, 3322, 3332, 3333, 3326, 3341, 3342, 3343, 3327, 3345, 3346, 3328, 3344, 3323, 3331, 3329, 3315, 3347, 3348, 3292, 3352, 3304, 3305, 3308, 3351, 3357, 3356, 3358, 3355, 3359, 3354, 3353, 3350, 3300, 3349, 3307, 3306, 3312, 3313, 651: 2779, 664: 3270, 2785, 2786, 2784, 713: 3285, 3361, 3271, 3276, 3261, 3334, 3274, 3272, 3273, 3314, 3325, 3324, 3318, 3316, 3330, 3269, 3279, 3360, 3278, 3275, 2782, 2781, 2780, 3673}, + {50: 3674, 510: 3371, 512: 3369, 3370, 3368, 3366, 738: 3367, 3365}, + {1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 477: 1172, 1172, 1172, 1172, 1172, 483: 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 492: 1172, 1172, 1172, 496: 1172, 1172, 499: 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 509: 1172, 1172, 512: 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 534: 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 568: 1172, 1172, 597: 1172}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 2864, 2812, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 2893, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 2898, 2825, 2789, 2807, 2972, 3055, 3044, 2842, 2854, 2965, 2966, 2961, 2919, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 2900, 2885, 2881, 2973, 2997, 2783, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 2904, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 2823, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 2889, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 2890, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 2960, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 2848, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 2774, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 2906, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 2775, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3170, 2902, 3171, 3172, 2801, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3185, 3186, 3237, 3236, 3081, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 2942, 2959, 3082, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3203, 3204, 3205, 2955, 3156, 3215, 3216, 3227, 3211, 3212, 3213, 3246, 2901, 476: 3286, 478: 3265, 3284, 2778, 482: 3294, 485: 3298, 3302, 488: 3283, 3282, 3321, 495: 3256, 498: 3295, 507: 3301, 3319, 511: 3260, 533: 3290, 567: 3297, 570: 3320, 2776, 573: 3303, 3255, 3257, 3259, 3258, 3287, 3263, 3277, 3268, 3289, 3264, 585: 3296, 3288, 3293, 3299, 3309, 3362, 3310, 3311, 595: 3262, 3340, 598: 3280, 3281, 3335, 3336, 3337, 3338, 3339, 3291, 3317, 3322, 3332, 3333, 3326, 3341, 3342, 3343, 3327, 3345, 3346, 3328, 3344, 3323, 3331, 3329, 3315, 3347, 3348, 3292, 3352, 3304, 3305, 3308, 3351, 3357, 3356, 3358, 3355, 3359, 3354, 3353, 3350, 3300, 3349, 3307, 3306, 3312, 3313, 651: 2779, 664: 3270, 2785, 2786, 2784, 713: 3285, 3361, 3271, 3276, 3261, 3334, 3274, 3272, 3273, 3314, 3325, 3324, 3318, 3316, 3330, 3269, 3279, 3360, 3278, 3275, 2782, 2781, 2780, 3676, 1194: 3678, 1249: 3679, 1337: 3680, 3677}, + {50: 3688, 503: 3689, 510: 3371, 512: 3369, 3370, 3368, 3366, 738: 3367, 3365}, // 1120 - {49: 3658, 507: 3345, 509: 3343, 3344, 3342, 3340, 734: 3341, 3339}, - {1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 474: 1164, 1164, 1164, 1164, 1164, 480: 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 489: 1164, 1164, 1164, 493: 1164, 1164, 496: 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 506: 1164, 1164, 509: 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 531: 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 1164, 565: 1164, 1164, 594: 1164}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 2840, 2788, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 2869, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 2874, 2801, 2766, 2783, 2948, 3031, 3020, 2818, 2830, 2941, 2942, 2937, 2895, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 2876, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 2760, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 2880, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 2799, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 2866, 2865, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 2936, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 2824, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 2751, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 2882, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 2752, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3144, 2878, 3145, 3146, 2777, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3159, 3160, 3211, 3210, 3057, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 2918, 2935, 3058, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3177, 3178, 3179, 2931, 3130, 3189, 3190, 3201, 3185, 3186, 3187, 3220, 2877, 473: 3260, 475: 3239, 3258, 2755, 479: 3268, 482: 3272, 3276, 485: 3257, 3256, 3295, 492: 3230, 495: 3269, 504: 3275, 3293, 508: 3234, 530: 3264, 564: 3271, 567: 3294, 2753, 570: 3277, 3229, 3231, 3233, 3232, 3261, 3237, 3251, 3242, 3263, 3238, 582: 3270, 3262, 3267, 3273, 3283, 3336, 3284, 3285, 592: 3236, 3314, 595: 3254, 3255, 3309, 3310, 3311, 3312, 3313, 3265, 3291, 3296, 3306, 3307, 3300, 3315, 3316, 3317, 3301, 3319, 3320, 3302, 3318, 3297, 3305, 3303, 3289, 3321, 3322, 3266, 3326, 3278, 3279, 3282, 3325, 3331, 3330, 3332, 3329, 3333, 3328, 3327, 3324, 3274, 3323, 3281, 3280, 3286, 3287, 648: 2756, 661: 3244, 2762, 2763, 2761, 709: 3259, 3335, 3245, 3250, 3235, 3308, 3248, 3246, 3247, 3288, 3299, 3298, 3292, 3290, 3304, 3243, 3253, 3334, 3252, 3249, 2759, 2758, 2757, 3660}, - {49: 3661, 507: 3345, 509: 3343, 3344, 3342, 3340, 734: 3341, 3339}, - {1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 474: 1163, 1163, 1163, 1163, 1163, 480: 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 489: 1163, 1163, 1163, 493: 1163, 1163, 496: 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 506: 1163, 1163, 509: 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 531: 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 565: 1163, 1163, 594: 1163}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 2864, 2812, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 2893, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 2898, 2825, 2789, 2807, 2972, 3055, 3044, 2842, 2854, 2965, 2966, 2961, 2919, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 2900, 2885, 2881, 2973, 2997, 2783, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 2904, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 2823, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 2889, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 2890, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 2960, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 2848, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 2774, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 2906, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 2775, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3170, 2902, 3171, 3172, 2801, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3185, 3186, 3237, 3236, 3081, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 2942, 2959, 3082, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3203, 3204, 3205, 2955, 3156, 3215, 3216, 3227, 3211, 3212, 3213, 3246, 2901, 476: 3286, 478: 3265, 3284, 2778, 482: 3294, 485: 3298, 3302, 488: 3283, 3282, 3321, 495: 3256, 498: 3295, 503: 3682, 507: 3301, 3319, 511: 3260, 533: 3290, 567: 3297, 570: 3320, 2776, 573: 3303, 3255, 3257, 3259, 3258, 3287, 3263, 3277, 3268, 3289, 3264, 585: 3296, 3288, 3293, 3299, 3309, 3362, 3310, 3311, 595: 3262, 3340, 598: 3280, 3281, 3335, 3336, 3337, 3338, 3339, 3291, 3317, 3322, 3332, 3333, 3326, 3341, 3342, 3343, 3327, 3345, 3346, 3328, 3344, 3323, 3331, 3329, 3315, 3347, 3348, 3292, 3352, 3304, 3305, 3308, 3351, 3357, 3356, 3358, 3355, 3359, 3354, 3353, 3350, 3300, 3349, 3307, 3306, 3312, 3313, 651: 2779, 664: 3270, 2785, 2786, 2784, 713: 3285, 3361, 3271, 3276, 3261, 3334, 3274, 3272, 3273, 3314, 3325, 3324, 3318, 3316, 3330, 3269, 3279, 3360, 3278, 3275, 2782, 2781, 2780, 3681}, + {2: 1163, 1163, 1163, 1163, 1163, 1163, 1163, 10: 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 51: 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 476: 1163, 478: 1163, 1163, 1163, 482: 1163, 485: 1163, 1163, 488: 1163, 1163, 1163, 495: 1163, 498: 1163, 503: 1163, 507: 1163, 1163, 511: 1163, 533: 1163, 567: 1163, 570: 1163, 1163, 573: 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 585: 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 595: 1163, 1163, 598: 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 1163, 651: 1163}, + {2: 1162, 1162, 1162, 1162, 1162, 1162, 1162, 10: 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 51: 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 476: 1162, 478: 1162, 1162, 1162, 482: 1162, 485: 1162, 1162, 488: 1162, 1162, 1162, 495: 1162, 498: 1162, 503: 1162, 507: 1162, 1162, 511: 1162, 533: 1162, 567: 1162, 570: 1162, 1162, 573: 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 585: 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 595: 1162, 1162, 598: 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 651: 1162}, + {2: 1161, 1161, 1161, 1161, 1161, 1161, 1161, 10: 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 51: 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 476: 1161, 478: 1161, 1161, 1161, 482: 1161, 485: 1161, 1161, 488: 1161, 1161, 1161, 495: 1161, 498: 1161, 503: 1161, 507: 1161, 1161, 511: 1161, 533: 1161, 567: 1161, 570: 1161, 1161, 573: 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 585: 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 595: 1161, 1161, 598: 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 651: 1161}, + {503: 3685, 510: 3371, 512: 3369, 3370, 3368, 3366, 738: 3367, 3365}, // 1125 - {1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 474: 1166, 1166, 1166, 1166, 1166, 480: 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 489: 1166, 1166, 1166, 493: 1166, 1166, 496: 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 506: 1166, 1166, 509: 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 531: 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 1166, 565: 1166, 1166, 594: 1166}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 2840, 2788, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 2869, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 2874, 2801, 2766, 2783, 2948, 3031, 3020, 2818, 2830, 2941, 2942, 2937, 2895, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 2876, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 2760, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 2880, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 2799, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 2866, 2865, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 2936, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 2824, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 2751, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 2882, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 2752, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3144, 2878, 3145, 3146, 2777, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3159, 3160, 3211, 3210, 3057, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 2918, 2935, 3058, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3177, 3178, 3179, 2931, 3130, 3189, 3190, 3201, 3185, 3186, 3187, 3220, 2877, 473: 3260, 475: 3239, 3258, 2755, 479: 3268, 482: 3272, 3276, 485: 3257, 3256, 3295, 492: 3230, 495: 3269, 504: 3275, 3293, 508: 3234, 530: 3264, 564: 3271, 567: 3294, 2753, 570: 3277, 3229, 3231, 3233, 3232, 3261, 3237, 3251, 3242, 3263, 3238, 582: 3270, 3262, 3267, 3273, 3283, 3336, 3284, 3285, 592: 3236, 3314, 595: 3254, 3255, 3309, 3310, 3311, 3312, 3313, 3265, 3291, 3296, 3306, 3307, 3300, 3315, 3316, 3317, 3301, 3319, 3320, 3302, 3318, 3297, 3305, 3303, 3289, 3321, 3322, 3266, 3326, 3278, 3279, 3282, 3325, 3331, 3330, 3332, 3329, 3333, 3328, 3327, 3324, 3274, 3323, 3281, 3280, 3286, 3287, 648: 2756, 661: 3244, 2762, 2763, 2761, 709: 3259, 3335, 3245, 3250, 3235, 3308, 3248, 3246, 3247, 3288, 3299, 3298, 3292, 3290, 3304, 3243, 3253, 3334, 3252, 3249, 2759, 2758, 2757, 3664}, - {49: 3665, 507: 3345, 509: 3343, 3344, 3342, 3340, 734: 3341, 3339}, - {1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 474: 1165, 1165, 1165, 1165, 1165, 480: 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 489: 1165, 1165, 1165, 493: 1165, 1165, 496: 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 506: 1165, 1165, 509: 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 531: 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 1165, 565: 1165, 1165, 594: 1165}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 2840, 2788, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 2869, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 2874, 2801, 2766, 2783, 2948, 3031, 3020, 2818, 2830, 2941, 2942, 2937, 2895, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 2876, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 2760, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 2880, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 2799, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 2866, 2865, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 2936, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 2824, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 2751, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 2882, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 2752, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3144, 2878, 3145, 3146, 2777, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3159, 3160, 3211, 3210, 3057, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 2918, 2935, 3058, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3177, 3178, 3179, 2931, 3130, 3189, 3190, 3201, 3185, 3186, 3187, 3220, 2877, 473: 3260, 475: 3239, 3258, 2755, 479: 3268, 482: 3272, 3276, 485: 3257, 3256, 3295, 492: 3230, 495: 3269, 504: 3275, 3293, 508: 3234, 530: 3264, 564: 3271, 567: 3294, 2753, 570: 3277, 3229, 3231, 3233, 3232, 3261, 3237, 3251, 3242, 3263, 3238, 582: 3270, 3262, 3267, 3273, 3283, 3336, 3284, 3285, 592: 3236, 3314, 595: 3254, 3255, 3309, 3310, 3311, 3312, 3313, 3265, 3291, 3296, 3306, 3307, 3300, 3315, 3316, 3317, 3301, 3319, 3320, 3302, 3318, 3297, 3305, 3303, 3289, 3321, 3322, 3266, 3326, 3278, 3279, 3282, 3325, 3331, 3330, 3332, 3329, 3333, 3328, 3327, 3324, 3274, 3323, 3281, 3280, 3286, 3287, 648: 2756, 661: 3244, 2762, 2763, 2761, 709: 3259, 3335, 3245, 3250, 3235, 3308, 3248, 3246, 3247, 3288, 3299, 3298, 3292, 3290, 3304, 3243, 3253, 3334, 3252, 3249, 2759, 2758, 2757, 3667}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 2864, 2812, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 2893, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 2898, 2825, 2789, 2807, 2972, 3055, 3044, 2842, 2854, 2965, 2966, 2961, 2919, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 2900, 2885, 2881, 2973, 2997, 2783, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 2904, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 2823, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 2889, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 2890, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 2960, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 2848, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 2774, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 2906, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 2775, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3170, 2902, 3171, 3172, 2801, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3185, 3186, 3237, 3236, 3081, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 2942, 2959, 3082, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3203, 3204, 3205, 2955, 3156, 3215, 3216, 3227, 3211, 3212, 3213, 3246, 2901, 476: 3286, 478: 3265, 3284, 2778, 482: 3294, 485: 3298, 3302, 488: 3283, 3282, 3321, 495: 3256, 498: 3295, 507: 3301, 3319, 511: 3260, 533: 3290, 567: 3297, 570: 3320, 2776, 573: 3303, 3255, 3257, 3259, 3258, 3287, 3263, 3277, 3268, 3289, 3264, 585: 3296, 3288, 3293, 3299, 3309, 3362, 3310, 3311, 595: 3262, 3340, 598: 3280, 3281, 3335, 3336, 3337, 3338, 3339, 3291, 3317, 3322, 3332, 3333, 3326, 3341, 3342, 3343, 3327, 3345, 3346, 3328, 3344, 3323, 3331, 3329, 3315, 3347, 3348, 3292, 3352, 3304, 3305, 3308, 3351, 3357, 3356, 3358, 3355, 3359, 3354, 3353, 3350, 3300, 3349, 3307, 3306, 3312, 3313, 651: 2779, 664: 3270, 2785, 2786, 2784, 713: 3285, 3361, 3271, 3276, 3261, 3334, 3274, 3272, 3273, 3314, 3325, 3324, 3318, 3316, 3330, 3269, 3279, 3360, 3278, 3275, 2782, 2781, 2780, 3683}, + {50: 3684, 510: 3371, 512: 3369, 3370, 3368, 3366, 738: 3367, 3365}, + {1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 477: 1178, 1178, 1178, 1178, 1178, 483: 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 492: 1178, 1178, 1178, 496: 1178, 1178, 499: 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 509: 1178, 1178, 512: 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 534: 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 568: 1178, 1178, 597: 1178}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 2864, 2812, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 2893, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 2898, 2825, 2789, 2807, 2972, 3055, 3044, 2842, 2854, 2965, 2966, 2961, 2919, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 2900, 2885, 2881, 2973, 2997, 2783, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 2904, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 2823, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 2889, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 2890, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 2960, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 2848, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 2774, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 2906, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 2775, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3170, 2902, 3171, 3172, 2801, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3185, 3186, 3237, 3236, 3081, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 2942, 2959, 3082, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3203, 3204, 3205, 2955, 3156, 3215, 3216, 3227, 3211, 3212, 3213, 3246, 2901, 476: 3286, 478: 3265, 3284, 2778, 482: 3294, 485: 3298, 3302, 488: 3283, 3282, 3321, 495: 3256, 498: 3295, 507: 3301, 3319, 511: 3260, 533: 3290, 567: 3297, 570: 3320, 2776, 573: 3303, 3255, 3257, 3259, 3258, 3287, 3263, 3277, 3268, 3289, 3264, 585: 3296, 3288, 3293, 3299, 3309, 3362, 3310, 3311, 595: 3262, 3340, 598: 3280, 3281, 3335, 3336, 3337, 3338, 3339, 3291, 3317, 3322, 3332, 3333, 3326, 3341, 3342, 3343, 3327, 3345, 3346, 3328, 3344, 3323, 3331, 3329, 3315, 3347, 3348, 3292, 3352, 3304, 3305, 3308, 3351, 3357, 3356, 3358, 3355, 3359, 3354, 3353, 3350, 3300, 3349, 3307, 3306, 3312, 3313, 651: 2779, 664: 3270, 2785, 2786, 2784, 713: 3285, 3361, 3271, 3276, 3261, 3334, 3274, 3272, 3273, 3314, 3325, 3324, 3318, 3316, 3330, 3269, 3279, 3360, 3278, 3275, 2782, 2781, 2780, 3686}, + {50: 3687, 510: 3371, 512: 3369, 3370, 3368, 3366, 738: 3367, 3365}, // 1130 - {9: 3668, 500: 3669, 507: 3345, 509: 3343, 3344, 3342, 3340, 734: 3341, 3339}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 2840, 2788, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 2869, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 2874, 2801, 2766, 2783, 2948, 3031, 3020, 2818, 2830, 2941, 2942, 2937, 2895, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 2876, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 2760, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 2880, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 2799, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 2866, 2865, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 2936, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 2824, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 2751, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 2882, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 2752, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3144, 2878, 3145, 3146, 2777, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3159, 3160, 3211, 3210, 3057, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 2918, 2935, 3058, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3177, 3178, 3179, 2931, 3130, 3189, 3190, 3201, 3185, 3186, 3187, 3220, 2877, 473: 3260, 475: 3239, 3258, 2755, 479: 3268, 482: 3272, 3276, 485: 3257, 3256, 3295, 492: 3230, 495: 3269, 504: 3275, 3293, 508: 3234, 530: 3264, 564: 3271, 567: 3294, 2753, 570: 3277, 3229, 3231, 3233, 3232, 3261, 3237, 3251, 3242, 3263, 3238, 582: 3270, 3262, 3267, 3273, 3283, 3336, 3284, 3285, 592: 3236, 3314, 595: 3254, 3255, 3309, 3310, 3311, 3312, 3313, 3265, 3291, 3296, 3306, 3307, 3300, 3315, 3316, 3317, 3301, 3319, 3320, 3302, 3318, 3297, 3305, 3303, 3289, 3321, 3322, 3266, 3326, 3278, 3279, 3282, 3325, 3331, 3330, 3332, 3329, 3333, 3328, 3327, 3324, 3274, 3323, 3281, 3280, 3286, 3287, 648: 2756, 661: 3244, 2762, 2763, 2761, 709: 3259, 3335, 3245, 3250, 3235, 3308, 3248, 3246, 3247, 3288, 3299, 3298, 3292, 3290, 3304, 3243, 3253, 3334, 3252, 3249, 2759, 2758, 2757, 3675}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 2840, 2788, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 2869, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 2874, 2801, 2766, 2783, 2948, 3031, 3020, 2818, 2830, 2941, 2942, 2937, 2895, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 2876, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 2760, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 2880, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 2799, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 2866, 2865, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 2936, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 2824, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 2751, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 2882, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 2752, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3144, 2878, 3145, 3146, 2777, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3159, 3160, 3211, 3210, 3057, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 2918, 2935, 3058, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3177, 3178, 3179, 2931, 3130, 3189, 3190, 3201, 3185, 3186, 3187, 3220, 2877, 473: 3260, 475: 3239, 3258, 2755, 479: 3268, 482: 3272, 3276, 485: 3257, 3256, 3295, 492: 3230, 495: 3269, 504: 3275, 3293, 508: 3234, 530: 3264, 564: 3271, 567: 3294, 2753, 570: 3277, 3229, 3231, 3233, 3232, 3261, 3237, 3251, 3242, 3263, 3238, 582: 3270, 3262, 3267, 3273, 3283, 3336, 3284, 3285, 592: 3236, 3314, 595: 3254, 3255, 3309, 3310, 3311, 3312, 3313, 3265, 3291, 3296, 3306, 3307, 3300, 3315, 3316, 3317, 3301, 3319, 3320, 3302, 3318, 3297, 3305, 3303, 3289, 3321, 3322, 3266, 3326, 3278, 3279, 3282, 3325, 3331, 3330, 3332, 3329, 3333, 3328, 3327, 3324, 3274, 3323, 3281, 3280, 3286, 3287, 648: 2756, 661: 3244, 2762, 2763, 2761, 709: 3259, 3335, 3245, 3250, 3235, 3308, 3248, 3246, 3247, 3288, 3299, 3298, 3292, 3290, 3304, 3243, 3253, 3334, 3252, 3249, 2759, 2758, 2757, 3670}, - {49: 3671, 494: 3672, 507: 3345, 509: 3343, 3344, 3342, 3340, 734: 3341, 3339}, - {1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 474: 1171, 1171, 1171, 1171, 1171, 480: 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 489: 1171, 1171, 1171, 493: 1171, 1171, 496: 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 506: 1171, 1171, 509: 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 531: 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 1171, 565: 1171, 1171, 594: 1171}, + {1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 477: 1177, 1177, 1177, 1177, 1177, 483: 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 492: 1177, 1177, 1177, 496: 1177, 1177, 499: 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 509: 1177, 1177, 512: 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 534: 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 568: 1177, 1177, 597: 1177}, + {1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 477: 1180, 1180, 1180, 1180, 1180, 483: 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 492: 1180, 1180, 1180, 496: 1180, 1180, 499: 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 509: 1180, 1180, 512: 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 534: 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 568: 1180, 1180, 597: 1180}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 2864, 2812, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 2893, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 2898, 2825, 2789, 2807, 2972, 3055, 3044, 2842, 2854, 2965, 2966, 2961, 2919, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 2900, 2885, 2881, 2973, 2997, 2783, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 2904, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 2823, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 2889, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 2890, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 2960, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 2848, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 2774, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 2906, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 2775, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3170, 2902, 3171, 3172, 2801, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3185, 3186, 3237, 3236, 3081, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 2942, 2959, 3082, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3203, 3204, 3205, 2955, 3156, 3215, 3216, 3227, 3211, 3212, 3213, 3246, 2901, 476: 3286, 478: 3265, 3284, 2778, 482: 3294, 485: 3298, 3302, 488: 3283, 3282, 3321, 495: 3256, 498: 3295, 507: 3301, 3319, 511: 3260, 533: 3290, 567: 3297, 570: 3320, 2776, 573: 3303, 3255, 3257, 3259, 3258, 3287, 3263, 3277, 3268, 3289, 3264, 585: 3296, 3288, 3293, 3299, 3309, 3362, 3310, 3311, 595: 3262, 3340, 598: 3280, 3281, 3335, 3336, 3337, 3338, 3339, 3291, 3317, 3322, 3332, 3333, 3326, 3341, 3342, 3343, 3327, 3345, 3346, 3328, 3344, 3323, 3331, 3329, 3315, 3347, 3348, 3292, 3352, 3304, 3305, 3308, 3351, 3357, 3356, 3358, 3355, 3359, 3354, 3353, 3350, 3300, 3349, 3307, 3306, 3312, 3313, 651: 2779, 664: 3270, 2785, 2786, 2784, 713: 3285, 3361, 3271, 3276, 3261, 3334, 3274, 3272, 3273, 3314, 3325, 3324, 3318, 3316, 3330, 3269, 3279, 3360, 3278, 3275, 2782, 2781, 2780, 3690}, + {50: 3691, 510: 3371, 512: 3369, 3370, 3368, 3366, 738: 3367, 3365}, + {1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 477: 1179, 1179, 1179, 1179, 1179, 483: 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 492: 1179, 1179, 1179, 496: 1179, 1179, 499: 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 509: 1179, 1179, 512: 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 534: 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 568: 1179, 1179, 597: 1179}, // 1135 - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 2840, 2788, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 2869, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 2874, 2801, 2766, 2783, 2948, 3031, 3020, 2818, 2830, 2941, 2942, 2937, 2895, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 2876, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 2760, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 2880, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 2799, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 2866, 2865, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 2936, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 2824, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 2751, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 2882, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 2752, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3144, 2878, 3145, 3146, 2777, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3159, 3160, 3211, 3210, 3057, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 2918, 2935, 3058, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3177, 3178, 3179, 2931, 3130, 3189, 3190, 3201, 3185, 3186, 3187, 3220, 2877, 473: 3260, 475: 3239, 3258, 2755, 479: 3268, 482: 3272, 3276, 485: 3257, 3256, 3295, 492: 3230, 495: 3269, 504: 3275, 3293, 508: 3234, 530: 3264, 564: 3271, 567: 3294, 2753, 570: 3277, 3229, 3231, 3233, 3232, 3261, 3237, 3251, 3242, 3263, 3238, 582: 3270, 3262, 3267, 3273, 3283, 3336, 3284, 3285, 592: 3236, 3314, 595: 3254, 3255, 3309, 3310, 3311, 3312, 3313, 3265, 3291, 3296, 3306, 3307, 3300, 3315, 3316, 3317, 3301, 3319, 3320, 3302, 3318, 3297, 3305, 3303, 3289, 3321, 3322, 3266, 3326, 3278, 3279, 3282, 3325, 3331, 3330, 3332, 3329, 3333, 3328, 3327, 3324, 3274, 3323, 3281, 3280, 3286, 3287, 648: 2756, 661: 3244, 2762, 2763, 2761, 709: 3259, 3335, 3245, 3250, 3235, 3308, 3248, 3246, 3247, 3288, 3299, 3298, 3292, 3290, 3304, 3243, 3253, 3334, 3252, 3249, 2759, 2758, 2757, 3673}, - {49: 3674, 507: 3345, 509: 3343, 3344, 3342, 3340, 734: 3341, 3339}, - {1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 474: 1169, 1169, 1169, 1169, 1169, 480: 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 489: 1169, 1169, 1169, 493: 1169, 1169, 496: 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 506: 1169, 1169, 509: 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 531: 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 1169, 565: 1169, 1169, 594: 1169}, - {9: 3677, 49: 3676, 507: 3345, 509: 3343, 3344, 3342, 3340, 734: 3341, 3339}, - {1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 474: 1172, 1172, 1172, 1172, 1172, 480: 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 489: 1172, 1172, 1172, 493: 1172, 1172, 496: 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 506: 1172, 1172, 509: 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 531: 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 1172, 565: 1172, 1172, 594: 1172}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 2864, 2812, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 2893, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 2898, 2825, 2789, 2807, 2972, 3055, 3044, 2842, 2854, 2965, 2966, 2961, 2919, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 2900, 2885, 2881, 2973, 2997, 2783, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 2904, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 2823, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 2889, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 2890, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 2960, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 2848, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 2774, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 2906, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 2775, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3170, 2902, 3171, 3172, 2801, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3185, 3186, 3237, 3236, 3081, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 2942, 2959, 3082, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3203, 3204, 3205, 2955, 3156, 3215, 3216, 3227, 3211, 3212, 3213, 3246, 2901, 476: 3286, 478: 3265, 3284, 2778, 482: 3294, 485: 3298, 3302, 488: 3283, 3282, 3321, 495: 3256, 498: 3295, 507: 3301, 3319, 511: 3260, 533: 3290, 567: 3297, 570: 3320, 2776, 573: 3303, 3255, 3257, 3259, 3258, 3287, 3263, 3277, 3268, 3289, 3264, 585: 3296, 3288, 3293, 3299, 3309, 3362, 3310, 3311, 595: 3262, 3340, 598: 3280, 3281, 3335, 3336, 3337, 3338, 3339, 3291, 3317, 3322, 3332, 3333, 3326, 3341, 3342, 3343, 3327, 3345, 3346, 3328, 3344, 3323, 3331, 3329, 3315, 3347, 3348, 3292, 3352, 3304, 3305, 3308, 3351, 3357, 3356, 3358, 3355, 3359, 3354, 3353, 3350, 3300, 3349, 3307, 3306, 3312, 3313, 651: 2779, 664: 3270, 2785, 2786, 2784, 713: 3285, 3361, 3271, 3276, 3261, 3334, 3274, 3272, 3273, 3314, 3325, 3324, 3318, 3316, 3330, 3269, 3279, 3360, 3278, 3275, 2782, 2781, 2780, 3693}, + {9: 3694, 503: 3695, 510: 3371, 512: 3369, 3370, 3368, 3366, 738: 3367, 3365}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 2864, 2812, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 2893, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 2898, 2825, 2789, 2807, 2972, 3055, 3044, 2842, 2854, 2965, 2966, 2961, 2919, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 2900, 2885, 2881, 2973, 2997, 2783, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 2904, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 2823, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 2889, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 2890, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 2960, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 2848, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 2774, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 2906, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 2775, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3170, 2902, 3171, 3172, 2801, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3185, 3186, 3237, 3236, 3081, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 2942, 2959, 3082, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3203, 3204, 3205, 2955, 3156, 3215, 3216, 3227, 3211, 3212, 3213, 3246, 2901, 476: 3286, 478: 3265, 3284, 2778, 482: 3294, 485: 3298, 3302, 488: 3283, 3282, 3321, 495: 3256, 498: 3295, 507: 3301, 3319, 511: 3260, 533: 3290, 567: 3297, 570: 3320, 2776, 573: 3303, 3255, 3257, 3259, 3258, 3287, 3263, 3277, 3268, 3289, 3264, 585: 3296, 3288, 3293, 3299, 3309, 3362, 3310, 3311, 595: 3262, 3340, 598: 3280, 3281, 3335, 3336, 3337, 3338, 3339, 3291, 3317, 3322, 3332, 3333, 3326, 3341, 3342, 3343, 3327, 3345, 3346, 3328, 3344, 3323, 3331, 3329, 3315, 3347, 3348, 3292, 3352, 3304, 3305, 3308, 3351, 3357, 3356, 3358, 3355, 3359, 3354, 3353, 3350, 3300, 3349, 3307, 3306, 3312, 3313, 651: 2779, 664: 3270, 2785, 2786, 2784, 713: 3285, 3361, 3271, 3276, 3261, 3334, 3274, 3272, 3273, 3314, 3325, 3324, 3318, 3316, 3330, 3269, 3279, 3360, 3278, 3275, 2782, 2781, 2780, 3701}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 2864, 2812, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 2893, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 2898, 2825, 2789, 2807, 2972, 3055, 3044, 2842, 2854, 2965, 2966, 2961, 2919, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 2900, 2885, 2881, 2973, 2997, 2783, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 2904, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 2823, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 2889, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 2890, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 2960, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 2848, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 2774, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 2906, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 2775, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3170, 2902, 3171, 3172, 2801, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3185, 3186, 3237, 3236, 3081, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 2942, 2959, 3082, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3203, 3204, 3205, 2955, 3156, 3215, 3216, 3227, 3211, 3212, 3213, 3246, 2901, 476: 3286, 478: 3265, 3284, 2778, 482: 3294, 485: 3298, 3302, 488: 3283, 3282, 3321, 495: 3256, 498: 3295, 507: 3301, 3319, 511: 3260, 533: 3290, 567: 3297, 570: 3320, 2776, 573: 3303, 3255, 3257, 3259, 3258, 3287, 3263, 3277, 3268, 3289, 3264, 585: 3296, 3288, 3293, 3299, 3309, 3362, 3310, 3311, 595: 3262, 3340, 598: 3280, 3281, 3335, 3336, 3337, 3338, 3339, 3291, 3317, 3322, 3332, 3333, 3326, 3341, 3342, 3343, 3327, 3345, 3346, 3328, 3344, 3323, 3331, 3329, 3315, 3347, 3348, 3292, 3352, 3304, 3305, 3308, 3351, 3357, 3356, 3358, 3355, 3359, 3354, 3353, 3350, 3300, 3349, 3307, 3306, 3312, 3313, 651: 2779, 664: 3270, 2785, 2786, 2784, 713: 3285, 3361, 3271, 3276, 3261, 3334, 3274, 3272, 3273, 3314, 3325, 3324, 3318, 3316, 3330, 3269, 3279, 3360, 3278, 3275, 2782, 2781, 2780, 3696}, + {50: 3697, 497: 3698, 510: 3371, 512: 3369, 3370, 3368, 3366, 738: 3367, 3365}, // 1140 - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 2840, 2788, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 2869, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 2874, 2801, 2766, 2783, 2948, 3031, 3020, 2818, 2830, 2941, 2942, 2937, 2895, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 2876, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 2760, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 2880, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 2799, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 2866, 2865, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 2936, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 2824, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 2751, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 2882, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 2752, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3144, 2878, 3145, 3146, 2777, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3159, 3160, 3211, 3210, 3057, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 2918, 2935, 3058, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3177, 3178, 3179, 2931, 3130, 3189, 3190, 3201, 3185, 3186, 3187, 3220, 2877, 473: 3260, 475: 3239, 3258, 2755, 479: 3268, 482: 3272, 3276, 485: 3257, 3256, 3295, 492: 3230, 495: 3269, 504: 3275, 3293, 508: 3234, 530: 3264, 564: 3271, 567: 3294, 2753, 570: 3277, 3229, 3231, 3233, 3232, 3261, 3237, 3251, 3242, 3263, 3238, 582: 3270, 3262, 3267, 3273, 3283, 3336, 3284, 3285, 592: 3236, 3314, 595: 3254, 3255, 3309, 3310, 3311, 3312, 3313, 3265, 3291, 3296, 3306, 3307, 3300, 3315, 3316, 3317, 3301, 3319, 3320, 3302, 3318, 3297, 3305, 3303, 3289, 3321, 3322, 3266, 3326, 3278, 3279, 3282, 3325, 3331, 3330, 3332, 3329, 3333, 3328, 3327, 3324, 3274, 3323, 3281, 3280, 3286, 3287, 648: 2756, 661: 3244, 2762, 2763, 2761, 709: 3259, 3335, 3245, 3250, 3235, 3308, 3248, 3246, 3247, 3288, 3299, 3298, 3292, 3290, 3304, 3243, 3253, 3334, 3252, 3249, 2759, 2758, 2757, 3678}, - {49: 3679, 507: 3345, 509: 3343, 3344, 3342, 3340, 734: 3341, 3339}, - {1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 474: 1170, 1170, 1170, 1170, 1170, 480: 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 489: 1170, 1170, 1170, 493: 1170, 1170, 496: 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 506: 1170, 1170, 509: 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 531: 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 1170, 565: 1170, 1170, 594: 1170}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 2840, 2788, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 2869, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 2874, 2801, 2766, 2783, 2948, 3031, 3020, 2818, 2830, 2941, 2942, 2937, 2895, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 2876, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 2760, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 2880, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 2799, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 2866, 2865, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 2936, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 2824, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 2751, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 2882, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 2752, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3144, 2878, 3145, 3146, 2777, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3159, 3160, 3211, 3210, 3057, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 2918, 2935, 3058, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3177, 3178, 3179, 2931, 3130, 3189, 3190, 3201, 3185, 3186, 3187, 3220, 2877, 473: 3260, 475: 3239, 3258, 479: 3268, 482: 3272, 3276, 485: 3257, 3256, 3295, 492: 3230, 495: 3269, 504: 3275, 3293, 508: 3234, 530: 3264, 564: 3271, 567: 3294, 3349, 570: 3277, 3229, 3231, 3233, 3232, 3261, 3237, 3251, 3242, 3263, 3238, 582: 3270, 3262, 3267, 3273, 3283, 3336, 3284, 3285, 592: 3236, 3314, 595: 3254, 3255, 3309, 3310, 3311, 3312, 3313, 3265, 3291, 3296, 3306, 3307, 3300, 3315, 3316, 3317, 3301, 3319, 3320, 3302, 3318, 3297, 3305, 3303, 3289, 3321, 3322, 3266, 3326, 3278, 3279, 3282, 3325, 3331, 3330, 3332, 3329, 3333, 3328, 3327, 3324, 3274, 3323, 3281, 3280, 3286, 3287, 661: 3244, 2762, 2763, 2761, 709: 3259, 3335, 3245, 3250, 3235, 3308, 3248, 3246, 3247, 3288, 3299, 3298, 3292, 3290, 3304, 3243, 3253, 3334, 3252, 3249, 3681}, - {485: 3686, 3687, 3692, 520: 3688, 544: 3694, 547: 3689, 3690, 3683, 3693, 3682, 3691, 3684, 3685}, + {1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 477: 1185, 1185, 1185, 1185, 1185, 483: 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 492: 1185, 1185, 1185, 496: 1185, 1185, 499: 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 509: 1185, 1185, 512: 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 534: 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 568: 1185, 1185, 597: 1185}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 2864, 2812, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 2893, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 2898, 2825, 2789, 2807, 2972, 3055, 3044, 2842, 2854, 2965, 2966, 2961, 2919, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 2900, 2885, 2881, 2973, 2997, 2783, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 2904, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 2823, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 2889, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 2890, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 2960, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 2848, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 2774, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 2906, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 2775, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3170, 2902, 3171, 3172, 2801, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3185, 3186, 3237, 3236, 3081, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 2942, 2959, 3082, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3203, 3204, 3205, 2955, 3156, 3215, 3216, 3227, 3211, 3212, 3213, 3246, 2901, 476: 3286, 478: 3265, 3284, 2778, 482: 3294, 485: 3298, 3302, 488: 3283, 3282, 3321, 495: 3256, 498: 3295, 507: 3301, 3319, 511: 3260, 533: 3290, 567: 3297, 570: 3320, 2776, 573: 3303, 3255, 3257, 3259, 3258, 3287, 3263, 3277, 3268, 3289, 3264, 585: 3296, 3288, 3293, 3299, 3309, 3362, 3310, 3311, 595: 3262, 3340, 598: 3280, 3281, 3335, 3336, 3337, 3338, 3339, 3291, 3317, 3322, 3332, 3333, 3326, 3341, 3342, 3343, 3327, 3345, 3346, 3328, 3344, 3323, 3331, 3329, 3315, 3347, 3348, 3292, 3352, 3304, 3305, 3308, 3351, 3357, 3356, 3358, 3355, 3359, 3354, 3353, 3350, 3300, 3349, 3307, 3306, 3312, 3313, 651: 2779, 664: 3270, 2785, 2786, 2784, 713: 3285, 3361, 3271, 3276, 3261, 3334, 3274, 3272, 3273, 3314, 3325, 3324, 3318, 3316, 3330, 3269, 3279, 3360, 3278, 3275, 2782, 2781, 2780, 3699}, + {50: 3700, 510: 3371, 512: 3369, 3370, 3368, 3366, 738: 3367, 3365}, + {1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 477: 1183, 1183, 1183, 1183, 1183, 483: 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 492: 1183, 1183, 1183, 496: 1183, 1183, 499: 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 509: 1183, 1183, 512: 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 534: 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 568: 1183, 1183, 597: 1183}, + {9: 3703, 50: 3702, 510: 3371, 512: 3369, 3370, 3368, 3366, 738: 3367, 3365}, // 1145 - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 2840, 2788, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 2869, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 2874, 2801, 2766, 2783, 2948, 3031, 3020, 2818, 2830, 2941, 2942, 2937, 2895, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 2876, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 2760, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 2880, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 2799, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 2866, 2865, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 2936, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 2824, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 2751, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 2882, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 2752, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3144, 2878, 3145, 3146, 2777, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3159, 3160, 3211, 3210, 3057, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 2918, 2935, 3058, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3177, 3178, 3179, 2931, 3130, 3189, 3190, 3201, 3185, 3186, 3187, 3220, 2877, 473: 3260, 475: 3239, 3258, 479: 3268, 482: 3272, 3276, 485: 3257, 3256, 3295, 492: 3230, 495: 3269, 504: 3275, 3293, 508: 3234, 530: 3264, 564: 3271, 567: 3294, 3349, 570: 3277, 3229, 3231, 3233, 3232, 3261, 3237, 3251, 3242, 3263, 3238, 582: 3270, 3262, 3267, 3273, 3283, 3336, 3284, 3285, 592: 3236, 3314, 595: 3254, 3255, 3309, 3310, 3311, 3312, 3313, 3265, 3291, 3296, 3306, 3307, 3300, 3315, 3316, 3317, 3301, 3319, 3320, 3302, 3318, 3297, 3305, 3303, 3289, 3321, 3322, 3266, 3326, 3278, 3279, 3282, 3325, 3331, 3330, 3332, 3329, 3333, 3328, 3327, 3324, 3274, 3323, 3281, 3280, 3286, 3287, 661: 3244, 2762, 2763, 2761, 709: 3259, 3335, 3245, 3250, 3235, 3308, 3248, 3246, 3247, 3288, 3299, 3298, 3292, 3290, 3304, 3243, 3253, 3334, 3252, 3249, 3716}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 2840, 2788, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 2869, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 2874, 2801, 2766, 2783, 2948, 3031, 3020, 2818, 2830, 2941, 2942, 2937, 2895, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 2876, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 2760, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 2880, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 2799, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 2866, 2865, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 2936, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 2824, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 2751, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 2882, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 2752, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3144, 2878, 3145, 3146, 2777, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3159, 3160, 3211, 3210, 3057, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 2918, 2935, 3058, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3177, 3178, 3179, 2931, 3130, 3189, 3190, 3201, 3185, 3186, 3187, 3220, 2877, 473: 3260, 475: 3239, 3258, 479: 3268, 482: 3272, 3276, 485: 3257, 3256, 3295, 492: 3230, 495: 3269, 504: 3275, 3293, 508: 3234, 530: 3264, 564: 3271, 567: 3294, 3349, 570: 3277, 3229, 3231, 3233, 3232, 3261, 3237, 3251, 3242, 3263, 3238, 582: 3270, 3262, 3267, 3273, 3283, 3336, 3284, 3285, 592: 3236, 3314, 595: 3254, 3255, 3309, 3310, 3311, 3312, 3313, 3265, 3291, 3296, 3306, 3307, 3300, 3315, 3316, 3317, 3301, 3319, 3320, 3302, 3318, 3297, 3305, 3303, 3289, 3321, 3322, 3266, 3326, 3278, 3279, 3282, 3325, 3331, 3330, 3332, 3329, 3333, 3328, 3327, 3324, 3274, 3323, 3281, 3280, 3286, 3287, 661: 3244, 2762, 2763, 2761, 709: 3259, 3335, 3245, 3250, 3235, 3308, 3248, 3246, 3247, 3288, 3299, 3298, 3292, 3290, 3304, 3243, 3253, 3334, 3252, 3249, 3715}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 2840, 2788, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 2869, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 2874, 2801, 2766, 2783, 2948, 3031, 3020, 2818, 2830, 2941, 2942, 2937, 2895, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 2876, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 2760, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 2880, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 2799, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 2866, 2865, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 2936, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 2824, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 2751, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 2882, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 2752, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3144, 2878, 3145, 3146, 2777, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3159, 3160, 3211, 3210, 3057, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 2918, 2935, 3058, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3177, 3178, 3179, 2931, 3130, 3189, 3190, 3201, 3185, 3186, 3187, 3220, 2877, 473: 3260, 475: 3239, 3258, 479: 3268, 482: 3272, 3276, 485: 3257, 3256, 3295, 492: 3230, 495: 3269, 504: 3275, 3293, 508: 3234, 530: 3264, 564: 3271, 567: 3294, 3349, 570: 3277, 3229, 3231, 3233, 3232, 3261, 3237, 3251, 3242, 3263, 3238, 582: 3270, 3262, 3267, 3273, 3283, 3336, 3284, 3285, 592: 3236, 3314, 595: 3254, 3255, 3309, 3310, 3311, 3312, 3313, 3265, 3291, 3296, 3306, 3307, 3300, 3315, 3316, 3317, 3301, 3319, 3320, 3302, 3318, 3297, 3305, 3303, 3289, 3321, 3322, 3266, 3326, 3278, 3279, 3282, 3325, 3331, 3330, 3332, 3329, 3333, 3328, 3327, 3324, 3274, 3323, 3281, 3280, 3286, 3287, 661: 3244, 2762, 2763, 2761, 709: 3259, 3335, 3245, 3250, 3235, 3308, 3248, 3246, 3247, 3288, 3299, 3298, 3292, 3290, 3304, 3243, 3253, 3334, 3252, 3249, 3714}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 2840, 2788, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 2869, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 2874, 2801, 2766, 2783, 2948, 3031, 3020, 2818, 2830, 2941, 2942, 2937, 2895, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 2876, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 2760, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 2880, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 2799, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 2866, 2865, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 2936, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 2824, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 2751, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 2882, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 2752, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3144, 2878, 3145, 3146, 2777, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3159, 3160, 3211, 3210, 3057, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 2918, 2935, 3058, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3177, 3178, 3179, 2931, 3130, 3189, 3190, 3201, 3185, 3186, 3187, 3220, 2877, 473: 3260, 475: 3239, 3258, 479: 3268, 482: 3272, 3276, 485: 3257, 3256, 3295, 492: 3230, 495: 3269, 504: 3275, 3293, 508: 3234, 530: 3264, 564: 3271, 567: 3294, 3349, 570: 3277, 3229, 3231, 3233, 3232, 3261, 3237, 3251, 3242, 3263, 3238, 582: 3270, 3262, 3267, 3273, 3283, 3336, 3284, 3285, 592: 3236, 3314, 595: 3254, 3255, 3309, 3310, 3311, 3312, 3313, 3265, 3291, 3296, 3306, 3307, 3300, 3315, 3316, 3317, 3301, 3319, 3320, 3302, 3318, 3297, 3305, 3303, 3289, 3321, 3322, 3266, 3326, 3278, 3279, 3282, 3325, 3331, 3330, 3332, 3329, 3333, 3328, 3327, 3324, 3274, 3323, 3281, 3280, 3286, 3287, 661: 3244, 2762, 2763, 2761, 709: 3259, 3335, 3245, 3250, 3235, 3308, 3248, 3246, 3247, 3288, 3299, 3298, 3292, 3290, 3304, 3243, 3253, 3334, 3252, 3249, 3713}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 2840, 2788, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 2869, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 2874, 2801, 2766, 2783, 2948, 3031, 3020, 2818, 2830, 2941, 2942, 2937, 2895, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 2876, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 2760, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 2880, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 2799, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 2866, 2865, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 2936, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 2824, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 2751, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 2882, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 2752, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3144, 2878, 3145, 3146, 2777, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3159, 3160, 3211, 3210, 3057, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 2918, 2935, 3058, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3177, 3178, 3179, 2931, 3130, 3189, 3190, 3201, 3185, 3186, 3187, 3220, 2877, 473: 3260, 475: 3239, 3258, 479: 3268, 482: 3272, 3276, 485: 3257, 3256, 3295, 492: 3230, 495: 3269, 504: 3275, 3293, 508: 3234, 530: 3264, 564: 3271, 567: 3294, 3349, 570: 3277, 3229, 3231, 3233, 3232, 3261, 3237, 3251, 3710, 3263, 3238, 582: 3270, 3262, 3267, 3273, 3283, 3336, 3284, 3285, 592: 3236, 3314, 595: 3254, 3255, 3309, 3310, 3311, 3312, 3313, 3265, 3291, 3296, 3306, 3307, 3300, 3315, 3316, 3317, 3301, 3319, 3320, 3302, 3318, 3297, 3305, 3303, 3289, 3321, 3322, 3266, 3326, 3278, 3279, 3282, 3325, 3331, 3330, 3332, 3329, 3333, 3328, 3327, 3324, 3274, 3323, 3281, 3280, 3286, 3287, 661: 3244, 2762, 2763, 2761, 709: 3259, 3335, 3245, 3250, 3235, 3308, 3248, 3246, 3247, 3288, 3299, 3298, 3292, 3290, 3304, 3243, 3253, 3334, 3252, 3249, 3709}, + {1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 477: 1186, 1186, 1186, 1186, 1186, 483: 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 492: 1186, 1186, 1186, 496: 1186, 1186, 499: 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 509: 1186, 1186, 512: 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 534: 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 568: 1186, 1186, 597: 1186}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 2864, 2812, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 2893, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 2898, 2825, 2789, 2807, 2972, 3055, 3044, 2842, 2854, 2965, 2966, 2961, 2919, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 2900, 2885, 2881, 2973, 2997, 2783, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 2904, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 2823, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 2889, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 2890, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 2960, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 2848, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 2774, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 2906, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 2775, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3170, 2902, 3171, 3172, 2801, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3185, 3186, 3237, 3236, 3081, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 2942, 2959, 3082, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3203, 3204, 3205, 2955, 3156, 3215, 3216, 3227, 3211, 3212, 3213, 3246, 2901, 476: 3286, 478: 3265, 3284, 2778, 482: 3294, 485: 3298, 3302, 488: 3283, 3282, 3321, 495: 3256, 498: 3295, 507: 3301, 3319, 511: 3260, 533: 3290, 567: 3297, 570: 3320, 2776, 573: 3303, 3255, 3257, 3259, 3258, 3287, 3263, 3277, 3268, 3289, 3264, 585: 3296, 3288, 3293, 3299, 3309, 3362, 3310, 3311, 595: 3262, 3340, 598: 3280, 3281, 3335, 3336, 3337, 3338, 3339, 3291, 3317, 3322, 3332, 3333, 3326, 3341, 3342, 3343, 3327, 3345, 3346, 3328, 3344, 3323, 3331, 3329, 3315, 3347, 3348, 3292, 3352, 3304, 3305, 3308, 3351, 3357, 3356, 3358, 3355, 3359, 3354, 3353, 3350, 3300, 3349, 3307, 3306, 3312, 3313, 651: 2779, 664: 3270, 2785, 2786, 2784, 713: 3285, 3361, 3271, 3276, 3261, 3334, 3274, 3272, 3273, 3314, 3325, 3324, 3318, 3316, 3330, 3269, 3279, 3360, 3278, 3275, 2782, 2781, 2780, 3704}, + {50: 3705, 510: 3371, 512: 3369, 3370, 3368, 3366, 738: 3367, 3365}, + {1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 477: 1184, 1184, 1184, 1184, 1184, 483: 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 492: 1184, 1184, 1184, 496: 1184, 1184, 499: 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 509: 1184, 1184, 512: 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 534: 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 568: 1184, 1184, 597: 1184}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 2864, 2812, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 2893, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 2898, 2825, 2789, 2807, 2972, 3055, 3044, 2842, 2854, 2965, 2966, 2961, 2919, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 2900, 2885, 2881, 2973, 2997, 2783, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 2904, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 2823, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 2889, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 2890, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 2960, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 2848, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 2774, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 2906, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 2775, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3170, 2902, 3171, 3172, 2801, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3185, 3186, 3237, 3236, 3081, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 2942, 2959, 3082, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3203, 3204, 3205, 2955, 3156, 3215, 3216, 3227, 3211, 3212, 3213, 3246, 2901, 476: 3286, 478: 3265, 3284, 482: 3294, 485: 3298, 3302, 488: 3283, 3282, 3321, 495: 3256, 498: 3295, 507: 3301, 3319, 511: 3260, 533: 3290, 567: 3297, 570: 3320, 3375, 573: 3303, 3255, 3257, 3259, 3258, 3287, 3263, 3277, 3268, 3289, 3264, 585: 3296, 3288, 3293, 3299, 3309, 3362, 3310, 3311, 595: 3262, 3340, 598: 3280, 3281, 3335, 3336, 3337, 3338, 3339, 3291, 3317, 3322, 3332, 3333, 3326, 3341, 3342, 3343, 3327, 3345, 3346, 3328, 3344, 3323, 3331, 3329, 3315, 3347, 3348, 3292, 3352, 3304, 3305, 3308, 3351, 3357, 3356, 3358, 3355, 3359, 3354, 3353, 3350, 3300, 3349, 3307, 3306, 3312, 3313, 664: 3270, 2785, 2786, 2784, 713: 3285, 3361, 3271, 3276, 3261, 3334, 3274, 3272, 3273, 3314, 3325, 3324, 3318, 3316, 3330, 3269, 3279, 3360, 3278, 3275, 3707}, // 1150 - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 2840, 2788, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 2869, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 2874, 2801, 2766, 2783, 2948, 3031, 3020, 2818, 2830, 2941, 2942, 2937, 2895, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 2876, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 2760, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 2880, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 2799, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 2866, 2865, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 2936, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 2824, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 2751, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 2882, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 2752, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3144, 2878, 3145, 3146, 2777, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3159, 3160, 3211, 3210, 3057, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 2918, 2935, 3058, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3177, 3178, 3179, 2931, 3130, 3189, 3190, 3201, 3185, 3186, 3187, 3220, 2877, 473: 3260, 475: 3239, 3258, 479: 3268, 482: 3272, 3276, 485: 3257, 3256, 3295, 492: 3230, 495: 3269, 504: 3275, 3293, 508: 3234, 530: 3264, 564: 3271, 567: 3294, 3349, 570: 3277, 3229, 3231, 3233, 3232, 3261, 3237, 3251, 3704, 3263, 3238, 582: 3270, 3262, 3267, 3273, 3283, 3336, 3284, 3285, 592: 3236, 3314, 595: 3254, 3255, 3309, 3310, 3311, 3312, 3313, 3265, 3291, 3296, 3306, 3307, 3300, 3315, 3316, 3317, 3301, 3319, 3320, 3302, 3318, 3297, 3305, 3303, 3289, 3321, 3322, 3266, 3326, 3278, 3279, 3282, 3325, 3331, 3330, 3332, 3329, 3333, 3328, 3327, 3324, 3274, 3323, 3281, 3280, 3286, 3287, 661: 3244, 2762, 2763, 2761, 709: 3259, 3335, 3245, 3250, 3235, 3308, 3248, 3246, 3247, 3288, 3299, 3298, 3292, 3290, 3304, 3243, 3253, 3334, 3252, 3249, 3703}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 2840, 2788, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 2869, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 2874, 2801, 2766, 2783, 2948, 3031, 3020, 2818, 2830, 2941, 2942, 2937, 2895, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 2876, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 2760, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 2880, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 2799, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 2866, 2865, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 2936, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 2824, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 2751, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 2882, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 2752, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3144, 2878, 3145, 3146, 2777, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3159, 3160, 3211, 3210, 3057, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 2918, 2935, 3058, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3177, 3178, 3179, 2931, 3130, 3189, 3190, 3201, 3185, 3186, 3187, 3220, 2877, 473: 3260, 475: 3239, 3258, 479: 3268, 482: 3272, 3276, 485: 3257, 3256, 3295, 492: 3230, 495: 3269, 504: 3275, 3293, 508: 3234, 530: 3264, 564: 3271, 567: 3294, 3349, 570: 3277, 3229, 3231, 3233, 3232, 3261, 3237, 3251, 3242, 3263, 3238, 582: 3270, 3262, 3267, 3273, 3283, 3336, 3284, 3285, 592: 3236, 3314, 595: 3254, 3255, 3309, 3310, 3311, 3312, 3313, 3265, 3291, 3296, 3306, 3307, 3300, 3315, 3316, 3317, 3301, 3319, 3320, 3302, 3318, 3297, 3305, 3303, 3289, 3321, 3322, 3266, 3326, 3278, 3279, 3282, 3325, 3331, 3330, 3332, 3329, 3333, 3328, 3327, 3324, 3274, 3323, 3281, 3280, 3286, 3287, 661: 3244, 2762, 2763, 2761, 709: 3259, 3335, 3245, 3250, 3235, 3308, 3248, 3246, 3247, 3288, 3299, 3298, 3292, 3290, 3304, 3243, 3253, 3334, 3252, 3249, 3702}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 2840, 2788, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 2869, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 2874, 2801, 2766, 2783, 2948, 3031, 3020, 2818, 2830, 2941, 2942, 2937, 2895, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 2876, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 2760, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 2880, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 2799, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 2866, 2865, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 2936, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 2824, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 2751, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 2882, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 2752, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3144, 2878, 3145, 3146, 2777, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3159, 3160, 3211, 3210, 3057, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 2918, 2935, 3058, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3177, 3178, 3179, 2931, 3130, 3189, 3190, 3201, 3185, 3186, 3187, 3220, 2877, 473: 3260, 475: 3239, 3258, 479: 3268, 482: 3272, 3276, 485: 3257, 3256, 3295, 492: 3230, 495: 3269, 504: 3275, 3293, 508: 3234, 530: 3264, 564: 3271, 567: 3294, 3349, 570: 3277, 3229, 3231, 3233, 3232, 3261, 3237, 3251, 3242, 3263, 3238, 582: 3270, 3262, 3267, 3273, 3283, 3336, 3284, 3285, 592: 3236, 3314, 595: 3254, 3255, 3309, 3310, 3311, 3312, 3313, 3265, 3291, 3296, 3306, 3307, 3300, 3315, 3316, 3317, 3301, 3319, 3320, 3302, 3318, 3297, 3305, 3303, 3289, 3321, 3322, 3266, 3326, 3278, 3279, 3282, 3325, 3331, 3330, 3332, 3329, 3333, 3328, 3327, 3324, 3274, 3323, 3281, 3280, 3286, 3287, 661: 3244, 2762, 2763, 2761, 709: 3259, 3335, 3245, 3250, 3235, 3308, 3248, 3246, 3247, 3288, 3299, 3298, 3292, 3290, 3304, 3243, 3253, 3334, 3252, 3249, 3701}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 2840, 2788, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 2869, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 2874, 2801, 2766, 2783, 2948, 3031, 3020, 2818, 2830, 2941, 2942, 2937, 2895, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 2876, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 2760, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 2880, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 2799, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 2866, 2865, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 2936, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 2824, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 2751, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 2882, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 2752, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3144, 2878, 3145, 3146, 2777, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3159, 3160, 3211, 3210, 3057, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 2918, 2935, 3058, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3177, 3178, 3179, 2931, 3130, 3189, 3190, 3201, 3185, 3186, 3187, 3220, 2877, 473: 3260, 475: 3239, 3258, 479: 3268, 482: 3272, 3276, 485: 3257, 3256, 3295, 492: 3230, 495: 3269, 504: 3275, 3293, 508: 3234, 530: 3264, 564: 3271, 567: 3294, 3349, 570: 3277, 3229, 3231, 3233, 3232, 3261, 3237, 3251, 3242, 3263, 3238, 582: 3270, 3262, 3267, 3273, 3283, 3336, 3284, 3285, 592: 3236, 3314, 595: 3254, 3255, 3309, 3310, 3311, 3312, 3313, 3265, 3291, 3296, 3306, 3307, 3300, 3315, 3316, 3317, 3301, 3319, 3320, 3302, 3318, 3297, 3305, 3303, 3289, 3321, 3322, 3266, 3326, 3278, 3279, 3282, 3325, 3331, 3330, 3332, 3329, 3333, 3328, 3327, 3324, 3274, 3323, 3281, 3280, 3286, 3287, 661: 3244, 2762, 2763, 2761, 709: 3259, 3335, 3245, 3250, 3235, 3308, 3248, 3246, 3247, 3288, 3299, 3298, 3292, 3290, 3304, 3243, 3253, 3334, 3252, 3249, 3700}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 2840, 2788, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 2869, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 2874, 2801, 2766, 2783, 2948, 3031, 3020, 2818, 2830, 2941, 2942, 2937, 2895, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 2876, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 2760, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 2880, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 2799, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 2866, 2865, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 2936, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 2824, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 2751, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 2882, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 2752, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3144, 2878, 3145, 3146, 2777, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3159, 3160, 3211, 3210, 3057, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 2918, 2935, 3058, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3177, 3178, 3179, 2931, 3130, 3189, 3190, 3201, 3185, 3186, 3187, 3220, 2877, 473: 3260, 475: 3239, 3258, 479: 3268, 482: 3272, 3276, 485: 3257, 3256, 3295, 492: 3230, 495: 3269, 504: 3275, 3293, 508: 3234, 530: 3264, 564: 3271, 567: 3294, 3349, 570: 3277, 3229, 3231, 3233, 3232, 3261, 3237, 3251, 3242, 3263, 3238, 582: 3270, 3262, 3267, 3273, 3283, 3336, 3284, 3285, 592: 3236, 3314, 595: 3254, 3255, 3309, 3310, 3311, 3312, 3313, 3265, 3291, 3296, 3306, 3307, 3300, 3315, 3316, 3317, 3301, 3319, 3320, 3302, 3318, 3297, 3305, 3303, 3289, 3321, 3322, 3266, 3326, 3278, 3279, 3282, 3325, 3331, 3330, 3332, 3329, 3333, 3328, 3327, 3324, 3274, 3323, 3281, 3280, 3286, 3287, 661: 3244, 2762, 2763, 2761, 709: 3259, 3335, 3245, 3250, 3235, 3308, 3248, 3246, 3247, 3288, 3299, 3298, 3292, 3290, 3304, 3243, 3253, 3334, 3252, 3249, 3699}, + {488: 3712, 3713, 3718, 523: 3714, 547: 3720, 550: 3715, 3716, 3709, 3719, 3708, 3717, 3710, 3711}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 2864, 2812, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 2893, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 2898, 2825, 2789, 2807, 2972, 3055, 3044, 2842, 2854, 2965, 2966, 2961, 2919, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 2900, 2885, 2881, 2973, 2997, 2783, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 2904, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 2823, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 2889, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 2890, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 2960, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 2848, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 2774, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 2906, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 2775, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3170, 2902, 3171, 3172, 2801, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3185, 3186, 3237, 3236, 3081, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 2942, 2959, 3082, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3203, 3204, 3205, 2955, 3156, 3215, 3216, 3227, 3211, 3212, 3213, 3246, 2901, 476: 3286, 478: 3265, 3284, 482: 3294, 485: 3298, 3302, 488: 3283, 3282, 3321, 495: 3256, 498: 3295, 507: 3301, 3319, 511: 3260, 533: 3290, 567: 3297, 570: 3320, 3375, 573: 3303, 3255, 3257, 3259, 3258, 3287, 3263, 3277, 3268, 3289, 3264, 585: 3296, 3288, 3293, 3299, 3309, 3362, 3310, 3311, 595: 3262, 3340, 598: 3280, 3281, 3335, 3336, 3337, 3338, 3339, 3291, 3317, 3322, 3332, 3333, 3326, 3341, 3342, 3343, 3327, 3345, 3346, 3328, 3344, 3323, 3331, 3329, 3315, 3347, 3348, 3292, 3352, 3304, 3305, 3308, 3351, 3357, 3356, 3358, 3355, 3359, 3354, 3353, 3350, 3300, 3349, 3307, 3306, 3312, 3313, 664: 3270, 2785, 2786, 2784, 713: 3285, 3361, 3271, 3276, 3261, 3334, 3274, 3272, 3273, 3314, 3325, 3324, 3318, 3316, 3330, 3269, 3279, 3360, 3278, 3275, 3742}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 2864, 2812, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 2893, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 2898, 2825, 2789, 2807, 2972, 3055, 3044, 2842, 2854, 2965, 2966, 2961, 2919, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 2900, 2885, 2881, 2973, 2997, 2783, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 2904, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 2823, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 2889, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 2890, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 2960, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 2848, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 2774, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 2906, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 2775, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3170, 2902, 3171, 3172, 2801, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3185, 3186, 3237, 3236, 3081, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 2942, 2959, 3082, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3203, 3204, 3205, 2955, 3156, 3215, 3216, 3227, 3211, 3212, 3213, 3246, 2901, 476: 3286, 478: 3265, 3284, 482: 3294, 485: 3298, 3302, 488: 3283, 3282, 3321, 495: 3256, 498: 3295, 507: 3301, 3319, 511: 3260, 533: 3290, 567: 3297, 570: 3320, 3375, 573: 3303, 3255, 3257, 3259, 3258, 3287, 3263, 3277, 3268, 3289, 3264, 585: 3296, 3288, 3293, 3299, 3309, 3362, 3310, 3311, 595: 3262, 3340, 598: 3280, 3281, 3335, 3336, 3337, 3338, 3339, 3291, 3317, 3322, 3332, 3333, 3326, 3341, 3342, 3343, 3327, 3345, 3346, 3328, 3344, 3323, 3331, 3329, 3315, 3347, 3348, 3292, 3352, 3304, 3305, 3308, 3351, 3357, 3356, 3358, 3355, 3359, 3354, 3353, 3350, 3300, 3349, 3307, 3306, 3312, 3313, 664: 3270, 2785, 2786, 2784, 713: 3285, 3361, 3271, 3276, 3261, 3334, 3274, 3272, 3273, 3314, 3325, 3324, 3318, 3316, 3330, 3269, 3279, 3360, 3278, 3275, 3741}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 2864, 2812, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 2893, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 2898, 2825, 2789, 2807, 2972, 3055, 3044, 2842, 2854, 2965, 2966, 2961, 2919, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 2900, 2885, 2881, 2973, 2997, 2783, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 2904, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 2823, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 2889, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 2890, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 2960, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 2848, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 2774, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 2906, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 2775, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3170, 2902, 3171, 3172, 2801, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3185, 3186, 3237, 3236, 3081, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 2942, 2959, 3082, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3203, 3204, 3205, 2955, 3156, 3215, 3216, 3227, 3211, 3212, 3213, 3246, 2901, 476: 3286, 478: 3265, 3284, 482: 3294, 485: 3298, 3302, 488: 3283, 3282, 3321, 495: 3256, 498: 3295, 507: 3301, 3319, 511: 3260, 533: 3290, 567: 3297, 570: 3320, 3375, 573: 3303, 3255, 3257, 3259, 3258, 3287, 3263, 3277, 3268, 3289, 3264, 585: 3296, 3288, 3293, 3299, 3309, 3362, 3310, 3311, 595: 3262, 3340, 598: 3280, 3281, 3335, 3336, 3337, 3338, 3339, 3291, 3317, 3322, 3332, 3333, 3326, 3341, 3342, 3343, 3327, 3345, 3346, 3328, 3344, 3323, 3331, 3329, 3315, 3347, 3348, 3292, 3352, 3304, 3305, 3308, 3351, 3357, 3356, 3358, 3355, 3359, 3354, 3353, 3350, 3300, 3349, 3307, 3306, 3312, 3313, 664: 3270, 2785, 2786, 2784, 713: 3285, 3361, 3271, 3276, 3261, 3334, 3274, 3272, 3273, 3314, 3325, 3324, 3318, 3316, 3330, 3269, 3279, 3360, 3278, 3275, 3740}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 2864, 2812, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 2893, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 2898, 2825, 2789, 2807, 2972, 3055, 3044, 2842, 2854, 2965, 2966, 2961, 2919, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 2900, 2885, 2881, 2973, 2997, 2783, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 2904, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 2823, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 2889, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 2890, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 2960, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 2848, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 2774, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 2906, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 2775, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3170, 2902, 3171, 3172, 2801, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3185, 3186, 3237, 3236, 3081, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 2942, 2959, 3082, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3203, 3204, 3205, 2955, 3156, 3215, 3216, 3227, 3211, 3212, 3213, 3246, 2901, 476: 3286, 478: 3265, 3284, 482: 3294, 485: 3298, 3302, 488: 3283, 3282, 3321, 495: 3256, 498: 3295, 507: 3301, 3319, 511: 3260, 533: 3290, 567: 3297, 570: 3320, 3375, 573: 3303, 3255, 3257, 3259, 3258, 3287, 3263, 3277, 3268, 3289, 3264, 585: 3296, 3288, 3293, 3299, 3309, 3362, 3310, 3311, 595: 3262, 3340, 598: 3280, 3281, 3335, 3336, 3337, 3338, 3339, 3291, 3317, 3322, 3332, 3333, 3326, 3341, 3342, 3343, 3327, 3345, 3346, 3328, 3344, 3323, 3331, 3329, 3315, 3347, 3348, 3292, 3352, 3304, 3305, 3308, 3351, 3357, 3356, 3358, 3355, 3359, 3354, 3353, 3350, 3300, 3349, 3307, 3306, 3312, 3313, 664: 3270, 2785, 2786, 2784, 713: 3285, 3361, 3271, 3276, 3261, 3334, 3274, 3272, 3273, 3314, 3325, 3324, 3318, 3316, 3330, 3269, 3279, 3360, 3278, 3275, 3739}, // 1155 - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 2840, 2788, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 2869, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 2874, 2801, 2766, 2783, 2948, 3031, 3020, 2818, 2830, 2941, 2942, 2937, 2895, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 2876, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 2760, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 2880, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 2799, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 2866, 2865, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 2936, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 2824, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 2751, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 2882, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 2752, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3144, 2878, 3145, 3146, 2777, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3159, 3160, 3211, 3210, 3057, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 2918, 2935, 3058, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3177, 3178, 3179, 2931, 3130, 3189, 3190, 3201, 3185, 3186, 3187, 3220, 2877, 473: 3260, 475: 3239, 3258, 479: 3268, 482: 3272, 3276, 485: 3257, 3256, 3295, 492: 3230, 495: 3269, 504: 3275, 3293, 508: 3234, 530: 3264, 564: 3271, 567: 3294, 3349, 570: 3277, 3229, 3231, 3233, 3232, 3261, 3237, 3251, 3242, 3263, 3238, 582: 3270, 3262, 3267, 3273, 3283, 3336, 3284, 3285, 592: 3236, 3314, 595: 3254, 3255, 3309, 3310, 3311, 3312, 3313, 3265, 3291, 3296, 3306, 3307, 3300, 3315, 3316, 3317, 3301, 3319, 3320, 3302, 3318, 3297, 3305, 3303, 3289, 3321, 3322, 3266, 3326, 3278, 3279, 3282, 3325, 3331, 3330, 3332, 3329, 3333, 3328, 3327, 3324, 3274, 3323, 3281, 3280, 3286, 3287, 661: 3244, 2762, 2763, 2761, 709: 3259, 3335, 3245, 3250, 3235, 3308, 3248, 3246, 3247, 3288, 3299, 3298, 3292, 3290, 3304, 3243, 3253, 3334, 3252, 3249, 3698}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 2840, 2788, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 2869, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 2874, 2801, 2766, 2783, 2948, 3031, 3020, 2818, 2830, 2941, 2942, 2937, 2895, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 2876, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 2760, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 2880, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 2799, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 2866, 2865, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 2936, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 2824, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 2751, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 2882, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 2752, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3144, 2878, 3145, 3146, 2777, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3159, 3160, 3211, 3210, 3057, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 2918, 2935, 3058, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3177, 3178, 3179, 2931, 3130, 3189, 3190, 3201, 3185, 3186, 3187, 3220, 2877, 473: 3260, 475: 3239, 3258, 479: 3268, 482: 3272, 3276, 485: 3257, 3256, 3295, 492: 3230, 495: 3269, 504: 3275, 3293, 508: 3234, 530: 3264, 564: 3271, 567: 3294, 3349, 570: 3277, 3229, 3231, 3233, 3232, 3261, 3237, 3251, 3242, 3263, 3238, 582: 3270, 3262, 3267, 3273, 3283, 3336, 3284, 3285, 592: 3236, 3314, 595: 3254, 3255, 3309, 3310, 3311, 3312, 3313, 3265, 3291, 3296, 3306, 3307, 3300, 3315, 3316, 3317, 3301, 3319, 3320, 3302, 3318, 3297, 3305, 3303, 3289, 3321, 3322, 3266, 3326, 3278, 3279, 3282, 3325, 3331, 3330, 3332, 3329, 3333, 3328, 3327, 3324, 3274, 3323, 3281, 3280, 3286, 3287, 661: 3244, 2762, 2763, 2761, 709: 3259, 3335, 3245, 3250, 3235, 3308, 3248, 3246, 3247, 3288, 3299, 3298, 3292, 3290, 3304, 3243, 3253, 3334, 3252, 3249, 3697}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 2840, 2788, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 2869, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 2874, 2801, 2766, 2783, 2948, 3031, 3020, 2818, 2830, 2941, 2942, 2937, 2895, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 2876, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 2760, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 2880, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 2799, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 2866, 2865, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 2936, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 2824, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 2751, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 2882, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 2752, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3144, 2878, 3145, 3146, 2777, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3159, 3160, 3211, 3210, 3057, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 2918, 2935, 3058, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3177, 3178, 3179, 2931, 3130, 3189, 3190, 3201, 3185, 3186, 3187, 3220, 2877, 473: 3260, 475: 3239, 3258, 2755, 479: 3268, 482: 3272, 3276, 485: 3257, 3256, 3295, 492: 3230, 495: 3269, 504: 3275, 3293, 508: 3234, 530: 3264, 564: 3271, 567: 3294, 2753, 570: 3277, 3229, 3231, 3233, 3232, 3261, 3237, 3251, 3242, 3263, 3238, 582: 3270, 3262, 3267, 3273, 3283, 3336, 3284, 3285, 592: 3236, 3314, 595: 3254, 3255, 3309, 3310, 3311, 3312, 3313, 3265, 3291, 3296, 3306, 3307, 3300, 3315, 3316, 3317, 3301, 3319, 3320, 3302, 3318, 3297, 3305, 3303, 3289, 3321, 3322, 3266, 3326, 3278, 3279, 3282, 3325, 3331, 3330, 3332, 3329, 3333, 3328, 3327, 3324, 3274, 3323, 3281, 3280, 3286, 3287, 648: 2756, 661: 3244, 2762, 2763, 2761, 709: 3259, 3335, 3245, 3250, 3235, 3308, 3248, 3246, 3247, 3288, 3299, 3298, 3292, 3290, 3304, 3243, 3253, 3334, 3252, 3249, 2759, 2758, 2757, 3695}, - {49: 3696, 507: 3345, 509: 3343, 3344, 3342, 3340, 734: 3341, 3339}, - {1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 474: 1173, 1173, 1173, 1173, 1173, 480: 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 489: 1173, 1173, 1173, 493: 1173, 1173, 496: 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 506: 1173, 1173, 509: 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 531: 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 1173, 565: 1173, 1173, 594: 1173}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 2864, 2812, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 2893, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 2898, 2825, 2789, 2807, 2972, 3055, 3044, 2842, 2854, 2965, 2966, 2961, 2919, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 2900, 2885, 2881, 2973, 2997, 2783, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 2904, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 2823, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 2889, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 2890, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 2960, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 2848, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 2774, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 2906, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 2775, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3170, 2902, 3171, 3172, 2801, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3185, 3186, 3237, 3236, 3081, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 2942, 2959, 3082, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3203, 3204, 3205, 2955, 3156, 3215, 3216, 3227, 3211, 3212, 3213, 3246, 2901, 476: 3286, 478: 3265, 3284, 482: 3294, 485: 3298, 3302, 488: 3283, 3282, 3321, 495: 3256, 498: 3295, 507: 3301, 3319, 511: 3260, 533: 3290, 567: 3297, 570: 3320, 3375, 573: 3303, 3255, 3257, 3259, 3258, 3287, 3263, 3277, 3736, 3289, 3264, 585: 3296, 3288, 3293, 3299, 3309, 3362, 3310, 3311, 595: 3262, 3340, 598: 3280, 3281, 3335, 3336, 3337, 3338, 3339, 3291, 3317, 3322, 3332, 3333, 3326, 3341, 3342, 3343, 3327, 3345, 3346, 3328, 3344, 3323, 3331, 3329, 3315, 3347, 3348, 3292, 3352, 3304, 3305, 3308, 3351, 3357, 3356, 3358, 3355, 3359, 3354, 3353, 3350, 3300, 3349, 3307, 3306, 3312, 3313, 664: 3270, 2785, 2786, 2784, 713: 3285, 3361, 3271, 3276, 3261, 3334, 3274, 3272, 3273, 3314, 3325, 3324, 3318, 3316, 3330, 3269, 3279, 3360, 3278, 3275, 3735}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 2864, 2812, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 2893, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 2898, 2825, 2789, 2807, 2972, 3055, 3044, 2842, 2854, 2965, 2966, 2961, 2919, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 2900, 2885, 2881, 2973, 2997, 2783, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 2904, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 2823, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 2889, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 2890, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 2960, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 2848, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 2774, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 2906, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 2775, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3170, 2902, 3171, 3172, 2801, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3185, 3186, 3237, 3236, 3081, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 2942, 2959, 3082, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3203, 3204, 3205, 2955, 3156, 3215, 3216, 3227, 3211, 3212, 3213, 3246, 2901, 476: 3286, 478: 3265, 3284, 482: 3294, 485: 3298, 3302, 488: 3283, 3282, 3321, 495: 3256, 498: 3295, 507: 3301, 3319, 511: 3260, 533: 3290, 567: 3297, 570: 3320, 3375, 573: 3303, 3255, 3257, 3259, 3258, 3287, 3263, 3277, 3730, 3289, 3264, 585: 3296, 3288, 3293, 3299, 3309, 3362, 3310, 3311, 595: 3262, 3340, 598: 3280, 3281, 3335, 3336, 3337, 3338, 3339, 3291, 3317, 3322, 3332, 3333, 3326, 3341, 3342, 3343, 3327, 3345, 3346, 3328, 3344, 3323, 3331, 3329, 3315, 3347, 3348, 3292, 3352, 3304, 3305, 3308, 3351, 3357, 3356, 3358, 3355, 3359, 3354, 3353, 3350, 3300, 3349, 3307, 3306, 3312, 3313, 664: 3270, 2785, 2786, 2784, 713: 3285, 3361, 3271, 3276, 3261, 3334, 3274, 3272, 3273, 3314, 3325, 3324, 3318, 3316, 3330, 3269, 3279, 3360, 3278, 3275, 3729}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 2864, 2812, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 2893, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 2898, 2825, 2789, 2807, 2972, 3055, 3044, 2842, 2854, 2965, 2966, 2961, 2919, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 2900, 2885, 2881, 2973, 2997, 2783, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 2904, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 2823, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 2889, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 2890, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 2960, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 2848, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 2774, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 2906, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 2775, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3170, 2902, 3171, 3172, 2801, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3185, 3186, 3237, 3236, 3081, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 2942, 2959, 3082, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3203, 3204, 3205, 2955, 3156, 3215, 3216, 3227, 3211, 3212, 3213, 3246, 2901, 476: 3286, 478: 3265, 3284, 482: 3294, 485: 3298, 3302, 488: 3283, 3282, 3321, 495: 3256, 498: 3295, 507: 3301, 3319, 511: 3260, 533: 3290, 567: 3297, 570: 3320, 3375, 573: 3303, 3255, 3257, 3259, 3258, 3287, 3263, 3277, 3268, 3289, 3264, 585: 3296, 3288, 3293, 3299, 3309, 3362, 3310, 3311, 595: 3262, 3340, 598: 3280, 3281, 3335, 3336, 3337, 3338, 3339, 3291, 3317, 3322, 3332, 3333, 3326, 3341, 3342, 3343, 3327, 3345, 3346, 3328, 3344, 3323, 3331, 3329, 3315, 3347, 3348, 3292, 3352, 3304, 3305, 3308, 3351, 3357, 3356, 3358, 3355, 3359, 3354, 3353, 3350, 3300, 3349, 3307, 3306, 3312, 3313, 664: 3270, 2785, 2786, 2784, 713: 3285, 3361, 3271, 3276, 3261, 3334, 3274, 3272, 3273, 3314, 3325, 3324, 3318, 3316, 3330, 3269, 3279, 3360, 3278, 3275, 3728}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 2864, 2812, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 2893, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 2898, 2825, 2789, 2807, 2972, 3055, 3044, 2842, 2854, 2965, 2966, 2961, 2919, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 2900, 2885, 2881, 2973, 2997, 2783, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 2904, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 2823, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 2889, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 2890, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 2960, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 2848, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 2774, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 2906, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 2775, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3170, 2902, 3171, 3172, 2801, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3185, 3186, 3237, 3236, 3081, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 2942, 2959, 3082, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3203, 3204, 3205, 2955, 3156, 3215, 3216, 3227, 3211, 3212, 3213, 3246, 2901, 476: 3286, 478: 3265, 3284, 482: 3294, 485: 3298, 3302, 488: 3283, 3282, 3321, 495: 3256, 498: 3295, 507: 3301, 3319, 511: 3260, 533: 3290, 567: 3297, 570: 3320, 3375, 573: 3303, 3255, 3257, 3259, 3258, 3287, 3263, 3277, 3268, 3289, 3264, 585: 3296, 3288, 3293, 3299, 3309, 3362, 3310, 3311, 595: 3262, 3340, 598: 3280, 3281, 3335, 3336, 3337, 3338, 3339, 3291, 3317, 3322, 3332, 3333, 3326, 3341, 3342, 3343, 3327, 3345, 3346, 3328, 3344, 3323, 3331, 3329, 3315, 3347, 3348, 3292, 3352, 3304, 3305, 3308, 3351, 3357, 3356, 3358, 3355, 3359, 3354, 3353, 3350, 3300, 3349, 3307, 3306, 3312, 3313, 664: 3270, 2785, 2786, 2784, 713: 3285, 3361, 3271, 3276, 3261, 3334, 3274, 3272, 3273, 3314, 3325, 3324, 3318, 3316, 3330, 3269, 3279, 3360, 3278, 3275, 3727}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 2864, 2812, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 2893, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 2898, 2825, 2789, 2807, 2972, 3055, 3044, 2842, 2854, 2965, 2966, 2961, 2919, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 2900, 2885, 2881, 2973, 2997, 2783, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 2904, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 2823, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 2889, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 2890, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 2960, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 2848, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 2774, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 2906, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 2775, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3170, 2902, 3171, 3172, 2801, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3185, 3186, 3237, 3236, 3081, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 2942, 2959, 3082, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3203, 3204, 3205, 2955, 3156, 3215, 3216, 3227, 3211, 3212, 3213, 3246, 2901, 476: 3286, 478: 3265, 3284, 482: 3294, 485: 3298, 3302, 488: 3283, 3282, 3321, 495: 3256, 498: 3295, 507: 3301, 3319, 511: 3260, 533: 3290, 567: 3297, 570: 3320, 3375, 573: 3303, 3255, 3257, 3259, 3258, 3287, 3263, 3277, 3268, 3289, 3264, 585: 3296, 3288, 3293, 3299, 3309, 3362, 3310, 3311, 595: 3262, 3340, 598: 3280, 3281, 3335, 3336, 3337, 3338, 3339, 3291, 3317, 3322, 3332, 3333, 3326, 3341, 3342, 3343, 3327, 3345, 3346, 3328, 3344, 3323, 3331, 3329, 3315, 3347, 3348, 3292, 3352, 3304, 3305, 3308, 3351, 3357, 3356, 3358, 3355, 3359, 3354, 3353, 3350, 3300, 3349, 3307, 3306, 3312, 3313, 664: 3270, 2785, 2786, 2784, 713: 3285, 3361, 3271, 3276, 3261, 3334, 3274, 3272, 3273, 3314, 3325, 3324, 3318, 3316, 3330, 3269, 3279, 3360, 3278, 3275, 3726}, // 1160 - {1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 474: 1281, 1281, 1281, 1281, 1281, 480: 1281, 1281, 1281, 1281, 485: 1281, 1281, 1281, 489: 1281, 1281, 1281, 493: 1281, 1281, 496: 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 506: 1281, 1281, 509: 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 531: 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 1281, 565: 1281, 1281}, - {1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 474: 1282, 1282, 1282, 1282, 1282, 480: 1282, 1282, 1282, 1282, 485: 1282, 1282, 1282, 489: 1282, 1282, 1282, 493: 1282, 1282, 496: 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 506: 1282, 1282, 509: 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 531: 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 3693, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 1282, 565: 1282, 1282}, - {1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 474: 1283, 1283, 1283, 1283, 1283, 480: 1283, 1283, 1283, 1283, 485: 1283, 1283, 1283, 489: 1283, 1283, 1283, 493: 1283, 1283, 496: 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 506: 1283, 1283, 509: 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 531: 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 3693, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 1283, 565: 1283, 1283}, - {1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 474: 1284, 1284, 1284, 1284, 1284, 480: 1284, 1284, 1284, 1284, 485: 1284, 1284, 1284, 489: 1284, 1284, 1284, 493: 1284, 1284, 496: 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 506: 1284, 1284, 509: 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 531: 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 3693, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 1284, 565: 1284, 1284}, - {1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 474: 1285, 1285, 1285, 1285, 1285, 480: 1285, 1285, 1285, 1285, 485: 1285, 1285, 1285, 489: 1285, 1285, 1285, 493: 1285, 1285, 496: 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 506: 1285, 1285, 509: 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 531: 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 3693, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 1285, 565: 1285, 1285}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 2864, 2812, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 2893, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 2898, 2825, 2789, 2807, 2972, 3055, 3044, 2842, 2854, 2965, 2966, 2961, 2919, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 2900, 2885, 2881, 2973, 2997, 2783, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 2904, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 2823, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 2889, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 2890, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 2960, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 2848, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 2774, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 2906, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 2775, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3170, 2902, 3171, 3172, 2801, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3185, 3186, 3237, 3236, 3081, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 2942, 2959, 3082, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3203, 3204, 3205, 2955, 3156, 3215, 3216, 3227, 3211, 3212, 3213, 3246, 2901, 476: 3286, 478: 3265, 3284, 482: 3294, 485: 3298, 3302, 488: 3283, 3282, 3321, 495: 3256, 498: 3295, 507: 3301, 3319, 511: 3260, 533: 3290, 567: 3297, 570: 3320, 3375, 573: 3303, 3255, 3257, 3259, 3258, 3287, 3263, 3277, 3268, 3289, 3264, 585: 3296, 3288, 3293, 3299, 3309, 3362, 3310, 3311, 595: 3262, 3340, 598: 3280, 3281, 3335, 3336, 3337, 3338, 3339, 3291, 3317, 3322, 3332, 3333, 3326, 3341, 3342, 3343, 3327, 3345, 3346, 3328, 3344, 3323, 3331, 3329, 3315, 3347, 3348, 3292, 3352, 3304, 3305, 3308, 3351, 3357, 3356, 3358, 3355, 3359, 3354, 3353, 3350, 3300, 3349, 3307, 3306, 3312, 3313, 664: 3270, 2785, 2786, 2784, 713: 3285, 3361, 3271, 3276, 3261, 3334, 3274, 3272, 3273, 3314, 3325, 3324, 3318, 3316, 3330, 3269, 3279, 3360, 3278, 3275, 3725}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 2864, 2812, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 2893, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 2898, 2825, 2789, 2807, 2972, 3055, 3044, 2842, 2854, 2965, 2966, 2961, 2919, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 2900, 2885, 2881, 2973, 2997, 2783, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 2904, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 2823, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 2889, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 2890, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 2960, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 2848, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 2774, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 2906, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 2775, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3170, 2902, 3171, 3172, 2801, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3185, 3186, 3237, 3236, 3081, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 2942, 2959, 3082, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3203, 3204, 3205, 2955, 3156, 3215, 3216, 3227, 3211, 3212, 3213, 3246, 2901, 476: 3286, 478: 3265, 3284, 482: 3294, 485: 3298, 3302, 488: 3283, 3282, 3321, 495: 3256, 498: 3295, 507: 3301, 3319, 511: 3260, 533: 3290, 567: 3297, 570: 3320, 3375, 573: 3303, 3255, 3257, 3259, 3258, 3287, 3263, 3277, 3268, 3289, 3264, 585: 3296, 3288, 3293, 3299, 3309, 3362, 3310, 3311, 595: 3262, 3340, 598: 3280, 3281, 3335, 3336, 3337, 3338, 3339, 3291, 3317, 3322, 3332, 3333, 3326, 3341, 3342, 3343, 3327, 3345, 3346, 3328, 3344, 3323, 3331, 3329, 3315, 3347, 3348, 3292, 3352, 3304, 3305, 3308, 3351, 3357, 3356, 3358, 3355, 3359, 3354, 3353, 3350, 3300, 3349, 3307, 3306, 3312, 3313, 664: 3270, 2785, 2786, 2784, 713: 3285, 3361, 3271, 3276, 3261, 3334, 3274, 3272, 3273, 3314, 3325, 3324, 3318, 3316, 3330, 3269, 3279, 3360, 3278, 3275, 3724}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 2864, 2812, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 2893, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 2898, 2825, 2789, 2807, 2972, 3055, 3044, 2842, 2854, 2965, 2966, 2961, 2919, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 2900, 2885, 2881, 2973, 2997, 2783, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 2904, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 2823, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 2889, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 2890, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 2960, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 2848, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 2774, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 2906, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 2775, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3170, 2902, 3171, 3172, 2801, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3185, 3186, 3237, 3236, 3081, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 2942, 2959, 3082, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3203, 3204, 3205, 2955, 3156, 3215, 3216, 3227, 3211, 3212, 3213, 3246, 2901, 476: 3286, 478: 3265, 3284, 482: 3294, 485: 3298, 3302, 488: 3283, 3282, 3321, 495: 3256, 498: 3295, 507: 3301, 3319, 511: 3260, 533: 3290, 567: 3297, 570: 3320, 3375, 573: 3303, 3255, 3257, 3259, 3258, 3287, 3263, 3277, 3268, 3289, 3264, 585: 3296, 3288, 3293, 3299, 3309, 3362, 3310, 3311, 595: 3262, 3340, 598: 3280, 3281, 3335, 3336, 3337, 3338, 3339, 3291, 3317, 3322, 3332, 3333, 3326, 3341, 3342, 3343, 3327, 3345, 3346, 3328, 3344, 3323, 3331, 3329, 3315, 3347, 3348, 3292, 3352, 3304, 3305, 3308, 3351, 3357, 3356, 3358, 3355, 3359, 3354, 3353, 3350, 3300, 3349, 3307, 3306, 3312, 3313, 664: 3270, 2785, 2786, 2784, 713: 3285, 3361, 3271, 3276, 3261, 3334, 3274, 3272, 3273, 3314, 3325, 3324, 3318, 3316, 3330, 3269, 3279, 3360, 3278, 3275, 3723}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 2864, 2812, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 2893, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 2898, 2825, 2789, 2807, 2972, 3055, 3044, 2842, 2854, 2965, 2966, 2961, 2919, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 2900, 2885, 2881, 2973, 2997, 2783, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 2904, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 2823, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 2889, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 2890, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 2960, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 2848, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 2774, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 2906, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 2775, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3170, 2902, 3171, 3172, 2801, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3185, 3186, 3237, 3236, 3081, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 2942, 2959, 3082, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3203, 3204, 3205, 2955, 3156, 3215, 3216, 3227, 3211, 3212, 3213, 3246, 2901, 476: 3286, 478: 3265, 3284, 2778, 482: 3294, 485: 3298, 3302, 488: 3283, 3282, 3321, 495: 3256, 498: 3295, 507: 3301, 3319, 511: 3260, 533: 3290, 567: 3297, 570: 3320, 2776, 573: 3303, 3255, 3257, 3259, 3258, 3287, 3263, 3277, 3268, 3289, 3264, 585: 3296, 3288, 3293, 3299, 3309, 3362, 3310, 3311, 595: 3262, 3340, 598: 3280, 3281, 3335, 3336, 3337, 3338, 3339, 3291, 3317, 3322, 3332, 3333, 3326, 3341, 3342, 3343, 3327, 3345, 3346, 3328, 3344, 3323, 3331, 3329, 3315, 3347, 3348, 3292, 3352, 3304, 3305, 3308, 3351, 3357, 3356, 3358, 3355, 3359, 3354, 3353, 3350, 3300, 3349, 3307, 3306, 3312, 3313, 651: 2779, 664: 3270, 2785, 2786, 2784, 713: 3285, 3361, 3271, 3276, 3261, 3334, 3274, 3272, 3273, 3314, 3325, 3324, 3318, 3316, 3330, 3269, 3279, 3360, 3278, 3275, 2782, 2781, 2780, 3721}, + {50: 3722, 510: 3371, 512: 3369, 3370, 3368, 3366, 738: 3367, 3365}, // 1165 - {1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 474: 1286, 1286, 1286, 1286, 1286, 480: 1286, 1286, 1286, 1286, 485: 1286, 1286, 1286, 489: 1286, 1286, 1286, 493: 1286, 1286, 496: 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 506: 1286, 1286, 509: 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 531: 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 3693, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 1286, 565: 1286, 1286}, - {1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 474: 1290, 1290, 1290, 1290, 1290, 480: 1290, 1290, 1290, 1290, 485: 1290, 1290, 3692, 489: 1290, 1290, 1290, 493: 1290, 1290, 496: 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 506: 1290, 1290, 509: 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 3688, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 531: 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 3689, 3690, 1290, 3693, 1290, 3691, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 1290, 565: 1290, 1290}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 2840, 2788, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 2869, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 2874, 2801, 2766, 2783, 2948, 3031, 3020, 2818, 2830, 2941, 2942, 2937, 2895, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 2876, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 2760, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 2880, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 2799, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 2866, 2865, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 2936, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 2824, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 2751, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 2882, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 2752, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3144, 2878, 3145, 3146, 2777, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3159, 3160, 3211, 3210, 3057, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 2918, 2935, 3058, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3177, 3178, 3179, 2931, 3130, 3189, 3190, 3201, 3185, 3186, 3187, 3220, 2877, 473: 1226, 475: 3239, 3258, 2755, 479: 3268, 482: 3272, 3276, 485: 3257, 3256, 3295, 492: 3230, 495: 3269, 504: 3275, 3293, 508: 3234, 530: 3264, 564: 3271, 567: 3294, 2753, 570: 3277, 3229, 3231, 3233, 3232, 3261, 3237, 3251, 3242, 3263, 3238, 582: 3270, 3262, 3267, 3273, 3283, 3336, 3284, 3285, 592: 3236, 3314, 595: 3254, 3255, 3309, 3310, 3311, 3312, 3313, 3265, 3291, 3296, 3306, 3307, 3300, 3315, 3316, 3317, 3301, 3319, 3320, 3302, 3318, 3297, 3305, 3303, 3289, 3321, 3322, 3266, 3326, 3278, 3279, 3282, 3325, 3331, 3330, 3332, 3329, 3333, 3328, 3327, 3324, 3274, 3323, 3281, 3280, 3286, 3287, 648: 2756, 661: 3244, 2762, 2763, 2761, 709: 3259, 3335, 3245, 3250, 3235, 3308, 3248, 3246, 3247, 3288, 3299, 3298, 3292, 3290, 3304, 3243, 3253, 3334, 3252, 3249, 2759, 2758, 2757, 3705}, - {104: 3464, 3460, 108: 3457, 3472, 112: 3459, 3456, 3458, 3462, 3463, 3468, 3467, 3466, 3470, 3471, 3465, 3469, 3461, 507: 3345, 509: 3343, 3344, 3342, 3340, 532: 3454, 3451, 3453, 3452, 3448, 3450, 3449, 3446, 3447, 3445, 3455, 734: 3341, 3339, 796: 3444, 815: 3706}, - {1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 474: 1288, 1288, 1288, 1288, 1288, 480: 1288, 1288, 1288, 1288, 485: 1288, 1288, 1288, 489: 1288, 1288, 1288, 493: 1288, 1288, 496: 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 506: 1288, 1288, 509: 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 531: 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 1288, 565: 1288, 1288}, + {1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 477: 1187, 1187, 1187, 1187, 1187, 483: 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 492: 1187, 1187, 1187, 496: 1187, 1187, 499: 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 509: 1187, 1187, 512: 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 534: 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 568: 1187, 1187, 597: 1187}, + {1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 477: 1295, 1295, 1295, 1295, 1295, 483: 1295, 1295, 1295, 1295, 488: 1295, 1295, 1295, 492: 1295, 1295, 1295, 496: 1295, 1295, 499: 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 509: 1295, 1295, 512: 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 534: 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 568: 1295, 1295}, + {1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 477: 1296, 1296, 1296, 1296, 1296, 483: 1296, 1296, 1296, 1296, 488: 1296, 1296, 1296, 492: 1296, 1296, 1296, 496: 1296, 1296, 499: 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 509: 1296, 1296, 512: 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 534: 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 3719, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 1296, 568: 1296, 1296}, + {1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 477: 1297, 1297, 1297, 1297, 1297, 483: 1297, 1297, 1297, 1297, 488: 1297, 1297, 1297, 492: 1297, 1297, 1297, 496: 1297, 1297, 499: 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 509: 1297, 1297, 512: 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 534: 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 3719, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 1297, 568: 1297, 1297}, + {1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 477: 1298, 1298, 1298, 1298, 1298, 483: 1298, 1298, 1298, 1298, 488: 1298, 1298, 1298, 492: 1298, 1298, 1298, 496: 1298, 1298, 499: 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 509: 1298, 1298, 512: 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 534: 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 3719, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 1298, 568: 1298, 1298}, // 1170 - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 2840, 2788, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 2869, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 2874, 2801, 2766, 2783, 2948, 3031, 3020, 2818, 2830, 2941, 2942, 2937, 2895, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 2876, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 2760, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 2880, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 2799, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 2866, 2865, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 2936, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 2824, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 2751, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 2882, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 2752, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3144, 2878, 3145, 3146, 2777, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3159, 3160, 3211, 3210, 3057, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 2918, 2935, 3058, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3177, 3178, 3179, 2931, 3130, 3189, 3190, 3201, 3185, 3186, 3187, 3220, 2877, 473: 3260, 475: 3239, 3258, 479: 3268, 482: 3272, 3276, 485: 3257, 3256, 3295, 492: 3230, 495: 3269, 504: 3275, 3293, 508: 3234, 530: 3264, 564: 3271, 567: 3294, 3349, 570: 3277, 3229, 3231, 3233, 3232, 3261, 3237, 3251, 3242, 3263, 3238, 582: 3270, 3262, 3267, 3273, 3283, 3336, 3284, 3285, 592: 3236, 3314, 595: 3254, 3255, 3309, 3310, 3311, 3312, 3313, 3265, 3291, 3296, 3306, 3307, 3300, 3315, 3316, 3317, 3301, 3319, 3320, 3302, 3318, 3297, 3305, 3303, 3289, 3321, 3322, 3266, 3326, 3278, 3279, 3282, 3325, 3331, 3330, 3332, 3329, 3333, 3328, 3327, 3324, 3274, 3323, 3281, 3280, 3286, 3287, 661: 3244, 2762, 2763, 2761, 709: 3259, 3335, 3245, 3250, 3235, 3308, 3248, 3246, 3247, 3288, 3299, 3298, 3292, 3290, 3304, 3243, 3253, 3334, 3252, 3249, 3708}, - {1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 474: 1287, 1287, 1287, 1287, 1287, 480: 1287, 1287, 1287, 1287, 485: 1287, 1287, 3692, 489: 1287, 1287, 1287, 493: 1287, 1287, 496: 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 506: 1287, 1287, 509: 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 3688, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 531: 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 3689, 3690, 1287, 3693, 1287, 3691, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 1287, 565: 1287, 1287}, - {1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 474: 1291, 1291, 1291, 1291, 1291, 480: 1291, 1291, 1291, 1291, 485: 1291, 1291, 3692, 489: 1291, 1291, 1291, 493: 1291, 1291, 496: 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 506: 1291, 1291, 509: 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 3688, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 531: 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 3689, 3690, 1291, 3693, 1291, 3691, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 565: 1291, 1291}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 2840, 2788, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 2869, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 2874, 2801, 2766, 2783, 2948, 3031, 3020, 2818, 2830, 2941, 2942, 2937, 2895, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 2876, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 2760, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 2880, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 2799, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 2866, 2865, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 2936, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 2824, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 2751, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 2882, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 2752, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3144, 2878, 3145, 3146, 2777, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3159, 3160, 3211, 3210, 3057, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 2918, 2935, 3058, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3177, 3178, 3179, 2931, 3130, 3189, 3190, 3201, 3185, 3186, 3187, 3220, 2877, 473: 1226, 475: 3239, 3258, 2755, 479: 3268, 482: 3272, 3276, 485: 3257, 3256, 3295, 492: 3230, 495: 3269, 504: 3275, 3293, 508: 3234, 530: 3264, 564: 3271, 567: 3294, 2753, 570: 3277, 3229, 3231, 3233, 3232, 3261, 3237, 3251, 3242, 3263, 3238, 582: 3270, 3262, 3267, 3273, 3283, 3336, 3284, 3285, 592: 3236, 3314, 595: 3254, 3255, 3309, 3310, 3311, 3312, 3313, 3265, 3291, 3296, 3306, 3307, 3300, 3315, 3316, 3317, 3301, 3319, 3320, 3302, 3318, 3297, 3305, 3303, 3289, 3321, 3322, 3266, 3326, 3278, 3279, 3282, 3325, 3331, 3330, 3332, 3329, 3333, 3328, 3327, 3324, 3274, 3323, 3281, 3280, 3286, 3287, 648: 2756, 661: 3244, 2762, 2763, 2761, 709: 3259, 3335, 3245, 3250, 3235, 3308, 3248, 3246, 3247, 3288, 3299, 3298, 3292, 3290, 3304, 3243, 3253, 3334, 3252, 3249, 2759, 2758, 2757, 3711}, - {104: 3464, 3460, 108: 3457, 3472, 112: 3459, 3456, 3458, 3462, 3463, 3468, 3467, 3466, 3470, 3471, 3465, 3469, 3461, 507: 3345, 509: 3343, 3344, 3342, 3340, 532: 3454, 3451, 3453, 3452, 3448, 3450, 3449, 3446, 3447, 3445, 3455, 734: 3341, 3339, 796: 3444, 815: 3712}, + {1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 477: 1299, 1299, 1299, 1299, 1299, 483: 1299, 1299, 1299, 1299, 488: 1299, 1299, 1299, 492: 1299, 1299, 1299, 496: 1299, 1299, 499: 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 509: 1299, 1299, 512: 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 534: 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 3719, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 1299, 568: 1299, 1299}, + {1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 477: 1300, 1300, 1300, 1300, 1300, 483: 1300, 1300, 1300, 1300, 488: 1300, 1300, 1300, 492: 1300, 1300, 1300, 496: 1300, 1300, 499: 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 509: 1300, 1300, 512: 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 534: 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 3719, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 1300, 568: 1300, 1300}, + {1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 477: 1304, 1304, 1304, 1304, 1304, 483: 1304, 1304, 1304, 1304, 488: 1304, 1304, 3718, 492: 1304, 1304, 1304, 496: 1304, 1304, 499: 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 509: 1304, 1304, 512: 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 3714, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 534: 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 3715, 3716, 1304, 3719, 1304, 3717, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 1304, 568: 1304, 1304}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 2864, 2812, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 2893, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 2898, 2825, 2789, 2807, 2972, 3055, 3044, 2842, 2854, 2965, 2966, 2961, 2919, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 2900, 2885, 2881, 2973, 2997, 2783, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 2904, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 2823, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 2889, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 2890, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 2960, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 2848, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 2774, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 2906, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 2775, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3170, 2902, 3171, 3172, 2801, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3185, 3186, 3237, 3236, 3081, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 2942, 2959, 3082, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3203, 3204, 3205, 2955, 3156, 3215, 3216, 3227, 3211, 3212, 3213, 3246, 2901, 476: 1240, 478: 3265, 3284, 2778, 482: 3294, 485: 3298, 3302, 488: 3283, 3282, 3321, 495: 3256, 498: 3295, 507: 3301, 3319, 511: 3260, 533: 3290, 567: 3297, 570: 3320, 2776, 573: 3303, 3255, 3257, 3259, 3258, 3287, 3263, 3277, 3268, 3289, 3264, 585: 3296, 3288, 3293, 3299, 3309, 3362, 3310, 3311, 595: 3262, 3340, 598: 3280, 3281, 3335, 3336, 3337, 3338, 3339, 3291, 3317, 3322, 3332, 3333, 3326, 3341, 3342, 3343, 3327, 3345, 3346, 3328, 3344, 3323, 3331, 3329, 3315, 3347, 3348, 3292, 3352, 3304, 3305, 3308, 3351, 3357, 3356, 3358, 3355, 3359, 3354, 3353, 3350, 3300, 3349, 3307, 3306, 3312, 3313, 651: 2779, 664: 3270, 2785, 2786, 2784, 713: 3285, 3361, 3271, 3276, 3261, 3334, 3274, 3272, 3273, 3314, 3325, 3324, 3318, 3316, 3330, 3269, 3279, 3360, 3278, 3275, 2782, 2781, 2780, 3731}, + {105: 3490, 3486, 109: 3483, 3498, 113: 3485, 3482, 3484, 3488, 3489, 3494, 3493, 3492, 3496, 3497, 3491, 3495, 3487, 510: 3371, 512: 3369, 3370, 3368, 3366, 535: 3480, 3477, 3479, 3478, 3474, 3476, 3475, 3472, 3473, 3471, 3481, 738: 3367, 3365, 800: 3470, 820: 3732}, // 1175 - {1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 474: 1289, 1289, 1289, 1289, 1289, 480: 1289, 1289, 1289, 1289, 485: 1289, 1289, 1289, 489: 1289, 1289, 1289, 493: 1289, 1289, 496: 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 506: 1289, 1289, 509: 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 531: 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 1289, 565: 1289, 1289}, - {1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 474: 1292, 1292, 1292, 1292, 1292, 480: 1292, 1292, 1292, 1292, 485: 3686, 3687, 3692, 489: 1292, 1292, 1292, 493: 1292, 1292, 496: 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 506: 1292, 1292, 509: 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 3688, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 531: 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 3689, 3690, 1292, 3693, 1292, 3691, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 565: 1292, 1292}, - {1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 474: 1293, 1293, 1293, 1293, 1293, 480: 1293, 1293, 1293, 1293, 485: 3686, 3687, 3692, 489: 1293, 1293, 1293, 493: 1293, 1293, 496: 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 506: 1293, 1293, 509: 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 3688, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 531: 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 3689, 3690, 1293, 3693, 1293, 3691, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 565: 1293, 1293}, - {1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 474: 1294, 1294, 1294, 1294, 1294, 480: 1294, 1294, 1294, 1294, 485: 3686, 3687, 3692, 489: 1294, 1294, 1294, 493: 1294, 1294, 496: 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 506: 1294, 1294, 509: 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 3688, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 531: 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 3689, 3690, 1294, 3693, 1294, 3691, 3684, 3685, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 1294, 565: 1294, 1294}, - {1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 474: 1295, 1295, 1295, 1295, 1295, 480: 1295, 1295, 1295, 1295, 485: 3686, 3687, 3692, 489: 1295, 1295, 1295, 493: 1295, 1295, 496: 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 506: 1295, 1295, 509: 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 3688, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 531: 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 3689, 3690, 3683, 3693, 1295, 3691, 3684, 3685, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 1295, 565: 1295, 1295}, + {1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 477: 1302, 1302, 1302, 1302, 1302, 483: 1302, 1302, 1302, 1302, 488: 1302, 1302, 1302, 492: 1302, 1302, 1302, 496: 1302, 1302, 499: 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 509: 1302, 1302, 512: 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 534: 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 1302, 568: 1302, 1302}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 2864, 2812, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 2893, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 2898, 2825, 2789, 2807, 2972, 3055, 3044, 2842, 2854, 2965, 2966, 2961, 2919, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 2900, 2885, 2881, 2973, 2997, 2783, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 2904, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 2823, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 2889, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 2890, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 2960, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 2848, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 2774, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 2906, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 2775, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3170, 2902, 3171, 3172, 2801, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3185, 3186, 3237, 3236, 3081, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 2942, 2959, 3082, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3203, 3204, 3205, 2955, 3156, 3215, 3216, 3227, 3211, 3212, 3213, 3246, 2901, 476: 3286, 478: 3265, 3284, 482: 3294, 485: 3298, 3302, 488: 3283, 3282, 3321, 495: 3256, 498: 3295, 507: 3301, 3319, 511: 3260, 533: 3290, 567: 3297, 570: 3320, 3375, 573: 3303, 3255, 3257, 3259, 3258, 3287, 3263, 3277, 3268, 3289, 3264, 585: 3296, 3288, 3293, 3299, 3309, 3362, 3310, 3311, 595: 3262, 3340, 598: 3280, 3281, 3335, 3336, 3337, 3338, 3339, 3291, 3317, 3322, 3332, 3333, 3326, 3341, 3342, 3343, 3327, 3345, 3346, 3328, 3344, 3323, 3331, 3329, 3315, 3347, 3348, 3292, 3352, 3304, 3305, 3308, 3351, 3357, 3356, 3358, 3355, 3359, 3354, 3353, 3350, 3300, 3349, 3307, 3306, 3312, 3313, 664: 3270, 2785, 2786, 2784, 713: 3285, 3361, 3271, 3276, 3261, 3334, 3274, 3272, 3273, 3314, 3325, 3324, 3318, 3316, 3330, 3269, 3279, 3360, 3278, 3275, 3734}, + {1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 477: 1301, 1301, 1301, 1301, 1301, 483: 1301, 1301, 1301, 1301, 488: 1301, 1301, 3718, 492: 1301, 1301, 1301, 496: 1301, 1301, 499: 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 509: 1301, 1301, 512: 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 3714, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 534: 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 3715, 3716, 1301, 3719, 1301, 3717, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 1301, 568: 1301, 1301}, + {1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 477: 1305, 1305, 1305, 1305, 1305, 483: 1305, 1305, 1305, 1305, 488: 1305, 1305, 3718, 492: 1305, 1305, 1305, 496: 1305, 1305, 499: 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 509: 1305, 1305, 512: 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 3714, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 534: 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 3715, 3716, 1305, 3719, 1305, 3717, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 1305, 568: 1305, 1305}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 2864, 2812, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 2893, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 2898, 2825, 2789, 2807, 2972, 3055, 3044, 2842, 2854, 2965, 2966, 2961, 2919, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 2900, 2885, 2881, 2973, 2997, 2783, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 2904, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 2823, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 2889, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 2890, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 2960, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 2848, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 2774, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 2906, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 2775, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3170, 2902, 3171, 3172, 2801, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3185, 3186, 3237, 3236, 3081, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 2942, 2959, 3082, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3203, 3204, 3205, 2955, 3156, 3215, 3216, 3227, 3211, 3212, 3213, 3246, 2901, 476: 1240, 478: 3265, 3284, 2778, 482: 3294, 485: 3298, 3302, 488: 3283, 3282, 3321, 495: 3256, 498: 3295, 507: 3301, 3319, 511: 3260, 533: 3290, 567: 3297, 570: 3320, 2776, 573: 3303, 3255, 3257, 3259, 3258, 3287, 3263, 3277, 3268, 3289, 3264, 585: 3296, 3288, 3293, 3299, 3309, 3362, 3310, 3311, 595: 3262, 3340, 598: 3280, 3281, 3335, 3336, 3337, 3338, 3339, 3291, 3317, 3322, 3332, 3333, 3326, 3341, 3342, 3343, 3327, 3345, 3346, 3328, 3344, 3323, 3331, 3329, 3315, 3347, 3348, 3292, 3352, 3304, 3305, 3308, 3351, 3357, 3356, 3358, 3355, 3359, 3354, 3353, 3350, 3300, 3349, 3307, 3306, 3312, 3313, 651: 2779, 664: 3270, 2785, 2786, 2784, 713: 3285, 3361, 3271, 3276, 3261, 3334, 3274, 3272, 3273, 3314, 3325, 3324, 3318, 3316, 3330, 3269, 3279, 3360, 3278, 3275, 2782, 2781, 2780, 3737}, // 1180 - {104: 3464, 3460, 108: 3457, 3472, 112: 3459, 3456, 3458, 3462, 3463, 3468, 3467, 3466, 3470, 3471, 3465, 3469, 3461, 532: 3454, 3451, 3453, 3452, 3448, 3450, 3449, 3446, 3447, 3445, 3455, 796: 3444, 815: 3718}, - {500: 3719}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 2840, 2788, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 2869, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 2874, 2801, 2766, 2783, 2948, 3031, 3020, 2818, 2830, 2941, 2942, 2937, 2895, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 2876, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 2760, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 2880, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 2799, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 2866, 2865, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 2936, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 2824, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 2751, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 2882, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 2752, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3144, 2878, 3145, 3146, 2777, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3159, 3160, 3211, 3210, 3057, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 2918, 2935, 3058, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3177, 3178, 3179, 2931, 3130, 3189, 3190, 3201, 3185, 3186, 3187, 3220, 2877, 473: 3260, 475: 3239, 3258, 2755, 479: 3268, 482: 3272, 3276, 485: 3257, 3256, 3295, 492: 3230, 495: 3269, 504: 3275, 3293, 508: 3234, 530: 3264, 564: 3271, 567: 3294, 2753, 570: 3277, 3229, 3231, 3233, 3232, 3261, 3237, 3251, 3242, 3263, 3238, 582: 3270, 3262, 3267, 3273, 3283, 3336, 3284, 3285, 592: 3236, 3314, 595: 3254, 3255, 3309, 3310, 3311, 3312, 3313, 3265, 3291, 3296, 3306, 3307, 3300, 3315, 3316, 3317, 3301, 3319, 3320, 3302, 3318, 3297, 3305, 3303, 3289, 3321, 3322, 3266, 3326, 3278, 3279, 3282, 3325, 3331, 3330, 3332, 3329, 3333, 3328, 3327, 3324, 3274, 3323, 3281, 3280, 3286, 3287, 648: 2756, 661: 3244, 2762, 2763, 2761, 709: 3259, 3335, 3245, 3250, 3235, 3308, 3248, 3246, 3247, 3288, 3299, 3298, 3292, 3290, 3304, 3243, 3253, 3334, 3252, 3249, 2759, 2758, 2757, 3720}, - {49: 3721, 507: 3345, 509: 3343, 3344, 3342, 3340, 734: 3341, 3339}, - {1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 474: 1175, 1175, 1175, 1175, 1175, 480: 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 489: 1175, 1175, 1175, 493: 1175, 1175, 496: 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 506: 1175, 1175, 509: 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 531: 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 565: 1175, 1175, 594: 1175}, + {105: 3490, 3486, 109: 3483, 3498, 113: 3485, 3482, 3484, 3488, 3489, 3494, 3493, 3492, 3496, 3497, 3491, 3495, 3487, 510: 3371, 512: 3369, 3370, 3368, 3366, 535: 3480, 3477, 3479, 3478, 3474, 3476, 3475, 3472, 3473, 3471, 3481, 738: 3367, 3365, 800: 3470, 820: 3738}, + {1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 477: 1303, 1303, 1303, 1303, 1303, 483: 1303, 1303, 1303, 1303, 488: 1303, 1303, 1303, 492: 1303, 1303, 1303, 496: 1303, 1303, 499: 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 509: 1303, 1303, 512: 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 534: 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 1303, 568: 1303, 1303}, + {1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 477: 1306, 1306, 1306, 1306, 1306, 483: 1306, 1306, 1306, 1306, 488: 3712, 3713, 3718, 492: 1306, 1306, 1306, 496: 1306, 1306, 499: 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 509: 1306, 1306, 512: 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 3714, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 534: 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 3715, 3716, 1306, 3719, 1306, 3717, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 1306, 568: 1306, 1306}, + {1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 477: 1307, 1307, 1307, 1307, 1307, 483: 1307, 1307, 1307, 1307, 488: 3712, 3713, 3718, 492: 1307, 1307, 1307, 496: 1307, 1307, 499: 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 509: 1307, 1307, 512: 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 3714, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 534: 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 3715, 3716, 1307, 3719, 1307, 3717, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 1307, 568: 1307, 1307}, + {1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 477: 1308, 1308, 1308, 1308, 1308, 483: 1308, 1308, 1308, 1308, 488: 3712, 3713, 3718, 492: 1308, 1308, 1308, 496: 1308, 1308, 499: 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 509: 1308, 1308, 512: 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 3714, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 534: 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 3715, 3716, 1308, 3719, 1308, 3717, 3710, 3711, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 1308, 568: 1308, 1308}, // 1185 - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 2840, 2788, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 2869, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 2874, 2801, 2766, 2783, 2948, 3031, 3020, 2818, 2830, 2941, 2942, 2937, 2895, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 2876, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 2760, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 2880, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 2799, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 2866, 2865, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 2936, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 2824, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 2751, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 2882, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 2752, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3144, 2878, 3145, 3146, 2777, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3159, 3160, 3211, 3210, 3057, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 2918, 2935, 3058, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3177, 3178, 3179, 2931, 3130, 3189, 3190, 3201, 3185, 3186, 3187, 3220, 2877, 473: 3260, 475: 3239, 3258, 2755, 479: 3268, 482: 3272, 3276, 485: 3257, 3256, 3295, 492: 3230, 495: 3269, 504: 3275, 3293, 508: 3234, 530: 3264, 564: 3271, 567: 3294, 2753, 570: 3277, 3229, 3231, 3233, 3232, 3261, 3237, 3251, 3242, 3263, 3238, 582: 3270, 3262, 3267, 3273, 3283, 3336, 3284, 3285, 592: 3236, 3314, 595: 3254, 3255, 3309, 3310, 3311, 3312, 3313, 3265, 3291, 3296, 3306, 3307, 3300, 3315, 3316, 3317, 3301, 3319, 3320, 3302, 3318, 3297, 3305, 3303, 3289, 3321, 3322, 3266, 3326, 3278, 3279, 3282, 3325, 3331, 3330, 3332, 3329, 3333, 3328, 3327, 3324, 3274, 3323, 3281, 3280, 3286, 3287, 648: 2756, 661: 3244, 2762, 2763, 2761, 709: 3259, 3335, 3245, 3250, 3235, 3308, 3248, 3246, 3247, 3288, 3299, 3298, 3292, 3290, 3304, 3243, 3253, 3334, 3252, 3249, 2759, 2758, 2757, 3723}, - {9: 3724, 507: 3345, 509: 3343, 3344, 3342, 3340, 734: 3341, 3339}, - {578: 3725}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 2840, 2788, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 2869, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 2874, 2801, 2766, 2783, 2948, 3031, 3020, 2818, 2830, 2941, 2942, 2937, 2895, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 2876, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 2760, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 2880, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 2799, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 2866, 2865, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 2936, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 2824, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 2751, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 2882, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 2752, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3144, 2878, 3145, 3146, 2777, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3159, 3160, 3211, 3210, 3057, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 2918, 2935, 3058, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3177, 3178, 3179, 2931, 3130, 3189, 3190, 3201, 3185, 3186, 3187, 3220, 2877, 473: 3260, 475: 3239, 3258, 2755, 479: 3268, 482: 3272, 3276, 485: 3257, 3256, 3295, 492: 3230, 495: 3269, 504: 3275, 3293, 508: 3234, 530: 3264, 564: 3271, 567: 3294, 2753, 570: 3277, 3229, 3231, 3233, 3232, 3261, 3237, 3251, 3242, 3263, 3238, 582: 3270, 3262, 3267, 3273, 3283, 3336, 3284, 3285, 592: 3236, 3314, 595: 3254, 3255, 3309, 3310, 3311, 3312, 3313, 3265, 3291, 3296, 3306, 3307, 3300, 3315, 3316, 3317, 3301, 3319, 3320, 3302, 3318, 3297, 3305, 3303, 3289, 3321, 3322, 3266, 3326, 3278, 3279, 3282, 3325, 3331, 3330, 3332, 3329, 3333, 3328, 3327, 3324, 3274, 3323, 3281, 3280, 3286, 3287, 648: 2756, 661: 3244, 2762, 2763, 2761, 709: 3259, 3335, 3245, 3250, 3235, 3308, 3248, 3246, 3247, 3288, 3299, 3298, 3292, 3290, 3304, 3243, 3253, 3334, 3252, 3249, 2759, 2758, 2757, 3726}, - {104: 3464, 3460, 108: 3457, 3472, 112: 3459, 3456, 3458, 3462, 3463, 3468, 3467, 3466, 3470, 3471, 3465, 3469, 3461, 507: 3345, 509: 3343, 3344, 3342, 3340, 532: 3454, 3451, 3453, 3452, 3448, 3450, 3449, 3446, 3447, 3445, 3455, 734: 3341, 3339, 796: 3444, 815: 3727}, + {1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 477: 1309, 1309, 1309, 1309, 1309, 483: 1309, 1309, 1309, 1309, 488: 3712, 3713, 3718, 492: 1309, 1309, 1309, 496: 1309, 1309, 499: 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 509: 1309, 1309, 512: 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 3714, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 534: 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 3715, 3716, 3709, 3719, 1309, 3717, 3710, 3711, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 1309, 568: 1309, 1309}, + {105: 3490, 3486, 109: 3483, 3498, 113: 3485, 3482, 3484, 3488, 3489, 3494, 3493, 3492, 3496, 3497, 3491, 3495, 3487, 535: 3480, 3477, 3479, 3478, 3474, 3476, 3475, 3472, 3473, 3471, 3481, 800: 3470, 820: 3744}, + {503: 3745}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 2864, 2812, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 2893, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 2898, 2825, 2789, 2807, 2972, 3055, 3044, 2842, 2854, 2965, 2966, 2961, 2919, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 2900, 2885, 2881, 2973, 2997, 2783, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 2904, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 2823, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 2889, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 2890, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 2960, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 2848, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 2774, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 2906, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 2775, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3170, 2902, 3171, 3172, 2801, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3185, 3186, 3237, 3236, 3081, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 2942, 2959, 3082, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3203, 3204, 3205, 2955, 3156, 3215, 3216, 3227, 3211, 3212, 3213, 3246, 2901, 476: 3286, 478: 3265, 3284, 2778, 482: 3294, 485: 3298, 3302, 488: 3283, 3282, 3321, 495: 3256, 498: 3295, 507: 3301, 3319, 511: 3260, 533: 3290, 567: 3297, 570: 3320, 2776, 573: 3303, 3255, 3257, 3259, 3258, 3287, 3263, 3277, 3268, 3289, 3264, 585: 3296, 3288, 3293, 3299, 3309, 3362, 3310, 3311, 595: 3262, 3340, 598: 3280, 3281, 3335, 3336, 3337, 3338, 3339, 3291, 3317, 3322, 3332, 3333, 3326, 3341, 3342, 3343, 3327, 3345, 3346, 3328, 3344, 3323, 3331, 3329, 3315, 3347, 3348, 3292, 3352, 3304, 3305, 3308, 3351, 3357, 3356, 3358, 3355, 3359, 3354, 3353, 3350, 3300, 3349, 3307, 3306, 3312, 3313, 651: 2779, 664: 3270, 2785, 2786, 2784, 713: 3285, 3361, 3271, 3276, 3261, 3334, 3274, 3272, 3273, 3314, 3325, 3324, 3318, 3316, 3330, 3269, 3279, 3360, 3278, 3275, 2782, 2781, 2780, 3746}, + {50: 3747, 510: 3371, 512: 3369, 3370, 3368, 3366, 738: 3367, 3365}, // 1190 - {49: 3728}, - {1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 474: 1176, 1176, 1176, 1176, 1176, 480: 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 489: 1176, 1176, 1176, 493: 1176, 1176, 496: 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 506: 1176, 1176, 509: 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 531: 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 565: 1176, 1176, 594: 1176}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 2840, 2788, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 2869, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 2874, 2801, 2766, 2783, 2948, 3031, 3020, 2818, 2830, 2941, 2942, 2937, 2895, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 2876, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 2760, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 2880, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 2799, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 2866, 2865, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 2936, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 2824, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 2751, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 2882, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 2752, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3144, 2878, 3145, 3146, 2777, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3159, 3160, 3211, 3210, 3057, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 2918, 2935, 3058, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3177, 3178, 3179, 2931, 3130, 3189, 3190, 3201, 3185, 3186, 3187, 3220, 2877, 473: 3260, 475: 3239, 3258, 2755, 479: 3268, 482: 3272, 3276, 485: 3257, 3256, 3295, 492: 3230, 495: 3269, 504: 3275, 3293, 508: 3234, 530: 3264, 564: 3271, 567: 3294, 2753, 570: 3277, 3229, 3231, 3233, 3232, 3261, 3237, 3251, 3242, 3263, 3238, 582: 3270, 3262, 3267, 3273, 3283, 3336, 3284, 3285, 592: 3236, 3314, 595: 3254, 3255, 3309, 3310, 3311, 3312, 3313, 3265, 3291, 3296, 3306, 3307, 3300, 3315, 3316, 3317, 3301, 3319, 3320, 3302, 3318, 3297, 3305, 3303, 3289, 3321, 3322, 3266, 3326, 3278, 3279, 3282, 3325, 3331, 3330, 3332, 3329, 3333, 3328, 3327, 3324, 3274, 3323, 3281, 3280, 3286, 3287, 648: 2756, 661: 3244, 2762, 2763, 2761, 709: 3259, 3335, 3245, 3250, 3235, 3308, 3248, 3246, 3247, 3288, 3299, 3298, 3292, 3290, 3304, 3243, 3253, 3334, 3252, 3249, 2759, 2758, 2757, 3730}, - {9: 3731, 507: 3345, 509: 3343, 3344, 3342, 3340, 734: 3341, 3339}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 2840, 2788, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 2869, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 2874, 2801, 2766, 2783, 2948, 3031, 3020, 2818, 2830, 2941, 2942, 2937, 2895, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 2876, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 2760, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 2880, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 2799, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 2866, 2865, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 2936, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 2824, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 2751, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 2882, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 2752, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3144, 2878, 3145, 3146, 2777, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3159, 3160, 3211, 3210, 3057, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 2918, 2935, 3058, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3177, 3178, 3179, 2931, 3130, 3189, 3190, 3201, 3185, 3186, 3187, 3220, 2877, 473: 3260, 475: 3239, 3258, 2755, 479: 3268, 482: 3272, 3276, 485: 3257, 3256, 3295, 492: 3230, 495: 3269, 504: 3275, 3293, 508: 3234, 530: 3264, 564: 3271, 567: 3294, 2753, 570: 3277, 3229, 3231, 3233, 3232, 3261, 3237, 3251, 3733, 3263, 3238, 582: 3270, 3262, 3267, 3273, 3283, 3336, 3284, 3285, 592: 3236, 3314, 595: 3254, 3255, 3309, 3310, 3311, 3312, 3313, 3265, 3291, 3296, 3306, 3307, 3300, 3315, 3316, 3317, 3301, 3319, 3320, 3302, 3318, 3297, 3305, 3303, 3289, 3321, 3322, 3266, 3326, 3278, 3279, 3282, 3325, 3331, 3330, 3332, 3329, 3333, 3328, 3327, 3324, 3274, 3323, 3281, 3280, 3286, 3287, 648: 2756, 661: 3244, 2762, 2763, 2761, 709: 3259, 3335, 3245, 3250, 3235, 3308, 3248, 3246, 3247, 3288, 3299, 3298, 3292, 3290, 3304, 3243, 3253, 3334, 3252, 3249, 2759, 2758, 2757, 3732}, + {1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 477: 1189, 1189, 1189, 1189, 1189, 483: 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 492: 1189, 1189, 1189, 496: 1189, 1189, 499: 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 509: 1189, 1189, 512: 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 534: 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 568: 1189, 1189, 597: 1189}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 2864, 2812, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 2893, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 2898, 2825, 2789, 2807, 2972, 3055, 3044, 2842, 2854, 2965, 2966, 2961, 2919, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 2900, 2885, 2881, 2973, 2997, 2783, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 2904, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 2823, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 2889, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 2890, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 2960, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 2848, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 2774, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 2906, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 2775, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3170, 2902, 3171, 3172, 2801, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3185, 3186, 3237, 3236, 3081, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 2942, 2959, 3082, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3203, 3204, 3205, 2955, 3156, 3215, 3216, 3227, 3211, 3212, 3213, 3246, 2901, 476: 3286, 478: 3265, 3284, 2778, 482: 3294, 485: 3298, 3302, 488: 3283, 3282, 3321, 495: 3256, 498: 3295, 507: 3301, 3319, 511: 3260, 533: 3290, 567: 3297, 570: 3320, 2776, 573: 3303, 3255, 3257, 3259, 3258, 3287, 3263, 3277, 3268, 3289, 3264, 585: 3296, 3288, 3293, 3299, 3309, 3362, 3310, 3311, 595: 3262, 3340, 598: 3280, 3281, 3335, 3336, 3337, 3338, 3339, 3291, 3317, 3322, 3332, 3333, 3326, 3341, 3342, 3343, 3327, 3345, 3346, 3328, 3344, 3323, 3331, 3329, 3315, 3347, 3348, 3292, 3352, 3304, 3305, 3308, 3351, 3357, 3356, 3358, 3355, 3359, 3354, 3353, 3350, 3300, 3349, 3307, 3306, 3312, 3313, 651: 2779, 664: 3270, 2785, 2786, 2784, 713: 3285, 3361, 3271, 3276, 3261, 3334, 3274, 3272, 3273, 3314, 3325, 3324, 3318, 3316, 3330, 3269, 3279, 3360, 3278, 3275, 2782, 2781, 2780, 3749}, + {9: 3750, 510: 3371, 512: 3369, 3370, 3368, 3366, 738: 3367, 3365}, + {581: 3751}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 2864, 2812, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 2893, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 2898, 2825, 2789, 2807, 2972, 3055, 3044, 2842, 2854, 2965, 2966, 2961, 2919, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 2900, 2885, 2881, 2973, 2997, 2783, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 2904, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 2823, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 2889, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 2890, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 2960, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 2848, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 2774, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 2906, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 2775, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3170, 2902, 3171, 3172, 2801, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3185, 3186, 3237, 3236, 3081, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 2942, 2959, 3082, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3203, 3204, 3205, 2955, 3156, 3215, 3216, 3227, 3211, 3212, 3213, 3246, 2901, 476: 3286, 478: 3265, 3284, 2778, 482: 3294, 485: 3298, 3302, 488: 3283, 3282, 3321, 495: 3256, 498: 3295, 507: 3301, 3319, 511: 3260, 533: 3290, 567: 3297, 570: 3320, 2776, 573: 3303, 3255, 3257, 3259, 3258, 3287, 3263, 3277, 3268, 3289, 3264, 585: 3296, 3288, 3293, 3299, 3309, 3362, 3310, 3311, 595: 3262, 3340, 598: 3280, 3281, 3335, 3336, 3337, 3338, 3339, 3291, 3317, 3322, 3332, 3333, 3326, 3341, 3342, 3343, 3327, 3345, 3346, 3328, 3344, 3323, 3331, 3329, 3315, 3347, 3348, 3292, 3352, 3304, 3305, 3308, 3351, 3357, 3356, 3358, 3355, 3359, 3354, 3353, 3350, 3300, 3349, 3307, 3306, 3312, 3313, 651: 2779, 664: 3270, 2785, 2786, 2784, 713: 3285, 3361, 3271, 3276, 3261, 3334, 3274, 3272, 3273, 3314, 3325, 3324, 3318, 3316, 3330, 3269, 3279, 3360, 3278, 3275, 2782, 2781, 2780, 3752}, // 1195 - {49: 3737, 507: 3345, 509: 3343, 3344, 3342, 3340, 734: 3341, 3339}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 2840, 2788, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 2869, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 2874, 2801, 2766, 2783, 2948, 3031, 3020, 2818, 2830, 2941, 2942, 2937, 2895, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 2876, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 2760, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 2880, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 2799, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 2866, 2865, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 2936, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 2824, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 2751, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 2882, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 2752, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3144, 2878, 3145, 3146, 2777, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3159, 3160, 3211, 3210, 3057, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 2918, 2935, 3058, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3177, 3178, 3179, 2931, 3130, 3189, 3190, 3201, 3185, 3186, 3187, 3220, 2877, 473: 1226, 475: 3239, 3258, 2755, 479: 3268, 482: 3272, 3276, 485: 3257, 3256, 3295, 492: 3230, 495: 3269, 504: 3275, 3293, 508: 3234, 530: 3264, 564: 3271, 567: 3294, 2753, 570: 3277, 3229, 3231, 3233, 3232, 3261, 3237, 3251, 3242, 3263, 3238, 582: 3270, 3262, 3267, 3273, 3283, 3336, 3284, 3285, 592: 3236, 3314, 595: 3254, 3255, 3309, 3310, 3311, 3312, 3313, 3265, 3291, 3296, 3306, 3307, 3300, 3315, 3316, 3317, 3301, 3319, 3320, 3302, 3318, 3297, 3305, 3303, 3289, 3321, 3322, 3266, 3326, 3278, 3279, 3282, 3325, 3331, 3330, 3332, 3329, 3333, 3328, 3327, 3324, 3274, 3323, 3281, 3280, 3286, 3287, 648: 2756, 661: 3244, 2762, 2763, 2761, 709: 3259, 3335, 3245, 3250, 3235, 3308, 3248, 3246, 3247, 3288, 3299, 3298, 3292, 3290, 3304, 3243, 3253, 3334, 3252, 3249, 2759, 2758, 2757, 3734}, - {104: 3464, 3460, 108: 3457, 3472, 112: 3459, 3456, 3458, 3462, 3463, 3468, 3467, 3466, 3470, 3471, 3465, 3469, 3461, 507: 3345, 509: 3343, 3344, 3342, 3340, 532: 3454, 3451, 3453, 3452, 3448, 3450, 3449, 3446, 3447, 3445, 3455, 734: 3341, 3339, 796: 3444, 815: 3735}, - {49: 3736, 485: 3707}, - {1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 474: 1177, 1177, 1177, 1177, 1177, 480: 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 489: 1177, 1177, 1177, 493: 1177, 1177, 496: 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 506: 1177, 1177, 509: 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 531: 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 1177, 565: 1177, 1177, 594: 1177}, + {105: 3490, 3486, 109: 3483, 3498, 113: 3485, 3482, 3484, 3488, 3489, 3494, 3493, 3492, 3496, 3497, 3491, 3495, 3487, 510: 3371, 512: 3369, 3370, 3368, 3366, 535: 3480, 3477, 3479, 3478, 3474, 3476, 3475, 3472, 3473, 3471, 3481, 738: 3367, 3365, 800: 3470, 820: 3753}, + {50: 3754}, + {1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 477: 1190, 1190, 1190, 1190, 1190, 483: 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 492: 1190, 1190, 1190, 496: 1190, 1190, 499: 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 509: 1190, 1190, 512: 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 534: 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 568: 1190, 1190, 597: 1190}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 2864, 2812, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 2893, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 2898, 2825, 2789, 2807, 2972, 3055, 3044, 2842, 2854, 2965, 2966, 2961, 2919, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 2900, 2885, 2881, 2973, 2997, 2783, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 2904, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 2823, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 2889, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 2890, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 2960, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 2848, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 2774, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 2906, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 2775, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3170, 2902, 3171, 3172, 2801, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3185, 3186, 3237, 3236, 3081, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 2942, 2959, 3082, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3203, 3204, 3205, 2955, 3156, 3215, 3216, 3227, 3211, 3212, 3213, 3246, 2901, 476: 3286, 478: 3265, 3284, 2778, 482: 3294, 485: 3298, 3302, 488: 3283, 3282, 3321, 495: 3256, 498: 3295, 507: 3301, 3319, 511: 3260, 533: 3290, 567: 3297, 570: 3320, 2776, 573: 3303, 3255, 3257, 3259, 3258, 3287, 3263, 3277, 3268, 3289, 3264, 585: 3296, 3288, 3293, 3299, 3309, 3362, 3310, 3311, 595: 3262, 3340, 598: 3280, 3281, 3335, 3336, 3337, 3338, 3339, 3291, 3317, 3322, 3332, 3333, 3326, 3341, 3342, 3343, 3327, 3345, 3346, 3328, 3344, 3323, 3331, 3329, 3315, 3347, 3348, 3292, 3352, 3304, 3305, 3308, 3351, 3357, 3356, 3358, 3355, 3359, 3354, 3353, 3350, 3300, 3349, 3307, 3306, 3312, 3313, 651: 2779, 664: 3270, 2785, 2786, 2784, 713: 3285, 3361, 3271, 3276, 3261, 3334, 3274, 3272, 3273, 3314, 3325, 3324, 3318, 3316, 3330, 3269, 3279, 3360, 3278, 3275, 2782, 2781, 2780, 3756}, + {9: 3757, 510: 3371, 512: 3369, 3370, 3368, 3366, 738: 3367, 3365}, // 1200 - {1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 474: 1178, 1178, 1178, 1178, 1178, 480: 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 489: 1178, 1178, 1178, 493: 1178, 1178, 496: 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 506: 1178, 1178, 509: 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 531: 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 1178, 565: 1178, 1178, 594: 1178}, - {49: 1917, 508: 3740, 1052: 3739, 3741}, - {49: 1916}, - {49: 1915}, - {49: 3742}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 2864, 2812, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 2893, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 2898, 2825, 2789, 2807, 2972, 3055, 3044, 2842, 2854, 2965, 2966, 2961, 2919, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 2900, 2885, 2881, 2973, 2997, 2783, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 2904, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 2823, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 2889, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 2890, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 2960, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 2848, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 2774, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 2906, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 2775, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3170, 2902, 3171, 3172, 2801, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3185, 3186, 3237, 3236, 3081, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 2942, 2959, 3082, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3203, 3204, 3205, 2955, 3156, 3215, 3216, 3227, 3211, 3212, 3213, 3246, 2901, 476: 3286, 478: 3265, 3284, 2778, 482: 3294, 485: 3298, 3302, 488: 3283, 3282, 3321, 495: 3256, 498: 3295, 507: 3301, 3319, 511: 3260, 533: 3290, 567: 3297, 570: 3320, 2776, 573: 3303, 3255, 3257, 3259, 3258, 3287, 3263, 3277, 3759, 3289, 3264, 585: 3296, 3288, 3293, 3299, 3309, 3362, 3310, 3311, 595: 3262, 3340, 598: 3280, 3281, 3335, 3336, 3337, 3338, 3339, 3291, 3317, 3322, 3332, 3333, 3326, 3341, 3342, 3343, 3327, 3345, 3346, 3328, 3344, 3323, 3331, 3329, 3315, 3347, 3348, 3292, 3352, 3304, 3305, 3308, 3351, 3357, 3356, 3358, 3355, 3359, 3354, 3353, 3350, 3300, 3349, 3307, 3306, 3312, 3313, 651: 2779, 664: 3270, 2785, 2786, 2784, 713: 3285, 3361, 3271, 3276, 3261, 3334, 3274, 3272, 3273, 3314, 3325, 3324, 3318, 3316, 3330, 3269, 3279, 3360, 3278, 3275, 2782, 2781, 2780, 3758}, + {50: 3763, 510: 3371, 512: 3369, 3370, 3368, 3366, 738: 3367, 3365}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 2864, 2812, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 2893, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 2898, 2825, 2789, 2807, 2972, 3055, 3044, 2842, 2854, 2965, 2966, 2961, 2919, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 2900, 2885, 2881, 2973, 2997, 2783, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 2904, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 2823, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 2889, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 2890, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 2960, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 2848, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 2774, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 2906, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 2775, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3170, 2902, 3171, 3172, 2801, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3185, 3186, 3237, 3236, 3081, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 2942, 2959, 3082, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3203, 3204, 3205, 2955, 3156, 3215, 3216, 3227, 3211, 3212, 3213, 3246, 2901, 476: 1240, 478: 3265, 3284, 2778, 482: 3294, 485: 3298, 3302, 488: 3283, 3282, 3321, 495: 3256, 498: 3295, 507: 3301, 3319, 511: 3260, 533: 3290, 567: 3297, 570: 3320, 2776, 573: 3303, 3255, 3257, 3259, 3258, 3287, 3263, 3277, 3268, 3289, 3264, 585: 3296, 3288, 3293, 3299, 3309, 3362, 3310, 3311, 595: 3262, 3340, 598: 3280, 3281, 3335, 3336, 3337, 3338, 3339, 3291, 3317, 3322, 3332, 3333, 3326, 3341, 3342, 3343, 3327, 3345, 3346, 3328, 3344, 3323, 3331, 3329, 3315, 3347, 3348, 3292, 3352, 3304, 3305, 3308, 3351, 3357, 3356, 3358, 3355, 3359, 3354, 3353, 3350, 3300, 3349, 3307, 3306, 3312, 3313, 651: 2779, 664: 3270, 2785, 2786, 2784, 713: 3285, 3361, 3271, 3276, 3261, 3334, 3274, 3272, 3273, 3314, 3325, 3324, 3318, 3316, 3330, 3269, 3279, 3360, 3278, 3275, 2782, 2781, 2780, 3760}, + {105: 3490, 3486, 109: 3483, 3498, 113: 3485, 3482, 3484, 3488, 3489, 3494, 3493, 3492, 3496, 3497, 3491, 3495, 3487, 510: 3371, 512: 3369, 3370, 3368, 3366, 535: 3480, 3477, 3479, 3478, 3474, 3476, 3475, 3472, 3473, 3471, 3481, 738: 3367, 3365, 800: 3470, 820: 3761}, + {50: 3762, 488: 3733}, // 1205 - {1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 474: 1179, 1179, 1179, 1179, 1179, 480: 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 489: 1179, 1179, 1179, 493: 1179, 1179, 496: 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 506: 1179, 1179, 509: 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 531: 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 1179, 565: 1179, 1179, 594: 1179}, - {49: 1917, 508: 3740, 1052: 3739, 3744}, - {49: 3745}, - {1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 474: 1180, 1180, 1180, 1180, 1180, 480: 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 489: 1180, 1180, 1180, 493: 1180, 1180, 496: 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 506: 1180, 1180, 509: 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 531: 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 1180, 565: 1180, 1180, 594: 1180}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 2840, 2788, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 2869, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 2874, 2801, 2766, 2783, 2948, 3031, 3020, 2818, 2830, 2941, 2942, 2937, 2895, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 2876, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 2760, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 2880, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 2799, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 2866, 2865, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 2936, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 2824, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 2751, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 2882, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 2752, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3144, 2878, 3145, 3146, 2777, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3159, 3160, 3211, 3210, 3057, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 2918, 2935, 3058, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3177, 3178, 3179, 2931, 3130, 3189, 3190, 3201, 3185, 3186, 3187, 3220, 2877, 473: 3260, 475: 3239, 3258, 479: 3268, 482: 3272, 3276, 485: 3257, 3256, 3295, 492: 3230, 495: 3269, 504: 3275, 3293, 508: 3234, 530: 3264, 564: 3271, 567: 3294, 3349, 570: 3277, 3229, 3231, 3233, 3232, 3261, 3237, 3251, 3242, 3263, 3238, 582: 3270, 3262, 3267, 3273, 3283, 3336, 3284, 3285, 592: 3236, 3314, 595: 3254, 3255, 3309, 3310, 3311, 3312, 3313, 3265, 3291, 3296, 3306, 3307, 3300, 3315, 3316, 3317, 3301, 3319, 3320, 3302, 3318, 3297, 3305, 3303, 3289, 3321, 3322, 3266, 3326, 3278, 3279, 3282, 3325, 3331, 3330, 3332, 3329, 3333, 3328, 3327, 3324, 3274, 3323, 3281, 3280, 3286, 3287, 661: 3244, 2762, 2763, 2761, 709: 3259, 3335, 3245, 3250, 3235, 3308, 3248, 3246, 3247, 3288, 3299, 3298, 3292, 3290, 3304, 3243, 3253, 3334, 3252, 3249, 3747}, + {1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 477: 1191, 1191, 1191, 1191, 1191, 483: 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 492: 1191, 1191, 1191, 496: 1191, 1191, 499: 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 509: 1191, 1191, 512: 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 534: 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 568: 1191, 1191, 597: 1191}, + {1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 477: 1192, 1192, 1192, 1192, 1192, 483: 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 492: 1192, 1192, 1192, 496: 1192, 1192, 499: 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 509: 1192, 1192, 512: 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 534: 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 568: 1192, 1192, 597: 1192}, + {50: 1934, 511: 3766, 1059: 3765, 3767}, + {50: 1933}, + {50: 1932}, // 1210 - {9: 3748, 485: 3686, 3687, 3692, 520: 3688, 547: 3689, 3690, 3683, 3693, 3682, 3691, 3684, 3685}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 2840, 2788, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 2869, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 2874, 2801, 2766, 2783, 2948, 3031, 3020, 2818, 2830, 2941, 2942, 2937, 2895, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 2876, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 2760, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 2880, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 2799, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 2866, 2865, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 2936, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 2824, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 2751, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 2882, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 2752, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3144, 2878, 3145, 3146, 2777, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3159, 3160, 3211, 3210, 3057, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 2918, 2935, 3058, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3177, 3178, 3179, 2931, 3130, 3189, 3190, 3201, 3185, 3186, 3187, 3220, 2877, 473: 3260, 475: 3239, 3258, 479: 3268, 482: 3272, 3276, 485: 3257, 3256, 3295, 492: 3230, 495: 3269, 504: 3275, 3293, 508: 3234, 530: 3264, 564: 3271, 567: 3294, 3349, 570: 3277, 3229, 3231, 3233, 3232, 3261, 3237, 3251, 3242, 3263, 3238, 582: 3270, 3262, 3267, 3273, 3283, 3336, 3284, 3285, 592: 3236, 3314, 595: 3254, 3255, 3309, 3310, 3311, 3312, 3313, 3265, 3291, 3296, 3306, 3307, 3300, 3315, 3316, 3317, 3301, 3319, 3320, 3302, 3318, 3297, 3305, 3303, 3289, 3321, 3322, 3266, 3326, 3278, 3279, 3282, 3325, 3331, 3330, 3332, 3329, 3333, 3328, 3327, 3324, 3274, 3323, 3281, 3280, 3286, 3287, 661: 3244, 2762, 2763, 2761, 709: 3259, 3335, 3245, 3250, 3235, 3308, 3248, 3246, 3247, 3288, 3299, 3298, 3292, 3290, 3304, 3243, 3253, 3334, 3252, 3249, 3749}, - {49: 3750, 485: 3686, 3687, 3692, 520: 3688, 547: 3689, 3690, 3683, 3693, 3682, 3691, 3684, 3685}, - {1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 474: 1182, 1182, 1182, 1182, 1182, 480: 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 489: 1182, 1182, 1182, 493: 1182, 1182, 496: 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 506: 1182, 1182, 509: 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 531: 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 565: 1182, 1182, 594: 1182}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 2840, 2788, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 1919, 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 2869, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 2874, 2801, 2766, 2783, 2948, 3031, 3020, 2818, 2830, 2941, 2942, 2937, 2895, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 2876, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 2760, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 2880, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 2799, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 2866, 2865, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 2936, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 2824, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 2751, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 2882, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 2752, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3144, 2878, 3145, 3146, 2777, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3159, 3160, 3211, 3210, 3057, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 2918, 2935, 3058, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3177, 3178, 3179, 2931, 3130, 3189, 3190, 3201, 3185, 3186, 3187, 3220, 2877, 473: 3260, 475: 3239, 3258, 2755, 479: 3268, 482: 3272, 3276, 485: 3257, 3256, 3295, 492: 3230, 495: 3269, 504: 3275, 3293, 508: 3234, 530: 3264, 564: 3271, 567: 3294, 2753, 570: 3277, 3229, 3231, 3233, 3232, 3261, 3237, 3251, 3242, 3263, 3238, 582: 3270, 3262, 3267, 3273, 3283, 3336, 3284, 3285, 592: 3236, 3314, 595: 3254, 3255, 3309, 3310, 3311, 3312, 3313, 3265, 3291, 3296, 3306, 3307, 3300, 3315, 3316, 3317, 3301, 3319, 3320, 3302, 3318, 3297, 3305, 3303, 3289, 3321, 3322, 3266, 3326, 3278, 3279, 3282, 3325, 3331, 3330, 3332, 3329, 3333, 3328, 3327, 3324, 3274, 3323, 3281, 3280, 3286, 3287, 648: 2756, 661: 3244, 2762, 2763, 2761, 709: 3259, 3335, 3245, 3250, 3235, 3308, 3248, 3246, 3247, 3288, 3299, 3298, 3292, 3290, 3304, 3243, 3253, 3334, 3252, 3249, 2759, 2758, 2757, 3588, 778: 3752, 826: 3753}, + {50: 3768}, + {1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 477: 1193, 1193, 1193, 1193, 1193, 483: 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 492: 1193, 1193, 1193, 496: 1193, 1193, 499: 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 509: 1193, 1193, 512: 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 534: 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 568: 1193, 1193, 597: 1193}, + {50: 1934, 511: 3766, 1059: 3765, 3770}, + {50: 3771}, + {1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 477: 1194, 1194, 1194, 1194, 1194, 483: 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 492: 1194, 1194, 1194, 496: 1194, 1194, 499: 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 509: 1194, 1194, 512: 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 534: 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 1194, 568: 1194, 1194, 597: 1194}, // 1215 - {9: 3590, 49: 1918}, - {49: 3754}, - {1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 474: 1183, 1183, 1183, 1183, 1183, 480: 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 489: 1183, 1183, 1183, 493: 1183, 1183, 496: 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 506: 1183, 1183, 509: 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 531: 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 1183, 565: 1183, 1183, 594: 1183}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 2840, 2788, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 2869, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 2874, 2801, 2766, 2783, 2948, 3031, 3020, 2818, 2830, 2941, 2942, 2937, 2895, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 2876, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 2760, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 2880, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 2799, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 2866, 2865, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 2936, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 2824, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 2751, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 2882, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 2752, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3144, 2878, 3145, 3146, 2777, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3159, 3160, 3211, 3210, 3057, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 2918, 2935, 3058, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3177, 3178, 3179, 2931, 3130, 3189, 3190, 3201, 3185, 3186, 3187, 3220, 2877, 473: 3260, 475: 3239, 3258, 2755, 479: 3268, 482: 3272, 3276, 485: 3257, 3256, 3295, 492: 3230, 495: 3269, 504: 3275, 3293, 508: 3234, 530: 3264, 564: 3271, 567: 3294, 2753, 570: 3277, 3229, 3231, 3233, 3232, 3261, 3237, 3251, 3242, 3263, 3238, 582: 3270, 3262, 3267, 3273, 3283, 3336, 3284, 3285, 592: 3236, 3314, 595: 3254, 3255, 3309, 3310, 3311, 3312, 3313, 3265, 3291, 3296, 3306, 3307, 3300, 3315, 3316, 3317, 3301, 3319, 3320, 3302, 3318, 3297, 3305, 3303, 3289, 3321, 3322, 3266, 3326, 3278, 3279, 3282, 3325, 3331, 3330, 3332, 3329, 3333, 3328, 3327, 3324, 3274, 3323, 3281, 3280, 3286, 3287, 648: 2756, 661: 3244, 2762, 2763, 2761, 709: 3259, 3335, 3245, 3250, 3235, 3308, 3248, 3246, 3247, 3288, 3299, 3298, 3292, 3290, 3304, 3243, 3253, 3334, 3252, 3249, 2759, 2758, 2757, 3588, 778: 3756}, - {9: 3590, 49: 3757, 481: 3758}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 2864, 2812, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 2893, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 2898, 2825, 2789, 2807, 2972, 3055, 3044, 2842, 2854, 2965, 2966, 2961, 2919, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 2900, 2885, 2881, 2973, 2997, 2783, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 2904, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 2823, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 2889, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 2890, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 2960, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 2848, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 2774, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 2906, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 2775, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3170, 2902, 3171, 3172, 2801, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3185, 3186, 3237, 3236, 3081, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 2942, 2959, 3082, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3203, 3204, 3205, 2955, 3156, 3215, 3216, 3227, 3211, 3212, 3213, 3246, 2901, 476: 3286, 478: 3265, 3284, 482: 3294, 485: 3298, 3302, 488: 3283, 3282, 3321, 495: 3256, 498: 3295, 507: 3301, 3319, 511: 3260, 533: 3290, 567: 3297, 570: 3320, 3375, 573: 3303, 3255, 3257, 3259, 3258, 3287, 3263, 3277, 3268, 3289, 3264, 585: 3296, 3288, 3293, 3299, 3309, 3362, 3310, 3311, 595: 3262, 3340, 598: 3280, 3281, 3335, 3336, 3337, 3338, 3339, 3291, 3317, 3322, 3332, 3333, 3326, 3341, 3342, 3343, 3327, 3345, 3346, 3328, 3344, 3323, 3331, 3329, 3315, 3347, 3348, 3292, 3352, 3304, 3305, 3308, 3351, 3357, 3356, 3358, 3355, 3359, 3354, 3353, 3350, 3300, 3349, 3307, 3306, 3312, 3313, 664: 3270, 2785, 2786, 2784, 713: 3285, 3361, 3271, 3276, 3261, 3334, 3274, 3272, 3273, 3314, 3325, 3324, 3318, 3316, 3330, 3269, 3279, 3360, 3278, 3275, 3773}, + {9: 3774, 488: 3712, 3713, 3718, 523: 3714, 550: 3715, 3716, 3709, 3719, 3708, 3717, 3710, 3711}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 2864, 2812, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 2893, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 2898, 2825, 2789, 2807, 2972, 3055, 3044, 2842, 2854, 2965, 2966, 2961, 2919, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 2900, 2885, 2881, 2973, 2997, 2783, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 2904, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 2823, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 2889, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 2890, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 2960, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 2848, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 2774, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 2906, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 2775, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3170, 2902, 3171, 3172, 2801, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3185, 3186, 3237, 3236, 3081, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 2942, 2959, 3082, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3203, 3204, 3205, 2955, 3156, 3215, 3216, 3227, 3211, 3212, 3213, 3246, 2901, 476: 3286, 478: 3265, 3284, 482: 3294, 485: 3298, 3302, 488: 3283, 3282, 3321, 495: 3256, 498: 3295, 507: 3301, 3319, 511: 3260, 533: 3290, 567: 3297, 570: 3320, 3375, 573: 3303, 3255, 3257, 3259, 3258, 3287, 3263, 3277, 3268, 3289, 3264, 585: 3296, 3288, 3293, 3299, 3309, 3362, 3310, 3311, 595: 3262, 3340, 598: 3280, 3281, 3335, 3336, 3337, 3338, 3339, 3291, 3317, 3322, 3332, 3333, 3326, 3341, 3342, 3343, 3327, 3345, 3346, 3328, 3344, 3323, 3331, 3329, 3315, 3347, 3348, 3292, 3352, 3304, 3305, 3308, 3351, 3357, 3356, 3358, 3355, 3359, 3354, 3353, 3350, 3300, 3349, 3307, 3306, 3312, 3313, 664: 3270, 2785, 2786, 2784, 713: 3285, 3361, 3271, 3276, 3261, 3334, 3274, 3272, 3273, 3314, 3325, 3324, 3318, 3316, 3330, 3269, 3279, 3360, 3278, 3275, 3775}, + {50: 3776, 488: 3712, 3713, 3718, 523: 3714, 550: 3715, 3716, 3709, 3719, 3708, 3717, 3710, 3711}, + {1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 477: 1196, 1196, 1196, 1196, 1196, 483: 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 492: 1196, 1196, 1196, 496: 1196, 1196, 499: 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 509: 1196, 1196, 512: 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 534: 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 1196, 568: 1196, 1196, 597: 1196}, // 1220 - {1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 474: 1188, 1188, 1188, 1188, 1188, 480: 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 489: 1188, 1188, 1188, 493: 1188, 1188, 496: 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 506: 1188, 1188, 509: 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 531: 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 565: 1188, 1188, 594: 1188}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 475: 3490, 530: 3761, 661: 3491, 2762, 2763, 2761, 738: 3760, 807: 3759}, - {49: 3762}, - {757, 757, 757, 757, 757, 757, 757, 757, 757, 757, 757, 757, 757, 757, 757, 757, 757, 757, 757, 757, 757, 757, 757, 757, 757, 757, 757, 757, 757, 757, 757, 757, 757, 757, 757, 757, 757, 757, 757, 757, 757, 757, 757, 757, 757, 757, 757, 757, 49: 757, 102: 757, 111: 757, 472: 757, 757, 757, 476: 757, 757, 757, 757, 757, 484: 757, 488: 757, 757, 492: 757, 495: 757, 503: 757, 757, 757, 757, 530: 757, 569: 757, 581: 757, 590: 757, 757, 642: 757, 757, 757, 757, 757, 757, 649: 757, 658: 757}, - {756, 756, 756, 756, 756, 756, 756, 756, 756, 756, 756, 756, 756, 756, 756, 756, 756, 756, 756, 756, 756, 756, 756, 756, 756, 756, 756, 756, 756, 756, 756, 756, 756, 756, 756, 756, 756, 756, 756, 756, 756, 756, 756, 756, 756, 756, 756, 756, 49: 756, 102: 756, 111: 756, 472: 756, 756, 756, 476: 756, 756, 756, 756, 756, 484: 756, 488: 756, 756, 492: 756, 495: 756, 503: 756, 756, 756, 756, 530: 756, 569: 756, 581: 756, 590: 756, 756, 642: 756, 756, 756, 756, 756, 756, 649: 756, 658: 756}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 2864, 2812, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 1936, 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 2893, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 2898, 2825, 2789, 2807, 2972, 3055, 3044, 2842, 2854, 2965, 2966, 2961, 2919, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 2900, 2885, 2881, 2973, 2997, 2783, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 2904, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 2823, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 2889, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 2890, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 2960, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 2848, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 2774, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 2906, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 2775, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3170, 2902, 3171, 3172, 2801, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3185, 3186, 3237, 3236, 3081, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 2942, 2959, 3082, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3203, 3204, 3205, 2955, 3156, 3215, 3216, 3227, 3211, 3212, 3213, 3246, 2901, 476: 3286, 478: 3265, 3284, 2778, 482: 3294, 485: 3298, 3302, 488: 3283, 3282, 3321, 495: 3256, 498: 3295, 507: 3301, 3319, 511: 3260, 533: 3290, 567: 3297, 570: 3320, 2776, 573: 3303, 3255, 3257, 3259, 3258, 3287, 3263, 3277, 3268, 3289, 3264, 585: 3296, 3288, 3293, 3299, 3309, 3362, 3310, 3311, 595: 3262, 3340, 598: 3280, 3281, 3335, 3336, 3337, 3338, 3339, 3291, 3317, 3322, 3332, 3333, 3326, 3341, 3342, 3343, 3327, 3345, 3346, 3328, 3344, 3323, 3331, 3329, 3315, 3347, 3348, 3292, 3352, 3304, 3305, 3308, 3351, 3357, 3356, 3358, 3355, 3359, 3354, 3353, 3350, 3300, 3349, 3307, 3306, 3312, 3313, 651: 2779, 664: 3270, 2785, 2786, 2784, 713: 3285, 3361, 3271, 3276, 3261, 3334, 3274, 3272, 3273, 3314, 3325, 3324, 3318, 3316, 3330, 3269, 3279, 3360, 3278, 3275, 2782, 2781, 2780, 3614, 782: 3778, 830: 3779}, + {9: 3616, 50: 1935}, + {50: 3780}, + {1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 477: 1197, 1197, 1197, 1197, 1197, 483: 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 492: 1197, 1197, 1197, 496: 1197, 1197, 499: 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 509: 1197, 1197, 512: 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 534: 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 1197, 568: 1197, 1197, 597: 1197}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 2864, 2812, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 2893, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 2898, 2825, 2789, 2807, 2972, 3055, 3044, 2842, 2854, 2965, 2966, 2961, 2919, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 2900, 2885, 2881, 2973, 2997, 2783, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 2904, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 2823, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 2889, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 2890, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 2960, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 2848, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 2774, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 2906, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 2775, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3170, 2902, 3171, 3172, 2801, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3185, 3186, 3237, 3236, 3081, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 2942, 2959, 3082, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3203, 3204, 3205, 2955, 3156, 3215, 3216, 3227, 3211, 3212, 3213, 3246, 2901, 476: 3286, 478: 3265, 3284, 2778, 482: 3294, 485: 3298, 3302, 488: 3283, 3282, 3321, 495: 3256, 498: 3295, 507: 3301, 3319, 511: 3260, 533: 3290, 567: 3297, 570: 3320, 2776, 573: 3303, 3255, 3257, 3259, 3258, 3287, 3263, 3277, 3268, 3289, 3264, 585: 3296, 3288, 3293, 3299, 3309, 3362, 3310, 3311, 595: 3262, 3340, 598: 3280, 3281, 3335, 3336, 3337, 3338, 3339, 3291, 3317, 3322, 3332, 3333, 3326, 3341, 3342, 3343, 3327, 3345, 3346, 3328, 3344, 3323, 3331, 3329, 3315, 3347, 3348, 3292, 3352, 3304, 3305, 3308, 3351, 3357, 3356, 3358, 3355, 3359, 3354, 3353, 3350, 3300, 3349, 3307, 3306, 3312, 3313, 651: 2779, 664: 3270, 2785, 2786, 2784, 713: 3285, 3361, 3271, 3276, 3261, 3334, 3274, 3272, 3273, 3314, 3325, 3324, 3318, 3316, 3330, 3269, 3279, 3360, 3278, 3275, 2782, 2781, 2780, 3614, 782: 3782}, // 1225 - {1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 474: 1187, 1187, 1187, 1187, 1187, 480: 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 489: 1187, 1187, 1187, 493: 1187, 1187, 496: 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 506: 1187, 1187, 509: 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 531: 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 1187, 565: 1187, 1187, 594: 1187}, - {1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 474: 1189, 1189, 1189, 1189, 1189, 480: 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 489: 1189, 1189, 1189, 493: 1189, 1189, 496: 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 506: 1189, 1189, 509: 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 531: 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 1189, 565: 1189, 1189, 594: 1189}, - {49: 3765, 508: 3766}, - {1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 474: 1111, 1111, 1111, 1111, 1111, 480: 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 489: 1111, 1111, 1111, 493: 1111, 1111, 496: 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 506: 1111, 1111, 509: 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 531: 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 1111, 565: 1111, 1111, 594: 1111}, - {49: 3767}, + {9: 3616, 50: 3783, 484: 3784}, + {1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 477: 1202, 1202, 1202, 1202, 1202, 483: 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 492: 1202, 1202, 1202, 496: 1202, 1202, 499: 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 509: 1202, 1202, 512: 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 534: 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 1202, 568: 1202, 1202, 597: 1202}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 478: 3516, 533: 3787, 664: 3517, 2785, 2786, 2784, 742: 3786, 811: 3785}, + {50: 3788}, + {771, 771, 771, 771, 771, 771, 771, 771, 771, 771, 771, 771, 771, 771, 771, 771, 771, 771, 771, 771, 771, 771, 771, 771, 771, 771, 771, 771, 771, 771, 771, 771, 771, 771, 771, 771, 771, 771, 771, 771, 771, 771, 771, 771, 771, 771, 771, 771, 50: 771, 103: 771, 112: 771, 475: 771, 771, 771, 479: 771, 771, 771, 771, 771, 487: 771, 491: 771, 771, 495: 771, 498: 771, 506: 771, 771, 771, 771, 533: 771, 572: 771, 584: 771, 593: 771, 771, 645: 771, 771, 771, 771, 771, 771, 652: 771, 661: 771}, // 1230 - {1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 474: 1110, 1110, 1110, 1110, 1110, 480: 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 489: 1110, 1110, 1110, 493: 1110, 1110, 496: 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 506: 1110, 1110, 509: 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 531: 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 1110, 565: 1110, 1110, 594: 1110}, - {49: 3769}, - {1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 474: 1190, 1190, 1190, 1190, 1190, 480: 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 489: 1190, 1190, 1190, 493: 1190, 1190, 496: 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 506: 1190, 1190, 509: 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 531: 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 1190, 565: 1190, 1190, 594: 1190}, - {49: 3772}, - {1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 474: 1191, 1191, 1191, 1191, 1191, 480: 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 489: 1191, 1191, 1191, 493: 1191, 1191, 496: 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 506: 1191, 1191, 509: 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 531: 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 1191, 565: 1191, 1191, 594: 1191}, + {770, 770, 770, 770, 770, 770, 770, 770, 770, 770, 770, 770, 770, 770, 770, 770, 770, 770, 770, 770, 770, 770, 770, 770, 770, 770, 770, 770, 770, 770, 770, 770, 770, 770, 770, 770, 770, 770, 770, 770, 770, 770, 770, 770, 770, 770, 770, 770, 50: 770, 103: 770, 112: 770, 475: 770, 770, 770, 479: 770, 770, 770, 770, 770, 487: 770, 491: 770, 770, 495: 770, 498: 770, 506: 770, 770, 770, 770, 533: 770, 572: 770, 584: 770, 593: 770, 770, 645: 770, 770, 770, 770, 770, 770, 652: 770, 661: 770}, + {1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 477: 1201, 1201, 1201, 1201, 1201, 483: 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 492: 1201, 1201, 1201, 496: 1201, 1201, 499: 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 509: 1201, 1201, 512: 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 534: 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 1201, 568: 1201, 1201, 597: 1201}, + {1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 477: 1203, 1203, 1203, 1203, 1203, 483: 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 492: 1203, 1203, 1203, 496: 1203, 1203, 499: 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 509: 1203, 1203, 512: 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 534: 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 1203, 568: 1203, 1203, 597: 1203}, + {50: 3791, 511: 3792}, + {1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 477: 1125, 1125, 1125, 1125, 1125, 483: 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 492: 1125, 1125, 1125, 496: 1125, 1125, 499: 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 509: 1125, 1125, 512: 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 534: 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 1125, 568: 1125, 1125, 597: 1125}, // 1235 - {1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 474: 1205, 1205, 1205, 1205, 1205, 480: 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 489: 1205, 1205, 1205, 493: 1205, 1205, 496: 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 506: 1205, 1205, 509: 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 531: 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 565: 1205, 1205, 594: 1205, 650: 1205, 666: 1205, 668: 1205}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 2840, 2788, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 1919, 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 2869, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 2874, 2801, 2766, 2783, 2948, 3031, 3020, 2818, 2830, 2941, 2942, 2937, 2895, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 2876, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 2760, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 2880, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 2799, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 2866, 2865, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 2936, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 2824, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 2751, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 2882, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 2752, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3144, 2878, 3145, 3146, 2777, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3159, 3160, 3211, 3210, 3057, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 2918, 2935, 3058, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3177, 3178, 3179, 2931, 3130, 3189, 3190, 3201, 3185, 3186, 3187, 3220, 2877, 473: 3260, 475: 3239, 3258, 2755, 479: 3268, 482: 3272, 3276, 485: 3257, 3256, 3295, 492: 3230, 495: 3269, 504: 3275, 3293, 508: 3234, 530: 3264, 564: 3271, 567: 3294, 2753, 570: 3277, 3229, 3231, 3233, 3232, 3261, 3237, 3251, 3242, 3263, 3238, 582: 3270, 3262, 3267, 3273, 3283, 3336, 3284, 3285, 592: 3236, 3314, 595: 3254, 3255, 3309, 3310, 3311, 3312, 3313, 3265, 3291, 3296, 3306, 3307, 3300, 3315, 3316, 3317, 3301, 3319, 3320, 3302, 3318, 3297, 3305, 3303, 3289, 3321, 3322, 3266, 3326, 3278, 3279, 3282, 3325, 3331, 3330, 3332, 3329, 3333, 3328, 3327, 3324, 3274, 3323, 3281, 3280, 3286, 3287, 648: 2756, 661: 3244, 2762, 2763, 2761, 709: 3259, 3335, 3245, 3250, 3235, 3308, 3248, 3246, 3247, 3288, 3299, 3298, 3292, 3290, 3304, 3243, 3253, 3334, 3252, 3249, 2759, 2758, 2757, 3588, 778: 3752, 826: 3774}, - {49: 3775}, - {1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 474: 1192, 1192, 1192, 1192, 1192, 480: 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 489: 1192, 1192, 1192, 493: 1192, 1192, 496: 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 506: 1192, 1192, 509: 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 531: 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 1192, 565: 1192, 1192, 594: 1192}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 2840, 2788, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 1919, 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 2869, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 2874, 2801, 2766, 2783, 2948, 3031, 3020, 2818, 2830, 2941, 2942, 2937, 2895, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 2876, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 2760, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 2880, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 2799, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 2866, 2865, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 2936, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 2824, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 2751, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 2882, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 2752, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3144, 2878, 3145, 3146, 2777, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3159, 3160, 3211, 3210, 3057, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 2918, 2935, 3058, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3177, 3178, 3179, 2931, 3130, 3189, 3190, 3201, 3185, 3186, 3187, 3220, 2877, 473: 3260, 475: 3239, 3258, 2755, 479: 3268, 482: 3272, 3276, 485: 3257, 3256, 3295, 492: 3230, 495: 3269, 504: 3275, 3293, 508: 3234, 530: 3264, 564: 3271, 567: 3294, 2753, 570: 3277, 3229, 3231, 3233, 3232, 3261, 3237, 3251, 3242, 3263, 3238, 582: 3270, 3262, 3267, 3273, 3283, 3336, 3284, 3285, 592: 3236, 3314, 595: 3254, 3255, 3309, 3310, 3311, 3312, 3313, 3265, 3291, 3296, 3306, 3307, 3300, 3315, 3316, 3317, 3301, 3319, 3320, 3302, 3318, 3297, 3305, 3303, 3289, 3321, 3322, 3266, 3326, 3278, 3279, 3282, 3325, 3331, 3330, 3332, 3329, 3333, 3328, 3327, 3324, 3274, 3323, 3281, 3280, 3286, 3287, 648: 2756, 661: 3244, 2762, 2763, 2761, 709: 3259, 3335, 3245, 3250, 3235, 3308, 3248, 3246, 3247, 3288, 3299, 3298, 3292, 3290, 3304, 3243, 3253, 3334, 3252, 3249, 2759, 2758, 2757, 3588, 778: 3752, 826: 3777}, + {50: 3793}, + {1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 477: 1124, 1124, 1124, 1124, 1124, 483: 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 492: 1124, 1124, 1124, 496: 1124, 1124, 499: 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 509: 1124, 1124, 512: 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 534: 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 1124, 568: 1124, 1124, 597: 1124}, + {50: 3795}, + {1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 477: 1204, 1204, 1204, 1204, 1204, 483: 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 492: 1204, 1204, 1204, 496: 1204, 1204, 499: 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 509: 1204, 1204, 512: 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 534: 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 1204, 568: 1204, 1204, 597: 1204}, + {50: 3798}, // 1240 - {49: 3778}, - {1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 474: 1193, 1193, 1193, 1193, 1193, 480: 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 489: 1193, 1193, 1193, 493: 1193, 1193, 496: 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 506: 1193, 1193, 509: 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 531: 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 1193, 565: 1193, 1193, 594: 1193}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 661: 3780, 2762, 2763, 2761, 711: 3781}, - {49: 1279, 499: 1279, 652: 3783}, - {49: 3782}, + {1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 477: 1205, 1205, 1205, 1205, 1205, 483: 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 492: 1205, 1205, 1205, 496: 1205, 1205, 499: 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 509: 1205, 1205, 512: 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 534: 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 1205, 568: 1205, 1205, 597: 1205}, + {1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 477: 1219, 1219, 1219, 1219, 1219, 483: 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 492: 1219, 1219, 1219, 496: 1219, 1219, 499: 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 509: 1219, 1219, 512: 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 534: 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 1219, 568: 1219, 1219, 597: 1219, 653: 1219, 669: 1219, 671: 1219}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 2864, 2812, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 1936, 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 2893, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 2898, 2825, 2789, 2807, 2972, 3055, 3044, 2842, 2854, 2965, 2966, 2961, 2919, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 2900, 2885, 2881, 2973, 2997, 2783, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 2904, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 2823, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 2889, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 2890, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 2960, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 2848, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 2774, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 2906, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 2775, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3170, 2902, 3171, 3172, 2801, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3185, 3186, 3237, 3236, 3081, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 2942, 2959, 3082, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3203, 3204, 3205, 2955, 3156, 3215, 3216, 3227, 3211, 3212, 3213, 3246, 2901, 476: 3286, 478: 3265, 3284, 2778, 482: 3294, 485: 3298, 3302, 488: 3283, 3282, 3321, 495: 3256, 498: 3295, 507: 3301, 3319, 511: 3260, 533: 3290, 567: 3297, 570: 3320, 2776, 573: 3303, 3255, 3257, 3259, 3258, 3287, 3263, 3277, 3268, 3289, 3264, 585: 3296, 3288, 3293, 3299, 3309, 3362, 3310, 3311, 595: 3262, 3340, 598: 3280, 3281, 3335, 3336, 3337, 3338, 3339, 3291, 3317, 3322, 3332, 3333, 3326, 3341, 3342, 3343, 3327, 3345, 3346, 3328, 3344, 3323, 3331, 3329, 3315, 3347, 3348, 3292, 3352, 3304, 3305, 3308, 3351, 3357, 3356, 3358, 3355, 3359, 3354, 3353, 3350, 3300, 3349, 3307, 3306, 3312, 3313, 651: 2779, 664: 3270, 2785, 2786, 2784, 713: 3285, 3361, 3271, 3276, 3261, 3334, 3274, 3272, 3273, 3314, 3325, 3324, 3318, 3316, 3330, 3269, 3279, 3360, 3278, 3275, 2782, 2781, 2780, 3614, 782: 3778, 830: 3800}, + {50: 3801}, + {1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 477: 1206, 1206, 1206, 1206, 1206, 483: 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 492: 1206, 1206, 1206, 496: 1206, 1206, 499: 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 509: 1206, 1206, 512: 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 534: 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 1206, 568: 1206, 1206, 597: 1206}, // 1245 - {1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 474: 1248, 1248, 1248, 1248, 1248, 480: 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 489: 1248, 1248, 1248, 493: 1248, 1248, 496: 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 506: 1248, 1248, 509: 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 531: 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 1248, 565: 1248, 1248, 594: 1248}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 661: 3784, 2762, 2763, 2761}, - {49: 1278, 499: 1278, 652: 3785}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 661: 3786, 2762, 2763, 2761}, - {1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 474: 1277, 1277, 1277, 1277, 1277, 480: 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 489: 1277, 1277, 1277, 493: 1277, 1277, 496: 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 506: 1277, 1277, 509: 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 531: 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 565: 1277, 1277, 594: 1277, 656: 1277, 1277}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 2864, 2812, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 1936, 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 2893, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 2898, 2825, 2789, 2807, 2972, 3055, 3044, 2842, 2854, 2965, 2966, 2961, 2919, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 2900, 2885, 2881, 2973, 2997, 2783, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 2904, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 2823, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 2889, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 2890, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 2960, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 2848, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 2774, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 2906, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 2775, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3170, 2902, 3171, 3172, 2801, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3185, 3186, 3237, 3236, 3081, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 2942, 2959, 3082, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3203, 3204, 3205, 2955, 3156, 3215, 3216, 3227, 3211, 3212, 3213, 3246, 2901, 476: 3286, 478: 3265, 3284, 2778, 482: 3294, 485: 3298, 3302, 488: 3283, 3282, 3321, 495: 3256, 498: 3295, 507: 3301, 3319, 511: 3260, 533: 3290, 567: 3297, 570: 3320, 2776, 573: 3303, 3255, 3257, 3259, 3258, 3287, 3263, 3277, 3268, 3289, 3264, 585: 3296, 3288, 3293, 3299, 3309, 3362, 3310, 3311, 595: 3262, 3340, 598: 3280, 3281, 3335, 3336, 3337, 3338, 3339, 3291, 3317, 3322, 3332, 3333, 3326, 3341, 3342, 3343, 3327, 3345, 3346, 3328, 3344, 3323, 3331, 3329, 3315, 3347, 3348, 3292, 3352, 3304, 3305, 3308, 3351, 3357, 3356, 3358, 3355, 3359, 3354, 3353, 3350, 3300, 3349, 3307, 3306, 3312, 3313, 651: 2779, 664: 3270, 2785, 2786, 2784, 713: 3285, 3361, 3271, 3276, 3261, 3334, 3274, 3272, 3273, 3314, 3325, 3324, 3318, 3316, 3330, 3269, 3279, 3360, 3278, 3275, 2782, 2781, 2780, 3614, 782: 3778, 830: 3803}, + {50: 3804}, + {1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 477: 1207, 1207, 1207, 1207, 1207, 483: 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 492: 1207, 1207, 1207, 496: 1207, 1207, 499: 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 509: 1207, 1207, 512: 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 534: 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 1207, 568: 1207, 1207, 597: 1207}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 664: 3806, 2785, 2786, 2784, 715: 3807}, + {50: 1293, 502: 1293, 655: 3809}, // 1250 - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 661: 3780, 2762, 2763, 2761, 711: 3788}, - {49: 3789}, - {1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 474: 1249, 1249, 1249, 1249, 1249, 480: 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 489: 1249, 1249, 1249, 493: 1249, 1249, 496: 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 506: 1249, 1249, 509: 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 531: 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 1249, 565: 1249, 1249, 594: 1249}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 2840, 2788, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 2869, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 2874, 2801, 2766, 2783, 2948, 3031, 3020, 2818, 2830, 2941, 2942, 2937, 2895, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 2876, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 2760, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 2880, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 2799, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 2866, 2865, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 2936, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 2824, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 2751, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 2882, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 2752, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3144, 2878, 3145, 3146, 2777, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3159, 3160, 3211, 3210, 3057, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 2918, 2935, 3058, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3177, 3178, 3179, 2931, 3130, 3189, 3190, 3201, 3185, 3186, 3187, 3220, 2877, 473: 3260, 475: 3239, 3258, 2755, 479: 3268, 482: 3272, 3276, 485: 3257, 3256, 3295, 492: 3230, 495: 3269, 504: 3275, 3293, 508: 3234, 530: 3264, 564: 3271, 567: 3294, 2753, 570: 3277, 3229, 3231, 3233, 3232, 3261, 3237, 3251, 3242, 3263, 3238, 582: 3270, 3262, 3267, 3273, 3283, 3336, 3284, 3285, 592: 3236, 3314, 595: 3254, 3255, 3309, 3310, 3311, 3312, 3313, 3265, 3291, 3296, 3306, 3307, 3300, 3315, 3316, 3317, 3301, 3319, 3320, 3302, 3318, 3297, 3305, 3303, 3289, 3321, 3322, 3266, 3326, 3278, 3279, 3282, 3325, 3331, 3330, 3332, 3329, 3333, 3328, 3327, 3324, 3274, 3323, 3281, 3280, 3286, 3287, 648: 2756, 661: 3244, 2762, 2763, 2761, 709: 3259, 3335, 3245, 3250, 3235, 3308, 3248, 3246, 3247, 3288, 3299, 3298, 3292, 3290, 3304, 3243, 3253, 3334, 3252, 3249, 2759, 2758, 2757, 3791}, - {9: 3792, 481: 3793, 507: 3345, 509: 3343, 3344, 3342, 3340, 734: 3341, 3339}, + {50: 3808}, + {1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 477: 1262, 1262, 1262, 1262, 1262, 483: 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 492: 1262, 1262, 1262, 496: 1262, 1262, 499: 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 509: 1262, 1262, 512: 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 534: 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 1262, 568: 1262, 1262, 597: 1262}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 664: 3810, 2785, 2786, 2784}, + {50: 1292, 502: 1292, 655: 3811}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 664: 3812, 2785, 2786, 2784}, // 1255 - {51: 3804, 104: 3800, 171: 3806, 178: 3801, 3799, 200: 3803, 505: 3811, 530: 3797, 647: 3810, 680: 3802, 3807, 3808, 685: 3809, 740: 3805, 901: 3798, 998: 3796}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 475: 3490, 530: 3761, 661: 3491, 2762, 2763, 2761, 738: 3760, 807: 3794}, - {49: 3795}, - {1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 474: 1250, 1250, 1250, 1250, 1250, 480: 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 489: 1250, 1250, 1250, 493: 1250, 1250, 496: 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 506: 1250, 1250, 509: 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 531: 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 1250, 565: 1250, 1250, 594: 1250}, - {49: 3847}, + {1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 477: 1291, 1291, 1291, 1291, 1291, 483: 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 492: 1291, 1291, 1291, 496: 1291, 1291, 499: 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 509: 1291, 1291, 512: 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 534: 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 1291, 568: 1291, 1291, 597: 1291, 659: 1291, 1291}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 664: 3806, 2785, 2786, 2784, 715: 3814}, + {50: 3815}, + {1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 477: 1263, 1263, 1263, 1263, 1263, 483: 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 492: 1263, 1263, 1263, 496: 1263, 1263, 499: 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 509: 1263, 1263, 512: 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 534: 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 568: 1263, 1263, 597: 1263}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 2864, 2812, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 2893, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 2898, 2825, 2789, 2807, 2972, 3055, 3044, 2842, 2854, 2965, 2966, 2961, 2919, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 2900, 2885, 2881, 2973, 2997, 2783, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 2904, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 2823, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 2889, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 2890, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 2960, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 2848, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 2774, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 2906, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 2775, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3170, 2902, 3171, 3172, 2801, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3185, 3186, 3237, 3236, 3081, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 2942, 2959, 3082, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3203, 3204, 3205, 2955, 3156, 3215, 3216, 3227, 3211, 3212, 3213, 3246, 2901, 476: 3286, 478: 3265, 3284, 2778, 482: 3294, 485: 3298, 3302, 488: 3283, 3282, 3321, 495: 3256, 498: 3295, 507: 3301, 3319, 511: 3260, 533: 3290, 567: 3297, 570: 3320, 2776, 573: 3303, 3255, 3257, 3259, 3258, 3287, 3263, 3277, 3268, 3289, 3264, 585: 3296, 3288, 3293, 3299, 3309, 3362, 3310, 3311, 595: 3262, 3340, 598: 3280, 3281, 3335, 3336, 3337, 3338, 3339, 3291, 3317, 3322, 3332, 3333, 3326, 3341, 3342, 3343, 3327, 3345, 3346, 3328, 3344, 3323, 3331, 3329, 3315, 3347, 3348, 3292, 3352, 3304, 3305, 3308, 3351, 3357, 3356, 3358, 3355, 3359, 3354, 3353, 3350, 3300, 3349, 3307, 3306, 3312, 3313, 651: 2779, 664: 3270, 2785, 2786, 2784, 713: 3285, 3361, 3271, 3276, 3261, 3334, 3274, 3272, 3273, 3314, 3325, 3324, 3318, 3316, 3330, 3269, 3279, 3360, 3278, 3275, 2782, 2781, 2780, 3817}, // 1260 - {49: 288, 473: 3826, 764: 3827, 789: 3846}, - {16: 288, 49: 288, 473: 3826, 505: 288, 530: 288, 647: 288, 764: 3827, 789: 3831}, - {49: 1071}, - {49: 1070}, - {49: 288, 473: 3826, 764: 3827, 789: 3830}, + {9: 3818, 484: 3819, 510: 3371, 512: 3369, 3370, 3368, 3366, 738: 3367, 3365}, + {52: 3830, 105: 3826, 173: 3832, 180: 3827, 3825, 202: 3829, 508: 3837, 533: 3823, 650: 3836, 684: 3828, 3833, 3834, 689: 3835, 744: 3831, 906: 3824, 1002: 3822}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 478: 3516, 533: 3787, 664: 3517, 2785, 2786, 2784, 742: 3786, 811: 3820}, + {50: 3821}, + {1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 477: 1264, 1264, 1264, 1264, 1264, 483: 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 492: 1264, 1264, 1264, 496: 1264, 1264, 499: 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 509: 1264, 1264, 512: 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 534: 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 568: 1264, 1264, 597: 1264}, // 1265 - {49: 281, 473: 3813, 764: 3814, 904: 3829, 909: 3815}, - {49: 288, 473: 3826, 764: 3827, 789: 3825}, - {49: 352, 683: 3822, 3823, 1091: 3824}, - {49: 352, 683: 3822, 3823, 1091: 3821}, - {49: 1064}, + {50: 3873}, + {50: 298, 476: 3852, 768: 3853, 794: 3872}, + {16: 298, 50: 298, 476: 3852, 508: 298, 533: 298, 650: 298, 768: 3853, 794: 3857}, + {50: 1085}, + {50: 1084}, // 1270 - {49: 1063}, - {49: 281, 473: 3813, 764: 3814, 904: 3812, 909: 3815}, - {49: 1061}, - {16: 326, 49: 326, 473: 326, 505: 326, 530: 326, 647: 326}, - {16: 325, 49: 325, 473: 325, 505: 325, 530: 325, 647: 325}, + {50: 298, 476: 3852, 768: 3853, 794: 3856}, + {50: 291, 476: 3839, 768: 3840, 909: 3855, 914: 3841}, + {50: 298, 476: 3852, 768: 3853, 794: 3851}, + {50: 362, 687: 3848, 3849, 1099: 3850}, + {50: 362, 687: 3848, 3849, 1099: 3847}, // 1275 - {49: 1062}, - {508: 2736, 733: 2735, 741: 3816}, - {280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 49: 280, 51: 280, 472: 280, 476: 280, 280, 280, 280, 484: 280, 488: 280, 492: 280, 581: 280, 590: 280, 280, 642: 280, 280, 280, 280, 740: 280, 743: 280}, - {279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 49: 279, 51: 279, 472: 279, 476: 279, 279, 279, 279, 484: 279, 488: 279, 492: 279, 581: 279, 590: 279, 279, 642: 279, 279, 279, 279, 740: 279, 743: 279}, - {9: 3818, 49: 3817}, + {50: 1078}, + {50: 1077}, + {50: 291, 476: 3839, 768: 3840, 909: 3838, 914: 3841}, + {50: 1075}, + {16: 336, 50: 336, 476: 336, 508: 336, 533: 336, 650: 336}, // 1280 - {289, 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, 16: 289, 49: 289, 51: 289, 106: 289, 289, 110: 289, 472: 289, 476: 289, 289, 289, 289, 484: 289, 488: 289, 492: 289, 505: 289, 529: 289, 289, 289, 581: 289, 590: 289, 289, 642: 289, 289, 289, 289, 647: 289, 740: 289, 743: 289}, - {508: 2736, 733: 2735, 741: 3819}, - {49: 3820}, - {278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 49: 278, 51: 278, 472: 278, 476: 278, 278, 278, 278, 484: 278, 488: 278, 492: 278, 581: 278, 590: 278, 278, 642: 278, 278, 278, 278, 740: 278, 743: 278}, - {49: 1065}, + {16: 335, 50: 335, 476: 335, 508: 335, 533: 335, 650: 335}, + {50: 1076}, + {511: 2759, 737: 2758, 745: 3842}, + {290, 290, 290, 290, 290, 290, 290, 290, 290, 290, 290, 290, 290, 290, 290, 50: 290, 52: 290, 475: 290, 479: 290, 290, 290, 290, 487: 290, 491: 290, 495: 290, 584: 290, 593: 290, 290, 645: 290, 290, 290, 290, 744: 290, 747: 290}, + {289, 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, 289, 50: 289, 52: 289, 475: 289, 479: 289, 289, 289, 289, 487: 289, 491: 289, 495: 289, 584: 289, 593: 289, 289, 645: 289, 289, 289, 289, 744: 289, 747: 289}, // 1285 - {49: 351}, - {49: 350}, - {49: 1066}, - {49: 1067}, - {508: 2736, 733: 2735, 741: 3828}, + {9: 3844, 50: 3843}, + {299, 299, 299, 299, 299, 299, 299, 299, 299, 299, 299, 299, 299, 299, 299, 16: 299, 50: 299, 52: 299, 107: 299, 299, 111: 299, 475: 299, 479: 299, 299, 299, 299, 487: 299, 491: 299, 495: 299, 508: 299, 532: 299, 299, 299, 584: 299, 593: 299, 299, 645: 299, 299, 299, 299, 650: 299, 744: 299, 747: 299}, + {511: 2759, 737: 2758, 745: 3845}, + {50: 3846}, + {288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 50: 288, 52: 288, 475: 288, 479: 288, 288, 288, 288, 487: 288, 491: 288, 495: 288, 584: 288, 593: 288, 288, 645: 288, 288, 288, 288, 744: 288, 747: 288}, // 1290 - {287, 287, 287, 287, 287, 287, 287, 287, 287, 287, 287, 287, 287, 287, 287, 16: 287, 49: 287, 51: 287, 106: 287, 287, 110: 287, 472: 287, 476: 287, 287, 287, 287, 484: 287, 488: 287, 492: 287, 505: 287, 529: 287, 287, 287, 581: 287, 590: 287, 287, 642: 287, 287, 287, 287, 647: 287, 740: 287, 743: 287}, - {49: 3817}, - {49: 1068}, - {49: 1069}, - {16: 3836, 49: 275, 505: 3837, 530: 3833, 647: 3835, 773: 3834, 799: 3832}, + {50: 1079}, + {50: 361}, + {50: 360}, + {50: 1080}, + {50: 1081}, // 1295 - {49: 1072}, - {272, 272, 272, 272, 272, 272, 272, 272, 272, 272, 272, 272, 272, 272, 272, 16: 3836, 49: 272, 472: 272, 476: 272, 272, 272, 272, 484: 272, 488: 272, 492: 272, 505: 3837, 581: 272, 590: 272, 272, 642: 272, 272, 272, 272, 647: 3835, 773: 3844, 1262: 3843}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 475: 3490, 530: 3761, 661: 3491, 2762, 2763, 2761, 738: 3760, 807: 3840}, - {506: 3839}, - {269, 269, 269, 269, 269, 269, 269, 269, 269, 10: 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 50: 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 475: 269, 479: 269, 498: 269, 269, 518: 269, 530: 269}, + {511: 2759, 737: 2758, 745: 3854}, + {297, 297, 297, 297, 297, 297, 297, 297, 297, 297, 297, 297, 297, 297, 297, 16: 297, 50: 297, 52: 297, 107: 297, 297, 111: 297, 475: 297, 479: 297, 297, 297, 297, 487: 297, 491: 297, 495: 297, 508: 297, 532: 297, 297, 297, 584: 297, 593: 297, 297, 645: 297, 297, 297, 297, 650: 297, 744: 297, 747: 297}, + {50: 3843}, + {50: 1082}, + {50: 1083}, // 1300 - {506: 3838}, - {268, 268, 268, 268, 268, 268, 268, 268, 268, 10: 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 50: 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 268, 475: 268, 479: 268, 498: 268, 268, 518: 268, 530: 268}, - {270, 270, 270, 270, 270, 270, 270, 270, 270, 10: 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 50: 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 270, 475: 270, 479: 270, 498: 270, 270, 518: 270, 530: 270}, - {277, 277, 277, 277, 277, 277, 277, 277, 277, 277, 277, 277, 277, 277, 277, 49: 277, 472: 277, 476: 277, 277, 277, 277, 484: 277, 488: 277, 492: 277, 530: 3841, 581: 277, 590: 277, 277, 642: 277, 277, 277, 277, 1261: 3842}, - {276, 276, 276, 276, 276, 276, 276, 276, 276, 276, 276, 276, 276, 276, 276, 49: 276, 472: 276, 476: 276, 276, 276, 276, 484: 276, 488: 276, 492: 276, 581: 276, 590: 276, 276, 642: 276, 276, 276, 276}, + {16: 3862, 50: 285, 508: 3863, 533: 3859, 650: 3861, 779: 3860, 803: 3858}, + {50: 1086}, + {282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 16: 3862, 50: 282, 475: 282, 479: 282, 282, 282, 282, 487: 282, 491: 282, 495: 282, 508: 3863, 584: 282, 593: 282, 282, 645: 282, 282, 282, 282, 650: 3861, 779: 3870, 1270: 3869}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 478: 3516, 533: 3787, 664: 3517, 2785, 2786, 2784, 742: 3786, 811: 3866}, + {509: 3865}, // 1305 - {273, 273, 273, 273, 273, 273, 273, 273, 273, 273, 273, 273, 273, 273, 273, 49: 273, 472: 273, 476: 273, 273, 273, 273, 484: 273, 488: 273, 492: 273, 581: 273, 590: 273, 273, 642: 273, 273, 273, 273}, - {274, 274, 274, 274, 274, 274, 274, 274, 274, 274, 274, 274, 274, 274, 274, 49: 274, 472: 274, 476: 274, 274, 274, 274, 484: 274, 488: 274, 492: 274, 581: 274, 590: 274, 274, 642: 274, 274, 274, 274}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 475: 3490, 530: 3761, 661: 3491, 2762, 2763, 2761, 738: 3760, 807: 3845}, - {271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 271, 49: 271, 472: 271, 476: 271, 271, 271, 271, 484: 271, 488: 271, 492: 271, 581: 271, 590: 271, 271, 642: 271, 271, 271, 271}, - {49: 1073}, + {279, 279, 279, 279, 279, 279, 279, 279, 279, 10: 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 51: 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 478: 279, 482: 279, 501: 279, 279, 521: 279, 533: 279}, + {509: 3864}, + {278, 278, 278, 278, 278, 278, 278, 278, 278, 10: 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 51: 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 278, 478: 278, 482: 278, 501: 278, 278, 521: 278, 533: 278}, + {280, 280, 280, 280, 280, 280, 280, 280, 280, 10: 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 51: 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 280, 478: 280, 482: 280, 501: 280, 280, 521: 280, 533: 280}, + {287, 287, 287, 287, 287, 287, 287, 287, 287, 287, 287, 287, 287, 287, 287, 50: 287, 475: 287, 479: 287, 287, 287, 287, 487: 287, 491: 287, 495: 287, 533: 3867, 584: 287, 593: 287, 287, 645: 287, 287, 287, 287, 1269: 3868}, // 1310 - {1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 474: 1251, 1251, 1251, 1251, 1251, 480: 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 489: 1251, 1251, 1251, 493: 1251, 1251, 496: 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 506: 1251, 1251, 509: 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 531: 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 1251, 565: 1251, 1251, 594: 1251}, - {507: 3345, 509: 3343, 3344, 3342, 3340, 543: 1079, 734: 3341, 3339}, - {543: 3852, 1159: 3851, 1344: 3850}, - {161: 1075, 543: 3852, 545: 3858, 1159: 3857, 1207: 3856}, - {161: 1078, 543: 1078, 545: 1078}, + {286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 50: 286, 475: 286, 479: 286, 286, 286, 286, 487: 286, 491: 286, 495: 286, 584: 286, 593: 286, 286, 645: 286, 286, 286, 286}, + {283, 283, 283, 283, 283, 283, 283, 283, 283, 283, 283, 283, 283, 283, 283, 50: 283, 475: 283, 479: 283, 283, 283, 283, 487: 283, 491: 283, 495: 283, 584: 283, 593: 283, 283, 645: 283, 283, 283, 283}, + {284, 284, 284, 284, 284, 284, 284, 284, 284, 284, 284, 284, 284, 284, 284, 50: 284, 475: 284, 479: 284, 284, 284, 284, 487: 284, 491: 284, 495: 284, 584: 284, 593: 284, 284, 645: 284, 284, 284, 284}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 478: 3516, 533: 3787, 664: 3517, 2785, 2786, 2784, 742: 3786, 811: 3871}, + {281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 50: 281, 475: 281, 479: 281, 281, 281, 281, 487: 281, 491: 281, 495: 281, 584: 281, 593: 281, 281, 645: 281, 281, 281, 281}, // 1315 - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 2840, 2788, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 2869, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 2874, 2801, 2766, 2783, 2948, 3031, 3020, 2818, 2830, 2941, 2942, 2937, 2895, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 2876, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 2760, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 2880, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 2799, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 2866, 2865, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 2936, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 2824, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 2751, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 2882, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 2752, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3144, 2878, 3145, 3146, 2777, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3159, 3160, 3211, 3210, 3057, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 2918, 2935, 3058, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3177, 3178, 3179, 2931, 3130, 3189, 3190, 3201, 3185, 3186, 3187, 3220, 2877, 473: 3260, 475: 3239, 3258, 2755, 479: 3268, 482: 3272, 3276, 485: 3257, 3256, 3295, 492: 3230, 495: 3269, 504: 3275, 3293, 508: 3234, 530: 3264, 564: 3271, 567: 3294, 2753, 570: 3277, 3229, 3231, 3233, 3232, 3261, 3237, 3251, 3242, 3263, 3238, 582: 3270, 3262, 3267, 3273, 3283, 3336, 3284, 3285, 592: 3236, 3314, 595: 3254, 3255, 3309, 3310, 3311, 3312, 3313, 3265, 3291, 3296, 3306, 3307, 3300, 3315, 3316, 3317, 3301, 3319, 3320, 3302, 3318, 3297, 3305, 3303, 3289, 3321, 3322, 3266, 3326, 3278, 3279, 3282, 3325, 3331, 3330, 3332, 3329, 3333, 3328, 3327, 3324, 3274, 3323, 3281, 3280, 3286, 3287, 648: 2756, 661: 3244, 2762, 2763, 2761, 709: 3259, 3335, 3245, 3250, 3235, 3308, 3248, 3246, 3247, 3288, 3299, 3298, 3292, 3290, 3304, 3243, 3253, 3334, 3252, 3249, 2759, 2758, 2757, 3853}, - {507: 3345, 509: 3343, 3344, 3342, 3340, 546: 3854, 734: 3341, 3339}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 2840, 2788, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 2869, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 2874, 2801, 2766, 2783, 2948, 3031, 3020, 2818, 2830, 2941, 2942, 2937, 2895, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 2876, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 2760, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 2880, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 2799, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 2866, 2865, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 2936, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 2824, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 2751, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 2882, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 2752, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3144, 2878, 3145, 3146, 2777, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3159, 3160, 3211, 3210, 3057, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 2918, 2935, 3058, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3177, 3178, 3179, 2931, 3130, 3189, 3190, 3201, 3185, 3186, 3187, 3220, 2877, 473: 3260, 475: 3239, 3258, 2755, 479: 3268, 482: 3272, 3276, 485: 3257, 3256, 3295, 492: 3230, 495: 3269, 504: 3275, 3293, 508: 3234, 530: 3264, 564: 3271, 567: 3294, 2753, 570: 3277, 3229, 3231, 3233, 3232, 3261, 3237, 3251, 3242, 3263, 3238, 582: 3270, 3262, 3267, 3273, 3283, 3336, 3284, 3285, 592: 3236, 3314, 595: 3254, 3255, 3309, 3310, 3311, 3312, 3313, 3265, 3291, 3296, 3306, 3307, 3300, 3315, 3316, 3317, 3301, 3319, 3320, 3302, 3318, 3297, 3305, 3303, 3289, 3321, 3322, 3266, 3326, 3278, 3279, 3282, 3325, 3331, 3330, 3332, 3329, 3333, 3328, 3327, 3324, 3274, 3323, 3281, 3280, 3286, 3287, 648: 2756, 661: 3244, 2762, 2763, 2761, 709: 3259, 3335, 3245, 3250, 3235, 3308, 3248, 3246, 3247, 3288, 3299, 3298, 3292, 3290, 3304, 3243, 3253, 3334, 3252, 3249, 2759, 2758, 2757, 3855}, - {161: 1076, 507: 3345, 509: 3343, 3344, 3342, 3340, 543: 1076, 545: 1076, 734: 3341, 3339}, - {161: 3860}, + {50: 1087}, + {1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 477: 1265, 1265, 1265, 1265, 1265, 483: 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 492: 1265, 1265, 1265, 496: 1265, 1265, 499: 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 509: 1265, 1265, 512: 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 534: 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 568: 1265, 1265, 597: 1265}, + {510: 3371, 512: 3369, 3370, 3368, 3366, 546: 1093, 738: 3367, 3365}, + {546: 3878, 1168: 3877, 1353: 3876}, + {163: 1089, 546: 3878, 548: 3884, 1168: 3883, 1216: 3882}, // 1320 - {161: 1077, 543: 1077, 545: 1077}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 2840, 2788, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 2869, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 2874, 2801, 2766, 2783, 2948, 3031, 3020, 2818, 2830, 2941, 2942, 2937, 2895, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 2876, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 2760, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 2880, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 2799, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 2866, 2865, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 2936, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 2824, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 2751, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 2882, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 2752, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3144, 2878, 3145, 3146, 2777, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3159, 3160, 3211, 3210, 3057, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 2918, 2935, 3058, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3177, 3178, 3179, 2931, 3130, 3189, 3190, 3201, 3185, 3186, 3187, 3220, 2877, 473: 3260, 475: 3239, 3258, 2755, 479: 3268, 482: 3272, 3276, 485: 3257, 3256, 3295, 492: 3230, 495: 3269, 504: 3275, 3293, 508: 3234, 530: 3264, 564: 3271, 567: 3294, 2753, 570: 3277, 3229, 3231, 3233, 3232, 3261, 3237, 3251, 3242, 3263, 3238, 582: 3270, 3262, 3267, 3273, 3283, 3336, 3284, 3285, 592: 3236, 3314, 595: 3254, 3255, 3309, 3310, 3311, 3312, 3313, 3265, 3291, 3296, 3306, 3307, 3300, 3315, 3316, 3317, 3301, 3319, 3320, 3302, 3318, 3297, 3305, 3303, 3289, 3321, 3322, 3266, 3326, 3278, 3279, 3282, 3325, 3331, 3330, 3332, 3329, 3333, 3328, 3327, 3324, 3274, 3323, 3281, 3280, 3286, 3287, 648: 2756, 661: 3244, 2762, 2763, 2761, 709: 3259, 3335, 3245, 3250, 3235, 3308, 3248, 3246, 3247, 3288, 3299, 3298, 3292, 3290, 3304, 3243, 3253, 3334, 3252, 3249, 2759, 2758, 2757, 3859}, - {161: 1074, 507: 3345, 509: 3343, 3344, 3342, 3340, 734: 3341, 3339}, - {1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 474: 1252, 1252, 1252, 1252, 1252, 480: 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 489: 1252, 1252, 1252, 493: 1252, 1252, 496: 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 506: 1252, 1252, 509: 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 531: 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 1252, 565: 1252, 1252, 594: 1252}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 2840, 2788, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 2869, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 2874, 2801, 2766, 2783, 2948, 3031, 3020, 2818, 2830, 2941, 2942, 2937, 2895, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 2876, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 2760, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 2880, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 2799, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 2866, 2865, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 2936, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 2824, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 2751, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 2882, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 2752, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3144, 2878, 3145, 3146, 2777, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3159, 3160, 3211, 3210, 3057, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 2918, 2935, 3058, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3177, 3178, 3179, 2931, 3130, 3189, 3190, 3201, 3185, 3186, 3187, 3220, 2877, 473: 3260, 475: 3239, 3258, 2755, 479: 3268, 482: 3272, 3276, 485: 3257, 3256, 3295, 492: 3230, 495: 3269, 504: 3275, 3293, 508: 3234, 530: 3264, 564: 3271, 567: 3294, 2753, 570: 3277, 3229, 3231, 3233, 3232, 3261, 3237, 3251, 3242, 3263, 3238, 582: 3270, 3262, 3267, 3273, 3283, 3336, 3284, 3285, 592: 3236, 3314, 595: 3254, 3255, 3309, 3310, 3311, 3312, 3313, 3265, 3291, 3296, 3306, 3307, 3300, 3315, 3316, 3317, 3301, 3319, 3320, 3302, 3318, 3297, 3305, 3303, 3289, 3321, 3322, 3266, 3326, 3278, 3279, 3282, 3325, 3331, 3330, 3332, 3329, 3333, 3328, 3327, 3324, 3274, 3323, 3281, 3280, 3286, 3287, 648: 2756, 661: 3244, 2762, 2763, 2761, 709: 3259, 3335, 3245, 3250, 3235, 3308, 3248, 3246, 3247, 3288, 3299, 3298, 3292, 3290, 3304, 3243, 3253, 3334, 3252, 3249, 2759, 2758, 2757, 3862}, + {163: 1092, 546: 1092, 548: 1092}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 2864, 2812, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 2893, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 2898, 2825, 2789, 2807, 2972, 3055, 3044, 2842, 2854, 2965, 2966, 2961, 2919, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 2900, 2885, 2881, 2973, 2997, 2783, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 2904, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 2823, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 2889, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 2890, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 2960, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 2848, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 2774, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 2906, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 2775, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3170, 2902, 3171, 3172, 2801, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3185, 3186, 3237, 3236, 3081, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 2942, 2959, 3082, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3203, 3204, 3205, 2955, 3156, 3215, 3216, 3227, 3211, 3212, 3213, 3246, 2901, 476: 3286, 478: 3265, 3284, 2778, 482: 3294, 485: 3298, 3302, 488: 3283, 3282, 3321, 495: 3256, 498: 3295, 507: 3301, 3319, 511: 3260, 533: 3290, 567: 3297, 570: 3320, 2776, 573: 3303, 3255, 3257, 3259, 3258, 3287, 3263, 3277, 3268, 3289, 3264, 585: 3296, 3288, 3293, 3299, 3309, 3362, 3310, 3311, 595: 3262, 3340, 598: 3280, 3281, 3335, 3336, 3337, 3338, 3339, 3291, 3317, 3322, 3332, 3333, 3326, 3341, 3342, 3343, 3327, 3345, 3346, 3328, 3344, 3323, 3331, 3329, 3315, 3347, 3348, 3292, 3352, 3304, 3305, 3308, 3351, 3357, 3356, 3358, 3355, 3359, 3354, 3353, 3350, 3300, 3349, 3307, 3306, 3312, 3313, 651: 2779, 664: 3270, 2785, 2786, 2784, 713: 3285, 3361, 3271, 3276, 3261, 3334, 3274, 3272, 3273, 3314, 3325, 3324, 3318, 3316, 3330, 3269, 3279, 3360, 3278, 3275, 2782, 2781, 2780, 3879}, + {510: 3371, 512: 3369, 3370, 3368, 3366, 549: 3880, 738: 3367, 3365}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 2864, 2812, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 2893, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 2898, 2825, 2789, 2807, 2972, 3055, 3044, 2842, 2854, 2965, 2966, 2961, 2919, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 2900, 2885, 2881, 2973, 2997, 2783, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 2904, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 2823, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 2889, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 2890, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 2960, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 2848, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 2774, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 2906, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 2775, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3170, 2902, 3171, 3172, 2801, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3185, 3186, 3237, 3236, 3081, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 2942, 2959, 3082, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3203, 3204, 3205, 2955, 3156, 3215, 3216, 3227, 3211, 3212, 3213, 3246, 2901, 476: 3286, 478: 3265, 3284, 2778, 482: 3294, 485: 3298, 3302, 488: 3283, 3282, 3321, 495: 3256, 498: 3295, 507: 3301, 3319, 511: 3260, 533: 3290, 567: 3297, 570: 3320, 2776, 573: 3303, 3255, 3257, 3259, 3258, 3287, 3263, 3277, 3268, 3289, 3264, 585: 3296, 3288, 3293, 3299, 3309, 3362, 3310, 3311, 595: 3262, 3340, 598: 3280, 3281, 3335, 3336, 3337, 3338, 3339, 3291, 3317, 3322, 3332, 3333, 3326, 3341, 3342, 3343, 3327, 3345, 3346, 3328, 3344, 3323, 3331, 3329, 3315, 3347, 3348, 3292, 3352, 3304, 3305, 3308, 3351, 3357, 3356, 3358, 3355, 3359, 3354, 3353, 3350, 3300, 3349, 3307, 3306, 3312, 3313, 651: 2779, 664: 3270, 2785, 2786, 2784, 713: 3285, 3361, 3271, 3276, 3261, 3334, 3274, 3272, 3273, 3314, 3325, 3324, 3318, 3316, 3330, 3269, 3279, 3360, 3278, 3275, 2782, 2781, 2780, 3881}, + {163: 1090, 510: 3371, 512: 3369, 3370, 3368, 3366, 546: 1090, 548: 1090, 738: 3367, 3365}, // 1325 - {478: 3863, 507: 3345, 509: 3343, 3344, 3342, 3340, 734: 3341, 3339}, - {51: 3804, 104: 3800, 171: 3806, 178: 3801, 3799, 200: 3803, 505: 3811, 530: 3797, 647: 3810, 680: 3802, 3807, 3808, 685: 3809, 740: 3805, 901: 3798, 998: 3864}, - {49: 3865}, - {1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 474: 1253, 1253, 1253, 1253, 1253, 480: 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 489: 1253, 1253, 1253, 493: 1253, 1253, 496: 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 506: 1253, 1253, 509: 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 531: 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 1253, 565: 1253, 1253, 594: 1253}, - {1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 474: 1254, 1254, 1254, 1254, 1254, 480: 1254, 1254, 1254, 1254, 3350, 1254, 1254, 1254, 489: 1254, 1254, 1254, 493: 1254, 1254, 496: 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 506: 1254, 1254, 509: 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 531: 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 1254, 565: 1254, 1254, 594: 1254}, + {163: 3886}, + {163: 1091, 546: 1091, 548: 1091}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 2864, 2812, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 2893, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 2898, 2825, 2789, 2807, 2972, 3055, 3044, 2842, 2854, 2965, 2966, 2961, 2919, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 2900, 2885, 2881, 2973, 2997, 2783, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 2904, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 2823, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 2889, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 2890, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 2960, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 2848, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 2774, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 2906, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 2775, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3170, 2902, 3171, 3172, 2801, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3185, 3186, 3237, 3236, 3081, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 2942, 2959, 3082, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3203, 3204, 3205, 2955, 3156, 3215, 3216, 3227, 3211, 3212, 3213, 3246, 2901, 476: 3286, 478: 3265, 3284, 2778, 482: 3294, 485: 3298, 3302, 488: 3283, 3282, 3321, 495: 3256, 498: 3295, 507: 3301, 3319, 511: 3260, 533: 3290, 567: 3297, 570: 3320, 2776, 573: 3303, 3255, 3257, 3259, 3258, 3287, 3263, 3277, 3268, 3289, 3264, 585: 3296, 3288, 3293, 3299, 3309, 3362, 3310, 3311, 595: 3262, 3340, 598: 3280, 3281, 3335, 3336, 3337, 3338, 3339, 3291, 3317, 3322, 3332, 3333, 3326, 3341, 3342, 3343, 3327, 3345, 3346, 3328, 3344, 3323, 3331, 3329, 3315, 3347, 3348, 3292, 3352, 3304, 3305, 3308, 3351, 3357, 3356, 3358, 3355, 3359, 3354, 3353, 3350, 3300, 3349, 3307, 3306, 3312, 3313, 651: 2779, 664: 3270, 2785, 2786, 2784, 713: 3285, 3361, 3271, 3276, 3261, 3334, 3274, 3272, 3273, 3314, 3325, 3324, 3318, 3316, 3330, 3269, 3279, 3360, 3278, 3275, 2782, 2781, 2780, 3885}, + {163: 1088, 510: 3371, 512: 3369, 3370, 3368, 3366, 738: 3367, 3365}, + {1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 477: 1266, 1266, 1266, 1266, 1266, 483: 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 492: 1266, 1266, 1266, 496: 1266, 1266, 499: 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 509: 1266, 1266, 512: 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 534: 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 568: 1266, 1266, 597: 1266}, // 1330 - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 2840, 2788, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 2869, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 2874, 2801, 2766, 2783, 2948, 3031, 3020, 2818, 2830, 2941, 2942, 2937, 2895, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 2876, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 2760, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 2880, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 2799, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 2866, 2865, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 2936, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 2824, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 2751, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 2882, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 2752, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3144, 2878, 3145, 3146, 2777, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3159, 3160, 3211, 3210, 3057, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 2918, 2935, 3058, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3177, 3178, 3179, 2931, 3130, 3189, 3190, 3201, 3185, 3186, 3187, 3220, 2877, 473: 3260, 475: 3239, 3258, 2755, 479: 3268, 482: 3272, 3276, 485: 3257, 3256, 3295, 492: 3230, 495: 3269, 504: 3275, 3293, 508: 3234, 530: 3264, 564: 3271, 567: 3294, 2753, 570: 3277, 3229, 3231, 3233, 3232, 3261, 3237, 3251, 3242, 3263, 3238, 582: 3270, 3262, 3267, 3273, 3283, 3336, 3284, 3285, 592: 3236, 3314, 595: 3254, 3255, 3309, 3310, 3311, 3312, 3313, 3265, 3291, 3296, 3306, 3307, 3300, 3315, 3316, 3317, 3301, 3319, 3320, 3302, 3318, 3297, 3305, 3303, 3289, 3321, 3322, 3266, 3326, 3278, 3279, 3282, 3325, 3331, 3330, 3332, 3329, 3333, 3328, 3327, 3324, 3274, 3323, 3281, 3280, 3286, 3287, 648: 2756, 661: 3244, 2762, 2763, 2761, 709: 3259, 3335, 3245, 3250, 3235, 3308, 3248, 3246, 3247, 3288, 3299, 3298, 3292, 3290, 3304, 3243, 3253, 3334, 3252, 3249, 2759, 2758, 2757, 3868}, - {507: 3345, 509: 3343, 3344, 3342, 3340, 523: 3869, 734: 3341, 3339}, - {1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 474: 1255, 1255, 1255, 1255, 1255, 480: 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 489: 1255, 1255, 1255, 493: 1255, 1255, 496: 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 506: 1255, 1255, 509: 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 531: 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 565: 1255, 1255, 594: 1255}, - {1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 474: 1256, 1256, 1256, 1256, 1256, 480: 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 489: 1256, 1256, 1256, 493: 1256, 1256, 496: 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 506: 1256, 1256, 509: 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 531: 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 565: 1256, 1256, 594: 1256}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 2840, 2788, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 2869, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 2874, 2801, 2766, 2783, 2948, 3031, 3020, 2818, 2830, 2941, 2942, 2937, 2895, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 2876, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 2760, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 2880, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 2799, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 2866, 2865, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 2936, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 2824, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 2751, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 2882, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 2752, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3144, 2878, 3145, 3146, 2777, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3159, 3160, 3211, 3210, 3057, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 2918, 2935, 3058, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3177, 3178, 3179, 2931, 3130, 3189, 3190, 3201, 3185, 3186, 3187, 3220, 2877, 473: 3260, 475: 3239, 3258, 2755, 479: 3268, 482: 3272, 3276, 485: 3257, 3256, 3295, 492: 3230, 495: 3269, 504: 3275, 3293, 508: 3234, 530: 3264, 564: 3271, 567: 3294, 2753, 570: 3277, 3229, 3231, 3233, 3232, 3261, 3237, 3251, 3242, 3263, 3238, 582: 3270, 3262, 3267, 3273, 3283, 3336, 3284, 3285, 592: 3236, 3314, 595: 3254, 3255, 3309, 3310, 3311, 3312, 3313, 3265, 3291, 3296, 3306, 3307, 3300, 3315, 3316, 3317, 3301, 3319, 3320, 3302, 3318, 3297, 3305, 3303, 3289, 3321, 3322, 3266, 3326, 3278, 3279, 3282, 3325, 3331, 3330, 3332, 3329, 3333, 3328, 3327, 3324, 3274, 3323, 3281, 3280, 3286, 3287, 648: 2756, 661: 3244, 2762, 2763, 2761, 709: 3259, 3335, 3245, 3250, 3235, 3308, 3248, 3246, 3247, 3288, 3299, 3298, 3292, 3290, 3304, 3243, 3253, 3334, 3252, 3249, 2759, 2758, 2757, 3588, 778: 3872}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 2864, 2812, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 2893, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 2898, 2825, 2789, 2807, 2972, 3055, 3044, 2842, 2854, 2965, 2966, 2961, 2919, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 2900, 2885, 2881, 2973, 2997, 2783, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 2904, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 2823, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 2889, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 2890, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 2960, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 2848, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 2774, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 2906, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 2775, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3170, 2902, 3171, 3172, 2801, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3185, 3186, 3237, 3236, 3081, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 2942, 2959, 3082, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3203, 3204, 3205, 2955, 3156, 3215, 3216, 3227, 3211, 3212, 3213, 3246, 2901, 476: 3286, 478: 3265, 3284, 2778, 482: 3294, 485: 3298, 3302, 488: 3283, 3282, 3321, 495: 3256, 498: 3295, 507: 3301, 3319, 511: 3260, 533: 3290, 567: 3297, 570: 3320, 2776, 573: 3303, 3255, 3257, 3259, 3258, 3287, 3263, 3277, 3268, 3289, 3264, 585: 3296, 3288, 3293, 3299, 3309, 3362, 3310, 3311, 595: 3262, 3340, 598: 3280, 3281, 3335, 3336, 3337, 3338, 3339, 3291, 3317, 3322, 3332, 3333, 3326, 3341, 3342, 3343, 3327, 3345, 3346, 3328, 3344, 3323, 3331, 3329, 3315, 3347, 3348, 3292, 3352, 3304, 3305, 3308, 3351, 3357, 3356, 3358, 3355, 3359, 3354, 3353, 3350, 3300, 3349, 3307, 3306, 3312, 3313, 651: 2779, 664: 3270, 2785, 2786, 2784, 713: 3285, 3361, 3271, 3276, 3261, 3334, 3274, 3272, 3273, 3314, 3325, 3324, 3318, 3316, 3330, 3269, 3279, 3360, 3278, 3275, 2782, 2781, 2780, 3888}, + {481: 3889, 510: 3371, 512: 3369, 3370, 3368, 3366, 738: 3367, 3365}, + {52: 3830, 105: 3826, 173: 3832, 180: 3827, 3825, 202: 3829, 508: 3837, 533: 3823, 650: 3836, 684: 3828, 3833, 3834, 689: 3835, 744: 3831, 906: 3824, 1002: 3890}, + {50: 3891}, + {1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 477: 1267, 1267, 1267, 1267, 1267, 483: 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 492: 1267, 1267, 1267, 496: 1267, 1267, 499: 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 509: 1267, 1267, 512: 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 534: 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 1267, 568: 1267, 1267, 597: 1267}, // 1335 - {9: 3873}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 2840, 2788, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 2869, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 2874, 2801, 2766, 2783, 2948, 3031, 3020, 2818, 2830, 2941, 2942, 2937, 2895, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 2876, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 2760, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 2880, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 2799, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 2866, 2865, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 2936, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 2824, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 2751, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 2882, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 2752, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3144, 2878, 3145, 3146, 2777, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3159, 3160, 3211, 3210, 3057, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 2918, 2935, 3058, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3177, 3178, 3179, 2931, 3130, 3189, 3190, 3201, 3185, 3186, 3187, 3220, 2877, 473: 3260, 475: 3239, 3258, 2755, 479: 3268, 482: 3272, 3276, 485: 3257, 3256, 3295, 492: 3230, 495: 3269, 504: 3275, 3293, 508: 3234, 530: 3264, 564: 3271, 567: 3294, 2753, 570: 3277, 3229, 3231, 3233, 3232, 3261, 3237, 3251, 3242, 3263, 3238, 582: 3270, 3262, 3267, 3273, 3283, 3336, 3284, 3285, 592: 3236, 3314, 595: 3254, 3255, 3309, 3310, 3311, 3312, 3313, 3265, 3291, 3296, 3306, 3307, 3300, 3315, 3316, 3317, 3301, 3319, 3320, 3302, 3318, 3297, 3305, 3303, 3289, 3321, 3322, 3266, 3326, 3278, 3279, 3282, 3325, 3331, 3330, 3332, 3329, 3333, 3328, 3327, 3324, 3274, 3323, 3281, 3280, 3286, 3287, 648: 2756, 661: 3244, 2762, 2763, 2761, 709: 3259, 3335, 3245, 3250, 3235, 3308, 3248, 3246, 3247, 3288, 3299, 3298, 3292, 3290, 3304, 3243, 3253, 3334, 3252, 3249, 2759, 2758, 2757, 3874}, - {9: 1922, 49: 3875, 507: 3345, 509: 3343, 3344, 3342, 3340, 734: 3341, 3339}, - {1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 474: 1257, 1257, 1257, 1257, 1257, 480: 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 489: 1257, 1257, 1257, 493: 1257, 1257, 496: 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 506: 1257, 1257, 509: 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 531: 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 1257, 565: 1257, 1257, 594: 1257}, - {9: 1923, 49: 3978, 507: 3345, 509: 3343, 3344, 3342, 3340, 734: 3341, 3339}, + {1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 477: 1268, 1268, 1268, 1268, 1268, 483: 1268, 1268, 1268, 1268, 3376, 1268, 1268, 1268, 492: 1268, 1268, 1268, 496: 1268, 1268, 499: 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 509: 1268, 1268, 512: 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 534: 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 1268, 568: 1268, 1268, 597: 1268}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 2864, 2812, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 2893, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 2898, 2825, 2789, 2807, 2972, 3055, 3044, 2842, 2854, 2965, 2966, 2961, 2919, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 2900, 2885, 2881, 2973, 2997, 2783, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 2904, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 2823, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 2889, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 2890, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 2960, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 2848, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 2774, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 2906, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 2775, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3170, 2902, 3171, 3172, 2801, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3185, 3186, 3237, 3236, 3081, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 2942, 2959, 3082, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3203, 3204, 3205, 2955, 3156, 3215, 3216, 3227, 3211, 3212, 3213, 3246, 2901, 476: 3286, 478: 3265, 3284, 2778, 482: 3294, 485: 3298, 3302, 488: 3283, 3282, 3321, 495: 3256, 498: 3295, 507: 3301, 3319, 511: 3260, 533: 3290, 567: 3297, 570: 3320, 2776, 573: 3303, 3255, 3257, 3259, 3258, 3287, 3263, 3277, 3268, 3289, 3264, 585: 3296, 3288, 3293, 3299, 3309, 3362, 3310, 3311, 595: 3262, 3340, 598: 3280, 3281, 3335, 3336, 3337, 3338, 3339, 3291, 3317, 3322, 3332, 3333, 3326, 3341, 3342, 3343, 3327, 3345, 3346, 3328, 3344, 3323, 3331, 3329, 3315, 3347, 3348, 3292, 3352, 3304, 3305, 3308, 3351, 3357, 3356, 3358, 3355, 3359, 3354, 3353, 3350, 3300, 3349, 3307, 3306, 3312, 3313, 651: 2779, 664: 3270, 2785, 2786, 2784, 713: 3285, 3361, 3271, 3276, 3261, 3334, 3274, 3272, 3273, 3314, 3325, 3324, 3318, 3316, 3330, 3269, 3279, 3360, 3278, 3275, 2782, 2781, 2780, 3894}, + {510: 3371, 512: 3369, 3370, 3368, 3366, 526: 3895, 738: 3367, 3365}, + {1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 477: 1269, 1269, 1269, 1269, 1269, 483: 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 492: 1269, 1269, 1269, 496: 1269, 1269, 499: 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 509: 1269, 1269, 512: 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 534: 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 1269, 568: 1269, 1269, 597: 1269}, + {1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 477: 1270, 1270, 1270, 1270, 1270, 483: 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 492: 1270, 1270, 1270, 496: 1270, 1270, 499: 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 509: 1270, 1270, 512: 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 534: 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 1270, 568: 1270, 1270, 597: 1270}, // 1340 - {9: 3975}, - {9: 1260, 49: 1260, 476: 1260, 1260, 480: 814, 484: 1260, 1260, 1260, 1260, 490: 814, 814, 493: 2728, 499: 1260, 501: 2729, 2725, 507: 1260, 509: 1260, 1260, 1260, 1260, 518: 1260, 520: 1260, 544: 1260, 547: 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 565: 1260, 1260, 594: 1260, 767: 3891, 3892}, - {473: 3779, 575: 3896, 912: 3895, 976: 3894}, - {473: 2588, 495: 2586, 569: 2585, 646: 2581, 709: 3888, 748: 3887, 2582, 2583, 2584, 2593, 756: 2591, 3889, 3890}, - {49: 3886, 480: 815, 490: 815, 815}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 2864, 2812, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 2893, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 2898, 2825, 2789, 2807, 2972, 3055, 3044, 2842, 2854, 2965, 2966, 2961, 2919, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 2900, 2885, 2881, 2973, 2997, 2783, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 2904, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 2823, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 2889, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 2890, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 2960, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 2848, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 2774, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 2906, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 2775, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3170, 2902, 3171, 3172, 2801, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3185, 3186, 3237, 3236, 3081, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 2942, 2959, 3082, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3203, 3204, 3205, 2955, 3156, 3215, 3216, 3227, 3211, 3212, 3213, 3246, 2901, 476: 3286, 478: 3265, 3284, 2778, 482: 3294, 485: 3298, 3302, 488: 3283, 3282, 3321, 495: 3256, 498: 3295, 507: 3301, 3319, 511: 3260, 533: 3290, 567: 3297, 570: 3320, 2776, 573: 3303, 3255, 3257, 3259, 3258, 3287, 3263, 3277, 3268, 3289, 3264, 585: 3296, 3288, 3293, 3299, 3309, 3362, 3310, 3311, 595: 3262, 3340, 598: 3280, 3281, 3335, 3336, 3337, 3338, 3339, 3291, 3317, 3322, 3332, 3333, 3326, 3341, 3342, 3343, 3327, 3345, 3346, 3328, 3344, 3323, 3331, 3329, 3315, 3347, 3348, 3292, 3352, 3304, 3305, 3308, 3351, 3357, 3356, 3358, 3355, 3359, 3354, 3353, 3350, 3300, 3349, 3307, 3306, 3312, 3313, 651: 2779, 664: 3270, 2785, 2786, 2784, 713: 3285, 3361, 3271, 3276, 3261, 3334, 3274, 3272, 3273, 3314, 3325, 3324, 3318, 3316, 3330, 3269, 3279, 3360, 3278, 3275, 2782, 2781, 2780, 3614, 782: 3898}, + {9: 3899}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 2864, 2812, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 2893, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 2898, 2825, 2789, 2807, 2972, 3055, 3044, 2842, 2854, 2965, 2966, 2961, 2919, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 2900, 2885, 2881, 2973, 2997, 2783, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 2904, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 2823, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 2889, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 2890, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 2960, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 2848, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 2774, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 2906, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 2775, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3170, 2902, 3171, 3172, 2801, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3185, 3186, 3237, 3236, 3081, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 2942, 2959, 3082, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3203, 3204, 3205, 2955, 3156, 3215, 3216, 3227, 3211, 3212, 3213, 3246, 2901, 476: 3286, 478: 3265, 3284, 2778, 482: 3294, 485: 3298, 3302, 488: 3283, 3282, 3321, 495: 3256, 498: 3295, 507: 3301, 3319, 511: 3260, 533: 3290, 567: 3297, 570: 3320, 2776, 573: 3303, 3255, 3257, 3259, 3258, 3287, 3263, 3277, 3268, 3289, 3264, 585: 3296, 3288, 3293, 3299, 3309, 3362, 3310, 3311, 595: 3262, 3340, 598: 3280, 3281, 3335, 3336, 3337, 3338, 3339, 3291, 3317, 3322, 3332, 3333, 3326, 3341, 3342, 3343, 3327, 3345, 3346, 3328, 3344, 3323, 3331, 3329, 3315, 3347, 3348, 3292, 3352, 3304, 3305, 3308, 3351, 3357, 3356, 3358, 3355, 3359, 3354, 3353, 3350, 3300, 3349, 3307, 3306, 3312, 3313, 651: 2779, 664: 3270, 2785, 2786, 2784, 713: 3285, 3361, 3271, 3276, 3261, 3334, 3274, 3272, 3273, 3314, 3325, 3324, 3318, 3316, 3330, 3269, 3279, 3360, 3278, 3275, 2782, 2781, 2780, 3900}, + {9: 1939, 50: 3901, 510: 3371, 512: 3369, 3370, 3368, 3366, 738: 3367, 3365}, + {1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 477: 1271, 1271, 1271, 1271, 1271, 483: 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 492: 1271, 1271, 1271, 496: 1271, 1271, 499: 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 509: 1271, 1271, 512: 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 534: 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 1271, 568: 1271, 1271, 597: 1271}, // 1345 - {49: 3885}, - {49: 3884}, - {842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 480: 842, 842, 842, 842, 842, 842, 842, 842, 489: 842, 842, 842, 493: 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 506: 842, 842, 509: 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 531: 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 842, 565: 842, 842, 569: 842, 594: 842, 646: 842, 654: 842, 739: 842}, - {843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 480: 843, 843, 843, 843, 843, 843, 843, 843, 489: 843, 843, 843, 493: 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 506: 843, 843, 509: 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 531: 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 843, 565: 843, 843, 569: 843, 594: 843, 646: 843, 654: 843, 739: 843}, - {844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 480: 844, 844, 844, 844, 844, 844, 844, 844, 489: 844, 844, 844, 493: 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 506: 844, 844, 509: 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 531: 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 844, 565: 844, 844, 569: 844, 594: 844, 646: 844, 654: 844, 739: 844}, + {9: 1940, 50: 4004, 510: 3371, 512: 3369, 3370, 3368, 3366, 738: 3367, 3365}, + {9: 4001}, + {9: 1274, 50: 1274, 479: 1274, 1274, 483: 828, 487: 1274, 1274, 1274, 1274, 493: 828, 828, 496: 2751, 502: 1274, 504: 2752, 2748, 510: 1274, 512: 1274, 1274, 1274, 1274, 521: 1274, 523: 1274, 547: 1274, 550: 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 1274, 568: 1274, 1274, 597: 1274, 772: 3917, 3918}, + {476: 3805, 578: 3922, 917: 3921, 981: 3920}, + {476: 2608, 498: 2606, 572: 2605, 649: 2601, 713: 3914, 752: 3913, 2602, 2603, 2604, 2613, 760: 2611, 3915, 3916}, // 1350 - {999, 999, 49: 999, 472: 999, 474: 999, 480: 815, 999, 490: 815, 815}, - {998, 998, 49: 998, 472: 998, 474: 998, 480: 814, 998, 490: 814, 814, 493: 2728, 501: 2729, 2725, 767: 3891, 3892}, - {827, 827, 49: 827, 472: 827, 474: 827, 481: 827}, - {826, 826, 49: 826, 472: 826, 474: 826, 481: 826}, - {820, 820, 49: 820, 472: 820, 474: 820, 481: 820, 493: 2728, 501: 2729, 768: 3893}, + {50: 3912, 483: 829, 493: 829, 829}, + {50: 3911}, + {50: 3910}, + {856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 483: 856, 856, 856, 856, 856, 856, 856, 856, 492: 856, 856, 856, 496: 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 509: 856, 856, 512: 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 534: 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 568: 856, 856, 572: 856, 597: 856, 649: 856, 657: 856, 743: 856}, + {857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 483: 857, 857, 857, 857, 857, 857, 857, 857, 492: 857, 857, 857, 496: 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 509: 857, 857, 512: 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 534: 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 568: 857, 857, 572: 857, 597: 857, 649: 857, 657: 857, 743: 857}, // 1355 - {819, 819, 49: 819, 472: 819, 474: 819, 481: 819}, - {818, 818, 49: 818, 472: 818, 474: 818, 481: 818}, - {1297, 1297, 9: 3908, 49: 1297, 472: 1297, 474: 1297, 480: 1297, 1297, 490: 1297, 1297, 493: 1297, 1297, 496: 1297, 1297, 501: 1297, 2725, 767: 2726, 812: 3907}, - {10, 10, 9: 10, 49: 10, 472: 10, 474: 10, 480: 10, 10, 490: 10, 10, 493: 10, 10, 496: 10, 10, 501: 10, 10}, - {473: 3897, 839: 3898}, + {858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 483: 858, 858, 858, 858, 858, 858, 858, 858, 492: 858, 858, 858, 496: 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 509: 858, 858, 512: 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 534: 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 858, 568: 858, 858, 572: 858, 597: 858, 649: 858, 657: 858, 743: 858}, + {1013, 1013, 50: 1013, 475: 1013, 477: 1013, 483: 829, 1013, 493: 829, 829}, + {1012, 1012, 50: 1012, 475: 1012, 477: 1012, 483: 828, 1012, 493: 828, 828, 496: 2751, 504: 2752, 2748, 772: 3917, 3918}, + {841, 841, 50: 841, 475: 841, 477: 841, 484: 841}, + {840, 840, 50: 840, 475: 840, 477: 840, 484: 840}, // 1360 - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 2840, 2788, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 1337, 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 2869, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 2874, 2801, 2766, 2783, 2948, 3031, 3020, 2818, 2830, 2941, 2942, 2937, 2895, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 2876, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 2760, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 2880, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 2799, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 2866, 2865, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 2936, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 2824, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 2751, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 2882, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 2752, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3144, 2878, 3145, 3146, 2777, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3159, 3160, 3211, 3210, 3057, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 2918, 2935, 3058, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3177, 3178, 3179, 2931, 3130, 3189, 3190, 3201, 3185, 3186, 3187, 3220, 2877, 473: 3260, 475: 3239, 3258, 2755, 479: 3903, 482: 3272, 3276, 485: 3257, 3256, 3295, 492: 3230, 495: 3269, 504: 3275, 3293, 508: 3234, 530: 3264, 564: 3271, 567: 3294, 2753, 570: 3277, 3229, 3231, 3233, 3232, 3261, 3237, 3251, 3242, 3263, 3238, 582: 3270, 3262, 3267, 3273, 3283, 3336, 3284, 3285, 592: 3236, 3314, 595: 3254, 3255, 3309, 3310, 3311, 3312, 3313, 3265, 3291, 3296, 3306, 3307, 3300, 3315, 3316, 3317, 3301, 3319, 3320, 3302, 3318, 3297, 3305, 3303, 3289, 3321, 3322, 3266, 3326, 3278, 3279, 3282, 3325, 3331, 3330, 3332, 3329, 3333, 3328, 3327, 3324, 3274, 3323, 3281, 3280, 3286, 3287, 648: 2756, 661: 3244, 2762, 2763, 2761, 709: 3259, 3335, 3245, 3250, 3235, 3308, 3248, 3246, 3247, 3288, 3299, 3298, 3292, 3290, 3304, 3243, 3253, 3334, 3252, 3249, 2759, 2758, 2757, 3899, 797: 3902, 1334: 3901, 3900}, - {8, 8, 9: 8, 49: 8, 472: 8, 474: 8, 480: 8, 8, 490: 8, 8, 493: 8, 8, 496: 8, 8, 501: 8, 8}, - {1333, 1333, 9: 1333, 49: 1333, 472: 1333, 481: 1333, 493: 1333, 498: 1333, 502: 1333, 507: 3345, 509: 3343, 3344, 3342, 3340, 734: 3341, 3339}, - {49: 3906}, - {9: 3904, 49: 1336}, + {834, 834, 50: 834, 475: 834, 477: 834, 484: 834, 496: 2751, 504: 2752, 773: 3919}, + {833, 833, 50: 833, 475: 833, 477: 833, 484: 833}, + {832, 832, 50: 832, 475: 832, 477: 832, 484: 832}, + {1311, 1311, 9: 3934, 50: 1311, 475: 1311, 477: 1311, 483: 1311, 1311, 493: 1311, 1311, 496: 1311, 1311, 499: 1311, 1311, 504: 1311, 2748, 772: 2749, 817: 3933}, + {10, 10, 9: 10, 50: 10, 475: 10, 477: 10, 483: 10, 10, 493: 10, 10, 496: 10, 10, 499: 10, 10, 504: 10, 10}, // 1365 - {9: 1334, 49: 1334}, - {1332, 1332, 9: 1332, 49: 1332, 472: 1332, 3787, 481: 1332, 493: 1332, 498: 1332, 502: 1332}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 2840, 2788, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 2869, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 2874, 2801, 2766, 2783, 2948, 3031, 3020, 2818, 2830, 2941, 2942, 2937, 2895, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 2876, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 2760, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 2880, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 2799, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 2866, 2865, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 2936, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 2824, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 2751, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 2882, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 2752, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3144, 2878, 3145, 3146, 2777, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3159, 3160, 3211, 3210, 3057, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 2918, 2935, 3058, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3177, 3178, 3179, 2931, 3130, 3189, 3190, 3201, 3185, 3186, 3187, 3220, 2877, 473: 3260, 475: 3239, 3258, 2755, 479: 3903, 482: 3272, 3276, 485: 3257, 3256, 3295, 492: 3230, 495: 3269, 504: 3275, 3293, 508: 3234, 530: 3264, 564: 3271, 567: 3294, 2753, 570: 3277, 3229, 3231, 3233, 3232, 3261, 3237, 3251, 3242, 3263, 3238, 582: 3270, 3262, 3267, 3273, 3283, 3336, 3284, 3285, 592: 3236, 3314, 595: 3254, 3255, 3309, 3310, 3311, 3312, 3313, 3265, 3291, 3296, 3306, 3307, 3300, 3315, 3316, 3317, 3301, 3319, 3320, 3302, 3318, 3297, 3305, 3303, 3289, 3321, 3322, 3266, 3326, 3278, 3279, 3282, 3325, 3331, 3330, 3332, 3329, 3333, 3328, 3327, 3324, 3274, 3323, 3281, 3280, 3286, 3287, 648: 2756, 661: 3244, 2762, 2763, 2761, 709: 3259, 3335, 3245, 3250, 3235, 3308, 3248, 3246, 3247, 3288, 3299, 3298, 3292, 3290, 3304, 3243, 3253, 3334, 3252, 3249, 2759, 2758, 2757, 3899, 797: 3905}, - {9: 1335, 49: 1335}, - {1338, 1338, 9: 1338, 49: 1338, 88: 1338, 472: 1338, 474: 1338, 480: 1338, 1338, 490: 1338, 1338, 493: 1338, 1338, 496: 1338, 1338, 501: 1338, 1338, 507: 1338}, + {476: 3923, 844: 3924}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 2864, 2812, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 1351, 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 2893, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 2898, 2825, 2789, 2807, 2972, 3055, 3044, 2842, 2854, 2965, 2966, 2961, 2919, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 2900, 2885, 2881, 2973, 2997, 2783, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 2904, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 2823, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 2889, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 2890, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 2960, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 2848, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 2774, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 2906, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 2775, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3170, 2902, 3171, 3172, 2801, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3185, 3186, 3237, 3236, 3081, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 2942, 2959, 3082, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3203, 3204, 3205, 2955, 3156, 3215, 3216, 3227, 3211, 3212, 3213, 3246, 2901, 476: 3286, 478: 3265, 3284, 2778, 482: 3929, 485: 3298, 3302, 488: 3283, 3282, 3321, 495: 3256, 498: 3295, 507: 3301, 3319, 511: 3260, 533: 3290, 567: 3297, 570: 3320, 2776, 573: 3303, 3255, 3257, 3259, 3258, 3287, 3263, 3277, 3268, 3289, 3264, 585: 3296, 3288, 3293, 3299, 3309, 3362, 3310, 3311, 595: 3262, 3340, 598: 3280, 3281, 3335, 3336, 3337, 3338, 3339, 3291, 3317, 3322, 3332, 3333, 3326, 3341, 3342, 3343, 3327, 3345, 3346, 3328, 3344, 3323, 3331, 3329, 3315, 3347, 3348, 3292, 3352, 3304, 3305, 3308, 3351, 3357, 3356, 3358, 3355, 3359, 3354, 3353, 3350, 3300, 3349, 3307, 3306, 3312, 3313, 651: 2779, 664: 3270, 2785, 2786, 2784, 713: 3285, 3361, 3271, 3276, 3261, 3334, 3274, 3272, 3273, 3314, 3325, 3324, 3318, 3316, 3330, 3269, 3279, 3360, 3278, 3275, 2782, 2781, 2780, 3925, 801: 3928, 1343: 3927, 3926}, + {8, 8, 9: 8, 50: 8, 475: 8, 477: 8, 483: 8, 8, 493: 8, 8, 496: 8, 8, 499: 8, 8, 504: 8, 8}, + {1347, 1347, 9: 1347, 50: 1347, 475: 1347, 484: 1347, 496: 1347, 501: 1347, 505: 1347, 510: 3371, 512: 3369, 3370, 3368, 3366, 738: 3367, 3365}, + {50: 3932}, // 1370 - {869, 869, 49: 869, 472: 869, 474: 869, 480: 869, 869, 490: 869, 869, 493: 2728, 869, 496: 869, 869, 501: 2729, 768: 2730, 830: 3910}, - {575: 3896, 912: 3909}, - {9, 9, 9: 9, 49: 9, 472: 9, 474: 9, 480: 9, 9, 490: 9, 9, 493: 9, 9, 496: 9, 9, 501: 9, 9}, - {840, 840, 49: 840, 472: 840, 474: 840, 480: 840, 840, 490: 840, 840, 494: 3912, 496: 840, 3913, 888: 3911}, - {846, 846, 49: 846, 472: 846, 474: 846, 480: 846, 846, 490: 846, 846, 496: 3938, 889: 3937}, + {9: 3930, 50: 1350}, + {9: 1348, 50: 1348}, + {1346, 1346, 9: 1346, 50: 1346, 475: 1346, 3813, 484: 1346, 496: 1346, 501: 1346, 505: 1346}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 2864, 2812, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 2893, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 2898, 2825, 2789, 2807, 2972, 3055, 3044, 2842, 2854, 2965, 2966, 2961, 2919, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 2900, 2885, 2881, 2973, 2997, 2783, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 2904, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 2823, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 2889, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 2890, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 2960, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 2848, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 2774, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 2906, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 2775, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3170, 2902, 3171, 3172, 2801, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3185, 3186, 3237, 3236, 3081, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 2942, 2959, 3082, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3203, 3204, 3205, 2955, 3156, 3215, 3216, 3227, 3211, 3212, 3213, 3246, 2901, 476: 3286, 478: 3265, 3284, 2778, 482: 3929, 485: 3298, 3302, 488: 3283, 3282, 3321, 495: 3256, 498: 3295, 507: 3301, 3319, 511: 3260, 533: 3290, 567: 3297, 570: 3320, 2776, 573: 3303, 3255, 3257, 3259, 3258, 3287, 3263, 3277, 3268, 3289, 3264, 585: 3296, 3288, 3293, 3299, 3309, 3362, 3310, 3311, 595: 3262, 3340, 598: 3280, 3281, 3335, 3336, 3337, 3338, 3339, 3291, 3317, 3322, 3332, 3333, 3326, 3341, 3342, 3343, 3327, 3345, 3346, 3328, 3344, 3323, 3331, 3329, 3315, 3347, 3348, 3292, 3352, 3304, 3305, 3308, 3351, 3357, 3356, 3358, 3355, 3359, 3354, 3353, 3350, 3300, 3349, 3307, 3306, 3312, 3313, 651: 2779, 664: 3270, 2785, 2786, 2784, 713: 3285, 3361, 3271, 3276, 3261, 3334, 3274, 3272, 3273, 3314, 3325, 3324, 3318, 3316, 3330, 3269, 3279, 3360, 3278, 3275, 2782, 2781, 2780, 3925, 801: 3931}, + {9: 1349, 50: 1349}, // 1375 - {286: 3918, 654: 3917}, - {544: 3914}, - {286: 3915}, - {213: 3916}, - {832, 832, 49: 832, 472: 832, 474: 832, 480: 832, 832, 490: 832, 832, 496: 832}, + {1352, 1352, 9: 1352, 50: 1352, 89: 1352, 475: 1352, 477: 1352, 483: 1352, 1352, 493: 1352, 1352, 496: 1352, 1352, 499: 1352, 1352, 504: 1352, 1352, 510: 1352}, + {883, 883, 50: 883, 475: 883, 477: 883, 483: 883, 883, 493: 883, 883, 496: 2751, 883, 499: 883, 883, 504: 2752, 773: 2753, 834: 3936}, + {578: 3922, 917: 3935}, + {9, 9, 9: 9, 50: 9, 475: 9, 477: 9, 483: 9, 9, 493: 9, 9, 496: 9, 9, 499: 9, 9, 504: 9, 9}, + {854, 854, 50: 854, 475: 854, 477: 854, 483: 854, 854, 493: 854, 854, 497: 3938, 499: 854, 3939, 892: 3937}, // 1380 - {831, 831, 49: 831, 140: 831, 153: 831, 176: 831, 472: 831, 474: 831, 480: 831, 831, 490: 831, 831, 496: 831, 1084: 3920, 3931}, - {831, 831, 49: 831, 140: 831, 153: 831, 472: 831, 474: 831, 480: 831, 831, 490: 831, 831, 496: 831, 1084: 3920, 3919}, - {838, 838, 49: 838, 140: 3929, 153: 3928, 472: 838, 474: 838, 480: 838, 838, 490: 838, 838, 496: 838}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 661: 3921, 2762, 2763, 2761, 737: 3922, 795: 3923}, - {1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 531: 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 565: 1055, 1055, 569: 1055, 581: 1055, 584: 1055, 590: 1055, 1055, 594: 1055, 642: 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 3926, 1055, 1055, 1055, 658: 1055, 660: 1055, 665: 1055, 669: 1055, 1055, 1055, 1055, 1055, 1055, 679: 1055, 686: 1055, 1055, 689: 1055, 704: 1055}, + {860, 860, 50: 860, 475: 860, 477: 860, 483: 860, 860, 493: 860, 860, 499: 3964, 893: 3963}, + {289: 3944, 657: 3943}, + {547: 3940}, + {289: 3941}, + {215: 3942}, // 1385 - {1053, 1053, 9: 1053, 49: 1053, 140: 1053, 153: 1053, 176: 1053, 472: 1053, 474: 1053, 480: 1053, 1053, 490: 1053, 1053, 496: 1053, 500: 1053, 650: 1053, 670: 1053, 672: 1053}, - {830, 830, 9: 3924, 49: 830, 140: 830, 153: 830, 176: 830, 472: 830, 474: 830, 480: 830, 830, 490: 830, 830, 496: 830}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 661: 3921, 2762, 2763, 2761, 737: 3925}, - {1052, 1052, 9: 1052, 49: 1052, 140: 1052, 153: 1052, 166: 1052, 176: 1052, 472: 1052, 474: 1052, 480: 1052, 1052, 490: 1052, 1052, 496: 1052, 500: 1052, 650: 1052, 1052, 670: 1052, 672: 1052}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 661: 3927, 2762, 2763, 2761}, + {846, 846, 50: 846, 475: 846, 477: 846, 483: 846, 846, 493: 846, 846, 499: 846}, + {845, 845, 50: 845, 143: 845, 155: 845, 178: 845, 475: 845, 477: 845, 483: 845, 845, 493: 845, 845, 499: 845, 1092: 3946, 3957}, + {845, 845, 50: 845, 143: 845, 155: 845, 475: 845, 477: 845, 483: 845, 845, 493: 845, 845, 499: 845, 1092: 3946, 3945}, + {852, 852, 50: 852, 143: 3955, 155: 3954, 475: 852, 477: 852, 483: 852, 852, 493: 852, 852, 499: 852}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 664: 3947, 2785, 2786, 2784, 740: 3948, 786: 3949}, // 1390 - {1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 531: 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 565: 1054, 1054, 569: 1054, 581: 1054, 584: 1054, 590: 1054, 1054, 594: 1054, 642: 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 653: 1054, 1054, 1054, 658: 1054, 660: 1054, 665: 1054, 669: 1054, 1054, 1054, 1054, 1054, 1054, 679: 1054, 686: 1054, 1054, 689: 1054, 704: 1054}, - {835, 835, 49: 835, 472: 835, 474: 835, 480: 835, 835, 490: 835, 835, 496: 835}, - {268: 3930}, - {833, 833, 49: 833, 472: 833, 474: 833, 480: 833, 833, 490: 833, 833, 496: 833}, - {839, 839, 49: 839, 140: 3934, 153: 3932, 176: 3933, 472: 839, 474: 839, 480: 839, 839, 490: 839, 839, 496: 839}, + {1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 534: 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 568: 1069, 1069, 572: 1069, 584: 1069, 587: 1069, 593: 1069, 1069, 597: 1069, 645: 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 3952, 1069, 1069, 1069, 661: 1069, 663: 1069, 668: 1069, 672: 1069, 1069, 1069, 1069, 1069, 1069, 680: 1069, 683: 1069, 690: 1069, 1069, 693: 1069, 708: 1069}, + {1067, 1067, 9: 1067, 50: 1067, 143: 1067, 155: 1067, 178: 1067, 475: 1067, 477: 1067, 483: 1067, 1067, 493: 1067, 1067, 499: 1067, 503: 1067, 653: 1067, 673: 1067, 675: 1067}, + {844, 844, 9: 3950, 50: 844, 143: 844, 155: 844, 178: 844, 475: 844, 477: 844, 483: 844, 844, 493: 844, 844, 499: 844}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 664: 3947, 2785, 2786, 2784, 740: 3951}, + {1066, 1066, 9: 1066, 50: 1066, 143: 1066, 155: 1066, 168: 1066, 178: 1066, 475: 1066, 477: 1066, 483: 1066, 1066, 493: 1066, 1066, 499: 1066, 503: 1066, 653: 1066, 1066, 673: 1066, 675: 1066, 680: 1066}, // 1395 - {837, 837, 49: 837, 472: 837, 474: 837, 480: 837, 837, 490: 837, 837, 496: 837}, - {508: 2736, 733: 3936}, - {268: 3935}, - {834, 834, 49: 834, 472: 834, 474: 834, 480: 834, 834, 490: 834, 834, 496: 834}, - {836, 836, 49: 836, 472: 836, 474: 836, 480: 836, 836, 490: 836, 836, 496: 836}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 664: 3953, 2785, 2786, 2784}, + {1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 534: 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 568: 1068, 1068, 572: 1068, 584: 1068, 587: 1068, 593: 1068, 1068, 597: 1068, 645: 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 656: 1068, 1068, 1068, 661: 1068, 663: 1068, 668: 1068, 672: 1068, 1068, 1068, 1068, 1068, 1068, 680: 1068, 683: 1068, 690: 1068, 1068, 693: 1068, 708: 1068}, + {849, 849, 50: 849, 475: 849, 477: 849, 483: 849, 849, 493: 849, 849, 499: 849}, + {271: 3956}, + {847, 847, 50: 847, 475: 847, 477: 847, 483: 847, 847, 493: 847, 847, 499: 847}, // 1400 - {1000, 1000, 49: 1000, 472: 1000, 474: 1000, 480: 1000, 1000, 490: 1000, 1000}, - {1274: 3939}, - {475: 3940}, - {102, 102, 49: 102, 102: 3944, 111: 3943, 472: 102, 474: 102, 480: 102, 102, 490: 102, 102, 658: 102, 834: 3942, 1048: 3941}, - {89, 89, 49: 89, 472: 89, 474: 89, 480: 89, 89, 490: 89, 89, 658: 3965, 944: 3964}, + {853, 853, 50: 853, 143: 3960, 155: 3958, 178: 3959, 475: 853, 477: 853, 483: 853, 853, 493: 853, 853, 499: 853}, + {851, 851, 50: 851, 475: 851, 477: 851, 483: 851, 851, 493: 851, 851, 499: 851}, + {511: 2759, 737: 3962}, + {271: 3961}, + {848, 848, 50: 848, 475: 848, 477: 848, 483: 848, 848, 493: 848, 848, 499: 848}, // 1405 - {782: 3947, 788: 3949, 793: 3950, 3948, 1047: 3946, 1213: 3945}, - {100, 100, 17: 100, 50: 100, 52: 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 472: 100, 100, 500: 100, 544: 100, 653: 100, 782: 100, 788: 100, 793: 100, 100}, - {99, 99, 17: 99, 50: 99, 52: 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 99, 472: 99, 99, 500: 99, 544: 99, 653: 99, 782: 99, 788: 99, 793: 99, 99}, - {101, 101, 49: 101, 472: 101, 101, 101, 480: 101, 101, 489: 101, 101, 101, 506: 101, 658: 101, 782: 3947, 788: 3949, 793: 3950, 3948, 1047: 3963}, - {97, 97, 49: 97, 472: 97, 97, 97, 480: 97, 97, 489: 97, 97, 97, 506: 97, 658: 97, 782: 97, 788: 97, 793: 97, 97}, + {850, 850, 50: 850, 475: 850, 477: 850, 483: 850, 850, 493: 850, 850, 499: 850}, + {1014, 1014, 50: 1014, 475: 1014, 477: 1014, 483: 1014, 1014, 493: 1014, 1014}, + {1282: 3965}, + {478: 3966}, + {108, 108, 50: 108, 103: 3970, 112: 3969, 475: 108, 477: 108, 483: 108, 108, 493: 108, 108, 661: 108, 839: 3968, 1053: 3967}, // 1410 - {660: 3961}, - {788: 3958}, - {660: 3956}, - {660: 3951}, - {475: 3953, 576: 3954, 580: 3955, 853: 3952}, + {95, 95, 50: 95, 475: 95, 477: 95, 483: 95, 95, 493: 95, 95, 661: 3991, 949: 3990}, + {787: 3973, 793: 3975, 798: 3976, 3974, 1052: 3972, 1222: 3971}, + {106, 106, 17: 106, 51: 106, 53: 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 106, 475: 106, 106, 503: 106, 547: 106, 656: 106, 787: 106, 793: 106, 798: 106, 106}, + {105, 105, 17: 105, 51: 105, 53: 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 105, 475: 105, 105, 503: 105, 547: 105, 656: 105, 787: 105, 793: 105, 798: 105, 105}, + {107, 107, 50: 107, 475: 107, 107, 107, 483: 107, 107, 492: 107, 107, 107, 509: 107, 661: 107, 787: 3973, 793: 3975, 798: 3976, 3974, 1052: 3989}, // 1415 - {93, 93, 49: 93, 472: 93, 93, 93, 480: 93, 93, 489: 93, 93, 93, 506: 93, 658: 93, 782: 93, 788: 93, 793: 93, 93}, - {92, 92, 49: 92, 472: 92, 92, 92, 480: 92, 92, 489: 92, 92, 92, 506: 92, 658: 92, 782: 92, 788: 92, 793: 92, 92}, - {91, 91, 49: 91, 472: 91, 91, 91, 480: 91, 91, 489: 91, 91, 91, 506: 91, 658: 91, 782: 91, 788: 91, 793: 91, 91}, - {90, 90, 49: 90, 472: 90, 90, 90, 480: 90, 90, 489: 90, 90, 90, 506: 90, 658: 90, 782: 90, 788: 90, 793: 90, 90}, - {475: 3953, 576: 3954, 580: 3955, 853: 3957}, + {103, 103, 50: 103, 475: 103, 103, 103, 483: 103, 103, 492: 103, 103, 103, 509: 103, 661: 103, 787: 103, 793: 103, 798: 103, 103}, + {663: 3987}, + {793: 3984}, + {663: 3982}, + {663: 3977}, // 1420 - {94, 94, 49: 94, 472: 94, 94, 94, 480: 94, 94, 489: 94, 94, 94, 506: 94, 658: 94, 782: 94, 788: 94, 793: 94, 94}, - {660: 3959}, - {475: 3953, 576: 3954, 580: 3955, 853: 3960}, - {95, 95, 49: 95, 472: 95, 95, 95, 480: 95, 95, 489: 95, 95, 95, 506: 95, 658: 95, 782: 95, 788: 95, 793: 95, 95}, - {475: 3953, 576: 3954, 580: 3955, 853: 3962}, + {478: 3979, 579: 3980, 583: 3981, 857: 3978}, + {99, 99, 50: 99, 475: 99, 99, 99, 483: 99, 99, 492: 99, 99, 99, 509: 99, 661: 99, 787: 99, 793: 99, 798: 99, 99}, + {98, 98, 50: 98, 475: 98, 98, 98, 483: 98, 98, 492: 98, 98, 98, 509: 98, 661: 98, 787: 98, 793: 98, 798: 98, 98}, + {97, 97, 50: 97, 475: 97, 97, 97, 483: 97, 97, 492: 97, 97, 97, 509: 97, 661: 97, 787: 97, 793: 97, 798: 97, 97}, + {96, 96, 50: 96, 475: 96, 96, 96, 483: 96, 96, 492: 96, 96, 96, 509: 96, 661: 96, 787: 96, 793: 96, 798: 96, 96}, // 1425 - {96, 96, 49: 96, 472: 96, 96, 96, 480: 96, 96, 489: 96, 96, 96, 506: 96, 658: 96, 782: 96, 788: 96, 793: 96, 96}, - {98, 98, 49: 98, 472: 98, 98, 98, 480: 98, 98, 489: 98, 98, 98, 506: 98, 658: 98, 782: 98, 788: 98, 793: 98, 98}, - {845, 845, 49: 845, 472: 845, 474: 845, 480: 845, 845, 490: 845, 845}, - {87, 87, 49: 87, 472: 87, 87, 87, 480: 87, 87, 489: 87, 87, 87, 506: 87, 782: 87, 1307: 3966, 3967}, - {85, 85, 49: 85, 472: 85, 85, 85, 480: 85, 85, 489: 85, 85, 85, 506: 85, 782: 3971, 1245: 3970}, + {478: 3979, 579: 3980, 583: 3981, 857: 3983}, + {100, 100, 50: 100, 475: 100, 100, 100, 483: 100, 100, 492: 100, 100, 100, 509: 100, 661: 100, 787: 100, 793: 100, 798: 100, 100}, + {663: 3985}, + {478: 3979, 579: 3980, 583: 3981, 857: 3986}, + {101, 101, 50: 101, 475: 101, 101, 101, 483: 101, 101, 492: 101, 101, 101, 509: 101, 661: 101, 787: 101, 793: 101, 798: 101, 101}, // 1430 - {660: 3968}, - {475: 3953, 576: 3954, 580: 3955, 853: 3969}, - {86, 86, 49: 86, 472: 86, 86, 86, 480: 86, 86, 489: 86, 86, 86, 506: 86, 782: 86}, - {88, 88, 49: 88, 472: 88, 88, 88, 480: 88, 88, 489: 88, 88, 88, 506: 88}, - {660: 3972}, + {478: 3979, 579: 3980, 583: 3981, 857: 3988}, + {102, 102, 50: 102, 475: 102, 102, 102, 483: 102, 102, 492: 102, 102, 102, 509: 102, 661: 102, 787: 102, 793: 102, 798: 102, 102}, + {104, 104, 50: 104, 475: 104, 104, 104, 483: 104, 104, 492: 104, 104, 104, 509: 104, 661: 104, 787: 104, 793: 104, 798: 104, 104}, + {859, 859, 50: 859, 475: 859, 477: 859, 483: 859, 859, 493: 859, 859}, + {93, 93, 50: 93, 475: 93, 93, 93, 483: 93, 93, 492: 93, 93, 93, 509: 93, 787: 93, 1316: 3992, 3993}, // 1435 - {475: 3953, 576: 3954, 580: 3955, 853: 3973}, - {84, 84, 49: 84, 472: 84, 84, 84, 480: 84, 84, 489: 84, 84, 84, 506: 84}, - {841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 480: 841, 841, 841, 841, 841, 841, 841, 841, 489: 841, 841, 841, 493: 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 506: 841, 841, 509: 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 531: 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 841, 565: 841, 841, 569: 841, 594: 841, 646: 841, 654: 841, 739: 841}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 2840, 2788, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 2869, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 2874, 2801, 2766, 2783, 2948, 3031, 3020, 2818, 2830, 2941, 2942, 2937, 2895, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 2876, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 2760, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 2880, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 2799, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 2866, 2865, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 2936, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 2824, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 2751, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 2882, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 2752, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3144, 2878, 3145, 3146, 2777, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3159, 3160, 3211, 3210, 3057, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 2918, 2935, 3058, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3177, 3178, 3179, 2931, 3130, 3189, 3190, 3201, 3185, 3186, 3187, 3220, 2877, 473: 3260, 475: 3239, 3258, 2755, 479: 3268, 482: 3272, 3276, 485: 3257, 3256, 3295, 492: 3230, 495: 3269, 504: 3275, 3293, 508: 3234, 530: 3264, 564: 3271, 567: 3294, 2753, 570: 3277, 3229, 3231, 3233, 3232, 3261, 3237, 3251, 3242, 3263, 3238, 582: 3270, 3262, 3267, 3273, 3283, 3336, 3284, 3285, 592: 3236, 3314, 595: 3254, 3255, 3309, 3310, 3311, 3312, 3313, 3265, 3291, 3296, 3306, 3307, 3300, 3315, 3316, 3317, 3301, 3319, 3320, 3302, 3318, 3297, 3305, 3303, 3289, 3321, 3322, 3266, 3326, 3278, 3279, 3282, 3325, 3331, 3330, 3332, 3329, 3333, 3328, 3327, 3324, 3274, 3323, 3281, 3280, 3286, 3287, 648: 2756, 661: 3244, 2762, 2763, 2761, 709: 3259, 3335, 3245, 3250, 3235, 3308, 3248, 3246, 3247, 3288, 3299, 3298, 3292, 3290, 3304, 3243, 3253, 3334, 3252, 3249, 2759, 2758, 2757, 3976}, - {9: 1922, 49: 3977, 507: 3345, 509: 3343, 3344, 3342, 3340, 734: 3341, 3339}, + {91, 91, 50: 91, 475: 91, 91, 91, 483: 91, 91, 492: 91, 91, 91, 509: 91, 787: 3997, 1253: 3996}, + {663: 3994}, + {478: 3979, 579: 3980, 583: 3981, 857: 3995}, + {92, 92, 50: 92, 475: 92, 92, 92, 483: 92, 92, 492: 92, 92, 92, 509: 92, 787: 92}, + {94, 94, 50: 94, 475: 94, 94, 94, 483: 94, 94, 492: 94, 94, 94, 509: 94}, // 1440 - {1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 474: 1258, 1258, 1258, 1258, 1258, 480: 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 489: 1258, 1258, 1258, 493: 1258, 1258, 496: 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 506: 1258, 1258, 509: 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 531: 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 1258, 565: 1258, 1258, 594: 1258}, - {1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 474: 1259, 1259, 1259, 1259, 1259, 480: 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 489: 1259, 1259, 1259, 493: 1259, 1259, 496: 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 506: 1259, 1259, 509: 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 531: 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 1259, 565: 1259, 1259, 594: 1259}, - {1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 474: 1261, 1261, 1261, 1261, 1261, 480: 1261, 1261, 1261, 1261, 3350, 1261, 1261, 1261, 489: 1261, 1261, 1261, 493: 1261, 1261, 496: 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 506: 1261, 1261, 509: 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 531: 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 565: 1261, 1261, 594: 1261}, - {1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 474: 1263, 1263, 1263, 1263, 1263, 480: 1263, 1263, 1263, 1263, 3350, 1263, 1263, 1263, 489: 1263, 1263, 1263, 493: 1263, 1263, 496: 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 506: 1263, 1263, 509: 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 531: 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 1263, 565: 1263, 1263, 594: 1263}, - {1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 474: 1264, 1264, 1264, 1264, 1264, 480: 1264, 1264, 1264, 1264, 3350, 1264, 1264, 1264, 489: 1264, 1264, 1264, 493: 1264, 1264, 496: 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 506: 1264, 1264, 509: 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 531: 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 1264, 565: 1264, 1264, 594: 1264}, + {663: 3998}, + {478: 3979, 579: 3980, 583: 3981, 857: 3999}, + {90, 90, 50: 90, 475: 90, 90, 90, 483: 90, 90, 492: 90, 90, 90, 509: 90}, + {855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 483: 855, 855, 855, 855, 855, 855, 855, 855, 492: 855, 855, 855, 496: 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 509: 855, 855, 512: 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 534: 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 568: 855, 855, 572: 855, 597: 855, 649: 855, 657: 855, 743: 855}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 2864, 2812, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 2893, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 2898, 2825, 2789, 2807, 2972, 3055, 3044, 2842, 2854, 2965, 2966, 2961, 2919, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 2900, 2885, 2881, 2973, 2997, 2783, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 2904, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 2823, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 2889, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 2890, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 2960, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 2848, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 2774, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 2906, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 2775, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3170, 2902, 3171, 3172, 2801, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3185, 3186, 3237, 3236, 3081, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 2942, 2959, 3082, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3203, 3204, 3205, 2955, 3156, 3215, 3216, 3227, 3211, 3212, 3213, 3246, 2901, 476: 3286, 478: 3265, 3284, 2778, 482: 3294, 485: 3298, 3302, 488: 3283, 3282, 3321, 495: 3256, 498: 3295, 507: 3301, 3319, 511: 3260, 533: 3290, 567: 3297, 570: 3320, 2776, 573: 3303, 3255, 3257, 3259, 3258, 3287, 3263, 3277, 3268, 3289, 3264, 585: 3296, 3288, 3293, 3299, 3309, 3362, 3310, 3311, 595: 3262, 3340, 598: 3280, 3281, 3335, 3336, 3337, 3338, 3339, 3291, 3317, 3322, 3332, 3333, 3326, 3341, 3342, 3343, 3327, 3345, 3346, 3328, 3344, 3323, 3331, 3329, 3315, 3347, 3348, 3292, 3352, 3304, 3305, 3308, 3351, 3357, 3356, 3358, 3355, 3359, 3354, 3353, 3350, 3300, 3349, 3307, 3306, 3312, 3313, 651: 2779, 664: 3270, 2785, 2786, 2784, 713: 3285, 3361, 3271, 3276, 3261, 3334, 3274, 3272, 3273, 3314, 3325, 3324, 3318, 3316, 3330, 3269, 3279, 3360, 3278, 3275, 2782, 2781, 2780, 4002}, // 1445 - {1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 474: 1265, 1265, 1265, 1265, 1265, 480: 1265, 1265, 1265, 1265, 3350, 1265, 1265, 1265, 489: 1265, 1265, 1265, 493: 1265, 1265, 496: 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 506: 1265, 1265, 509: 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 531: 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 1265, 565: 1265, 1265, 594: 1265}, - {1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 474: 1266, 1266, 1266, 1266, 1266, 480: 1266, 1266, 1266, 1266, 3350, 1266, 1266, 1266, 489: 1266, 1266, 1266, 493: 1266, 1266, 496: 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 506: 1266, 1266, 509: 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 531: 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 1266, 565: 1266, 1266, 594: 1266}, - {475: 3987}, - {475: 3986}, - {1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 474: 1246, 1246, 1246, 1246, 1246, 480: 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 489: 1246, 1246, 1246, 493: 1246, 1246, 496: 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 506: 1246, 1246, 509: 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 531: 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 1246, 565: 1246, 1246, 594: 1246}, + {9: 1939, 50: 4003, 510: 3371, 512: 3369, 3370, 3368, 3366, 738: 3367, 3365}, + {1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 477: 1272, 1272, 1272, 1272, 1272, 483: 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 492: 1272, 1272, 1272, 496: 1272, 1272, 499: 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 509: 1272, 1272, 512: 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 534: 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 1272, 568: 1272, 1272, 597: 1272}, + {1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 477: 1273, 1273, 1273, 1273, 1273, 483: 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 492: 1273, 1273, 1273, 496: 1273, 1273, 499: 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 509: 1273, 1273, 512: 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 534: 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 1273, 568: 1273, 1273, 597: 1273}, + {1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 477: 1275, 1275, 1275, 1275, 1275, 483: 1275, 1275, 1275, 1275, 3376, 1275, 1275, 1275, 492: 1275, 1275, 1275, 496: 1275, 1275, 499: 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 509: 1275, 1275, 512: 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 534: 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 1275, 568: 1275, 1275, 597: 1275}, + {1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 477: 1277, 1277, 1277, 1277, 1277, 483: 1277, 1277, 1277, 1277, 3376, 1277, 1277, 1277, 492: 1277, 1277, 1277, 496: 1277, 1277, 499: 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 509: 1277, 1277, 512: 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 534: 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 1277, 568: 1277, 1277, 597: 1277}, // 1450 - {1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 474: 1247, 1247, 1247, 1247, 1247, 480: 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 489: 1247, 1247, 1247, 493: 1247, 1247, 496: 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 506: 1247, 1247, 509: 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 531: 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 1247, 565: 1247, 1247, 594: 1247}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 661: 3989, 2762, 2763, 2761}, - {1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 3990, 1278, 1278, 1278, 1278, 1278, 480: 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 489: 1278, 1278, 1278, 493: 1278, 1278, 496: 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 506: 1278, 1278, 509: 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 531: 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 565: 1278, 1278, 594: 1278, 652: 3785, 656: 1278, 1278}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 2840, 2788, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 1919, 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 2869, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 2874, 2801, 2766, 2783, 2948, 3031, 3020, 2818, 2830, 2941, 2942, 2937, 2895, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 2876, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 2760, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 2880, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 2799, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 2866, 2865, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 2936, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 2824, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 2751, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 2882, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 2752, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3144, 2878, 3145, 3146, 2777, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3159, 3160, 3211, 3210, 3057, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 2918, 2935, 3058, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3177, 3178, 3179, 2931, 3130, 3189, 3190, 3201, 3185, 3186, 3187, 3220, 2877, 473: 3260, 475: 3239, 3258, 2755, 479: 3268, 482: 3272, 3276, 485: 3257, 3256, 3295, 492: 3230, 495: 3269, 504: 3275, 3293, 508: 3234, 530: 3264, 564: 3271, 567: 3294, 2753, 570: 3277, 3229, 3231, 3233, 3232, 3261, 3237, 3251, 3242, 3263, 3238, 582: 3270, 3262, 3267, 3273, 3283, 3336, 3284, 3285, 592: 3236, 3314, 595: 3254, 3255, 3309, 3310, 3311, 3312, 3313, 3265, 3291, 3296, 3306, 3307, 3300, 3315, 3316, 3317, 3301, 3319, 3320, 3302, 3318, 3297, 3305, 3303, 3289, 3321, 3322, 3266, 3326, 3278, 3279, 3282, 3325, 3331, 3330, 3332, 3329, 3333, 3328, 3327, 3324, 3274, 3323, 3281, 3280, 3286, 3287, 648: 2756, 661: 3244, 2762, 2763, 2761, 709: 3259, 3335, 3245, 3250, 3235, 3308, 3248, 3246, 3247, 3288, 3299, 3298, 3292, 3290, 3304, 3243, 3253, 3334, 3252, 3249, 2759, 2758, 2757, 3588, 778: 3752, 826: 3991}, - {49: 3992}, + {1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 477: 1278, 1278, 1278, 1278, 1278, 483: 1278, 1278, 1278, 1278, 3376, 1278, 1278, 1278, 492: 1278, 1278, 1278, 496: 1278, 1278, 499: 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 509: 1278, 1278, 512: 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 534: 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 568: 1278, 1278, 597: 1278}, + {1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 477: 1279, 1279, 1279, 1279, 1279, 483: 1279, 1279, 1279, 1279, 3376, 1279, 1279, 1279, 492: 1279, 1279, 1279, 496: 1279, 1279, 499: 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 509: 1279, 1279, 512: 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 534: 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 568: 1279, 1279, 597: 1279}, + {1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 477: 1280, 1280, 1280, 1280, 1280, 483: 1280, 1280, 1280, 1280, 3376, 1280, 1280, 1280, 492: 1280, 1280, 1280, 496: 1280, 1280, 499: 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 509: 1280, 1280, 512: 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 534: 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 1280, 568: 1280, 1280, 597: 1280}, + {478: 4013}, + {478: 4012}, // 1455 - {1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 474: 1113, 1113, 1113, 1113, 1113, 480: 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 489: 1113, 1113, 1113, 493: 1113, 1113, 496: 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 506: 1113, 1113, 509: 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 531: 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 1113, 565: 1113, 1113, 594: 1113}, - {104: 3464, 3460, 108: 3457, 3472, 112: 3459, 3456, 3458, 3462, 3463, 3468, 3467, 3466, 3470, 3471, 3465, 3469, 3461, 507: 3345, 509: 3343, 3344, 3342, 3340, 532: 3454, 3451, 3453, 3452, 3448, 3450, 3449, 3446, 3447, 3445, 3455, 734: 3341, 3339, 796: 3444, 815: 3994}, - {485: 3707}, - {1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 474: 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 496: 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 506: 1317, 1317, 509: 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 531: 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 1317, 565: 1317, 1317, 581: 1317, 590: 1317, 1317, 594: 1317, 642: 1317, 1317, 1317, 1317}, - {1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 474: 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 496: 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 506: 1314, 1314, 509: 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 531: 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 1314, 565: 1314, 1314, 581: 1314, 590: 1314, 1314, 594: 1314, 642: 1314, 1314, 1314, 1314}, + {1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 477: 1260, 1260, 1260, 1260, 1260, 483: 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 492: 1260, 1260, 1260, 496: 1260, 1260, 499: 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 509: 1260, 1260, 512: 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 534: 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 1260, 568: 1260, 1260, 597: 1260}, + {1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 477: 1261, 1261, 1261, 1261, 1261, 483: 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 492: 1261, 1261, 1261, 496: 1261, 1261, 499: 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 509: 1261, 1261, 512: 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 534: 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 1261, 568: 1261, 1261, 597: 1261}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 664: 4015, 2785, 2786, 2784}, + {1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 4016, 1292, 1292, 1292, 1292, 1292, 483: 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 492: 1292, 1292, 1292, 496: 1292, 1292, 499: 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 509: 1292, 1292, 512: 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 534: 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 568: 1292, 1292, 597: 1292, 655: 3811, 659: 1292, 1292}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 2864, 2812, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 1936, 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 2893, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 2898, 2825, 2789, 2807, 2972, 3055, 3044, 2842, 2854, 2965, 2966, 2961, 2919, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 2900, 2885, 2881, 2973, 2997, 2783, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 2904, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 2823, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 2889, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 2890, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 2960, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 2848, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 2774, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 2906, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 2775, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3170, 2902, 3171, 3172, 2801, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3185, 3186, 3237, 3236, 3081, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 2942, 2959, 3082, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3203, 3204, 3205, 2955, 3156, 3215, 3216, 3227, 3211, 3212, 3213, 3246, 2901, 476: 3286, 478: 3265, 3284, 2778, 482: 3294, 485: 3298, 3302, 488: 3283, 3282, 3321, 495: 3256, 498: 3295, 507: 3301, 3319, 511: 3260, 533: 3290, 567: 3297, 570: 3320, 2776, 573: 3303, 3255, 3257, 3259, 3258, 3287, 3263, 3277, 3268, 3289, 3264, 585: 3296, 3288, 3293, 3299, 3309, 3362, 3310, 3311, 595: 3262, 3340, 598: 3280, 3281, 3335, 3336, 3337, 3338, 3339, 3291, 3317, 3322, 3332, 3333, 3326, 3341, 3342, 3343, 3327, 3345, 3346, 3328, 3344, 3323, 3331, 3329, 3315, 3347, 3348, 3292, 3352, 3304, 3305, 3308, 3351, 3357, 3356, 3358, 3355, 3359, 3354, 3353, 3350, 3300, 3349, 3307, 3306, 3312, 3313, 651: 2779, 664: 3270, 2785, 2786, 2784, 713: 3285, 3361, 3271, 3276, 3261, 3334, 3274, 3272, 3273, 3314, 3325, 3324, 3318, 3316, 3330, 3269, 3279, 3360, 3278, 3275, 2782, 2781, 2780, 3614, 782: 3778, 830: 4017}, // 1460 - {1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 474: 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 496: 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 506: 1313, 1313, 509: 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 531: 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 1313, 565: 1313, 1313, 581: 1313, 590: 1313, 1313, 594: 1313, 642: 1313, 1313, 1313, 1313}, - {1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 474: 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 496: 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 506: 1311, 1311, 509: 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 531: 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 1311, 565: 1311, 1311, 581: 1311, 590: 1311, 1311, 594: 1311, 642: 1311, 1311, 1311, 1311}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 2840, 2788, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 2869, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 2874, 2801, 2766, 2783, 2948, 3031, 3020, 2818, 2830, 2941, 2942, 2937, 2895, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 2876, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 2760, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 2880, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 2799, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 2866, 2865, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 2936, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 2824, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 2751, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 2882, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 2752, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3144, 2878, 3145, 3146, 2777, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3159, 3160, 3211, 3210, 3057, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 2918, 2935, 3058, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3177, 3178, 3179, 2931, 3130, 3189, 3190, 3201, 3185, 3186, 3187, 3220, 2877, 473: 3260, 475: 3239, 3258, 2755, 479: 3268, 482: 3272, 3276, 485: 3257, 3256, 3295, 492: 3230, 495: 3269, 504: 3275, 3293, 508: 3234, 530: 3264, 564: 3271, 567: 3294, 2753, 570: 3277, 3229, 3231, 3233, 3232, 3261, 3237, 3251, 3242, 3263, 3238, 582: 3270, 3262, 3267, 3273, 3283, 3336, 3284, 3285, 592: 3236, 3314, 595: 3254, 3255, 3309, 3310, 3311, 3312, 3313, 3265, 3291, 3296, 3306, 3307, 3300, 3315, 3316, 3317, 3301, 3319, 3320, 3302, 3318, 3297, 3305, 3303, 3289, 3321, 3322, 3266, 3326, 3278, 3279, 3282, 3325, 3331, 3330, 3332, 3329, 3333, 3328, 3327, 3324, 3274, 3323, 3281, 3280, 3286, 3287, 648: 2756, 651: 4001, 661: 3244, 2762, 2763, 2761, 709: 3259, 3335, 3245, 3250, 3235, 3308, 3248, 3246, 3247, 3288, 3299, 3298, 3292, 3290, 3304, 3243, 3253, 3334, 3252, 3249, 2759, 2758, 2757, 4000}, - {49: 4005, 507: 3345, 509: 3343, 3344, 3342, 3340, 734: 3341, 3339}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 2840, 2788, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 2869, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 2874, 2801, 2766, 2783, 2948, 3031, 3020, 2818, 2830, 2941, 2942, 2937, 2895, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 2876, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 2760, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 2880, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 2799, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 2866, 2865, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 2936, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 2824, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 2751, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 2882, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 2752, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3144, 2878, 3145, 3146, 2777, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3159, 3160, 3211, 3210, 3057, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 2918, 2935, 3058, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3177, 3178, 3179, 2931, 3130, 3189, 3190, 3201, 3185, 3186, 3187, 3220, 2877, 473: 3260, 475: 3239, 3258, 2755, 479: 3268, 482: 3272, 3276, 485: 3257, 3256, 3295, 492: 3230, 495: 3269, 504: 3275, 3293, 508: 3234, 530: 3264, 564: 3271, 567: 3294, 2753, 570: 3277, 3229, 3231, 3233, 3232, 3261, 3237, 3251, 3242, 3263, 3238, 582: 3270, 3262, 3267, 3273, 3283, 3336, 3284, 3285, 592: 3236, 3314, 595: 3254, 3255, 3309, 3310, 3311, 3312, 3313, 3265, 3291, 3296, 3306, 3307, 3300, 3315, 3316, 3317, 3301, 3319, 3320, 3302, 3318, 3297, 3305, 3303, 3289, 3321, 3322, 3266, 3326, 3278, 3279, 3282, 3325, 3331, 3330, 3332, 3329, 3333, 3328, 3327, 3324, 3274, 3323, 3281, 3280, 3286, 3287, 648: 2756, 661: 3244, 2762, 2763, 2761, 709: 3259, 3335, 3245, 3250, 3235, 3308, 3248, 3246, 3247, 3288, 3299, 3298, 3292, 3290, 3304, 3243, 3253, 3334, 3252, 3249, 2759, 2758, 2757, 4002}, + {50: 4018}, + {1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 477: 1127, 1127, 1127, 1127, 1127, 483: 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 492: 1127, 1127, 1127, 496: 1127, 1127, 499: 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 509: 1127, 1127, 512: 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 534: 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 1127, 568: 1127, 1127, 597: 1127}, + {105: 3490, 3486, 109: 3483, 3498, 113: 3485, 3482, 3484, 3488, 3489, 3494, 3493, 3492, 3496, 3497, 3491, 3495, 3487, 510: 3371, 512: 3369, 3370, 3368, 3366, 535: 3480, 3477, 3479, 3478, 3474, 3476, 3475, 3472, 3473, 3471, 3481, 738: 3367, 3365, 800: 3470, 820: 4020}, + {488: 3733}, + {1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 477: 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 499: 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 509: 1331, 1331, 512: 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 534: 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 1331, 568: 1331, 1331, 584: 1331, 593: 1331, 1331, 597: 1331, 645: 1331, 1331, 1331, 1331}, // 1465 - {49: 4003, 507: 3345, 509: 3343, 3344, 3342, 3340, 734: 3341, 3339}, - {959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 474: 959, 959, 959, 959, 959, 480: 959, 959, 959, 959, 959, 959, 959, 959, 489: 959, 959, 959, 493: 959, 959, 496: 959, 959, 959, 959, 959, 959, 959, 959, 506: 959, 959, 509: 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 531: 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 565: 959, 959, 594: 959, 742: 3362, 747: 3554, 765: 4004}, - {1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 474: 1121, 1121, 1121, 1121, 1121, 480: 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 489: 1121, 1121, 1121, 493: 1121, 1121, 496: 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 506: 1121, 1121, 509: 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 531: 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 1121, 565: 1121, 1121, 594: 1121}, - {959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 474: 959, 959, 959, 959, 959, 480: 959, 959, 959, 959, 959, 959, 959, 959, 489: 959, 959, 959, 493: 959, 959, 496: 959, 959, 959, 959, 959, 959, 959, 959, 506: 959, 959, 509: 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 531: 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 565: 959, 959, 594: 959, 742: 3362, 747: 3554, 765: 4006}, - {1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 474: 1122, 1122, 1122, 1122, 1122, 480: 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 489: 1122, 1122, 1122, 493: 1122, 1122, 496: 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 506: 1122, 1122, 509: 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 531: 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 1122, 565: 1122, 1122, 594: 1122}, + {1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 477: 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 499: 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 509: 1328, 1328, 512: 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 534: 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 1328, 568: 1328, 1328, 584: 1328, 593: 1328, 1328, 597: 1328, 645: 1328, 1328, 1328, 1328}, + {1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 477: 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 499: 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 509: 1327, 1327, 512: 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 534: 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 1327, 568: 1327, 1327, 584: 1327, 593: 1327, 1327, 597: 1327, 645: 1327, 1327, 1327, 1327}, + {1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 477: 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 499: 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 509: 1325, 1325, 512: 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 534: 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 1325, 568: 1325, 1325, 584: 1325, 593: 1325, 1325, 597: 1325, 645: 1325, 1325, 1325, 1325}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 2864, 2812, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 2893, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 2898, 2825, 2789, 2807, 2972, 3055, 3044, 2842, 2854, 2965, 2966, 2961, 2919, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 2900, 2885, 2881, 2973, 2997, 2783, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 2904, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 2823, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 2889, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 2890, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 2960, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 2848, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 2774, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 2906, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 2775, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3170, 2902, 3171, 3172, 2801, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3185, 3186, 3237, 3236, 3081, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 2942, 2959, 3082, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3203, 3204, 3205, 2955, 3156, 3215, 3216, 3227, 3211, 3212, 3213, 3246, 2901, 476: 3286, 478: 3265, 3284, 2778, 482: 3294, 485: 3298, 3302, 488: 3283, 3282, 3321, 495: 3256, 498: 3295, 507: 3301, 3319, 511: 3260, 533: 3290, 567: 3297, 570: 3320, 2776, 573: 3303, 3255, 3257, 3259, 3258, 3287, 3263, 3277, 3268, 3289, 3264, 585: 3296, 3288, 3293, 3299, 3309, 3362, 3310, 3311, 595: 3262, 3340, 598: 3280, 3281, 3335, 3336, 3337, 3338, 3339, 3291, 3317, 3322, 3332, 3333, 3326, 3341, 3342, 3343, 3327, 3345, 3346, 3328, 3344, 3323, 3331, 3329, 3315, 3347, 3348, 3292, 3352, 3304, 3305, 3308, 3351, 3357, 3356, 3358, 3355, 3359, 3354, 3353, 3350, 3300, 3349, 3307, 3306, 3312, 3313, 651: 2779, 654: 4027, 664: 3270, 2785, 2786, 2784, 713: 3285, 3361, 3271, 3276, 3261, 3334, 3274, 3272, 3273, 3314, 3325, 3324, 3318, 3316, 3330, 3269, 3279, 3360, 3278, 3275, 2782, 2781, 2780, 4026}, + {50: 4031, 510: 3371, 512: 3369, 3370, 3368, 3366, 738: 3367, 3365}, // 1470 - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 2840, 2788, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 2869, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 2874, 2801, 2766, 2783, 2948, 3031, 3020, 2818, 2830, 2941, 2942, 2937, 2895, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 2876, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 2760, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 2880, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 2799, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 2866, 2865, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 2936, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 2824, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 2751, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 2882, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 2752, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3144, 2878, 3145, 3146, 2777, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3159, 3160, 3211, 3210, 3057, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 2918, 2935, 3058, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3177, 3178, 3179, 2931, 3130, 3189, 3190, 3201, 3185, 3186, 3187, 3220, 2877, 473: 3260, 475: 3239, 3258, 2755, 479: 3268, 482: 3272, 3276, 485: 3257, 3256, 3295, 492: 3230, 495: 3269, 504: 3275, 3293, 508: 3234, 530: 3264, 564: 3271, 567: 3294, 2753, 570: 3277, 3229, 3231, 3233, 3232, 3261, 3237, 3251, 3242, 3263, 3238, 582: 3270, 3262, 3267, 3273, 3283, 3336, 3284, 3285, 592: 3236, 3314, 595: 3254, 3255, 3309, 3310, 3311, 3312, 3313, 3265, 3291, 3296, 3306, 3307, 3300, 3315, 3316, 3317, 3301, 3319, 3320, 3302, 3318, 3297, 3305, 3303, 3289, 3321, 3322, 3266, 3326, 3278, 3279, 3282, 3325, 3331, 3330, 3332, 3329, 3333, 3328, 3327, 3324, 3274, 3323, 3281, 3280, 3286, 3287, 648: 2756, 651: 4009, 661: 3244, 2762, 2763, 2761, 709: 3259, 3335, 3245, 3250, 3235, 3308, 3248, 3246, 3247, 3288, 3299, 3298, 3292, 3290, 3304, 3243, 3253, 3334, 3252, 3249, 2759, 2758, 2757, 4008}, - {9: 4019, 507: 3345, 509: 3343, 3344, 3342, 3340, 734: 3341, 3339}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 2840, 2788, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 2869, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 2874, 2801, 2766, 2783, 2948, 3031, 3020, 2818, 2830, 2941, 2942, 2937, 2895, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 2876, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 2760, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 2880, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 2799, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 2866, 2865, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 2936, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 2824, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 2751, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 2882, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 2752, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3144, 2878, 3145, 3146, 2777, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3159, 3160, 3211, 3210, 3057, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 2918, 2935, 3058, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3177, 3178, 3179, 2931, 3130, 3189, 3190, 3201, 3185, 3186, 3187, 3220, 2877, 473: 3260, 475: 3239, 3258, 2755, 479: 3268, 482: 3272, 3276, 485: 3257, 3256, 3295, 492: 3230, 495: 3269, 504: 3275, 3293, 508: 3234, 530: 3264, 564: 3271, 567: 3294, 2753, 570: 3277, 3229, 3231, 3233, 3232, 3261, 3237, 3251, 3242, 3263, 3238, 582: 3270, 3262, 3267, 3273, 3283, 3336, 3284, 3285, 592: 3236, 3314, 595: 3254, 3255, 3309, 3310, 3311, 3312, 3313, 3265, 3291, 3296, 3306, 3307, 3300, 3315, 3316, 3317, 3301, 3319, 3320, 3302, 3318, 3297, 3305, 3303, 3289, 3321, 3322, 3266, 3326, 3278, 3279, 3282, 3325, 3331, 3330, 3332, 3329, 3333, 3328, 3327, 3324, 3274, 3323, 3281, 3280, 3286, 3287, 648: 2756, 661: 3244, 2762, 2763, 2761, 709: 3259, 3335, 3245, 3250, 3235, 3308, 3248, 3246, 3247, 3288, 3299, 3298, 3292, 3290, 3304, 3243, 3253, 3334, 3252, 3249, 2759, 2758, 2757, 4010}, - {9: 4011, 507: 3345, 509: 3343, 3344, 3342, 3340, 734: 3341, 3339}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 2840, 2788, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 2869, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 2874, 2801, 2766, 2783, 2948, 3031, 3020, 2818, 2830, 2941, 2942, 2937, 2895, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 2876, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 2760, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 2880, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 2799, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 2866, 2865, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 2936, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 2824, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 2751, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 2882, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 2752, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3144, 2878, 3145, 3146, 2777, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3159, 3160, 3211, 3210, 3057, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 2918, 2935, 3058, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3177, 3178, 3179, 2931, 3130, 3189, 3190, 3201, 3185, 3186, 3187, 3220, 2877, 473: 3260, 475: 3239, 3258, 2755, 479: 3268, 482: 3272, 3276, 485: 3257, 3256, 3295, 492: 3230, 495: 3269, 504: 3275, 3293, 508: 3234, 530: 3264, 564: 3271, 567: 3294, 2753, 570: 3277, 3229, 3231, 3233, 3232, 3261, 3237, 3251, 3242, 3263, 3238, 582: 3270, 3262, 3267, 3273, 3283, 3336, 3284, 3285, 592: 3236, 3314, 595: 3254, 3255, 3309, 3310, 3311, 3312, 3313, 3265, 3291, 3296, 3306, 3307, 3300, 3315, 3316, 3317, 3301, 3319, 3320, 3302, 3318, 3297, 3305, 3303, 3289, 3321, 3322, 3266, 3326, 3278, 3279, 3282, 3325, 3331, 3330, 3332, 3329, 3333, 3328, 3327, 3324, 3274, 3323, 3281, 3280, 3286, 3287, 648: 2756, 651: 4013, 661: 3244, 2762, 2763, 2761, 709: 3259, 3335, 3245, 3250, 3235, 3308, 3248, 3246, 3247, 3288, 3299, 3298, 3292, 3290, 3304, 3243, 3253, 3334, 3252, 3249, 2759, 2758, 2757, 4012}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 2864, 2812, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 2893, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 2898, 2825, 2789, 2807, 2972, 3055, 3044, 2842, 2854, 2965, 2966, 2961, 2919, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 2900, 2885, 2881, 2973, 2997, 2783, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 2904, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 2823, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 2889, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 2890, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 2960, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 2848, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 2774, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 2906, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 2775, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3170, 2902, 3171, 3172, 2801, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3185, 3186, 3237, 3236, 3081, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 2942, 2959, 3082, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3203, 3204, 3205, 2955, 3156, 3215, 3216, 3227, 3211, 3212, 3213, 3246, 2901, 476: 3286, 478: 3265, 3284, 2778, 482: 3294, 485: 3298, 3302, 488: 3283, 3282, 3321, 495: 3256, 498: 3295, 507: 3301, 3319, 511: 3260, 533: 3290, 567: 3297, 570: 3320, 2776, 573: 3303, 3255, 3257, 3259, 3258, 3287, 3263, 3277, 3268, 3289, 3264, 585: 3296, 3288, 3293, 3299, 3309, 3362, 3310, 3311, 595: 3262, 3340, 598: 3280, 3281, 3335, 3336, 3337, 3338, 3339, 3291, 3317, 3322, 3332, 3333, 3326, 3341, 3342, 3343, 3327, 3345, 3346, 3328, 3344, 3323, 3331, 3329, 3315, 3347, 3348, 3292, 3352, 3304, 3305, 3308, 3351, 3357, 3356, 3358, 3355, 3359, 3354, 3353, 3350, 3300, 3349, 3307, 3306, 3312, 3313, 651: 2779, 664: 3270, 2785, 2786, 2784, 713: 3285, 3361, 3271, 3276, 3261, 3334, 3274, 3272, 3273, 3314, 3325, 3324, 3318, 3316, 3330, 3269, 3279, 3360, 3278, 3275, 2782, 2781, 2780, 4028}, + {50: 4029, 510: 3371, 512: 3369, 3370, 3368, 3366, 738: 3367, 3365}, + {973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 477: 973, 973, 973, 973, 973, 483: 973, 973, 973, 973, 973, 973, 973, 973, 492: 973, 973, 973, 496: 973, 973, 499: 973, 973, 973, 973, 973, 973, 973, 973, 509: 973, 973, 512: 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 534: 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 568: 973, 973, 597: 973, 746: 3388, 751: 3580, 769: 4030}, + {1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 477: 1135, 1135, 1135, 1135, 1135, 483: 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 492: 1135, 1135, 1135, 496: 1135, 1135, 499: 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 509: 1135, 1135, 512: 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 534: 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 1135, 568: 1135, 1135, 597: 1135}, + {973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 477: 973, 973, 973, 973, 973, 483: 973, 973, 973, 973, 973, 973, 973, 973, 492: 973, 973, 973, 496: 973, 973, 499: 973, 973, 973, 973, 973, 973, 973, 973, 509: 973, 973, 512: 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 534: 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 568: 973, 973, 597: 973, 746: 3388, 751: 3580, 769: 4032}, // 1475 - {49: 4017, 507: 3345, 509: 3343, 3344, 3342, 3340, 734: 3341, 3339}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 2840, 2788, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 2869, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 2874, 2801, 2766, 2783, 2948, 3031, 3020, 2818, 2830, 2941, 2942, 2937, 2895, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 2876, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 2760, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 2880, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 2799, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 2866, 2865, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 2936, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 2824, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 2751, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 2882, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 2752, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3144, 2878, 3145, 3146, 2777, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3159, 3160, 3211, 3210, 3057, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 2918, 2935, 3058, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3177, 3178, 3179, 2931, 3130, 3189, 3190, 3201, 3185, 3186, 3187, 3220, 2877, 473: 3260, 475: 3239, 3258, 2755, 479: 3268, 482: 3272, 3276, 485: 3257, 3256, 3295, 492: 3230, 495: 3269, 504: 3275, 3293, 508: 3234, 530: 3264, 564: 3271, 567: 3294, 2753, 570: 3277, 3229, 3231, 3233, 3232, 3261, 3237, 3251, 3242, 3263, 3238, 582: 3270, 3262, 3267, 3273, 3283, 3336, 3284, 3285, 592: 3236, 3314, 595: 3254, 3255, 3309, 3310, 3311, 3312, 3313, 3265, 3291, 3296, 3306, 3307, 3300, 3315, 3316, 3317, 3301, 3319, 3320, 3302, 3318, 3297, 3305, 3303, 3289, 3321, 3322, 3266, 3326, 3278, 3279, 3282, 3325, 3331, 3330, 3332, 3329, 3333, 3328, 3327, 3324, 3274, 3323, 3281, 3280, 3286, 3287, 648: 2756, 661: 3244, 2762, 2763, 2761, 709: 3259, 3335, 3245, 3250, 3235, 3308, 3248, 3246, 3247, 3288, 3299, 3298, 3292, 3290, 3304, 3243, 3253, 3334, 3252, 3249, 2759, 2758, 2757, 4014}, - {49: 4015, 507: 3345, 509: 3343, 3344, 3342, 3340, 734: 3341, 3339}, - {959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 474: 959, 959, 959, 959, 959, 480: 959, 959, 959, 959, 959, 959, 959, 959, 489: 959, 959, 959, 493: 959, 959, 496: 959, 959, 959, 959, 959, 959, 959, 959, 506: 959, 959, 509: 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 531: 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 565: 959, 959, 594: 959, 742: 3362, 747: 3554, 765: 4016}, - {1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 474: 1117, 1117, 1117, 1117, 1117, 480: 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 489: 1117, 1117, 1117, 493: 1117, 1117, 496: 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 506: 1117, 1117, 509: 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 531: 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 1117, 565: 1117, 1117, 594: 1117}, + {1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 477: 1136, 1136, 1136, 1136, 1136, 483: 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 492: 1136, 1136, 1136, 496: 1136, 1136, 499: 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 509: 1136, 1136, 512: 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 534: 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 1136, 568: 1136, 1136, 597: 1136}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 2864, 2812, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 2893, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 2898, 2825, 2789, 2807, 2972, 3055, 3044, 2842, 2854, 2965, 2966, 2961, 2919, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 2900, 2885, 2881, 2973, 2997, 2783, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 2904, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 2823, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 2889, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 2890, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 2960, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 2848, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 2774, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 2906, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 2775, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3170, 2902, 3171, 3172, 2801, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3185, 3186, 3237, 3236, 3081, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 2942, 2959, 3082, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3203, 3204, 3205, 2955, 3156, 3215, 3216, 3227, 3211, 3212, 3213, 3246, 2901, 476: 3286, 478: 3265, 3284, 2778, 482: 3294, 485: 3298, 3302, 488: 3283, 3282, 3321, 495: 3256, 498: 3295, 507: 3301, 3319, 511: 3260, 533: 3290, 567: 3297, 570: 3320, 2776, 573: 3303, 3255, 3257, 3259, 3258, 3287, 3263, 3277, 3268, 3289, 3264, 585: 3296, 3288, 3293, 3299, 3309, 3362, 3310, 3311, 595: 3262, 3340, 598: 3280, 3281, 3335, 3336, 3337, 3338, 3339, 3291, 3317, 3322, 3332, 3333, 3326, 3341, 3342, 3343, 3327, 3345, 3346, 3328, 3344, 3323, 3331, 3329, 3315, 3347, 3348, 3292, 3352, 3304, 3305, 3308, 3351, 3357, 3356, 3358, 3355, 3359, 3354, 3353, 3350, 3300, 3349, 3307, 3306, 3312, 3313, 651: 2779, 654: 4035, 664: 3270, 2785, 2786, 2784, 713: 3285, 3361, 3271, 3276, 3261, 3334, 3274, 3272, 3273, 3314, 3325, 3324, 3318, 3316, 3330, 3269, 3279, 3360, 3278, 3275, 2782, 2781, 2780, 4034}, + {9: 4045, 510: 3371, 512: 3369, 3370, 3368, 3366, 738: 3367, 3365}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 2864, 2812, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 2893, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 2898, 2825, 2789, 2807, 2972, 3055, 3044, 2842, 2854, 2965, 2966, 2961, 2919, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 2900, 2885, 2881, 2973, 2997, 2783, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 2904, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 2823, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 2889, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 2890, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 2960, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 2848, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 2774, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 2906, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 2775, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3170, 2902, 3171, 3172, 2801, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3185, 3186, 3237, 3236, 3081, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 2942, 2959, 3082, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3203, 3204, 3205, 2955, 3156, 3215, 3216, 3227, 3211, 3212, 3213, 3246, 2901, 476: 3286, 478: 3265, 3284, 2778, 482: 3294, 485: 3298, 3302, 488: 3283, 3282, 3321, 495: 3256, 498: 3295, 507: 3301, 3319, 511: 3260, 533: 3290, 567: 3297, 570: 3320, 2776, 573: 3303, 3255, 3257, 3259, 3258, 3287, 3263, 3277, 3268, 3289, 3264, 585: 3296, 3288, 3293, 3299, 3309, 3362, 3310, 3311, 595: 3262, 3340, 598: 3280, 3281, 3335, 3336, 3337, 3338, 3339, 3291, 3317, 3322, 3332, 3333, 3326, 3341, 3342, 3343, 3327, 3345, 3346, 3328, 3344, 3323, 3331, 3329, 3315, 3347, 3348, 3292, 3352, 3304, 3305, 3308, 3351, 3357, 3356, 3358, 3355, 3359, 3354, 3353, 3350, 3300, 3349, 3307, 3306, 3312, 3313, 651: 2779, 664: 3270, 2785, 2786, 2784, 713: 3285, 3361, 3271, 3276, 3261, 3334, 3274, 3272, 3273, 3314, 3325, 3324, 3318, 3316, 3330, 3269, 3279, 3360, 3278, 3275, 2782, 2781, 2780, 4036}, + {9: 4037, 510: 3371, 512: 3369, 3370, 3368, 3366, 738: 3367, 3365}, // 1480 - {959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 474: 959, 959, 959, 959, 959, 480: 959, 959, 959, 959, 959, 959, 959, 959, 489: 959, 959, 959, 493: 959, 959, 496: 959, 959, 959, 959, 959, 959, 959, 959, 506: 959, 959, 509: 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 531: 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 565: 959, 959, 594: 959, 742: 3362, 747: 3554, 765: 4018}, - {1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 474: 1119, 1119, 1119, 1119, 1119, 480: 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 489: 1119, 1119, 1119, 493: 1119, 1119, 496: 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 506: 1119, 1119, 509: 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 531: 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 1119, 565: 1119, 1119, 594: 1119}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 2840, 2788, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 2869, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 2874, 2801, 2766, 2783, 2948, 3031, 3020, 2818, 2830, 2941, 2942, 2937, 2895, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 2876, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 2760, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 2880, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 2799, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 2866, 2865, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 2936, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 2824, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 2751, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 2882, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 2752, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3144, 2878, 3145, 3146, 2777, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3159, 3160, 3211, 3210, 3057, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 2918, 2935, 3058, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3177, 3178, 3179, 2931, 3130, 3189, 3190, 3201, 3185, 3186, 3187, 3220, 2877, 473: 3260, 475: 3239, 3258, 2755, 479: 3268, 482: 3272, 3276, 485: 3257, 3256, 3295, 492: 3230, 495: 3269, 504: 3275, 3293, 508: 3234, 530: 3264, 564: 3271, 567: 3294, 2753, 570: 3277, 3229, 3231, 3233, 3232, 3261, 3237, 3251, 3242, 3263, 3238, 582: 3270, 3262, 3267, 3273, 3283, 3336, 3284, 3285, 592: 3236, 3314, 595: 3254, 3255, 3309, 3310, 3311, 3312, 3313, 3265, 3291, 3296, 3306, 3307, 3300, 3315, 3316, 3317, 3301, 3319, 3320, 3302, 3318, 3297, 3305, 3303, 3289, 3321, 3322, 3266, 3326, 3278, 3279, 3282, 3325, 3331, 3330, 3332, 3329, 3333, 3328, 3327, 3324, 3274, 3323, 3281, 3280, 3286, 3287, 648: 2756, 651: 4021, 661: 3244, 2762, 2763, 2761, 709: 3259, 3335, 3245, 3250, 3235, 3308, 3248, 3246, 3247, 3288, 3299, 3298, 3292, 3290, 3304, 3243, 3253, 3334, 3252, 3249, 2759, 2758, 2757, 4020}, - {49: 4025, 507: 3345, 509: 3343, 3344, 3342, 3340, 734: 3341, 3339}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 2840, 2788, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 2869, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 2874, 2801, 2766, 2783, 2948, 3031, 3020, 2818, 2830, 2941, 2942, 2937, 2895, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 2876, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 2760, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 2880, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 2799, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 2866, 2865, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 2936, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 2824, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 2751, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 2882, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 2752, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3144, 2878, 3145, 3146, 2777, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3159, 3160, 3211, 3210, 3057, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 2918, 2935, 3058, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3177, 3178, 3179, 2931, 3130, 3189, 3190, 3201, 3185, 3186, 3187, 3220, 2877, 473: 3260, 475: 3239, 3258, 2755, 479: 3268, 482: 3272, 3276, 485: 3257, 3256, 3295, 492: 3230, 495: 3269, 504: 3275, 3293, 508: 3234, 530: 3264, 564: 3271, 567: 3294, 2753, 570: 3277, 3229, 3231, 3233, 3232, 3261, 3237, 3251, 3242, 3263, 3238, 582: 3270, 3262, 3267, 3273, 3283, 3336, 3284, 3285, 592: 3236, 3314, 595: 3254, 3255, 3309, 3310, 3311, 3312, 3313, 3265, 3291, 3296, 3306, 3307, 3300, 3315, 3316, 3317, 3301, 3319, 3320, 3302, 3318, 3297, 3305, 3303, 3289, 3321, 3322, 3266, 3326, 3278, 3279, 3282, 3325, 3331, 3330, 3332, 3329, 3333, 3328, 3327, 3324, 3274, 3323, 3281, 3280, 3286, 3287, 648: 2756, 661: 3244, 2762, 2763, 2761, 709: 3259, 3335, 3245, 3250, 3235, 3308, 3248, 3246, 3247, 3288, 3299, 3298, 3292, 3290, 3304, 3243, 3253, 3334, 3252, 3249, 2759, 2758, 2757, 4022}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 2864, 2812, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 2893, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 2898, 2825, 2789, 2807, 2972, 3055, 3044, 2842, 2854, 2965, 2966, 2961, 2919, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 2900, 2885, 2881, 2973, 2997, 2783, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 2904, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 2823, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 2889, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 2890, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 2960, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 2848, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 2774, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 2906, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 2775, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3170, 2902, 3171, 3172, 2801, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3185, 3186, 3237, 3236, 3081, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 2942, 2959, 3082, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3203, 3204, 3205, 2955, 3156, 3215, 3216, 3227, 3211, 3212, 3213, 3246, 2901, 476: 3286, 478: 3265, 3284, 2778, 482: 3294, 485: 3298, 3302, 488: 3283, 3282, 3321, 495: 3256, 498: 3295, 507: 3301, 3319, 511: 3260, 533: 3290, 567: 3297, 570: 3320, 2776, 573: 3303, 3255, 3257, 3259, 3258, 3287, 3263, 3277, 3268, 3289, 3264, 585: 3296, 3288, 3293, 3299, 3309, 3362, 3310, 3311, 595: 3262, 3340, 598: 3280, 3281, 3335, 3336, 3337, 3338, 3339, 3291, 3317, 3322, 3332, 3333, 3326, 3341, 3342, 3343, 3327, 3345, 3346, 3328, 3344, 3323, 3331, 3329, 3315, 3347, 3348, 3292, 3352, 3304, 3305, 3308, 3351, 3357, 3356, 3358, 3355, 3359, 3354, 3353, 3350, 3300, 3349, 3307, 3306, 3312, 3313, 651: 2779, 654: 4039, 664: 3270, 2785, 2786, 2784, 713: 3285, 3361, 3271, 3276, 3261, 3334, 3274, 3272, 3273, 3314, 3325, 3324, 3318, 3316, 3330, 3269, 3279, 3360, 3278, 3275, 2782, 2781, 2780, 4038}, + {50: 4043, 510: 3371, 512: 3369, 3370, 3368, 3366, 738: 3367, 3365}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 2864, 2812, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 2893, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 2898, 2825, 2789, 2807, 2972, 3055, 3044, 2842, 2854, 2965, 2966, 2961, 2919, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 2900, 2885, 2881, 2973, 2997, 2783, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 2904, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 2823, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 2889, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 2890, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 2960, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 2848, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 2774, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 2906, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 2775, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3170, 2902, 3171, 3172, 2801, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3185, 3186, 3237, 3236, 3081, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 2942, 2959, 3082, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3203, 3204, 3205, 2955, 3156, 3215, 3216, 3227, 3211, 3212, 3213, 3246, 2901, 476: 3286, 478: 3265, 3284, 2778, 482: 3294, 485: 3298, 3302, 488: 3283, 3282, 3321, 495: 3256, 498: 3295, 507: 3301, 3319, 511: 3260, 533: 3290, 567: 3297, 570: 3320, 2776, 573: 3303, 3255, 3257, 3259, 3258, 3287, 3263, 3277, 3268, 3289, 3264, 585: 3296, 3288, 3293, 3299, 3309, 3362, 3310, 3311, 595: 3262, 3340, 598: 3280, 3281, 3335, 3336, 3337, 3338, 3339, 3291, 3317, 3322, 3332, 3333, 3326, 3341, 3342, 3343, 3327, 3345, 3346, 3328, 3344, 3323, 3331, 3329, 3315, 3347, 3348, 3292, 3352, 3304, 3305, 3308, 3351, 3357, 3356, 3358, 3355, 3359, 3354, 3353, 3350, 3300, 3349, 3307, 3306, 3312, 3313, 651: 2779, 664: 3270, 2785, 2786, 2784, 713: 3285, 3361, 3271, 3276, 3261, 3334, 3274, 3272, 3273, 3314, 3325, 3324, 3318, 3316, 3330, 3269, 3279, 3360, 3278, 3275, 2782, 2781, 2780, 4040}, + {50: 4041, 510: 3371, 512: 3369, 3370, 3368, 3366, 738: 3367, 3365}, + {973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 477: 973, 973, 973, 973, 973, 483: 973, 973, 973, 973, 973, 973, 973, 973, 492: 973, 973, 973, 496: 973, 973, 499: 973, 973, 973, 973, 973, 973, 973, 973, 509: 973, 973, 512: 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 534: 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 568: 973, 973, 597: 973, 746: 3388, 751: 3580, 769: 4042}, // 1485 - {49: 4023, 507: 3345, 509: 3343, 3344, 3342, 3340, 734: 3341, 3339}, - {959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 474: 959, 959, 959, 959, 959, 480: 959, 959, 959, 959, 959, 959, 959, 959, 489: 959, 959, 959, 493: 959, 959, 496: 959, 959, 959, 959, 959, 959, 959, 959, 506: 959, 959, 509: 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 531: 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 565: 959, 959, 594: 959, 742: 3362, 747: 3554, 765: 4024}, - {1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 474: 1118, 1118, 1118, 1118, 1118, 480: 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 489: 1118, 1118, 1118, 493: 1118, 1118, 496: 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 506: 1118, 1118, 509: 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 531: 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 1118, 565: 1118, 1118, 594: 1118}, - {959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 474: 959, 959, 959, 959, 959, 480: 959, 959, 959, 959, 959, 959, 959, 959, 489: 959, 959, 959, 493: 959, 959, 496: 959, 959, 959, 959, 959, 959, 959, 959, 506: 959, 959, 509: 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 531: 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 565: 959, 959, 594: 959, 742: 3362, 747: 3554, 765: 4026}, - {1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 474: 1120, 1120, 1120, 1120, 1120, 480: 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 489: 1120, 1120, 1120, 493: 1120, 1120, 496: 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 506: 1120, 1120, 509: 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 531: 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 1120, 565: 1120, 1120, 594: 1120}, + {1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 477: 1131, 1131, 1131, 1131, 1131, 483: 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 492: 1131, 1131, 1131, 496: 1131, 1131, 499: 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 509: 1131, 1131, 512: 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 534: 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 1131, 568: 1131, 1131, 597: 1131}, + {973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 477: 973, 973, 973, 973, 973, 483: 973, 973, 973, 973, 973, 973, 973, 973, 492: 973, 973, 973, 496: 973, 973, 499: 973, 973, 973, 973, 973, 973, 973, 973, 509: 973, 973, 512: 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 534: 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 568: 973, 973, 597: 973, 746: 3388, 751: 3580, 769: 4044}, + {1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 477: 1133, 1133, 1133, 1133, 1133, 483: 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 492: 1133, 1133, 1133, 496: 1133, 1133, 499: 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 509: 1133, 1133, 512: 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 534: 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 1133, 568: 1133, 1133, 597: 1133}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 2864, 2812, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 2893, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 2898, 2825, 2789, 2807, 2972, 3055, 3044, 2842, 2854, 2965, 2966, 2961, 2919, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 2900, 2885, 2881, 2973, 2997, 2783, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 2904, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 2823, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 2889, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 2890, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 2960, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 2848, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 2774, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 2906, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 2775, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3170, 2902, 3171, 3172, 2801, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3185, 3186, 3237, 3236, 3081, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 2942, 2959, 3082, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3203, 3204, 3205, 2955, 3156, 3215, 3216, 3227, 3211, 3212, 3213, 3246, 2901, 476: 3286, 478: 3265, 3284, 2778, 482: 3294, 485: 3298, 3302, 488: 3283, 3282, 3321, 495: 3256, 498: 3295, 507: 3301, 3319, 511: 3260, 533: 3290, 567: 3297, 570: 3320, 2776, 573: 3303, 3255, 3257, 3259, 3258, 3287, 3263, 3277, 3268, 3289, 3264, 585: 3296, 3288, 3293, 3299, 3309, 3362, 3310, 3311, 595: 3262, 3340, 598: 3280, 3281, 3335, 3336, 3337, 3338, 3339, 3291, 3317, 3322, 3332, 3333, 3326, 3341, 3342, 3343, 3327, 3345, 3346, 3328, 3344, 3323, 3331, 3329, 3315, 3347, 3348, 3292, 3352, 3304, 3305, 3308, 3351, 3357, 3356, 3358, 3355, 3359, 3354, 3353, 3350, 3300, 3349, 3307, 3306, 3312, 3313, 651: 2779, 654: 4047, 664: 3270, 2785, 2786, 2784, 713: 3285, 3361, 3271, 3276, 3261, 3334, 3274, 3272, 3273, 3314, 3325, 3324, 3318, 3316, 3330, 3269, 3279, 3360, 3278, 3275, 2782, 2781, 2780, 4046}, + {50: 4051, 510: 3371, 512: 3369, 3370, 3368, 3366, 738: 3367, 3365}, // 1490 - {104: 3464, 3460, 108: 3457, 3472, 112: 3459, 3456, 3458, 3462, 3463, 3468, 3467, 3466, 3470, 3471, 3465, 3469, 3461, 796: 4028}, - {9: 4029}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 2840, 2788, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 2869, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 2874, 2801, 2766, 2783, 2948, 3031, 3020, 2818, 2830, 2941, 2942, 2937, 2895, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 2876, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 2760, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 2880, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 2799, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 2866, 2865, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 2936, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 2824, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 2751, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 2882, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 2752, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3144, 2878, 3145, 3146, 2777, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3159, 3160, 3211, 3210, 3057, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 2918, 2935, 3058, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3177, 3178, 3179, 2931, 3130, 3189, 3190, 3201, 3185, 3186, 3187, 3220, 2877, 473: 3260, 475: 3239, 3258, 2755, 479: 3268, 482: 3272, 3276, 485: 3257, 3256, 3295, 492: 3230, 495: 3269, 504: 3275, 3293, 508: 3234, 530: 3264, 564: 3271, 567: 3294, 2753, 570: 3277, 3229, 3231, 3233, 3232, 3261, 3237, 3251, 3242, 3263, 3238, 582: 3270, 3262, 3267, 3273, 3283, 3336, 3284, 3285, 592: 3236, 3314, 595: 3254, 3255, 3309, 3310, 3311, 3312, 3313, 3265, 3291, 3296, 3306, 3307, 3300, 3315, 3316, 3317, 3301, 3319, 3320, 3302, 3318, 3297, 3305, 3303, 3289, 3321, 3322, 3266, 3326, 3278, 3279, 3282, 3325, 3331, 3330, 3332, 3329, 3333, 3328, 3327, 3324, 3274, 3323, 3281, 3280, 3286, 3287, 648: 2756, 661: 3244, 2762, 2763, 2761, 709: 3259, 3335, 3245, 3250, 3235, 3308, 3248, 3246, 3247, 3288, 3299, 3298, 3292, 3290, 3304, 3243, 3253, 3334, 3252, 3249, 2759, 2758, 2757, 4030}, - {9: 4031, 507: 3345, 509: 3343, 3344, 3342, 3340, 734: 3341, 3339}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 2840, 2788, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 2869, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 2874, 2801, 2766, 2783, 2948, 3031, 3020, 2818, 2830, 2941, 2942, 2937, 2895, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 2876, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 2760, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 2880, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 2799, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 2866, 2865, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 2936, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 2824, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 2751, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 2882, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 2752, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3144, 2878, 3145, 3146, 2777, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3159, 3160, 3211, 3210, 3057, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 2918, 2935, 3058, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3177, 3178, 3179, 2931, 3130, 3189, 3190, 3201, 3185, 3186, 3187, 3220, 2877, 473: 3260, 475: 3239, 3258, 2755, 479: 3268, 482: 3272, 3276, 485: 3257, 3256, 3295, 492: 3230, 495: 3269, 504: 3275, 3293, 508: 3234, 530: 3264, 564: 3271, 567: 3294, 2753, 570: 3277, 3229, 3231, 3233, 3232, 3261, 3237, 3251, 3242, 3263, 3238, 582: 3270, 3262, 3267, 3273, 3283, 3336, 3284, 3285, 592: 3236, 3314, 595: 3254, 3255, 3309, 3310, 3311, 3312, 3313, 3265, 3291, 3296, 3306, 3307, 3300, 3315, 3316, 3317, 3301, 3319, 3320, 3302, 3318, 3297, 3305, 3303, 3289, 3321, 3322, 3266, 3326, 3278, 3279, 3282, 3325, 3331, 3330, 3332, 3329, 3333, 3328, 3327, 3324, 3274, 3323, 3281, 3280, 3286, 3287, 648: 2756, 661: 3244, 2762, 2763, 2761, 709: 3259, 3335, 3245, 3250, 3235, 3308, 3248, 3246, 3247, 3288, 3299, 3298, 3292, 3290, 3304, 3243, 3253, 3334, 3252, 3249, 2759, 2758, 2757, 4032}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 2864, 2812, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 2893, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 2898, 2825, 2789, 2807, 2972, 3055, 3044, 2842, 2854, 2965, 2966, 2961, 2919, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 2900, 2885, 2881, 2973, 2997, 2783, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 2904, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 2823, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 2889, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 2890, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 2960, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 2848, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 2774, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 2906, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 2775, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3170, 2902, 3171, 3172, 2801, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3185, 3186, 3237, 3236, 3081, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 2942, 2959, 3082, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3203, 3204, 3205, 2955, 3156, 3215, 3216, 3227, 3211, 3212, 3213, 3246, 2901, 476: 3286, 478: 3265, 3284, 2778, 482: 3294, 485: 3298, 3302, 488: 3283, 3282, 3321, 495: 3256, 498: 3295, 507: 3301, 3319, 511: 3260, 533: 3290, 567: 3297, 570: 3320, 2776, 573: 3303, 3255, 3257, 3259, 3258, 3287, 3263, 3277, 3268, 3289, 3264, 585: 3296, 3288, 3293, 3299, 3309, 3362, 3310, 3311, 595: 3262, 3340, 598: 3280, 3281, 3335, 3336, 3337, 3338, 3339, 3291, 3317, 3322, 3332, 3333, 3326, 3341, 3342, 3343, 3327, 3345, 3346, 3328, 3344, 3323, 3331, 3329, 3315, 3347, 3348, 3292, 3352, 3304, 3305, 3308, 3351, 3357, 3356, 3358, 3355, 3359, 3354, 3353, 3350, 3300, 3349, 3307, 3306, 3312, 3313, 651: 2779, 664: 3270, 2785, 2786, 2784, 713: 3285, 3361, 3271, 3276, 3261, 3334, 3274, 3272, 3273, 3314, 3325, 3324, 3318, 3316, 3330, 3269, 3279, 3360, 3278, 3275, 2782, 2781, 2780, 4048}, + {50: 4049, 510: 3371, 512: 3369, 3370, 3368, 3366, 738: 3367, 3365}, + {973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 477: 973, 973, 973, 973, 973, 483: 973, 973, 973, 973, 973, 973, 973, 973, 492: 973, 973, 973, 496: 973, 973, 499: 973, 973, 973, 973, 973, 973, 973, 973, 509: 973, 973, 512: 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 534: 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 568: 973, 973, 597: 973, 746: 3388, 751: 3580, 769: 4050}, + {1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 477: 1132, 1132, 1132, 1132, 1132, 483: 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 492: 1132, 1132, 1132, 496: 1132, 1132, 499: 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 509: 1132, 1132, 512: 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 534: 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 1132, 568: 1132, 1132, 597: 1132}, + {973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 477: 973, 973, 973, 973, 973, 483: 973, 973, 973, 973, 973, 973, 973, 973, 492: 973, 973, 973, 496: 973, 973, 499: 973, 973, 973, 973, 973, 973, 973, 973, 509: 973, 973, 512: 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 534: 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 568: 973, 973, 597: 973, 746: 3388, 751: 3580, 769: 4052}, // 1495 - {49: 4033, 507: 3345, 509: 3343, 3344, 3342, 3340, 734: 3341, 3339}, - {1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 474: 1167, 1167, 1167, 1167, 1167, 480: 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 489: 1167, 1167, 1167, 493: 1167, 1167, 496: 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 506: 1167, 1167, 509: 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 531: 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 1167, 565: 1167, 1167, 594: 1167}, - {104: 3464, 3460, 108: 3457, 3472, 112: 3459, 3456, 3458, 3462, 3463, 3468, 3467, 3466, 3470, 3471, 3465, 3469, 3461, 796: 4035}, - {9: 4036}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 2840, 2788, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 2869, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 2874, 2801, 2766, 2783, 2948, 3031, 3020, 2818, 2830, 2941, 2942, 2937, 2895, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 2876, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 2760, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 2880, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 2799, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 2866, 2865, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 2936, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 2824, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 2751, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 2882, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 2752, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3144, 2878, 3145, 3146, 2777, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3159, 3160, 3211, 3210, 3057, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 2918, 2935, 3058, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3177, 3178, 3179, 2931, 3130, 3189, 3190, 3201, 3185, 3186, 3187, 3220, 2877, 473: 3260, 475: 3239, 3258, 2755, 479: 3268, 482: 3272, 3276, 485: 3257, 3256, 3295, 492: 3230, 495: 3269, 504: 3275, 3293, 508: 3234, 530: 3264, 564: 3271, 567: 3294, 2753, 570: 3277, 3229, 3231, 3233, 3232, 3261, 3237, 3251, 3242, 3263, 3238, 582: 3270, 3262, 3267, 3273, 3283, 3336, 3284, 3285, 592: 3236, 3314, 595: 3254, 3255, 3309, 3310, 3311, 3312, 3313, 3265, 3291, 3296, 3306, 3307, 3300, 3315, 3316, 3317, 3301, 3319, 3320, 3302, 3318, 3297, 3305, 3303, 3289, 3321, 3322, 3266, 3326, 3278, 3279, 3282, 3325, 3331, 3330, 3332, 3329, 3333, 3328, 3327, 3324, 3274, 3323, 3281, 3280, 3286, 3287, 648: 2756, 661: 3244, 2762, 2763, 2761, 709: 3259, 3335, 3245, 3250, 3235, 3308, 3248, 3246, 3247, 3288, 3299, 3298, 3292, 3290, 3304, 3243, 3253, 3334, 3252, 3249, 2759, 2758, 2757, 4037}, + {1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 477: 1134, 1134, 1134, 1134, 1134, 483: 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 492: 1134, 1134, 1134, 496: 1134, 1134, 499: 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 509: 1134, 1134, 512: 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 534: 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 1134, 568: 1134, 1134, 597: 1134}, + {105: 3490, 3486, 109: 3483, 3498, 113: 3485, 3482, 3484, 3488, 3489, 3494, 3493, 3492, 3496, 3497, 3491, 3495, 3487, 800: 4054}, + {9: 4055}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 2864, 2812, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 2893, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 2898, 2825, 2789, 2807, 2972, 3055, 3044, 2842, 2854, 2965, 2966, 2961, 2919, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 2900, 2885, 2881, 2973, 2997, 2783, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 2904, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 2823, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 2889, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 2890, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 2960, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 2848, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 2774, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 2906, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 2775, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3170, 2902, 3171, 3172, 2801, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3185, 3186, 3237, 3236, 3081, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 2942, 2959, 3082, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3203, 3204, 3205, 2955, 3156, 3215, 3216, 3227, 3211, 3212, 3213, 3246, 2901, 476: 3286, 478: 3265, 3284, 2778, 482: 3294, 485: 3298, 3302, 488: 3283, 3282, 3321, 495: 3256, 498: 3295, 507: 3301, 3319, 511: 3260, 533: 3290, 567: 3297, 570: 3320, 2776, 573: 3303, 3255, 3257, 3259, 3258, 3287, 3263, 3277, 3268, 3289, 3264, 585: 3296, 3288, 3293, 3299, 3309, 3362, 3310, 3311, 595: 3262, 3340, 598: 3280, 3281, 3335, 3336, 3337, 3338, 3339, 3291, 3317, 3322, 3332, 3333, 3326, 3341, 3342, 3343, 3327, 3345, 3346, 3328, 3344, 3323, 3331, 3329, 3315, 3347, 3348, 3292, 3352, 3304, 3305, 3308, 3351, 3357, 3356, 3358, 3355, 3359, 3354, 3353, 3350, 3300, 3349, 3307, 3306, 3312, 3313, 651: 2779, 664: 3270, 2785, 2786, 2784, 713: 3285, 3361, 3271, 3276, 3261, 3334, 3274, 3272, 3273, 3314, 3325, 3324, 3318, 3316, 3330, 3269, 3279, 3360, 3278, 3275, 2782, 2781, 2780, 4056}, + {9: 4057, 510: 3371, 512: 3369, 3370, 3368, 3366, 738: 3367, 3365}, // 1500 - {9: 4038, 507: 3345, 509: 3343, 3344, 3342, 3340, 734: 3341, 3339}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 2840, 2788, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 2869, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 2874, 2801, 2766, 2783, 2948, 3031, 3020, 2818, 2830, 2941, 2942, 2937, 2895, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 2876, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 2760, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 2880, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 2799, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 2866, 2865, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 2936, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 2824, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 2751, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 2882, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 2752, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3144, 2878, 3145, 3146, 2777, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3159, 3160, 3211, 3210, 3057, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 2918, 2935, 3058, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3177, 3178, 3179, 2931, 3130, 3189, 3190, 3201, 3185, 3186, 3187, 3220, 2877, 473: 3260, 475: 3239, 3258, 2755, 479: 3268, 482: 3272, 3276, 485: 3257, 3256, 3295, 492: 3230, 495: 3269, 504: 3275, 3293, 508: 3234, 530: 3264, 564: 3271, 567: 3294, 2753, 570: 3277, 3229, 3231, 3233, 3232, 3261, 3237, 3251, 3242, 3263, 3238, 582: 3270, 3262, 3267, 3273, 3283, 3336, 3284, 3285, 592: 3236, 3314, 595: 3254, 3255, 3309, 3310, 3311, 3312, 3313, 3265, 3291, 3296, 3306, 3307, 3300, 3315, 3316, 3317, 3301, 3319, 3320, 3302, 3318, 3297, 3305, 3303, 3289, 3321, 3322, 3266, 3326, 3278, 3279, 3282, 3325, 3331, 3330, 3332, 3329, 3333, 3328, 3327, 3324, 3274, 3323, 3281, 3280, 3286, 3287, 648: 2756, 661: 3244, 2762, 2763, 2761, 709: 3259, 3335, 3245, 3250, 3235, 3308, 3248, 3246, 3247, 3288, 3299, 3298, 3292, 3290, 3304, 3243, 3253, 3334, 3252, 3249, 2759, 2758, 2757, 4039}, - {49: 4040, 507: 3345, 509: 3343, 3344, 3342, 3340, 734: 3341, 3339}, - {1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 474: 1168, 1168, 1168, 1168, 1168, 480: 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 489: 1168, 1168, 1168, 493: 1168, 1168, 496: 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 506: 1168, 1168, 509: 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 531: 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 1168, 565: 1168, 1168, 594: 1168}, - {178: 4044, 4043, 199: 4046, 4045, 1224: 4042}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 2864, 2812, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 2893, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 2898, 2825, 2789, 2807, 2972, 3055, 3044, 2842, 2854, 2965, 2966, 2961, 2919, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 2900, 2885, 2881, 2973, 2997, 2783, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 2904, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 2823, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 2889, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 2890, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 2960, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 2848, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 2774, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 2906, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 2775, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3170, 2902, 3171, 3172, 2801, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3185, 3186, 3237, 3236, 3081, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 2942, 2959, 3082, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3203, 3204, 3205, 2955, 3156, 3215, 3216, 3227, 3211, 3212, 3213, 3246, 2901, 476: 3286, 478: 3265, 3284, 2778, 482: 3294, 485: 3298, 3302, 488: 3283, 3282, 3321, 495: 3256, 498: 3295, 507: 3301, 3319, 511: 3260, 533: 3290, 567: 3297, 570: 3320, 2776, 573: 3303, 3255, 3257, 3259, 3258, 3287, 3263, 3277, 3268, 3289, 3264, 585: 3296, 3288, 3293, 3299, 3309, 3362, 3310, 3311, 595: 3262, 3340, 598: 3280, 3281, 3335, 3336, 3337, 3338, 3339, 3291, 3317, 3322, 3332, 3333, 3326, 3341, 3342, 3343, 3327, 3345, 3346, 3328, 3344, 3323, 3331, 3329, 3315, 3347, 3348, 3292, 3352, 3304, 3305, 3308, 3351, 3357, 3356, 3358, 3355, 3359, 3354, 3353, 3350, 3300, 3349, 3307, 3306, 3312, 3313, 651: 2779, 664: 3270, 2785, 2786, 2784, 713: 3285, 3361, 3271, 3276, 3261, 3334, 3274, 3272, 3273, 3314, 3325, 3324, 3318, 3316, 3330, 3269, 3279, 3360, 3278, 3275, 2782, 2781, 2780, 4058}, + {50: 4059, 510: 3371, 512: 3369, 3370, 3368, 3366, 738: 3367, 3365}, + {1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 477: 1181, 1181, 1181, 1181, 1181, 483: 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 492: 1181, 1181, 1181, 496: 1181, 1181, 499: 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 509: 1181, 1181, 512: 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 534: 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 568: 1181, 1181, 597: 1181}, + {105: 3490, 3486, 109: 3483, 3498, 113: 3485, 3482, 3484, 3488, 3489, 3494, 3493, 3492, 3496, 3497, 3491, 3495, 3487, 800: 4061}, + {9: 4062}, // 1505 - {9: 4047}, - {9: 1157}, - {9: 1156}, - {9: 1155}, - {9: 1154}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 2864, 2812, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 2893, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 2898, 2825, 2789, 2807, 2972, 3055, 3044, 2842, 2854, 2965, 2966, 2961, 2919, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 2900, 2885, 2881, 2973, 2997, 2783, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 2904, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 2823, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 2889, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 2890, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 2960, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 2848, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 2774, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 2906, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 2775, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3170, 2902, 3171, 3172, 2801, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3185, 3186, 3237, 3236, 3081, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 2942, 2959, 3082, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3203, 3204, 3205, 2955, 3156, 3215, 3216, 3227, 3211, 3212, 3213, 3246, 2901, 476: 3286, 478: 3265, 3284, 2778, 482: 3294, 485: 3298, 3302, 488: 3283, 3282, 3321, 495: 3256, 498: 3295, 507: 3301, 3319, 511: 3260, 533: 3290, 567: 3297, 570: 3320, 2776, 573: 3303, 3255, 3257, 3259, 3258, 3287, 3263, 3277, 3268, 3289, 3264, 585: 3296, 3288, 3293, 3299, 3309, 3362, 3310, 3311, 595: 3262, 3340, 598: 3280, 3281, 3335, 3336, 3337, 3338, 3339, 3291, 3317, 3322, 3332, 3333, 3326, 3341, 3342, 3343, 3327, 3345, 3346, 3328, 3344, 3323, 3331, 3329, 3315, 3347, 3348, 3292, 3352, 3304, 3305, 3308, 3351, 3357, 3356, 3358, 3355, 3359, 3354, 3353, 3350, 3300, 3349, 3307, 3306, 3312, 3313, 651: 2779, 664: 3270, 2785, 2786, 2784, 713: 3285, 3361, 3271, 3276, 3261, 3334, 3274, 3272, 3273, 3314, 3325, 3324, 3318, 3316, 3330, 3269, 3279, 3360, 3278, 3275, 2782, 2781, 2780, 4063}, + {9: 4064, 510: 3371, 512: 3369, 3370, 3368, 3366, 738: 3367, 3365}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 2864, 2812, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 2893, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 2898, 2825, 2789, 2807, 2972, 3055, 3044, 2842, 2854, 2965, 2966, 2961, 2919, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 2900, 2885, 2881, 2973, 2997, 2783, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 2904, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 2823, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 2889, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 2890, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 2960, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 2848, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 2774, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 2906, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 2775, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3170, 2902, 3171, 3172, 2801, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3185, 3186, 3237, 3236, 3081, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 2942, 2959, 3082, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3203, 3204, 3205, 2955, 3156, 3215, 3216, 3227, 3211, 3212, 3213, 3246, 2901, 476: 3286, 478: 3265, 3284, 2778, 482: 3294, 485: 3298, 3302, 488: 3283, 3282, 3321, 495: 3256, 498: 3295, 507: 3301, 3319, 511: 3260, 533: 3290, 567: 3297, 570: 3320, 2776, 573: 3303, 3255, 3257, 3259, 3258, 3287, 3263, 3277, 3268, 3289, 3264, 585: 3296, 3288, 3293, 3299, 3309, 3362, 3310, 3311, 595: 3262, 3340, 598: 3280, 3281, 3335, 3336, 3337, 3338, 3339, 3291, 3317, 3322, 3332, 3333, 3326, 3341, 3342, 3343, 3327, 3345, 3346, 3328, 3344, 3323, 3331, 3329, 3315, 3347, 3348, 3292, 3352, 3304, 3305, 3308, 3351, 3357, 3356, 3358, 3355, 3359, 3354, 3353, 3350, 3300, 3349, 3307, 3306, 3312, 3313, 651: 2779, 664: 3270, 2785, 2786, 2784, 713: 3285, 3361, 3271, 3276, 3261, 3334, 3274, 3272, 3273, 3314, 3325, 3324, 3318, 3316, 3330, 3269, 3279, 3360, 3278, 3275, 2782, 2781, 2780, 4065}, + {50: 4066, 510: 3371, 512: 3369, 3370, 3368, 3366, 738: 3367, 3365}, + {1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 477: 1182, 1182, 1182, 1182, 1182, 483: 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 492: 1182, 1182, 1182, 496: 1182, 1182, 499: 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 509: 1182, 1182, 512: 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 534: 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 1182, 568: 1182, 1182, 597: 1182}, // 1510 - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 2840, 2788, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 2869, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 2874, 2801, 2766, 2783, 2948, 3031, 3020, 2818, 2830, 2941, 2942, 2937, 2895, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 2876, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 2760, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 2880, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 2799, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 2866, 2865, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 2936, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 2824, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 2751, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 2882, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 2752, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3144, 2878, 3145, 3146, 2777, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3159, 3160, 3211, 3210, 3057, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 2918, 2935, 3058, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3177, 3178, 3179, 2931, 3130, 3189, 3190, 3201, 3185, 3186, 3187, 3220, 2877, 473: 3260, 475: 3239, 3258, 2755, 479: 3268, 482: 3272, 3276, 485: 3257, 3256, 3295, 492: 3230, 495: 3269, 504: 3275, 3293, 508: 3234, 530: 3264, 564: 3271, 567: 3294, 2753, 570: 3277, 3229, 3231, 3233, 3232, 3261, 3237, 3251, 3242, 3263, 3238, 582: 3270, 3262, 3267, 3273, 3283, 3336, 3284, 3285, 592: 3236, 3314, 595: 3254, 3255, 3309, 3310, 3311, 3312, 3313, 3265, 3291, 3296, 3306, 3307, 3300, 3315, 3316, 3317, 3301, 3319, 3320, 3302, 3318, 3297, 3305, 3303, 3289, 3321, 3322, 3266, 3326, 3278, 3279, 3282, 3325, 3331, 3330, 3332, 3329, 3333, 3328, 3327, 3324, 3274, 3323, 3281, 3280, 3286, 3287, 648: 2756, 661: 3244, 2762, 2763, 2761, 709: 3259, 3335, 3245, 3250, 3235, 3308, 3248, 3246, 3247, 3288, 3299, 3298, 3292, 3290, 3304, 3243, 3253, 3334, 3252, 3249, 2759, 2758, 2757, 4048}, - {49: 4049, 507: 3345, 509: 3343, 3344, 3342, 3340, 734: 3341, 3339}, - {1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 474: 1174, 1174, 1174, 1174, 1174, 480: 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 489: 1174, 1174, 1174, 493: 1174, 1174, 496: 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 506: 1174, 1174, 509: 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 531: 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 565: 1174, 1174, 594: 1174}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 661: 3921, 2762, 2763, 2761, 737: 4051}, - {9: 4052}, + {180: 4070, 4069, 202: 4071, 226: 4072, 1232: 4068}, + {9: 4073}, + {9: 1171}, + {9: 1170}, + {9: 1169}, // 1515 - {485: 4056, 4057, 508: 2736, 733: 4053, 763: 4055, 814: 4054}, - {1974, 1974, 6: 1974, 1974, 1974, 1974, 15: 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 72: 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 105: 1974, 128: 1974, 1974, 1974, 1974, 479: 1974, 1974, 484: 1974, 493: 1974, 498: 1974, 501: 1974, 503: 1974, 505: 1974, 647: 1974, 649: 1974, 655: 1974}, - {49: 4060}, - {31, 31, 6: 31, 31, 31, 15: 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 49: 31, 72: 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 479: 31, 31, 484: 31, 503: 31, 505: 31, 647: 31, 649: 31, 655: 31}, - {508: 2736, 733: 4053, 763: 4059}, + {9: 1168}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 2864, 2812, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 2893, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 2898, 2825, 2789, 2807, 2972, 3055, 3044, 2842, 2854, 2965, 2966, 2961, 2919, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 2900, 2885, 2881, 2973, 2997, 2783, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 2904, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 2823, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 2889, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 2890, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 2960, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 2848, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 2774, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 2906, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 2775, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3170, 2902, 3171, 3172, 2801, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3185, 3186, 3237, 3236, 3081, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 2942, 2959, 3082, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3203, 3204, 3205, 2955, 3156, 3215, 3216, 3227, 3211, 3212, 3213, 3246, 2901, 476: 3286, 478: 3265, 3284, 2778, 482: 3294, 485: 3298, 3302, 488: 3283, 3282, 3321, 495: 3256, 498: 3295, 507: 3301, 3319, 511: 3260, 533: 3290, 567: 3297, 570: 3320, 2776, 573: 3303, 3255, 3257, 3259, 3258, 3287, 3263, 3277, 3268, 3289, 3264, 585: 3296, 3288, 3293, 3299, 3309, 3362, 3310, 3311, 595: 3262, 3340, 598: 3280, 3281, 3335, 3336, 3337, 3338, 3339, 3291, 3317, 3322, 3332, 3333, 3326, 3341, 3342, 3343, 3327, 3345, 3346, 3328, 3344, 3323, 3331, 3329, 3315, 3347, 3348, 3292, 3352, 3304, 3305, 3308, 3351, 3357, 3356, 3358, 3355, 3359, 3354, 3353, 3350, 3300, 3349, 3307, 3306, 3312, 3313, 651: 2779, 664: 3270, 2785, 2786, 2784, 713: 3285, 3361, 3271, 3276, 3261, 3334, 3274, 3272, 3273, 3314, 3325, 3324, 3318, 3316, 3330, 3269, 3279, 3360, 3278, 3275, 2782, 2781, 2780, 4074}, + {50: 4075, 510: 3371, 512: 3369, 3370, 3368, 3366, 738: 3367, 3365}, + {1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 477: 1188, 1188, 1188, 1188, 1188, 483: 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 492: 1188, 1188, 1188, 496: 1188, 1188, 499: 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 509: 1188, 1188, 512: 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 534: 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 1188, 568: 1188, 1188, 597: 1188}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 664: 3947, 2785, 2786, 2784, 740: 4077}, // 1520 - {508: 2736, 733: 4058}, - {29, 29, 6: 29, 29, 29, 15: 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 49: 29, 72: 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 479: 29, 29, 484: 29, 503: 29, 505: 29, 647: 29, 649: 29, 655: 29}, - {30, 30, 6: 30, 30, 30, 15: 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 49: 30, 72: 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 479: 30, 30, 484: 30, 503: 30, 505: 30, 647: 30, 649: 30, 655: 30}, - {1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 474: 1145, 1145, 1145, 1145, 1145, 480: 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 489: 1145, 1145, 1145, 493: 1145, 1145, 496: 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 506: 1145, 1145, 509: 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 531: 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 1145, 565: 1145, 1145, 594: 1145}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 661: 3921, 2762, 2763, 2761, 737: 4062}, + {9: 4078}, + {488: 4082, 4083, 511: 2759, 737: 4079, 767: 4081, 819: 4080}, + {1991, 1991, 6: 1991, 1991, 1991, 1991, 15: 1991, 1991, 1991, 1991, 1991, 1991, 1991, 1991, 1991, 1991, 1991, 1991, 1991, 1991, 1991, 1991, 1991, 1991, 1991, 1991, 1991, 1991, 1991, 1991, 1991, 1991, 1991, 1991, 1991, 1991, 1991, 1991, 1991, 1991, 1991, 1991, 73: 1991, 1991, 1991, 1991, 1991, 1991, 1991, 1991, 1991, 1991, 1991, 106: 1991, 132: 1991, 1991, 1991, 1991, 482: 1991, 1991, 487: 1991, 496: 1991, 501: 1991, 504: 1991, 506: 1991, 508: 1991, 650: 1991, 652: 1991, 658: 1991}, + {50: 4086}, + {31, 31, 6: 31, 31, 31, 15: 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 50: 31, 73: 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 31, 482: 31, 31, 487: 31, 506: 31, 508: 31, 650: 31, 652: 31, 658: 31}, // 1525 - {49: 4063}, - {1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 474: 1146, 1146, 1146, 1146, 1146, 480: 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 489: 1146, 1146, 1146, 493: 1146, 1146, 496: 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 506: 1146, 1146, 509: 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 531: 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 1146, 565: 1146, 1146, 594: 1146}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 2840, 2788, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 2869, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 2874, 2801, 2766, 2783, 2948, 3031, 3020, 2818, 2830, 2941, 2942, 2937, 2895, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 2876, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 2760, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 2880, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 2799, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 2866, 2865, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 2936, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 2824, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 2751, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 2882, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 2752, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3144, 2878, 3145, 3146, 2777, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3159, 3160, 3211, 3210, 3057, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 2918, 2935, 3058, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3177, 3178, 3179, 2931, 3130, 3189, 3190, 3201, 3185, 3186, 3187, 3220, 2877, 473: 3260, 475: 3239, 3258, 2755, 479: 3268, 482: 3272, 3276, 485: 3257, 3256, 3295, 492: 3230, 495: 3269, 504: 3275, 3293, 508: 3234, 530: 3264, 564: 3271, 567: 3294, 2753, 570: 3277, 3229, 3231, 3233, 3232, 3261, 3237, 3251, 3242, 3263, 3238, 582: 3270, 3262, 3267, 3273, 3283, 3336, 3284, 3285, 592: 3236, 3314, 595: 3254, 3255, 3309, 3310, 3311, 3312, 3313, 3265, 3291, 3296, 3306, 3307, 3300, 3315, 3316, 3317, 3301, 3319, 3320, 3302, 3318, 3297, 3305, 3303, 3289, 3321, 3322, 3266, 3326, 3278, 3279, 3282, 3325, 3331, 3330, 3332, 3329, 3333, 3328, 3327, 3324, 3274, 3323, 3281, 3280, 3286, 3287, 648: 2756, 661: 3244, 2762, 2763, 2761, 709: 3259, 3335, 3245, 3250, 3235, 3308, 3248, 3246, 3247, 3288, 3299, 3298, 3292, 3290, 3304, 3243, 3253, 3334, 3252, 3249, 2759, 2758, 2757, 4065}, - {49: 4066, 478: 4067, 507: 3345, 509: 3343, 3344, 3342, 3340, 734: 3341, 3339}, - {1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 474: 1162, 1162, 1162, 1162, 1162, 480: 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 489: 1162, 1162, 1162, 493: 1162, 1162, 496: 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 506: 1162, 1162, 509: 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 531: 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 1162, 565: 1162, 1162, 594: 1162}, + {511: 2759, 737: 4079, 767: 4085}, + {511: 2759, 737: 4084}, + {29, 29, 6: 29, 29, 29, 15: 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 50: 29, 73: 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 29, 482: 29, 29, 487: 29, 506: 29, 508: 29, 650: 29, 652: 29, 658: 29}, + {30, 30, 6: 30, 30, 30, 15: 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 50: 30, 73: 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 30, 482: 30, 30, 487: 30, 506: 30, 508: 30, 650: 30, 652: 30, 658: 30}, + {1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 477: 1159, 1159, 1159, 1159, 1159, 483: 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 492: 1159, 1159, 1159, 496: 1159, 1159, 499: 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 509: 1159, 1159, 512: 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 534: 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 1159, 568: 1159, 1159, 597: 1159}, // 1530 - {505: 3811, 530: 4069, 647: 3810, 901: 4068}, - {473: 3826, 764: 4072}, - {473: 3826, 764: 4070}, - {49: 4071}, - {1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 474: 1160, 1160, 1160, 1160, 1160, 480: 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 489: 1160, 1160, 1160, 493: 1160, 1160, 496: 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 506: 1160, 1160, 509: 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 531: 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 565: 1160, 1160, 594: 1160}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 664: 3947, 2785, 2786, 2784, 740: 4088}, + {50: 4089}, + {1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 477: 1160, 1160, 1160, 1160, 1160, 483: 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 492: 1160, 1160, 1160, 496: 1160, 1160, 499: 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 509: 1160, 1160, 512: 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 534: 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 1160, 568: 1160, 1160, 597: 1160}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 2864, 2812, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 2893, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 2898, 2825, 2789, 2807, 2972, 3055, 3044, 2842, 2854, 2965, 2966, 2961, 2919, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 2900, 2885, 2881, 2973, 2997, 2783, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 2904, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 2823, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 2889, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 2890, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 2960, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 2848, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 2774, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 2906, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 2775, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3170, 2902, 3171, 3172, 2801, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3185, 3186, 3237, 3236, 3081, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 2942, 2959, 3082, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3203, 3204, 3205, 2955, 3156, 3215, 3216, 3227, 3211, 3212, 3213, 3246, 2901, 476: 3286, 478: 3265, 3284, 2778, 482: 3294, 485: 3298, 3302, 488: 3283, 3282, 3321, 495: 3256, 498: 3295, 507: 3301, 3319, 511: 3260, 533: 3290, 567: 3297, 570: 3320, 2776, 573: 3303, 3255, 3257, 3259, 3258, 3287, 3263, 3277, 3268, 3289, 3264, 585: 3296, 3288, 3293, 3299, 3309, 3362, 3310, 3311, 595: 3262, 3340, 598: 3280, 3281, 3335, 3336, 3337, 3338, 3339, 3291, 3317, 3322, 3332, 3333, 3326, 3341, 3342, 3343, 3327, 3345, 3346, 3328, 3344, 3323, 3331, 3329, 3315, 3347, 3348, 3292, 3352, 3304, 3305, 3308, 3351, 3357, 3356, 3358, 3355, 3359, 3354, 3353, 3350, 3300, 3349, 3307, 3306, 3312, 3313, 651: 2779, 664: 3270, 2785, 2786, 2784, 713: 3285, 3361, 3271, 3276, 3261, 3334, 3274, 3272, 3273, 3314, 3325, 3324, 3318, 3316, 3330, 3269, 3279, 3360, 3278, 3275, 2782, 2781, 2780, 4091}, + {50: 4092, 481: 4093, 510: 3371, 512: 3369, 3370, 3368, 3366, 738: 3367, 3365}, // 1535 - {49: 4073}, - {1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 474: 1161, 1161, 1161, 1161, 1161, 480: 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 489: 1161, 1161, 1161, 493: 1161, 1161, 496: 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 506: 1161, 1161, 509: 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 531: 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 1161, 565: 1161, 1161, 594: 1161}, - {1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 474: 1184, 1184, 1184, 1184, 1184, 480: 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 489: 1184, 1184, 1184, 493: 1184, 1184, 496: 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 506: 1184, 1184, 509: 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 531: 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 1184, 565: 1184, 1184, 594: 1184}, - {1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 474: 1185, 1185, 1185, 1185, 1185, 480: 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 489: 1185, 1185, 1185, 493: 1185, 1185, 496: 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 506: 1185, 1185, 509: 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 531: 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 1185, 565: 1185, 1185, 594: 1185}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 2840, 2788, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 1919, 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 2869, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 2874, 2801, 2766, 2783, 2948, 3031, 3020, 2818, 2830, 2941, 2942, 2937, 2895, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 2876, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 2760, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 2880, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 2799, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 2866, 2865, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 2936, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 2824, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 2751, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 2882, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 2752, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3144, 2878, 3145, 3146, 2777, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3159, 3160, 3211, 3210, 3057, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 2918, 2935, 3058, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3177, 3178, 3179, 2931, 3130, 3189, 3190, 3201, 3185, 3186, 3187, 3220, 2877, 473: 3260, 475: 3239, 3258, 2755, 479: 3268, 482: 3272, 3276, 485: 3257, 3256, 3295, 492: 3230, 495: 3269, 504: 3275, 3293, 508: 3234, 530: 3264, 564: 3271, 567: 3294, 2753, 570: 3277, 3229, 3231, 3233, 3232, 3261, 3237, 3251, 3242, 3263, 3238, 582: 3270, 3262, 3267, 3273, 3283, 3336, 3284, 3285, 592: 3236, 3314, 595: 3254, 3255, 3309, 3310, 3311, 3312, 3313, 3265, 3291, 3296, 3306, 3307, 3300, 3315, 3316, 3317, 3301, 3319, 3320, 3302, 3318, 3297, 3305, 3303, 3289, 3321, 3322, 3266, 3326, 3278, 3279, 3282, 3325, 3331, 3330, 3332, 3329, 3333, 3328, 3327, 3324, 3274, 3323, 3281, 3280, 3286, 3287, 648: 2756, 661: 3244, 2762, 2763, 2761, 709: 3259, 3335, 3245, 3250, 3235, 3308, 3248, 3246, 3247, 3288, 3299, 3298, 3292, 3290, 3304, 3243, 3253, 3334, 3252, 3249, 2759, 2758, 2757, 3588, 778: 3752, 826: 4077}, + {1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 477: 1176, 1176, 1176, 1176, 1176, 483: 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 492: 1176, 1176, 1176, 496: 1176, 1176, 499: 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 509: 1176, 1176, 512: 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 534: 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 1176, 568: 1176, 1176, 597: 1176}, + {508: 3837, 533: 4095, 650: 3836, 906: 4094}, + {476: 3852, 768: 4098}, + {476: 3852, 768: 4096}, + {50: 4097}, // 1540 - {49: 4078}, - {1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 474: 1181, 1181, 1181, 1181, 1181, 480: 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 489: 1181, 1181, 1181, 493: 1181, 1181, 496: 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 506: 1181, 1181, 509: 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 531: 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 1181, 565: 1181, 1181, 594: 1181}, - {1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 474: 1186, 1186, 1186, 1186, 1186, 480: 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 489: 1186, 1186, 1186, 493: 1186, 1186, 496: 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 506: 1186, 1186, 509: 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 531: 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 1186, 565: 1186, 1186, 594: 1186}, - {2: 1241, 1241, 1241, 1241, 1241, 1241, 1241, 10: 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 50: 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 473: 1241, 475: 1241, 1241, 1241, 479: 1241, 482: 1241, 1241, 485: 1241, 1241, 1241, 492: 1241, 495: 1241, 504: 1241, 1241, 508: 1241, 530: 1241, 564: 1241, 567: 1241, 1241, 570: 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 582: 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 592: 1241, 1241, 595: 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 1241, 648: 1241, 651: 3546, 745: 3544, 3545, 784: 3547, 787: 3548, 816: 4081, 818: 3549}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 2840, 2788, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 2869, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 2874, 2801, 2766, 2783, 2948, 3031, 3020, 2818, 2830, 2941, 2942, 2937, 2895, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 2876, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 2760, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 2880, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 2799, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 2866, 2865, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 2936, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 2824, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 2751, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 2882, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 2752, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3144, 2878, 3145, 3146, 2777, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3159, 3160, 3211, 3210, 3057, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 2918, 2935, 3058, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3177, 3178, 3179, 2931, 3130, 3189, 3190, 3201, 3185, 3186, 3187, 3220, 2877, 473: 3260, 475: 3239, 3258, 2755, 479: 3268, 482: 3272, 3276, 485: 3257, 3256, 3295, 492: 3230, 495: 3269, 504: 3275, 3293, 508: 3234, 530: 3264, 564: 3271, 567: 3294, 2753, 570: 3277, 3229, 3231, 3233, 3232, 3261, 3237, 3251, 3242, 3263, 3238, 582: 3270, 3262, 3267, 3273, 3283, 3336, 3284, 3285, 592: 3236, 3314, 595: 3254, 3255, 3309, 3310, 3311, 3312, 3313, 3265, 3291, 3296, 3306, 3307, 3300, 3315, 3316, 3317, 3301, 3319, 3320, 3302, 3318, 3297, 3305, 3303, 3289, 3321, 3322, 3266, 3326, 3278, 3279, 3282, 3325, 3331, 3330, 3332, 3329, 3333, 3328, 3327, 3324, 3274, 3323, 3281, 3280, 3286, 3287, 648: 2756, 661: 3244, 2762, 2763, 2761, 709: 3259, 3335, 3245, 3250, 3235, 3308, 3248, 3246, 3247, 3288, 3299, 3298, 3292, 3290, 3304, 3243, 3253, 3334, 3252, 3249, 2759, 2758, 2757, 4082}, + {1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 477: 1174, 1174, 1174, 1174, 1174, 483: 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 492: 1174, 1174, 1174, 496: 1174, 1174, 499: 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 509: 1174, 1174, 512: 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 534: 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 1174, 568: 1174, 1174, 597: 1174}, + {50: 4099}, + {1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 477: 1175, 1175, 1175, 1175, 1175, 483: 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 492: 1175, 1175, 1175, 496: 1175, 1175, 499: 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 509: 1175, 1175, 512: 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 534: 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 1175, 568: 1175, 1175, 597: 1175}, + {1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 477: 1198, 1198, 1198, 1198, 1198, 483: 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 492: 1198, 1198, 1198, 496: 1198, 1198, 499: 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 509: 1198, 1198, 512: 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 534: 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 1198, 568: 1198, 1198, 597: 1198}, + {1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 477: 1199, 1199, 1199, 1199, 1199, 483: 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 492: 1199, 1199, 1199, 496: 1199, 1199, 499: 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 509: 1199, 1199, 512: 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 534: 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 1199, 568: 1199, 1199, 597: 1199}, // 1545 - {49: 4083, 507: 3345, 509: 3343, 3344, 3342, 3340, 734: 3341, 3339}, - {959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 474: 959, 959, 959, 959, 959, 480: 959, 959, 959, 959, 959, 959, 959, 959, 489: 959, 959, 959, 493: 959, 959, 496: 959, 959, 959, 959, 959, 959, 959, 959, 506: 959, 959, 509: 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 531: 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 959, 565: 959, 959, 594: 959, 742: 3362, 747: 3554, 765: 4084}, - {1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 474: 1143, 1143, 1143, 1143, 1143, 480: 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 489: 1143, 1143, 1143, 493: 1143, 1143, 496: 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 506: 1143, 1143, 509: 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 531: 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 1143, 565: 1143, 1143, 594: 1143}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 2840, 2788, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 1919, 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 2869, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 2874, 2801, 2766, 2783, 2948, 3031, 3020, 2818, 2830, 2941, 2942, 2937, 2895, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 2876, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 2760, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 2880, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 2799, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 2866, 2865, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 2936, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 2824, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 2751, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 2882, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 2752, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3144, 2878, 3145, 3146, 2777, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3159, 3160, 3211, 3210, 3057, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 2918, 2935, 3058, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3177, 3178, 3179, 2931, 3130, 3189, 3190, 3201, 3185, 3186, 3187, 3220, 2877, 473: 3260, 475: 3239, 3258, 2755, 479: 3268, 482: 3272, 3276, 485: 3257, 3256, 3295, 492: 3230, 495: 3269, 504: 3275, 3293, 508: 3234, 530: 3264, 564: 3271, 567: 3294, 2753, 570: 3277, 3229, 3231, 3233, 3232, 3261, 3237, 3251, 3242, 3263, 3238, 582: 3270, 3262, 3267, 3273, 3283, 3336, 3284, 3285, 592: 3236, 3314, 595: 3254, 3255, 3309, 3310, 3311, 3312, 3313, 3265, 3291, 3296, 3306, 3307, 3300, 3315, 3316, 3317, 3301, 3319, 3320, 3302, 3318, 3297, 3305, 3303, 3289, 3321, 3322, 3266, 3326, 3278, 3279, 3282, 3325, 3331, 3330, 3332, 3329, 3333, 3328, 3327, 3324, 3274, 3323, 3281, 3280, 3286, 3287, 648: 2756, 661: 3244, 2762, 2763, 2761, 709: 3259, 3335, 3245, 3250, 3235, 3308, 3248, 3246, 3247, 3288, 3299, 3298, 3292, 3290, 3304, 3243, 3253, 3334, 3252, 3249, 2759, 2758, 2757, 3588, 778: 3752, 826: 4086}, - {49: 4087}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 2864, 2812, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 1936, 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 2893, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 2898, 2825, 2789, 2807, 2972, 3055, 3044, 2842, 2854, 2965, 2966, 2961, 2919, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 2900, 2885, 2881, 2973, 2997, 2783, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 2904, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 2823, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 2889, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 2890, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 2960, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 2848, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 2774, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 2906, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 2775, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3170, 2902, 3171, 3172, 2801, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3185, 3186, 3237, 3236, 3081, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 2942, 2959, 3082, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3203, 3204, 3205, 2955, 3156, 3215, 3216, 3227, 3211, 3212, 3213, 3246, 2901, 476: 3286, 478: 3265, 3284, 2778, 482: 3294, 485: 3298, 3302, 488: 3283, 3282, 3321, 495: 3256, 498: 3295, 507: 3301, 3319, 511: 3260, 533: 3290, 567: 3297, 570: 3320, 2776, 573: 3303, 3255, 3257, 3259, 3258, 3287, 3263, 3277, 3268, 3289, 3264, 585: 3296, 3288, 3293, 3299, 3309, 3362, 3310, 3311, 595: 3262, 3340, 598: 3280, 3281, 3335, 3336, 3337, 3338, 3339, 3291, 3317, 3322, 3332, 3333, 3326, 3341, 3342, 3343, 3327, 3345, 3346, 3328, 3344, 3323, 3331, 3329, 3315, 3347, 3348, 3292, 3352, 3304, 3305, 3308, 3351, 3357, 3356, 3358, 3355, 3359, 3354, 3353, 3350, 3300, 3349, 3307, 3306, 3312, 3313, 651: 2779, 664: 3270, 2785, 2786, 2784, 713: 3285, 3361, 3271, 3276, 3261, 3334, 3274, 3272, 3273, 3314, 3325, 3324, 3318, 3316, 3330, 3269, 3279, 3360, 3278, 3275, 2782, 2781, 2780, 3614, 782: 3778, 830: 4103}, + {50: 4104}, + {1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 477: 1195, 1195, 1195, 1195, 1195, 483: 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 492: 1195, 1195, 1195, 496: 1195, 1195, 499: 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 509: 1195, 1195, 512: 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 534: 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 1195, 568: 1195, 1195, 597: 1195}, + {1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 477: 1200, 1200, 1200, 1200, 1200, 483: 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 492: 1200, 1200, 1200, 496: 1200, 1200, 499: 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 509: 1200, 1200, 512: 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 534: 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 1200, 568: 1200, 1200, 597: 1200}, + {2: 1255, 1255, 1255, 1255, 1255, 1255, 1255, 10: 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 51: 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 476: 1255, 478: 1255, 1255, 1255, 482: 1255, 485: 1255, 1255, 488: 1255, 1255, 1255, 495: 1255, 498: 1255, 507: 1255, 1255, 511: 1255, 533: 1255, 567: 1255, 570: 1255, 1255, 573: 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 585: 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 595: 1255, 1255, 598: 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 1255, 651: 1255, 654: 3572, 749: 3570, 3571, 789: 3573, 792: 3574, 821: 4107, 3575}, // 1550 - {1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 474: 1114, 1114, 1114, 1114, 1114, 480: 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 489: 1114, 1114, 1114, 493: 1114, 1114, 496: 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 506: 1114, 1114, 509: 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 531: 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 1114, 565: 1114, 1114, 594: 1114}, - {149: 2314, 175: 2314, 194: 2314, 492: 2314, 518: 2314, 544: 2314, 563: 2314, 565: 2314, 2314, 571: 2314, 2314, 583: 2314}, - {149: 2313, 175: 2313, 194: 2313, 492: 2313, 518: 2313, 544: 2313, 563: 2313, 565: 2313, 2313, 571: 2313, 2313, 583: 2313}, - {2: 1901, 1901, 1901, 1901, 1901, 1901, 1901, 10: 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 50: 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 473: 1901, 475: 1901, 1901, 479: 1901, 482: 1901, 1901, 485: 1901, 1901, 1901, 492: 1901, 495: 1901, 504: 1901, 1901, 508: 1901, 530: 1901, 564: 1901, 567: 1901, 1901, 570: 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 582: 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 592: 1901, 1901, 595: 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901}, - {518: 4115, 544: 4114, 563: 4113, 565: 4099, 4100, 1112: 4116}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 2864, 2812, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 2893, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 2898, 2825, 2789, 2807, 2972, 3055, 3044, 2842, 2854, 2965, 2966, 2961, 2919, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 2900, 2885, 2881, 2973, 2997, 2783, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 2904, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 2823, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 2889, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 2890, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 2960, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 2848, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 2774, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 2906, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 2775, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3170, 2902, 3171, 3172, 2801, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3185, 3186, 3237, 3236, 3081, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 2942, 2959, 3082, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3203, 3204, 3205, 2955, 3156, 3215, 3216, 3227, 3211, 3212, 3213, 3246, 2901, 476: 3286, 478: 3265, 3284, 2778, 482: 3294, 485: 3298, 3302, 488: 3283, 3282, 3321, 495: 3256, 498: 3295, 507: 3301, 3319, 511: 3260, 533: 3290, 567: 3297, 570: 3320, 2776, 573: 3303, 3255, 3257, 3259, 3258, 3287, 3263, 3277, 3268, 3289, 3264, 585: 3296, 3288, 3293, 3299, 3309, 3362, 3310, 3311, 595: 3262, 3340, 598: 3280, 3281, 3335, 3336, 3337, 3338, 3339, 3291, 3317, 3322, 3332, 3333, 3326, 3341, 3342, 3343, 3327, 3345, 3346, 3328, 3344, 3323, 3331, 3329, 3315, 3347, 3348, 3292, 3352, 3304, 3305, 3308, 3351, 3357, 3356, 3358, 3355, 3359, 3354, 3353, 3350, 3300, 3349, 3307, 3306, 3312, 3313, 651: 2779, 664: 3270, 2785, 2786, 2784, 713: 3285, 3361, 3271, 3276, 3261, 3334, 3274, 3272, 3273, 3314, 3325, 3324, 3318, 3316, 3330, 3269, 3279, 3360, 3278, 3275, 2782, 2781, 2780, 4108}, + {50: 4109, 510: 3371, 512: 3369, 3370, 3368, 3366, 738: 3367, 3365}, + {973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 477: 973, 973, 973, 973, 973, 483: 973, 973, 973, 973, 973, 973, 973, 973, 492: 973, 973, 973, 496: 973, 973, 499: 973, 973, 973, 973, 973, 973, 973, 973, 509: 973, 973, 512: 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 534: 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 973, 568: 973, 973, 597: 973, 746: 3388, 751: 3580, 769: 4110}, + {1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 477: 1157, 1157, 1157, 1157, 1157, 483: 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 492: 1157, 1157, 1157, 496: 1157, 1157, 499: 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 509: 1157, 1157, 512: 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 534: 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 1157, 568: 1157, 1157, 597: 1157}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 2864, 2812, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 1936, 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 2893, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 2898, 2825, 2789, 2807, 2972, 3055, 3044, 2842, 2854, 2965, 2966, 2961, 2919, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 2900, 2885, 2881, 2973, 2997, 2783, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 2904, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 2823, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 2889, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 2890, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 2960, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 2848, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 2774, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 2906, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 2775, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3170, 2902, 3171, 3172, 2801, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3185, 3186, 3237, 3236, 3081, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 2942, 2959, 3082, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3203, 3204, 3205, 2955, 3156, 3215, 3216, 3227, 3211, 3212, 3213, 3246, 2901, 476: 3286, 478: 3265, 3284, 2778, 482: 3294, 485: 3298, 3302, 488: 3283, 3282, 3321, 495: 3256, 498: 3295, 507: 3301, 3319, 511: 3260, 533: 3290, 567: 3297, 570: 3320, 2776, 573: 3303, 3255, 3257, 3259, 3258, 3287, 3263, 3277, 3268, 3289, 3264, 585: 3296, 3288, 3293, 3299, 3309, 3362, 3310, 3311, 595: 3262, 3340, 598: 3280, 3281, 3335, 3336, 3337, 3338, 3339, 3291, 3317, 3322, 3332, 3333, 3326, 3341, 3342, 3343, 3327, 3345, 3346, 3328, 3344, 3323, 3331, 3329, 3315, 3347, 3348, 3292, 3352, 3304, 3305, 3308, 3351, 3357, 3356, 3358, 3355, 3359, 3354, 3353, 3350, 3300, 3349, 3307, 3306, 3312, 3313, 651: 2779, 664: 3270, 2785, 2786, 2784, 713: 3285, 3361, 3271, 3276, 3261, 3334, 3274, 3272, 3273, 3314, 3325, 3324, 3318, 3316, 3330, 3269, 3279, 3360, 3278, 3275, 2782, 2781, 2780, 3614, 782: 3778, 830: 4112}, // 1555 - {473: 1897}, - {2: 1895, 1895, 1895, 1895, 1895, 1895, 1895, 10: 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 50: 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 473: 1895, 475: 1895, 1895, 479: 1895, 482: 1895, 1895, 485: 1895, 1895, 1895, 492: 1895, 495: 1895, 504: 1895, 1895, 508: 1895, 530: 1895, 564: 1895, 567: 1895, 1895, 570: 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 582: 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 592: 1895, 1895, 595: 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895, 1895}, - {2: 1893, 1893, 1893, 1893, 1893, 1893, 1893, 10: 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 50: 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 473: 1893, 475: 1893, 1893, 479: 1893, 482: 1893, 1893, 485: 1893, 1893, 1893, 492: 1893, 495: 1893, 504: 1893, 1893, 508: 1893, 530: 1893, 564: 1893, 567: 1893, 1893, 570: 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 582: 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 592: 1893, 1893, 595: 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893, 1893}, - {473: 4109, 709: 4110}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 2840, 2788, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 2869, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 2874, 2801, 2766, 2783, 2948, 3031, 3020, 2818, 2830, 2941, 2942, 2937, 2895, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 2876, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 2760, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 2880, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 2799, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 2866, 2865, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 2936, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 2824, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 2751, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 2882, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 2752, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3144, 2878, 3145, 3146, 2777, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3159, 3160, 3211, 3210, 3057, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 2918, 2935, 3058, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3177, 3178, 3179, 2931, 3130, 3189, 3190, 3201, 3185, 3186, 3187, 3220, 2877, 473: 3260, 475: 3239, 3258, 479: 3268, 482: 3272, 3276, 485: 3257, 3256, 3295, 492: 3230, 495: 3269, 504: 3275, 3293, 508: 3234, 530: 3264, 564: 3271, 567: 3294, 3349, 570: 3277, 3229, 3231, 3233, 3232, 3261, 3237, 3251, 3242, 3263, 3238, 582: 3270, 3262, 3267, 3273, 3283, 3336, 3284, 3285, 592: 3236, 3314, 595: 3254, 3255, 3309, 3310, 3311, 3312, 3313, 3265, 3291, 3296, 3306, 3307, 3300, 3315, 3316, 3317, 3301, 3319, 3320, 3302, 3318, 3297, 3305, 3303, 3289, 3321, 3322, 3266, 3326, 3278, 3279, 3282, 3325, 3331, 3330, 3332, 3329, 3333, 3328, 3327, 3324, 3274, 3323, 3281, 3280, 3286, 3287, 661: 3244, 2762, 2763, 2761, 709: 3259, 3335, 3245, 3250, 3235, 3308, 3248, 3246, 3247, 3288, 3299, 3298, 3292, 3290, 3304, 3243, 3253, 3334, 3252, 3249, 4106}, + {50: 4113}, + {1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 477: 1128, 1128, 1128, 1128, 1128, 483: 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 492: 1128, 1128, 1128, 496: 1128, 1128, 499: 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 509: 1128, 1128, 512: 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 534: 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 1128, 568: 1128, 1128, 597: 1128}, + {152: 2331, 177: 2331, 196: 2331, 495: 2331, 521: 2331, 547: 2331, 566: 2331, 568: 2331, 2331, 574: 2331, 2331, 586: 2331}, + {152: 2330, 177: 2330, 196: 2330, 495: 2330, 521: 2330, 547: 2330, 566: 2330, 568: 2330, 2330, 574: 2330, 2330, 586: 2330}, + {2: 1918, 1918, 1918, 1918, 1918, 1918, 1918, 10: 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 51: 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 476: 1918, 478: 1918, 1918, 482: 1918, 485: 1918, 1918, 488: 1918, 1918, 1918, 495: 1918, 498: 1918, 507: 1918, 1918, 511: 1918, 533: 1918, 567: 1918, 570: 1918, 1918, 573: 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 585: 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 595: 1918, 1918, 598: 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918, 1918}, // 1560 - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 2840, 2788, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 2869, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 2874, 2801, 2766, 2783, 2948, 3031, 3020, 2818, 2830, 2941, 2942, 2937, 2895, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 2876, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 2760, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 2880, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 2799, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 2866, 2865, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 2936, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 2824, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 2751, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 2882, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 2752, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3144, 2878, 3145, 3146, 2777, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3159, 3160, 3211, 3210, 3057, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 2918, 2935, 3058, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3177, 3178, 3179, 2931, 3130, 3189, 3190, 3201, 3185, 3186, 3187, 3220, 2877, 473: 3260, 475: 3239, 3258, 479: 3268, 482: 3272, 3276, 485: 3257, 3256, 3295, 492: 3230, 495: 3269, 504: 3275, 3293, 508: 3234, 530: 3264, 564: 3271, 567: 3294, 3349, 570: 3277, 3229, 3231, 3233, 3232, 3261, 3237, 3251, 3348, 3263, 3238, 582: 3270, 3262, 3267, 3273, 3283, 3336, 3284, 3285, 592: 3236, 3314, 595: 3254, 3255, 3309, 3310, 3311, 3312, 3313, 3265, 3291, 3296, 3306, 3307, 3300, 3315, 3316, 3317, 3301, 3319, 3320, 3302, 3318, 3297, 3305, 3303, 3289, 3321, 3322, 3266, 3326, 3278, 3279, 3282, 3325, 3331, 3330, 3332, 3329, 3333, 3328, 3327, 3324, 3274, 3323, 3281, 3280, 3286, 3287, 661: 3244, 2762, 2763, 2761, 709: 3259, 3335, 3245, 3250, 3235, 3308, 3248, 3246, 3247, 3288, 3299, 3298, 3292, 3290, 3304, 4102, 3253, 3334, 3252, 3249}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 2840, 2788, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 2869, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 2874, 2801, 2766, 2783, 2948, 3031, 3020, 2818, 2830, 2941, 2942, 2937, 2895, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 2876, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 2760, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 2880, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 2799, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 2866, 2865, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 2936, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 2824, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 2751, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 2882, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 2752, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3144, 2878, 3145, 3146, 2777, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3159, 3160, 3211, 3210, 3057, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 2918, 2935, 3058, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3177, 3178, 3179, 2931, 3130, 3189, 3190, 3201, 3185, 3186, 3187, 3220, 2877, 473: 3260, 475: 3239, 3258, 479: 3268, 482: 3272, 3276, 485: 3257, 3256, 3295, 492: 3230, 495: 3269, 504: 3275, 3293, 508: 3234, 530: 3264, 564: 3271, 567: 3294, 3349, 570: 3277, 3229, 3231, 3233, 3232, 3261, 3237, 3251, 3348, 3263, 3238, 582: 3270, 3262, 3267, 3273, 3283, 3336, 3284, 3285, 592: 3236, 3314, 595: 3254, 3255, 3309, 3310, 3311, 3312, 3313, 3265, 3291, 3296, 3306, 3307, 3300, 3315, 3316, 3317, 3301, 3319, 3320, 3302, 3318, 3297, 3305, 3303, 3289, 3321, 3322, 3266, 3326, 3278, 3279, 3282, 3325, 3331, 3330, 3332, 3329, 3333, 3328, 3327, 3324, 3274, 3323, 3281, 3280, 3286, 3287, 661: 3244, 2762, 2763, 2761, 709: 3259, 3335, 3245, 3250, 3235, 3308, 3248, 3246, 3247, 3288, 3299, 3298, 3292, 3290, 3304, 4101, 3253, 3334, 3252, 3249}, - {2: 1882, 1882, 1882, 1882, 1882, 1882, 1882, 10: 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 50: 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 473: 1882, 475: 1882, 1882, 479: 1882, 482: 1882, 1882, 485: 1882, 1882, 1882, 492: 1882, 495: 1882, 504: 1882, 1882, 508: 1882, 530: 1882, 564: 1882, 567: 1882, 1882, 570: 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 582: 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 592: 1882, 1882, 595: 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882, 1882}, - {2: 1881, 1881, 1881, 1881, 1881, 1881, 1881, 10: 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 50: 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 473: 1881, 475: 1881, 1881, 479: 1881, 482: 1881, 1881, 485: 1881, 1881, 1881, 492: 1881, 495: 1881, 504: 1881, 1881, 508: 1881, 530: 1881, 564: 1881, 567: 1881, 1881, 570: 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 582: 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 592: 1881, 1881, 595: 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881, 1881}, - {1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 474: 1884, 1884, 478: 1884, 480: 1884, 1884, 1884, 1884, 3350, 489: 1884, 1884, 1884, 493: 1884, 1884, 496: 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 506: 1884, 1884, 509: 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 519: 1884, 521: 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 531: 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 545: 1884, 1884, 555: 1884, 1884, 1884, 1884, 1884, 1884, 1884, 1884, 594: 3351}, + {521: 4141, 547: 4140, 566: 4139, 568: 4125, 4126, 1120: 4142}, + {476: 1914}, + {2: 1912, 1912, 1912, 1912, 1912, 1912, 1912, 10: 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 51: 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 476: 1912, 478: 1912, 1912, 482: 1912, 485: 1912, 1912, 488: 1912, 1912, 1912, 495: 1912, 498: 1912, 507: 1912, 1912, 511: 1912, 533: 1912, 567: 1912, 570: 1912, 1912, 573: 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 585: 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 595: 1912, 1912, 598: 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912}, + {2: 1910, 1910, 1910, 1910, 1910, 1910, 1910, 10: 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 51: 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 476: 1910, 478: 1910, 1910, 482: 1910, 485: 1910, 1910, 488: 1910, 1910, 1910, 495: 1910, 498: 1910, 507: 1910, 1910, 511: 1910, 533: 1910, 567: 1910, 570: 1910, 1910, 573: 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 585: 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 595: 1910, 1910, 598: 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910, 1910}, + {476: 4135, 713: 4136}, // 1565 - {1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 4104, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 474: 1880, 1880, 478: 1880, 480: 1880, 1880, 1880, 1880, 3350, 489: 1880, 1880, 1880, 493: 1880, 1880, 496: 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 506: 1880, 1880, 509: 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 519: 1880, 521: 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 531: 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 545: 1880, 1880, 555: 1880, 1880, 1880, 1880, 1880, 1880, 1880, 1880, 594: 3351, 1242: 4103}, - {1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 474: 1885, 1885, 478: 1885, 480: 1885, 1885, 1885, 1885, 489: 1885, 1885, 1885, 493: 1885, 1885, 496: 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 506: 1885, 1885, 509: 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 519: 1885, 521: 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 531: 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885, 545: 1885, 1885, 555: 1885, 1885, 1885, 1885, 1885, 1885, 1885, 1885}, - {475: 4105}, - {1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 474: 1879, 1879, 478: 1879, 480: 1879, 1879, 1879, 1879, 489: 1879, 1879, 1879, 493: 1879, 1879, 496: 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 506: 1879, 1879, 509: 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 519: 1879, 521: 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 531: 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879, 545: 1879, 1879, 555: 1879, 1879, 1879, 1879, 1879, 1879, 1879, 1879}, - {485: 3686, 3687, 3692, 507: 4107, 520: 3688, 547: 3689, 3690, 3683, 3693, 3682, 3691, 3684, 3685}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 2864, 2812, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 2893, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 2898, 2825, 2789, 2807, 2972, 3055, 3044, 2842, 2854, 2965, 2966, 2961, 2919, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 2900, 2885, 2881, 2973, 2997, 2783, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 2904, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 2823, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 2889, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 2890, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 2960, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 2848, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 2774, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 2906, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 2775, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3170, 2902, 3171, 3172, 2801, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3185, 3186, 3237, 3236, 3081, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 2942, 2959, 3082, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3203, 3204, 3205, 2955, 3156, 3215, 3216, 3227, 3211, 3212, 3213, 3246, 2901, 476: 3286, 478: 3265, 3284, 482: 3294, 485: 3298, 3302, 488: 3283, 3282, 3321, 495: 3256, 498: 3295, 507: 3301, 3319, 511: 3260, 533: 3290, 567: 3297, 570: 3320, 3375, 573: 3303, 3255, 3257, 3259, 3258, 3287, 3263, 3277, 3268, 3289, 3264, 585: 3296, 3288, 3293, 3299, 3309, 3362, 3310, 3311, 595: 3262, 3340, 598: 3280, 3281, 3335, 3336, 3337, 3338, 3339, 3291, 3317, 3322, 3332, 3333, 3326, 3341, 3342, 3343, 3327, 3345, 3346, 3328, 3344, 3323, 3331, 3329, 3315, 3347, 3348, 3292, 3352, 3304, 3305, 3308, 3351, 3357, 3356, 3358, 3355, 3359, 3354, 3353, 3350, 3300, 3349, 3307, 3306, 3312, 3313, 664: 3270, 2785, 2786, 2784, 713: 3285, 3361, 3271, 3276, 3261, 3334, 3274, 3272, 3273, 3314, 3325, 3324, 3318, 3316, 3330, 3269, 3279, 3360, 3278, 3275, 4132}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 2864, 2812, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 2893, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 2898, 2825, 2789, 2807, 2972, 3055, 3044, 2842, 2854, 2965, 2966, 2961, 2919, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 2900, 2885, 2881, 2973, 2997, 2783, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 2904, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 2823, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 2889, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 2890, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 2960, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 2848, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 2774, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 2906, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 2775, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3170, 2902, 3171, 3172, 2801, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3185, 3186, 3237, 3236, 3081, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 2942, 2959, 3082, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3203, 3204, 3205, 2955, 3156, 3215, 3216, 3227, 3211, 3212, 3213, 3246, 2901, 476: 3286, 478: 3265, 3284, 482: 3294, 485: 3298, 3302, 488: 3283, 3282, 3321, 495: 3256, 498: 3295, 507: 3301, 3319, 511: 3260, 533: 3290, 567: 3297, 570: 3320, 3375, 573: 3303, 3255, 3257, 3259, 3258, 3287, 3263, 3277, 3374, 3289, 3264, 585: 3296, 3288, 3293, 3299, 3309, 3362, 3310, 3311, 595: 3262, 3340, 598: 3280, 3281, 3335, 3336, 3337, 3338, 3339, 3291, 3317, 3322, 3332, 3333, 3326, 3341, 3342, 3343, 3327, 3345, 3346, 3328, 3344, 3323, 3331, 3329, 3315, 3347, 3348, 3292, 3352, 3304, 3305, 3308, 3351, 3357, 3356, 3358, 3355, 3359, 3354, 3353, 3350, 3300, 3349, 3307, 3306, 3312, 3313, 664: 3270, 2785, 2786, 2784, 713: 3285, 3361, 3271, 3276, 3261, 3334, 3274, 3272, 3273, 3314, 3325, 3324, 3318, 3316, 3330, 4128, 3279, 3360, 3278, 3275}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 2864, 2812, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 2893, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 2898, 2825, 2789, 2807, 2972, 3055, 3044, 2842, 2854, 2965, 2966, 2961, 2919, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 2900, 2885, 2881, 2973, 2997, 2783, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 2904, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 2823, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 2889, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 2890, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 2960, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 2848, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 2774, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 2906, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 2775, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3170, 2902, 3171, 3172, 2801, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3185, 3186, 3237, 3236, 3081, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 2942, 2959, 3082, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3203, 3204, 3205, 2955, 3156, 3215, 3216, 3227, 3211, 3212, 3213, 3246, 2901, 476: 3286, 478: 3265, 3284, 482: 3294, 485: 3298, 3302, 488: 3283, 3282, 3321, 495: 3256, 498: 3295, 507: 3301, 3319, 511: 3260, 533: 3290, 567: 3297, 570: 3320, 3375, 573: 3303, 3255, 3257, 3259, 3258, 3287, 3263, 3277, 3374, 3289, 3264, 585: 3296, 3288, 3293, 3299, 3309, 3362, 3310, 3311, 595: 3262, 3340, 598: 3280, 3281, 3335, 3336, 3337, 3338, 3339, 3291, 3317, 3322, 3332, 3333, 3326, 3341, 3342, 3343, 3327, 3345, 3346, 3328, 3344, 3323, 3331, 3329, 3315, 3347, 3348, 3292, 3352, 3304, 3305, 3308, 3351, 3357, 3356, 3358, 3355, 3359, 3354, 3353, 3350, 3300, 3349, 3307, 3306, 3312, 3313, 664: 3270, 2785, 2786, 2784, 713: 3285, 3361, 3271, 3276, 3261, 3334, 3274, 3272, 3273, 3314, 3325, 3324, 3318, 3316, 3330, 4127, 3279, 3360, 3278, 3275}, + {2: 1899, 1899, 1899, 1899, 1899, 1899, 1899, 10: 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 51: 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 476: 1899, 478: 1899, 1899, 482: 1899, 485: 1899, 1899, 488: 1899, 1899, 1899, 495: 1899, 498: 1899, 507: 1899, 1899, 511: 1899, 533: 1899, 567: 1899, 570: 1899, 1899, 573: 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 585: 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 595: 1899, 1899, 598: 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899, 1899}, + {2: 1898, 1898, 1898, 1898, 1898, 1898, 1898, 10: 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 51: 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 476: 1898, 478: 1898, 1898, 482: 1898, 485: 1898, 1898, 488: 1898, 1898, 1898, 495: 1898, 498: 1898, 507: 1898, 1898, 511: 1898, 533: 1898, 567: 1898, 570: 1898, 1898, 573: 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 585: 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 595: 1898, 1898, 598: 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898, 1898}, // 1570 - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 2840, 2788, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 2869, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 2874, 2801, 2766, 2783, 2948, 3031, 3020, 2818, 2830, 2941, 2942, 2937, 2895, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 2876, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 2760, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 2880, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 2799, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 2866, 2865, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 2936, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 2824, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 2751, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 2882, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 2752, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3144, 2878, 3145, 3146, 2777, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3159, 3160, 3211, 3210, 3057, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 2918, 2935, 3058, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3177, 3178, 3179, 2931, 3130, 3189, 3190, 3201, 3185, 3186, 3187, 3220, 2877, 473: 3260, 475: 3239, 3258, 479: 3268, 482: 3272, 3276, 485: 3257, 3256, 3295, 492: 3230, 495: 3269, 504: 3275, 3293, 508: 3234, 530: 3264, 564: 3271, 567: 3294, 3349, 570: 3277, 3229, 3231, 3233, 3232, 3261, 3237, 3251, 3242, 3263, 3238, 582: 3270, 3262, 3267, 3273, 3283, 3336, 3284, 3285, 592: 3236, 3314, 595: 3254, 3255, 3309, 3310, 3311, 3312, 3313, 3265, 3291, 3296, 3306, 3307, 3300, 3315, 3316, 3317, 3301, 3319, 3320, 3302, 3318, 3297, 3305, 3303, 3289, 3321, 3322, 3266, 3326, 3278, 3279, 3282, 3325, 3331, 3330, 3332, 3329, 3333, 3328, 3327, 3324, 3274, 3323, 3281, 3280, 3286, 3287, 661: 3244, 2762, 2763, 2761, 709: 3259, 3335, 3245, 3250, 3235, 3308, 3248, 3246, 3247, 3288, 3299, 3298, 3292, 3290, 3304, 3243, 3253, 3334, 3252, 3249, 2759, 4108}, - {1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 474: 1886, 1886, 478: 1886, 480: 1886, 1886, 1886, 1886, 489: 1886, 1886, 1886, 493: 1886, 1886, 496: 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 506: 1886, 1886, 509: 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 519: 1886, 521: 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 531: 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886, 545: 1886, 1886, 555: 1886, 1886, 1886, 1886, 1886, 1886, 1886, 1886}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 2840, 2788, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 2869, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 2874, 2801, 2766, 2783, 2948, 3031, 3020, 2818, 2830, 2941, 2942, 2937, 2895, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 2876, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 2760, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 2880, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 2799, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 2866, 2865, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 2936, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 2824, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 2751, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 2882, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 2752, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3144, 2878, 3145, 3146, 2777, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3159, 3160, 3211, 3210, 3057, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 2918, 2935, 3058, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3177, 3178, 3179, 2931, 3130, 3189, 3190, 3201, 3185, 3186, 3187, 3220, 2877, 473: 3260, 2587, 3239, 3258, 2755, 479: 3268, 482: 3272, 3276, 485: 3257, 3256, 3295, 492: 3230, 495: 3879, 504: 3275, 3293, 508: 3234, 530: 3264, 564: 3271, 567: 3294, 2753, 2585, 3277, 3229, 3231, 3233, 3232, 3261, 3237, 3251, 3242, 3263, 3238, 582: 3270, 3262, 3267, 3273, 3283, 3336, 3284, 3285, 592: 3236, 3314, 595: 3254, 3255, 3309, 3310, 3311, 3312, 3313, 3265, 3291, 3296, 3306, 3307, 3300, 3315, 3316, 3317, 3301, 3319, 3320, 3302, 3318, 3297, 3305, 3303, 3289, 3321, 3322, 3266, 3326, 3278, 3279, 3282, 3325, 3331, 3330, 3332, 3329, 3333, 3328, 3327, 3324, 3274, 3323, 3281, 3280, 3286, 3287, 646: 2581, 648: 2756, 661: 3244, 2762, 2763, 2761, 709: 3878, 3335, 3245, 3250, 3235, 3308, 3248, 3246, 3247, 3288, 3299, 3298, 3292, 3290, 3304, 3243, 3253, 3334, 3252, 3249, 2759, 2758, 2757, 3588, 748: 3881, 2582, 2583, 2584, 2593, 756: 2591, 2590, 2589, 3880, 3883, 3882, 778: 4111}, - {1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 474: 1887, 1887, 478: 1887, 480: 1887, 1887, 1887, 1887, 489: 1887, 1887, 1887, 493: 1887, 1887, 496: 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 506: 1887, 1887, 509: 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 519: 1887, 521: 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 531: 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887, 545: 1887, 1887, 555: 1887, 1887, 1887, 1887, 1887, 1887, 1887, 1887}, - {9: 3590, 49: 4112}, + {1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 477: 1901, 1901, 481: 1901, 483: 1901, 1901, 1901, 1901, 3376, 492: 1901, 1901, 1901, 496: 1901, 1901, 499: 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 509: 1901, 1901, 512: 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 522: 1901, 524: 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 534: 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 548: 1901, 1901, 558: 1901, 1901, 1901, 1901, 1901, 1901, 1901, 1901, 597: 3377}, + {1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 4130, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 477: 1897, 1897, 481: 1897, 483: 1897, 1897, 1897, 1897, 3376, 492: 1897, 1897, 1897, 496: 1897, 1897, 499: 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 509: 1897, 1897, 512: 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 522: 1897, 524: 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 534: 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 548: 1897, 1897, 558: 1897, 1897, 1897, 1897, 1897, 1897, 1897, 1897, 597: 3377, 1250: 4129}, + {1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 477: 1902, 1902, 481: 1902, 483: 1902, 1902, 1902, 1902, 492: 1902, 1902, 1902, 496: 1902, 1902, 499: 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 509: 1902, 1902, 512: 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 522: 1902, 524: 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 534: 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 548: 1902, 1902, 558: 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902}, + {478: 4131}, + {1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 477: 1896, 1896, 481: 1896, 483: 1896, 1896, 1896, 1896, 492: 1896, 1896, 1896, 496: 1896, 1896, 499: 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 509: 1896, 1896, 512: 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 522: 1896, 524: 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 534: 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896, 548: 1896, 1896, 558: 1896, 1896, 1896, 1896, 1896, 1896, 1896, 1896}, // 1575 - {1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 474: 1888, 1888, 478: 1888, 480: 1888, 1888, 1888, 1888, 489: 1888, 1888, 1888, 493: 1888, 1888, 496: 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 506: 1888, 1888, 509: 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 519: 1888, 521: 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 531: 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888, 545: 1888, 1888, 555: 1888, 1888, 1888, 1888, 1888, 1888, 1888, 1888}, - {2: 1900, 1900, 1900, 1900, 1900, 1900, 1900, 10: 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 50: 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 473: 1900, 475: 1900, 1900, 479: 1900, 482: 1900, 1900, 485: 1900, 1900, 1900, 492: 1900, 495: 1900, 504: 1900, 1900, 508: 1900, 530: 1900, 564: 1900, 567: 1900, 1900, 570: 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 582: 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 592: 1900, 1900, 595: 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900, 1900}, - {473: 1896}, - {2: 1894, 1894, 1894, 1894, 1894, 1894, 1894, 10: 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 50: 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 473: 1894, 475: 1894, 1894, 479: 1894, 482: 1894, 1894, 485: 1894, 1894, 1894, 492: 1894, 495: 1894, 504: 1894, 1894, 508: 1894, 530: 1894, 564: 1894, 567: 1894, 1894, 570: 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 582: 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 592: 1894, 1894, 595: 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894, 1894}, - {2: 1892, 1892, 1892, 1892, 1892, 1892, 1892, 10: 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 50: 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 473: 1892, 475: 1892, 1892, 479: 1892, 482: 1892, 1892, 485: 1892, 1892, 1892, 492: 1892, 495: 1892, 504: 1892, 1892, 508: 1892, 530: 1892, 564: 1892, 567: 1892, 1892, 570: 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 582: 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 592: 1892, 1892, 595: 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892, 1892}, + {488: 3712, 3713, 3718, 510: 4133, 523: 3714, 550: 3715, 3716, 3709, 3719, 3708, 3717, 3710, 3711}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 2864, 2812, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 2893, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 2898, 2825, 2789, 2807, 2972, 3055, 3044, 2842, 2854, 2965, 2966, 2961, 2919, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 2900, 2885, 2881, 2973, 2997, 2783, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 2904, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 2823, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 2889, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 2890, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 2960, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 2848, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 2774, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 2906, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 2775, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3170, 2902, 3171, 3172, 2801, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3185, 3186, 3237, 3236, 3081, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 2942, 2959, 3082, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3203, 3204, 3205, 2955, 3156, 3215, 3216, 3227, 3211, 3212, 3213, 3246, 2901, 476: 3286, 478: 3265, 3284, 482: 3294, 485: 3298, 3302, 488: 3283, 3282, 3321, 495: 3256, 498: 3295, 507: 3301, 3319, 511: 3260, 533: 3290, 567: 3297, 570: 3320, 3375, 573: 3303, 3255, 3257, 3259, 3258, 3287, 3263, 3277, 3268, 3289, 3264, 585: 3296, 3288, 3293, 3299, 3309, 3362, 3310, 3311, 595: 3262, 3340, 598: 3280, 3281, 3335, 3336, 3337, 3338, 3339, 3291, 3317, 3322, 3332, 3333, 3326, 3341, 3342, 3343, 3327, 3345, 3346, 3328, 3344, 3323, 3331, 3329, 3315, 3347, 3348, 3292, 3352, 3304, 3305, 3308, 3351, 3357, 3356, 3358, 3355, 3359, 3354, 3353, 3350, 3300, 3349, 3307, 3306, 3312, 3313, 664: 3270, 2785, 2786, 2784, 713: 3285, 3361, 3271, 3276, 3261, 3334, 3274, 3272, 3273, 3314, 3325, 3324, 3318, 3316, 3330, 3269, 3279, 3360, 3278, 3275, 2782, 4134}, + {1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 477: 1903, 1903, 481: 1903, 483: 1903, 1903, 1903, 1903, 492: 1903, 1903, 1903, 496: 1903, 1903, 499: 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 509: 1903, 1903, 512: 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 522: 1903, 524: 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 534: 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 548: 1903, 1903, 558: 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 2864, 2812, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 2893, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 2898, 2825, 2789, 2807, 2972, 3055, 3044, 2842, 2854, 2965, 2966, 2961, 2919, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 2900, 2885, 2881, 2973, 2997, 2783, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 2904, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 2823, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 2889, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 2890, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 2960, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 2848, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 2774, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 2906, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 2775, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3170, 2902, 3171, 3172, 2801, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3185, 3186, 3237, 3236, 3081, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 2942, 2959, 3082, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3203, 3204, 3205, 2955, 3156, 3215, 3216, 3227, 3211, 3212, 3213, 3246, 2901, 476: 3286, 2607, 3265, 3284, 2778, 482: 3294, 485: 3298, 3302, 488: 3283, 3282, 3321, 495: 3256, 498: 3905, 507: 3301, 3319, 511: 3260, 533: 3290, 567: 3297, 570: 3320, 2776, 2605, 3303, 3255, 3257, 3259, 3258, 3287, 3263, 3277, 3268, 3289, 3264, 585: 3296, 3288, 3293, 3299, 3309, 3362, 3310, 3311, 595: 3262, 3340, 598: 3280, 3281, 3335, 3336, 3337, 3338, 3339, 3291, 3317, 3322, 3332, 3333, 3326, 3341, 3342, 3343, 3327, 3345, 3346, 3328, 3344, 3323, 3331, 3329, 3315, 3347, 3348, 3292, 3352, 3304, 3305, 3308, 3351, 3357, 3356, 3358, 3355, 3359, 3354, 3353, 3350, 3300, 3349, 3307, 3306, 3312, 3313, 649: 2601, 651: 2779, 664: 3270, 2785, 2786, 2784, 713: 3904, 3361, 3271, 3276, 3261, 3334, 3274, 3272, 3273, 3314, 3325, 3324, 3318, 3316, 3330, 3269, 3279, 3360, 3278, 3275, 2782, 2781, 2780, 3614, 752: 3907, 2602, 2603, 2604, 2613, 760: 2611, 2610, 2609, 3906, 3909, 3908, 782: 4137}, + {1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 477: 1904, 1904, 481: 1904, 483: 1904, 1904, 1904, 1904, 492: 1904, 1904, 1904, 496: 1904, 1904, 499: 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 509: 1904, 1904, 512: 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 522: 1904, 524: 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 534: 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 548: 1904, 1904, 558: 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904}, // 1580 - {175: 4140, 492: 4141, 571: 4139, 4138}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 2840, 2788, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 2869, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 2874, 2801, 2766, 2783, 2948, 3031, 3020, 2818, 2830, 2941, 2942, 2937, 2895, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 2876, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 2760, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 2880, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 2799, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 2866, 2865, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 2936, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 2824, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 2751, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 2882, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 2752, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3144, 4132, 3145, 3146, 2777, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3159, 3160, 3211, 3210, 3057, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 2918, 2935, 3058, 2951, 4133, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3177, 3178, 3179, 2931, 3130, 3189, 3190, 3201, 3185, 3186, 3187, 3220, 2877, 473: 3260, 475: 3239, 3258, 479: 3268, 482: 3272, 3276, 485: 3257, 3256, 3295, 492: 3230, 495: 3269, 504: 3275, 3293, 508: 3234, 530: 3264, 564: 3271, 567: 3294, 4131, 570: 3277, 3229, 3231, 3233, 3232, 3261, 3237, 3251, 3242, 3263, 3238, 582: 3270, 3262, 3267, 3273, 3283, 3336, 3284, 3285, 592: 3236, 3314, 595: 3254, 3255, 3309, 3310, 3311, 3312, 3313, 3265, 3291, 3296, 3306, 3307, 3300, 3315, 3316, 3317, 3301, 3319, 3320, 3302, 3318, 3297, 3305, 3303, 3289, 3321, 3322, 3266, 3326, 3278, 3279, 3282, 3325, 3331, 3330, 3332, 3329, 3333, 3328, 3327, 3324, 3274, 3323, 3281, 3280, 3286, 3287, 651: 4134, 661: 3244, 2762, 2763, 2761, 709: 3259, 3335, 3245, 3250, 3235, 3308, 3248, 3246, 3247, 3288, 3299, 3298, 3292, 3290, 3304, 3243, 3253, 3334, 3252, 3249, 2759, 4129, 1174: 4130}, - {2: 1909, 1909, 1909, 1909, 1909, 1909, 1909, 10: 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 50: 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 473: 1909, 475: 1909, 1909, 479: 1909, 482: 1909, 1909, 485: 1909, 1909, 1909, 492: 1909, 495: 1909, 504: 1909, 1909, 508: 1909, 530: 1909, 564: 1909, 567: 1909, 1909, 570: 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 582: 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 592: 1909, 1909, 595: 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 651: 1909}, - {2: 1908, 1908, 1908, 1908, 1908, 1908, 1908, 10: 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 50: 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 473: 1908, 475: 1908, 1908, 479: 1908, 482: 1908, 1908, 485: 1908, 1908, 1908, 492: 1908, 495: 1908, 504: 1908, 1908, 508: 1908, 530: 1908, 564: 1908, 567: 1908, 1908, 570: 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 582: 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 592: 1908, 1908, 595: 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 1908, 651: 1908}, - {2: 1907, 1907, 1907, 1907, 1907, 1907, 1907, 10: 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 50: 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 473: 1907, 475: 1907, 1907, 479: 1907, 482: 1907, 1907, 485: 1907, 1907, 1907, 492: 1907, 495: 1907, 504: 1907, 1907, 508: 1907, 530: 1907, 564: 1907, 567: 1907, 1907, 570: 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 582: 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 592: 1907, 1907, 595: 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 1907, 651: 1907}, + {9: 3616, 50: 4138}, + {1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 477: 1905, 1905, 481: 1905, 483: 1905, 1905, 1905, 1905, 492: 1905, 1905, 1905, 496: 1905, 1905, 499: 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 509: 1905, 1905, 512: 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 522: 1905, 524: 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 534: 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 548: 1905, 1905, 558: 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905}, + {2: 1917, 1917, 1917, 1917, 1917, 1917, 1917, 10: 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 51: 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 476: 1917, 478: 1917, 1917, 482: 1917, 485: 1917, 1917, 488: 1917, 1917, 1917, 495: 1917, 498: 1917, 507: 1917, 1917, 511: 1917, 533: 1917, 567: 1917, 570: 1917, 1917, 573: 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 585: 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 595: 1917, 1917, 598: 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917, 1917}, + {476: 1913}, + {2: 1911, 1911, 1911, 1911, 1911, 1911, 1911, 10: 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 51: 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 476: 1911, 478: 1911, 1911, 482: 1911, 485: 1911, 1911, 488: 1911, 1911, 1911, 495: 1911, 498: 1911, 507: 1911, 1911, 511: 1911, 533: 1911, 567: 1911, 570: 1911, 1911, 573: 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 585: 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 595: 1911, 1911, 598: 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911}, // 1585 - {2: 1906, 1906, 1906, 1906, 1906, 1906, 1906, 10: 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 50: 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 473: 1906, 475: 1906, 1906, 479: 1906, 482: 1906, 1906, 485: 1906, 1906, 1906, 492: 1906, 495: 1906, 504: 1906, 1906, 508: 1906, 530: 1906, 564: 1906, 567: 1906, 1906, 570: 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 582: 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 592: 1906, 1906, 595: 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 1906, 651: 1906}, - {2: 1905, 1905, 1905, 1905, 1905, 1905, 1905, 10: 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 50: 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 473: 1905, 475: 1905, 1905, 479: 1905, 482: 1905, 1905, 485: 1905, 1905, 1905, 492: 1905, 495: 1905, 504: 1905, 1905, 508: 1905, 530: 1905, 564: 1905, 567: 1905, 1905, 570: 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 582: 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 592: 1905, 1905, 595: 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 1905, 651: 1905}, - {2: 1904, 1904, 1904, 1904, 1904, 1904, 1904, 10: 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 50: 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 473: 1904, 475: 1904, 1904, 479: 1904, 482: 1904, 1904, 485: 1904, 1904, 1904, 492: 1904, 495: 1904, 504: 1904, 1904, 508: 1904, 530: 1904, 564: 1904, 567: 1904, 1904, 570: 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 582: 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 592: 1904, 1904, 595: 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 1904, 651: 1904}, - {2: 1903, 1903, 1903, 1903, 1903, 1903, 1903, 10: 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 50: 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 473: 1903, 475: 1903, 1903, 479: 1903, 482: 1903, 1903, 485: 1903, 1903, 1903, 492: 1903, 495: 1903, 504: 1903, 1903, 508: 1903, 530: 1903, 564: 1903, 567: 1903, 1903, 570: 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 582: 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 592: 1903, 1903, 595: 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 1903, 651: 1903}, - {2: 1902, 1902, 1902, 1902, 1902, 1902, 1902, 10: 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 50: 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 473: 1902, 475: 1902, 1902, 479: 1902, 482: 1902, 1902, 485: 1902, 1902, 1902, 492: 1902, 495: 1902, 504: 1902, 1902, 508: 1902, 530: 1902, 564: 1902, 567: 1902, 1902, 570: 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 582: 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 592: 1902, 1902, 595: 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 1902, 651: 1902}, + {2: 1909, 1909, 1909, 1909, 1909, 1909, 1909, 10: 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 51: 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 476: 1909, 478: 1909, 1909, 482: 1909, 485: 1909, 1909, 488: 1909, 1909, 1909, 495: 1909, 498: 1909, 507: 1909, 1909, 511: 1909, 533: 1909, 567: 1909, 570: 1909, 1909, 573: 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 585: 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 595: 1909, 1909, 598: 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909, 1909}, + {177: 4166, 495: 4167, 574: 4165, 4164}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 2864, 2812, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 2893, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 2898, 2825, 2789, 2807, 2972, 3055, 3044, 2842, 2854, 2965, 2966, 2961, 2919, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 2900, 2885, 2881, 2973, 2997, 2783, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 2904, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 2823, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 2889, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 2890, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 2960, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 2848, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 2774, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 2906, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 2775, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3170, 4158, 3171, 3172, 2801, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3185, 3186, 3237, 3236, 3081, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 2942, 2959, 3082, 2975, 4159, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3203, 3204, 3205, 2955, 3156, 3215, 3216, 3227, 3211, 3212, 3213, 3246, 2901, 476: 3286, 478: 3265, 3284, 482: 3294, 485: 3298, 3302, 488: 3283, 3282, 3321, 495: 3256, 498: 3295, 507: 3301, 3319, 511: 3260, 533: 3290, 567: 3297, 570: 3320, 4157, 573: 3303, 3255, 3257, 3259, 3258, 3287, 3263, 3277, 3268, 3289, 3264, 585: 3296, 3288, 3293, 3299, 3309, 3362, 3310, 3311, 595: 3262, 3340, 598: 3280, 3281, 3335, 3336, 3337, 3338, 3339, 3291, 3317, 3322, 3332, 3333, 3326, 3341, 3342, 3343, 3327, 3345, 3346, 3328, 3344, 3323, 3331, 3329, 3315, 3347, 3348, 3292, 3352, 3304, 3305, 3308, 3351, 3357, 3356, 3358, 3355, 3359, 3354, 3353, 3350, 3300, 3349, 3307, 3306, 3312, 3313, 654: 4160, 664: 3270, 2785, 2786, 2784, 713: 3285, 3361, 3271, 3276, 3261, 3334, 3274, 3272, 3273, 3314, 3325, 3324, 3318, 3316, 3330, 3269, 3279, 3360, 3278, 3275, 2782, 4155, 1183: 4156}, + {2: 1926, 1926, 1926, 1926, 1926, 1926, 1926, 10: 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 51: 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 476: 1926, 478: 1926, 1926, 482: 1926, 485: 1926, 1926, 488: 1926, 1926, 1926, 495: 1926, 498: 1926, 507: 1926, 1926, 511: 1926, 533: 1926, 567: 1926, 570: 1926, 1926, 573: 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 585: 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 595: 1926, 1926, 598: 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 1926, 654: 1926}, + {2: 1925, 1925, 1925, 1925, 1925, 1925, 1925, 10: 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 51: 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 476: 1925, 478: 1925, 1925, 482: 1925, 485: 1925, 1925, 488: 1925, 1925, 1925, 495: 1925, 498: 1925, 507: 1925, 1925, 511: 1925, 533: 1925, 567: 1925, 570: 1925, 1925, 573: 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 585: 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 595: 1925, 1925, 598: 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 1925, 654: 1925}, // 1590 - {175: 1899, 476: 4089, 4088, 492: 1899, 571: 1899, 1899, 810: 4128}, - {175: 1898, 492: 1898, 571: 1898, 1898}, - {1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 474: 1913, 1913, 478: 1913, 480: 1913, 1913, 1913, 1913, 489: 1913, 1913, 1913, 493: 1913, 1913, 496: 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 506: 1913, 1913, 509: 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 519: 1913, 521: 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 531: 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913, 545: 1913, 1913, 555: 1913, 1913, 1913, 1913, 1913, 1913, 1913, 1913}, - {473: 2588, 709: 4137}, - {748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 474: 748, 748, 748, 748, 748, 480: 748, 748, 748, 748, 748, 748, 748, 748, 489: 748, 748, 748, 493: 748, 748, 496: 748, 748, 748, 748, 748, 748, 748, 748, 506: 748, 748, 509: 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 531: 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 748, 565: 748, 748, 594: 748, 659: 4135}, + {2: 1924, 1924, 1924, 1924, 1924, 1924, 1924, 10: 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 51: 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 476: 1924, 478: 1924, 1924, 482: 1924, 485: 1924, 1924, 488: 1924, 1924, 1924, 495: 1924, 498: 1924, 507: 1924, 1924, 511: 1924, 533: 1924, 567: 1924, 570: 1924, 1924, 573: 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 585: 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 595: 1924, 1924, 598: 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 1924, 654: 1924}, + {2: 1923, 1923, 1923, 1923, 1923, 1923, 1923, 10: 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 51: 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 476: 1923, 478: 1923, 1923, 482: 1923, 485: 1923, 1923, 488: 1923, 1923, 1923, 495: 1923, 498: 1923, 507: 1923, 1923, 511: 1923, 533: 1923, 567: 1923, 570: 1923, 1923, 573: 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 585: 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 595: 1923, 1923, 598: 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 1923, 654: 1923}, + {2: 1922, 1922, 1922, 1922, 1922, 1922, 1922, 10: 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 51: 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 476: 1922, 478: 1922, 1922, 482: 1922, 485: 1922, 1922, 488: 1922, 1922, 1922, 495: 1922, 498: 1922, 507: 1922, 1922, 511: 1922, 533: 1922, 567: 1922, 570: 1922, 1922, 573: 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 585: 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 595: 1922, 1922, 598: 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 1922, 654: 1922}, + {2: 1921, 1921, 1921, 1921, 1921, 1921, 1921, 10: 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 51: 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 476: 1921, 478: 1921, 1921, 482: 1921, 485: 1921, 1921, 488: 1921, 1921, 1921, 495: 1921, 498: 1921, 507: 1921, 1921, 511: 1921, 533: 1921, 567: 1921, 570: 1921, 1921, 573: 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 585: 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 595: 1921, 1921, 598: 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 1921, 654: 1921}, + {2: 1920, 1920, 1920, 1920, 1920, 1920, 1920, 10: 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 51: 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 476: 1920, 478: 1920, 1920, 482: 1920, 485: 1920, 1920, 488: 1920, 1920, 1920, 495: 1920, 498: 1920, 507: 1920, 1920, 511: 1920, 533: 1920, 567: 1920, 570: 1920, 1920, 573: 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 585: 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 595: 1920, 1920, 598: 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 1920, 654: 1920}, // 1595 - {1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1891, 1714, 1714, 1714, 1714, 1714, 480: 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 489: 1714, 1714, 1714, 493: 1714, 1714, 496: 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 506: 1714, 1714, 509: 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 531: 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 1714, 565: 1714, 1714, 594: 1714, 652: 1714, 656: 1714, 1714}, - {1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1890, 1713, 1713, 1713, 1713, 1713, 480: 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 489: 1713, 1713, 1713, 493: 1713, 1713, 496: 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 506: 1713, 1713, 509: 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 531: 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 1713, 565: 1713, 1713, 594: 1713, 652: 1713, 656: 1713, 1713}, - {473: 1889}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 2840, 2788, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 2869, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 2874, 2801, 2766, 2783, 2948, 3031, 3020, 2818, 2830, 2941, 2942, 2937, 2895, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 2876, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 2760, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 2880, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 2799, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 2866, 2865, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 2936, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 2824, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 2751, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 2882, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 2752, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3144, 2878, 3145, 3146, 2777, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3159, 3160, 3211, 3210, 3057, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 2918, 2935, 3058, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3177, 3178, 3179, 2931, 3130, 3189, 3190, 3201, 3185, 3186, 3187, 3220, 2877, 473: 3260, 475: 3239, 3258, 479: 3268, 482: 3272, 3276, 485: 3257, 3256, 3295, 492: 3230, 495: 3269, 504: 3275, 3293, 508: 3234, 530: 3264, 564: 3271, 567: 3294, 3349, 570: 3277, 3229, 3231, 3233, 3232, 3261, 3237, 3251, 3242, 3263, 3238, 582: 3270, 3262, 3267, 3273, 3283, 3336, 3284, 3285, 592: 3236, 3314, 595: 3254, 3255, 3309, 3310, 3311, 3312, 3313, 3265, 3291, 3296, 3306, 3307, 3300, 3315, 3316, 3317, 3301, 3319, 3320, 3302, 3318, 3297, 3305, 3303, 3289, 3321, 3322, 3266, 3326, 3278, 3279, 3282, 3325, 3331, 3330, 3332, 3329, 3333, 3328, 3327, 3324, 3274, 3323, 3281, 3280, 3286, 3287, 661: 3244, 2762, 2763, 2761, 709: 3259, 3335, 3245, 3250, 3235, 3308, 3248, 3246, 3247, 3288, 3299, 3298, 3292, 3290, 3304, 3243, 3253, 3334, 3252, 3249, 2759, 4136}, - {1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 474: 1911, 1911, 478: 1911, 480: 1911, 1911, 1911, 1911, 489: 1911, 1911, 1911, 493: 1911, 1911, 496: 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 506: 1911, 1911, 509: 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 519: 1911, 521: 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 531: 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911, 545: 1911, 1911, 555: 1911, 1911, 1911, 1911, 1911, 1911, 1911, 1911}, + {2: 1919, 1919, 1919, 1919, 1919, 1919, 1919, 10: 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 51: 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 476: 1919, 478: 1919, 1919, 482: 1919, 485: 1919, 1919, 488: 1919, 1919, 1919, 495: 1919, 498: 1919, 507: 1919, 1919, 511: 1919, 533: 1919, 567: 1919, 570: 1919, 1919, 573: 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 585: 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 595: 1919, 1919, 598: 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 1919, 654: 1919}, + {177: 1916, 479: 4115, 4114, 495: 1916, 574: 1916, 1916, 815: 4154}, + {177: 1915, 495: 1915, 574: 1915, 1915}, + {1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 477: 1930, 1930, 481: 1930, 483: 1930, 1930, 1930, 1930, 492: 1930, 1930, 1930, 496: 1930, 1930, 499: 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 509: 1930, 1930, 512: 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 522: 1930, 524: 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 534: 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930, 548: 1930, 1930, 558: 1930, 1930, 1930, 1930, 1930, 1930, 1930, 1930}, + {476: 2608, 713: 4163}, // 1600 - {1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 474: 1912, 1912, 478: 1912, 480: 1912, 1912, 1912, 1912, 489: 1912, 1912, 1912, 493: 1912, 1912, 496: 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 506: 1912, 1912, 509: 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 519: 1912, 521: 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 531: 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912, 545: 1912, 1912, 555: 1912, 1912, 1912, 1912, 1912, 1912, 1912, 1912}, - {1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 474: 1938, 1938, 478: 1938, 480: 1938, 1938, 1938, 1938, 489: 1938, 1938, 1938, 493: 1938, 1938, 496: 1938, 1938, 1938, 500: 1938, 1938, 1938, 1938, 506: 1938, 1938, 509: 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 519: 1938, 521: 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 531: 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 1938, 545: 1938, 1938}, - {1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 474: 1937, 1937, 478: 1937, 480: 1937, 1937, 1937, 1937, 489: 1937, 1937, 1937, 493: 1937, 1937, 496: 1937, 1937, 1937, 500: 1937, 1937, 1937, 1937, 506: 1937, 1937, 509: 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 519: 1937, 521: 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 531: 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 1937, 545: 1937, 1937}, - {1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 474: 1936, 1936, 478: 1936, 480: 1936, 1936, 1936, 1936, 489: 1936, 1936, 1936, 493: 1936, 1936, 496: 1936, 1936, 1936, 500: 1936, 1936, 1936, 1936, 506: 1936, 1936, 509: 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 519: 1936, 521: 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 531: 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 1936, 545: 1936, 1936}, - {1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 474: 1914, 1914, 478: 1914, 480: 1914, 1914, 1914, 1914, 489: 1914, 1914, 1914, 493: 1914, 1914, 496: 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 506: 1914, 1914, 509: 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 519: 1914, 521: 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 531: 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914, 545: 1914, 1914, 555: 1914, 1914, 1914, 1914, 1914, 1914, 1914, 1914}, + {762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 477: 762, 762, 762, 762, 762, 483: 762, 762, 762, 762, 762, 762, 762, 762, 492: 762, 762, 762, 496: 762, 762, 499: 762, 762, 762, 762, 762, 762, 762, 762, 509: 762, 762, 512: 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 534: 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 762, 568: 762, 762, 597: 762, 662: 4161}, + {1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1908, 1730, 1730, 1730, 1730, 1730, 483: 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 492: 1730, 1730, 1730, 496: 1730, 1730, 499: 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 509: 1730, 1730, 512: 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 534: 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 1730, 568: 1730, 1730, 597: 1730, 655: 1730, 659: 1730, 1730}, + {1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1907, 1729, 1729, 1729, 1729, 1729, 483: 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 492: 1729, 1729, 1729, 496: 1729, 1729, 499: 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 509: 1729, 1729, 512: 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 534: 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 1729, 568: 1729, 1729, 597: 1729, 655: 1729, 659: 1729, 1729}, + {476: 1906}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 2864, 2812, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 2893, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 2898, 2825, 2789, 2807, 2972, 3055, 3044, 2842, 2854, 2965, 2966, 2961, 2919, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 2900, 2885, 2881, 2973, 2997, 2783, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 2904, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 2823, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 2889, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 2890, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 2960, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 2848, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 2774, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 2906, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 2775, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3170, 2902, 3171, 3172, 2801, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3185, 3186, 3237, 3236, 3081, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 2942, 2959, 3082, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3203, 3204, 3205, 2955, 3156, 3215, 3216, 3227, 3211, 3212, 3213, 3246, 2901, 476: 3286, 478: 3265, 3284, 482: 3294, 485: 3298, 3302, 488: 3283, 3282, 3321, 495: 3256, 498: 3295, 507: 3301, 3319, 511: 3260, 533: 3290, 567: 3297, 570: 3320, 3375, 573: 3303, 3255, 3257, 3259, 3258, 3287, 3263, 3277, 3268, 3289, 3264, 585: 3296, 3288, 3293, 3299, 3309, 3362, 3310, 3311, 595: 3262, 3340, 598: 3280, 3281, 3335, 3336, 3337, 3338, 3339, 3291, 3317, 3322, 3332, 3333, 3326, 3341, 3342, 3343, 3327, 3345, 3346, 3328, 3344, 3323, 3331, 3329, 3315, 3347, 3348, 3292, 3352, 3304, 3305, 3308, 3351, 3357, 3356, 3358, 3355, 3359, 3354, 3353, 3350, 3300, 3349, 3307, 3306, 3312, 3313, 664: 3270, 2785, 2786, 2784, 713: 3285, 3361, 3271, 3276, 3261, 3334, 3274, 3272, 3273, 3314, 3325, 3324, 3318, 3316, 3330, 3269, 3279, 3360, 3278, 3275, 2782, 4162}, // 1605 - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 661: 4143, 2762, 2763, 2761, 744: 4144, 808: 4145}, - {2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 473: 2337, 488: 2337, 493: 2337, 499: 2337, 505: 2337, 2337, 529: 2337, 2337, 2337, 647: 2337, 652: 4166, 669: 2337, 2337, 672: 2337, 677: 2337, 2337, 680: 2337, 2337, 2337, 2337, 2337, 2337, 688: 2337, 690: 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 2337, 705: 2337, 2337, 2337, 2337}, - {9: 2334, 49: 2334}, - {9: 4146, 49: 4147}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 661: 4143, 2762, 2763, 2761, 744: 4165}, + {1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 477: 1928, 1928, 481: 1928, 483: 1928, 1928, 1928, 1928, 492: 1928, 1928, 1928, 496: 1928, 1928, 499: 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 509: 1928, 1928, 512: 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 522: 1928, 524: 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 534: 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928, 548: 1928, 1928, 558: 1928, 1928, 1928, 1928, 1928, 1928, 1928, 1928}, + {1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 477: 1929, 1929, 481: 1929, 483: 1929, 1929, 1929, 1929, 492: 1929, 1929, 1929, 496: 1929, 1929, 499: 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 509: 1929, 1929, 512: 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 522: 1929, 524: 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 534: 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929, 548: 1929, 1929, 558: 1929, 1929, 1929, 1929, 1929, 1929, 1929, 1929}, + {1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 477: 1955, 1955, 481: 1955, 483: 1955, 1955, 1955, 1955, 492: 1955, 1955, 1955, 496: 1955, 1955, 499: 1955, 1955, 1955, 503: 1955, 1955, 1955, 1955, 509: 1955, 1955, 512: 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 522: 1955, 524: 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 534: 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 1955, 548: 1955, 1955}, + {1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 477: 1954, 1954, 481: 1954, 483: 1954, 1954, 1954, 1954, 492: 1954, 1954, 1954, 496: 1954, 1954, 499: 1954, 1954, 1954, 503: 1954, 1954, 1954, 1954, 509: 1954, 1954, 512: 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 522: 1954, 524: 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 534: 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 1954, 548: 1954, 1954}, + {1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 477: 1953, 1953, 481: 1953, 483: 1953, 1953, 1953, 1953, 492: 1953, 1953, 1953, 496: 1953, 1953, 499: 1953, 1953, 1953, 503: 1953, 1953, 1953, 1953, 509: 1953, 1953, 512: 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 522: 1953, 524: 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 534: 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 548: 1953, 1953}, // 1610 - {310: 4148}, - {473: 4149}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 2840, 2788, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 2869, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 2874, 2801, 2766, 2783, 2948, 3031, 3020, 2818, 2830, 2941, 2942, 2937, 2895, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 2876, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 2760, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 2880, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 2799, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 2866, 2865, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 2936, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 2824, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 2751, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 2882, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 2752, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3144, 2878, 3145, 3146, 2777, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3159, 3160, 3211, 3210, 3057, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 2918, 2935, 3058, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3177, 3178, 3179, 2931, 3130, 3189, 3190, 3201, 3185, 3186, 3187, 3220, 2877, 473: 3260, 475: 3239, 3258, 479: 3268, 482: 3272, 3276, 485: 3257, 3256, 3295, 492: 3230, 495: 3269, 504: 3275, 3293, 508: 3234, 530: 3264, 564: 3271, 567: 3294, 3349, 570: 3277, 3229, 3231, 3233, 3232, 3261, 3237, 3251, 3242, 3263, 3238, 582: 3270, 3262, 3267, 3273, 3283, 3336, 3284, 3285, 592: 3236, 3314, 595: 3254, 3255, 3309, 3310, 3311, 3312, 3313, 3265, 3291, 3296, 3306, 3307, 3300, 3315, 3316, 3317, 3301, 3319, 3320, 3302, 3318, 3297, 3305, 3303, 3289, 3321, 3322, 3266, 3326, 3278, 3279, 3282, 3325, 3331, 3330, 3332, 3329, 3333, 3328, 3327, 3324, 3274, 3323, 3281, 3280, 3286, 3287, 661: 3244, 2762, 2763, 2761, 709: 3259, 3335, 3245, 3250, 3235, 3308, 3248, 3246, 3247, 3288, 3299, 3298, 3292, 3290, 3304, 3243, 3253, 3334, 3252, 3249, 4150}, - {49: 1932, 474: 4153, 485: 3686, 3687, 3692, 520: 3688, 544: 4152, 547: 3689, 3690, 3683, 3693, 3682, 3691, 3684, 3685, 1222: 4151}, - {49: 4164}, + {1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 477: 1931, 1931, 481: 1931, 483: 1931, 1931, 1931, 1931, 492: 1931, 1931, 1931, 496: 1931, 1931, 499: 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 509: 1931, 1931, 512: 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 522: 1931, 524: 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 534: 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931, 548: 1931, 1931, 558: 1931, 1931, 1931, 1931, 1931, 1931, 1931, 1931}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 664: 4169, 2785, 2786, 2784, 748: 4170, 812: 4171}, + {2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 476: 2354, 491: 2354, 496: 2354, 502: 2354, 508: 2354, 2354, 532: 2354, 2354, 2354, 650: 2354, 655: 4192, 672: 2354, 2354, 675: 2354, 681: 2354, 2354, 684: 2354, 2354, 2354, 2354, 2354, 2354, 692: 2354, 694: 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 2354, 709: 2354, 2354, 2354, 2354}, + {9: 2351, 50: 2351}, + {9: 4172, 50: 4173}, // 1615 - {230: 4157, 519: 4156}, - {139: 4154}, - {254: 4155}, - {49: 1928}, - {355: 4159}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 664: 4169, 2785, 2786, 2784, 748: 4191}, + {312: 4174}, + {476: 4175}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 2864, 2812, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 2893, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 2898, 2825, 2789, 2807, 2972, 3055, 3044, 2842, 2854, 2965, 2966, 2961, 2919, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 2900, 2885, 2881, 2973, 2997, 2783, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 2904, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 2823, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 2889, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 2890, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 2960, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 2848, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 2774, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 2906, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 2775, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3170, 2902, 3171, 3172, 2801, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3185, 3186, 3237, 3236, 3081, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 2942, 2959, 3082, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3203, 3204, 3205, 2955, 3156, 3215, 3216, 3227, 3211, 3212, 3213, 3246, 2901, 476: 3286, 478: 3265, 3284, 482: 3294, 485: 3298, 3302, 488: 3283, 3282, 3321, 495: 3256, 498: 3295, 507: 3301, 3319, 511: 3260, 533: 3290, 567: 3297, 570: 3320, 3375, 573: 3303, 3255, 3257, 3259, 3258, 3287, 3263, 3277, 3268, 3289, 3264, 585: 3296, 3288, 3293, 3299, 3309, 3362, 3310, 3311, 595: 3262, 3340, 598: 3280, 3281, 3335, 3336, 3337, 3338, 3339, 3291, 3317, 3322, 3332, 3333, 3326, 3341, 3342, 3343, 3327, 3345, 3346, 3328, 3344, 3323, 3331, 3329, 3315, 3347, 3348, 3292, 3352, 3304, 3305, 3308, 3351, 3357, 3356, 3358, 3355, 3359, 3354, 3353, 3350, 3300, 3349, 3307, 3306, 3312, 3313, 664: 3270, 2785, 2786, 2784, 713: 3285, 3361, 3271, 3276, 3261, 3334, 3274, 3272, 3273, 3314, 3325, 3324, 3318, 3316, 3330, 3269, 3279, 3360, 3278, 3275, 4176}, + {50: 1949, 477: 4179, 488: 3712, 3713, 3718, 523: 3714, 547: 4178, 550: 3715, 3716, 3709, 3719, 3708, 3717, 3710, 3711, 1230: 4177}, // 1620 - {213: 4158}, - {49: 1929}, - {213: 4160}, - {49: 1931, 474: 4161}, - {139: 4162}, + {50: 4190}, + {233: 4183, 522: 4182}, + {142: 4180}, + {257: 4181}, + {50: 1945}, // 1625 - {254: 4163}, - {49: 1930}, - {1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 474: 1939, 1939, 478: 1939, 480: 1939, 1939, 1939, 1939, 489: 1939, 1939, 1939, 493: 1939, 1939, 496: 1939, 1939, 1939, 500: 1939, 1939, 1939, 1939, 506: 1939, 1939, 509: 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 519: 1939, 521: 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 531: 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 1939, 545: 1939, 1939}, - {9: 2333, 49: 2333}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 661: 4167, 2762, 2763, 2761}, + {357: 4185}, + {215: 4184}, + {50: 1946}, + {215: 4186}, + {50: 1948, 477: 4187}, // 1630 - {2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 473: 2336, 488: 2336, 493: 2336, 499: 2336, 505: 2336, 2336, 529: 2336, 2336, 2336, 647: 2336, 652: 4168, 669: 2336, 2336, 672: 2336, 677: 2336, 2336, 680: 2336, 2336, 2336, 2336, 2336, 2336, 688: 2336, 690: 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 2336, 705: 2336, 2336, 2336, 2336}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 661: 4169, 2762, 2763, 2761}, - {2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 473: 2335, 488: 2335, 493: 2335, 499: 2335, 505: 2335, 2335, 529: 2335, 2335, 2335, 647: 2335, 669: 2335, 2335, 672: 2335, 677: 2335, 2335, 680: 2335, 2335, 2335, 2335, 2335, 2335, 688: 2335, 690: 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 2335, 705: 2335, 2335, 2335, 2335}, - {1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 474: 1940, 1940, 478: 1940, 480: 1940, 1940, 1940, 1940, 489: 1940, 1940, 1940, 493: 1940, 1940, 496: 1940, 1940, 1940, 500: 1940, 1940, 1940, 1940, 506: 1940, 1940, 509: 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 519: 1940, 521: 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 531: 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 1940, 545: 1940, 1940, 734: 3341, 3339}, - {1303, 1303, 9: 1303, 49: 1303, 127: 1303, 472: 1303, 474: 1303, 480: 1303, 1303, 490: 1303, 1303, 493: 1303, 1303, 496: 1303, 1303, 501: 1303, 1303, 514: 1303, 516: 1303, 524: 1303, 527: 1303, 1303}, + {142: 4188}, + {257: 4189}, + {50: 1947}, + {1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 477: 1956, 1956, 481: 1956, 483: 1956, 1956, 1956, 1956, 492: 1956, 1956, 1956, 496: 1956, 1956, 499: 1956, 1956, 1956, 503: 1956, 1956, 1956, 1956, 509: 1956, 1956, 512: 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 522: 1956, 524: 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 534: 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 548: 1956, 1956}, + {9: 2350, 50: 2350}, // 1635 - {1302, 1302, 9: 1302, 49: 1302, 127: 1302, 472: 1302, 474: 1302, 480: 1302, 1302, 490: 1302, 1302, 493: 1302, 1302, 496: 1302, 1302, 501: 1302, 1302, 514: 1302, 516: 1302, 524: 1302, 527: 1302, 1302}, - {1301, 1301, 9: 1301, 49: 1301, 127: 1301, 472: 1301, 474: 1301, 480: 1301, 1301, 490: 1301, 1301, 493: 1301, 1301, 496: 1301, 1301, 501: 1301, 1301, 514: 1301, 516: 1301, 524: 1301, 527: 1301, 1301}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 2840, 2788, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 2869, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 2874, 2801, 2766, 2783, 2948, 3031, 3020, 2818, 2830, 2941, 2942, 2937, 2895, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 2876, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 2760, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 2880, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 2799, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 2866, 2865, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 2936, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 2824, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 2751, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 2882, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 2752, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3144, 2878, 3145, 3146, 2777, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3159, 3160, 3211, 3210, 3057, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 2918, 2935, 3058, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3177, 3178, 3179, 2931, 3130, 3189, 3190, 3201, 3185, 3186, 3187, 3220, 2877, 473: 3260, 475: 3239, 3258, 2755, 479: 3268, 482: 3272, 3276, 485: 3257, 3256, 3295, 492: 3230, 495: 3269, 504: 3275, 3293, 508: 3234, 530: 3264, 564: 3271, 567: 3294, 2753, 570: 3277, 3229, 3231, 3233, 3232, 3261, 3237, 3251, 3242, 3263, 3238, 582: 3270, 3262, 3267, 3273, 3283, 3336, 3284, 3285, 592: 3236, 3314, 595: 3254, 3255, 3309, 3310, 3311, 3312, 3313, 3265, 3291, 3296, 3306, 3307, 3300, 3315, 3316, 3317, 3301, 3319, 3320, 3302, 3318, 3297, 3305, 3303, 3289, 3321, 3322, 3266, 3326, 3278, 3279, 3282, 3325, 3331, 3330, 3332, 3329, 3333, 3328, 3327, 3324, 3274, 3323, 3281, 3280, 3286, 3287, 648: 2756, 661: 3244, 2762, 2763, 2761, 709: 3259, 3335, 3245, 3250, 3235, 3308, 3248, 3246, 3247, 3288, 3299, 3298, 3292, 3290, 3304, 3243, 3253, 3334, 3252, 3249, 2759, 2758, 2757, 4175}, - {1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 474: 1944, 1944, 478: 1944, 480: 1944, 1944, 1944, 1944, 489: 1944, 1944, 1944, 493: 1944, 1944, 496: 1944, 1944, 1944, 500: 1944, 1944, 1944, 1944, 506: 1944, 3345, 509: 3343, 3344, 3342, 3340, 1944, 1944, 1944, 1944, 1944, 519: 1944, 521: 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 531: 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 1944, 545: 1944, 1944, 734: 3341, 3339}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 661: 3921, 2762, 2763, 2761, 737: 4177}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 664: 4193, 2785, 2786, 2784}, + {2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 476: 2353, 491: 2353, 496: 2353, 502: 2353, 508: 2353, 2353, 532: 2353, 2353, 2353, 650: 2353, 655: 4194, 672: 2353, 2353, 675: 2353, 681: 2353, 2353, 684: 2353, 2353, 2353, 2353, 2353, 2353, 692: 2353, 694: 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 2353, 709: 2353, 2353, 2353, 2353}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 664: 4195, 2785, 2786, 2784}, + {2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 476: 2352, 491: 2352, 496: 2352, 502: 2352, 508: 2352, 2352, 532: 2352, 2352, 2352, 650: 2352, 672: 2352, 2352, 675: 2352, 681: 2352, 2352, 684: 2352, 2352, 2352, 2352, 2352, 2352, 692: 2352, 694: 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 2352, 709: 2352, 2352, 2352, 2352}, + {1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 477: 1957, 1957, 481: 1957, 483: 1957, 1957, 1957, 1957, 492: 1957, 1957, 1957, 496: 1957, 1957, 499: 1957, 1957, 1957, 503: 1957, 1957, 1957, 1957, 509: 1957, 1957, 512: 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 522: 1957, 524: 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 534: 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 548: 1957, 1957, 738: 3367, 3365}, // 1640 - {49: 4178}, - {2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 474: 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 496: 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 506: 2233, 2233, 509: 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 531: 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 2233, 565: 2233, 2233, 581: 2233, 590: 2233, 2233, 594: 2233, 642: 2233, 2233, 2233, 2233}, - {494: 4180}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 661: 3921, 2762, 2763, 2761, 737: 4181}, - {2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 474: 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 496: 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 506: 2234, 2234, 509: 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 531: 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 2234, 565: 2234, 2234, 581: 2234, 590: 2234, 2234, 594: 2234, 642: 2234, 2234, 2234, 2234}, + {1317, 1317, 9: 1317, 50: 1317, 128: 1317, 475: 1317, 477: 1317, 483: 1317, 1317, 493: 1317, 1317, 496: 1317, 1317, 499: 1317, 1317, 504: 1317, 1317, 517: 1317, 519: 1317, 527: 1317, 530: 1317, 1317}, + {1316, 1316, 9: 1316, 50: 1316, 128: 1316, 475: 1316, 477: 1316, 483: 1316, 1316, 493: 1316, 1316, 496: 1316, 1316, 499: 1316, 1316, 504: 1316, 1316, 517: 1316, 519: 1316, 527: 1316, 530: 1316, 1316}, + {1315, 1315, 9: 1315, 50: 1315, 128: 1315, 475: 1315, 477: 1315, 483: 1315, 1315, 493: 1315, 1315, 496: 1315, 1315, 499: 1315, 1315, 504: 1315, 1315, 517: 1315, 519: 1315, 527: 1315, 530: 1315, 1315}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 2864, 2812, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 2893, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 2898, 2825, 2789, 2807, 2972, 3055, 3044, 2842, 2854, 2965, 2966, 2961, 2919, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 2900, 2885, 2881, 2973, 2997, 2783, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 2904, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 2823, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 2889, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 2890, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 2960, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 2848, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 2774, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 2906, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 2775, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3170, 2902, 3171, 3172, 2801, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3185, 3186, 3237, 3236, 3081, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 2942, 2959, 3082, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3203, 3204, 3205, 2955, 3156, 3215, 3216, 3227, 3211, 3212, 3213, 3246, 2901, 476: 3286, 478: 3265, 3284, 2778, 482: 3294, 485: 3298, 3302, 488: 3283, 3282, 3321, 495: 3256, 498: 3295, 507: 3301, 3319, 511: 3260, 533: 3290, 567: 3297, 570: 3320, 2776, 573: 3303, 3255, 3257, 3259, 3258, 3287, 3263, 3277, 3268, 3289, 3264, 585: 3296, 3288, 3293, 3299, 3309, 3362, 3310, 3311, 595: 3262, 3340, 598: 3280, 3281, 3335, 3336, 3337, 3338, 3339, 3291, 3317, 3322, 3332, 3333, 3326, 3341, 3342, 3343, 3327, 3345, 3346, 3328, 3344, 3323, 3331, 3329, 3315, 3347, 3348, 3292, 3352, 3304, 3305, 3308, 3351, 3357, 3356, 3358, 3355, 3359, 3354, 3353, 3350, 3300, 3349, 3307, 3306, 3312, 3313, 651: 2779, 664: 3270, 2785, 2786, 2784, 713: 3285, 3361, 3271, 3276, 3261, 3334, 3274, 3272, 3273, 3314, 3325, 3324, 3318, 3316, 3330, 3269, 3279, 3360, 3278, 3275, 2782, 2781, 2780, 4201}, + {1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 477: 1961, 1961, 481: 1961, 483: 1961, 1961, 1961, 1961, 492: 1961, 1961, 1961, 496: 1961, 1961, 499: 1961, 1961, 1961, 503: 1961, 1961, 1961, 1961, 509: 1961, 3371, 512: 3369, 3370, 3368, 3366, 1961, 1961, 1961, 1961, 1961, 522: 1961, 524: 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 534: 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 1961, 548: 1961, 1961, 738: 3367, 3365}, // 1645 - {248, 248, 49: 248, 472: 248, 474: 248, 480: 248, 248, 490: 248, 248, 493: 248, 248, 496: 248, 248, 501: 248, 248, 507: 3345, 509: 3343, 3344, 3342, 3340, 248, 248, 516: 248, 734: 3341, 3339}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 664: 3947, 2785, 2786, 2784, 740: 4203}, + {50: 4204}, + {2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 477: 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 499: 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 509: 2250, 2250, 512: 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 534: 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 568: 2250, 2250, 584: 2250, 593: 2250, 2250, 597: 2250, 645: 2250, 2250, 2250, 2250}, + {497: 4206}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 664: 3947, 2785, 2786, 2784, 740: 4207}, + // 1650 + {2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 477: 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 499: 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 509: 2251, 2251, 512: 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 534: 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 568: 2251, 2251, 584: 2251, 593: 2251, 2251, 597: 2251, 645: 2251, 2251, 2251, 2251}, + {258, 258, 50: 258, 475: 258, 477: 258, 483: 258, 258, 493: 258, 258, 496: 258, 258, 499: 258, 258, 504: 258, 258, 510: 3371, 512: 3369, 3370, 3368, 3366, 258, 258, 519: 258, 738: 3367, 3365}, {6, 6}, - {139: 4186}, + {142: 4212}, {2, 2}, - {247, 247, 493: 247, 498: 2722, 501: 247, 247, 790: 2723, 4187}, - // 1650 - {1297, 1297, 493: 1297, 501: 1297, 2725, 767: 2726, 812: 4188}, - {869, 869, 493: 2728, 501: 2729, 768: 2730, 830: 4189}, - {4, 4}, - {569: 4192}, - {2: 1855, 1855, 1855, 1855, 1855, 1855, 1855, 10: 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 50: 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 1855, 473: 1855, 496: 1855, 500: 1855, 569: 1855, 579: 1855}, // 1655 - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 661: 3921, 2762, 2763, 2761, 737: 4193}, - {2412, 2412, 2412, 2412, 2412, 2412, 4241, 4243, 400, 10: 4210, 15: 4260, 2176, 4258, 4197, 4262, 4249, 4278, 4242, 4245, 4244, 4247, 4248, 4250, 4257, 400, 4268, 4269, 4255, 4256, 4261, 4263, 4275, 4274, 4280, 4276, 4273, 4266, 4271, 4272, 4265, 4267, 4270, 4259, 71: 4212, 74: 4233, 4234, 83: 4235, 134: 4215, 183: 4204, 203: 4198, 4196, 4219, 208: 4220, 219: 4214, 224: 4230, 237: 4208, 246: 4216, 252: 4211, 269: 4221, 277: 4217, 284: 4231, 4232, 290: 4199, 474: 4229, 479: 4240, 4277, 484: 2176, 488: 2412, 497: 4236, 502: 4218, 4228, 505: 2176, 4201, 584: 4202, 590: 4207, 647: 2176, 649: 4246, 653: 4195, 665: 4223, 669: 4209, 671: 4237, 679: 4222, 686: 4224, 689: 4203, 704: 4213, 781: 4251, 792: 4253, 813: 4252, 835: 4254, 838: 4264, 842: 4279, 870: 4227, 883: 4225, 919: 4200, 926: 4205, 989: 4239, 1138: 4206, 1165: 4226, 1171: 4238, 4194}, - {2174, 2174, 5041, 5042, 5039, 5040, 488: 5043, 1100: 5038, 1170: 5037}, - {488: 5011}, - {2532, 2532, 168: 5005, 488: 5006}, + {257, 257, 496: 257, 501: 2745, 504: 257, 257, 795: 2746, 4213}, + {1311, 1311, 496: 1311, 504: 1311, 2748, 772: 2749, 817: 4214}, + {883, 883, 496: 2751, 504: 2752, 773: 2753, 834: 4215}, + {4, 4}, + {572: 4218}, // 1660 - {165: 4997}, - {475: 2047, 479: 2047, 499: 4281, 736: 4994}, - {475: 2047, 479: 2047, 499: 4281, 736: 4991}, - {2497, 2497, 2497, 2497, 2497, 2497, 4241, 4243, 400, 2497, 15: 4260, 2176, 4258, 4197, 4262, 4249, 4278, 4242, 4245, 4244, 4247, 4248, 4250, 4257, 400, 4268, 4269, 4255, 4256, 4261, 4263, 4275, 4274, 4280, 4276, 4273, 4266, 4271, 4272, 4265, 4267, 4270, 4259, 479: 4240, 4277, 484: 2176, 488: 2497, 503: 4987, 505: 2176, 647: 2176, 649: 4246, 781: 4251, 792: 4253, 813: 4252, 835: 4254, 838: 4264, 842: 4988}, - {168: 4977}, + {2: 1872, 1872, 1872, 1872, 1872, 1872, 1872, 10: 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 51: 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 1872, 476: 1872, 499: 1872, 503: 1872, 572: 1872, 582: 1872}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 664: 3947, 2785, 2786, 2784, 740: 4219}, + {2432, 2432, 2432, 2432, 2432, 2432, 4267, 4269, 410, 10: 4236, 15: 4286, 2193, 4284, 4223, 4288, 4275, 4304, 4268, 4271, 4270, 4273, 4274, 4276, 4283, 410, 4294, 4295, 4281, 4282, 4287, 4289, 4301, 4300, 4306, 4302, 4299, 4292, 4297, 4298, 4291, 4293, 4296, 4285, 72: 4238, 75: 4259, 4260, 84: 4261, 140: 4241, 185: 4230, 205: 4224, 4222, 4245, 210: 4246, 221: 4240, 227: 4256, 240: 4234, 249: 4242, 255: 4237, 272: 4247, 280: 4243, 287: 4257, 4258, 292: 4225, 477: 4255, 482: 4266, 4303, 487: 2193, 491: 2432, 500: 4262, 505: 4244, 4254, 508: 2193, 4227, 587: 4228, 593: 4233, 650: 2193, 652: 4272, 656: 4221, 668: 4249, 672: 4235, 674: 4263, 683: 4248, 690: 4250, 693: 4229, 708: 4239, 785: 4277, 797: 4279, 818: 4278, 840: 4280, 843: 4290, 847: 4305, 874: 4253, 887: 4251, 924: 4226, 931: 4231, 994: 4265, 1146: 4232, 1174: 4252, 1180: 4264, 4220}, + {2191, 2191, 5067, 5068, 5065, 5066, 491: 5069, 1108: 5064, 1179: 5063}, + {491: 5037}, // 1665 - {650: 4969}, - {2: 2417, 2417, 2417, 2417, 2417, 2417, 2417, 10: 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 50: 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 473: 2417, 488: 4828, 564: 2417, 581: 2406, 590: 2406, 2406, 642: 2406, 4589, 649: 2406, 675: 2406, 2406, 833: 4830, 847: 4424, 873: 4826, 903: 4827, 914: 4829}, - {488: 4819}, - {2486, 2486, 2486, 2486, 2486, 2486, 9: 2486, 488: 2486}, - {2485, 2485, 2485, 2485, 2485, 2485, 9: 2485, 488: 2485}, + {2552, 2552, 170: 5031, 491: 5032}, + {167: 5023}, + {478: 2064, 482: 2064, 502: 4307, 741: 5020}, + {478: 2064, 482: 2064, 502: 4307, 741: 5017}, + {2517, 2517, 2517, 2517, 2517, 2517, 4267, 4269, 410, 2517, 15: 4286, 2193, 4284, 4223, 4288, 4275, 4304, 4268, 4271, 4270, 4273, 4274, 4276, 4283, 410, 4294, 4295, 4281, 4282, 4287, 4289, 4301, 4300, 4306, 4302, 4299, 4292, 4297, 4298, 4291, 4293, 4296, 4285, 482: 4266, 4303, 487: 2193, 491: 2517, 506: 5013, 508: 2193, 650: 2193, 652: 4272, 785: 4277, 797: 4279, 818: 4278, 840: 4280, 843: 4290, 847: 5014}, // 1670 - {488: 4817}, - {488: 4814}, - {2: 2417, 2417, 2417, 2417, 2417, 2417, 2417, 10: 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 50: 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 488: 4793, 564: 2417, 581: 4410, 590: 4425, 4792, 643: 4426, 649: 4411, 675: 4796, 828: 4795, 847: 4424, 873: 4791, 914: 4794, 1000: 4797}, - {488: 4784}, - {488: 4773}, + {170: 5003}, + {653: 4995}, + {2: 2437, 2437, 2437, 2437, 2437, 2437, 2437, 10: 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 51: 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 476: 2437, 491: 4854, 567: 2437, 584: 2426, 593: 2426, 2426, 645: 2426, 4615, 652: 2426, 678: 2426, 2426, 837: 4856, 852: 4450, 877: 4852, 908: 4853, 919: 4855}, + {491: 4845}, + {2506, 2506, 2506, 2506, 2506, 2506, 9: 2506, 491: 2506}, // 1675 - {488: 4771}, - {488: 4768}, - {488: 4765}, - {20: 4762, 488: 4761}, - {20: 4758, 488: 4757}, + {2505, 2505, 2505, 2505, 2505, 2505, 9: 2505, 491: 2505}, + {491: 4843}, + {491: 4840}, + {2: 2437, 2437, 2437, 2437, 2437, 2437, 2437, 10: 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 51: 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 491: 4819, 567: 2437, 584: 4436, 593: 4451, 4818, 646: 4452, 652: 4437, 678: 4822, 832: 4821, 852: 4450, 877: 4817, 919: 4820, 1004: 4823}, + {491: 4810}, // 1680 - {488: 4747}, - {660: 4740}, - {943: 4739}, - {943: 4738}, - {2: 2417, 2417, 2417, 2417, 2417, 2417, 2417, 10: 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 50: 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 564: 2417, 847: 4424, 873: 4734}, + {491: 4799}, + {491: 4797}, + {491: 4794}, + {491: 4791}, + {20: 4788, 491: 4787}, // 1685 - {2: 2417, 2417, 2417, 2417, 2417, 2417, 2417, 10: 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 50: 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 564: 2417, 847: 4424, 873: 4450}, - {2: 2417, 2417, 2417, 2417, 2417, 2417, 2417, 10: 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 50: 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 2417, 590: 4425, 643: 4426, 649: 4423, 847: 4424, 873: 4421, 1000: 4422}, - {2: 2047, 2047, 2047, 2047, 2047, 2047, 2047, 10: 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 50: 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 478: 4408, 499: 4281, 581: 4410, 649: 4411, 4406, 736: 4407, 828: 4409, 847: 4405}, - {2453, 2453, 2453, 2453, 2453, 2453, 9: 2453, 488: 2453}, - {2452, 2452, 2452, 2452, 2452, 2452, 9: 2452, 488: 2452}, + {20: 4784, 491: 4783}, + {491: 4773}, + {663: 4766}, + {948: 4765}, + {948: 4764}, // 1690 - {2451, 2451, 2451, 2451, 2451, 2451, 9: 2451, 488: 2451}, - {2450, 2450, 2450, 2450, 2450, 2450, 8: 399, 2450, 29: 399, 488: 2450}, - {201: 4404}, - {201: 4403}, - {2447, 2447, 2447, 2447, 2447, 2447, 9: 2447, 488: 2447}, + {2: 2437, 2437, 2437, 2437, 2437, 2437, 2437, 10: 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 51: 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 567: 2437, 852: 4450, 877: 4760}, + {2: 2437, 2437, 2437, 2437, 2437, 2437, 2437, 10: 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 51: 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 567: 2437, 852: 4450, 877: 4476}, + {2: 2437, 2437, 2437, 2437, 2437, 2437, 2437, 10: 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 51: 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 2437, 593: 4451, 646: 4452, 652: 4449, 852: 4450, 877: 4447, 1004: 4448}, + {2: 2064, 2064, 2064, 2064, 2064, 2064, 2064, 10: 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 51: 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 481: 4434, 502: 4307, 584: 4436, 652: 4437, 4432, 741: 4433, 832: 4435, 852: 4431}, + {2473, 2473, 2473, 2473, 2473, 2473, 9: 2473, 491: 2473}, // 1695 - {2446, 2446, 2446, 2446, 2446, 2446, 9: 2446, 488: 2446}, - {2442, 2442, 2442, 2442, 2442, 2442, 9: 2442, 488: 2442}, - {2441, 2441, 2441, 2441, 2441, 2441, 9: 2441, 488: 2441}, - {151: 2047, 240: 2047, 261: 2047, 263: 2047, 479: 2047, 499: 4281, 736: 4397}, - {2: 2047, 2047, 2047, 2047, 2047, 2047, 2047, 10: 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 50: 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 479: 2047, 499: 4281, 736: 4394}, + {2472, 2472, 2472, 2472, 2472, 2472, 9: 2472, 491: 2472}, + {2471, 2471, 2471, 2471, 2471, 2471, 9: 2471, 491: 2471}, + {2470, 2470, 2470, 2470, 2470, 2470, 8: 409, 2470, 29: 409, 491: 2470}, + {203: 4430}, + {203: 4429}, // 1700 - {154: 4393, 687: 4392}, - {2411, 2411, 2411, 2411, 2411, 2411, 9: 4390, 488: 2411}, - {2410, 2410, 2410, 2410, 2410, 2410, 9: 2410, 488: 2410}, - {16: 2175, 18: 2175, 21: 2175, 484: 2175, 505: 2175, 647: 2175}, - {475: 2047, 499: 4281, 736: 4388}, + {2467, 2467, 2467, 2467, 2467, 2467, 9: 2467, 491: 2467}, + {2466, 2466, 2466, 2466, 2466, 2466, 9: 2466, 491: 2466}, + {2462, 2462, 2462, 2462, 2462, 2462, 9: 2462, 491: 2462}, + {2461, 2461, 2461, 2461, 2461, 2461, 9: 2461, 491: 2461}, + {130: 2064, 243: 2064, 264: 2064, 266: 2064, 482: 2064, 502: 4307, 741: 4423}, // 1705 - {2: 2047, 2047, 2047, 2047, 2047, 2047, 2047, 10: 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 50: 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 475: 2047, 499: 4281, 736: 4386}, - {22: 4381, 186: 4382, 247: 4383}, - {2: 2047, 2047, 2047, 2047, 2047, 2047, 2047, 10: 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 50: 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 475: 2047, 499: 4281, 736: 4379}, - {245: 4376}, - {245: 4373}, + {2: 2064, 2064, 2064, 2064, 2064, 2064, 2064, 10: 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 51: 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 482: 2064, 502: 4307, 741: 4420}, + {156: 4419, 691: 4418}, + {2431, 2431, 2431, 2431, 2431, 2431, 9: 4416, 491: 2431}, + {2430, 2430, 2430, 2430, 2430, 2430, 9: 2430, 491: 2430}, + {16: 2192, 18: 2192, 21: 2192, 487: 2192, 508: 2192, 650: 2192}, // 1710 - {499: 4281, 508: 2047, 736: 4371}, - {499: 4281, 508: 2047, 736: 4369}, - {2: 2047, 2047, 2047, 2047, 2047, 2047, 2047, 10: 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 50: 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 499: 4281, 736: 4367}, - {499: 4281, 508: 2047, 736: 4365}, - {2120, 2120, 2120, 2120, 2120, 2120, 2120, 2120, 2120, 2120, 15: 2120, 2120, 2120, 2120, 2120, 2120, 2120, 2120, 2120, 2120, 2120, 2120, 2120, 2120, 2120, 2120, 2120, 2120, 2120, 2120, 2120, 2120, 2120, 2120, 2120, 2120, 2120, 2120, 2120, 2120, 2120, 2120, 2120, 49: 2120, 472: 2120, 2120, 2120, 478: 2120, 2120, 2120, 484: 2120, 488: 2120, 2120, 495: 2120, 503: 2120, 2120, 2120, 569: 2120, 646: 2120, 2120, 649: 2120}, + {478: 2064, 502: 4307, 741: 4414}, + {2: 2064, 2064, 2064, 2064, 2064, 2064, 2064, 10: 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 51: 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 478: 2064, 502: 4307, 741: 4412}, + {22: 4407, 188: 4408, 250: 4409}, + {2: 2064, 2064, 2064, 2064, 2064, 2064, 2064, 10: 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 51: 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 478: 2064, 502: 4307, 741: 4405}, + {248: 4402}, // 1715 - {434, 434, 434, 434, 434, 434, 434, 434, 434, 434, 15: 434, 434, 434, 434, 434, 434, 434, 434, 434, 434, 434, 434, 434, 434, 434, 434, 434, 434, 434, 434, 434, 434, 434, 434, 434, 434, 434, 434, 434, 434, 434, 434, 434, 472: 434, 434, 434, 478: 434, 434, 434, 484: 434, 488: 434, 434, 495: 434, 503: 434, 434, 434, 569: 434, 646: 434, 434, 649: 434}, - {16: 3836, 484: 4360, 505: 3837, 647: 3835, 773: 4359}, - {8: 4353, 29: 4354}, - {499: 4281, 508: 2047, 736: 4351}, - {499: 4281, 508: 2047, 736: 4349}, + {248: 4399}, + {502: 4307, 511: 2064, 741: 4397}, + {502: 4307, 511: 2064, 741: 4395}, + {2: 2064, 2064, 2064, 2064, 2064, 2064, 2064, 10: 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 51: 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 502: 4307, 741: 4393}, + {502: 4307, 511: 2064, 741: 4391}, // 1720 - {475: 2047, 499: 4281, 736: 4347}, - {499: 4281, 508: 2047, 736: 4345}, - {499: 4281, 508: 2047, 736: 4343}, - {475: 2047, 499: 4281, 736: 4341}, - {475: 2047, 499: 4281, 736: 4339}, + {2137, 2137, 2137, 2137, 2137, 2137, 2137, 2137, 2137, 2137, 15: 2137, 2137, 2137, 2137, 2137, 2137, 2137, 2137, 2137, 2137, 2137, 2137, 2137, 2137, 2137, 2137, 2137, 2137, 2137, 2137, 2137, 2137, 2137, 2137, 2137, 2137, 2137, 2137, 2137, 2137, 2137, 2137, 2137, 50: 2137, 475: 2137, 2137, 2137, 481: 2137, 2137, 2137, 487: 2137, 491: 2137, 2137, 498: 2137, 506: 2137, 2137, 2137, 572: 2137, 649: 2137, 2137, 652: 2137}, + {444, 444, 444, 444, 444, 444, 444, 444, 444, 444, 15: 444, 444, 444, 444, 444, 444, 444, 444, 444, 444, 444, 444, 444, 444, 444, 444, 444, 444, 444, 444, 444, 444, 444, 444, 444, 444, 444, 444, 444, 444, 444, 444, 444, 475: 444, 444, 444, 481: 444, 444, 444, 487: 444, 491: 444, 444, 498: 444, 506: 444, 444, 444, 572: 444, 649: 444, 444, 652: 444}, + {16: 3862, 487: 4386, 508: 3863, 650: 3861, 779: 4385}, + {8: 4379, 29: 4380}, + {502: 4307, 511: 2064, 741: 4377}, // 1725 - {499: 4281, 508: 2047, 736: 4337}, - {499: 4281, 508: 2047, 736: 4335}, - {420, 420, 420, 420, 420, 420, 420, 420, 420, 420, 15: 420, 420, 420, 420, 420, 420, 420, 420, 420, 420, 420, 420, 420, 420, 420, 420, 420, 420, 420, 420, 420, 420, 420, 420, 420, 420, 420, 420, 420, 420, 420, 420, 420, 472: 420, 420, 420, 478: 420, 420, 420, 484: 420, 488: 420, 420, 495: 420, 503: 420, 420, 420, 569: 420, 646: 420, 420, 649: 420}, - {479: 2047, 499: 4281, 508: 2047, 736: 4333}, - {479: 2047, 499: 4281, 508: 2047, 736: 4330}, + {502: 4307, 511: 2064, 741: 4375}, + {478: 2064, 502: 4307, 741: 4373}, + {502: 4307, 511: 2064, 741: 4371}, + {502: 4307, 511: 2064, 741: 4369}, + {478: 2064, 502: 4307, 741: 4367}, // 1730 - {479: 2047, 499: 4281, 508: 2047, 736: 4327}, - {499: 4281, 508: 2047, 736: 4325}, - {499: 4281, 508: 2047, 736: 4323}, - {499: 4281, 508: 2047, 573: 2047, 2047, 736: 4321}, - {475: 2047, 499: 4281, 736: 4319}, + {478: 2064, 502: 4307, 741: 4365}, + {502: 4307, 511: 2064, 741: 4363}, + {502: 4307, 511: 2064, 741: 4361}, + {430, 430, 430, 430, 430, 430, 430, 430, 430, 430, 15: 430, 430, 430, 430, 430, 430, 430, 430, 430, 430, 430, 430, 430, 430, 430, 430, 430, 430, 430, 430, 430, 430, 430, 430, 430, 430, 430, 430, 430, 430, 430, 430, 430, 475: 430, 430, 430, 481: 430, 430, 430, 487: 430, 491: 430, 430, 498: 430, 506: 430, 430, 430, 572: 430, 649: 430, 430, 652: 430}, + {482: 2064, 502: 4307, 511: 2064, 741: 4359}, // 1735 - {475: 2047, 499: 4281, 736: 4317}, - {499: 4281, 508: 2047, 736: 4315}, - {499: 4281, 508: 2047, 736: 4313}, - {479: 2047, 499: 4281, 508: 2047, 736: 4309}, - {2: 2047, 2047, 2047, 2047, 2047, 2047, 2047, 10: 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 50: 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 475: 2047, 492: 2047, 499: 4281, 736: 4306}, + {482: 2064, 502: 4307, 511: 2064, 741: 4356}, + {482: 2064, 502: 4307, 511: 2064, 741: 4353}, + {502: 4307, 511: 2064, 741: 4351}, + {502: 4307, 511: 2064, 741: 4349}, + {502: 4307, 511: 2064, 576: 2064, 2064, 741: 4347}, // 1740 - {473: 2047, 499: 4281, 736: 4301}, - {475: 2047, 499: 4281, 736: 4298}, - {394, 394, 394, 394, 394, 394, 394, 394, 394, 394, 15: 394, 394, 394, 394, 394, 394, 394, 394, 394, 394, 394, 394, 394, 394, 394, 394, 394, 394, 394, 394, 394, 394, 394, 394, 394, 394, 394, 394, 394, 394, 394, 394, 394, 472: 394, 394, 394, 478: 394, 394, 394, 484: 394, 488: 394, 394, 495: 394, 503: 394, 394, 394, 569: 394, 646: 394, 394, 649: 394}, - {180: 2047, 204: 2047, 207: 2047, 238: 2047, 278: 2047, 293: 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 479: 2047, 499: 4281, 736: 4282}, - {2: 2046, 2046, 2046, 2046, 2046, 2046, 2046, 10: 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 50: 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 2046, 473: 2046, 475: 2046, 479: 2046, 485: 2046, 2046, 489: 2046, 492: 2046, 504: 2046, 508: 2046, 530: 2046, 571: 2046, 2046, 2046, 2046}, + {478: 2064, 502: 4307, 741: 4345}, + {478: 2064, 502: 4307, 741: 4343}, + {502: 4307, 511: 2064, 741: 4341}, + {502: 4307, 511: 2064, 741: 4339}, + {482: 2064, 502: 4307, 511: 2064, 741: 4335}, // 1745 - {180: 4285, 204: 4288, 207: 4284, 238: 4286, 278: 4287, 293: 4289, 4290, 4295, 4294, 4291, 4296, 4297, 4292, 4293, 479: 4283}, - {388, 388, 388, 388, 388, 388, 388, 388, 388, 388, 15: 388, 388, 388, 388, 388, 388, 388, 388, 388, 388, 388, 388, 388, 388, 388, 388, 388, 388, 388, 388, 388, 388, 388, 388, 388, 388, 388, 388, 388, 388, 388, 388, 388, 472: 388, 388, 388, 478: 388, 388, 388, 484: 388, 488: 388, 388, 495: 388, 503: 388, 388, 388, 569: 388, 646: 388, 388, 649: 388}, - {387, 387, 387, 387, 387, 387, 387, 387, 387, 387, 15: 387, 387, 387, 387, 387, 387, 387, 387, 387, 387, 387, 387, 387, 387, 387, 387, 387, 387, 387, 387, 387, 387, 387, 387, 387, 387, 387, 387, 387, 387, 387, 387, 387, 472: 387, 387, 387, 478: 387, 387, 387, 484: 387, 488: 387, 387, 495: 387, 503: 387, 387, 387, 569: 387, 646: 387, 387, 649: 387}, - {386, 386, 386, 386, 386, 386, 386, 386, 386, 386, 15: 386, 386, 386, 386, 386, 386, 386, 386, 386, 386, 386, 386, 386, 386, 386, 386, 386, 386, 386, 386, 386, 386, 386, 386, 386, 386, 386, 386, 386, 386, 386, 386, 386, 472: 386, 386, 386, 478: 386, 386, 386, 484: 386, 488: 386, 386, 495: 386, 503: 386, 386, 386, 569: 386, 646: 386, 386, 649: 386}, - {385, 385, 385, 385, 385, 385, 385, 385, 385, 385, 15: 385, 385, 385, 385, 385, 385, 385, 385, 385, 385, 385, 385, 385, 385, 385, 385, 385, 385, 385, 385, 385, 385, 385, 385, 385, 385, 385, 385, 385, 385, 385, 385, 385, 472: 385, 385, 385, 478: 385, 385, 385, 484: 385, 488: 385, 385, 495: 385, 503: 385, 385, 385, 569: 385, 646: 385, 385, 649: 385}, + {2: 2064, 2064, 2064, 2064, 2064, 2064, 2064, 10: 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 51: 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 478: 2064, 495: 2064, 502: 4307, 741: 4332}, + {476: 2064, 502: 4307, 741: 4327}, + {478: 2064, 502: 4307, 741: 4324}, + {404, 404, 404, 404, 404, 404, 404, 404, 404, 404, 15: 404, 404, 404, 404, 404, 404, 404, 404, 404, 404, 404, 404, 404, 404, 404, 404, 404, 404, 404, 404, 404, 404, 404, 404, 404, 404, 404, 404, 404, 404, 404, 404, 404, 475: 404, 404, 404, 481: 404, 404, 404, 487: 404, 491: 404, 404, 498: 404, 506: 404, 404, 404, 572: 404, 649: 404, 404, 652: 404}, + {182: 2064, 206: 2064, 209: 2064, 241: 2064, 281: 2064, 295: 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 482: 2064, 502: 4307, 741: 4308}, // 1750 - {384, 384, 384, 384, 384, 384, 384, 384, 384, 384, 15: 384, 384, 384, 384, 384, 384, 384, 384, 384, 384, 384, 384, 384, 384, 384, 384, 384, 384, 384, 384, 384, 384, 384, 384, 384, 384, 384, 384, 384, 384, 384, 384, 384, 472: 384, 384, 384, 478: 384, 384, 384, 484: 384, 488: 384, 384, 495: 384, 503: 384, 384, 384, 569: 384, 646: 384, 384, 649: 384}, - {383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 15: 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 472: 383, 383, 383, 478: 383, 383, 383, 484: 383, 488: 383, 383, 495: 383, 503: 383, 383, 383, 569: 383, 646: 383, 383, 649: 383}, - {382, 382, 382, 382, 382, 382, 382, 382, 382, 382, 15: 382, 382, 382, 382, 382, 382, 382, 382, 382, 382, 382, 382, 382, 382, 382, 382, 382, 382, 382, 382, 382, 382, 382, 382, 382, 382, 382, 382, 382, 382, 382, 382, 382, 472: 382, 382, 382, 478: 382, 382, 382, 484: 382, 488: 382, 382, 495: 382, 503: 382, 382, 382, 569: 382, 646: 382, 382, 649: 382}, - {381, 381, 381, 381, 381, 381, 381, 381, 381, 381, 15: 381, 381, 381, 381, 381, 381, 381, 381, 381, 381, 381, 381, 381, 381, 381, 381, 381, 381, 381, 381, 381, 381, 381, 381, 381, 381, 381, 381, 381, 381, 381, 381, 381, 472: 381, 381, 381, 478: 381, 381, 381, 484: 381, 488: 381, 381, 495: 381, 503: 381, 381, 381, 569: 381, 646: 381, 381, 649: 381}, - {380, 380, 380, 380, 380, 380, 380, 380, 380, 380, 15: 380, 380, 380, 380, 380, 380, 380, 380, 380, 380, 380, 380, 380, 380, 380, 380, 380, 380, 380, 380, 380, 380, 380, 380, 380, 380, 380, 380, 380, 380, 380, 380, 380, 472: 380, 380, 380, 478: 380, 380, 380, 484: 380, 488: 380, 380, 495: 380, 503: 380, 380, 380, 569: 380, 646: 380, 380, 649: 380}, + {2: 2063, 2063, 2063, 2063, 2063, 2063, 2063, 10: 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 51: 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 2063, 476: 2063, 478: 2063, 482: 2063, 488: 2063, 2063, 492: 2063, 495: 2063, 507: 2063, 511: 2063, 533: 2063, 574: 2063, 2063, 2063, 2063}, + {182: 4311, 206: 4314, 209: 4310, 241: 4312, 281: 4313, 295: 4315, 4316, 4321, 4320, 4317, 4322, 4323, 4318, 4319, 482: 4309}, + {398, 398, 398, 398, 398, 398, 398, 398, 398, 398, 15: 398, 398, 398, 398, 398, 398, 398, 398, 398, 398, 398, 398, 398, 398, 398, 398, 398, 398, 398, 398, 398, 398, 398, 398, 398, 398, 398, 398, 398, 398, 398, 398, 398, 475: 398, 398, 398, 481: 398, 398, 398, 487: 398, 491: 398, 398, 498: 398, 506: 398, 398, 398, 572: 398, 649: 398, 398, 652: 398}, + {397, 397, 397, 397, 397, 397, 397, 397, 397, 397, 15: 397, 397, 397, 397, 397, 397, 397, 397, 397, 397, 397, 397, 397, 397, 397, 397, 397, 397, 397, 397, 397, 397, 397, 397, 397, 397, 397, 397, 397, 397, 397, 397, 397, 475: 397, 397, 397, 481: 397, 397, 397, 487: 397, 491: 397, 397, 498: 397, 506: 397, 397, 397, 572: 397, 649: 397, 397, 652: 397}, + {396, 396, 396, 396, 396, 396, 396, 396, 396, 396, 15: 396, 396, 396, 396, 396, 396, 396, 396, 396, 396, 396, 396, 396, 396, 396, 396, 396, 396, 396, 396, 396, 396, 396, 396, 396, 396, 396, 396, 396, 396, 396, 396, 396, 475: 396, 396, 396, 481: 396, 396, 396, 487: 396, 491: 396, 396, 498: 396, 506: 396, 396, 396, 572: 396, 649: 396, 396, 652: 396}, // 1755 - {379, 379, 379, 379, 379, 379, 379, 379, 379, 379, 15: 379, 379, 379, 379, 379, 379, 379, 379, 379, 379, 379, 379, 379, 379, 379, 379, 379, 379, 379, 379, 379, 379, 379, 379, 379, 379, 379, 379, 379, 379, 379, 379, 379, 472: 379, 379, 379, 478: 379, 379, 379, 484: 379, 488: 379, 379, 495: 379, 503: 379, 379, 379, 569: 379, 646: 379, 379, 649: 379}, - {378, 378, 378, 378, 378, 378, 378, 378, 378, 378, 15: 378, 378, 378, 378, 378, 378, 378, 378, 378, 378, 378, 378, 378, 378, 378, 378, 378, 378, 378, 378, 378, 378, 378, 378, 378, 378, 378, 378, 378, 378, 378, 378, 378, 472: 378, 378, 378, 478: 378, 378, 378, 484: 378, 488: 378, 378, 495: 378, 503: 378, 378, 378, 569: 378, 646: 378, 378, 649: 378}, - {377, 377, 377, 377, 377, 377, 377, 377, 377, 377, 15: 377, 377, 377, 377, 377, 377, 377, 377, 377, 377, 377, 377, 377, 377, 377, 377, 377, 377, 377, 377, 377, 377, 377, 377, 377, 377, 377, 377, 377, 377, 377, 377, 377, 472: 377, 377, 377, 478: 377, 377, 377, 484: 377, 488: 377, 377, 495: 377, 503: 377, 377, 377, 569: 377, 646: 377, 377, 649: 377}, - {376, 376, 376, 376, 376, 376, 376, 376, 376, 376, 15: 376, 376, 376, 376, 376, 376, 376, 376, 376, 376, 376, 376, 376, 376, 376, 376, 376, 376, 376, 376, 376, 376, 376, 376, 376, 376, 376, 376, 376, 376, 376, 376, 376, 472: 376, 376, 376, 478: 376, 376, 376, 484: 376, 488: 376, 376, 495: 376, 503: 376, 376, 376, 569: 376, 646: 376, 376, 649: 376}, - {375, 375, 375, 375, 375, 375, 375, 375, 375, 375, 15: 375, 375, 375, 375, 375, 375, 375, 375, 375, 375, 375, 375, 375, 375, 375, 375, 375, 375, 375, 375, 375, 375, 375, 375, 375, 375, 375, 375, 375, 375, 375, 375, 375, 472: 375, 375, 375, 478: 375, 375, 375, 484: 375, 488: 375, 375, 495: 375, 503: 375, 375, 375, 569: 375, 646: 375, 375, 649: 375}, + {395, 395, 395, 395, 395, 395, 395, 395, 395, 395, 15: 395, 395, 395, 395, 395, 395, 395, 395, 395, 395, 395, 395, 395, 395, 395, 395, 395, 395, 395, 395, 395, 395, 395, 395, 395, 395, 395, 395, 395, 395, 395, 395, 395, 475: 395, 395, 395, 481: 395, 395, 395, 487: 395, 491: 395, 395, 498: 395, 506: 395, 395, 395, 572: 395, 649: 395, 395, 652: 395}, + {394, 394, 394, 394, 394, 394, 394, 394, 394, 394, 15: 394, 394, 394, 394, 394, 394, 394, 394, 394, 394, 394, 394, 394, 394, 394, 394, 394, 394, 394, 394, 394, 394, 394, 394, 394, 394, 394, 394, 394, 394, 394, 394, 394, 475: 394, 394, 394, 481: 394, 394, 394, 487: 394, 491: 394, 394, 498: 394, 506: 394, 394, 394, 572: 394, 649: 394, 394, 652: 394}, + {393, 393, 393, 393, 393, 393, 393, 393, 393, 393, 15: 393, 393, 393, 393, 393, 393, 393, 393, 393, 393, 393, 393, 393, 393, 393, 393, 393, 393, 393, 393, 393, 393, 393, 393, 393, 393, 393, 393, 393, 393, 393, 393, 393, 475: 393, 393, 393, 481: 393, 393, 393, 487: 393, 491: 393, 393, 498: 393, 506: 393, 393, 393, 572: 393, 649: 393, 393, 652: 393}, + {392, 392, 392, 392, 392, 392, 392, 392, 392, 392, 15: 392, 392, 392, 392, 392, 392, 392, 392, 392, 392, 392, 392, 392, 392, 392, 392, 392, 392, 392, 392, 392, 392, 392, 392, 392, 392, 392, 392, 392, 392, 392, 392, 392, 475: 392, 392, 392, 481: 392, 392, 392, 487: 392, 491: 392, 392, 498: 392, 506: 392, 392, 392, 572: 392, 649: 392, 392, 652: 392}, + {391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 15: 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 391, 475: 391, 391, 391, 481: 391, 391, 391, 487: 391, 491: 391, 391, 498: 391, 506: 391, 391, 391, 572: 391, 649: 391, 391, 652: 391}, // 1760 - {374, 374, 374, 374, 374, 374, 374, 374, 374, 374, 15: 374, 374, 374, 374, 374, 374, 374, 374, 374, 374, 374, 374, 374, 374, 374, 374, 374, 374, 374, 374, 374, 374, 374, 374, 374, 374, 374, 374, 374, 374, 374, 374, 374, 472: 374, 374, 374, 478: 374, 374, 374, 484: 374, 488: 374, 374, 495: 374, 503: 374, 374, 374, 569: 374, 646: 374, 374, 649: 374}, - {475: 4300, 1039: 4299}, - {401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 15: 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 401, 472: 401, 401, 401, 478: 401, 401, 401, 484: 401, 488: 401, 401, 495: 401, 503: 401, 401, 401, 569: 401, 646: 401, 401, 649: 401}, - {11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 15: 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 472: 11, 11, 11, 478: 11, 11, 11, 484: 11, 488: 11, 11, 495: 11, 503: 11, 11, 11, 11, 569: 11, 646: 11, 11, 649: 11}, - {473: 4302}, + {390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 15: 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 475: 390, 390, 390, 481: 390, 390, 390, 487: 390, 491: 390, 390, 498: 390, 506: 390, 390, 390, 572: 390, 649: 390, 390, 652: 390}, + {389, 389, 389, 389, 389, 389, 389, 389, 389, 389, 15: 389, 389, 389, 389, 389, 389, 389, 389, 389, 389, 389, 389, 389, 389, 389, 389, 389, 389, 389, 389, 389, 389, 389, 389, 389, 389, 389, 389, 389, 389, 389, 389, 389, 475: 389, 389, 389, 481: 389, 389, 389, 487: 389, 491: 389, 389, 498: 389, 506: 389, 389, 389, 572: 389, 649: 389, 389, 652: 389}, + {388, 388, 388, 388, 388, 388, 388, 388, 388, 388, 15: 388, 388, 388, 388, 388, 388, 388, 388, 388, 388, 388, 388, 388, 388, 388, 388, 388, 388, 388, 388, 388, 388, 388, 388, 388, 388, 388, 388, 388, 388, 388, 388, 388, 475: 388, 388, 388, 481: 388, 388, 388, 487: 388, 491: 388, 388, 498: 388, 506: 388, 388, 388, 572: 388, 649: 388, 388, 652: 388}, + {387, 387, 387, 387, 387, 387, 387, 387, 387, 387, 15: 387, 387, 387, 387, 387, 387, 387, 387, 387, 387, 387, 387, 387, 387, 387, 387, 387, 387, 387, 387, 387, 387, 387, 387, 387, 387, 387, 387, 387, 387, 387, 387, 387, 475: 387, 387, 387, 481: 387, 387, 387, 487: 387, 491: 387, 387, 498: 387, 506: 387, 387, 387, 572: 387, 649: 387, 387, 652: 387}, + {386, 386, 386, 386, 386, 386, 386, 386, 386, 386, 15: 386, 386, 386, 386, 386, 386, 386, 386, 386, 386, 386, 386, 386, 386, 386, 386, 386, 386, 386, 386, 386, 386, 386, 386, 386, 386, 386, 386, 386, 386, 386, 386, 386, 475: 386, 386, 386, 481: 386, 386, 386, 487: 386, 491: 386, 386, 498: 386, 506: 386, 386, 386, 572: 386, 649: 386, 386, 652: 386}, // 1765 - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 566, 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 661: 3921, 2762, 2763, 2761, 737: 3922, 795: 4303, 1147: 4304}, - {565, 565, 9: 3924, 49: 565, 474: 565}, - {49: 4305}, - {402, 402, 402, 402, 402, 402, 402, 402, 402, 402, 15: 402, 402, 402, 402, 402, 402, 402, 402, 402, 402, 402, 402, 402, 402, 402, 402, 402, 402, 402, 402, 402, 402, 402, 402, 402, 402, 402, 402, 402, 402, 402, 402, 402, 472: 402, 402, 402, 478: 402, 402, 402, 484: 402, 488: 402, 402, 495: 402, 503: 402, 402, 402, 569: 402, 646: 402, 402, 649: 402}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 475: 3490, 492: 4307, 661: 3491, 2762, 2763, 2761, 738: 4308}, + {385, 385, 385, 385, 385, 385, 385, 385, 385, 385, 15: 385, 385, 385, 385, 385, 385, 385, 385, 385, 385, 385, 385, 385, 385, 385, 385, 385, 385, 385, 385, 385, 385, 385, 385, 385, 385, 385, 385, 385, 385, 385, 385, 385, 475: 385, 385, 385, 481: 385, 385, 385, 487: 385, 491: 385, 385, 498: 385, 506: 385, 385, 385, 572: 385, 649: 385, 385, 652: 385}, + {384, 384, 384, 384, 384, 384, 384, 384, 384, 384, 15: 384, 384, 384, 384, 384, 384, 384, 384, 384, 384, 384, 384, 384, 384, 384, 384, 384, 384, 384, 384, 384, 384, 384, 384, 384, 384, 384, 384, 384, 384, 384, 384, 384, 475: 384, 384, 384, 481: 384, 384, 384, 487: 384, 491: 384, 384, 498: 384, 506: 384, 384, 384, 572: 384, 649: 384, 384, 652: 384}, + {478: 4326, 1044: 4325}, + {411, 411, 411, 411, 411, 411, 411, 411, 411, 411, 15: 411, 411, 411, 411, 411, 411, 411, 411, 411, 411, 411, 411, 411, 411, 411, 411, 411, 411, 411, 411, 411, 411, 411, 411, 411, 411, 411, 411, 411, 411, 411, 411, 411, 475: 411, 411, 411, 481: 411, 411, 411, 487: 411, 491: 411, 411, 498: 411, 506: 411, 411, 411, 572: 411, 649: 411, 411, 652: 411}, + {11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 15: 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 11, 475: 11, 11, 11, 481: 11, 11, 11, 487: 11, 491: 11, 11, 498: 11, 506: 11, 11, 11, 11, 572: 11, 649: 11, 11, 652: 11}, // 1770 - {404, 404, 404, 404, 404, 404, 404, 404, 404, 404, 15: 404, 404, 404, 404, 404, 404, 404, 404, 404, 404, 404, 404, 404, 404, 404, 404, 404, 404, 404, 404, 404, 404, 404, 404, 404, 404, 404, 404, 404, 404, 404, 404, 404, 472: 404, 404, 404, 478: 404, 404, 404, 484: 404, 488: 404, 404, 495: 404, 503: 404, 404, 404, 569: 404, 646: 404, 404, 649: 404}, - {403, 403, 403, 403, 403, 403, 403, 403, 403, 403, 15: 403, 403, 403, 403, 403, 403, 403, 403, 403, 403, 403, 403, 403, 403, 403, 403, 403, 403, 403, 403, 403, 403, 403, 403, 403, 403, 403, 403, 403, 403, 403, 403, 403, 472: 403, 403, 403, 478: 403, 403, 403, 484: 403, 488: 403, 403, 495: 403, 503: 403, 403, 403, 569: 403, 646: 403, 403, 649: 403}, - {479: 4311, 508: 2736, 733: 2735, 741: 4312, 1139: 4310}, - {407, 407, 407, 407, 407, 407, 407, 407, 407, 407, 15: 407, 407, 407, 407, 407, 407, 407, 407, 407, 407, 407, 407, 407, 407, 407, 407, 407, 407, 407, 407, 407, 407, 407, 407, 407, 407, 407, 407, 407, 407, 407, 407, 407, 472: 407, 407, 407, 478: 407, 407, 407, 484: 407, 488: 407, 407, 495: 407, 503: 407, 407, 407, 569: 407, 646: 407, 407, 649: 407}, - {398, 398, 398, 398, 398, 398, 398, 398, 398, 398, 15: 398, 398, 398, 398, 398, 398, 398, 398, 398, 398, 398, 398, 398, 398, 398, 398, 398, 398, 398, 398, 398, 398, 398, 398, 398, 398, 398, 398, 398, 398, 398, 398, 398, 472: 398, 398, 398, 478: 398, 398, 398, 484: 398, 488: 398, 398, 495: 398, 503: 398, 398, 398, 569: 398, 646: 398, 398, 649: 398}, + {476: 4328}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 579, 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 664: 3947, 2785, 2786, 2784, 740: 3948, 786: 4329, 1155: 4330}, + {578, 578, 9: 3950, 50: 578, 477: 578}, + {50: 4331}, + {412, 412, 412, 412, 412, 412, 412, 412, 412, 412, 15: 412, 412, 412, 412, 412, 412, 412, 412, 412, 412, 412, 412, 412, 412, 412, 412, 412, 412, 412, 412, 412, 412, 412, 412, 412, 412, 412, 412, 412, 412, 412, 412, 412, 475: 412, 412, 412, 481: 412, 412, 412, 487: 412, 491: 412, 412, 498: 412, 506: 412, 412, 412, 572: 412, 649: 412, 412, 652: 412}, // 1775 - {397, 397, 397, 397, 397, 397, 397, 397, 397, 397, 15: 397, 397, 397, 397, 397, 397, 397, 397, 397, 397, 397, 397, 397, 397, 397, 397, 397, 397, 397, 397, 397, 397, 397, 397, 397, 397, 397, 397, 397, 397, 397, 397, 397, 472: 397, 397, 397, 478: 397, 397, 397, 484: 397, 488: 397, 397, 495: 397, 503: 397, 397, 397, 569: 397, 646: 397, 397, 649: 397}, - {508: 2736, 733: 2735, 741: 4314}, - {408, 408, 408, 408, 408, 408, 408, 408, 408, 408, 15: 408, 408, 408, 408, 408, 408, 408, 408, 408, 408, 408, 408, 408, 408, 408, 408, 408, 408, 408, 408, 408, 408, 408, 408, 408, 408, 408, 408, 408, 408, 408, 408, 408, 472: 408, 408, 408, 478: 408, 408, 408, 484: 408, 488: 408, 408, 495: 408, 503: 408, 408, 408, 569: 408, 646: 408, 408, 649: 408}, - {508: 2736, 733: 2735, 741: 4316}, - {409, 409, 409, 409, 409, 409, 409, 409, 409, 409, 15: 409, 409, 409, 409, 409, 409, 409, 409, 409, 409, 409, 409, 409, 409, 409, 409, 409, 409, 409, 409, 409, 409, 409, 409, 409, 409, 409, 409, 409, 409, 409, 409, 409, 472: 409, 409, 409, 478: 409, 409, 409, 484: 409, 488: 409, 409, 495: 409, 503: 409, 409, 409, 569: 409, 646: 409, 409, 649: 409}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 478: 3516, 495: 4333, 664: 3517, 2785, 2786, 2784, 742: 4334}, + {414, 414, 414, 414, 414, 414, 414, 414, 414, 414, 15: 414, 414, 414, 414, 414, 414, 414, 414, 414, 414, 414, 414, 414, 414, 414, 414, 414, 414, 414, 414, 414, 414, 414, 414, 414, 414, 414, 414, 414, 414, 414, 414, 414, 475: 414, 414, 414, 481: 414, 414, 414, 487: 414, 491: 414, 414, 498: 414, 506: 414, 414, 414, 572: 414, 649: 414, 414, 652: 414}, + {413, 413, 413, 413, 413, 413, 413, 413, 413, 413, 15: 413, 413, 413, 413, 413, 413, 413, 413, 413, 413, 413, 413, 413, 413, 413, 413, 413, 413, 413, 413, 413, 413, 413, 413, 413, 413, 413, 413, 413, 413, 413, 413, 413, 475: 413, 413, 413, 481: 413, 413, 413, 487: 413, 491: 413, 413, 498: 413, 506: 413, 413, 413, 572: 413, 649: 413, 413, 652: 413}, + {482: 4337, 511: 2759, 737: 2758, 745: 4338, 1147: 4336}, + {417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 15: 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 475: 417, 417, 417, 481: 417, 417, 417, 487: 417, 491: 417, 417, 498: 417, 506: 417, 417, 417, 572: 417, 649: 417, 417, 652: 417}, // 1780 - {475: 4318}, - {410, 410, 410, 410, 410, 410, 410, 410, 410, 410, 15: 410, 410, 410, 410, 410, 410, 410, 410, 410, 410, 410, 410, 410, 410, 410, 410, 410, 410, 410, 410, 410, 410, 410, 410, 410, 410, 410, 410, 410, 410, 410, 410, 410, 472: 410, 410, 410, 478: 410, 410, 410, 484: 410, 488: 410, 410, 495: 410, 503: 410, 410, 410, 569: 410, 646: 410, 410, 649: 410}, - {475: 4320}, - {411, 411, 411, 411, 411, 411, 411, 411, 411, 411, 15: 411, 411, 411, 411, 411, 411, 411, 411, 411, 411, 411, 411, 411, 411, 411, 411, 411, 411, 411, 411, 411, 411, 411, 411, 411, 411, 411, 411, 411, 411, 411, 411, 411, 472: 411, 411, 411, 478: 411, 411, 411, 484: 411, 488: 411, 411, 495: 411, 503: 411, 411, 411, 569: 411, 646: 411, 411, 649: 411}, - {508: 3423, 573: 3425, 3424, 820: 4322}, + {408, 408, 408, 408, 408, 408, 408, 408, 408, 408, 15: 408, 408, 408, 408, 408, 408, 408, 408, 408, 408, 408, 408, 408, 408, 408, 408, 408, 408, 408, 408, 408, 408, 408, 408, 408, 408, 408, 408, 408, 408, 408, 408, 408, 475: 408, 408, 408, 481: 408, 408, 408, 487: 408, 491: 408, 408, 498: 408, 506: 408, 408, 408, 572: 408, 649: 408, 408, 652: 408}, + {407, 407, 407, 407, 407, 407, 407, 407, 407, 407, 15: 407, 407, 407, 407, 407, 407, 407, 407, 407, 407, 407, 407, 407, 407, 407, 407, 407, 407, 407, 407, 407, 407, 407, 407, 407, 407, 407, 407, 407, 407, 407, 407, 407, 475: 407, 407, 407, 481: 407, 407, 407, 487: 407, 491: 407, 407, 498: 407, 506: 407, 407, 407, 572: 407, 649: 407, 407, 652: 407}, + {511: 2759, 737: 2758, 745: 4340}, + {418, 418, 418, 418, 418, 418, 418, 418, 418, 418, 15: 418, 418, 418, 418, 418, 418, 418, 418, 418, 418, 418, 418, 418, 418, 418, 418, 418, 418, 418, 418, 418, 418, 418, 418, 418, 418, 418, 418, 418, 418, 418, 418, 418, 475: 418, 418, 418, 481: 418, 418, 418, 487: 418, 491: 418, 418, 498: 418, 506: 418, 418, 418, 572: 418, 649: 418, 418, 652: 418}, + {511: 2759, 737: 2758, 745: 4342}, // 1785 - {412, 412, 412, 412, 412, 412, 412, 412, 412, 412, 15: 412, 412, 412, 412, 412, 412, 412, 412, 412, 412, 412, 412, 412, 412, 412, 412, 412, 412, 412, 412, 412, 412, 412, 412, 412, 412, 412, 412, 412, 412, 412, 412, 412, 472: 412, 412, 412, 478: 412, 412, 412, 484: 412, 488: 412, 412, 495: 412, 503: 412, 412, 412, 569: 412, 646: 412, 412, 649: 412}, - {508: 2736, 733: 2735, 741: 4324}, - {413, 413, 413, 413, 413, 413, 413, 413, 413, 413, 15: 413, 413, 413, 413, 413, 413, 413, 413, 413, 413, 413, 413, 413, 413, 413, 413, 413, 413, 413, 413, 413, 413, 413, 413, 413, 413, 413, 413, 413, 413, 413, 413, 413, 472: 413, 413, 413, 478: 413, 413, 413, 484: 413, 488: 413, 413, 495: 413, 503: 413, 413, 413, 569: 413, 646: 413, 413, 649: 413}, - {508: 2736, 733: 2735, 741: 4326}, - {414, 414, 414, 414, 414, 414, 414, 414, 414, 414, 15: 414, 414, 414, 414, 414, 414, 414, 414, 414, 414, 414, 414, 414, 414, 414, 414, 414, 414, 414, 414, 414, 414, 414, 414, 414, 414, 414, 414, 414, 414, 414, 414, 414, 472: 414, 414, 414, 478: 414, 414, 414, 484: 414, 488: 414, 414, 495: 414, 503: 414, 414, 414, 569: 414, 646: 414, 414, 649: 414}, + {419, 419, 419, 419, 419, 419, 419, 419, 419, 419, 15: 419, 419, 419, 419, 419, 419, 419, 419, 419, 419, 419, 419, 419, 419, 419, 419, 419, 419, 419, 419, 419, 419, 419, 419, 419, 419, 419, 419, 419, 419, 419, 419, 419, 475: 419, 419, 419, 481: 419, 419, 419, 487: 419, 491: 419, 419, 498: 419, 506: 419, 419, 419, 572: 419, 649: 419, 419, 652: 419}, + {478: 4344}, + {420, 420, 420, 420, 420, 420, 420, 420, 420, 420, 15: 420, 420, 420, 420, 420, 420, 420, 420, 420, 420, 420, 420, 420, 420, 420, 420, 420, 420, 420, 420, 420, 420, 420, 420, 420, 420, 420, 420, 420, 420, 420, 420, 420, 475: 420, 420, 420, 481: 420, 420, 420, 487: 420, 491: 420, 420, 498: 420, 506: 420, 420, 420, 572: 420, 649: 420, 420, 652: 420}, + {478: 4346}, + {421, 421, 421, 421, 421, 421, 421, 421, 421, 421, 15: 421, 421, 421, 421, 421, 421, 421, 421, 421, 421, 421, 421, 421, 421, 421, 421, 421, 421, 421, 421, 421, 421, 421, 421, 421, 421, 421, 421, 421, 421, 421, 421, 421, 475: 421, 421, 421, 481: 421, 421, 421, 487: 421, 491: 421, 421, 498: 421, 506: 421, 421, 421, 572: 421, 649: 421, 421, 652: 421}, // 1790 - {479: 4329, 508: 2736, 733: 2735, 741: 4328}, - {416, 416, 416, 416, 416, 416, 416, 416, 416, 416, 15: 416, 416, 416, 416, 416, 416, 416, 416, 416, 416, 416, 416, 416, 416, 416, 416, 416, 416, 416, 416, 416, 416, 416, 416, 416, 416, 416, 416, 416, 416, 416, 416, 416, 472: 416, 416, 416, 478: 416, 416, 416, 484: 416, 488: 416, 416, 495: 416, 503: 416, 416, 416, 569: 416, 646: 416, 416, 649: 416}, - {415, 415, 415, 415, 415, 415, 415, 415, 415, 415, 15: 415, 415, 415, 415, 415, 415, 415, 415, 415, 415, 415, 415, 415, 415, 415, 415, 415, 415, 415, 415, 415, 415, 415, 415, 415, 415, 415, 415, 415, 415, 415, 415, 415, 472: 415, 415, 415, 478: 415, 415, 415, 484: 415, 488: 415, 415, 495: 415, 503: 415, 415, 415, 569: 415, 646: 415, 415, 649: 415}, - {479: 4332, 508: 2736, 733: 2735, 741: 4331}, - {418, 418, 418, 418, 418, 418, 418, 418, 418, 418, 15: 418, 418, 418, 418, 418, 418, 418, 418, 418, 418, 418, 418, 418, 418, 418, 418, 418, 418, 418, 418, 418, 418, 418, 418, 418, 418, 418, 418, 418, 418, 418, 418, 418, 472: 418, 418, 418, 478: 418, 418, 418, 484: 418, 488: 418, 418, 495: 418, 503: 418, 418, 418, 569: 418, 646: 418, 418, 649: 418}, + {511: 3449, 576: 3451, 3450, 824: 4348}, + {422, 422, 422, 422, 422, 422, 422, 422, 422, 422, 15: 422, 422, 422, 422, 422, 422, 422, 422, 422, 422, 422, 422, 422, 422, 422, 422, 422, 422, 422, 422, 422, 422, 422, 422, 422, 422, 422, 422, 422, 422, 422, 422, 422, 475: 422, 422, 422, 481: 422, 422, 422, 487: 422, 491: 422, 422, 498: 422, 506: 422, 422, 422, 572: 422, 649: 422, 422, 652: 422}, + {511: 2759, 737: 2758, 745: 4350}, + {423, 423, 423, 423, 423, 423, 423, 423, 423, 423, 15: 423, 423, 423, 423, 423, 423, 423, 423, 423, 423, 423, 423, 423, 423, 423, 423, 423, 423, 423, 423, 423, 423, 423, 423, 423, 423, 423, 423, 423, 423, 423, 423, 423, 475: 423, 423, 423, 481: 423, 423, 423, 487: 423, 491: 423, 423, 498: 423, 506: 423, 423, 423, 572: 423, 649: 423, 423, 652: 423}, + {511: 2759, 737: 2758, 745: 4352}, // 1795 - {417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 15: 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 417, 472: 417, 417, 417, 478: 417, 417, 417, 484: 417, 488: 417, 417, 495: 417, 503: 417, 417, 417, 569: 417, 646: 417, 417, 649: 417}, - {479: 4311, 508: 2736, 733: 2735, 741: 4312, 1139: 4334}, - {419, 419, 419, 419, 419, 419, 419, 419, 419, 419, 15: 419, 419, 419, 419, 419, 419, 419, 419, 419, 419, 419, 419, 419, 419, 419, 419, 419, 419, 419, 419, 419, 419, 419, 419, 419, 419, 419, 419, 419, 419, 419, 419, 419, 472: 419, 419, 419, 478: 419, 419, 419, 484: 419, 488: 419, 419, 495: 419, 503: 419, 419, 419, 569: 419, 646: 419, 419, 649: 419}, - {508: 2736, 733: 2735, 741: 4336}, - {421, 421, 421, 421, 421, 421, 421, 421, 421, 421, 15: 421, 421, 421, 421, 421, 421, 421, 421, 421, 421, 421, 421, 421, 421, 421, 421, 421, 421, 421, 421, 421, 421, 421, 421, 421, 421, 421, 421, 421, 421, 421, 421, 421, 472: 421, 421, 421, 478: 421, 421, 421, 484: 421, 488: 421, 421, 495: 421, 503: 421, 421, 421, 569: 421, 646: 421, 421, 649: 421}, + {424, 424, 424, 424, 424, 424, 424, 424, 424, 424, 15: 424, 424, 424, 424, 424, 424, 424, 424, 424, 424, 424, 424, 424, 424, 424, 424, 424, 424, 424, 424, 424, 424, 424, 424, 424, 424, 424, 424, 424, 424, 424, 424, 424, 475: 424, 424, 424, 481: 424, 424, 424, 487: 424, 491: 424, 424, 498: 424, 506: 424, 424, 424, 572: 424, 649: 424, 424, 652: 424}, + {482: 4355, 511: 2759, 737: 2758, 745: 4354}, + {426, 426, 426, 426, 426, 426, 426, 426, 426, 426, 15: 426, 426, 426, 426, 426, 426, 426, 426, 426, 426, 426, 426, 426, 426, 426, 426, 426, 426, 426, 426, 426, 426, 426, 426, 426, 426, 426, 426, 426, 426, 426, 426, 426, 475: 426, 426, 426, 481: 426, 426, 426, 487: 426, 491: 426, 426, 498: 426, 506: 426, 426, 426, 572: 426, 649: 426, 426, 652: 426}, + {425, 425, 425, 425, 425, 425, 425, 425, 425, 425, 15: 425, 425, 425, 425, 425, 425, 425, 425, 425, 425, 425, 425, 425, 425, 425, 425, 425, 425, 425, 425, 425, 425, 425, 425, 425, 425, 425, 425, 425, 425, 425, 425, 425, 475: 425, 425, 425, 481: 425, 425, 425, 487: 425, 491: 425, 425, 498: 425, 506: 425, 425, 425, 572: 425, 649: 425, 425, 652: 425}, + {482: 4358, 511: 2759, 737: 2758, 745: 4357}, // 1800 - {508: 2736, 733: 2735, 741: 4338}, - {422, 422, 422, 422, 422, 422, 422, 422, 422, 422, 15: 422, 422, 422, 422, 422, 422, 422, 422, 422, 422, 422, 422, 422, 422, 422, 422, 422, 422, 422, 422, 422, 422, 422, 422, 422, 422, 422, 422, 422, 422, 422, 422, 422, 472: 422, 422, 422, 478: 422, 422, 422, 484: 422, 488: 422, 422, 495: 422, 503: 422, 422, 422, 569: 422, 646: 422, 422, 649: 422}, - {475: 4340}, - {423, 423, 423, 423, 423, 423, 423, 423, 423, 423, 15: 423, 423, 423, 423, 423, 423, 423, 423, 423, 423, 423, 423, 423, 423, 423, 423, 423, 423, 423, 423, 423, 423, 423, 423, 423, 423, 423, 423, 423, 423, 423, 423, 423, 472: 423, 423, 423, 478: 423, 423, 423, 484: 423, 488: 423, 423, 495: 423, 503: 423, 423, 423, 569: 423, 646: 423, 423, 649: 423}, - {475: 4342}, + {428, 428, 428, 428, 428, 428, 428, 428, 428, 428, 15: 428, 428, 428, 428, 428, 428, 428, 428, 428, 428, 428, 428, 428, 428, 428, 428, 428, 428, 428, 428, 428, 428, 428, 428, 428, 428, 428, 428, 428, 428, 428, 428, 428, 475: 428, 428, 428, 481: 428, 428, 428, 487: 428, 491: 428, 428, 498: 428, 506: 428, 428, 428, 572: 428, 649: 428, 428, 652: 428}, + {427, 427, 427, 427, 427, 427, 427, 427, 427, 427, 15: 427, 427, 427, 427, 427, 427, 427, 427, 427, 427, 427, 427, 427, 427, 427, 427, 427, 427, 427, 427, 427, 427, 427, 427, 427, 427, 427, 427, 427, 427, 427, 427, 427, 475: 427, 427, 427, 481: 427, 427, 427, 487: 427, 491: 427, 427, 498: 427, 506: 427, 427, 427, 572: 427, 649: 427, 427, 652: 427}, + {482: 4337, 511: 2759, 737: 2758, 745: 4338, 1147: 4360}, + {429, 429, 429, 429, 429, 429, 429, 429, 429, 429, 15: 429, 429, 429, 429, 429, 429, 429, 429, 429, 429, 429, 429, 429, 429, 429, 429, 429, 429, 429, 429, 429, 429, 429, 429, 429, 429, 429, 429, 429, 429, 429, 429, 429, 475: 429, 429, 429, 481: 429, 429, 429, 487: 429, 491: 429, 429, 498: 429, 506: 429, 429, 429, 572: 429, 649: 429, 429, 652: 429}, + {511: 2759, 737: 2758, 745: 4362}, // 1805 - {424, 424, 424, 424, 424, 424, 424, 424, 424, 424, 15: 424, 424, 424, 424, 424, 424, 424, 424, 424, 424, 424, 424, 424, 424, 424, 424, 424, 424, 424, 424, 424, 424, 424, 424, 424, 424, 424, 424, 424, 424, 424, 424, 424, 472: 424, 424, 424, 478: 424, 424, 424, 484: 424, 488: 424, 424, 495: 424, 503: 424, 424, 424, 569: 424, 646: 424, 424, 649: 424}, - {508: 2736, 733: 2735, 741: 4344}, - {425, 425, 425, 425, 425, 425, 425, 425, 425, 425, 15: 425, 425, 425, 425, 425, 425, 425, 425, 425, 425, 425, 425, 425, 425, 425, 425, 425, 425, 425, 425, 425, 425, 425, 425, 425, 425, 425, 425, 425, 425, 425, 425, 425, 472: 425, 425, 425, 478: 425, 425, 425, 484: 425, 488: 425, 425, 495: 425, 503: 425, 425, 425, 569: 425, 646: 425, 425, 649: 425}, - {508: 2736, 733: 2735, 741: 4346}, - {426, 426, 426, 426, 426, 426, 426, 426, 426, 426, 15: 426, 426, 426, 426, 426, 426, 426, 426, 426, 426, 426, 426, 426, 426, 426, 426, 426, 426, 426, 426, 426, 426, 426, 426, 426, 426, 426, 426, 426, 426, 426, 426, 426, 472: 426, 426, 426, 478: 426, 426, 426, 484: 426, 488: 426, 426, 495: 426, 503: 426, 426, 426, 569: 426, 646: 426, 426, 649: 426}, + {431, 431, 431, 431, 431, 431, 431, 431, 431, 431, 15: 431, 431, 431, 431, 431, 431, 431, 431, 431, 431, 431, 431, 431, 431, 431, 431, 431, 431, 431, 431, 431, 431, 431, 431, 431, 431, 431, 431, 431, 431, 431, 431, 431, 475: 431, 431, 431, 481: 431, 431, 431, 487: 431, 491: 431, 431, 498: 431, 506: 431, 431, 431, 572: 431, 649: 431, 431, 652: 431}, + {511: 2759, 737: 2758, 745: 4364}, + {432, 432, 432, 432, 432, 432, 432, 432, 432, 432, 15: 432, 432, 432, 432, 432, 432, 432, 432, 432, 432, 432, 432, 432, 432, 432, 432, 432, 432, 432, 432, 432, 432, 432, 432, 432, 432, 432, 432, 432, 432, 432, 432, 432, 475: 432, 432, 432, 481: 432, 432, 432, 487: 432, 491: 432, 432, 498: 432, 506: 432, 432, 432, 572: 432, 649: 432, 432, 652: 432}, + {478: 4366}, + {433, 433, 433, 433, 433, 433, 433, 433, 433, 433, 15: 433, 433, 433, 433, 433, 433, 433, 433, 433, 433, 433, 433, 433, 433, 433, 433, 433, 433, 433, 433, 433, 433, 433, 433, 433, 433, 433, 433, 433, 433, 433, 433, 433, 475: 433, 433, 433, 481: 433, 433, 433, 487: 433, 491: 433, 433, 498: 433, 506: 433, 433, 433, 572: 433, 649: 433, 433, 652: 433}, // 1810 - {475: 4348}, - {427, 427, 427, 427, 427, 427, 427, 427, 427, 427, 15: 427, 427, 427, 427, 427, 427, 427, 427, 427, 427, 427, 427, 427, 427, 427, 427, 427, 427, 427, 427, 427, 427, 427, 427, 427, 427, 427, 427, 427, 427, 427, 427, 427, 472: 427, 427, 427, 478: 427, 427, 427, 484: 427, 488: 427, 427, 495: 427, 503: 427, 427, 427, 569: 427, 646: 427, 427, 649: 427}, - {508: 2736, 733: 2735, 741: 4350}, - {428, 428, 428, 428, 428, 428, 428, 428, 428, 428, 15: 428, 428, 428, 428, 428, 428, 428, 428, 428, 428, 428, 428, 428, 428, 428, 428, 428, 428, 428, 428, 428, 428, 428, 428, 428, 428, 428, 428, 428, 428, 428, 428, 428, 472: 428, 428, 428, 478: 428, 428, 428, 484: 428, 488: 428, 428, 495: 428, 503: 428, 428, 428, 569: 428, 646: 428, 428, 649: 428}, - {508: 2736, 733: 2735, 741: 4352}, + {478: 4368}, + {434, 434, 434, 434, 434, 434, 434, 434, 434, 434, 15: 434, 434, 434, 434, 434, 434, 434, 434, 434, 434, 434, 434, 434, 434, 434, 434, 434, 434, 434, 434, 434, 434, 434, 434, 434, 434, 434, 434, 434, 434, 434, 434, 434, 475: 434, 434, 434, 481: 434, 434, 434, 487: 434, 491: 434, 434, 498: 434, 506: 434, 434, 434, 572: 434, 649: 434, 434, 652: 434}, + {511: 2759, 737: 2758, 745: 4370}, + {435, 435, 435, 435, 435, 435, 435, 435, 435, 435, 15: 435, 435, 435, 435, 435, 435, 435, 435, 435, 435, 435, 435, 435, 435, 435, 435, 435, 435, 435, 435, 435, 435, 435, 435, 435, 435, 435, 435, 435, 435, 435, 435, 435, 475: 435, 435, 435, 481: 435, 435, 435, 487: 435, 491: 435, 435, 498: 435, 506: 435, 435, 435, 572: 435, 649: 435, 435, 652: 435}, + {511: 2759, 737: 2758, 745: 4372}, // 1815 - {430, 430, 430, 430, 430, 430, 430, 430, 430, 430, 15: 430, 430, 430, 430, 430, 430, 430, 430, 430, 430, 430, 430, 430, 430, 430, 430, 430, 430, 430, 430, 430, 430, 430, 430, 430, 430, 430, 430, 430, 430, 430, 430, 430, 472: 430, 430, 430, 478: 430, 430, 430, 484: 430, 488: 430, 430, 495: 430, 503: 430, 430, 430, 569: 430, 646: 430, 430, 649: 430}, - {499: 4281, 508: 2047, 736: 4357}, - {499: 4281, 508: 2047, 736: 4355}, - {508: 2736, 733: 2735, 741: 4356}, - {429, 429, 429, 429, 429, 429, 429, 429, 429, 429, 15: 429, 429, 429, 429, 429, 429, 429, 429, 429, 429, 429, 429, 429, 429, 429, 429, 429, 429, 429, 429, 429, 429, 429, 429, 429, 429, 429, 429, 429, 429, 429, 429, 429, 472: 429, 429, 429, 478: 429, 429, 429, 484: 429, 488: 429, 429, 495: 429, 503: 429, 429, 429, 569: 429, 646: 429, 429, 649: 429}, + {436, 436, 436, 436, 436, 436, 436, 436, 436, 436, 15: 436, 436, 436, 436, 436, 436, 436, 436, 436, 436, 436, 436, 436, 436, 436, 436, 436, 436, 436, 436, 436, 436, 436, 436, 436, 436, 436, 436, 436, 436, 436, 436, 436, 475: 436, 436, 436, 481: 436, 436, 436, 487: 436, 491: 436, 436, 498: 436, 506: 436, 436, 436, 572: 436, 649: 436, 436, 652: 436}, + {478: 4374}, + {437, 437, 437, 437, 437, 437, 437, 437, 437, 437, 15: 437, 437, 437, 437, 437, 437, 437, 437, 437, 437, 437, 437, 437, 437, 437, 437, 437, 437, 437, 437, 437, 437, 437, 437, 437, 437, 437, 437, 437, 437, 437, 437, 437, 475: 437, 437, 437, 481: 437, 437, 437, 487: 437, 491: 437, 437, 498: 437, 506: 437, 437, 437, 572: 437, 649: 437, 437, 652: 437}, + {511: 2759, 737: 2758, 745: 4376}, + {438, 438, 438, 438, 438, 438, 438, 438, 438, 438, 15: 438, 438, 438, 438, 438, 438, 438, 438, 438, 438, 438, 438, 438, 438, 438, 438, 438, 438, 438, 438, 438, 438, 438, 438, 438, 438, 438, 438, 438, 438, 438, 438, 438, 475: 438, 438, 438, 481: 438, 438, 438, 487: 438, 491: 438, 438, 498: 438, 506: 438, 438, 438, 572: 438, 649: 438, 438, 652: 438}, // 1820 - {508: 2736, 733: 2735, 741: 4358}, - {431, 431, 431, 431, 431, 431, 431, 431, 431, 431, 15: 431, 431, 431, 431, 431, 431, 431, 431, 431, 431, 431, 431, 431, 431, 431, 431, 431, 431, 431, 431, 431, 431, 431, 431, 431, 431, 431, 431, 431, 431, 431, 431, 431, 472: 431, 431, 431, 478: 431, 431, 431, 484: 431, 488: 431, 431, 495: 431, 503: 431, 431, 431, 569: 431, 646: 431, 431, 649: 431}, - {2: 2047, 2047, 2047, 2047, 2047, 2047, 2047, 10: 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 50: 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 475: 2047, 499: 4281, 530: 2047, 736: 4363}, - {2: 2047, 2047, 2047, 2047, 2047, 2047, 2047, 10: 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 50: 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 475: 2047, 499: 4281, 530: 2047, 736: 4361}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 475: 3490, 530: 3489, 661: 3491, 2762, 2763, 2761, 738: 3488, 872: 4362}, + {511: 2759, 737: 2758, 745: 4378}, + {440, 440, 440, 440, 440, 440, 440, 440, 440, 440, 15: 440, 440, 440, 440, 440, 440, 440, 440, 440, 440, 440, 440, 440, 440, 440, 440, 440, 440, 440, 440, 440, 440, 440, 440, 440, 440, 440, 440, 440, 440, 440, 440, 440, 475: 440, 440, 440, 481: 440, 440, 440, 487: 440, 491: 440, 440, 498: 440, 506: 440, 440, 440, 572: 440, 649: 440, 440, 652: 440}, + {502: 4307, 511: 2064, 741: 4383}, + {502: 4307, 511: 2064, 741: 4381}, + {511: 2759, 737: 2758, 745: 4382}, // 1825 - {432, 432, 432, 432, 432, 432, 432, 432, 432, 432, 15: 432, 432, 432, 432, 432, 432, 432, 432, 432, 432, 432, 432, 432, 432, 432, 432, 432, 432, 432, 432, 432, 432, 432, 432, 432, 432, 432, 432, 432, 432, 432, 432, 432, 472: 432, 432, 432, 478: 432, 432, 432, 484: 432, 488: 432, 432, 495: 432, 503: 432, 432, 432, 569: 432, 646: 432, 432, 649: 432}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 475: 3490, 530: 3761, 661: 3491, 2762, 2763, 2761, 738: 3760, 807: 4364}, - {433, 433, 433, 433, 433, 433, 433, 433, 433, 433, 15: 433, 433, 433, 433, 433, 433, 433, 433, 433, 433, 433, 433, 433, 433, 433, 433, 433, 433, 433, 433, 433, 433, 433, 433, 433, 433, 433, 433, 433, 433, 433, 433, 433, 472: 433, 433, 433, 478: 433, 433, 433, 484: 433, 488: 433, 433, 495: 433, 503: 433, 433, 433, 569: 433, 646: 433, 433, 649: 433}, - {508: 2736, 733: 2735, 741: 4366}, - {2121, 2121, 2121, 2121, 2121, 2121, 2121, 2121, 2121, 2121, 15: 2121, 2121, 2121, 2121, 2121, 2121, 2121, 2121, 2121, 2121, 2121, 2121, 2121, 2121, 2121, 2121, 2121, 2121, 2121, 2121, 2121, 2121, 2121, 2121, 2121, 2121, 2121, 2121, 2121, 2121, 2121, 2121, 2121, 49: 2121, 472: 2121, 2121, 2121, 478: 2121, 2121, 2121, 484: 2121, 488: 2121, 2121, 495: 2121, 503: 2121, 2121, 2121, 569: 2121, 646: 2121, 2121, 649: 2121}, + {439, 439, 439, 439, 439, 439, 439, 439, 439, 439, 15: 439, 439, 439, 439, 439, 439, 439, 439, 439, 439, 439, 439, 439, 439, 439, 439, 439, 439, 439, 439, 439, 439, 439, 439, 439, 439, 439, 439, 439, 439, 439, 439, 439, 475: 439, 439, 439, 481: 439, 439, 439, 487: 439, 491: 439, 439, 498: 439, 506: 439, 439, 439, 572: 439, 649: 439, 439, 652: 439}, + {511: 2759, 737: 2758, 745: 4384}, + {441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 15: 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 475: 441, 441, 441, 481: 441, 441, 441, 487: 441, 491: 441, 441, 498: 441, 506: 441, 441, 441, 572: 441, 649: 441, 441, 652: 441}, + {2: 2064, 2064, 2064, 2064, 2064, 2064, 2064, 10: 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 51: 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 478: 2064, 502: 4307, 533: 2064, 741: 4389}, + {2: 2064, 2064, 2064, 2064, 2064, 2064, 2064, 10: 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 51: 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 478: 2064, 502: 4307, 533: 2064, 741: 4387}, // 1830 - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 661: 4368, 2762, 2763, 2761}, - {2122, 2122, 2122, 2122, 2122, 2122, 2122, 2122, 2122, 2122, 15: 2122, 2122, 2122, 2122, 2122, 2122, 2122, 2122, 2122, 2122, 2122, 2122, 2122, 2122, 2122, 2122, 2122, 2122, 2122, 2122, 2122, 2122, 2122, 2122, 2122, 2122, 2122, 2122, 2122, 2122, 2122, 2122, 2122, 49: 2122, 472: 2122, 2122, 2122, 478: 2122, 2122, 2122, 484: 2122, 488: 2122, 2122, 495: 2122, 503: 2122, 2122, 2122, 569: 2122, 646: 2122, 2122, 649: 2122}, - {508: 2736, 733: 2735, 741: 4370}, - {2123, 2123, 2123, 2123, 2123, 2123, 2123, 2123, 2123, 2123, 15: 2123, 2123, 2123, 2123, 2123, 2123, 2123, 2123, 2123, 2123, 2123, 2123, 2123, 2123, 2123, 2123, 2123, 2123, 2123, 2123, 2123, 2123, 2123, 2123, 2123, 2123, 2123, 2123, 2123, 2123, 2123, 2123, 2123, 49: 2123, 472: 2123, 2123, 2123, 478: 2123, 2123, 2123, 484: 2123, 488: 2123, 2123, 495: 2123, 503: 2123, 2123, 2123, 569: 2123, 646: 2123, 2123, 649: 2123}, - {508: 2736, 733: 2735, 741: 4372}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 478: 3516, 533: 3515, 664: 3517, 2785, 2786, 2784, 742: 3514, 876: 4388}, + {442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 15: 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 475: 442, 442, 442, 481: 442, 442, 442, 487: 442, 491: 442, 442, 498: 442, 506: 442, 442, 442, 572: 442, 649: 442, 442, 652: 442}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 478: 3516, 533: 3787, 664: 3517, 2785, 2786, 2784, 742: 3786, 811: 4390}, + {443, 443, 443, 443, 443, 443, 443, 443, 443, 443, 15: 443, 443, 443, 443, 443, 443, 443, 443, 443, 443, 443, 443, 443, 443, 443, 443, 443, 443, 443, 443, 443, 443, 443, 443, 443, 443, 443, 443, 443, 443, 443, 443, 443, 475: 443, 443, 443, 481: 443, 443, 443, 487: 443, 491: 443, 443, 498: 443, 506: 443, 443, 443, 572: 443, 649: 443, 443, 652: 443}, + {511: 2759, 737: 2758, 745: 4392}, // 1835 - {2124, 2124, 2124, 2124, 2124, 2124, 2124, 2124, 2124, 2124, 15: 2124, 2124, 2124, 2124, 2124, 2124, 2124, 2124, 2124, 2124, 2124, 2124, 2124, 2124, 2124, 2124, 2124, 2124, 2124, 2124, 2124, 2124, 2124, 2124, 2124, 2124, 2124, 2124, 2124, 2124, 2124, 2124, 2124, 49: 2124, 472: 2124, 2124, 2124, 478: 2124, 2124, 2124, 484: 2124, 488: 2124, 2124, 495: 2124, 503: 2124, 2124, 2124, 569: 2124, 646: 2124, 2124, 649: 2124}, - {475: 2047, 499: 4281, 736: 4374}, - {475: 4375}, - {2125, 2125, 2125, 2125, 2125, 2125, 2125, 2125, 2125, 2125, 15: 2125, 2125, 2125, 2125, 2125, 2125, 2125, 2125, 2125, 2125, 2125, 2125, 2125, 2125, 2125, 2125, 2125, 2125, 2125, 2125, 2125, 2125, 2125, 2125, 2125, 2125, 2125, 2125, 2125, 2125, 2125, 2125, 2125, 49: 2125, 472: 2125, 2125, 2125, 478: 2125, 2125, 2125, 484: 2125, 488: 2125, 2125, 495: 2125, 503: 2125, 2125, 2125, 569: 2125, 646: 2125, 2125, 649: 2125}, - {475: 2047, 499: 4281, 736: 4377}, + {2138, 2138, 2138, 2138, 2138, 2138, 2138, 2138, 2138, 2138, 15: 2138, 2138, 2138, 2138, 2138, 2138, 2138, 2138, 2138, 2138, 2138, 2138, 2138, 2138, 2138, 2138, 2138, 2138, 2138, 2138, 2138, 2138, 2138, 2138, 2138, 2138, 2138, 2138, 2138, 2138, 2138, 2138, 2138, 50: 2138, 475: 2138, 2138, 2138, 481: 2138, 2138, 2138, 487: 2138, 491: 2138, 2138, 498: 2138, 506: 2138, 2138, 2138, 572: 2138, 649: 2138, 2138, 652: 2138}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 664: 4394, 2785, 2786, 2784}, + {2139, 2139, 2139, 2139, 2139, 2139, 2139, 2139, 2139, 2139, 15: 2139, 2139, 2139, 2139, 2139, 2139, 2139, 2139, 2139, 2139, 2139, 2139, 2139, 2139, 2139, 2139, 2139, 2139, 2139, 2139, 2139, 2139, 2139, 2139, 2139, 2139, 2139, 2139, 2139, 2139, 2139, 2139, 2139, 50: 2139, 475: 2139, 2139, 2139, 481: 2139, 2139, 2139, 487: 2139, 491: 2139, 2139, 498: 2139, 506: 2139, 2139, 2139, 572: 2139, 649: 2139, 2139, 652: 2139}, + {511: 2759, 737: 2758, 745: 4396}, + {2140, 2140, 2140, 2140, 2140, 2140, 2140, 2140, 2140, 2140, 15: 2140, 2140, 2140, 2140, 2140, 2140, 2140, 2140, 2140, 2140, 2140, 2140, 2140, 2140, 2140, 2140, 2140, 2140, 2140, 2140, 2140, 2140, 2140, 2140, 2140, 2140, 2140, 2140, 2140, 2140, 2140, 2140, 2140, 50: 2140, 475: 2140, 2140, 2140, 481: 2140, 2140, 2140, 487: 2140, 491: 2140, 2140, 498: 2140, 506: 2140, 2140, 2140, 572: 2140, 649: 2140, 2140, 652: 2140}, // 1840 - {475: 4378}, - {2126, 2126, 2126, 2126, 2126, 2126, 2126, 2126, 2126, 2126, 15: 2126, 2126, 2126, 2126, 2126, 2126, 2126, 2126, 2126, 2126, 2126, 2126, 2126, 2126, 2126, 2126, 2126, 2126, 2126, 2126, 2126, 2126, 2126, 2126, 2126, 2126, 2126, 2126, 2126, 2126, 2126, 2126, 2126, 49: 2126, 472: 2126, 2126, 2126, 478: 2126, 2126, 2126, 484: 2126, 488: 2126, 2126, 495: 2126, 503: 2126, 2126, 2126, 569: 2126, 646: 2126, 2126, 649: 2126}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 475: 3490, 661: 3491, 2762, 2763, 2761, 738: 4380}, - {2127, 2127, 2127, 2127, 2127, 2127, 2127, 2127, 2127, 2127, 15: 2127, 2127, 2127, 2127, 2127, 2127, 2127, 2127, 2127, 2127, 2127, 2127, 2127, 2127, 2127, 2127, 2127, 2127, 2127, 2127, 2127, 2127, 2127, 2127, 2127, 2127, 2127, 2127, 2127, 2127, 2127, 2127, 2127, 49: 2127, 472: 2127, 2127, 2127, 478: 2127, 2127, 2127, 484: 2127, 488: 2127, 2127, 495: 2127, 503: 2127, 2127, 2127, 569: 2127, 646: 2127, 2127, 649: 2127}, - {2: 2047, 2047, 2047, 2047, 2047, 2047, 2047, 10: 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 50: 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 475: 2047, 499: 4281, 736: 4384}, + {511: 2759, 737: 2758, 745: 4398}, + {2141, 2141, 2141, 2141, 2141, 2141, 2141, 2141, 2141, 2141, 15: 2141, 2141, 2141, 2141, 2141, 2141, 2141, 2141, 2141, 2141, 2141, 2141, 2141, 2141, 2141, 2141, 2141, 2141, 2141, 2141, 2141, 2141, 2141, 2141, 2141, 2141, 2141, 2141, 2141, 2141, 2141, 2141, 2141, 50: 2141, 475: 2141, 2141, 2141, 481: 2141, 2141, 2141, 487: 2141, 491: 2141, 2141, 498: 2141, 506: 2141, 2141, 2141, 572: 2141, 649: 2141, 2141, 652: 2141}, + {478: 2064, 502: 4307, 741: 4400}, + {478: 4401}, + {2142, 2142, 2142, 2142, 2142, 2142, 2142, 2142, 2142, 2142, 15: 2142, 2142, 2142, 2142, 2142, 2142, 2142, 2142, 2142, 2142, 2142, 2142, 2142, 2142, 2142, 2142, 2142, 2142, 2142, 2142, 2142, 2142, 2142, 2142, 2142, 2142, 2142, 2142, 2142, 2142, 2142, 2142, 2142, 50: 2142, 475: 2142, 2142, 2142, 481: 2142, 2142, 2142, 487: 2142, 491: 2142, 2142, 498: 2142, 506: 2142, 2142, 2142, 572: 2142, 649: 2142, 2142, 652: 2142}, // 1845 - {406, 406, 406, 406, 406, 406, 406, 406, 406, 406, 15: 406, 406, 406, 406, 406, 406, 406, 406, 406, 406, 406, 406, 406, 406, 406, 406, 406, 406, 406, 406, 406, 406, 406, 406, 406, 406, 406, 406, 406, 406, 406, 406, 406, 472: 406, 406, 406, 478: 406, 406, 406, 484: 406, 488: 406, 406, 495: 406, 503: 406, 406, 406, 569: 406, 646: 406, 406, 649: 406}, - {405, 405, 405, 405, 405, 405, 405, 405, 405, 405, 15: 405, 405, 405, 405, 405, 405, 405, 405, 405, 405, 405, 405, 405, 405, 405, 405, 405, 405, 405, 405, 405, 405, 405, 405, 405, 405, 405, 405, 405, 405, 405, 405, 405, 472: 405, 405, 405, 478: 405, 405, 405, 484: 405, 488: 405, 405, 495: 405, 503: 405, 405, 405, 569: 405, 646: 405, 405, 649: 405}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 475: 3490, 661: 3491, 2762, 2763, 2761, 738: 4385}, - {2128, 2128, 2128, 2128, 2128, 2128, 2128, 2128, 2128, 2128, 15: 2128, 2128, 2128, 2128, 2128, 2128, 2128, 2128, 2128, 2128, 2128, 2128, 2128, 2128, 2128, 2128, 2128, 2128, 2128, 2128, 2128, 2128, 2128, 2128, 2128, 2128, 2128, 2128, 2128, 2128, 2128, 2128, 2128, 49: 2128, 472: 2128, 2128, 2128, 478: 2128, 2128, 2128, 484: 2128, 488: 2128, 2128, 495: 2128, 503: 2128, 2128, 2128, 569: 2128, 646: 2128, 2128, 649: 2128}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 475: 3490, 661: 3491, 2762, 2763, 2761, 738: 4387}, + {478: 2064, 502: 4307, 741: 4403}, + {478: 4404}, + {2143, 2143, 2143, 2143, 2143, 2143, 2143, 2143, 2143, 2143, 15: 2143, 2143, 2143, 2143, 2143, 2143, 2143, 2143, 2143, 2143, 2143, 2143, 2143, 2143, 2143, 2143, 2143, 2143, 2143, 2143, 2143, 2143, 2143, 2143, 2143, 2143, 2143, 2143, 2143, 2143, 2143, 2143, 2143, 50: 2143, 475: 2143, 2143, 2143, 481: 2143, 2143, 2143, 487: 2143, 491: 2143, 2143, 498: 2143, 506: 2143, 2143, 2143, 572: 2143, 649: 2143, 2143, 652: 2143}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 478: 3516, 664: 3517, 2785, 2786, 2784, 742: 4406}, + {2144, 2144, 2144, 2144, 2144, 2144, 2144, 2144, 2144, 2144, 15: 2144, 2144, 2144, 2144, 2144, 2144, 2144, 2144, 2144, 2144, 2144, 2144, 2144, 2144, 2144, 2144, 2144, 2144, 2144, 2144, 2144, 2144, 2144, 2144, 2144, 2144, 2144, 2144, 2144, 2144, 2144, 2144, 2144, 50: 2144, 475: 2144, 2144, 2144, 481: 2144, 2144, 2144, 487: 2144, 491: 2144, 2144, 498: 2144, 506: 2144, 2144, 2144, 572: 2144, 649: 2144, 2144, 652: 2144}, // 1850 - {2129, 2129, 2129, 2129, 2129, 2129, 2129, 2129, 2129, 2129, 15: 2129, 2129, 2129, 2129, 2129, 2129, 2129, 2129, 2129, 2129, 2129, 2129, 2129, 2129, 2129, 2129, 2129, 2129, 2129, 2129, 2129, 2129, 2129, 2129, 2129, 2129, 2129, 2129, 2129, 2129, 2129, 2129, 2129, 49: 2129, 472: 2129, 2129, 2129, 478: 2129, 2129, 2129, 484: 2129, 488: 2129, 2129, 495: 2129, 503: 2129, 2129, 2129, 569: 2129, 646: 2129, 2129, 649: 2129}, - {475: 4389}, - {2130, 2130, 2130, 2130, 2130, 2130, 2130, 2130, 2130, 2130, 15: 2130, 2130, 2130, 2130, 2130, 2130, 2130, 2130, 2130, 2130, 2130, 2130, 2130, 2130, 2130, 2130, 2130, 2130, 2130, 2130, 2130, 2130, 2130, 2130, 2130, 2130, 2130, 2130, 2130, 2130, 2130, 2130, 2130, 49: 2130, 472: 2130, 2130, 2130, 478: 2130, 2130, 2130, 484: 2130, 488: 2130, 2130, 495: 2130, 503: 2130, 2130, 2130, 569: 2130, 646: 2130, 2130, 649: 2130}, - {6: 4241, 4243, 400, 10: 4210, 15: 4260, 2176, 4258, 4197, 4262, 4249, 4278, 4242, 4245, 4244, 4247, 4248, 4250, 4257, 400, 4268, 4269, 4255, 4256, 4261, 4263, 4275, 4274, 4280, 4276, 4273, 4266, 4271, 4272, 4265, 4267, 4270, 4259, 71: 4212, 74: 4233, 4234, 83: 4235, 134: 4215, 183: 4204, 203: 4198, 205: 4219, 208: 4220, 219: 4214, 224: 4230, 237: 4208, 246: 4216, 252: 4211, 269: 4221, 277: 4217, 284: 4231, 4232, 290: 4199, 474: 4229, 479: 4240, 4277, 484: 2176, 497: 4236, 502: 4218, 4228, 505: 2176, 4201, 584: 4202, 590: 4207, 647: 2176, 649: 4246, 665: 4223, 669: 4209, 671: 4237, 679: 4222, 686: 4224, 689: 4203, 704: 4213, 781: 4251, 792: 4253, 813: 4252, 835: 4254, 838: 4264, 842: 4279, 870: 4227, 883: 4225, 919: 4200, 926: 4205, 989: 4391, 1138: 4206, 1165: 4226}, - {2409, 2409, 2409, 2409, 2409, 2409, 9: 2409, 488: 2409}, + {2: 2064, 2064, 2064, 2064, 2064, 2064, 2064, 10: 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 51: 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 478: 2064, 502: 4307, 741: 4410}, + {416, 416, 416, 416, 416, 416, 416, 416, 416, 416, 15: 416, 416, 416, 416, 416, 416, 416, 416, 416, 416, 416, 416, 416, 416, 416, 416, 416, 416, 416, 416, 416, 416, 416, 416, 416, 416, 416, 416, 416, 416, 416, 416, 416, 475: 416, 416, 416, 481: 416, 416, 416, 487: 416, 491: 416, 416, 498: 416, 506: 416, 416, 416, 572: 416, 649: 416, 416, 652: 416}, + {415, 415, 415, 415, 415, 415, 415, 415, 415, 415, 15: 415, 415, 415, 415, 415, 415, 415, 415, 415, 415, 415, 415, 415, 415, 415, 415, 415, 415, 415, 415, 415, 415, 415, 415, 415, 415, 415, 415, 415, 415, 415, 415, 415, 475: 415, 415, 415, 481: 415, 415, 415, 487: 415, 491: 415, 415, 498: 415, 506: 415, 415, 415, 572: 415, 649: 415, 415, 652: 415}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 478: 3516, 664: 3517, 2785, 2786, 2784, 742: 4411}, + {2145, 2145, 2145, 2145, 2145, 2145, 2145, 2145, 2145, 2145, 15: 2145, 2145, 2145, 2145, 2145, 2145, 2145, 2145, 2145, 2145, 2145, 2145, 2145, 2145, 2145, 2145, 2145, 2145, 2145, 2145, 2145, 2145, 2145, 2145, 2145, 2145, 2145, 2145, 2145, 2145, 2145, 2145, 2145, 50: 2145, 475: 2145, 2145, 2145, 481: 2145, 2145, 2145, 487: 2145, 491: 2145, 2145, 498: 2145, 506: 2145, 2145, 2145, 572: 2145, 649: 2145, 2145, 652: 2145}, // 1855 - {2423, 2423, 2423, 2423, 2423, 2423, 9: 2423, 488: 2423}, - {2422, 2422, 2422, 2422, 2422, 2422, 9: 2422, 488: 2422}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 479: 4395, 661: 4396, 2762, 2763, 2761}, - {2425, 2425, 2425, 2425, 2425, 2425, 9: 2425, 83: 2425, 488: 2425}, - {2424, 2424, 2424, 2424, 2424, 2424, 9: 2424, 83: 2424, 488: 2424}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 478: 3516, 664: 3517, 2785, 2786, 2784, 742: 4413}, + {2146, 2146, 2146, 2146, 2146, 2146, 2146, 2146, 2146, 2146, 15: 2146, 2146, 2146, 2146, 2146, 2146, 2146, 2146, 2146, 2146, 2146, 2146, 2146, 2146, 2146, 2146, 2146, 2146, 2146, 2146, 2146, 2146, 2146, 2146, 2146, 2146, 2146, 2146, 2146, 2146, 2146, 2146, 2146, 50: 2146, 475: 2146, 2146, 2146, 481: 2146, 2146, 2146, 487: 2146, 491: 2146, 2146, 498: 2146, 506: 2146, 2146, 2146, 572: 2146, 649: 2146, 2146, 652: 2146}, + {478: 4415}, + {2147, 2147, 2147, 2147, 2147, 2147, 2147, 2147, 2147, 2147, 15: 2147, 2147, 2147, 2147, 2147, 2147, 2147, 2147, 2147, 2147, 2147, 2147, 2147, 2147, 2147, 2147, 2147, 2147, 2147, 2147, 2147, 2147, 2147, 2147, 2147, 2147, 2147, 2147, 2147, 2147, 2147, 2147, 2147, 50: 2147, 475: 2147, 2147, 2147, 481: 2147, 2147, 2147, 487: 2147, 491: 2147, 2147, 498: 2147, 506: 2147, 2147, 2147, 572: 2147, 649: 2147, 2147, 652: 2147}, + {6: 4267, 4269, 410, 10: 4236, 15: 4286, 2193, 4284, 4223, 4288, 4275, 4304, 4268, 4271, 4270, 4273, 4274, 4276, 4283, 410, 4294, 4295, 4281, 4282, 4287, 4289, 4301, 4300, 4306, 4302, 4299, 4292, 4297, 4298, 4291, 4293, 4296, 4285, 72: 4238, 75: 4259, 4260, 84: 4261, 140: 4241, 185: 4230, 205: 4224, 207: 4245, 210: 4246, 221: 4240, 227: 4256, 240: 4234, 249: 4242, 255: 4237, 272: 4247, 280: 4243, 287: 4257, 4258, 292: 4225, 477: 4255, 482: 4266, 4303, 487: 2193, 500: 4262, 505: 4244, 4254, 508: 2193, 4227, 587: 4228, 593: 4233, 650: 2193, 652: 4272, 668: 4249, 672: 4235, 674: 4263, 683: 4248, 690: 4250, 693: 4229, 708: 4239, 785: 4277, 797: 4279, 818: 4278, 840: 4280, 843: 4290, 847: 4305, 874: 4253, 887: 4251, 924: 4226, 931: 4231, 994: 4417, 1146: 4232, 1174: 4252}, // 1860 - {151: 4402, 240: 4399, 261: 4400, 263: 4401, 479: 4398}, - {2430, 2430, 2430, 2430, 2430, 2430, 9: 2430, 488: 2430, 497: 2430}, - {2429, 2429, 2429, 2429, 2429, 2429, 9: 2429, 488: 2429, 497: 2429}, - {2428, 2428, 2428, 2428, 2428, 2428, 9: 2428, 488: 2428, 497: 2428}, - {2427, 2427, 2427, 2427, 2427, 2427, 9: 2427, 488: 2427, 497: 2427}, + {2429, 2429, 2429, 2429, 2429, 2429, 9: 2429, 491: 2429}, + {2443, 2443, 2443, 2443, 2443, 2443, 9: 2443, 491: 2443}, + {2442, 2442, 2442, 2442, 2442, 2442, 9: 2442, 491: 2442}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 482: 4421, 664: 4422, 2785, 2786, 2784}, + {2445, 2445, 2445, 2445, 2445, 2445, 9: 2445, 84: 2445, 491: 2445}, // 1865 - {2426, 2426, 2426, 2426, 2426, 2426, 9: 2426, 488: 2426, 497: 2426}, - {2448, 2448, 2448, 2448, 2448, 2448, 9: 2448, 488: 2448}, - {2449, 2449, 2449, 2449, 2449, 2449, 9: 2449, 488: 2449}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 661: 4418, 2762, 2763, 2761}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 661: 3921, 2762, 2763, 2761, 737: 4417}, + {2444, 2444, 2444, 2444, 2444, 2444, 9: 2444, 84: 2444, 491: 2444}, + {130: 4428, 243: 4425, 264: 4426, 266: 4427, 482: 4424}, + {2450, 2450, 2450, 2450, 2450, 2450, 9: 2450, 491: 2450, 500: 2450}, + {2449, 2449, 2449, 2449, 2449, 2449, 9: 2449, 491: 2449, 500: 2449}, + {2448, 2448, 2448, 2448, 2448, 2448, 9: 2448, 491: 2448, 500: 2448}, // 1870 - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 661: 3921, 2762, 2763, 2761, 737: 4416}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 661: 3921, 2762, 2763, 2761, 737: 4415}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 661: 4412, 2762, 2763, 2761}, - {2: 2421, 2421, 2421, 2421, 2421, 2421, 2421, 10: 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 50: 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 2421, 473: 2421, 481: 2421, 494: 2421, 564: 2421}, - {2: 2420, 2420, 2420, 2420, 2420, 2420, 2420, 10: 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 50: 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 2420, 473: 2420, 481: 2420, 494: 2420, 564: 2420}, + {2447, 2447, 2447, 2447, 2447, 2447, 9: 2447, 491: 2447, 500: 2447}, + {2446, 2446, 2446, 2446, 2446, 2446, 9: 2446, 491: 2446, 500: 2446}, + {2468, 2468, 2468, 2468, 2468, 2468, 9: 2468, 491: 2468}, + {2469, 2469, 2469, 2469, 2469, 2469, 9: 2469, 491: 2469}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 664: 4444, 2785, 2786, 2784}, // 1875 - {650: 4413}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 661: 4414, 2762, 2763, 2761}, - {2454, 2454, 2454, 2454, 2454, 2454, 9: 2454, 488: 2454}, - {2455, 2455, 2455, 2455, 2455, 2455, 9: 2455, 488: 2455}, - {2456, 2456, 2456, 2456, 2456, 2456, 9: 2456, 488: 2456}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 664: 3947, 2785, 2786, 2784, 740: 4443}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 664: 3947, 2785, 2786, 2784, 740: 4442}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 664: 3947, 2785, 2786, 2784, 740: 4441}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 664: 4438, 2785, 2786, 2784}, + {2: 2441, 2441, 2441, 2441, 2441, 2441, 2441, 10: 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 51: 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 2441, 476: 2441, 484: 2441, 497: 2441, 567: 2441}, // 1880 - {2457, 2457, 2457, 2457, 2457, 2457, 9: 2457, 488: 2457}, - {650: 4419}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 661: 4420, 2762, 2763, 2761}, - {2458, 2458, 2458, 2458, 2458, 2458, 9: 2458, 488: 2458}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 661: 4143, 2762, 2763, 2761, 744: 4436}, + {2: 2440, 2440, 2440, 2440, 2440, 2440, 2440, 10: 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 51: 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 2440, 476: 2440, 484: 2440, 497: 2440, 567: 2440}, + {653: 4439}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 664: 4440, 2785, 2786, 2784}, + {2474, 2474, 2474, 2474, 2474, 2474, 9: 2474, 491: 2474}, + {2475, 2475, 2475, 2475, 2475, 2475, 9: 2475, 491: 2475}, // 1885 - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 661: 4431, 2762, 2763, 2761}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 661: 4427, 2762, 2763, 2761}, - {2: 2416, 2416, 2416, 2416, 2416, 2416, 2416, 10: 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 50: 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 2416, 473: 2416, 564: 2416}, - {2: 442, 442, 442, 442, 442, 442, 442, 10: 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 50: 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442, 442}, - {2: 441, 441, 441, 441, 441, 441, 441, 10: 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 50: 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441, 441}, + {2476, 2476, 2476, 2476, 2476, 2476, 9: 2476, 491: 2476}, + {2477, 2477, 2477, 2477, 2477, 2477, 9: 2477, 491: 2477}, + {653: 4445}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 664: 4446, 2785, 2786, 2784}, + {2478, 2478, 2478, 2478, 2478, 2478, 9: 2478, 491: 2478}, // 1890 - {86: 4430, 89: 4429, 856: 4428}, - {2443, 2443, 2443, 2443, 2443, 2443, 9: 2443, 488: 2443}, - {1834, 1834, 1834, 1834, 1834, 1834, 1834, 9: 1834, 19: 1834, 49: 1834, 83: 1834, 1834, 1834, 1834, 1834, 89: 1834, 474: 1834, 481: 1834, 488: 1834, 497: 1834}, - {1833, 1833, 1833, 1833, 1833, 1833, 1833, 9: 1833, 19: 1833, 49: 1833, 83: 1833, 1833, 1833, 1833, 1833, 89: 1833, 474: 1833, 481: 1833, 488: 1833, 497: 1833}, - {149: 4433, 476: 4089, 4088, 810: 4434, 934: 4432}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 664: 4169, 2785, 2786, 2784, 748: 4462}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 664: 4457, 2785, 2786, 2784}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 664: 4453, 2785, 2786, 2784}, + {2: 2436, 2436, 2436, 2436, 2436, 2436, 2436, 10: 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 51: 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 2436, 476: 2436, 567: 2436}, + {2: 452, 452, 452, 452, 452, 452, 452, 10: 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 51: 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452, 452}, // 1895 - {2445, 2445, 2445, 2445, 2445, 2445, 9: 2445, 488: 2445}, - {2312, 2312, 2312, 2312, 2312, 2312, 2312, 2312, 2312, 2312, 2312, 2312, 2312, 2312, 2312, 49: 2312, 472: 2312, 476: 2312, 2312, 2312, 2312, 484: 2312, 488: 2312, 492: 2312, 581: 2312, 590: 2312, 2312, 642: 2312, 2312, 2312, 2312}, - {149: 4435}, - {2311, 2311, 2311, 2311, 2311, 2311, 2311, 2311, 2311, 2311, 2311, 2311, 2311, 2311, 2311, 49: 2311, 472: 2311, 476: 2311, 2311, 2311, 2311, 484: 2311, 488: 2311, 492: 2311, 581: 2311, 590: 2311, 2311, 642: 2311, 2311, 2311, 2311}, - {506: 4437, 669: 4438}, + {2: 451, 451, 451, 451, 451, 451, 451, 10: 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 51: 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451, 451}, + {87: 4456, 90: 4455, 860: 4454}, + {2463, 2463, 2463, 2463, 2463, 2463, 9: 2463, 491: 2463}, + {1851, 1851, 1851, 1851, 1851, 1851, 1851, 9: 1851, 19: 1851, 50: 1851, 84: 1851, 1851, 1851, 1851, 1851, 90: 1851, 477: 1851, 484: 1851, 491: 1851, 500: 1851}, + {1850, 1850, 1850, 1850, 1850, 1850, 1850, 9: 1850, 19: 1850, 50: 1850, 84: 1850, 1850, 1850, 1850, 1850, 90: 1850, 477: 1850, 484: 1850, 491: 1850, 500: 1850}, // 1900 - {479: 4440}, - {479: 4439}, - {2459, 2459, 2459, 2459, 2459, 2459, 9: 2459, 488: 2459}, - {473: 4442, 475: 3239, 485: 4444, 4445, 492: 3230, 508: 3234, 571: 3229, 3231, 3233, 3232, 576: 3237, 580: 3238, 592: 3236, 712: 4443, 3235, 1134: 4441}, - {2461, 2461, 2461, 2461, 2461, 2461, 9: 2461, 488: 2461}, + {152: 4459, 479: 4115, 4114, 815: 4460, 939: 4458}, + {2465, 2465, 2465, 2465, 2465, 2465, 9: 2465, 491: 2465}, + {2329, 2329, 2329, 2329, 2329, 2329, 2329, 2329, 2329, 2329, 2329, 2329, 2329, 2329, 2329, 50: 2329, 475: 2329, 479: 2329, 2329, 2329, 2329, 487: 2329, 491: 2329, 495: 2329, 584: 2329, 593: 2329, 2329, 645: 2329, 2329, 2329, 2329}, + {152: 4461}, + {2328, 2328, 2328, 2328, 2328, 2328, 2328, 2328, 2328, 2328, 2328, 2328, 2328, 2328, 2328, 50: 2328, 475: 2328, 479: 2328, 2328, 2328, 2328, 487: 2328, 491: 2328, 495: 2328, 584: 2328, 593: 2328, 2328, 645: 2328, 2328, 2328, 2328}, // 1905 - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 2840, 2788, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 2869, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 2874, 2801, 2766, 2783, 2948, 3031, 3020, 2818, 2830, 2941, 2942, 2937, 2895, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 2876, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 2760, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 2880, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 2799, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 2866, 2865, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 2936, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 2824, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 2751, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 2882, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 2752, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3144, 2878, 3145, 3146, 2777, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3159, 3160, 3211, 3210, 3057, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 2918, 2935, 3058, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3177, 3178, 3179, 2931, 3130, 3189, 3190, 3201, 3185, 3186, 3187, 3220, 2877, 473: 3260, 475: 3239, 3258, 2755, 479: 3268, 482: 3272, 3276, 485: 3257, 3256, 3295, 492: 3230, 495: 3269, 504: 3275, 3293, 508: 3234, 530: 3264, 564: 3271, 567: 3294, 2753, 570: 3277, 3229, 3231, 3233, 3232, 3261, 3237, 3251, 3242, 3263, 3238, 582: 3270, 3262, 3267, 3273, 3283, 3336, 3284, 3285, 592: 3236, 3314, 595: 3254, 3255, 3309, 3310, 3311, 3312, 3313, 3265, 3291, 3296, 3306, 3307, 3300, 3315, 3316, 3317, 3301, 3319, 3320, 3302, 3318, 3297, 3305, 3303, 3289, 3321, 3322, 3266, 3326, 3278, 3279, 3282, 3325, 3331, 3330, 3332, 3329, 3333, 3328, 3327, 3324, 3274, 3323, 3281, 3280, 3286, 3287, 648: 2756, 661: 3244, 2762, 2763, 2761, 709: 3259, 3335, 3245, 3250, 3235, 3308, 3248, 3246, 3247, 3288, 3299, 3298, 3292, 3290, 3304, 3243, 3253, 3334, 3252, 3249, 2759, 2758, 2757, 4448}, - {2225, 2225, 2225, 2225, 2225, 2225, 2225, 2225, 2225, 2225, 2225, 2225, 2225, 2225, 2225, 49: 2225, 472: 2225, 476: 2225, 2225, 2225, 2225, 484: 2225, 488: 2225, 492: 2225, 581: 2225, 590: 2225, 2225, 642: 2225, 2225, 2225, 2225}, - {508: 3423, 573: 3425, 3424, 820: 4447}, - {508: 3423, 573: 3425, 3424, 820: 4446}, - {2223, 2223, 2223, 2223, 2223, 2223, 2223, 2223, 2223, 2223, 2223, 2223, 2223, 2223, 2223, 49: 2223, 472: 2223, 476: 2223, 2223, 2223, 2223, 484: 2223, 488: 2223, 492: 2223, 581: 2223, 590: 2223, 2223, 642: 2223, 2223, 2223, 2223}, + {509: 4463, 672: 4464}, + {482: 4466}, + {482: 4465}, + {2479, 2479, 2479, 2479, 2479, 2479, 9: 2479, 491: 2479}, + {476: 4468, 478: 3265, 488: 4470, 4471, 495: 3256, 511: 3260, 574: 3255, 3257, 3259, 3258, 579: 3263, 583: 3264, 595: 3262, 716: 4469, 3261, 1142: 4467}, // 1910 - {2224, 2224, 2224, 2224, 2224, 2224, 2224, 2224, 2224, 2224, 2224, 2224, 2224, 2224, 2224, 49: 2224, 472: 2224, 476: 2224, 2224, 2224, 2224, 484: 2224, 488: 2224, 492: 2224, 581: 2224, 590: 2224, 2224, 642: 2224, 2224, 2224, 2224}, - {49: 4449, 507: 3345, 509: 3343, 3344, 3342, 3340, 734: 3341, 3339}, - {2460, 2460, 2460, 2460, 2460, 2460, 9: 2460, 488: 2460}, - {2: 1860, 1860, 1860, 1860, 1860, 1860, 1860, 10: 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 50: 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 564: 4452, 780: 4451}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 661: 4143, 2762, 2763, 2761, 744: 4454}, + {2481, 2481, 2481, 2481, 2481, 2481, 9: 2481, 491: 2481}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 2864, 2812, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 2893, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 2898, 2825, 2789, 2807, 2972, 3055, 3044, 2842, 2854, 2965, 2966, 2961, 2919, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 2900, 2885, 2881, 2973, 2997, 2783, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 2904, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 2823, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 2889, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 2890, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 2960, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 2848, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 2774, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 2906, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 2775, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3170, 2902, 3171, 3172, 2801, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3185, 3186, 3237, 3236, 3081, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 2942, 2959, 3082, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3203, 3204, 3205, 2955, 3156, 3215, 3216, 3227, 3211, 3212, 3213, 3246, 2901, 476: 3286, 478: 3265, 3284, 2778, 482: 3294, 485: 3298, 3302, 488: 3283, 3282, 3321, 495: 3256, 498: 3295, 507: 3301, 3319, 511: 3260, 533: 3290, 567: 3297, 570: 3320, 2776, 573: 3303, 3255, 3257, 3259, 3258, 3287, 3263, 3277, 3268, 3289, 3264, 585: 3296, 3288, 3293, 3299, 3309, 3362, 3310, 3311, 595: 3262, 3340, 598: 3280, 3281, 3335, 3336, 3337, 3338, 3339, 3291, 3317, 3322, 3332, 3333, 3326, 3341, 3342, 3343, 3327, 3345, 3346, 3328, 3344, 3323, 3331, 3329, 3315, 3347, 3348, 3292, 3352, 3304, 3305, 3308, 3351, 3357, 3356, 3358, 3355, 3359, 3354, 3353, 3350, 3300, 3349, 3307, 3306, 3312, 3313, 651: 2779, 664: 3270, 2785, 2786, 2784, 713: 3285, 3361, 3271, 3276, 3261, 3334, 3274, 3272, 3273, 3314, 3325, 3324, 3318, 3316, 3330, 3269, 3279, 3360, 3278, 3275, 2782, 2781, 2780, 4474}, + {2242, 2242, 2242, 2242, 2242, 2242, 2242, 2242, 2242, 2242, 2242, 2242, 2242, 2242, 2242, 50: 2242, 475: 2242, 479: 2242, 2242, 2242, 2242, 487: 2242, 491: 2242, 495: 2242, 584: 2242, 593: 2242, 2242, 645: 2242, 2242, 2242, 2242}, + {511: 3449, 576: 3451, 3450, 824: 4473}, + {511: 3449, 576: 3451, 3450, 824: 4472}, // 1915 - {583: 4453}, - {1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 50: 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 1859, 475: 1859, 488: 1859, 570: 1859}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 661: 4143, 2762, 2763, 2761, 744: 4456, 848: 4455}, - {2415, 2415, 2415, 2415, 2415, 2415, 9: 2415, 4731, 4732, 488: 2415, 929: 4730}, - {12: 4458, 104: 4506, 109: 4507, 171: 4497, 178: 4517, 4516, 4482, 199: 4518, 4519, 230: 4479, 316: 4486, 4478, 338: 4495, 360: 4502, 4501, 364: 4505, 399: 4513, 505: 4500, 4496, 530: 4491, 647: 4499, 677: 4504, 4503, 680: 4480, 4485, 4483, 4476, 4470, 4484, 688: 4492, 690: 4477, 4509, 4471, 4472, 4473, 4474, 4475, 4498, 4511, 4515, 4510, 4469, 4514, 4481, 705: 4468, 4508, 4467, 4512, 901: 4487, 1157: 4489, 1182: 4466, 4493, 4463, 1202: 4461, 1217: 4464, 1219: 4465, 1237: 4462, 1255: 4488, 1257: 4459, 4490, 1315: 4460, 1327: 4494, 1330: 4457, 1355: 4520}, + {2240, 2240, 2240, 2240, 2240, 2240, 2240, 2240, 2240, 2240, 2240, 2240, 2240, 2240, 2240, 50: 2240, 475: 2240, 479: 2240, 2240, 2240, 2240, 487: 2240, 491: 2240, 495: 2240, 584: 2240, 593: 2240, 2240, 645: 2240, 2240, 2240, 2240}, + {2241, 2241, 2241, 2241, 2241, 2241, 2241, 2241, 2241, 2241, 2241, 2241, 2241, 2241, 2241, 50: 2241, 475: 2241, 479: 2241, 2241, 2241, 2241, 487: 2241, 491: 2241, 495: 2241, 584: 2241, 593: 2241, 2241, 645: 2241, 2241, 2241, 2241}, + {50: 4475, 510: 3371, 512: 3369, 3370, 3368, 3366, 738: 3367, 3365}, + {2480, 2480, 2480, 2480, 2480, 2480, 9: 2480, 491: 2480}, + {2: 1877, 1877, 1877, 1877, 1877, 1877, 1877, 10: 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 51: 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 567: 4478, 784: 4477}, // 1920 - {2272, 2272, 2272, 2272, 2272, 2272, 4600, 4606, 4594, 2272, 2272, 2272, 4598, 4607, 4605, 49: 2272, 472: 4599, 476: 4089, 4088, 2279, 4597, 484: 4604, 488: 2272, 492: 4593, 581: 2316, 590: 2406, 4591, 642: 4596, 4589, 4611, 4608, 810: 4592, 833: 4601, 910: 4603, 928: 4609, 937: 4602, 956: 4595, 1003: 4610, 4729}, - {2272, 2272, 2272, 2272, 2272, 2272, 4600, 4606, 4594, 2272, 2272, 2272, 4598, 4607, 4605, 49: 2272, 472: 4599, 476: 4089, 4088, 2279, 4597, 484: 4604, 488: 2272, 492: 4593, 581: 2316, 590: 2406, 4591, 642: 4596, 4589, 4611, 4608, 810: 4592, 833: 4601, 910: 4603, 928: 4609, 937: 4602, 956: 4595, 1003: 4610, 4590}, - {373, 373, 373, 373, 373, 373, 373, 373, 373, 373, 373, 373, 373, 373, 373, 49: 373, 472: 373, 476: 373, 373, 373, 373, 484: 373, 488: 373, 492: 373, 581: 373, 590: 373, 373, 642: 373, 373, 373, 373}, - {372, 372, 372, 372, 372, 372, 372, 372, 372, 372, 372, 372, 372, 372, 372, 49: 372, 472: 372, 476: 372, 372, 372, 372, 484: 372, 488: 372, 492: 372, 581: 372, 590: 372, 372, 642: 372, 372, 372, 372}, - {371, 371, 371, 371, 371, 371, 371, 371, 371, 371, 371, 371, 371, 371, 371, 49: 371, 472: 371, 476: 371, 371, 371, 371, 484: 371, 488: 371, 492: 371, 581: 371, 590: 371, 371, 642: 371, 371, 371, 371}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 664: 4169, 2785, 2786, 2784, 748: 4480}, + {586: 4479}, + {1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 51: 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 1876, 478: 1876, 491: 1876, 573: 1876}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 664: 4169, 2785, 2786, 2784, 748: 4482, 853: 4481}, + {2435, 2435, 2435, 2435, 2435, 2435, 9: 2435, 4757, 4758, 491: 2435, 934: 4756}, // 1925 - {288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 49: 288, 51: 288, 472: 288, 3826, 476: 288, 288, 288, 288, 484: 288, 488: 288, 492: 288, 581: 288, 590: 288, 288, 642: 288, 288, 288, 288, 740: 288, 743: 288, 764: 3827, 789: 4587}, - {283, 283, 283, 283, 283, 283, 283, 283, 283, 283, 283, 283, 283, 283, 283, 49: 283, 51: 283, 472: 283, 476: 283, 283, 283, 283, 484: 283, 488: 283, 492: 283, 581: 283, 590: 283, 283, 642: 283, 283, 283, 283, 740: 283, 743: 283, 876: 4586}, - {281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 49: 281, 51: 281, 472: 281, 3813, 476: 281, 281, 281, 281, 484: 281, 488: 281, 492: 281, 581: 281, 590: 281, 281, 642: 281, 281, 281, 281, 740: 281, 743: 281, 764: 3814, 904: 4584, 909: 3815}, - {281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 281, 49: 281, 51: 281, 472: 281, 3813, 476: 281, 281, 281, 281, 484: 281, 488: 281, 492: 281, 581: 281, 590: 281, 281, 642: 281, 281, 281, 281, 740: 281, 743: 281, 764: 3814, 904: 4582, 909: 3815}, - {288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 49: 288, 472: 288, 3826, 476: 288, 288, 288, 288, 484: 288, 488: 288, 492: 288, 581: 288, 590: 288, 288, 642: 288, 288, 288, 288, 764: 3827, 789: 4581}, + {12: 4484, 105: 4532, 110: 4533, 173: 4523, 180: 4543, 4542, 4508, 202: 4545, 226: 4544, 233: 4505, 318: 4512, 4504, 340: 4521, 362: 4528, 4527, 366: 4531, 402: 4539, 508: 4526, 4522, 533: 4517, 650: 4525, 681: 4530, 4529, 684: 4506, 4511, 4509, 4502, 4496, 4510, 692: 4518, 694: 4503, 4535, 4497, 4498, 4499, 4500, 4501, 4524, 4537, 4541, 4536, 4495, 4540, 4507, 709: 4494, 4534, 4493, 4538, 906: 4513, 1166: 4515, 1191: 4492, 4519, 4489, 1211: 4487, 1226: 4490, 4491, 1245: 4488, 1263: 4514, 1265: 4485, 4516, 1324: 4486, 1336: 4520, 1339: 4483, 1364: 4546}, + {2289, 2289, 2289, 2289, 2289, 2289, 4626, 4632, 4620, 2289, 2289, 2289, 4624, 4633, 4631, 50: 2289, 475: 4625, 479: 4115, 4114, 2296, 4623, 487: 4630, 491: 2289, 495: 4619, 584: 2333, 593: 2426, 4617, 645: 4622, 4615, 4637, 4634, 815: 4618, 837: 4627, 915: 4629, 933: 4635, 942: 4628, 961: 4621, 1007: 4636, 4755}, + {2289, 2289, 2289, 2289, 2289, 2289, 4626, 4632, 4620, 2289, 2289, 2289, 4624, 4633, 4631, 50: 2289, 475: 4625, 479: 4115, 4114, 2296, 4623, 487: 4630, 491: 2289, 495: 4619, 584: 2333, 593: 2426, 4617, 645: 4622, 4615, 4637, 4634, 815: 4618, 837: 4627, 915: 4629, 933: 4635, 942: 4628, 961: 4621, 1007: 4636, 4616}, + {383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 383, 50: 383, 475: 383, 479: 383, 383, 383, 383, 487: 383, 491: 383, 495: 383, 584: 383, 593: 383, 383, 645: 383, 383, 383, 383}, + {382, 382, 382, 382, 382, 382, 382, 382, 382, 382, 382, 382, 382, 382, 382, 50: 382, 475: 382, 479: 382, 382, 382, 382, 487: 382, 491: 382, 495: 382, 584: 382, 593: 382, 382, 645: 382, 382, 382, 382}, // 1930 - {365, 365, 365, 365, 365, 365, 365, 365, 365, 365, 365, 365, 365, 365, 365, 49: 365, 51: 365, 472: 365, 365, 476: 365, 365, 365, 365, 484: 365, 488: 365, 492: 365, 581: 365, 590: 365, 365, 642: 365, 365, 365, 365, 740: 365, 743: 365}, - {364, 364, 364, 364, 364, 364, 364, 364, 364, 364, 364, 364, 364, 364, 364, 49: 364, 51: 364, 472: 364, 364, 476: 364, 364, 364, 364, 484: 364, 488: 364, 492: 364, 581: 364, 590: 364, 364, 642: 364, 364, 364, 364, 740: 364, 743: 364}, - {363, 363, 363, 363, 363, 363, 363, 363, 363, 363, 363, 363, 363, 363, 363, 49: 363, 51: 363, 472: 363, 363, 476: 363, 363, 363, 363, 484: 363, 488: 363, 492: 363, 581: 363, 590: 363, 363, 642: 363, 363, 363, 363, 740: 363, 743: 363}, - {362, 362, 362, 362, 362, 362, 362, 362, 362, 362, 362, 362, 362, 362, 362, 49: 362, 51: 362, 472: 362, 362, 476: 362, 362, 362, 362, 484: 362, 488: 362, 492: 362, 581: 362, 590: 362, 362, 642: 362, 362, 362, 362, 740: 362, 743: 362}, - {361, 361, 361, 361, 361, 361, 361, 361, 361, 361, 361, 361, 361, 361, 361, 49: 361, 51: 361, 472: 361, 361, 476: 361, 361, 361, 361, 484: 361, 488: 361, 492: 361, 581: 361, 590: 361, 361, 642: 361, 361, 361, 361, 740: 361, 743: 361}, + {381, 381, 381, 381, 381, 381, 381, 381, 381, 381, 381, 381, 381, 381, 381, 50: 381, 475: 381, 479: 381, 381, 381, 381, 487: 381, 491: 381, 495: 381, 584: 381, 593: 381, 381, 645: 381, 381, 381, 381}, + {298, 298, 298, 298, 298, 298, 298, 298, 298, 298, 298, 298, 298, 298, 298, 50: 298, 52: 298, 475: 298, 3852, 479: 298, 298, 298, 298, 487: 298, 491: 298, 495: 298, 584: 298, 593: 298, 298, 645: 298, 298, 298, 298, 744: 298, 747: 298, 768: 3853, 794: 4613}, + {293, 293, 293, 293, 293, 293, 293, 293, 293, 293, 293, 293, 293, 293, 293, 50: 293, 52: 293, 475: 293, 479: 293, 293, 293, 293, 487: 293, 491: 293, 495: 293, 584: 293, 593: 293, 293, 645: 293, 293, 293, 293, 744: 293, 747: 293, 880: 4612}, + {291, 291, 291, 291, 291, 291, 291, 291, 291, 291, 291, 291, 291, 291, 291, 50: 291, 52: 291, 475: 291, 3839, 479: 291, 291, 291, 291, 487: 291, 491: 291, 495: 291, 584: 291, 593: 291, 291, 645: 291, 291, 291, 291, 744: 291, 747: 291, 768: 3840, 909: 4610, 914: 3841}, + {291, 291, 291, 291, 291, 291, 291, 291, 291, 291, 291, 291, 291, 291, 291, 50: 291, 52: 291, 475: 291, 3839, 479: 291, 291, 291, 291, 487: 291, 491: 291, 495: 291, 584: 291, 593: 291, 291, 645: 291, 291, 291, 291, 744: 291, 747: 291, 768: 3840, 909: 4608, 914: 3841}, // 1935 - {360, 360, 360, 360, 360, 360, 360, 360, 360, 360, 360, 360, 360, 360, 360, 49: 360, 51: 360, 472: 360, 360, 476: 360, 360, 360, 360, 484: 360, 488: 360, 492: 360, 581: 360, 590: 360, 360, 642: 360, 360, 360, 360, 740: 360, 743: 360}, - {359, 359, 359, 359, 359, 359, 359, 359, 359, 359, 359, 359, 359, 359, 359, 49: 359, 51: 359, 472: 359, 359, 476: 359, 359, 359, 359, 484: 359, 488: 359, 492: 359, 581: 359, 590: 359, 359, 642: 359, 359, 359, 359, 740: 359, 743: 359}, - {358, 358, 358, 358, 358, 358, 358, 358, 358, 358, 358, 358, 358, 358, 358, 49: 358, 51: 358, 472: 358, 358, 476: 358, 358, 358, 358, 484: 358, 488: 358, 492: 358, 581: 358, 590: 358, 358, 642: 358, 358, 358, 358, 740: 358, 743: 358}, - {357, 357, 357, 357, 357, 357, 357, 357, 357, 357, 357, 357, 357, 357, 357, 49: 357, 51: 357, 472: 357, 357, 476: 357, 357, 357, 357, 484: 357, 488: 357, 492: 357, 581: 357, 590: 357, 357, 642: 357, 357, 357, 357, 740: 357, 743: 357}, - {356, 356, 356, 356, 356, 356, 356, 356, 356, 356, 356, 356, 356, 356, 356, 49: 356, 51: 356, 472: 356, 356, 476: 356, 356, 356, 356, 484: 356, 488: 356, 492: 356, 581: 356, 590: 356, 356, 642: 356, 356, 356, 356, 740: 356, 743: 356}, + {298, 298, 298, 298, 298, 298, 298, 298, 298, 298, 298, 298, 298, 298, 298, 50: 298, 475: 298, 3852, 479: 298, 298, 298, 298, 487: 298, 491: 298, 495: 298, 584: 298, 593: 298, 298, 645: 298, 298, 298, 298, 768: 3853, 794: 4607}, + {375, 375, 375, 375, 375, 375, 375, 375, 375, 375, 375, 375, 375, 375, 375, 50: 375, 52: 375, 475: 375, 375, 479: 375, 375, 375, 375, 487: 375, 491: 375, 495: 375, 584: 375, 593: 375, 375, 645: 375, 375, 375, 375, 744: 375, 747: 375}, + {374, 374, 374, 374, 374, 374, 374, 374, 374, 374, 374, 374, 374, 374, 374, 50: 374, 52: 374, 475: 374, 374, 479: 374, 374, 374, 374, 487: 374, 491: 374, 495: 374, 584: 374, 593: 374, 374, 645: 374, 374, 374, 374, 744: 374, 747: 374}, + {373, 373, 373, 373, 373, 373, 373, 373, 373, 373, 373, 373, 373, 373, 373, 50: 373, 52: 373, 475: 373, 373, 479: 373, 373, 373, 373, 487: 373, 491: 373, 495: 373, 584: 373, 593: 373, 373, 645: 373, 373, 373, 373, 744: 373, 747: 373}, + {372, 372, 372, 372, 372, 372, 372, 372, 372, 372, 372, 372, 372, 372, 372, 50: 372, 52: 372, 475: 372, 372, 479: 372, 372, 372, 372, 487: 372, 491: 372, 495: 372, 584: 372, 593: 372, 372, 645: 372, 372, 372, 372, 744: 372, 747: 372}, // 1940 - {355, 355, 355, 355, 355, 355, 355, 355, 355, 355, 355, 355, 355, 355, 355, 49: 355, 51: 355, 472: 355, 355, 476: 355, 355, 355, 355, 484: 355, 488: 355, 492: 355, 581: 355, 590: 355, 355, 642: 355, 355, 355, 355, 740: 355, 743: 355}, - {354, 354, 354, 354, 354, 354, 354, 354, 354, 354, 354, 354, 354, 354, 354, 49: 354, 51: 354, 472: 354, 476: 354, 354, 354, 354, 484: 354, 488: 354, 492: 354, 581: 354, 590: 354, 354, 642: 354, 354, 354, 354, 740: 354, 743: 354}, - {353, 353, 353, 353, 353, 353, 353, 353, 353, 353, 353, 353, 353, 353, 353, 49: 353, 51: 353, 472: 353, 476: 353, 353, 353, 353, 484: 353, 488: 353, 492: 353, 581: 353, 590: 353, 353, 642: 353, 353, 353, 353, 740: 353, 743: 353}, - {349, 349, 349, 349, 349, 349, 349, 349, 349, 349, 349, 349, 349, 349, 349, 49: 349, 51: 349, 472: 349, 349, 476: 349, 349, 349, 349, 484: 349, 488: 349, 492: 349, 581: 349, 590: 349, 349, 642: 349, 349, 349, 349, 740: 349, 743: 349}, - {348, 348, 348, 348, 348, 348, 348, 348, 348, 348, 348, 348, 348, 348, 348, 49: 348, 51: 348, 472: 348, 348, 476: 348, 348, 348, 348, 484: 348, 488: 348, 492: 348, 581: 348, 590: 348, 348, 642: 348, 348, 348, 348, 740: 348, 743: 348}, + {371, 371, 371, 371, 371, 371, 371, 371, 371, 371, 371, 371, 371, 371, 371, 50: 371, 52: 371, 475: 371, 371, 479: 371, 371, 371, 371, 487: 371, 491: 371, 495: 371, 584: 371, 593: 371, 371, 645: 371, 371, 371, 371, 744: 371, 747: 371}, + {370, 370, 370, 370, 370, 370, 370, 370, 370, 370, 370, 370, 370, 370, 370, 50: 370, 52: 370, 475: 370, 370, 479: 370, 370, 370, 370, 487: 370, 491: 370, 495: 370, 584: 370, 593: 370, 370, 645: 370, 370, 370, 370, 744: 370, 747: 370}, + {369, 369, 369, 369, 369, 369, 369, 369, 369, 369, 369, 369, 369, 369, 369, 50: 369, 52: 369, 475: 369, 369, 479: 369, 369, 369, 369, 487: 369, 491: 369, 495: 369, 584: 369, 593: 369, 369, 645: 369, 369, 369, 369, 744: 369, 747: 369}, + {368, 368, 368, 368, 368, 368, 368, 368, 368, 368, 368, 368, 368, 368, 368, 50: 368, 52: 368, 475: 368, 368, 479: 368, 368, 368, 368, 487: 368, 491: 368, 495: 368, 584: 368, 593: 368, 368, 645: 368, 368, 368, 368, 744: 368, 747: 368}, + {367, 367, 367, 367, 367, 367, 367, 367, 367, 367, 367, 367, 367, 367, 367, 50: 367, 52: 367, 475: 367, 367, 479: 367, 367, 367, 367, 487: 367, 491: 367, 495: 367, 584: 367, 593: 367, 367, 645: 367, 367, 367, 367, 744: 367, 747: 367}, // 1945 - {347, 347, 347, 347, 347, 347, 347, 347, 347, 347, 347, 347, 347, 347, 347, 49: 347, 51: 347, 472: 347, 347, 476: 347, 347, 347, 347, 484: 347, 488: 347, 492: 347, 581: 347, 590: 347, 347, 642: 347, 347, 347, 347, 740: 347, 743: 347}, - {346, 346, 346, 346, 346, 346, 346, 346, 346, 346, 346, 346, 346, 346, 346, 49: 346, 51: 346, 472: 346, 346, 476: 346, 346, 346, 346, 484: 346, 488: 346, 492: 346, 581: 346, 590: 346, 346, 642: 346, 346, 346, 346, 740: 346, 743: 346}, - {345, 345, 345, 345, 345, 345, 345, 345, 345, 345, 345, 345, 345, 345, 345, 49: 345, 51: 345, 472: 345, 345, 476: 345, 345, 345, 345, 484: 345, 488: 345, 492: 345, 581: 345, 590: 345, 345, 642: 345, 345, 345, 345, 740: 345, 743: 345}, - {344, 344, 344, 344, 344, 344, 344, 344, 344, 344, 344, 344, 344, 344, 344, 49: 344, 51: 344, 472: 344, 344, 476: 344, 344, 344, 344, 484: 344, 488: 344, 492: 344, 581: 344, 590: 344, 344, 642: 344, 344, 344, 344, 740: 344, 743: 344, 1281: 4580}, - {342, 342, 342, 342, 342, 342, 342, 342, 342, 342, 342, 342, 342, 342, 342, 49: 342, 472: 342, 342, 476: 342, 342, 342, 342, 484: 342, 488: 342, 492: 342, 581: 342, 590: 342, 342, 642: 342, 342, 342, 342}, + {366, 366, 366, 366, 366, 366, 366, 366, 366, 366, 366, 366, 366, 366, 366, 50: 366, 52: 366, 475: 366, 366, 479: 366, 366, 366, 366, 487: 366, 491: 366, 495: 366, 584: 366, 593: 366, 366, 645: 366, 366, 366, 366, 744: 366, 747: 366}, + {365, 365, 365, 365, 365, 365, 365, 365, 365, 365, 365, 365, 365, 365, 365, 50: 365, 52: 365, 475: 365, 365, 479: 365, 365, 365, 365, 487: 365, 491: 365, 495: 365, 584: 365, 593: 365, 365, 645: 365, 365, 365, 365, 744: 365, 747: 365}, + {364, 364, 364, 364, 364, 364, 364, 364, 364, 364, 364, 364, 364, 364, 364, 50: 364, 52: 364, 475: 364, 479: 364, 364, 364, 364, 487: 364, 491: 364, 495: 364, 584: 364, 593: 364, 364, 645: 364, 364, 364, 364, 744: 364, 747: 364}, + {363, 363, 363, 363, 363, 363, 363, 363, 363, 363, 363, 363, 363, 363, 363, 50: 363, 52: 363, 475: 363, 479: 363, 363, 363, 363, 487: 363, 491: 363, 495: 363, 584: 363, 593: 363, 363, 645: 363, 363, 363, 363, 744: 363, 747: 363}, + {359, 359, 359, 359, 359, 359, 359, 359, 359, 359, 359, 359, 359, 359, 359, 50: 359, 52: 359, 475: 359, 359, 479: 359, 359, 359, 359, 487: 359, 491: 359, 495: 359, 584: 359, 593: 359, 359, 645: 359, 359, 359, 359, 744: 359, 747: 359}, // 1950 - {275, 275, 275, 275, 275, 275, 275, 275, 275, 275, 275, 275, 275, 275, 275, 16: 3836, 49: 275, 472: 275, 3826, 476: 275, 275, 275, 275, 484: 275, 488: 275, 492: 275, 505: 3837, 530: 3833, 581: 275, 590: 275, 275, 642: 275, 275, 275, 275, 647: 3835, 764: 4577, 773: 3834, 799: 4578}, - {275, 275, 275, 275, 275, 275, 275, 275, 275, 275, 275, 275, 275, 275, 275, 16: 3836, 49: 275, 472: 275, 3826, 476: 275, 275, 275, 275, 484: 275, 488: 275, 492: 275, 505: 3837, 530: 3833, 581: 275, 590: 275, 275, 642: 275, 275, 275, 275, 647: 3835, 764: 4574, 773: 3834, 799: 4575}, - {473: 3826, 764: 4572}, - {473: 3826, 764: 4570}, - {288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 49: 288, 472: 288, 3826, 476: 288, 288, 288, 288, 484: 288, 488: 288, 492: 288, 581: 288, 590: 288, 288, 642: 288, 288, 288, 288, 764: 3827, 789: 4569}, + {358, 358, 358, 358, 358, 358, 358, 358, 358, 358, 358, 358, 358, 358, 358, 50: 358, 52: 358, 475: 358, 358, 479: 358, 358, 358, 358, 487: 358, 491: 358, 495: 358, 584: 358, 593: 358, 358, 645: 358, 358, 358, 358, 744: 358, 747: 358}, + {357, 357, 357, 357, 357, 357, 357, 357, 357, 357, 357, 357, 357, 357, 357, 50: 357, 52: 357, 475: 357, 357, 479: 357, 357, 357, 357, 487: 357, 491: 357, 495: 357, 584: 357, 593: 357, 357, 645: 357, 357, 357, 357, 744: 357, 747: 357}, + {356, 356, 356, 356, 356, 356, 356, 356, 356, 356, 356, 356, 356, 356, 356, 50: 356, 52: 356, 475: 356, 356, 479: 356, 356, 356, 356, 487: 356, 491: 356, 495: 356, 584: 356, 593: 356, 356, 645: 356, 356, 356, 356, 744: 356, 747: 356}, + {355, 355, 355, 355, 355, 355, 355, 355, 355, 355, 355, 355, 355, 355, 355, 50: 355, 52: 355, 475: 355, 355, 479: 355, 355, 355, 355, 487: 355, 491: 355, 495: 355, 584: 355, 593: 355, 355, 645: 355, 355, 355, 355, 744: 355, 747: 355}, + {354, 354, 354, 354, 354, 354, 354, 354, 354, 354, 354, 354, 354, 354, 354, 50: 354, 52: 354, 475: 354, 354, 479: 354, 354, 354, 354, 487: 354, 491: 354, 495: 354, 584: 354, 593: 354, 354, 645: 354, 354, 354, 354, 744: 354, 747: 354, 1289: 4606}, // 1955 - {473: 3826, 764: 4568}, - {333, 333, 333, 333, 333, 333, 333, 333, 333, 333, 333, 333, 333, 333, 333, 49: 333, 472: 333, 476: 333, 333, 333, 333, 484: 333, 488: 333, 492: 333, 581: 333, 590: 333, 333, 642: 333, 333, 333, 333}, - {275, 275, 275, 275, 275, 275, 275, 275, 275, 275, 275, 275, 275, 275, 275, 16: 3836, 49: 275, 106: 4549, 4551, 110: 4550, 472: 275, 476: 275, 275, 275, 275, 484: 275, 488: 275, 492: 275, 505: 3837, 530: 3833, 581: 275, 590: 275, 275, 642: 275, 275, 275, 275, 647: 3835, 773: 3834, 799: 4548, 884: 4567}, - {473: 4563}, - {473: 4553}, + {352, 352, 352, 352, 352, 352, 352, 352, 352, 352, 352, 352, 352, 352, 352, 50: 352, 475: 352, 352, 479: 352, 352, 352, 352, 487: 352, 491: 352, 495: 352, 584: 352, 593: 352, 352, 645: 352, 352, 352, 352}, + {285, 285, 285, 285, 285, 285, 285, 285, 285, 285, 285, 285, 285, 285, 285, 16: 3862, 50: 285, 475: 285, 3852, 479: 285, 285, 285, 285, 487: 285, 491: 285, 495: 285, 508: 3863, 533: 3859, 584: 285, 593: 285, 285, 645: 285, 285, 285, 285, 650: 3861, 768: 4603, 779: 3860, 803: 4604}, + {285, 285, 285, 285, 285, 285, 285, 285, 285, 285, 285, 285, 285, 285, 285, 16: 3862, 50: 285, 475: 285, 3852, 479: 285, 285, 285, 285, 487: 285, 491: 285, 495: 285, 508: 3863, 533: 3859, 584: 285, 593: 285, 285, 645: 285, 285, 285, 285, 650: 3861, 768: 4600, 779: 3860, 803: 4601}, + {476: 3852, 768: 4598}, + {476: 3852, 768: 4596}, // 1960 - {329, 329, 329, 329, 329, 329, 329, 329, 329, 329, 329, 329, 329, 329, 329, 49: 329, 472: 329, 476: 329, 329, 329, 329, 484: 329, 488: 329, 492: 329, 581: 329, 590: 329, 329, 642: 329, 329, 329, 329}, - {275, 275, 275, 275, 275, 275, 275, 275, 275, 275, 275, 275, 275, 275, 275, 16: 3836, 49: 275, 106: 4549, 4551, 110: 4550, 472: 275, 476: 275, 275, 275, 275, 484: 275, 488: 275, 492: 275, 505: 4546, 530: 3833, 581: 275, 590: 275, 275, 642: 275, 275, 275, 275, 647: 4545, 677: 4504, 4503, 688: 4547, 773: 3834, 799: 4548, 884: 4544, 1157: 4543}, - {326, 326, 326, 326, 326, 326, 326, 326, 326, 326, 326, 326, 326, 326, 326, 16: 326, 49: 326, 472: 326, 326, 476: 326, 326, 326, 326, 484: 326, 488: 326, 492: 326, 505: 326, 530: 326, 581: 326, 590: 326, 326, 642: 326, 326, 326, 326, 647: 326, 843: 4542}, - {325, 325, 325, 325, 325, 325, 325, 325, 325, 325, 325, 325, 325, 325, 325, 16: 325, 49: 325, 472: 325, 325, 476: 325, 325, 325, 325, 484: 325, 488: 325, 492: 325, 505: 325, 530: 325, 581: 325, 590: 325, 325, 642: 325, 325, 325, 325, 647: 325, 843: 4541}, - {324, 324, 324, 324, 324, 324, 324, 324, 324, 324, 324, 324, 324, 324, 324, 16: 324, 49: 324, 472: 324, 324, 476: 324, 324, 324, 324, 484: 324, 488: 324, 492: 324, 505: 324, 530: 324, 581: 324, 590: 324, 324, 642: 324, 324, 324, 324, 647: 324, 677: 4539, 4538, 843: 4540}, + {298, 298, 298, 298, 298, 298, 298, 298, 298, 298, 298, 298, 298, 298, 298, 50: 298, 475: 298, 3852, 479: 298, 298, 298, 298, 487: 298, 491: 298, 495: 298, 584: 298, 593: 298, 298, 645: 298, 298, 298, 298, 768: 3853, 794: 4595}, + {476: 3852, 768: 4594}, + {343, 343, 343, 343, 343, 343, 343, 343, 343, 343, 343, 343, 343, 343, 343, 50: 343, 475: 343, 479: 343, 343, 343, 343, 487: 343, 491: 343, 495: 343, 584: 343, 593: 343, 343, 645: 343, 343, 343, 343}, + {285, 285, 285, 285, 285, 285, 285, 285, 285, 285, 285, 285, 285, 285, 285, 16: 3862, 50: 285, 107: 4575, 4577, 111: 4576, 475: 285, 479: 285, 285, 285, 285, 487: 285, 491: 285, 495: 285, 508: 3863, 533: 3859, 584: 285, 593: 285, 285, 645: 285, 285, 285, 285, 650: 3861, 779: 3860, 803: 4574, 888: 4593}, + {476: 4589}, // 1965 - {505: 4533, 647: 4532, 677: 4535, 4534}, - {319, 319, 319, 319, 319, 319, 319, 319, 319, 319, 319, 319, 319, 319, 319, 16: 319, 49: 319, 106: 319, 319, 110: 319, 472: 319, 319, 476: 319, 319, 319, 319, 484: 319, 488: 319, 492: 319, 505: 319, 530: 319, 581: 319, 590: 319, 319, 642: 319, 319, 319, 319, 647: 319}, - {318, 318, 318, 318, 318, 318, 318, 318, 318, 318, 318, 318, 318, 318, 318, 16: 318, 49: 318, 106: 318, 318, 110: 318, 472: 318, 318, 476: 318, 318, 318, 318, 484: 318, 488: 318, 492: 318, 505: 318, 530: 318, 581: 318, 590: 318, 318, 642: 318, 318, 318, 318, 647: 318}, - {473: 315}, - {309, 309, 309, 309, 309, 309, 309, 309, 309, 309, 309, 309, 309, 309, 309, 49: 309, 51: 309, 472: 309, 309, 476: 309, 309, 309, 309, 484: 309, 488: 309, 492: 309, 581: 309, 590: 309, 309, 642: 309, 309, 309, 309, 740: 309, 743: 309}, + {476: 4579}, + {339, 339, 339, 339, 339, 339, 339, 339, 339, 339, 339, 339, 339, 339, 339, 50: 339, 475: 339, 479: 339, 339, 339, 339, 487: 339, 491: 339, 495: 339, 584: 339, 593: 339, 339, 645: 339, 339, 339, 339}, + {285, 285, 285, 285, 285, 285, 285, 285, 285, 285, 285, 285, 285, 285, 285, 16: 3862, 50: 285, 107: 4575, 4577, 111: 4576, 475: 285, 479: 285, 285, 285, 285, 487: 285, 491: 285, 495: 285, 508: 4572, 533: 3859, 584: 285, 593: 285, 285, 645: 285, 285, 285, 285, 650: 4571, 681: 4530, 4529, 692: 4573, 779: 3860, 803: 4574, 888: 4570, 1166: 4569}, + {336, 336, 336, 336, 336, 336, 336, 336, 336, 336, 336, 336, 336, 336, 336, 16: 336, 50: 336, 475: 336, 336, 479: 336, 336, 336, 336, 487: 336, 491: 336, 495: 336, 508: 336, 533: 336, 584: 336, 593: 336, 336, 645: 336, 336, 336, 336, 650: 336, 848: 4568}, + {335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 16: 335, 50: 335, 475: 335, 335, 479: 335, 335, 335, 335, 487: 335, 491: 335, 495: 335, 508: 335, 533: 335, 584: 335, 593: 335, 335, 645: 335, 335, 335, 335, 650: 335, 848: 4567}, // 1970 - {308, 308, 308, 308, 308, 308, 308, 308, 308, 308, 308, 308, 308, 308, 308, 49: 308, 51: 308, 472: 308, 308, 476: 308, 308, 308, 308, 484: 308, 488: 308, 492: 308, 581: 308, 590: 308, 308, 642: 308, 308, 308, 308, 740: 308, 743: 308}, - {307, 307, 307, 307, 307, 307, 307, 307, 307, 307, 307, 307, 307, 307, 307, 49: 307, 472: 307, 476: 307, 307, 307, 307, 484: 307, 488: 307, 492: 307, 581: 307, 590: 307, 307, 642: 307, 307, 307, 307}, - {288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 49: 288, 472: 288, 3826, 476: 288, 288, 288, 288, 484: 288, 488: 288, 492: 288, 581: 288, 590: 288, 288, 642: 288, 288, 288, 288, 764: 3827, 789: 4531}, - {305, 305, 305, 305, 305, 305, 305, 305, 305, 305, 305, 305, 305, 305, 305, 49: 305, 472: 305, 476: 305, 305, 305, 305, 484: 305, 488: 305, 492: 305, 581: 305, 590: 305, 305, 642: 305, 305, 305, 305}, - {304, 304, 304, 304, 304, 304, 304, 304, 304, 304, 304, 304, 304, 304, 304, 49: 304, 472: 304, 476: 304, 304, 304, 304, 484: 304, 488: 304, 492: 304, 581: 304, 590: 304, 304, 642: 304, 304, 304, 304}, + {334, 334, 334, 334, 334, 334, 334, 334, 334, 334, 334, 334, 334, 334, 334, 16: 334, 50: 334, 475: 334, 334, 479: 334, 334, 334, 334, 487: 334, 491: 334, 495: 334, 508: 334, 533: 334, 584: 334, 593: 334, 334, 645: 334, 334, 334, 334, 650: 334, 681: 4565, 4564, 848: 4566}, + {508: 4559, 650: 4558, 681: 4561, 4560}, + {329, 329, 329, 329, 329, 329, 329, 329, 329, 329, 329, 329, 329, 329, 329, 16: 329, 50: 329, 107: 329, 329, 111: 329, 475: 329, 329, 479: 329, 329, 329, 329, 487: 329, 491: 329, 495: 329, 508: 329, 533: 329, 584: 329, 593: 329, 329, 645: 329, 329, 329, 329, 650: 329}, + {328, 328, 328, 328, 328, 328, 328, 328, 328, 328, 328, 328, 328, 328, 328, 16: 328, 50: 328, 107: 328, 328, 111: 328, 475: 328, 328, 479: 328, 328, 328, 328, 487: 328, 491: 328, 495: 328, 508: 328, 533: 328, 584: 328, 593: 328, 328, 645: 328, 328, 328, 328, 650: 328}, + {476: 325}, // 1975 - {302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 16: 302, 49: 302, 106: 302, 302, 110: 302, 472: 302, 476: 302, 302, 302, 302, 484: 302, 488: 302, 492: 302, 505: 302, 530: 302, 581: 302, 590: 302, 302, 642: 302, 302, 302, 302, 647: 302}, - {288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 16: 288, 49: 288, 106: 288, 288, 110: 288, 472: 288, 3826, 476: 288, 288, 288, 288, 484: 288, 488: 288, 492: 288, 505: 288, 530: 288, 581: 288, 590: 288, 288, 642: 288, 288, 288, 288, 647: 288, 764: 3827, 789: 4530}, - {300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 16: 300, 49: 300, 106: 300, 300, 110: 300, 472: 300, 476: 300, 300, 300, 300, 484: 300, 488: 300, 492: 300, 505: 300, 530: 300, 581: 300, 590: 300, 300, 642: 300, 300, 300, 300, 647: 300}, - {299, 299, 299, 299, 299, 299, 299, 299, 299, 299, 299, 299, 299, 299, 299, 16: 299, 49: 299, 106: 299, 299, 110: 299, 472: 299, 476: 299, 299, 299, 299, 484: 299, 488: 299, 492: 299, 505: 299, 530: 299, 581: 299, 590: 299, 299, 642: 299, 299, 299, 299, 647: 299}, - {294, 294, 294, 294, 294, 294, 294, 294, 294, 294, 294, 294, 294, 294, 294, 49: 294, 472: 294, 476: 294, 294, 294, 294, 484: 294, 488: 294, 492: 294, 581: 294, 590: 294, 294, 642: 294, 294, 294, 294}, + {319, 319, 319, 319, 319, 319, 319, 319, 319, 319, 319, 319, 319, 319, 319, 50: 319, 52: 319, 475: 319, 319, 479: 319, 319, 319, 319, 487: 319, 491: 319, 495: 319, 584: 319, 593: 319, 319, 645: 319, 319, 319, 319, 744: 319, 747: 319}, + {318, 318, 318, 318, 318, 318, 318, 318, 318, 318, 318, 318, 318, 318, 318, 50: 318, 52: 318, 475: 318, 318, 479: 318, 318, 318, 318, 487: 318, 491: 318, 495: 318, 584: 318, 593: 318, 318, 645: 318, 318, 318, 318, 744: 318, 747: 318}, + {317, 317, 317, 317, 317, 317, 317, 317, 317, 317, 317, 317, 317, 317, 317, 50: 317, 475: 317, 479: 317, 317, 317, 317, 487: 317, 491: 317, 495: 317, 584: 317, 593: 317, 317, 645: 317, 317, 317, 317}, + {298, 298, 298, 298, 298, 298, 298, 298, 298, 298, 298, 298, 298, 298, 298, 50: 298, 475: 298, 3852, 479: 298, 298, 298, 298, 487: 298, 491: 298, 495: 298, 584: 298, 593: 298, 298, 645: 298, 298, 298, 298, 768: 3853, 794: 4557}, + {315, 315, 315, 315, 315, 315, 315, 315, 315, 315, 315, 315, 315, 315, 315, 50: 315, 475: 315, 479: 315, 315, 315, 315, 487: 315, 491: 315, 495: 315, 584: 315, 593: 315, 315, 645: 315, 315, 315, 315}, // 1980 - {288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 49: 288, 472: 288, 3826, 476: 288, 288, 288, 288, 484: 288, 488: 288, 492: 288, 581: 288, 590: 288, 288, 642: 288, 288, 288, 288, 764: 3827, 789: 4529}, - {288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 49: 288, 472: 288, 3826, 476: 288, 288, 288, 288, 484: 288, 488: 288, 492: 288, 581: 288, 590: 288, 288, 642: 288, 288, 288, 288, 764: 3827, 789: 4528}, - {288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 49: 288, 472: 288, 3826, 476: 288, 288, 288, 288, 484: 288, 488: 288, 492: 288, 581: 288, 590: 288, 288, 642: 288, 288, 288, 288, 764: 3827, 789: 4527}, - {288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 288, 49: 288, 51: 288, 472: 288, 3826, 476: 288, 288, 288, 288, 484: 288, 488: 288, 492: 288, 581: 288, 590: 288, 288, 642: 288, 288, 288, 288, 740: 288, 743: 288, 764: 3827, 789: 4521}, - {283, 283, 283, 283, 283, 283, 283, 283, 283, 283, 283, 283, 283, 283, 283, 49: 283, 51: 283, 472: 283, 476: 283, 283, 283, 283, 484: 283, 488: 283, 492: 283, 581: 283, 590: 283, 283, 642: 283, 283, 283, 283, 740: 283, 743: 283, 876: 4522}, + {314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, 50: 314, 475: 314, 479: 314, 314, 314, 314, 487: 314, 491: 314, 495: 314, 584: 314, 593: 314, 314, 645: 314, 314, 314, 314}, + {312, 312, 312, 312, 312, 312, 312, 312, 312, 312, 312, 312, 312, 312, 312, 16: 312, 50: 312, 107: 312, 312, 111: 312, 475: 312, 479: 312, 312, 312, 312, 487: 312, 491: 312, 495: 312, 508: 312, 533: 312, 584: 312, 593: 312, 312, 645: 312, 312, 312, 312, 650: 312}, + {298, 298, 298, 298, 298, 298, 298, 298, 298, 298, 298, 298, 298, 298, 298, 16: 298, 50: 298, 107: 298, 298, 111: 298, 475: 298, 3852, 479: 298, 298, 298, 298, 487: 298, 491: 298, 495: 298, 508: 298, 533: 298, 584: 298, 593: 298, 298, 645: 298, 298, 298, 298, 650: 298, 768: 3853, 794: 4556}, + {310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 310, 16: 310, 50: 310, 107: 310, 310, 111: 310, 475: 310, 479: 310, 310, 310, 310, 487: 310, 491: 310, 495: 310, 508: 310, 533: 310, 584: 310, 593: 310, 310, 645: 310, 310, 310, 310, 650: 310}, + {309, 309, 309, 309, 309, 309, 309, 309, 309, 309, 309, 309, 309, 309, 309, 16: 309, 50: 309, 107: 309, 309, 111: 309, 475: 309, 479: 309, 309, 309, 309, 487: 309, 491: 309, 495: 309, 508: 309, 533: 309, 584: 309, 593: 309, 309, 645: 309, 309, 309, 309, 650: 309}, // 1985 - {290, 290, 290, 290, 290, 290, 290, 290, 290, 290, 290, 290, 290, 290, 290, 49: 290, 51: 4524, 472: 290, 476: 290, 290, 290, 290, 484: 290, 488: 290, 492: 290, 581: 290, 590: 290, 290, 642: 290, 290, 290, 290, 740: 4523, 743: 4525, 875: 4526}, - {286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 286, 49: 286, 51: 286, 472: 286, 476: 286, 286, 286, 286, 484: 286, 488: 286, 492: 286, 581: 286, 590: 286, 286, 642: 286, 286, 286, 286, 740: 286, 743: 286}, - {285, 285, 285, 285, 285, 285, 285, 285, 285, 285, 285, 285, 285, 285, 285, 49: 285, 51: 285, 472: 285, 476: 285, 285, 285, 285, 484: 285, 488: 285, 492: 285, 581: 285, 590: 285, 285, 642: 285, 285, 285, 285, 740: 285, 743: 285}, - {284, 284, 284, 284, 284, 284, 284, 284, 284, 284, 284, 284, 284, 284, 284, 49: 284, 51: 284, 472: 284, 476: 284, 284, 284, 284, 484: 284, 488: 284, 492: 284, 581: 284, 590: 284, 284, 642: 284, 284, 284, 284, 740: 284, 743: 284}, - {282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 282, 49: 282, 51: 282, 472: 282, 476: 282, 282, 282, 282, 484: 282, 488: 282, 492: 282, 581: 282, 590: 282, 282, 642: 282, 282, 282, 282, 740: 282, 743: 282}, + {304, 304, 304, 304, 304, 304, 304, 304, 304, 304, 304, 304, 304, 304, 304, 50: 304, 475: 304, 479: 304, 304, 304, 304, 487: 304, 491: 304, 495: 304, 584: 304, 593: 304, 304, 645: 304, 304, 304, 304}, + {298, 298, 298, 298, 298, 298, 298, 298, 298, 298, 298, 298, 298, 298, 298, 50: 298, 475: 298, 3852, 479: 298, 298, 298, 298, 487: 298, 491: 298, 495: 298, 584: 298, 593: 298, 298, 645: 298, 298, 298, 298, 768: 3853, 794: 4555}, + {298, 298, 298, 298, 298, 298, 298, 298, 298, 298, 298, 298, 298, 298, 298, 50: 298, 475: 298, 3852, 479: 298, 298, 298, 298, 487: 298, 491: 298, 495: 298, 584: 298, 593: 298, 298, 645: 298, 298, 298, 298, 768: 3853, 794: 4554}, + {298, 298, 298, 298, 298, 298, 298, 298, 298, 298, 298, 298, 298, 298, 298, 50: 298, 475: 298, 3852, 479: 298, 298, 298, 298, 487: 298, 491: 298, 495: 298, 584: 298, 593: 298, 298, 645: 298, 298, 298, 298, 768: 3853, 794: 4553}, + {298, 298, 298, 298, 298, 298, 298, 298, 298, 298, 298, 298, 298, 298, 298, 50: 298, 52: 298, 475: 298, 3852, 479: 298, 298, 298, 298, 487: 298, 491: 298, 495: 298, 584: 298, 593: 298, 298, 645: 298, 298, 298, 298, 744: 298, 747: 298, 768: 3853, 794: 4547}, // 1990 - {291, 291, 291, 291, 291, 291, 291, 291, 291, 291, 291, 291, 291, 291, 291, 49: 291, 472: 291, 476: 291, 291, 291, 291, 484: 291, 488: 291, 492: 291, 581: 291, 590: 291, 291, 642: 291, 291, 291, 291}, - {292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 49: 292, 472: 292, 476: 292, 292, 292, 292, 484: 292, 488: 292, 492: 292, 581: 292, 590: 292, 292, 642: 292, 292, 292, 292}, - {293, 293, 293, 293, 293, 293, 293, 293, 293, 293, 293, 293, 293, 293, 293, 49: 293, 472: 293, 476: 293, 293, 293, 293, 484: 293, 488: 293, 492: 293, 581: 293, 590: 293, 293, 642: 293, 293, 293, 293}, - {301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 16: 301, 49: 301, 106: 301, 301, 110: 301, 472: 301, 476: 301, 301, 301, 301, 484: 301, 488: 301, 492: 301, 505: 301, 530: 301, 581: 301, 590: 301, 301, 642: 301, 301, 301, 301, 647: 301}, - {306, 306, 306, 306, 306, 306, 306, 306, 306, 306, 306, 306, 306, 306, 306, 49: 306, 472: 306, 476: 306, 306, 306, 306, 484: 306, 488: 306, 492: 306, 581: 306, 590: 306, 306, 642: 306, 306, 306, 306}, + {293, 293, 293, 293, 293, 293, 293, 293, 293, 293, 293, 293, 293, 293, 293, 50: 293, 52: 293, 475: 293, 479: 293, 293, 293, 293, 487: 293, 491: 293, 495: 293, 584: 293, 593: 293, 293, 645: 293, 293, 293, 293, 744: 293, 747: 293, 880: 4548}, + {300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 50: 300, 52: 4550, 475: 300, 479: 300, 300, 300, 300, 487: 300, 491: 300, 495: 300, 584: 300, 593: 300, 300, 645: 300, 300, 300, 300, 744: 4549, 747: 4551, 879: 4552}, + {296, 296, 296, 296, 296, 296, 296, 296, 296, 296, 296, 296, 296, 296, 296, 50: 296, 52: 296, 475: 296, 479: 296, 296, 296, 296, 487: 296, 491: 296, 495: 296, 584: 296, 593: 296, 296, 645: 296, 296, 296, 296, 744: 296, 747: 296}, + {295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 50: 295, 52: 295, 475: 295, 479: 295, 295, 295, 295, 487: 295, 491: 295, 495: 295, 584: 295, 593: 295, 295, 645: 295, 295, 295, 295, 744: 295, 747: 295}, + {294, 294, 294, 294, 294, 294, 294, 294, 294, 294, 294, 294, 294, 294, 294, 50: 294, 52: 294, 475: 294, 479: 294, 294, 294, 294, 487: 294, 491: 294, 495: 294, 584: 294, 593: 294, 294, 645: 294, 294, 294, 294, 744: 294, 747: 294}, // 1995 - {323, 323, 323, 323, 323, 323, 323, 323, 323, 323, 323, 323, 323, 323, 323, 16: 323, 49: 323, 472: 323, 323, 476: 323, 323, 323, 323, 484: 323, 488: 323, 492: 323, 505: 323, 530: 323, 581: 323, 590: 323, 323, 642: 323, 323, 323, 323, 647: 323, 843: 4537}, - {322, 322, 322, 322, 322, 322, 322, 322, 322, 322, 322, 322, 322, 322, 322, 16: 322, 49: 322, 472: 322, 322, 476: 322, 322, 322, 322, 484: 322, 488: 322, 492: 322, 505: 322, 530: 322, 581: 322, 590: 322, 322, 642: 322, 322, 322, 322, 647: 322, 843: 4536}, - {473: 317}, - {473: 316}, - {473: 311}, + {292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 292, 50: 292, 52: 292, 475: 292, 479: 292, 292, 292, 292, 487: 292, 491: 292, 495: 292, 584: 292, 593: 292, 292, 645: 292, 292, 292, 292, 744: 292, 747: 292}, + {301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 301, 50: 301, 475: 301, 479: 301, 301, 301, 301, 487: 301, 491: 301, 495: 301, 584: 301, 593: 301, 301, 645: 301, 301, 301, 301}, + {302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 302, 50: 302, 475: 302, 479: 302, 302, 302, 302, 487: 302, 491: 302, 495: 302, 584: 302, 593: 302, 302, 645: 302, 302, 302, 302}, + {303, 303, 303, 303, 303, 303, 303, 303, 303, 303, 303, 303, 303, 303, 303, 50: 303, 475: 303, 479: 303, 303, 303, 303, 487: 303, 491: 303, 495: 303, 584: 303, 593: 303, 303, 645: 303, 303, 303, 303}, + {311, 311, 311, 311, 311, 311, 311, 311, 311, 311, 311, 311, 311, 311, 311, 16: 311, 50: 311, 107: 311, 311, 111: 311, 475: 311, 479: 311, 311, 311, 311, 487: 311, 491: 311, 495: 311, 508: 311, 533: 311, 584: 311, 593: 311, 311, 645: 311, 311, 311, 311, 650: 311}, // 2000 - {473: 312}, - {473: 314}, - {473: 313}, - {473: 310}, - {320, 320, 320, 320, 320, 320, 320, 320, 320, 320, 320, 320, 320, 320, 320, 16: 320, 49: 320, 106: 320, 320, 110: 320, 472: 320, 320, 476: 320, 320, 320, 320, 484: 320, 488: 320, 492: 320, 505: 320, 530: 320, 581: 320, 590: 320, 320, 642: 320, 320, 320, 320, 647: 320}, + {316, 316, 316, 316, 316, 316, 316, 316, 316, 316, 316, 316, 316, 316, 316, 50: 316, 475: 316, 479: 316, 316, 316, 316, 487: 316, 491: 316, 495: 316, 584: 316, 593: 316, 316, 645: 316, 316, 316, 316}, + {333, 333, 333, 333, 333, 333, 333, 333, 333, 333, 333, 333, 333, 333, 333, 16: 333, 50: 333, 475: 333, 333, 479: 333, 333, 333, 333, 487: 333, 491: 333, 495: 333, 508: 333, 533: 333, 584: 333, 593: 333, 333, 645: 333, 333, 333, 333, 650: 333, 848: 4563}, + {332, 332, 332, 332, 332, 332, 332, 332, 332, 332, 332, 332, 332, 332, 332, 16: 332, 50: 332, 475: 332, 332, 479: 332, 332, 332, 332, 487: 332, 491: 332, 495: 332, 508: 332, 533: 332, 584: 332, 593: 332, 332, 645: 332, 332, 332, 332, 650: 332, 848: 4562}, + {476: 327}, + {476: 326}, // 2005 - {321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 321, 16: 321, 49: 321, 106: 321, 321, 110: 321, 472: 321, 321, 476: 321, 321, 321, 321, 484: 321, 488: 321, 492: 321, 505: 321, 530: 321, 581: 321, 590: 321, 321, 642: 321, 321, 321, 321, 647: 321}, - {275, 275, 275, 275, 275, 275, 275, 275, 275, 275, 275, 275, 275, 275, 275, 16: 3836, 49: 275, 106: 4549, 4551, 110: 4550, 472: 275, 476: 275, 275, 275, 275, 484: 275, 488: 275, 492: 275, 505: 3837, 530: 3833, 581: 275, 590: 275, 275, 642: 275, 275, 275, 275, 647: 3835, 773: 3834, 799: 4548, 884: 4552}, - {327, 327, 327, 327, 327, 327, 327, 327, 327, 327, 327, 327, 327, 327, 327, 49: 327, 472: 327, 476: 327, 327, 327, 327, 484: 327, 488: 327, 492: 327, 581: 327, 590: 327, 327, 642: 327, 327, 327, 327}, - {506: 3839, 843: 4542}, - {506: 3838, 843: 4541}, + {476: 321}, + {476: 322}, + {476: 324}, + {476: 323}, + {476: 320}, // 2010 - {303, 303, 303, 303, 303, 303, 303, 303, 303, 303, 303, 303, 303, 303, 303, 49: 303, 472: 303, 476: 303, 303, 303, 303, 484: 303, 488: 303, 492: 303, 581: 303, 590: 303, 303, 642: 303, 303, 303, 303}, - {298, 298, 298, 298, 298, 298, 298, 298, 298, 298, 298, 298, 298, 298, 298, 49: 298, 472: 298, 476: 298, 298, 298, 298, 484: 298, 488: 298, 492: 298, 581: 298, 590: 298, 298, 642: 298, 298, 298, 298}, - {297, 297, 297, 297, 297, 297, 297, 297, 297, 297, 297, 297, 297, 297, 297, 49: 297, 472: 297, 476: 297, 297, 297, 297, 484: 297, 488: 297, 492: 297, 581: 297, 590: 297, 297, 642: 297, 297, 297, 297}, - {296, 296, 296, 296, 296, 296, 296, 296, 296, 296, 296, 296, 296, 296, 296, 49: 296, 472: 296, 476: 296, 296, 296, 296, 484: 296, 488: 296, 492: 296, 581: 296, 590: 296, 296, 642: 296, 296, 296, 296}, - {295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 295, 49: 295, 472: 295, 476: 295, 295, 295, 295, 484: 295, 488: 295, 492: 295, 581: 295, 590: 295, 295, 642: 295, 295, 295, 295}, + {330, 330, 330, 330, 330, 330, 330, 330, 330, 330, 330, 330, 330, 330, 330, 16: 330, 50: 330, 107: 330, 330, 111: 330, 475: 330, 330, 479: 330, 330, 330, 330, 487: 330, 491: 330, 495: 330, 508: 330, 533: 330, 584: 330, 593: 330, 330, 645: 330, 330, 330, 330, 650: 330}, + {331, 331, 331, 331, 331, 331, 331, 331, 331, 331, 331, 331, 331, 331, 331, 16: 331, 50: 331, 107: 331, 331, 111: 331, 475: 331, 331, 479: 331, 331, 331, 331, 487: 331, 491: 331, 495: 331, 508: 331, 533: 331, 584: 331, 593: 331, 331, 645: 331, 331, 331, 331, 650: 331}, + {285, 285, 285, 285, 285, 285, 285, 285, 285, 285, 285, 285, 285, 285, 285, 16: 3862, 50: 285, 107: 4575, 4577, 111: 4576, 475: 285, 479: 285, 285, 285, 285, 487: 285, 491: 285, 495: 285, 508: 3863, 533: 3859, 584: 285, 593: 285, 285, 645: 285, 285, 285, 285, 650: 3861, 779: 3860, 803: 4574, 888: 4578}, + {337, 337, 337, 337, 337, 337, 337, 337, 337, 337, 337, 337, 337, 337, 337, 50: 337, 475: 337, 479: 337, 337, 337, 337, 487: 337, 491: 337, 495: 337, 584: 337, 593: 337, 337, 645: 337, 337, 337, 337}, + {509: 3865, 848: 4568}, // 2015 - {328, 328, 328, 328, 328, 328, 328, 328, 328, 328, 328, 328, 328, 328, 328, 49: 328, 472: 328, 476: 328, 328, 328, 328, 484: 328, 488: 328, 492: 328, 581: 328, 590: 328, 328, 642: 328, 328, 328, 328}, - {475: 4555, 576: 4556, 580: 4557, 970: 4558, 1151: 4554}, - {9: 4560, 49: 4559}, - {9: 263, 49: 263}, - {9: 262, 49: 262}, + {509: 3864, 848: 4567}, + {313, 313, 313, 313, 313, 313, 313, 313, 313, 313, 313, 313, 313, 313, 313, 50: 313, 475: 313, 479: 313, 313, 313, 313, 487: 313, 491: 313, 495: 313, 584: 313, 593: 313, 313, 645: 313, 313, 313, 313}, + {308, 308, 308, 308, 308, 308, 308, 308, 308, 308, 308, 308, 308, 308, 308, 50: 308, 475: 308, 479: 308, 308, 308, 308, 487: 308, 491: 308, 495: 308, 584: 308, 593: 308, 308, 645: 308, 308, 308, 308}, + {307, 307, 307, 307, 307, 307, 307, 307, 307, 307, 307, 307, 307, 307, 307, 50: 307, 475: 307, 479: 307, 307, 307, 307, 487: 307, 491: 307, 495: 307, 584: 307, 593: 307, 307, 645: 307, 307, 307, 307}, + {306, 306, 306, 306, 306, 306, 306, 306, 306, 306, 306, 306, 306, 306, 306, 50: 306, 475: 306, 479: 306, 306, 306, 306, 487: 306, 491: 306, 495: 306, 584: 306, 593: 306, 306, 645: 306, 306, 306, 306}, // 2020 - {9: 261, 49: 261}, - {9: 260, 49: 260}, - {275, 275, 275, 275, 275, 275, 275, 275, 275, 275, 275, 275, 275, 275, 275, 16: 3836, 49: 275, 106: 4549, 4551, 110: 4550, 472: 275, 476: 275, 275, 275, 275, 484: 275, 488: 275, 492: 275, 505: 3837, 530: 3833, 581: 275, 590: 275, 275, 642: 275, 275, 275, 275, 647: 3835, 773: 3834, 799: 4548, 884: 4562}, - {475: 4555, 576: 4556, 580: 4557, 970: 4561}, - {9: 259, 49: 259}, + {305, 305, 305, 305, 305, 305, 305, 305, 305, 305, 305, 305, 305, 305, 305, 50: 305, 475: 305, 479: 305, 305, 305, 305, 487: 305, 491: 305, 495: 305, 584: 305, 593: 305, 305, 645: 305, 305, 305, 305}, + {338, 338, 338, 338, 338, 338, 338, 338, 338, 338, 338, 338, 338, 338, 338, 50: 338, 475: 338, 479: 338, 338, 338, 338, 487: 338, 491: 338, 495: 338, 584: 338, 593: 338, 338, 645: 338, 338, 338, 338}, + {478: 4581, 579: 4582, 583: 4583, 975: 4584, 1159: 4580}, + {9: 4586, 50: 4585}, + {9: 273, 50: 273}, // 2025 - {330, 330, 330, 330, 330, 330, 330, 330, 330, 330, 330, 330, 330, 330, 330, 49: 330, 472: 330, 476: 330, 330, 330, 330, 484: 330, 488: 330, 492: 330, 581: 330, 590: 330, 330, 642: 330, 330, 330, 330}, - {475: 4555, 576: 4556, 580: 4557, 970: 4558, 1151: 4564}, - {9: 4560, 49: 4565}, - {275, 275, 275, 275, 275, 275, 275, 275, 275, 275, 275, 275, 275, 275, 275, 16: 3836, 49: 275, 106: 4549, 4551, 110: 4550, 472: 275, 476: 275, 275, 275, 275, 484: 275, 488: 275, 492: 275, 505: 3837, 530: 3833, 581: 275, 590: 275, 275, 642: 275, 275, 275, 275, 647: 3835, 773: 3834, 799: 4548, 884: 4566}, - {331, 331, 331, 331, 331, 331, 331, 331, 331, 331, 331, 331, 331, 331, 331, 49: 331, 472: 331, 476: 331, 331, 331, 331, 484: 331, 488: 331, 492: 331, 581: 331, 590: 331, 331, 642: 331, 331, 331, 331}, + {9: 272, 50: 272}, + {9: 271, 50: 271}, + {9: 270, 50: 270}, + {285, 285, 285, 285, 285, 285, 285, 285, 285, 285, 285, 285, 285, 285, 285, 16: 3862, 50: 285, 107: 4575, 4577, 111: 4576, 475: 285, 479: 285, 285, 285, 285, 487: 285, 491: 285, 495: 285, 508: 3863, 533: 3859, 584: 285, 593: 285, 285, 645: 285, 285, 285, 285, 650: 3861, 779: 3860, 803: 4574, 888: 4588}, + {478: 4581, 579: 4582, 583: 4583, 975: 4587}, // 2030 - {332, 332, 332, 332, 332, 332, 332, 332, 332, 332, 332, 332, 332, 332, 332, 49: 332, 472: 332, 476: 332, 332, 332, 332, 484: 332, 488: 332, 492: 332, 581: 332, 590: 332, 332, 642: 332, 332, 332, 332}, - {334, 334, 334, 334, 334, 334, 334, 334, 334, 334, 334, 334, 334, 334, 334, 49: 334, 472: 334, 476: 334, 334, 334, 334, 484: 334, 488: 334, 492: 334, 581: 334, 590: 334, 334, 642: 334, 334, 334, 334}, - {335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 335, 49: 335, 472: 335, 476: 335, 335, 335, 335, 484: 335, 488: 335, 492: 335, 581: 335, 590: 335, 335, 642: 335, 335, 335, 335}, - {275, 275, 275, 275, 275, 275, 275, 275, 275, 275, 275, 275, 275, 275, 275, 16: 3836, 49: 275, 472: 275, 476: 275, 275, 275, 275, 484: 275, 488: 275, 492: 275, 505: 3837, 530: 3833, 581: 275, 590: 275, 275, 642: 275, 275, 275, 275, 647: 3835, 773: 3834, 799: 4571}, - {336, 336, 336, 336, 336, 336, 336, 336, 336, 336, 336, 336, 336, 336, 336, 49: 336, 472: 336, 476: 336, 336, 336, 336, 484: 336, 488: 336, 492: 336, 581: 336, 590: 336, 336, 642: 336, 336, 336, 336}, + {9: 269, 50: 269}, + {340, 340, 340, 340, 340, 340, 340, 340, 340, 340, 340, 340, 340, 340, 340, 50: 340, 475: 340, 479: 340, 340, 340, 340, 487: 340, 491: 340, 495: 340, 584: 340, 593: 340, 340, 645: 340, 340, 340, 340}, + {478: 4581, 579: 4582, 583: 4583, 975: 4584, 1159: 4590}, + {9: 4586, 50: 4591}, + {285, 285, 285, 285, 285, 285, 285, 285, 285, 285, 285, 285, 285, 285, 285, 16: 3862, 50: 285, 107: 4575, 4577, 111: 4576, 475: 285, 479: 285, 285, 285, 285, 487: 285, 491: 285, 495: 285, 508: 3863, 533: 3859, 584: 285, 593: 285, 285, 645: 285, 285, 285, 285, 650: 3861, 779: 3860, 803: 4574, 888: 4592}, // 2035 - {275, 275, 275, 275, 275, 275, 275, 275, 275, 275, 275, 275, 275, 275, 275, 16: 3836, 49: 275, 472: 275, 476: 275, 275, 275, 275, 484: 275, 488: 275, 492: 275, 505: 3837, 530: 3833, 581: 275, 590: 275, 275, 642: 275, 275, 275, 275, 647: 3835, 773: 3834, 799: 4573}, - {337, 337, 337, 337, 337, 337, 337, 337, 337, 337, 337, 337, 337, 337, 337, 49: 337, 472: 337, 476: 337, 337, 337, 337, 484: 337, 488: 337, 492: 337, 581: 337, 590: 337, 337, 642: 337, 337, 337, 337}, - {275, 275, 275, 275, 275, 275, 275, 275, 275, 275, 275, 275, 275, 275, 275, 16: 3836, 49: 275, 472: 275, 476: 275, 275, 275, 275, 484: 275, 488: 275, 492: 275, 505: 3837, 530: 3833, 581: 275, 590: 275, 275, 642: 275, 275, 275, 275, 647: 3835, 773: 3834, 799: 4576}, - {338, 338, 338, 338, 338, 338, 338, 338, 338, 338, 338, 338, 338, 338, 338, 49: 338, 472: 338, 476: 338, 338, 338, 338, 484: 338, 488: 338, 492: 338, 581: 338, 590: 338, 338, 642: 338, 338, 338, 338}, - {339, 339, 339, 339, 339, 339, 339, 339, 339, 339, 339, 339, 339, 339, 339, 49: 339, 472: 339, 476: 339, 339, 339, 339, 484: 339, 488: 339, 492: 339, 581: 339, 590: 339, 339, 642: 339, 339, 339, 339}, + {341, 341, 341, 341, 341, 341, 341, 341, 341, 341, 341, 341, 341, 341, 341, 50: 341, 475: 341, 479: 341, 341, 341, 341, 487: 341, 491: 341, 495: 341, 584: 341, 593: 341, 341, 645: 341, 341, 341, 341}, + {342, 342, 342, 342, 342, 342, 342, 342, 342, 342, 342, 342, 342, 342, 342, 50: 342, 475: 342, 479: 342, 342, 342, 342, 487: 342, 491: 342, 495: 342, 584: 342, 593: 342, 342, 645: 342, 342, 342, 342}, + {344, 344, 344, 344, 344, 344, 344, 344, 344, 344, 344, 344, 344, 344, 344, 50: 344, 475: 344, 479: 344, 344, 344, 344, 487: 344, 491: 344, 495: 344, 584: 344, 593: 344, 344, 645: 344, 344, 344, 344}, + {345, 345, 345, 345, 345, 345, 345, 345, 345, 345, 345, 345, 345, 345, 345, 50: 345, 475: 345, 479: 345, 345, 345, 345, 487: 345, 491: 345, 495: 345, 584: 345, 593: 345, 345, 645: 345, 345, 345, 345}, + {285, 285, 285, 285, 285, 285, 285, 285, 285, 285, 285, 285, 285, 285, 285, 16: 3862, 50: 285, 475: 285, 479: 285, 285, 285, 285, 487: 285, 491: 285, 495: 285, 508: 3863, 533: 3859, 584: 285, 593: 285, 285, 645: 285, 285, 285, 285, 650: 3861, 779: 3860, 803: 4597}, // 2040 - {275, 275, 275, 275, 275, 275, 275, 275, 275, 275, 275, 275, 275, 275, 275, 16: 3836, 49: 275, 472: 275, 476: 275, 275, 275, 275, 484: 275, 488: 275, 492: 275, 505: 3837, 530: 3833, 581: 275, 590: 275, 275, 642: 275, 275, 275, 275, 647: 3835, 773: 3834, 799: 4579}, - {340, 340, 340, 340, 340, 340, 340, 340, 340, 340, 340, 340, 340, 340, 340, 49: 340, 472: 340, 476: 340, 340, 340, 340, 484: 340, 488: 340, 492: 340, 581: 340, 590: 340, 340, 642: 340, 340, 340, 340}, - {341, 341, 341, 341, 341, 341, 341, 341, 341, 341, 341, 341, 341, 341, 341, 49: 341, 472: 341, 476: 341, 341, 341, 341, 484: 341, 488: 341, 492: 341, 581: 341, 590: 341, 341, 642: 341, 341, 341, 341}, - {343, 343, 343, 343, 343, 343, 343, 343, 343, 343, 343, 343, 343, 343, 343, 49: 343, 51: 343, 472: 343, 343, 476: 343, 343, 343, 343, 484: 343, 488: 343, 492: 343, 581: 343, 590: 343, 343, 642: 343, 343, 343, 343, 740: 343, 743: 343}, - {366, 366, 366, 366, 366, 366, 366, 366, 366, 366, 366, 366, 366, 366, 366, 49: 366, 472: 366, 476: 366, 366, 366, 366, 484: 366, 488: 366, 492: 366, 581: 366, 590: 366, 366, 642: 366, 366, 366, 366}, + {346, 346, 346, 346, 346, 346, 346, 346, 346, 346, 346, 346, 346, 346, 346, 50: 346, 475: 346, 479: 346, 346, 346, 346, 487: 346, 491: 346, 495: 346, 584: 346, 593: 346, 346, 645: 346, 346, 346, 346}, + {285, 285, 285, 285, 285, 285, 285, 285, 285, 285, 285, 285, 285, 285, 285, 16: 3862, 50: 285, 475: 285, 479: 285, 285, 285, 285, 487: 285, 491: 285, 495: 285, 508: 3863, 533: 3859, 584: 285, 593: 285, 285, 645: 285, 285, 285, 285, 650: 3861, 779: 3860, 803: 4599}, + {347, 347, 347, 347, 347, 347, 347, 347, 347, 347, 347, 347, 347, 347, 347, 50: 347, 475: 347, 479: 347, 347, 347, 347, 487: 347, 491: 347, 495: 347, 584: 347, 593: 347, 347, 645: 347, 347, 347, 347}, + {285, 285, 285, 285, 285, 285, 285, 285, 285, 285, 285, 285, 285, 285, 285, 16: 3862, 50: 285, 475: 285, 479: 285, 285, 285, 285, 487: 285, 491: 285, 495: 285, 508: 3863, 533: 3859, 584: 285, 593: 285, 285, 645: 285, 285, 285, 285, 650: 3861, 779: 3860, 803: 4602}, + {348, 348, 348, 348, 348, 348, 348, 348, 348, 348, 348, 348, 348, 348, 348, 50: 348, 475: 348, 479: 348, 348, 348, 348, 487: 348, 491: 348, 495: 348, 584: 348, 593: 348, 348, 645: 348, 348, 348, 348}, // 2045 - {283, 283, 283, 283, 283, 283, 283, 283, 283, 283, 283, 283, 283, 283, 283, 49: 283, 51: 283, 472: 283, 476: 283, 283, 283, 283, 484: 283, 488: 283, 492: 283, 581: 283, 590: 283, 283, 642: 283, 283, 283, 283, 740: 283, 743: 283, 876: 4583}, - {367, 367, 367, 367, 367, 367, 367, 367, 367, 367, 367, 367, 367, 367, 367, 49: 367, 51: 4524, 472: 367, 476: 367, 367, 367, 367, 484: 367, 488: 367, 492: 367, 581: 367, 590: 367, 367, 642: 367, 367, 367, 367, 740: 4523, 743: 4525, 875: 4526}, - {283, 283, 283, 283, 283, 283, 283, 283, 283, 283, 283, 283, 283, 283, 283, 49: 283, 51: 283, 472: 283, 476: 283, 283, 283, 283, 484: 283, 488: 283, 492: 283, 581: 283, 590: 283, 283, 642: 283, 283, 283, 283, 740: 283, 743: 283, 876: 4585}, - {368, 368, 368, 368, 368, 368, 368, 368, 368, 368, 368, 368, 368, 368, 368, 49: 368, 51: 4524, 472: 368, 476: 368, 368, 368, 368, 484: 368, 488: 368, 492: 368, 581: 368, 590: 368, 368, 642: 368, 368, 368, 368, 740: 4523, 743: 4525, 875: 4526}, - {369, 369, 369, 369, 369, 369, 369, 369, 369, 369, 369, 369, 369, 369, 369, 49: 369, 51: 4524, 472: 369, 476: 369, 369, 369, 369, 484: 369, 488: 369, 492: 369, 581: 369, 590: 369, 369, 642: 369, 369, 369, 369, 740: 4523, 743: 4525, 875: 4526}, + {349, 349, 349, 349, 349, 349, 349, 349, 349, 349, 349, 349, 349, 349, 349, 50: 349, 475: 349, 479: 349, 349, 349, 349, 487: 349, 491: 349, 495: 349, 584: 349, 593: 349, 349, 645: 349, 349, 349, 349}, + {285, 285, 285, 285, 285, 285, 285, 285, 285, 285, 285, 285, 285, 285, 285, 16: 3862, 50: 285, 475: 285, 479: 285, 285, 285, 285, 487: 285, 491: 285, 495: 285, 508: 3863, 533: 3859, 584: 285, 593: 285, 285, 645: 285, 285, 285, 285, 650: 3861, 779: 3860, 803: 4605}, + {350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 50: 350, 475: 350, 479: 350, 350, 350, 350, 487: 350, 491: 350, 495: 350, 584: 350, 593: 350, 350, 645: 350, 350, 350, 350}, + {351, 351, 351, 351, 351, 351, 351, 351, 351, 351, 351, 351, 351, 351, 351, 50: 351, 475: 351, 479: 351, 351, 351, 351, 487: 351, 491: 351, 495: 351, 584: 351, 593: 351, 351, 645: 351, 351, 351, 351}, + {353, 353, 353, 353, 353, 353, 353, 353, 353, 353, 353, 353, 353, 353, 353, 50: 353, 52: 353, 475: 353, 353, 479: 353, 353, 353, 353, 487: 353, 491: 353, 495: 353, 584: 353, 593: 353, 353, 645: 353, 353, 353, 353, 744: 353, 747: 353}, // 2050 - {283, 283, 283, 283, 283, 283, 283, 283, 283, 283, 283, 283, 283, 283, 283, 49: 283, 51: 283, 472: 283, 476: 283, 283, 283, 283, 484: 283, 488: 283, 492: 283, 581: 283, 590: 283, 283, 642: 283, 283, 283, 283, 740: 283, 743: 283, 876: 4588}, - {370, 370, 370, 370, 370, 370, 370, 370, 370, 370, 370, 370, 370, 370, 370, 49: 370, 51: 4524, 472: 370, 476: 370, 370, 370, 370, 484: 370, 488: 370, 492: 370, 581: 370, 590: 370, 370, 642: 370, 370, 370, 370, 740: 4523, 743: 4525, 875: 4526}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 581: 2405, 590: 2405, 2405, 642: 2405, 649: 2405, 661: 4728, 2762, 2763, 2761, 675: 2405, 2405, 1144: 4727}, - {2338, 2338, 2338, 2338, 2338, 2338, 9: 2338, 2338, 2338, 49: 2338, 488: 2338}, - {581: 2315}, + {376, 376, 376, 376, 376, 376, 376, 376, 376, 376, 376, 376, 376, 376, 376, 50: 376, 475: 376, 479: 376, 376, 376, 376, 487: 376, 491: 376, 495: 376, 584: 376, 593: 376, 376, 645: 376, 376, 376, 376}, + {293, 293, 293, 293, 293, 293, 293, 293, 293, 293, 293, 293, 293, 293, 293, 50: 293, 52: 293, 475: 293, 479: 293, 293, 293, 293, 487: 293, 491: 293, 495: 293, 584: 293, 593: 293, 293, 645: 293, 293, 293, 293, 744: 293, 747: 293, 880: 4609}, + {377, 377, 377, 377, 377, 377, 377, 377, 377, 377, 377, 377, 377, 377, 377, 50: 377, 52: 4550, 475: 377, 479: 377, 377, 377, 377, 487: 377, 491: 377, 495: 377, 584: 377, 593: 377, 377, 645: 377, 377, 377, 377, 744: 4549, 747: 4551, 879: 4552}, + {293, 293, 293, 293, 293, 293, 293, 293, 293, 293, 293, 293, 293, 293, 293, 50: 293, 52: 293, 475: 293, 479: 293, 293, 293, 293, 487: 293, 491: 293, 495: 293, 584: 293, 593: 293, 293, 645: 293, 293, 293, 293, 744: 293, 747: 293, 880: 4611}, + {378, 378, 378, 378, 378, 378, 378, 378, 378, 378, 378, 378, 378, 378, 378, 50: 378, 52: 4550, 475: 378, 479: 378, 378, 378, 378, 487: 378, 491: 378, 495: 378, 584: 378, 593: 378, 378, 645: 378, 378, 378, 378, 744: 4549, 747: 4551, 879: 4552}, // 2055 - {492: 4726}, - {2305, 2305, 2305, 2305, 2305, 2305, 2305, 2305, 2305, 2305, 2305, 2305, 2305, 2305, 2305, 49: 2305, 472: 2305, 476: 2305, 2305, 2305, 2305, 484: 2305, 488: 2305, 492: 2305, 581: 2305, 590: 2305, 2305, 642: 2305, 2305, 2305, 2305}, - {2304, 2304, 2304, 2304, 2304, 2304, 2304, 2304, 2304, 2304, 2304, 2304, 2304, 2304, 2304, 49: 2304, 472: 2304, 476: 2304, 2304, 2304, 2304, 484: 2304, 488: 2304, 492: 2304, 581: 2304, 590: 2304, 2304, 642: 2304, 2304, 2304, 2304}, - {581: 4722}, - {2301, 2301, 2301, 2301, 2301, 2301, 2301, 2301, 2301, 2301, 2301, 2301, 2301, 2301, 2301, 49: 2301, 472: 2301, 476: 2301, 2301, 2301, 2301, 484: 2301, 488: 2301, 492: 2301, 581: 4721, 590: 2301, 2301, 642: 2301, 2301, 2301, 2301}, + {379, 379, 379, 379, 379, 379, 379, 379, 379, 379, 379, 379, 379, 379, 379, 50: 379, 52: 4550, 475: 379, 479: 379, 379, 379, 379, 487: 379, 491: 379, 495: 379, 584: 379, 593: 379, 379, 645: 379, 379, 379, 379, 744: 4549, 747: 4551, 879: 4552}, + {293, 293, 293, 293, 293, 293, 293, 293, 293, 293, 293, 293, 293, 293, 293, 50: 293, 52: 293, 475: 293, 479: 293, 293, 293, 293, 487: 293, 491: 293, 495: 293, 584: 293, 593: 293, 293, 645: 293, 293, 293, 293, 744: 293, 747: 293, 880: 4614}, + {380, 380, 380, 380, 380, 380, 380, 380, 380, 380, 380, 380, 380, 380, 380, 50: 380, 52: 4550, 475: 380, 479: 380, 380, 380, 380, 487: 380, 491: 380, 495: 380, 584: 380, 593: 380, 380, 645: 380, 380, 380, 380, 744: 4549, 747: 4551, 879: 4552}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 584: 2425, 593: 2425, 2425, 645: 2425, 652: 2425, 664: 4754, 2785, 2786, 2784, 678: 2425, 2425, 1152: 4753}, + {2355, 2355, 2355, 2355, 2355, 2355, 9: 2355, 2355, 2355, 50: 2355, 491: 2355}, // 2060 - {151: 4709, 270: 4711, 362: 4712, 473: 4708, 475: 3239, 485: 4444, 4445, 492: 3230, 508: 3234, 571: 3229, 3231, 3233, 3232, 576: 3237, 580: 3238, 585: 4696, 4693, 588: 4694, 4695, 592: 3236, 712: 4443, 3235, 4706, 946: 4691, 4692, 4710, 995: 4707, 1081: 4704, 1134: 4705, 1204: 4703}, - {479: 4701}, - {654: 4689}, - {475: 4688}, - {590: 4679}, + {584: 2332}, + {495: 4752}, + {2322, 2322, 2322, 2322, 2322, 2322, 2322, 2322, 2322, 2322, 2322, 2322, 2322, 2322, 2322, 50: 2322, 475: 2322, 479: 2322, 2322, 2322, 2322, 487: 2322, 491: 2322, 495: 2322, 584: 2322, 593: 2322, 2322, 645: 2322, 2322, 2322, 2322}, + {2321, 2321, 2321, 2321, 2321, 2321, 2321, 2321, 2321, 2321, 2321, 2321, 2321, 2321, 2321, 50: 2321, 475: 2321, 479: 2321, 2321, 2321, 2321, 487: 2321, 491: 2321, 495: 2321, 584: 2321, 593: 2321, 2321, 645: 2321, 2321, 2321, 2321}, + {584: 4748}, // 2065 - {478: 4672}, - {2293, 2293, 2293, 2293, 2293, 2293, 2293, 2293, 2293, 2293, 2293, 2293, 2293, 2293, 2293, 49: 2293, 472: 2293, 476: 2293, 2293, 2293, 2293, 484: 2293, 488: 2293, 492: 2293, 581: 2293, 590: 2293, 2293, 642: 2293, 2293, 2293, 2293}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 475: 3490, 530: 3489, 661: 3491, 2762, 2763, 2761, 738: 3488, 872: 4671}, - {180: 4669, 207: 4670, 479: 4668, 1189: 4667}, - {186: 4666, 247: 4665, 479: 4664, 1311: 4663}, + {2318, 2318, 2318, 2318, 2318, 2318, 2318, 2318, 2318, 2318, 2318, 2318, 2318, 2318, 2318, 50: 2318, 475: 2318, 479: 2318, 2318, 2318, 2318, 487: 2318, 491: 2318, 495: 2318, 584: 4747, 593: 2318, 2318, 645: 2318, 2318, 2318, 2318}, + {130: 4735, 273: 4737, 364: 4738, 476: 4734, 478: 3265, 488: 4470, 4471, 495: 3256, 511: 3260, 574: 3255, 3257, 3259, 3258, 579: 3263, 583: 3264, 588: 4722, 4719, 591: 4720, 4721, 595: 3262, 716: 4469, 3261, 4732, 904: 4733, 951: 4717, 4718, 4736, 1089: 4730, 1142: 4731, 1213: 4729}, + {482: 4727}, + {657: 4715}, + {478: 4714}, // 2070 - {2288, 2288, 2288, 2288, 2288, 2288, 2288, 2288, 2288, 2288, 2288, 2288, 2288, 2288, 2288, 49: 2288, 472: 2288, 4657, 476: 2288, 2288, 2288, 2288, 484: 2288, 488: 2288, 492: 2288, 581: 2288, 590: 2288, 2288, 642: 2288, 2288, 2288, 2288, 1179: 4656}, - {312: 4655}, - {2274, 2274, 2274, 2274, 2274, 2274, 2274, 2274, 2274, 2274, 2274, 2274, 2274, 2274, 2274, 49: 2274, 472: 2274, 476: 2274, 2274, 2274, 2274, 484: 2274, 488: 2274, 492: 2274, 581: 2274, 590: 2274, 2274, 642: 2274, 2274, 2274, 2274}, - {2271, 2271, 2271, 2271, 2271, 2271, 4600, 4606, 4594, 2271, 2271, 2271, 4598, 4607, 4605, 49: 2271, 472: 4599, 476: 4089, 4088, 2279, 4597, 484: 4604, 488: 2271, 492: 4593, 581: 2316, 590: 2406, 4591, 642: 4596, 4589, 4611, 4608, 810: 4592, 833: 4601, 910: 4603, 928: 4654, 937: 4602, 956: 4595}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 661: 3921, 2762, 2763, 2761, 737: 4612}, + {593: 4705}, + {481: 4698}, + {2310, 2310, 2310, 2310, 2310, 2310, 2310, 2310, 2310, 2310, 2310, 2310, 2310, 2310, 2310, 50: 2310, 475: 2310, 479: 2310, 2310, 2310, 2310, 487: 2310, 491: 2310, 495: 2310, 584: 2310, 593: 2310, 2310, 645: 2310, 2310, 2310, 2310}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 478: 3516, 533: 3515, 664: 3517, 2785, 2786, 2784, 742: 3514, 876: 4697}, + {182: 4695, 209: 4696, 482: 4694, 1198: 4693}, // 2075 - {2211, 2211, 2211, 2211, 2211, 2211, 2211, 2211, 2211, 2211, 2211, 2211, 2211, 2211, 2211, 49: 2211, 472: 2211, 4614, 476: 2211, 2211, 2211, 2211, 484: 2211, 488: 2211, 492: 2211, 581: 2211, 590: 2211, 2211, 642: 2211, 2211, 2211, 2211, 648: 2211, 1233: 4613}, - {2261, 2261, 2261, 2261, 2261, 2261, 2261, 2261, 2261, 2261, 2261, 2261, 2261, 2261, 2261, 49: 2261, 472: 2261, 476: 2261, 2261, 2261, 2261, 484: 2261, 488: 2261, 492: 2261, 581: 2261, 590: 2261, 2261, 642: 2261, 2261, 2261, 2261, 648: 4629, 1250: 4630, 4631}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 473: 4618, 661: 4143, 2762, 2763, 2761, 744: 4617, 827: 4616, 836: 4615}, - {9: 4627, 49: 4626}, - {9: 2209, 49: 2209}, + {188: 4692, 250: 4691, 482: 4690, 1320: 4689}, + {2305, 2305, 2305, 2305, 2305, 2305, 2305, 2305, 2305, 2305, 2305, 2305, 2305, 2305, 2305, 50: 2305, 475: 2305, 4683, 479: 2305, 2305, 2305, 2305, 487: 2305, 491: 2305, 495: 2305, 584: 2305, 593: 2305, 2305, 645: 2305, 2305, 2305, 2305, 1188: 4682}, + {314: 4681}, + {2291, 2291, 2291, 2291, 2291, 2291, 2291, 2291, 2291, 2291, 2291, 2291, 2291, 2291, 2291, 50: 2291, 475: 2291, 479: 2291, 2291, 2291, 2291, 487: 2291, 491: 2291, 495: 2291, 584: 2291, 593: 2291, 2291, 645: 2291, 2291, 2291, 2291}, + {2288, 2288, 2288, 2288, 2288, 2288, 4626, 4632, 4620, 2288, 2288, 2288, 4624, 4633, 4631, 50: 2288, 475: 4625, 479: 4115, 4114, 2296, 4623, 487: 4630, 491: 2288, 495: 4619, 584: 2333, 593: 2426, 4617, 645: 4622, 4615, 4637, 4634, 815: 4618, 837: 4627, 915: 4629, 933: 4680, 942: 4628, 961: 4621}, // 2080 - {9: 288, 49: 288, 473: 3826, 529: 288, 531: 288, 764: 3827, 789: 4624}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 2840, 2788, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 2869, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 2874, 2801, 2766, 2783, 2948, 3031, 3020, 2818, 2830, 2941, 2942, 2937, 2895, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 2876, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 2760, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 2880, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 2799, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 2866, 2865, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 2936, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 2824, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 2751, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 2882, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 2752, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3144, 2878, 3145, 3146, 2777, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3159, 3160, 3211, 3210, 3057, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 2918, 2935, 3058, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3177, 3178, 3179, 2931, 3130, 3189, 3190, 3201, 3185, 3186, 3187, 3220, 2877, 473: 3260, 475: 3239, 3258, 2755, 479: 3268, 482: 3272, 3276, 485: 3257, 3256, 3295, 492: 3230, 495: 3269, 504: 3275, 3293, 508: 3234, 530: 3264, 564: 3271, 567: 3294, 2753, 570: 3277, 3229, 3231, 3233, 3232, 3261, 3237, 3251, 3242, 3263, 3238, 582: 3270, 3262, 3267, 3273, 3283, 3336, 3284, 3285, 592: 3236, 3314, 595: 3254, 3255, 3309, 3310, 3311, 3312, 3313, 3265, 3291, 3296, 3306, 3307, 3300, 3315, 3316, 3317, 3301, 3319, 3320, 3302, 3318, 3297, 3305, 3303, 3289, 3321, 3322, 3266, 3326, 3278, 3279, 3282, 3325, 3331, 3330, 3332, 3329, 3333, 3328, 3327, 3324, 3274, 3323, 3281, 3280, 3286, 3287, 648: 2756, 661: 3244, 2762, 2763, 2761, 709: 3259, 3335, 3245, 3250, 3235, 3308, 3248, 3246, 3247, 3288, 3299, 3298, 3292, 3290, 3304, 3243, 3253, 3334, 3252, 3249, 2759, 2758, 2757, 4619}, - {49: 4620, 507: 3345, 509: 3343, 3344, 3342, 3340, 734: 3341, 3339}, - {9: 1300, 49: 1300, 529: 4623, 531: 4622, 949: 4621}, - {9: 2206, 49: 2206}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 664: 3947, 2785, 2786, 2784, 740: 4638}, + {2228, 2228, 2228, 2228, 2228, 2228, 2228, 2228, 2228, 2228, 2228, 2228, 2228, 2228, 2228, 50: 2228, 475: 2228, 4640, 479: 2228, 2228, 2228, 2228, 487: 2228, 491: 2228, 495: 2228, 584: 2228, 593: 2228, 2228, 645: 2228, 2228, 2228, 2228, 651: 2228, 1241: 4639}, + {2278, 2278, 2278, 2278, 2278, 2278, 2278, 2278, 2278, 2278, 2278, 2278, 2278, 2278, 2278, 50: 2278, 475: 2278, 479: 2278, 2278, 2278, 2278, 487: 2278, 491: 2278, 495: 2278, 584: 2278, 593: 2278, 2278, 645: 2278, 2278, 2278, 2278, 651: 4655, 1258: 4656, 4657}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 476: 4644, 664: 4169, 2785, 2786, 2784, 748: 4643, 831: 4642, 841: 4641}, + {9: 4653, 50: 4652}, // 2085 - {1299, 1299, 1299, 1299, 1299, 1299, 9: 1299, 49: 1299, 488: 1299}, - {1298, 1298, 1298, 1298, 1298, 1298, 9: 1298, 49: 1298, 488: 1298}, - {9: 1300, 49: 1300, 529: 4623, 531: 4622, 949: 4625}, - {9: 2207, 49: 2207}, - {2210, 2210, 2210, 2210, 2210, 2210, 2210, 2210, 2210, 2210, 2210, 2210, 2210, 2210, 2210, 49: 2210, 472: 2210, 476: 2210, 2210, 2210, 2210, 484: 2210, 488: 2210, 492: 2210, 581: 2210, 590: 2210, 2210, 642: 2210, 2210, 2210, 2210, 648: 2210}, + {9: 2226, 50: 2226}, + {9: 298, 50: 298, 476: 3852, 532: 298, 534: 298, 768: 3853, 794: 4650}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 2864, 2812, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 2893, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 2898, 2825, 2789, 2807, 2972, 3055, 3044, 2842, 2854, 2965, 2966, 2961, 2919, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 2900, 2885, 2881, 2973, 2997, 2783, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 2904, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 2823, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 2889, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 2890, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 2960, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 2848, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 2774, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 2906, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 2775, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3170, 2902, 3171, 3172, 2801, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3185, 3186, 3237, 3236, 3081, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 2942, 2959, 3082, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3203, 3204, 3205, 2955, 3156, 3215, 3216, 3227, 3211, 3212, 3213, 3246, 2901, 476: 3286, 478: 3265, 3284, 2778, 482: 3294, 485: 3298, 3302, 488: 3283, 3282, 3321, 495: 3256, 498: 3295, 507: 3301, 3319, 511: 3260, 533: 3290, 567: 3297, 570: 3320, 2776, 573: 3303, 3255, 3257, 3259, 3258, 3287, 3263, 3277, 3268, 3289, 3264, 585: 3296, 3288, 3293, 3299, 3309, 3362, 3310, 3311, 595: 3262, 3340, 598: 3280, 3281, 3335, 3336, 3337, 3338, 3339, 3291, 3317, 3322, 3332, 3333, 3326, 3341, 3342, 3343, 3327, 3345, 3346, 3328, 3344, 3323, 3331, 3329, 3315, 3347, 3348, 3292, 3352, 3304, 3305, 3308, 3351, 3357, 3356, 3358, 3355, 3359, 3354, 3353, 3350, 3300, 3349, 3307, 3306, 3312, 3313, 651: 2779, 664: 3270, 2785, 2786, 2784, 713: 3285, 3361, 3271, 3276, 3261, 3334, 3274, 3272, 3273, 3314, 3325, 3324, 3318, 3316, 3330, 3269, 3279, 3360, 3278, 3275, 2782, 2781, 2780, 4645}, + {50: 4646, 510: 3371, 512: 3369, 3370, 3368, 3366, 738: 3367, 3365}, + {9: 1314, 50: 1314, 532: 4649, 534: 4648, 954: 4647}, // 2090 - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 473: 4618, 661: 4143, 2762, 2763, 2761, 744: 4617, 827: 4628}, - {9: 2208, 49: 2208}, - {211: 4651, 369: 4652, 387: 4653}, - {2260, 2260, 2260, 2260, 2260, 2260, 2260, 2260, 2260, 2260, 2260, 2260, 2260, 2260, 2260, 49: 2260, 472: 2260, 476: 2260, 2260, 2260, 2260, 484: 2260, 488: 2260, 492: 2260, 581: 2260, 590: 2260, 2260, 642: 2260, 2260, 2260, 2260}, - {2256, 2256, 2256, 2256, 2256, 2256, 2256, 2256, 2256, 2256, 2256, 2256, 2256, 2256, 2256, 49: 2256, 472: 4633, 476: 2256, 2256, 2256, 2256, 484: 2256, 488: 2256, 492: 2256, 581: 2256, 590: 2256, 2256, 642: 2256, 2256, 2256, 2256, 1087: 4634, 4635, 1259: 4632}, + {9: 2223, 50: 2223}, + {1313, 1313, 1313, 1313, 1313, 1313, 9: 1313, 50: 1313, 491: 1313}, + {1312, 1312, 1312, 1312, 1312, 1312, 9: 1312, 50: 1312, 491: 1312}, + {9: 1314, 50: 1314, 532: 4649, 534: 4648, 954: 4651}, + {9: 2224, 50: 2224}, // 2095 - {2259, 2259, 2259, 2259, 2259, 2259, 2259, 2259, 2259, 2259, 2259, 2259, 2259, 2259, 2259, 49: 2259, 472: 2259, 476: 2259, 2259, 2259, 2259, 484: 2259, 488: 2259, 492: 2259, 581: 2259, 590: 2259, 2259, 642: 2259, 2259, 2259, 2259}, - {654: 4649, 739: 4638}, - {2255, 2255, 2255, 2255, 2255, 2255, 2255, 2255, 2255, 2255, 2255, 2255, 2255, 2255, 2255, 49: 2255, 472: 4647, 476: 2255, 2255, 2255, 2255, 484: 2255, 488: 2255, 492: 2255, 581: 2255, 590: 2255, 2255, 642: 2255, 2255, 2255, 2255, 1088: 4648}, - {2254, 2254, 2254, 2254, 2254, 2254, 2254, 2254, 2254, 2254, 2254, 2254, 2254, 2254, 2254, 49: 2254, 472: 4636, 476: 2254, 2254, 2254, 2254, 484: 2254, 488: 2254, 492: 2254, 581: 2254, 590: 2254, 2254, 642: 2254, 2254, 2254, 2254, 1087: 4637}, - {739: 4638}, + {2227, 2227, 2227, 2227, 2227, 2227, 2227, 2227, 2227, 2227, 2227, 2227, 2227, 2227, 2227, 50: 2227, 475: 2227, 479: 2227, 2227, 2227, 2227, 487: 2227, 491: 2227, 495: 2227, 584: 2227, 593: 2227, 2227, 645: 2227, 2227, 2227, 2227, 651: 2227}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 476: 4644, 664: 4169, 2785, 2786, 2784, 748: 4643, 831: 4654}, + {9: 2225, 50: 2225}, + {213: 4677, 371: 4678, 389: 4679}, + {2277, 2277, 2277, 2277, 2277, 2277, 2277, 2277, 2277, 2277, 2277, 2277, 2277, 2277, 2277, 50: 2277, 475: 2277, 479: 2277, 2277, 2277, 2277, 487: 2277, 491: 2277, 495: 2277, 584: 2277, 593: 2277, 2277, 645: 2277, 2277, 2277, 2277}, // 2100 - {2252, 2252, 2252, 2252, 2252, 2252, 2252, 2252, 2252, 2252, 2252, 2252, 2252, 2252, 2252, 49: 2252, 472: 2252, 476: 2252, 2252, 2252, 2252, 484: 2252, 488: 2252, 492: 2252, 581: 2252, 590: 2252, 2252, 642: 2252, 2252, 2252, 2252}, - {72: 4643, 506: 4642, 670: 4641, 672: 4640, 1111: 4639}, - {2258, 2258, 2258, 2258, 2258, 2258, 2258, 2258, 2258, 2258, 2258, 2258, 2258, 2258, 2258, 49: 2258, 472: 2258, 476: 2258, 2258, 2258, 2258, 484: 2258, 488: 2258, 492: 2258, 581: 2258, 590: 2258, 2258, 642: 2258, 2258, 2258, 2258}, - {2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 2251, 49: 2251, 472: 2251, 476: 2251, 2251, 2251, 2251, 484: 2251, 488: 2251, 492: 2251, 581: 2251, 590: 2251, 2251, 642: 2251, 2251, 2251, 2251}, - {2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 2250, 49: 2250, 472: 2250, 476: 2250, 2250, 2250, 2250, 484: 2250, 488: 2250, 492: 2250, 581: 2250, 590: 2250, 2250, 642: 2250, 2250, 2250, 2250}, + {2273, 2273, 2273, 2273, 2273, 2273, 2273, 2273, 2273, 2273, 2273, 2273, 2273, 2273, 2273, 50: 2273, 475: 4659, 479: 2273, 2273, 2273, 2273, 487: 2273, 491: 2273, 495: 2273, 584: 2273, 593: 2273, 2273, 645: 2273, 2273, 2273, 2273, 1095: 4660, 4661, 1267: 4658}, + {2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 50: 2276, 475: 2276, 479: 2276, 2276, 2276, 2276, 487: 2276, 491: 2276, 495: 2276, 584: 2276, 593: 2276, 2276, 645: 2276, 2276, 2276, 2276}, + {657: 4675, 743: 4664}, + {2272, 2272, 2272, 2272, 2272, 2272, 2272, 2272, 2272, 2272, 2272, 2272, 2272, 2272, 2272, 50: 2272, 475: 4673, 479: 2272, 2272, 2272, 2272, 487: 2272, 491: 2272, 495: 2272, 584: 2272, 593: 2272, 2272, 645: 2272, 2272, 2272, 2272, 1096: 4674}, + {2271, 2271, 2271, 2271, 2271, 2271, 2271, 2271, 2271, 2271, 2271, 2271, 2271, 2271, 2271, 50: 2271, 475: 4662, 479: 2271, 2271, 2271, 2271, 487: 2271, 491: 2271, 495: 2271, 584: 2271, 593: 2271, 2271, 645: 2271, 2271, 2271, 2271, 1095: 4663}, // 2105 - {479: 4646, 492: 4645}, - {308: 4644}, - {2248, 2248, 2248, 2248, 2248, 2248, 2248, 2248, 2248, 2248, 2248, 2248, 2248, 2248, 2248, 49: 2248, 472: 2248, 476: 2248, 2248, 2248, 2248, 484: 2248, 488: 2248, 492: 2248, 581: 2248, 590: 2248, 2248, 642: 2248, 2248, 2248, 2248}, - {2249, 2249, 2249, 2249, 2249, 2249, 2249, 2249, 2249, 2249, 2249, 2249, 2249, 2249, 2249, 49: 2249, 472: 2249, 476: 2249, 2249, 2249, 2249, 484: 2249, 488: 2249, 492: 2249, 581: 2249, 590: 2249, 2249, 642: 2249, 2249, 2249, 2249}, - {2247, 2247, 2247, 2247, 2247, 2247, 2247, 2247, 2247, 2247, 2247, 2247, 2247, 2247, 2247, 49: 2247, 472: 2247, 476: 2247, 2247, 2247, 2247, 484: 2247, 488: 2247, 492: 2247, 581: 2247, 590: 2247, 2247, 642: 2247, 2247, 2247, 2247}, + {743: 4664}, + {2269, 2269, 2269, 2269, 2269, 2269, 2269, 2269, 2269, 2269, 2269, 2269, 2269, 2269, 2269, 50: 2269, 475: 2269, 479: 2269, 2269, 2269, 2269, 487: 2269, 491: 2269, 495: 2269, 584: 2269, 593: 2269, 2269, 645: 2269, 2269, 2269, 2269}, + {73: 4669, 509: 4668, 673: 4667, 675: 4666, 1119: 4665}, + {2275, 2275, 2275, 2275, 2275, 2275, 2275, 2275, 2275, 2275, 2275, 2275, 2275, 2275, 2275, 50: 2275, 475: 2275, 479: 2275, 2275, 2275, 2275, 487: 2275, 491: 2275, 495: 2275, 584: 2275, 593: 2275, 2275, 645: 2275, 2275, 2275, 2275}, + {2268, 2268, 2268, 2268, 2268, 2268, 2268, 2268, 2268, 2268, 2268, 2268, 2268, 2268, 2268, 50: 2268, 475: 2268, 479: 2268, 2268, 2268, 2268, 487: 2268, 491: 2268, 495: 2268, 584: 2268, 593: 2268, 2268, 645: 2268, 2268, 2268, 2268}, // 2110 - {654: 4649}, - {2253, 2253, 2253, 2253, 2253, 2253, 2253, 2253, 2253, 2253, 2253, 2253, 2253, 2253, 2253, 49: 2253, 472: 2253, 476: 2253, 2253, 2253, 2253, 484: 2253, 488: 2253, 492: 2253, 581: 2253, 590: 2253, 2253, 642: 2253, 2253, 2253, 2253}, - {72: 4643, 506: 4642, 670: 4641, 672: 4640, 1111: 4650}, - {2257, 2257, 2257, 2257, 2257, 2257, 2257, 2257, 2257, 2257, 2257, 2257, 2257, 2257, 2257, 49: 2257, 472: 2257, 476: 2257, 2257, 2257, 2257, 484: 2257, 488: 2257, 492: 2257, 581: 2257, 590: 2257, 2257, 642: 2257, 2257, 2257, 2257}, - {2264, 2264, 2264, 2264, 2264, 2264, 2264, 2264, 2264, 2264, 2264, 2264, 2264, 2264, 2264, 49: 2264, 472: 2264, 476: 2264, 2264, 2264, 2264, 484: 2264, 488: 2264, 492: 2264, 581: 2264, 590: 2264, 2264, 642: 2264, 2264, 2264, 2264}, + {2267, 2267, 2267, 2267, 2267, 2267, 2267, 2267, 2267, 2267, 2267, 2267, 2267, 2267, 2267, 50: 2267, 475: 2267, 479: 2267, 2267, 2267, 2267, 487: 2267, 491: 2267, 495: 2267, 584: 2267, 593: 2267, 2267, 645: 2267, 2267, 2267, 2267}, + {482: 4672, 495: 4671}, + {310: 4670}, + {2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 2265, 50: 2265, 475: 2265, 479: 2265, 2265, 2265, 2265, 487: 2265, 491: 2265, 495: 2265, 584: 2265, 593: 2265, 2265, 645: 2265, 2265, 2265, 2265}, + {2266, 2266, 2266, 2266, 2266, 2266, 2266, 2266, 2266, 2266, 2266, 2266, 2266, 2266, 2266, 50: 2266, 475: 2266, 479: 2266, 2266, 2266, 2266, 487: 2266, 491: 2266, 495: 2266, 584: 2266, 593: 2266, 2266, 645: 2266, 2266, 2266, 2266}, // 2115 - {2263, 2263, 2263, 2263, 2263, 2263, 2263, 2263, 2263, 2263, 2263, 2263, 2263, 2263, 2263, 49: 2263, 472: 2263, 476: 2263, 2263, 2263, 2263, 484: 2263, 488: 2263, 492: 2263, 581: 2263, 590: 2263, 2263, 642: 2263, 2263, 2263, 2263}, - {2262, 2262, 2262, 2262, 2262, 2262, 2262, 2262, 2262, 2262, 2262, 2262, 2262, 2262, 2262, 49: 2262, 472: 2262, 476: 2262, 2262, 2262, 2262, 484: 2262, 488: 2262, 492: 2262, 581: 2262, 590: 2262, 2262, 642: 2262, 2262, 2262, 2262}, - {2273, 2273, 2273, 2273, 2273, 2273, 2273, 2273, 2273, 2273, 2273, 2273, 2273, 2273, 2273, 49: 2273, 472: 2273, 476: 2273, 2273, 2273, 2273, 484: 2273, 488: 2273, 492: 2273, 581: 2273, 590: 2273, 2273, 642: 2273, 2273, 2273, 2273}, - {478: 2278}, - {2289, 2289, 2289, 2289, 2289, 2289, 2289, 2289, 2289, 2289, 2289, 2289, 2289, 2289, 2289, 49: 2289, 472: 2289, 476: 2289, 2289, 2289, 2289, 484: 2289, 488: 2289, 492: 2289, 581: 2289, 590: 2289, 2289, 642: 2289, 2289, 2289, 2289}, + {2264, 2264, 2264, 2264, 2264, 2264, 2264, 2264, 2264, 2264, 2264, 2264, 2264, 2264, 2264, 50: 2264, 475: 2264, 479: 2264, 2264, 2264, 2264, 487: 2264, 491: 2264, 495: 2264, 584: 2264, 593: 2264, 2264, 645: 2264, 2264, 2264, 2264}, + {657: 4675}, + {2270, 2270, 2270, 2270, 2270, 2270, 2270, 2270, 2270, 2270, 2270, 2270, 2270, 2270, 2270, 50: 2270, 475: 2270, 479: 2270, 2270, 2270, 2270, 487: 2270, 491: 2270, 495: 2270, 584: 2270, 593: 2270, 2270, 645: 2270, 2270, 2270, 2270}, + {73: 4669, 509: 4668, 673: 4667, 675: 4666, 1119: 4676}, + {2274, 2274, 2274, 2274, 2274, 2274, 2274, 2274, 2274, 2274, 2274, 2274, 2274, 2274, 2274, 50: 2274, 475: 2274, 479: 2274, 2274, 2274, 2274, 487: 2274, 491: 2274, 495: 2274, 584: 2274, 593: 2274, 2274, 645: 2274, 2274, 2274, 2274}, // 2120 - {508: 2736, 733: 2735, 741: 4658}, - {9: 4660, 49: 4659}, - {2287, 2287, 2287, 2287, 2287, 2287, 2287, 2287, 2287, 2287, 2287, 2287, 2287, 2287, 2287, 49: 2287, 472: 2287, 476: 2287, 2287, 2287, 2287, 484: 2287, 488: 2287, 492: 2287, 581: 2287, 590: 2287, 2287, 642: 2287, 2287, 2287, 2287}, - {508: 2736, 733: 2735, 741: 4661}, - {49: 4662}, + {2281, 2281, 2281, 2281, 2281, 2281, 2281, 2281, 2281, 2281, 2281, 2281, 2281, 2281, 2281, 50: 2281, 475: 2281, 479: 2281, 2281, 2281, 2281, 487: 2281, 491: 2281, 495: 2281, 584: 2281, 593: 2281, 2281, 645: 2281, 2281, 2281, 2281}, + {2280, 2280, 2280, 2280, 2280, 2280, 2280, 2280, 2280, 2280, 2280, 2280, 2280, 2280, 2280, 50: 2280, 475: 2280, 479: 2280, 2280, 2280, 2280, 487: 2280, 491: 2280, 495: 2280, 584: 2280, 593: 2280, 2280, 645: 2280, 2280, 2280, 2280}, + {2279, 2279, 2279, 2279, 2279, 2279, 2279, 2279, 2279, 2279, 2279, 2279, 2279, 2279, 2279, 50: 2279, 475: 2279, 479: 2279, 2279, 2279, 2279, 487: 2279, 491: 2279, 495: 2279, 584: 2279, 593: 2279, 2279, 645: 2279, 2279, 2279, 2279}, + {2290, 2290, 2290, 2290, 2290, 2290, 2290, 2290, 2290, 2290, 2290, 2290, 2290, 2290, 2290, 50: 2290, 475: 2290, 479: 2290, 2290, 2290, 2290, 487: 2290, 491: 2290, 495: 2290, 584: 2290, 593: 2290, 2290, 645: 2290, 2290, 2290, 2290}, + {481: 2295}, // 2125 - {2286, 2286, 2286, 2286, 2286, 2286, 2286, 2286, 2286, 2286, 2286, 2286, 2286, 2286, 2286, 49: 2286, 472: 2286, 476: 2286, 2286, 2286, 2286, 484: 2286, 488: 2286, 492: 2286, 581: 2286, 590: 2286, 2286, 642: 2286, 2286, 2286, 2286}, - {2290, 2290, 2290, 2290, 2290, 2290, 2290, 2290, 2290, 2290, 2290, 2290, 2290, 2290, 2290, 49: 2290, 472: 2290, 476: 2290, 2290, 2290, 2290, 484: 2290, 488: 2290, 492: 2290, 581: 2290, 590: 2290, 2290, 642: 2290, 2290, 2290, 2290}, - {2285, 2285, 2285, 2285, 2285, 2285, 2285, 2285, 2285, 2285, 2285, 2285, 2285, 2285, 2285, 49: 2285, 472: 2285, 476: 2285, 2285, 2285, 2285, 484: 2285, 488: 2285, 492: 2285, 581: 2285, 590: 2285, 2285, 642: 2285, 2285, 2285, 2285}, - {2284, 2284, 2284, 2284, 2284, 2284, 2284, 2284, 2284, 2284, 2284, 2284, 2284, 2284, 2284, 49: 2284, 472: 2284, 476: 2284, 2284, 2284, 2284, 484: 2284, 488: 2284, 492: 2284, 581: 2284, 590: 2284, 2284, 642: 2284, 2284, 2284, 2284}, - {2283, 2283, 2283, 2283, 2283, 2283, 2283, 2283, 2283, 2283, 2283, 2283, 2283, 2283, 2283, 49: 2283, 472: 2283, 476: 2283, 2283, 2283, 2283, 484: 2283, 488: 2283, 492: 2283, 581: 2283, 590: 2283, 2283, 642: 2283, 2283, 2283, 2283}, + {2306, 2306, 2306, 2306, 2306, 2306, 2306, 2306, 2306, 2306, 2306, 2306, 2306, 2306, 2306, 50: 2306, 475: 2306, 479: 2306, 2306, 2306, 2306, 487: 2306, 491: 2306, 495: 2306, 584: 2306, 593: 2306, 2306, 645: 2306, 2306, 2306, 2306}, + {511: 2759, 737: 2758, 745: 4684}, + {9: 4686, 50: 4685}, + {2304, 2304, 2304, 2304, 2304, 2304, 2304, 2304, 2304, 2304, 2304, 2304, 2304, 2304, 2304, 50: 2304, 475: 2304, 479: 2304, 2304, 2304, 2304, 487: 2304, 491: 2304, 495: 2304, 584: 2304, 593: 2304, 2304, 645: 2304, 2304, 2304, 2304}, + {511: 2759, 737: 2758, 745: 4687}, // 2130 - {2291, 2291, 2291, 2291, 2291, 2291, 2291, 2291, 2291, 2291, 2291, 2291, 2291, 2291, 2291, 49: 2291, 472: 2291, 476: 2291, 2291, 2291, 2291, 484: 2291, 488: 2291, 492: 2291, 581: 2291, 590: 2291, 2291, 642: 2291, 2291, 2291, 2291}, - {2282, 2282, 2282, 2282, 2282, 2282, 2282, 2282, 2282, 2282, 2282, 2282, 2282, 2282, 2282, 49: 2282, 472: 2282, 476: 2282, 2282, 2282, 2282, 484: 2282, 488: 2282, 492: 2282, 581: 2282, 590: 2282, 2282, 642: 2282, 2282, 2282, 2282}, - {2281, 2281, 2281, 2281, 2281, 2281, 2281, 2281, 2281, 2281, 2281, 2281, 2281, 2281, 2281, 49: 2281, 472: 2281, 476: 2281, 2281, 2281, 2281, 484: 2281, 488: 2281, 492: 2281, 581: 2281, 590: 2281, 2281, 642: 2281, 2281, 2281, 2281}, - {2280, 2280, 2280, 2280, 2280, 2280, 2280, 2280, 2280, 2280, 2280, 2280, 2280, 2280, 2280, 49: 2280, 472: 2280, 476: 2280, 2280, 2280, 2280, 484: 2280, 488: 2280, 492: 2280, 581: 2280, 590: 2280, 2280, 642: 2280, 2280, 2280, 2280}, - {2292, 2292, 2292, 2292, 2292, 2292, 2292, 2292, 2292, 2292, 2292, 2292, 2292, 2292, 2292, 49: 2292, 472: 2292, 476: 2292, 2292, 2292, 2292, 484: 2292, 488: 2292, 492: 2292, 581: 2292, 590: 2292, 2292, 642: 2292, 2292, 2292, 2292}, + {50: 4688}, + {2303, 2303, 2303, 2303, 2303, 2303, 2303, 2303, 2303, 2303, 2303, 2303, 2303, 2303, 2303, 50: 2303, 475: 2303, 479: 2303, 2303, 2303, 2303, 487: 2303, 491: 2303, 495: 2303, 584: 2303, 593: 2303, 2303, 645: 2303, 2303, 2303, 2303}, + {2307, 2307, 2307, 2307, 2307, 2307, 2307, 2307, 2307, 2307, 2307, 2307, 2307, 2307, 2307, 50: 2307, 475: 2307, 479: 2307, 2307, 2307, 2307, 487: 2307, 491: 2307, 495: 2307, 584: 2307, 593: 2307, 2307, 645: 2307, 2307, 2307, 2307}, + {2302, 2302, 2302, 2302, 2302, 2302, 2302, 2302, 2302, 2302, 2302, 2302, 2302, 2302, 2302, 50: 2302, 475: 2302, 479: 2302, 2302, 2302, 2302, 487: 2302, 491: 2302, 495: 2302, 584: 2302, 593: 2302, 2302, 645: 2302, 2302, 2302, 2302}, + {2301, 2301, 2301, 2301, 2301, 2301, 2301, 2301, 2301, 2301, 2301, 2301, 2301, 2301, 2301, 50: 2301, 475: 2301, 479: 2301, 2301, 2301, 2301, 487: 2301, 491: 2301, 495: 2301, 584: 2301, 593: 2301, 2301, 645: 2301, 2301, 2301, 2301}, // 2135 - {473: 4673}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 2840, 2788, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 2869, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 2874, 2801, 2766, 2783, 2948, 3031, 3020, 2818, 2830, 2941, 2942, 2937, 2895, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 2876, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 2760, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 2880, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 2799, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 2866, 2865, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 2936, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 2824, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 2751, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 2882, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 2752, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3144, 2878, 3145, 3146, 2777, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3159, 3160, 3211, 3210, 3057, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 2918, 2935, 3058, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3177, 3178, 3179, 2931, 3130, 3189, 3190, 3201, 3185, 3186, 3187, 3220, 2877, 473: 3260, 475: 3239, 3258, 2755, 479: 3268, 482: 3272, 3276, 485: 3257, 3256, 3295, 492: 3230, 495: 3269, 504: 3275, 3293, 508: 3234, 530: 3264, 564: 3271, 567: 3294, 2753, 570: 3277, 3229, 3231, 3233, 3232, 3261, 3237, 3251, 3242, 3263, 3238, 582: 3270, 3262, 3267, 3273, 3283, 3336, 3284, 3285, 592: 3236, 3314, 595: 3254, 3255, 3309, 3310, 3311, 3312, 3313, 3265, 3291, 3296, 3306, 3307, 3300, 3315, 3316, 3317, 3301, 3319, 3320, 3302, 3318, 3297, 3305, 3303, 3289, 3321, 3322, 3266, 3326, 3278, 3279, 3282, 3325, 3331, 3330, 3332, 3329, 3333, 3328, 3327, 3324, 3274, 3323, 3281, 3280, 3286, 3287, 648: 2756, 661: 3244, 2762, 2763, 2761, 709: 3259, 3335, 3245, 3250, 3235, 3308, 3248, 3246, 3247, 3288, 3299, 3298, 3292, 3290, 3304, 3243, 3253, 3334, 3252, 3249, 2759, 2758, 2757, 4674}, - {49: 4675, 507: 3345, 509: 3343, 3344, 3342, 3340, 734: 3341, 3339}, - {2277, 2277, 2277, 2277, 2277, 2277, 2277, 2277, 2277, 2277, 2277, 2277, 2277, 2277, 2277, 49: 2277, 472: 2277, 476: 2277, 2277, 2277, 2277, 484: 2277, 488: 2277, 492: 2277, 581: 2277, 590: 2277, 2277, 642: 2277, 2277, 2277, 2277, 1312: 4678, 1342: 4677, 4676}, - {2294, 2294, 2294, 2294, 2294, 2294, 2294, 2294, 2294, 2294, 2294, 2294, 2294, 2294, 2294, 49: 2294, 472: 2294, 476: 2294, 2294, 2294, 2294, 484: 2294, 488: 2294, 492: 2294, 581: 2294, 590: 2294, 2294, 642: 2294, 2294, 2294, 2294}, + {2300, 2300, 2300, 2300, 2300, 2300, 2300, 2300, 2300, 2300, 2300, 2300, 2300, 2300, 2300, 50: 2300, 475: 2300, 479: 2300, 2300, 2300, 2300, 487: 2300, 491: 2300, 495: 2300, 584: 2300, 593: 2300, 2300, 645: 2300, 2300, 2300, 2300}, + {2308, 2308, 2308, 2308, 2308, 2308, 2308, 2308, 2308, 2308, 2308, 2308, 2308, 2308, 2308, 50: 2308, 475: 2308, 479: 2308, 2308, 2308, 2308, 487: 2308, 491: 2308, 495: 2308, 584: 2308, 593: 2308, 2308, 645: 2308, 2308, 2308, 2308}, + {2299, 2299, 2299, 2299, 2299, 2299, 2299, 2299, 2299, 2299, 2299, 2299, 2299, 2299, 2299, 50: 2299, 475: 2299, 479: 2299, 2299, 2299, 2299, 487: 2299, 491: 2299, 495: 2299, 584: 2299, 593: 2299, 2299, 645: 2299, 2299, 2299, 2299}, + {2298, 2298, 2298, 2298, 2298, 2298, 2298, 2298, 2298, 2298, 2298, 2298, 2298, 2298, 2298, 50: 2298, 475: 2298, 479: 2298, 2298, 2298, 2298, 487: 2298, 491: 2298, 495: 2298, 584: 2298, 593: 2298, 2298, 645: 2298, 2298, 2298, 2298}, + {2297, 2297, 2297, 2297, 2297, 2297, 2297, 2297, 2297, 2297, 2297, 2297, 2297, 2297, 2297, 50: 2297, 475: 2297, 479: 2297, 2297, 2297, 2297, 487: 2297, 491: 2297, 495: 2297, 584: 2297, 593: 2297, 2297, 645: 2297, 2297, 2297, 2297}, // 2140 - {2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 2276, 49: 2276, 472: 2276, 476: 2276, 2276, 2276, 2276, 484: 2276, 488: 2276, 492: 2276, 581: 2276, 590: 2276, 2276, 642: 2276, 2276, 2276, 2276}, - {2275, 2275, 2275, 2275, 2275, 2275, 2275, 2275, 2275, 2275, 2275, 2275, 2275, 2275, 2275, 49: 2275, 472: 2275, 476: 2275, 2275, 2275, 2275, 484: 2275, 488: 2275, 492: 2275, 581: 2275, 590: 2275, 2275, 642: 2275, 2275, 2275, 2275}, - {473: 4680}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 2840, 2788, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 2869, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 2874, 2801, 2766, 2783, 2948, 3031, 3020, 2818, 2830, 2941, 2942, 2937, 2895, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 2876, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 2760, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 2880, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 2799, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 2866, 2865, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 2936, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 2824, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 2751, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 2882, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 2752, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3144, 2878, 3145, 3146, 2777, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3159, 3160, 3211, 3210, 3057, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 2918, 2935, 3058, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3177, 3178, 3179, 2931, 3130, 3189, 3190, 3201, 3185, 3186, 3187, 3220, 2877, 473: 3260, 475: 3239, 3258, 2755, 479: 3268, 482: 3272, 3276, 485: 3257, 3256, 3295, 492: 3230, 495: 3269, 504: 3275, 3293, 508: 3234, 530: 3264, 564: 3271, 567: 3294, 2753, 570: 3277, 3229, 3231, 3233, 3232, 3261, 3237, 3251, 3242, 3263, 3238, 582: 3270, 3262, 3267, 3273, 3283, 3336, 3284, 3285, 592: 3236, 3314, 595: 3254, 3255, 3309, 3310, 3311, 3312, 3313, 3265, 3291, 3296, 3306, 3307, 3300, 3315, 3316, 3317, 3301, 3319, 3320, 3302, 3318, 3297, 3305, 3303, 3289, 3321, 3322, 3266, 3326, 3278, 3279, 3282, 3325, 3331, 3330, 3332, 3329, 3333, 3328, 3327, 3324, 3274, 3323, 3281, 3280, 3286, 3287, 648: 2756, 661: 3244, 2762, 2763, 2761, 709: 3259, 3335, 3245, 3250, 3235, 3308, 3248, 3246, 3247, 3288, 3299, 3298, 3292, 3290, 3304, 3243, 3253, 3334, 3252, 3249, 2759, 2758, 2757, 4681}, - {49: 4682, 507: 3345, 509: 3343, 3344, 3342, 3340, 734: 3341, 3339}, + {2309, 2309, 2309, 2309, 2309, 2309, 2309, 2309, 2309, 2309, 2309, 2309, 2309, 2309, 2309, 50: 2309, 475: 2309, 479: 2309, 2309, 2309, 2309, 487: 2309, 491: 2309, 495: 2309, 584: 2309, 593: 2309, 2309, 645: 2309, 2309, 2309, 2309}, + {476: 4699}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 2864, 2812, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 2893, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 2898, 2825, 2789, 2807, 2972, 3055, 3044, 2842, 2854, 2965, 2966, 2961, 2919, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 2900, 2885, 2881, 2973, 2997, 2783, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 2904, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 2823, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 2889, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 2890, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 2960, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 2848, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 2774, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 2906, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 2775, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3170, 2902, 3171, 3172, 2801, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3185, 3186, 3237, 3236, 3081, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 2942, 2959, 3082, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3203, 3204, 3205, 2955, 3156, 3215, 3216, 3227, 3211, 3212, 3213, 3246, 2901, 476: 3286, 478: 3265, 3284, 2778, 482: 3294, 485: 3298, 3302, 488: 3283, 3282, 3321, 495: 3256, 498: 3295, 507: 3301, 3319, 511: 3260, 533: 3290, 567: 3297, 570: 3320, 2776, 573: 3303, 3255, 3257, 3259, 3258, 3287, 3263, 3277, 3268, 3289, 3264, 585: 3296, 3288, 3293, 3299, 3309, 3362, 3310, 3311, 595: 3262, 3340, 598: 3280, 3281, 3335, 3336, 3337, 3338, 3339, 3291, 3317, 3322, 3332, 3333, 3326, 3341, 3342, 3343, 3327, 3345, 3346, 3328, 3344, 3323, 3331, 3329, 3315, 3347, 3348, 3292, 3352, 3304, 3305, 3308, 3351, 3357, 3356, 3358, 3355, 3359, 3354, 3353, 3350, 3300, 3349, 3307, 3306, 3312, 3313, 651: 2779, 664: 3270, 2785, 2786, 2784, 713: 3285, 3361, 3271, 3276, 3261, 3334, 3274, 3272, 3273, 3314, 3325, 3324, 3318, 3316, 3330, 3269, 3279, 3360, 3278, 3275, 2782, 2781, 2780, 4700}, + {50: 4701, 510: 3371, 512: 3369, 3370, 3368, 3366, 738: 3367, 3365}, + {2294, 2294, 2294, 2294, 2294, 2294, 2294, 2294, 2294, 2294, 2294, 2294, 2294, 2294, 2294, 50: 2294, 475: 2294, 479: 2294, 2294, 2294, 2294, 487: 2294, 491: 2294, 495: 2294, 584: 2294, 593: 2294, 2294, 645: 2294, 2294, 2294, 2294, 1321: 4704, 1351: 4703, 4702}, // 2145 - {2310, 2310, 2310, 2310, 2310, 2310, 2310, 2310, 2310, 2310, 2310, 2310, 2310, 2310, 2310, 49: 2310, 149: 4433, 472: 2310, 476: 4089, 4088, 2310, 2310, 484: 2310, 488: 2310, 492: 2310, 581: 2310, 590: 2310, 2310, 642: 2310, 2310, 2310, 2310, 810: 4683, 934: 4684, 1040: 4685, 1208: 4686}, - {149: 4435, 492: 4687}, - {2309, 2309, 2309, 2309, 2309, 2309, 2309, 2309, 2309, 2309, 2309, 2309, 2309, 2309, 2309, 49: 2309, 472: 2309, 476: 2309, 2309, 2309, 2309, 484: 2309, 488: 2309, 492: 2309, 581: 2309, 590: 2309, 2309, 642: 2309, 2309, 2309, 2309}, - {2307, 2307, 2307, 2307, 2307, 2307, 2307, 2307, 2307, 2307, 2307, 2307, 2307, 2307, 2307, 49: 2307, 472: 2307, 476: 2307, 2307, 2307, 2307, 484: 2307, 488: 2307, 492: 2307, 581: 2307, 590: 2307, 2307, 642: 2307, 2307, 2307, 2307}, - {2295, 2295, 2295, 2295, 2295, 2295, 2295, 2295, 2295, 2295, 2295, 2295, 2295, 2295, 2295, 49: 2295, 472: 2295, 476: 2295, 2295, 2295, 2295, 484: 2295, 488: 2295, 492: 2295, 581: 2295, 590: 2295, 2295, 642: 2295, 2295, 2295, 2295}, + {2311, 2311, 2311, 2311, 2311, 2311, 2311, 2311, 2311, 2311, 2311, 2311, 2311, 2311, 2311, 50: 2311, 475: 2311, 479: 2311, 2311, 2311, 2311, 487: 2311, 491: 2311, 495: 2311, 584: 2311, 593: 2311, 2311, 645: 2311, 2311, 2311, 2311}, + {2293, 2293, 2293, 2293, 2293, 2293, 2293, 2293, 2293, 2293, 2293, 2293, 2293, 2293, 2293, 50: 2293, 475: 2293, 479: 2293, 2293, 2293, 2293, 487: 2293, 491: 2293, 495: 2293, 584: 2293, 593: 2293, 2293, 645: 2293, 2293, 2293, 2293}, + {2292, 2292, 2292, 2292, 2292, 2292, 2292, 2292, 2292, 2292, 2292, 2292, 2292, 2292, 2292, 50: 2292, 475: 2292, 479: 2292, 2292, 2292, 2292, 487: 2292, 491: 2292, 495: 2292, 584: 2292, 593: 2292, 2292, 645: 2292, 2292, 2292, 2292}, + {476: 4706}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 2864, 2812, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 2893, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 2898, 2825, 2789, 2807, 2972, 3055, 3044, 2842, 2854, 2965, 2966, 2961, 2919, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 2900, 2885, 2881, 2973, 2997, 2783, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 2904, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 2823, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 2889, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 2890, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 2960, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 2848, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 2774, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 2906, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 2775, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3170, 2902, 3171, 3172, 2801, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3185, 3186, 3237, 3236, 3081, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 2942, 2959, 3082, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3203, 3204, 3205, 2955, 3156, 3215, 3216, 3227, 3211, 3212, 3213, 3246, 2901, 476: 3286, 478: 3265, 3284, 2778, 482: 3294, 485: 3298, 3302, 488: 3283, 3282, 3321, 495: 3256, 498: 3295, 507: 3301, 3319, 511: 3260, 533: 3290, 567: 3297, 570: 3320, 2776, 573: 3303, 3255, 3257, 3259, 3258, 3287, 3263, 3277, 3268, 3289, 3264, 585: 3296, 3288, 3293, 3299, 3309, 3362, 3310, 3311, 595: 3262, 3340, 598: 3280, 3281, 3335, 3336, 3337, 3338, 3339, 3291, 3317, 3322, 3332, 3333, 3326, 3341, 3342, 3343, 3327, 3345, 3346, 3328, 3344, 3323, 3331, 3329, 3315, 3347, 3348, 3292, 3352, 3304, 3305, 3308, 3351, 3357, 3356, 3358, 3355, 3359, 3354, 3353, 3350, 3300, 3349, 3307, 3306, 3312, 3313, 651: 2779, 664: 3270, 2785, 2786, 2784, 713: 3285, 3361, 3271, 3276, 3261, 3334, 3274, 3272, 3273, 3314, 3325, 3324, 3318, 3316, 3330, 3269, 3279, 3360, 3278, 3275, 2782, 2781, 2780, 4707}, // 2150 - {2308, 2308, 2308, 2308, 2308, 2308, 2308, 2308, 2308, 2308, 2308, 2308, 2308, 2308, 2308, 49: 2308, 472: 2308, 476: 2308, 2308, 2308, 2308, 484: 2308, 488: 2308, 492: 2308, 581: 2308, 590: 2308, 2308, 642: 2308, 2308, 2308, 2308}, - {2296, 2296, 2296, 2296, 2296, 2296, 2296, 2296, 2296, 2296, 2296, 2296, 2296, 2296, 2296, 49: 2296, 472: 2296, 476: 2296, 2296, 2296, 2296, 484: 2296, 488: 2296, 492: 2296, 581: 2296, 590: 2296, 2296, 642: 2296, 2296, 2296, 2296}, - {585: 4696, 4693, 588: 4694, 4695, 946: 4691, 4692, 4690}, - {2297, 2297, 2297, 2297, 2297, 2297, 2297, 2297, 2297, 2297, 2297, 2297, 2297, 2297, 2297, 49: 2297, 472: 2297, 476: 2297, 2297, 2297, 2297, 484: 2297, 488: 2297, 492: 2297, 581: 2297, 590: 2297, 2297, 642: 2297, 2297, 2297, 2297}, - {2237, 2237, 2237, 2237, 2237, 2237, 2237, 2237, 2237, 2237, 2237, 2237, 2237, 2237, 2237, 49: 2237, 472: 2237, 476: 2237, 2237, 2237, 2237, 484: 2237, 488: 2237, 492: 2237, 581: 2237, 590: 2237, 2237, 642: 2237, 2237, 2237, 2237}, + {50: 4708, 510: 3371, 512: 3369, 3370, 3368, 3366, 738: 3367, 3365}, + {2327, 2327, 2327, 2327, 2327, 2327, 2327, 2327, 2327, 2327, 2327, 2327, 2327, 2327, 2327, 50: 2327, 152: 4459, 475: 2327, 479: 4115, 4114, 2327, 2327, 487: 2327, 491: 2327, 495: 2327, 584: 2327, 593: 2327, 2327, 645: 2327, 2327, 2327, 2327, 815: 4709, 939: 4710, 1045: 4711, 1217: 4712}, + {152: 4461, 495: 4713}, + {2326, 2326, 2326, 2326, 2326, 2326, 2326, 2326, 2326, 2326, 2326, 2326, 2326, 2326, 2326, 50: 2326, 475: 2326, 479: 2326, 2326, 2326, 2326, 487: 2326, 491: 2326, 495: 2326, 584: 2326, 593: 2326, 2326, 645: 2326, 2326, 2326, 2326}, + {2324, 2324, 2324, 2324, 2324, 2324, 2324, 2324, 2324, 2324, 2324, 2324, 2324, 2324, 2324, 50: 2324, 475: 2324, 479: 2324, 2324, 2324, 2324, 487: 2324, 491: 2324, 495: 2324, 584: 2324, 593: 2324, 2324, 645: 2324, 2324, 2324, 2324}, // 2155 - {473: 4697}, - {2228, 2228, 2228, 2228, 2228, 2228, 2228, 2228, 2228, 2228, 2228, 2228, 2228, 2228, 2228, 49: 2228, 472: 2228, 2232, 476: 2228, 2228, 2228, 2228, 484: 2228, 488: 2228, 492: 2228, 581: 2228, 590: 2228, 2228, 642: 2228, 2228, 2228, 2228}, - {2227, 2227, 2227, 2227, 2227, 2227, 2227, 2227, 2227, 2227, 2227, 2227, 2227, 2227, 2227, 49: 2227, 472: 2227, 2231, 476: 2227, 2227, 2227, 2227, 484: 2227, 488: 2227, 492: 2227, 581: 2227, 590: 2227, 2227, 642: 2227, 2227, 2227, 2227}, - {2226, 2226, 2226, 2226, 2226, 2226, 2226, 2226, 2226, 2226, 2226, 2226, 2226, 2226, 2226, 49: 2226, 472: 2226, 2230, 476: 2226, 2226, 2226, 2226, 484: 2226, 488: 2226, 492: 2226, 581: 2226, 590: 2226, 2226, 642: 2226, 2226, 2226, 2226}, - {473: 2229}, + {2312, 2312, 2312, 2312, 2312, 2312, 2312, 2312, 2312, 2312, 2312, 2312, 2312, 2312, 2312, 50: 2312, 475: 2312, 479: 2312, 2312, 2312, 2312, 487: 2312, 491: 2312, 495: 2312, 584: 2312, 593: 2312, 2312, 645: 2312, 2312, 2312, 2312}, + {2325, 2325, 2325, 2325, 2325, 2325, 2325, 2325, 2325, 2325, 2325, 2325, 2325, 2325, 2325, 50: 2325, 475: 2325, 479: 2325, 2325, 2325, 2325, 487: 2325, 491: 2325, 495: 2325, 584: 2325, 593: 2325, 2325, 645: 2325, 2325, 2325, 2325}, + {2313, 2313, 2313, 2313, 2313, 2313, 2313, 2313, 2313, 2313, 2313, 2313, 2313, 2313, 2313, 50: 2313, 475: 2313, 479: 2313, 2313, 2313, 2313, 487: 2313, 491: 2313, 495: 2313, 584: 2313, 593: 2313, 2313, 645: 2313, 2313, 2313, 2313}, + {588: 4722, 4719, 591: 4720, 4721, 951: 4717, 4718, 4716}, + {2314, 2314, 2314, 2314, 2314, 2314, 2314, 2314, 2314, 2314, 2314, 2314, 2314, 2314, 2314, 50: 2314, 475: 2314, 479: 2314, 2314, 2314, 2314, 487: 2314, 491: 2314, 495: 2314, 584: 2314, 593: 2314, 2314, 645: 2314, 2314, 2314, 2314}, // 2160 - {49: 4698, 508: 2736, 733: 4699}, - {2236, 2236, 2236, 2236, 2236, 2236, 2236, 2236, 2236, 2236, 2236, 2236, 2236, 2236, 2236, 49: 2236, 472: 2236, 476: 2236, 2236, 2236, 2236, 484: 2236, 488: 2236, 492: 2236, 581: 2236, 590: 2236, 2236, 642: 2236, 2236, 2236, 2236}, - {49: 4700}, - {2235, 2235, 2235, 2235, 2235, 2235, 2235, 2235, 2235, 2235, 2235, 2235, 2235, 2235, 2235, 49: 2235, 472: 2235, 476: 2235, 2235, 2235, 2235, 484: 2235, 488: 2235, 492: 2235, 581: 2235, 590: 2235, 2235, 642: 2235, 2235, 2235, 2235}, - {158: 4702}, + {2254, 2254, 2254, 2254, 2254, 2254, 2254, 2254, 2254, 2254, 2254, 2254, 2254, 2254, 2254, 50: 2254, 475: 2254, 479: 2254, 2254, 2254, 2254, 487: 2254, 491: 2254, 495: 2254, 584: 2254, 593: 2254, 2254, 645: 2254, 2254, 2254, 2254}, + {476: 4723}, + {2245, 2245, 2245, 2245, 2245, 2245, 2245, 2245, 2245, 2245, 2245, 2245, 2245, 2245, 2245, 50: 2245, 475: 2245, 2249, 479: 2245, 2245, 2245, 2245, 487: 2245, 491: 2245, 495: 2245, 584: 2245, 593: 2245, 2245, 645: 2245, 2245, 2245, 2245}, + {2244, 2244, 2244, 2244, 2244, 2244, 2244, 2244, 2244, 2244, 2244, 2244, 2244, 2244, 2244, 50: 2244, 475: 2244, 2248, 479: 2244, 2244, 2244, 2244, 487: 2244, 491: 2244, 495: 2244, 584: 2244, 593: 2244, 2244, 645: 2244, 2244, 2244, 2244}, + {2243, 2243, 2243, 2243, 2243, 2243, 2243, 2243, 2243, 2243, 2243, 2243, 2243, 2243, 2243, 50: 2243, 475: 2243, 2247, 479: 2243, 2243, 2243, 2243, 487: 2243, 491: 2243, 495: 2243, 584: 2243, 593: 2243, 2243, 645: 2243, 2243, 2243, 2243}, // 2165 - {2298, 2298, 2298, 2298, 2298, 2298, 2298, 2298, 2298, 2298, 2298, 2298, 2298, 2298, 2298, 49: 2298, 472: 2298, 476: 2298, 2298, 2298, 2298, 484: 2298, 488: 2298, 492: 2298, 581: 2298, 590: 2298, 2298, 642: 2298, 2298, 2298, 2298}, - {2299, 2299, 2299, 2299, 2299, 2299, 2299, 2299, 2299, 2299, 2299, 2299, 2299, 2299, 2299, 49: 2299, 472: 2299, 476: 2299, 2299, 2299, 2299, 484: 2299, 488: 2299, 492: 2299, 581: 2299, 590: 2299, 2299, 642: 2299, 2299, 2299, 2299}, - {2246, 2246, 2246, 2246, 2246, 2246, 2246, 2246, 2246, 2246, 2246, 2246, 2246, 2246, 2246, 49: 2246, 472: 2246, 476: 2246, 2246, 2246, 2246, 484: 2246, 488: 2246, 492: 2246, 581: 2246, 590: 2246, 2246, 642: 2246, 2246, 2246, 2246}, - {2245, 2245, 2245, 2245, 2245, 2245, 2245, 2245, 2245, 2245, 2245, 2245, 2245, 2245, 2245, 49: 2245, 472: 2245, 476: 2245, 2245, 2245, 2245, 484: 2245, 488: 2245, 492: 2245, 581: 2245, 590: 2245, 2245, 642: 2245, 2245, 2245, 2245}, - {2244, 2244, 2244, 2244, 2244, 2244, 2244, 2244, 2244, 2244, 2244, 2244, 2244, 2244, 2244, 49: 2244, 472: 2244, 476: 2244, 2244, 2244, 2244, 484: 2244, 488: 2244, 492: 2244, 581: 2244, 590: 2244, 2244, 642: 2244, 2244, 2244, 2244}, + {476: 2246}, + {50: 4724, 511: 2759, 737: 4725}, + {2253, 2253, 2253, 2253, 2253, 2253, 2253, 2253, 2253, 2253, 2253, 2253, 2253, 2253, 2253, 50: 2253, 475: 2253, 479: 2253, 2253, 2253, 2253, 487: 2253, 491: 2253, 495: 2253, 584: 2253, 593: 2253, 2253, 645: 2253, 2253, 2253, 2253}, + {50: 4726}, + {2252, 2252, 2252, 2252, 2252, 2252, 2252, 2252, 2252, 2252, 2252, 2252, 2252, 2252, 2252, 50: 2252, 475: 2252, 479: 2252, 2252, 2252, 2252, 487: 2252, 491: 2252, 495: 2252, 584: 2252, 593: 2252, 2252, 645: 2252, 2252, 2252, 2252}, // 2170 - {2243, 2243, 2243, 2243, 2243, 2243, 2243, 2243, 2243, 2243, 2243, 2243, 2243, 2243, 2243, 49: 2243, 472: 2243, 476: 2243, 2243, 2243, 2243, 484: 2243, 488: 2243, 492: 2243, 581: 2243, 590: 2243, 2243, 642: 2243, 2243, 2243, 2243}, - {151: 4709, 473: 4708, 585: 4696, 4693, 588: 4694, 4695, 946: 4691, 4692, 4710, 995: 4717, 1081: 4718}, - {473: 4713}, - {2238, 2238, 2238, 2238, 2238, 2238, 2238, 2238, 2238, 2238, 2238, 2238, 2238, 2238, 2238, 49: 2238, 472: 2238, 476: 2238, 2238, 2238, 2238, 484: 2238, 488: 2238, 492: 2238, 581: 2238, 590: 2238, 2238, 642: 2238, 2238, 2238, 2238}, - {158: 4179}, + {160: 4728}, + {2315, 2315, 2315, 2315, 2315, 2315, 2315, 2315, 2315, 2315, 2315, 2315, 2315, 2315, 2315, 50: 2315, 475: 2315, 479: 2315, 2315, 2315, 2315, 487: 2315, 491: 2315, 495: 2315, 584: 2315, 593: 2315, 2315, 645: 2315, 2315, 2315, 2315}, + {2316, 2316, 2316, 2316, 2316, 2316, 2316, 2316, 2316, 2316, 2316, 2316, 2316, 2316, 2316, 50: 2316, 475: 2316, 479: 2316, 2316, 2316, 2316, 487: 2316, 491: 2316, 495: 2316, 584: 2316, 593: 2316, 2316, 645: 2316, 2316, 2316, 2316}, + {2263, 2263, 2263, 2263, 2263, 2263, 2263, 2263, 2263, 2263, 2263, 2263, 2263, 2263, 2263, 50: 2263, 475: 2263, 479: 2263, 2263, 2263, 2263, 487: 2263, 491: 2263, 495: 2263, 584: 2263, 593: 2263, 2263, 645: 2263, 2263, 2263, 2263}, + {2262, 2262, 2262, 2262, 2262, 2262, 2262, 2262, 2262, 2262, 2262, 2262, 2262, 2262, 2262, 50: 2262, 475: 2262, 479: 2262, 2262, 2262, 2262, 487: 2262, 491: 2262, 495: 2262, 584: 2262, 593: 2262, 2262, 645: 2262, 2262, 2262, 2262}, // 2175 - {473: 4176}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 2840, 2788, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 4714, 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 2869, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 2874, 2801, 2766, 2783, 2948, 3031, 3020, 2818, 2830, 2941, 2942, 2937, 2895, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 2876, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 2760, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 2880, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 2799, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 2866, 2865, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 2936, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 2824, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 2751, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 2882, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 2752, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3144, 2878, 3145, 3146, 2777, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3159, 3160, 3211, 3210, 3057, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 2918, 2935, 3058, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3177, 3178, 3179, 2931, 3130, 3189, 3190, 3201, 3185, 3186, 3187, 3220, 2877, 473: 3260, 475: 3239, 3258, 2755, 479: 3268, 482: 3272, 3276, 485: 3257, 3256, 3295, 492: 3230, 495: 3269, 504: 3275, 3293, 508: 3234, 530: 3264, 564: 3271, 567: 3294, 2753, 570: 3277, 3229, 3231, 3233, 3232, 3261, 3237, 3251, 3242, 3263, 3238, 582: 3270, 3262, 3267, 3273, 3283, 3336, 3284, 3285, 592: 3236, 3314, 595: 3254, 3255, 3309, 3310, 3311, 3312, 3313, 3265, 3291, 3296, 3306, 3307, 3300, 3315, 3316, 3317, 3301, 3319, 3320, 3302, 3318, 3297, 3305, 3303, 3289, 3321, 3322, 3266, 3326, 3278, 3279, 3282, 3325, 3331, 3330, 3332, 3329, 3333, 3328, 3327, 3324, 3274, 3323, 3281, 3280, 3286, 3287, 648: 2756, 661: 3244, 2762, 2763, 2761, 709: 3259, 3335, 3245, 3250, 3235, 3308, 3248, 3246, 3247, 3288, 3299, 3298, 3292, 3290, 3304, 3243, 3253, 3334, 3252, 3249, 2759, 2758, 2757, 3588, 778: 4715}, - {2241, 2241, 2241, 2241, 2241, 2241, 2241, 2241, 2241, 2241, 2241, 2241, 2241, 2241, 2241, 49: 2241, 472: 2241, 476: 2241, 2241, 2241, 2241, 484: 2241, 488: 2241, 492: 2241, 581: 2241, 590: 2241, 2241, 642: 2241, 2241, 2241, 2241}, - {9: 3590, 49: 4716}, - {2240, 2240, 2240, 2240, 2240, 2240, 2240, 2240, 2240, 2240, 2240, 2240, 2240, 2240, 2240, 49: 2240, 472: 2240, 476: 2240, 2240, 2240, 2240, 484: 2240, 488: 2240, 492: 2240, 581: 2240, 590: 2240, 2240, 642: 2240, 2240, 2240, 2240}, + {2261, 2261, 2261, 2261, 2261, 2261, 2261, 2261, 2261, 2261, 2261, 2261, 2261, 2261, 2261, 50: 2261, 475: 2261, 479: 2261, 2261, 2261, 2261, 487: 2261, 491: 2261, 495: 2261, 584: 2261, 593: 2261, 2261, 645: 2261, 2261, 2261, 2261}, + {2260, 2260, 2260, 2260, 2260, 2260, 2260, 2260, 2260, 2260, 2260, 2260, 2260, 2260, 2260, 50: 2260, 475: 2260, 479: 2260, 2260, 2260, 2260, 487: 2260, 491: 2260, 495: 2260, 584: 2260, 593: 2260, 2260, 645: 2260, 2260, 2260, 2260}, + {130: 4735, 476: 4734, 588: 4722, 4719, 591: 4720, 4721, 904: 4743, 951: 4717, 4718, 4736, 1089: 4744}, + {476: 4739}, + {2255, 2255, 2255, 2255, 2255, 2255, 2255, 2255, 2255, 2255, 2255, 2255, 2255, 2255, 2255, 50: 2255, 475: 2255, 479: 2255, 2255, 2255, 2255, 487: 2255, 491: 2255, 495: 2255, 584: 2255, 593: 2255, 2255, 645: 2255, 2255, 2255, 2255}, // 2180 - {49: 4720}, - {49: 4719}, - {2239, 2239, 2239, 2239, 2239, 2239, 2239, 2239, 2239, 2239, 2239, 2239, 2239, 2239, 2239, 49: 2239, 472: 2239, 476: 2239, 2239, 2239, 2239, 484: 2239, 488: 2239, 492: 2239, 581: 2239, 590: 2239, 2239, 642: 2239, 2239, 2239, 2239}, - {2242, 2242, 2242, 2242, 2242, 2242, 2242, 2242, 2242, 2242, 2242, 2242, 2242, 2242, 2242, 49: 2242, 472: 2242, 476: 2242, 2242, 2242, 2242, 484: 2242, 488: 2242, 492: 2242, 581: 2242, 590: 2242, 2242, 642: 2242, 2242, 2242, 2242}, - {2300, 2300, 2300, 2300, 2300, 2300, 2300, 2300, 2300, 2300, 2300, 2300, 2300, 2300, 2300, 49: 2300, 472: 2300, 476: 2300, 2300, 2300, 2300, 484: 2300, 488: 2300, 492: 2300, 581: 2300, 590: 2300, 2300, 642: 2300, 2300, 2300, 2300}, + {160: 4205}, + {476: 4202}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 2864, 2812, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 4740, 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 2893, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 2898, 2825, 2789, 2807, 2972, 3055, 3044, 2842, 2854, 2965, 2966, 2961, 2919, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 2900, 2885, 2881, 2973, 2997, 2783, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 2904, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 2823, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 2889, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 2890, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 2960, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 2848, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 2774, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 2906, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 2775, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3170, 2902, 3171, 3172, 2801, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3185, 3186, 3237, 3236, 3081, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 2942, 2959, 3082, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3203, 3204, 3205, 2955, 3156, 3215, 3216, 3227, 3211, 3212, 3213, 3246, 2901, 476: 3286, 478: 3265, 3284, 2778, 482: 3294, 485: 3298, 3302, 488: 3283, 3282, 3321, 495: 3256, 498: 3295, 507: 3301, 3319, 511: 3260, 533: 3290, 567: 3297, 570: 3320, 2776, 573: 3303, 3255, 3257, 3259, 3258, 3287, 3263, 3277, 3268, 3289, 3264, 585: 3296, 3288, 3293, 3299, 3309, 3362, 3310, 3311, 595: 3262, 3340, 598: 3280, 3281, 3335, 3336, 3337, 3338, 3339, 3291, 3317, 3322, 3332, 3333, 3326, 3341, 3342, 3343, 3327, 3345, 3346, 3328, 3344, 3323, 3331, 3329, 3315, 3347, 3348, 3292, 3352, 3304, 3305, 3308, 3351, 3357, 3356, 3358, 3355, 3359, 3354, 3353, 3350, 3300, 3349, 3307, 3306, 3312, 3313, 651: 2779, 664: 3270, 2785, 2786, 2784, 713: 3285, 3361, 3271, 3276, 3261, 3334, 3274, 3272, 3273, 3314, 3325, 3324, 3318, 3316, 3330, 3269, 3279, 3360, 3278, 3275, 2782, 2781, 2780, 3614, 782: 4741}, + {2258, 2258, 2258, 2258, 2258, 2258, 2258, 2258, 2258, 2258, 2258, 2258, 2258, 2258, 2258, 50: 2258, 475: 2258, 479: 2258, 2258, 2258, 2258, 487: 2258, 491: 2258, 495: 2258, 584: 2258, 593: 2258, 2258, 645: 2258, 2258, 2258, 2258}, + {9: 3616, 50: 4742}, // 2185 - {2303, 2303, 2303, 2303, 2303, 2303, 2303, 2303, 2303, 2303, 2303, 2303, 2303, 2303, 2303, 49: 2303, 85: 4723, 87: 4724, 472: 2303, 476: 2303, 2303, 2303, 2303, 484: 2303, 488: 2303, 492: 2303, 581: 2303, 590: 2303, 2303, 642: 2303, 2303, 2303, 2303, 869: 4725}, - {2432, 2432, 2432, 2432, 2432, 2432, 2432, 2432, 2432, 2432, 2432, 2432, 2432, 2432, 2432, 19: 2432, 49: 2432, 83: 2432, 2432, 2432, 2432, 2432, 89: 2432, 472: 2432, 474: 2432, 476: 2432, 2432, 2432, 2432, 481: 2432, 484: 2432, 488: 2432, 492: 2432, 497: 2432, 581: 2432, 590: 2432, 2432, 642: 2432, 2432, 2432, 2432}, - {2431, 2431, 2431, 2431, 2431, 2431, 2431, 2431, 2431, 2431, 2431, 2431, 2431, 2431, 2431, 19: 2431, 49: 2431, 83: 2431, 2431, 2431, 2431, 2431, 89: 2431, 472: 2431, 474: 2431, 476: 2431, 2431, 2431, 2431, 481: 2431, 484: 2431, 488: 2431, 492: 2431, 497: 2431, 581: 2431, 590: 2431, 2431, 642: 2431, 2431, 2431, 2431}, - {2302, 2302, 2302, 2302, 2302, 2302, 2302, 2302, 2302, 2302, 2302, 2302, 2302, 2302, 2302, 49: 2302, 472: 2302, 476: 2302, 2302, 2302, 2302, 484: 2302, 488: 2302, 492: 2302, 581: 2302, 590: 2302, 2302, 642: 2302, 2302, 2302, 2302}, - {2306, 2306, 2306, 2306, 2306, 2306, 2306, 2306, 2306, 2306, 2306, 2306, 2306, 2306, 2306, 49: 2306, 472: 2306, 476: 2306, 2306, 2306, 2306, 484: 2306, 488: 2306, 492: 2306, 581: 2306, 590: 2306, 2306, 642: 2306, 2306, 2306, 2306}, + {2257, 2257, 2257, 2257, 2257, 2257, 2257, 2257, 2257, 2257, 2257, 2257, 2257, 2257, 2257, 50: 2257, 475: 2257, 479: 2257, 2257, 2257, 2257, 487: 2257, 491: 2257, 495: 2257, 584: 2257, 593: 2257, 2257, 645: 2257, 2257, 2257, 2257}, + {50: 4746}, + {50: 4745}, + {2256, 2256, 2256, 2256, 2256, 2256, 2256, 2256, 2256, 2256, 2256, 2256, 2256, 2256, 2256, 50: 2256, 475: 2256, 479: 2256, 2256, 2256, 2256, 487: 2256, 491: 2256, 495: 2256, 584: 2256, 593: 2256, 2256, 645: 2256, 2256, 2256, 2256}, + {2259, 2259, 2259, 2259, 2259, 2259, 2259, 2259, 2259, 2259, 2259, 2259, 2259, 2259, 2259, 50: 2259, 475: 2259, 479: 2259, 2259, 2259, 2259, 487: 2259, 491: 2259, 495: 2259, 584: 2259, 593: 2259, 2259, 645: 2259, 2259, 2259, 2259}, // 2190 - {581: 2404, 590: 2404, 2404, 642: 2404, 649: 2404, 675: 2404, 2404}, - {2403, 2403, 2403, 2403, 2403, 2403, 9: 2403, 488: 2403, 581: 2403, 590: 2403, 2403, 642: 2403, 649: 2403, 675: 2403, 2403}, - {2339, 2339, 2339, 2339, 2339, 2339, 9: 2339, 2339, 2339, 49: 2339, 488: 2339}, - {2462, 2462, 2462, 2462, 2462, 2462, 9: 2462, 488: 2462}, - {2414, 2414, 2414, 2414, 2414, 2414, 9: 2414, 488: 2414}, + {2317, 2317, 2317, 2317, 2317, 2317, 2317, 2317, 2317, 2317, 2317, 2317, 2317, 2317, 2317, 50: 2317, 475: 2317, 479: 2317, 2317, 2317, 2317, 487: 2317, 491: 2317, 495: 2317, 584: 2317, 593: 2317, 2317, 645: 2317, 2317, 2317, 2317}, + {2320, 2320, 2320, 2320, 2320, 2320, 2320, 2320, 2320, 2320, 2320, 2320, 2320, 2320, 2320, 50: 2320, 86: 4749, 88: 4750, 475: 2320, 479: 2320, 2320, 2320, 2320, 487: 2320, 491: 2320, 495: 2320, 584: 2320, 593: 2320, 2320, 645: 2320, 2320, 2320, 2320, 873: 4751}, + {2452, 2452, 2452, 2452, 2452, 2452, 2452, 2452, 2452, 2452, 2452, 2452, 2452, 2452, 2452, 19: 2452, 50: 2452, 84: 2452, 2452, 2452, 2452, 2452, 90: 2452, 475: 2452, 477: 2452, 479: 2452, 2452, 2452, 2452, 484: 2452, 487: 2452, 491: 2452, 495: 2452, 500: 2452, 584: 2452, 593: 2452, 2452, 645: 2452, 2452, 2452, 2452}, + {2451, 2451, 2451, 2451, 2451, 2451, 2451, 2451, 2451, 2451, 2451, 2451, 2451, 2451, 2451, 19: 2451, 50: 2451, 84: 2451, 2451, 2451, 2451, 2451, 90: 2451, 475: 2451, 477: 2451, 479: 2451, 2451, 2451, 2451, 484: 2451, 487: 2451, 491: 2451, 495: 2451, 500: 2451, 584: 2451, 593: 2451, 2451, 645: 2451, 2451, 2451, 2451}, + {2319, 2319, 2319, 2319, 2319, 2319, 2319, 2319, 2319, 2319, 2319, 2319, 2319, 2319, 2319, 50: 2319, 475: 2319, 479: 2319, 2319, 2319, 2319, 487: 2319, 491: 2319, 495: 2319, 584: 2319, 593: 2319, 2319, 645: 2319, 2319, 2319, 2319}, // 2195 - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 661: 4143, 2762, 2763, 2761, 744: 4733}, - {2413, 2413, 2413, 2413, 2413, 2413, 9: 2413, 488: 2413}, - {2: 1860, 1860, 1860, 1860, 1860, 1860, 1860, 10: 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 50: 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 564: 4452, 780: 4735}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 661: 4143, 2762, 2763, 2761, 744: 4456, 848: 4736}, - {2415, 2415, 2415, 2415, 2415, 2415, 9: 2415, 4731, 4732, 488: 2415, 929: 4737}, + {2323, 2323, 2323, 2323, 2323, 2323, 2323, 2323, 2323, 2323, 2323, 2323, 2323, 2323, 2323, 50: 2323, 475: 2323, 479: 2323, 2323, 2323, 2323, 487: 2323, 491: 2323, 495: 2323, 584: 2323, 593: 2323, 2323, 645: 2323, 2323, 2323, 2323}, + {584: 2424, 593: 2424, 2424, 645: 2424, 652: 2424, 678: 2424, 2424}, + {2423, 2423, 2423, 2423, 2423, 2423, 9: 2423, 491: 2423, 584: 2423, 593: 2423, 2423, 645: 2423, 652: 2423, 678: 2423, 2423}, + {2356, 2356, 2356, 2356, 2356, 2356, 9: 2356, 2356, 2356, 50: 2356, 491: 2356}, + {2482, 2482, 2482, 2482, 2482, 2482, 9: 2482, 491: 2482}, // 2200 - {2463, 2463, 2463, 2463, 2463, 2463, 9: 2463, 488: 2463}, - {2464, 2464, 2464, 2464, 2464, 2464, 9: 2464, 488: 2464}, - {2465, 2465, 2465, 2465, 2465, 2465, 9: 2465, 488: 2465}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 661: 4143, 2762, 2763, 2761, 744: 4743, 985: 4742, 1168: 4741}, - {2466, 2466, 2466, 2466, 2466, 2466, 9: 4745, 488: 2466}, + {2434, 2434, 2434, 2434, 2434, 2434, 9: 2434, 491: 2434}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 664: 4169, 2785, 2786, 2784, 748: 4759}, + {2433, 2433, 2433, 2433, 2433, 2433, 9: 2433, 491: 2433}, + {2: 1877, 1877, 1877, 1877, 1877, 1877, 1877, 10: 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 51: 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 567: 4478, 784: 4761}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 664: 4169, 2785, 2786, 2784, 748: 4482, 853: 4762}, // 2205 - {1310, 1310, 1310, 1310, 1310, 1310, 9: 1310, 488: 1310}, - {1300, 1300, 1300, 1300, 1300, 1300, 9: 1300, 488: 1300, 529: 4623, 531: 4622, 949: 4744}, - {1308, 1308, 1308, 1308, 1308, 1308, 9: 1308, 488: 1308}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 661: 4143, 2762, 2763, 2761, 744: 4743, 985: 4746}, - {1309, 1309, 1309, 1309, 1309, 1309, 9: 1309, 488: 1309}, + {2435, 2435, 2435, 2435, 2435, 2435, 9: 2435, 4757, 4758, 491: 2435, 934: 4763}, + {2483, 2483, 2483, 2483, 2483, 2483, 9: 2483, 491: 2483}, + {2484, 2484, 2484, 2484, 2484, 2484, 9: 2484, 491: 2484}, + {2485, 2485, 2485, 2485, 2485, 2485, 9: 2485, 491: 2485}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 664: 4169, 2785, 2786, 2784, 748: 4769, 990: 4768, 1177: 4767}, // 2210 - {2: 569, 569, 569, 569, 569, 569, 569, 10: 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 50: 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 4750, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 651: 569, 811: 4749, 829: 4748}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 651: 4752, 661: 4754, 2762, 2763, 2761, 786: 4753, 832: 4751}, - {568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 50: 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 568, 473: 568, 488: 568, 508: 568, 530: 568, 569: 568, 651: 568}, - {567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 50: 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 567, 473: 567, 488: 567, 508: 567, 530: 567, 569: 567, 651: 567}, - {2469, 2469, 2469, 2469, 2469, 2469, 9: 2469, 488: 2469}, + {2486, 2486, 2486, 2486, 2486, 2486, 9: 4771, 491: 2486}, + {1324, 1324, 1324, 1324, 1324, 1324, 9: 1324, 491: 1324}, + {1314, 1314, 1314, 1314, 1314, 1314, 9: 1314, 491: 1314, 532: 4649, 534: 4648, 954: 4770}, + {1322, 1322, 1322, 1322, 1322, 1322, 9: 1322, 491: 1322}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 664: 4169, 2785, 2786, 2784, 748: 4769, 990: 4772}, // 2215 - {2438, 2438, 2438, 2438, 2438, 2438, 9: 2438, 20: 2438, 488: 2438}, - {2437, 2437, 2437, 2437, 2437, 2437, 9: 4755, 20: 2437, 488: 2437}, - {2408, 2408, 2408, 2408, 2408, 2408, 9: 2408, 20: 2408, 49: 2408, 102: 2408, 166: 2408, 168: 2408, 474: 2408, 488: 2408, 496: 2408, 649: 2408, 651: 2408}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 661: 4756, 2762, 2763, 2761}, - {2407, 2407, 2407, 2407, 2407, 2407, 9: 2407, 20: 2407, 49: 2407, 102: 2407, 166: 2407, 168: 2407, 474: 2407, 488: 2407, 496: 2407, 649: 2407, 651: 2407}, + {1323, 1323, 1323, 1323, 1323, 1323, 9: 1323, 491: 1323}, + {2: 582, 582, 582, 582, 582, 582, 582, 10: 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 51: 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 4776, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 654: 582, 816: 4775, 833: 4774}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 654: 4778, 664: 4780, 2785, 2786, 2784, 791: 4779, 836: 4777}, + {581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 51: 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 581, 476: 581, 491: 581, 511: 581, 533: 581, 572: 581, 654: 581}, + {580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 51: 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 580, 476: 580, 491: 580, 511: 580, 533: 580, 572: 580, 654: 580}, // 2220 - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 651: 4752, 661: 4754, 2762, 2763, 2761, 786: 4753, 832: 4759}, - {2470, 2470, 2470, 2470, 2470, 2470, 9: 2470, 488: 2470}, - {20: 4760}, - {2472, 2472, 2472, 2472, 2472, 2472, 9: 2472, 488: 2472}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 651: 4752, 661: 4754, 2762, 2763, 2761, 786: 4753, 832: 4763}, + {2489, 2489, 2489, 2489, 2489, 2489, 9: 2489, 491: 2489}, + {2458, 2458, 2458, 2458, 2458, 2458, 9: 2458, 20: 2458, 491: 2458}, + {2457, 2457, 2457, 2457, 2457, 2457, 9: 4781, 20: 2457, 491: 2457}, + {2428, 2428, 2428, 2428, 2428, 2428, 9: 2428, 20: 2428, 50: 2428, 103: 2428, 168: 2428, 170: 2428, 477: 2428, 491: 2428, 499: 2428, 652: 2428, 654: 2428}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 664: 4782, 2785, 2786, 2784}, // 2225 - {2471, 2471, 2471, 2471, 2471, 2471, 9: 2471, 488: 2471}, - {20: 4764}, - {2473, 2473, 2473, 2473, 2473, 2473, 9: 2473, 488: 2473}, - {2: 569, 569, 569, 569, 569, 569, 569, 10: 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 50: 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 4750, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 651: 569, 811: 4749, 829: 4766}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 651: 4752, 661: 4754, 2762, 2763, 2761, 786: 4753, 832: 4767}, + {2427, 2427, 2427, 2427, 2427, 2427, 9: 2427, 20: 2427, 50: 2427, 103: 2427, 168: 2427, 170: 2427, 477: 2427, 491: 2427, 499: 2427, 652: 2427, 654: 2427}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 654: 4778, 664: 4780, 2785, 2786, 2784, 791: 4779, 836: 4785}, + {2490, 2490, 2490, 2490, 2490, 2490, 9: 2490, 491: 2490}, + {20: 4786}, + {2492, 2492, 2492, 2492, 2492, 2492, 9: 2492, 491: 2492}, // 2230 - {2474, 2474, 2474, 2474, 2474, 2474, 9: 2474, 488: 2474}, - {2: 569, 569, 569, 569, 569, 569, 569, 10: 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 50: 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 4750, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 651: 569, 811: 4749, 829: 4769}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 651: 4752, 661: 4754, 2762, 2763, 2761, 786: 4753, 832: 4770}, - {2475, 2475, 2475, 2475, 2475, 2475, 9: 2475, 488: 2475}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 651: 4752, 661: 4754, 2762, 2763, 2761, 786: 4753, 832: 4772}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 654: 4778, 664: 4780, 2785, 2786, 2784, 791: 4779, 836: 4789}, + {2491, 2491, 2491, 2491, 2491, 2491, 9: 2491, 491: 2491}, + {20: 4790}, + {2493, 2493, 2493, 2493, 2493, 2493, 9: 2493, 491: 2493}, + {2: 582, 582, 582, 582, 582, 582, 582, 10: 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 51: 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 4776, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 654: 582, 816: 4775, 833: 4792}, // 2235 - {2476, 2476, 2476, 2476, 2476, 2476, 9: 2476, 488: 2476}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 661: 4774, 2762, 2763, 2761}, - {474: 4775}, - {569: 4776}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 661: 3921, 2762, 2763, 2761, 737: 4777}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 654: 4778, 664: 4780, 2785, 2786, 2784, 791: 4779, 836: 4793}, + {2494, 2494, 2494, 2494, 2494, 2494, 9: 2494, 491: 2494}, + {2: 582, 582, 582, 582, 582, 582, 582, 10: 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 51: 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 4776, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 654: 582, 816: 4775, 833: 4795}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 654: 4778, 664: 4780, 2785, 2786, 2784, 791: 4779, 836: 4796}, + {2495, 2495, 2495, 2495, 2495, 2495, 9: 2495, 491: 2495}, // 2240 - {2436, 2436, 2436, 2436, 2436, 2436, 9: 2436, 224: 4781, 474: 4780, 488: 2436, 1353: 4779, 4778}, - {2477, 2477, 2477, 2477, 2477, 2477, 9: 2477, 488: 2477}, - {2435, 2435, 2435, 2435, 2435, 2435, 9: 2435, 488: 2435}, - {201: 4783}, - {201: 4782}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 654: 4778, 664: 4780, 2785, 2786, 2784, 791: 4779, 836: 4798}, + {2496, 2496, 2496, 2496, 2496, 2496, 9: 2496, 491: 2496}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 664: 4800, 2785, 2786, 2784}, + {477: 4801}, + {572: 4802}, // 2245 - {2433, 2433, 2433, 2433, 2433, 2433, 9: 2433, 488: 2433}, - {2434, 2434, 2434, 2434, 2434, 2434, 9: 2434, 488: 2434}, - {152: 4785}, - {157: 4786}, - {473: 4787}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 664: 3947, 2785, 2786, 2784, 740: 4803}, + {2456, 2456, 2456, 2456, 2456, 2456, 9: 2456, 227: 4807, 477: 4806, 491: 2456, 1362: 4805, 4804}, + {2497, 2497, 2497, 2497, 2497, 2497, 9: 2497, 491: 2497}, + {2455, 2455, 2455, 2455, 2455, 2455, 9: 2455, 491: 2455}, + {203: 4809}, // 2250 - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 2840, 2788, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 2869, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 2874, 2801, 2766, 2783, 2948, 3031, 3020, 2818, 2830, 2941, 2942, 2937, 2895, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 2876, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 2760, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 2880, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 2799, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 2866, 2865, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 2936, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 2824, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 2751, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 2882, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 2752, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3144, 2878, 3145, 3146, 2777, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3159, 3160, 3211, 3210, 3057, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 2918, 2935, 3058, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3177, 3178, 3179, 2931, 3130, 3189, 3190, 3201, 3185, 3186, 3187, 3220, 2877, 473: 3260, 475: 3239, 3258, 479: 3268, 482: 3272, 3276, 485: 3257, 3256, 3295, 492: 3230, 495: 3269, 504: 3275, 3293, 508: 3234, 530: 3264, 564: 3271, 567: 3294, 3349, 570: 3277, 3229, 3231, 3233, 3232, 3261, 3237, 3251, 3242, 3263, 3238, 582: 3270, 3262, 3267, 3273, 3283, 3336, 3284, 3285, 592: 3236, 3314, 595: 3254, 3255, 3309, 3310, 3311, 3312, 3313, 3265, 3291, 3296, 3306, 3307, 3300, 3315, 3316, 3317, 3301, 3319, 3320, 3302, 3318, 3297, 3305, 3303, 3289, 3321, 3322, 3266, 3326, 3278, 3279, 3282, 3325, 3331, 3330, 3332, 3329, 3333, 3328, 3327, 3324, 3274, 3323, 3281, 3280, 3286, 3287, 661: 3244, 2762, 2763, 2761, 709: 3259, 3335, 3245, 3250, 3235, 3308, 3248, 3246, 3247, 3288, 3299, 3298, 3292, 3290, 3304, 3243, 3253, 3334, 3252, 3249, 4788}, - {49: 4789, 485: 3686, 3687, 3692, 520: 3688, 547: 3689, 3690, 3683, 3693, 3682, 3691, 3684, 3685}, - {1860, 1860, 1860, 1860, 1860, 1860, 9: 1860, 488: 1860, 564: 4452, 780: 4790}, - {2479, 2479, 2479, 2479, 2479, 2479, 9: 2479, 488: 2479}, - {2: 1860, 1860, 1860, 1860, 1860, 1860, 1860, 10: 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 50: 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 564: 4452, 780: 4809}, + {203: 4808}, + {2453, 2453, 2453, 2453, 2453, 2453, 9: 2453, 491: 2453}, + {2454, 2454, 2454, 2454, 2454, 2454, 9: 2454, 491: 2454}, + {154: 4811}, + {159: 4812}, // 2255 - {581: 4808}, - {2: 1860, 1860, 1860, 1860, 1860, 1860, 1860, 10: 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 50: 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 564: 4452, 780: 4806}, - {2: 1860, 1860, 1860, 1860, 1860, 1860, 1860, 10: 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 50: 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 564: 4452, 780: 4804}, - {2: 1860, 1860, 1860, 1860, 1860, 1860, 1860, 10: 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 50: 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 564: 4452, 780: 4802}, - {581: 4799}, + {476: 4813}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 2864, 2812, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 2893, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 2898, 2825, 2789, 2807, 2972, 3055, 3044, 2842, 2854, 2965, 2966, 2961, 2919, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 2900, 2885, 2881, 2973, 2997, 2783, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 2904, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 2823, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 2889, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 2890, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 2960, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 2848, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 2774, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 2906, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 2775, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3170, 2902, 3171, 3172, 2801, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3185, 3186, 3237, 3236, 3081, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 2942, 2959, 3082, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3203, 3204, 3205, 2955, 3156, 3215, 3216, 3227, 3211, 3212, 3213, 3246, 2901, 476: 3286, 478: 3265, 3284, 482: 3294, 485: 3298, 3302, 488: 3283, 3282, 3321, 495: 3256, 498: 3295, 507: 3301, 3319, 511: 3260, 533: 3290, 567: 3297, 570: 3320, 3375, 573: 3303, 3255, 3257, 3259, 3258, 3287, 3263, 3277, 3268, 3289, 3264, 585: 3296, 3288, 3293, 3299, 3309, 3362, 3310, 3311, 595: 3262, 3340, 598: 3280, 3281, 3335, 3336, 3337, 3338, 3339, 3291, 3317, 3322, 3332, 3333, 3326, 3341, 3342, 3343, 3327, 3345, 3346, 3328, 3344, 3323, 3331, 3329, 3315, 3347, 3348, 3292, 3352, 3304, 3305, 3308, 3351, 3357, 3356, 3358, 3355, 3359, 3354, 3353, 3350, 3300, 3349, 3307, 3306, 3312, 3313, 664: 3270, 2785, 2786, 2784, 713: 3285, 3361, 3271, 3276, 3261, 3334, 3274, 3272, 3273, 3314, 3325, 3324, 3318, 3316, 3330, 3269, 3279, 3360, 3278, 3275, 4814}, + {50: 4815, 488: 3712, 3713, 3718, 523: 3714, 550: 3715, 3716, 3709, 3719, 3708, 3717, 3710, 3711}, + {1877, 1877, 1877, 1877, 1877, 1877, 9: 1877, 491: 1877, 567: 4478, 784: 4816}, + {2499, 2499, 2499, 2499, 2499, 2499, 9: 2499, 491: 2499}, // 2260 - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 661: 4798, 2762, 2763, 2761}, - {2444, 2444, 2444, 2444, 2444, 2444, 9: 2444, 488: 2444}, - {2: 1860, 1860, 1860, 1860, 1860, 1860, 1860, 10: 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 50: 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 564: 4452, 780: 4800}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 661: 4728, 2762, 2763, 2761, 1144: 4801}, - {2467, 2467, 2467, 2467, 2467, 2467, 9: 2467, 488: 2467}, + {2: 1877, 1877, 1877, 1877, 1877, 1877, 1877, 10: 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 51: 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 567: 4478, 784: 4835}, + {584: 4834}, + {2: 1877, 1877, 1877, 1877, 1877, 1877, 1877, 10: 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 51: 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 567: 4478, 784: 4832}, + {2: 1877, 1877, 1877, 1877, 1877, 1877, 1877, 10: 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 51: 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 567: 4478, 784: 4830}, + {2: 1877, 1877, 1877, 1877, 1877, 1877, 1877, 10: 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 51: 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 567: 4478, 784: 4828}, // 2265 - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 661: 4803, 2762, 2763, 2761}, - {2468, 2468, 2468, 2468, 2468, 2468, 9: 2468, 488: 2468}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 661: 4805, 2762, 2763, 2761}, - {2478, 2478, 2478, 2478, 2478, 2478, 9: 2478, 488: 2478}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 661: 4754, 2762, 2763, 2761, 786: 4807}, + {584: 4825}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 664: 4824, 2785, 2786, 2784}, + {2464, 2464, 2464, 2464, 2464, 2464, 9: 2464, 491: 2464}, + {2: 1877, 1877, 1877, 1877, 1877, 1877, 1877, 10: 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 51: 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 567: 4478, 784: 4826}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 664: 4754, 2785, 2786, 2784, 1152: 4827}, // 2270 - {2480, 2480, 2480, 2480, 2480, 2480, 9: 4755, 488: 2480}, - {2481, 2481, 2481, 2481, 2481, 2481, 9: 2481, 488: 2481}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 661: 4143, 2762, 2763, 2761, 744: 4810}, - {2052, 2052, 2052, 2052, 2052, 2052, 9: 2052, 488: 2052, 670: 4813, 672: 4812, 911: 4811}, - {2482, 2482, 2482, 2482, 2482, 2482, 9: 2482, 488: 2482}, + {2487, 2487, 2487, 2487, 2487, 2487, 9: 2487, 491: 2487}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 664: 4829, 2785, 2786, 2784}, + {2488, 2488, 2488, 2488, 2488, 2488, 9: 2488, 491: 2488}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 664: 4831, 2785, 2786, 2784}, + {2498, 2498, 2498, 2498, 2498, 2498, 9: 2498, 491: 2498}, // 2275 - {2051, 2051, 2051, 2051, 2051, 2051, 9: 2051, 488: 2051}, - {2050, 2050, 2050, 2050, 2050, 2050, 9: 2050, 488: 2050}, - {136: 4750, 508: 569, 811: 4749, 829: 4815}, - {508: 2736, 733: 4816}, - {2483, 2483, 2483, 2483, 2483, 2483, 9: 2483, 488: 2483}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 664: 4780, 2785, 2786, 2784, 791: 4833}, + {2500, 2500, 2500, 2500, 2500, 2500, 9: 4781, 491: 2500}, + {2501, 2501, 2501, 2501, 2501, 2501, 9: 2501, 491: 2501}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 664: 4169, 2785, 2786, 2784, 748: 4836}, + {2069, 2069, 2069, 2069, 2069, 2069, 9: 2069, 491: 2069, 673: 4839, 675: 4838, 916: 4837}, // 2280 - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 651: 4752, 661: 4754, 2762, 2763, 2761, 786: 4753, 832: 4818}, - {2484, 2484, 2484, 2484, 2484, 2484, 9: 2484, 488: 2484}, - {152: 4820}, - {157: 4821}, - {473: 4822}, + {2502, 2502, 2502, 2502, 2502, 2502, 9: 2502, 491: 2502}, + {2068, 2068, 2068, 2068, 2068, 2068, 9: 2068, 491: 2068}, + {2067, 2067, 2067, 2067, 2067, 2067, 9: 2067, 491: 2067}, + {141: 4776, 511: 582, 816: 4775, 833: 4841}, + {511: 2759, 737: 4842}, // 2285 - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 2840, 2788, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 2869, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 2874, 2801, 2766, 2783, 2948, 3031, 3020, 2818, 2830, 2941, 2942, 2937, 2895, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 2876, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 2760, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 2880, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 2799, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 2866, 2865, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 2936, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 2824, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 2751, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 2882, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 2752, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3144, 2878, 3145, 3146, 2777, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3159, 3160, 3211, 3210, 3057, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 2918, 2935, 3058, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3177, 3178, 3179, 2931, 3130, 3189, 3190, 3201, 3185, 3186, 3187, 3220, 2877, 473: 3260, 475: 3239, 3258, 479: 3268, 482: 3272, 3276, 485: 3257, 3256, 3295, 492: 3230, 495: 3269, 504: 3275, 3293, 508: 3234, 530: 3264, 564: 3271, 567: 3294, 3349, 570: 3277, 3229, 3231, 3233, 3232, 3261, 3237, 3251, 3242, 3263, 3238, 582: 3270, 3262, 3267, 3273, 3283, 3336, 3284, 3285, 592: 3236, 3314, 595: 3254, 3255, 3309, 3310, 3311, 3312, 3313, 3265, 3291, 3296, 3306, 3307, 3300, 3315, 3316, 3317, 3301, 3319, 3320, 3302, 3318, 3297, 3305, 3303, 3289, 3321, 3322, 3266, 3326, 3278, 3279, 3282, 3325, 3331, 3330, 3332, 3329, 3333, 3328, 3327, 3324, 3274, 3323, 3281, 3280, 3286, 3287, 661: 3244, 2762, 2763, 2761, 709: 3259, 3335, 3245, 3250, 3235, 3308, 3248, 3246, 3247, 3288, 3299, 3298, 3292, 3290, 3304, 3243, 3253, 3334, 3252, 3249, 4823}, - {49: 4824, 485: 3686, 3687, 3692, 520: 3688, 547: 3689, 3690, 3683, 3693, 3682, 3691, 3684, 3685}, - {569, 569, 569, 569, 569, 569, 9: 569, 136: 4750, 488: 569, 811: 4749, 829: 4825}, - {2488, 2488, 2488, 2488, 2488, 2488, 9: 2488, 488: 2488}, - {2: 1858, 1858, 1858, 1858, 1858, 1858, 1858, 10: 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 50: 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 473: 1858, 564: 4844, 785: 4958}, + {2503, 2503, 2503, 2503, 2503, 2503, 9: 2503, 491: 2503}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 654: 4778, 664: 4780, 2785, 2786, 2784, 791: 4779, 836: 4844}, + {2504, 2504, 2504, 2504, 2504, 2504, 9: 2504, 491: 2504}, + {154: 4846}, + {159: 4847}, // 2290 - {2491, 2491, 2491, 2491, 2491, 2491, 9: 2491, 488: 2491}, - {1858, 1858, 1858, 1858, 1858, 1858, 9: 1858, 91: 1858, 136: 1858, 473: 1858, 488: 1858, 564: 4844, 785: 4912, 811: 1858}, - {2: 1858, 1858, 1858, 1858, 1858, 1858, 1858, 10: 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 50: 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 564: 4844, 785: 4903}, - {581: 4410, 590: 4836, 4831, 642: 4834, 649: 4411, 675: 4835, 4832, 828: 4833, 1197: 4837}, - {581: 4897}, + {476: 4848}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 2864, 2812, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 2893, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 2898, 2825, 2789, 2807, 2972, 3055, 3044, 2842, 2854, 2965, 2966, 2961, 2919, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 2900, 2885, 2881, 2973, 2997, 2783, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 2904, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 2823, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 2889, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 2890, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 2960, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 2848, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 2774, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 2906, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 2775, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3170, 2902, 3171, 3172, 2801, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3185, 3186, 3237, 3236, 3081, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 2942, 2959, 3082, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3203, 3204, 3205, 2955, 3156, 3215, 3216, 3227, 3211, 3212, 3213, 3246, 2901, 476: 3286, 478: 3265, 3284, 482: 3294, 485: 3298, 3302, 488: 3283, 3282, 3321, 495: 3256, 498: 3295, 507: 3301, 3319, 511: 3260, 533: 3290, 567: 3297, 570: 3320, 3375, 573: 3303, 3255, 3257, 3259, 3258, 3287, 3263, 3277, 3268, 3289, 3264, 585: 3296, 3288, 3293, 3299, 3309, 3362, 3310, 3311, 595: 3262, 3340, 598: 3280, 3281, 3335, 3336, 3337, 3338, 3339, 3291, 3317, 3322, 3332, 3333, 3326, 3341, 3342, 3343, 3327, 3345, 3346, 3328, 3344, 3323, 3331, 3329, 3315, 3347, 3348, 3292, 3352, 3304, 3305, 3308, 3351, 3357, 3356, 3358, 3355, 3359, 3354, 3353, 3350, 3300, 3349, 3307, 3306, 3312, 3313, 664: 3270, 2785, 2786, 2784, 713: 3285, 3361, 3271, 3276, 3261, 3334, 3274, 3272, 3273, 3314, 3325, 3324, 3318, 3316, 3330, 3269, 3279, 3360, 3278, 3275, 4849}, + {50: 4850, 488: 3712, 3713, 3718, 523: 3714, 550: 3715, 3716, 3709, 3719, 3708, 3717, 3710, 3711}, + {582, 582, 582, 582, 582, 582, 9: 582, 141: 4776, 491: 582, 816: 4775, 833: 4851}, + {2508, 2508, 2508, 2508, 2508, 2508, 9: 2508, 491: 2508}, // 2295 - {2: 2419, 2419, 2419, 2419, 2419, 2419, 2419, 10: 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 50: 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 473: 2419, 581: 4410, 649: 4411, 828: 4853, 1067: 4891}, - {2: 1858, 1858, 1858, 1858, 1858, 1858, 1858, 10: 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 50: 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 473: 1858, 481: 1858, 564: 4844, 785: 4885}, - {2: 2419, 2419, 2419, 2419, 2419, 2419, 2419, 10: 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 50: 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 2419, 473: 2419, 481: 2419, 581: 4410, 649: 4411, 828: 4853, 1067: 4854}, - {581: 4842}, - {473: 4838}, + {2: 1875, 1875, 1875, 1875, 1875, 1875, 1875, 10: 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 51: 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 476: 1875, 567: 4870, 790: 4984}, + {2511, 2511, 2511, 2511, 2511, 2511, 9: 2511, 491: 2511}, + {1875, 1875, 1875, 1875, 1875, 1875, 9: 1875, 92: 1875, 141: 1875, 476: 1875, 491: 1875, 567: 4870, 790: 4938, 816: 1875}, + {2: 1875, 1875, 1875, 1875, 1875, 1875, 1875, 10: 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 51: 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 567: 4870, 790: 4929}, + {584: 4436, 593: 4862, 4857, 645: 4860, 652: 4437, 678: 4861, 4858, 832: 4859, 1206: 4863}, // 2300 - {443, 443, 443, 443, 443, 443, 9: 443, 49: 443, 488: 443}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 2840, 2788, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 2869, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 2874, 2801, 2766, 2783, 2948, 3031, 3020, 2818, 2830, 2941, 2942, 2937, 2895, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 2876, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 2760, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 2880, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 2799, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 2866, 2865, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 2936, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 2824, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 2751, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 2882, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 2752, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3144, 2878, 3145, 3146, 2777, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3159, 3160, 3211, 3210, 3057, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 2918, 2935, 3058, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3177, 3178, 3179, 2931, 3130, 3189, 3190, 3201, 3185, 3186, 3187, 3220, 2877, 473: 3260, 475: 3239, 3258, 2755, 479: 3268, 482: 3272, 3276, 485: 3257, 3256, 3295, 492: 3230, 495: 3269, 504: 3275, 3293, 508: 3234, 530: 3264, 564: 3271, 567: 3294, 2753, 570: 3277, 3229, 3231, 3233, 3232, 3261, 3237, 3251, 3242, 3263, 3238, 582: 3270, 3262, 3267, 3273, 3283, 3336, 3284, 3285, 592: 3236, 3314, 595: 3254, 3255, 3309, 3310, 3311, 3312, 3313, 3265, 3291, 3296, 3306, 3307, 3300, 3315, 3316, 3317, 3301, 3319, 3320, 3302, 3318, 3297, 3305, 3303, 3289, 3321, 3322, 3266, 3326, 3278, 3279, 3282, 3325, 3331, 3330, 3332, 3329, 3333, 3328, 3327, 3324, 3274, 3323, 3281, 3280, 3286, 3287, 648: 2756, 661: 3244, 2762, 2763, 2761, 709: 3259, 3335, 3245, 3250, 3235, 3308, 3248, 3246, 3247, 3288, 3299, 3298, 3292, 3290, 3304, 3243, 3253, 3334, 3252, 3249, 2759, 2758, 2757, 4839}, - {49: 4840, 507: 3345, 509: 3343, 3344, 3342, 3340, 734: 3341, 3339}, - {2310, 2310, 2310, 2310, 2310, 2310, 9: 2310, 49: 2310, 149: 4433, 476: 4089, 4088, 488: 2310, 810: 4434, 934: 4684, 1040: 4841}, - {2265, 2265, 2265, 2265, 2265, 2265, 9: 2265, 49: 2265, 488: 2265}, + {584: 4923}, + {2: 2439, 2439, 2439, 2439, 2439, 2439, 2439, 10: 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 51: 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 476: 2439, 584: 4436, 652: 4437, 832: 4879, 1074: 4917}, + {2: 1875, 1875, 1875, 1875, 1875, 1875, 1875, 10: 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 51: 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 476: 1875, 484: 1875, 567: 4870, 790: 4911}, + {2: 2439, 2439, 2439, 2439, 2439, 2439, 2439, 10: 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 51: 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 2439, 476: 2439, 484: 2439, 584: 4436, 652: 4437, 832: 4879, 1074: 4880}, + {584: 4868}, // 2305 - {2: 1858, 1858, 1858, 1858, 1858, 1858, 1858, 10: 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 50: 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 473: 1858, 564: 4844, 785: 4843}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 473: 1854, 661: 4848, 2762, 2763, 2761, 878: 4847}, - {476: 4089, 4088, 810: 4845}, - {583: 4846}, - {1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 50: 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 1857, 473: 1857, 475: 1857, 481: 1857, 488: 1857, 570: 1857, 811: 1857}, + {476: 4864}, + {453, 453, 453, 453, 453, 453, 9: 453, 50: 453, 491: 453}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 2864, 2812, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 2893, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 2898, 2825, 2789, 2807, 2972, 3055, 3044, 2842, 2854, 2965, 2966, 2961, 2919, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 2900, 2885, 2881, 2973, 2997, 2783, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 2904, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 2823, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 2889, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 2890, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 2960, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 2848, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 2774, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 2906, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 2775, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3170, 2902, 3171, 3172, 2801, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3185, 3186, 3237, 3236, 3081, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 2942, 2959, 3082, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3203, 3204, 3205, 2955, 3156, 3215, 3216, 3227, 3211, 3212, 3213, 3246, 2901, 476: 3286, 478: 3265, 3284, 2778, 482: 3294, 485: 3298, 3302, 488: 3283, 3282, 3321, 495: 3256, 498: 3295, 507: 3301, 3319, 511: 3260, 533: 3290, 567: 3297, 570: 3320, 2776, 573: 3303, 3255, 3257, 3259, 3258, 3287, 3263, 3277, 3268, 3289, 3264, 585: 3296, 3288, 3293, 3299, 3309, 3362, 3310, 3311, 595: 3262, 3340, 598: 3280, 3281, 3335, 3336, 3337, 3338, 3339, 3291, 3317, 3322, 3332, 3333, 3326, 3341, 3342, 3343, 3327, 3345, 3346, 3328, 3344, 3323, 3331, 3329, 3315, 3347, 3348, 3292, 3352, 3304, 3305, 3308, 3351, 3357, 3356, 3358, 3355, 3359, 3354, 3353, 3350, 3300, 3349, 3307, 3306, 3312, 3313, 651: 2779, 664: 3270, 2785, 2786, 2784, 713: 3285, 3361, 3271, 3276, 3261, 3334, 3274, 3272, 3273, 3314, 3325, 3324, 3318, 3316, 3330, 3269, 3279, 3360, 3278, 3275, 2782, 2781, 2780, 4865}, + {50: 4866, 510: 3371, 512: 3369, 3370, 3368, 3366, 738: 3367, 3365}, + {2327, 2327, 2327, 2327, 2327, 2327, 9: 2327, 50: 2327, 152: 4459, 479: 4115, 4114, 491: 2327, 815: 4460, 939: 4710, 1045: 4867}, // 2310 - {473: 4849}, - {473: 1853}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 473: 4618, 661: 4143, 2762, 2763, 2761, 744: 4617, 827: 4616, 836: 4850}, - {9: 4627, 49: 4851}, - {644: 4611, 910: 4852}, + {2282, 2282, 2282, 2282, 2282, 2282, 9: 2282, 50: 2282, 491: 2282}, + {2: 1875, 1875, 1875, 1875, 1875, 1875, 1875, 10: 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 51: 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 476: 1875, 567: 4870, 790: 4869}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 476: 1871, 664: 4874, 2785, 2786, 2784, 882: 4873}, + {479: 4115, 4114, 815: 4871}, + {586: 4872}, // 2315 - {2266, 2266, 2266, 2266, 2266, 2266, 9: 2266, 49: 2266, 488: 2266}, - {2: 2418, 2418, 2418, 2418, 2418, 2418, 2418, 10: 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 50: 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 2418, 473: 2418, 481: 2418}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 473: 1854, 481: 1854, 661: 4856, 2762, 2763, 2761, 878: 4857, 942: 4855}, - {473: 4865}, - {84: 4863, 473: 1853, 481: 1853}, + {1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 51: 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 1874, 476: 1874, 478: 1874, 484: 1874, 491: 1874, 573: 1874, 816: 1874}, + {476: 4875}, + {476: 1870}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 476: 4644, 664: 4169, 2785, 2786, 2784, 748: 4643, 831: 4642, 841: 4876}, + {9: 4653, 50: 4877}, // 2320 - {473: 1844, 481: 4858}, - {143: 4861, 177: 4860, 193: 4862, 905: 4859}, - {473: 1843}, - {1837, 1837, 1837, 1837, 1837, 1837, 1837, 9: 1837, 19: 1837, 49: 1837, 83: 1837, 1837, 1837, 1837, 1837, 89: 1837, 472: 1837, 1837, 1837, 481: 1837, 488: 1837, 497: 1837}, - {1836, 1836, 1836, 1836, 1836, 1836, 1836, 9: 1836, 19: 1836, 49: 1836, 83: 1836, 1836, 1836, 1836, 1836, 89: 1836, 472: 1836, 1836, 1836, 481: 1836, 488: 1836, 497: 1836}, + {647: 4637, 915: 4878}, + {2283, 2283, 2283, 2283, 2283, 2283, 9: 2283, 50: 2283, 491: 2283}, + {2: 2438, 2438, 2438, 2438, 2438, 2438, 2438, 10: 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 51: 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 2438, 476: 2438, 484: 2438}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 476: 1871, 484: 1871, 664: 4882, 2785, 2786, 2784, 882: 4883, 947: 4881}, + {476: 4891}, // 2325 - {1835, 1835, 1835, 1835, 1835, 1835, 1835, 9: 1835, 19: 1835, 49: 1835, 83: 1835, 1835, 1835, 1835, 1835, 89: 1835, 472: 1835, 1835, 1835, 481: 1835, 488: 1835, 497: 1835}, - {143: 4861, 177: 4860, 193: 4862, 905: 4864}, - {473: 1842}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 473: 4618, 661: 4143, 2762, 2763, 2761, 744: 4617, 827: 4616, 836: 4866}, - {9: 4627, 49: 4867}, + {85: 4889, 476: 1870, 484: 1870}, + {476: 1861, 484: 4884}, + {146: 4887, 179: 4886, 195: 4888, 910: 4885}, + {476: 1860}, + {1854, 1854, 1854, 1854, 1854, 1854, 1854, 9: 1854, 19: 1854, 50: 1854, 84: 1854, 1854, 1854, 1854, 1854, 90: 1854, 475: 1854, 1854, 1854, 484: 1854, 491: 1854, 500: 1854}, // 2330 - {1852, 1852, 1852, 1852, 1852, 1852, 1852, 9: 1852, 19: 1852, 49: 1852, 84: 1852, 1852, 1852, 1852, 89: 1852, 474: 1852, 481: 1852, 488: 1852, 880: 4868}, - {2267, 2267, 2267, 2267, 2267, 2267, 4873, 9: 2267, 19: 4870, 49: 2267, 84: 4877, 4723, 4430, 4724, 89: 4429, 474: 4872, 481: 4876, 488: 2267, 856: 4874, 858: 4871, 869: 4875, 879: 4869}, - {1851, 1851, 1851, 1851, 1851, 1851, 1851, 9: 1851, 19: 1851, 49: 1851, 83: 1851, 1851, 1851, 1851, 1851, 89: 1851, 474: 1851, 481: 1851, 488: 1851, 497: 1851}, - {499: 4281, 508: 2047, 736: 4883}, - {1849, 1849, 1849, 1849, 1849, 1849, 1849, 9: 1849, 19: 1849, 49: 1849, 83: 1849, 1849, 1849, 1849, 1849, 89: 1849, 474: 1849, 481: 1849, 488: 1849, 497: 1849}, + {1853, 1853, 1853, 1853, 1853, 1853, 1853, 9: 1853, 19: 1853, 50: 1853, 84: 1853, 1853, 1853, 1853, 1853, 90: 1853, 475: 1853, 1853, 1853, 484: 1853, 491: 1853, 500: 1853}, + {1852, 1852, 1852, 1852, 1852, 1852, 1852, 9: 1852, 19: 1852, 50: 1852, 84: 1852, 1852, 1852, 1852, 1852, 90: 1852, 475: 1852, 1852, 1852, 484: 1852, 491: 1852, 500: 1852}, + {146: 4887, 179: 4886, 195: 4888, 910: 4890}, + {476: 1859}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 476: 4644, 664: 4169, 2785, 2786, 2784, 748: 4643, 831: 4642, 841: 4892}, // 2335 - {368: 4881}, - {475: 4880}, - {1846, 1846, 1846, 1846, 1846, 1846, 1846, 9: 1846, 19: 1846, 49: 1846, 83: 1846, 1846, 1846, 1846, 1846, 89: 1846, 474: 1846, 481: 1846, 488: 1846, 497: 1846}, - {1845, 1845, 1845, 1845, 1845, 1845, 1845, 9: 1845, 19: 1845, 49: 1845, 83: 1845, 1845, 1845, 1845, 1845, 89: 1845, 474: 1845, 481: 1845, 488: 1845, 497: 1845}, - {143: 4861, 177: 4860, 193: 4862, 905: 4879}, + {9: 4653, 50: 4893}, + {1869, 1869, 1869, 1869, 1869, 1869, 1869, 9: 1869, 19: 1869, 50: 1869, 85: 1869, 1869, 1869, 1869, 90: 1869, 477: 1869, 484: 1869, 491: 1869, 884: 4894}, + {2284, 2284, 2284, 2284, 2284, 2284, 4899, 9: 2284, 19: 4896, 50: 2284, 85: 4903, 4749, 4456, 4750, 90: 4455, 477: 4898, 484: 4902, 491: 2284, 860: 4900, 862: 4897, 873: 4901, 883: 4895}, + {1868, 1868, 1868, 1868, 1868, 1868, 1868, 9: 1868, 19: 1868, 50: 1868, 84: 1868, 1868, 1868, 1868, 1868, 90: 1868, 477: 1868, 484: 1868, 491: 1868, 500: 1868}, + {502: 4307, 511: 2064, 741: 4909}, // 2340 - {143: 4861, 177: 4860, 193: 4862, 905: 4878}, - {1838, 1838, 1838, 1838, 1838, 1838, 1838, 9: 1838, 19: 1838, 49: 1838, 83: 1838, 1838, 1838, 1838, 1838, 89: 1838, 472: 1838, 474: 1838, 481: 1838, 488: 1838, 497: 1838}, - {1839, 1839, 1839, 1839, 1839, 1839, 1839, 9: 1839, 19: 1839, 49: 1839, 83: 1839, 1839, 1839, 1839, 1839, 89: 1839, 472: 1839, 474: 1839, 481: 1839, 488: 1839, 497: 1839}, - {1847, 1847, 1847, 1847, 1847, 1847, 1847, 9: 1847, 19: 1847, 49: 1847, 83: 1847, 1847, 1847, 1847, 1847, 89: 1847, 474: 1847, 481: 1847, 488: 1847, 497: 1847}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 661: 4882, 2762, 2763, 2761}, + {1866, 1866, 1866, 1866, 1866, 1866, 1866, 9: 1866, 19: 1866, 50: 1866, 84: 1866, 1866, 1866, 1866, 1866, 90: 1866, 477: 1866, 484: 1866, 491: 1866, 500: 1866}, + {370: 4907}, + {478: 4906}, + {1863, 1863, 1863, 1863, 1863, 1863, 1863, 9: 1863, 19: 1863, 50: 1863, 84: 1863, 1863, 1863, 1863, 1863, 90: 1863, 477: 1863, 484: 1863, 491: 1863, 500: 1863}, + {1862, 1862, 1862, 1862, 1862, 1862, 1862, 9: 1862, 19: 1862, 50: 1862, 84: 1862, 1862, 1862, 1862, 1862, 90: 1862, 477: 1862, 484: 1862, 491: 1862, 500: 1862}, // 2345 - {1848, 1848, 1848, 1848, 1848, 1848, 1848, 9: 1848, 19: 1848, 49: 1848, 83: 1848, 1848, 1848, 1848, 1848, 89: 1848, 474: 1848, 481: 1848, 488: 1848, 497: 1848}, - {508: 2736, 733: 2735, 741: 4884}, - {1850, 1850, 1850, 1850, 1850, 1850, 1850, 9: 1850, 19: 1850, 49: 1850, 83: 1850, 1850, 1850, 1850, 1850, 89: 1850, 474: 1850, 481: 1850, 488: 1850, 497: 1850}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 473: 1854, 481: 1854, 661: 4856, 2762, 2763, 2761, 878: 4857, 942: 4886}, - {473: 4887}, + {146: 4887, 179: 4886, 195: 4888, 910: 4905}, + {146: 4887, 179: 4886, 195: 4888, 910: 4904}, + {1855, 1855, 1855, 1855, 1855, 1855, 1855, 9: 1855, 19: 1855, 50: 1855, 84: 1855, 1855, 1855, 1855, 1855, 90: 1855, 475: 1855, 477: 1855, 484: 1855, 491: 1855, 500: 1855}, + {1856, 1856, 1856, 1856, 1856, 1856, 1856, 9: 1856, 19: 1856, 50: 1856, 84: 1856, 1856, 1856, 1856, 1856, 90: 1856, 475: 1856, 477: 1856, 484: 1856, 491: 1856, 500: 1856}, + {1864, 1864, 1864, 1864, 1864, 1864, 1864, 9: 1864, 19: 1864, 50: 1864, 84: 1864, 1864, 1864, 1864, 1864, 90: 1864, 477: 1864, 484: 1864, 491: 1864, 500: 1864}, // 2350 - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 473: 4618, 661: 4143, 2762, 2763, 2761, 744: 4617, 827: 4616, 836: 4888}, - {9: 4627, 49: 4889}, - {1852, 1852, 1852, 1852, 1852, 1852, 1852, 9: 1852, 19: 1852, 49: 1852, 84: 1852, 1852, 1852, 1852, 89: 1852, 474: 1852, 481: 1852, 488: 1852, 880: 4890}, - {2268, 2268, 2268, 2268, 2268, 2268, 4873, 9: 2268, 19: 4870, 49: 2268, 84: 4877, 4723, 4430, 4724, 89: 4429, 474: 4872, 481: 4876, 488: 2268, 856: 4874, 858: 4871, 869: 4875, 879: 4869}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 473: 1854, 661: 4848, 2762, 2763, 2761, 878: 4892}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 664: 4908, 2785, 2786, 2784}, + {1865, 1865, 1865, 1865, 1865, 1865, 1865, 9: 1865, 19: 1865, 50: 1865, 84: 1865, 1865, 1865, 1865, 1865, 90: 1865, 477: 1865, 484: 1865, 491: 1865, 500: 1865}, + {511: 2759, 737: 2758, 745: 4910}, + {1867, 1867, 1867, 1867, 1867, 1867, 1867, 9: 1867, 19: 1867, 50: 1867, 84: 1867, 1867, 1867, 1867, 1867, 90: 1867, 477: 1867, 484: 1867, 491: 1867, 500: 1867}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 476: 1871, 484: 1871, 664: 4882, 2785, 2786, 2784, 882: 4883, 947: 4912}, // 2355 - {473: 4893}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 473: 4618, 661: 4143, 2762, 2763, 2761, 744: 4617, 827: 4616, 836: 4894}, - {9: 4627, 49: 4895}, - {1852, 1852, 1852, 1852, 1852, 1852, 1852, 9: 1852, 19: 1852, 49: 1852, 84: 1852, 1852, 1852, 1852, 89: 1852, 474: 1852, 481: 1852, 488: 1852, 880: 4896}, - {2269, 2269, 2269, 2269, 2269, 2269, 4873, 9: 2269, 19: 4870, 49: 2269, 84: 4877, 4723, 4430, 4724, 89: 4429, 474: 4872, 481: 4876, 488: 2269, 856: 4874, 858: 4871, 869: 4875, 879: 4869}, + {476: 4913}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 476: 4644, 664: 4169, 2785, 2786, 2784, 748: 4643, 831: 4642, 841: 4914}, + {9: 4653, 50: 4915}, + {1869, 1869, 1869, 1869, 1869, 1869, 1869, 9: 1869, 19: 1869, 50: 1869, 85: 1869, 1869, 1869, 1869, 90: 1869, 477: 1869, 484: 1869, 491: 1869, 884: 4916}, + {2285, 2285, 2285, 2285, 2285, 2285, 4899, 9: 2285, 19: 4896, 50: 2285, 85: 4903, 4749, 4456, 4750, 90: 4455, 477: 4898, 484: 4902, 491: 2285, 860: 4900, 862: 4897, 873: 4901, 883: 4895}, // 2360 - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 473: 1854, 481: 1854, 661: 4856, 2762, 2763, 2761, 878: 4857, 942: 4898}, - {473: 4899}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 473: 4618, 661: 4143, 2762, 2763, 2761, 744: 4617, 827: 4616, 836: 4900}, - {9: 4627, 49: 4901}, - {1852, 1852, 1852, 1852, 1852, 1852, 1852, 9: 1852, 19: 1852, 49: 1852, 84: 1852, 1852, 1852, 1852, 89: 1852, 474: 1852, 481: 1852, 488: 1852, 880: 4902}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 476: 1871, 664: 4874, 2785, 2786, 2784, 882: 4918}, + {476: 4919}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 476: 4644, 664: 4169, 2785, 2786, 2784, 748: 4643, 831: 4642, 841: 4920}, + {9: 4653, 50: 4921}, + {1869, 1869, 1869, 1869, 1869, 1869, 1869, 9: 1869, 19: 1869, 50: 1869, 85: 1869, 1869, 1869, 1869, 90: 1869, 477: 1869, 484: 1869, 491: 1869, 884: 4922}, // 2365 - {2270, 2270, 2270, 2270, 2270, 2270, 4873, 9: 2270, 19: 4870, 49: 2270, 84: 4877, 4723, 4430, 4724, 89: 4429, 474: 4872, 481: 4876, 488: 2270, 856: 4874, 858: 4871, 869: 4875, 879: 4869}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 661: 4904, 2762, 2763, 2761}, - {233: 4906, 241: 4908, 244: 4907, 1140: 4905}, - {473: 4909}, - {49: 2219, 473: 2219}, + {2286, 2286, 2286, 2286, 2286, 2286, 4899, 9: 2286, 19: 4896, 50: 2286, 85: 4903, 4749, 4456, 4750, 90: 4455, 477: 4898, 484: 4902, 491: 2286, 860: 4900, 862: 4897, 873: 4901, 883: 4895}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 476: 1871, 484: 1871, 664: 4882, 2785, 2786, 2784, 882: 4883, 947: 4924}, + {476: 4925}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 476: 4644, 664: 4169, 2785, 2786, 2784, 748: 4643, 831: 4642, 841: 4926}, + {9: 4653, 50: 4927}, // 2370 - {49: 2218, 473: 2218}, - {49: 2217, 473: 2217}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 661: 4143, 2762, 2763, 2761, 744: 4144, 808: 4910}, - {9: 4146, 49: 4911}, - {2487, 2487, 2487, 2487, 2487, 2487, 9: 2487, 488: 2487}, + {1869, 1869, 1869, 1869, 1869, 1869, 1869, 9: 1869, 19: 1869, 50: 1869, 85: 1869, 1869, 1869, 1869, 90: 1869, 477: 1869, 484: 1869, 491: 1869, 884: 4928}, + {2287, 2287, 2287, 2287, 2287, 2287, 4899, 9: 2287, 19: 4896, 50: 2287, 85: 4903, 4749, 4456, 4750, 90: 4455, 477: 4898, 484: 4902, 491: 2287, 860: 4900, 862: 4897, 873: 4901, 883: 4895}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 664: 4930, 2785, 2786, 2784}, + {236: 4932, 244: 4934, 247: 4933, 1148: 4931}, + {476: 4935}, // 2375 - {569, 569, 569, 569, 569, 569, 9: 569, 91: 569, 136: 4750, 473: 569, 488: 569, 811: 4749, 829: 4913}, - {2142, 2142, 2142, 2142, 2142, 2142, 9: 2142, 91: 4915, 473: 4916, 488: 2142, 1098: 4914}, - {2490, 2490, 2490, 2490, 2490, 2490, 9: 2490, 488: 2490}, - {508: 2736, 733: 4957}, - {488: 4919, 952: 4918, 1097: 4917}, + {50: 2236, 476: 2236}, + {50: 2235, 476: 2235}, + {50: 2234, 476: 2234}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 664: 4169, 2785, 2786, 2784, 748: 4170, 812: 4936}, + {9: 4172, 50: 4937}, // 2380 - {9: 4955, 49: 4954}, - {9: 2140, 49: 2140}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 661: 4920, 2762, 2763, 2761}, - {6: 2119, 2119, 9: 2119, 18: 2119, 20: 2119, 22: 2119, 2119, 2119, 2119, 2119, 2119, 49: 2119, 148: 4925, 348: 4924, 473: 2119, 479: 4923, 495: 4922, 649: 2119, 1275: 4921}, - {6: 2132, 2132, 9: 2132, 18: 2132, 20: 2132, 22: 2132, 2132, 2132, 2132, 2132, 2132, 49: 2132, 473: 2132, 649: 2132, 951: 4941}, + {2507, 2507, 2507, 2507, 2507, 2507, 9: 2507, 491: 2507}, + {582, 582, 582, 582, 582, 582, 9: 582, 92: 582, 141: 4776, 476: 582, 491: 582, 816: 4775, 833: 4939}, + {2159, 2159, 2159, 2159, 2159, 2159, 9: 2159, 92: 4941, 476: 4942, 491: 2159, 1106: 4940}, + {2510, 2510, 2510, 2510, 2510, 2510, 9: 2510, 491: 2510}, + {511: 2759, 737: 4983}, // 2385 - {152: 4926, 544: 4927}, - {6: 2116, 2116, 9: 2116, 18: 2116, 20: 2116, 22: 2116, 2116, 2116, 2116, 2116, 2116, 49: 2116, 473: 2116, 649: 2116}, - {6: 2114, 2114, 9: 2114, 18: 2114, 20: 2114, 22: 2114, 2114, 2114, 2114, 2114, 2114, 49: 2114, 473: 2114, 649: 2114}, - {6: 2113, 2113, 9: 2113, 18: 2113, 20: 2113, 22: 2113, 2113, 2113, 2113, 2113, 2113, 49: 2113, 473: 2113, 649: 2113}, - {157: 4936}, + {491: 4945, 957: 4944, 1105: 4943}, + {9: 4981, 50: 4980}, + {9: 2157, 50: 2157}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 664: 4946, 2785, 2786, 2784}, + {6: 2136, 2136, 9: 2136, 18: 2136, 20: 2136, 22: 2136, 2136, 2136, 2136, 2136, 2136, 50: 2136, 151: 4951, 350: 4950, 476: 2136, 482: 4949, 498: 4948, 652: 2136, 1283: 4947}, // 2390 - {473: 4928}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 2840, 2788, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 2869, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 2874, 2801, 2766, 2783, 2948, 3031, 3020, 2818, 2830, 2941, 2942, 2937, 2895, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 2876, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 2760, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 2880, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 2799, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 2866, 2865, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 2936, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 2824, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 2751, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 2882, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 2752, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3144, 2878, 3145, 3146, 2777, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3159, 3160, 3211, 3210, 3057, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 2918, 2935, 3058, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3177, 3178, 3179, 2931, 3130, 3189, 3190, 3201, 3185, 3186, 3187, 3220, 2877, 473: 3260, 475: 3239, 3258, 479: 3268, 482: 3272, 3276, 485: 3257, 3256, 3295, 492: 3230, 495: 3269, 504: 3275, 3293, 508: 3234, 530: 3264, 564: 3271, 567: 3294, 3349, 570: 3277, 3229, 3231, 3233, 3232, 3261, 3237, 3251, 3242, 3263, 3238, 582: 3270, 3262, 3267, 3273, 3283, 3336, 3284, 3285, 592: 3236, 3314, 595: 3254, 3255, 3309, 3310, 3311, 3312, 3313, 3265, 3291, 3296, 3306, 3307, 3300, 3315, 3316, 3317, 3301, 3319, 3320, 3302, 3318, 3297, 3305, 3303, 3289, 3321, 3322, 3266, 3326, 3278, 3279, 3282, 3325, 3331, 3330, 3332, 3329, 3333, 3328, 3327, 3324, 3274, 3323, 3281, 3280, 3286, 3287, 655: 4930, 661: 3244, 2762, 2763, 2761, 709: 3259, 3335, 3245, 3250, 3235, 3308, 3248, 3246, 3247, 3288, 3299, 3298, 3292, 3290, 3304, 3243, 3253, 3334, 3252, 3249, 4931, 945: 4932, 1079: 4929}, - {9: 4934, 49: 4933}, - {9: 1934, 49: 1934}, - {9: 1933, 49: 1933, 485: 3686, 3687, 3692, 520: 3688, 547: 3689, 3690, 3683, 3693, 3682, 3691, 3684, 3685}, + {6: 2149, 2149, 9: 2149, 18: 2149, 20: 2149, 22: 2149, 2149, 2149, 2149, 2149, 2149, 50: 2149, 476: 2149, 652: 2149, 956: 4967}, + {154: 4952, 547: 4953}, + {6: 2133, 2133, 9: 2133, 18: 2133, 20: 2133, 22: 2133, 2133, 2133, 2133, 2133, 2133, 50: 2133, 476: 2133, 652: 2133}, + {6: 2131, 2131, 9: 2131, 18: 2131, 20: 2131, 22: 2131, 2131, 2131, 2131, 2131, 2131, 50: 2131, 476: 2131, 652: 2131}, + {6: 2130, 2130, 9: 2130, 18: 2130, 20: 2130, 22: 2130, 2130, 2130, 2130, 2130, 2130, 50: 2130, 476: 2130, 652: 2130}, // 2395 - {9: 1921, 49: 1921}, - {6: 2115, 2115, 9: 2115, 18: 2115, 20: 2115, 22: 2115, 2115, 2115, 2115, 2115, 2115, 49: 2115, 473: 2115, 649: 2115}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 2840, 2788, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 2869, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 2874, 2801, 2766, 2783, 2948, 3031, 3020, 2818, 2830, 2941, 2942, 2937, 2895, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 2876, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 2760, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 2880, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 2799, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 2866, 2865, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 2936, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 2824, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 2751, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 2882, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 2752, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3144, 2878, 3145, 3146, 2777, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3159, 3160, 3211, 3210, 3057, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 2918, 2935, 3058, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3177, 3178, 3179, 2931, 3130, 3189, 3190, 3201, 3185, 3186, 3187, 3220, 2877, 473: 3260, 475: 3239, 3258, 479: 3268, 482: 3272, 3276, 485: 3257, 3256, 3295, 492: 3230, 495: 3269, 504: 3275, 3293, 508: 3234, 530: 3264, 564: 3271, 567: 3294, 3349, 570: 3277, 3229, 3231, 3233, 3232, 3261, 3237, 3251, 3242, 3263, 3238, 582: 3270, 3262, 3267, 3273, 3283, 3336, 3284, 3285, 592: 3236, 3314, 595: 3254, 3255, 3309, 3310, 3311, 3312, 3313, 3265, 3291, 3296, 3306, 3307, 3300, 3315, 3316, 3317, 3301, 3319, 3320, 3302, 3318, 3297, 3305, 3303, 3289, 3321, 3322, 3266, 3326, 3278, 3279, 3282, 3325, 3331, 3330, 3332, 3329, 3333, 3328, 3327, 3324, 3274, 3323, 3281, 3280, 3286, 3287, 655: 4930, 661: 3244, 2762, 2763, 2761, 709: 3259, 3335, 3245, 3250, 3235, 3308, 3248, 3246, 3247, 3288, 3299, 3298, 3292, 3290, 3304, 3243, 3253, 3334, 3252, 3249, 4931, 945: 4935}, - {9: 1920, 49: 1920}, - {473: 4938, 655: 4937}, + {159: 4962}, + {476: 4954}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 2864, 2812, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 2893, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 2898, 2825, 2789, 2807, 2972, 3055, 3044, 2842, 2854, 2965, 2966, 2961, 2919, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 2900, 2885, 2881, 2973, 2997, 2783, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 2904, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 2823, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 2889, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 2890, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 2960, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 2848, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 2774, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 2906, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 2775, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3170, 2902, 3171, 3172, 2801, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3185, 3186, 3237, 3236, 3081, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 2942, 2959, 3082, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3203, 3204, 3205, 2955, 3156, 3215, 3216, 3227, 3211, 3212, 3213, 3246, 2901, 476: 3286, 478: 3265, 3284, 482: 3294, 485: 3298, 3302, 488: 3283, 3282, 3321, 495: 3256, 498: 3295, 507: 3301, 3319, 511: 3260, 533: 3290, 567: 3297, 570: 3320, 3375, 573: 3303, 3255, 3257, 3259, 3258, 3287, 3263, 3277, 3268, 3289, 3264, 585: 3296, 3288, 3293, 3299, 3309, 3362, 3310, 3311, 595: 3262, 3340, 598: 3280, 3281, 3335, 3336, 3337, 3338, 3339, 3291, 3317, 3322, 3332, 3333, 3326, 3341, 3342, 3343, 3327, 3345, 3346, 3328, 3344, 3323, 3331, 3329, 3315, 3347, 3348, 3292, 3352, 3304, 3305, 3308, 3351, 3357, 3356, 3358, 3355, 3359, 3354, 3353, 3350, 3300, 3349, 3307, 3306, 3312, 3313, 658: 4956, 664: 3270, 2785, 2786, 2784, 713: 3285, 3361, 3271, 3276, 3261, 3334, 3274, 3272, 3273, 3314, 3325, 3324, 3318, 3316, 3330, 3269, 3279, 3360, 3278, 3275, 4957, 950: 4958, 1087: 4955}, + {9: 4960, 50: 4959}, + {9: 1951, 50: 1951}, // 2400 - {6: 2118, 2118, 9: 2118, 18: 2118, 20: 2118, 22: 2118, 2118, 2118, 2118, 2118, 2118, 49: 2118, 473: 2118, 649: 2118}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 2840, 2788, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 2869, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 2874, 2801, 2766, 2783, 2948, 3031, 3020, 2818, 2830, 2941, 2942, 2937, 2895, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 2876, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 2760, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 2880, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 2799, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 2866, 2865, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 2936, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 2824, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 2751, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 2882, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 2752, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3144, 2878, 3145, 3146, 2777, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3159, 3160, 3211, 3210, 3057, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 2918, 2935, 3058, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3177, 3178, 3179, 2931, 3130, 3189, 3190, 3201, 3185, 3186, 3187, 3220, 2877, 473: 3260, 475: 3239, 3258, 479: 3268, 482: 3272, 3276, 485: 3257, 3256, 3295, 492: 3230, 495: 3269, 504: 3275, 3293, 508: 3234, 530: 3264, 564: 3271, 567: 3294, 3349, 570: 3277, 3229, 3231, 3233, 3232, 3261, 3237, 3251, 3242, 3263, 3238, 582: 3270, 3262, 3267, 3273, 3283, 3336, 3284, 3285, 592: 3236, 3314, 595: 3254, 3255, 3309, 3310, 3311, 3312, 3313, 3265, 3291, 3296, 3306, 3307, 3300, 3315, 3316, 3317, 3301, 3319, 3320, 3302, 3318, 3297, 3305, 3303, 3289, 3321, 3322, 3266, 3326, 3278, 3279, 3282, 3325, 3331, 3330, 3332, 3329, 3333, 3328, 3327, 3324, 3274, 3323, 3281, 3280, 3286, 3287, 655: 4930, 661: 3244, 2762, 2763, 2761, 709: 3259, 3335, 3245, 3250, 3235, 3308, 3248, 3246, 3247, 3288, 3299, 3298, 3292, 3290, 3304, 3243, 3253, 3334, 3252, 3249, 4931, 945: 4932, 1079: 4939}, - {9: 4934, 49: 4940}, - {6: 2117, 2117, 9: 2117, 18: 2117, 20: 2117, 22: 2117, 2117, 2117, 2117, 2117, 2117, 49: 2117, 473: 2117, 649: 2117}, - {6: 4241, 4945, 9: 2137, 18: 4197, 20: 4249, 22: 4242, 4245, 4244, 4247, 4248, 4250, 49: 2137, 473: 4943, 649: 4246, 781: 4251, 813: 4944, 1317: 4942}, + {9: 1950, 50: 1950, 488: 3712, 3713, 3718, 523: 3714, 550: 3715, 3716, 3709, 3719, 3708, 3717, 3710, 3711}, + {9: 1938, 50: 1938}, + {6: 2132, 2132, 9: 2132, 18: 2132, 20: 2132, 22: 2132, 2132, 2132, 2132, 2132, 2132, 50: 2132, 476: 2132, 652: 2132}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 2864, 2812, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 2893, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 2898, 2825, 2789, 2807, 2972, 3055, 3044, 2842, 2854, 2965, 2966, 2961, 2919, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 2900, 2885, 2881, 2973, 2997, 2783, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 2904, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 2823, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 2889, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 2890, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 2960, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 2848, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 2774, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 2906, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 2775, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3170, 2902, 3171, 3172, 2801, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3185, 3186, 3237, 3236, 3081, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 2942, 2959, 3082, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3203, 3204, 3205, 2955, 3156, 3215, 3216, 3227, 3211, 3212, 3213, 3246, 2901, 476: 3286, 478: 3265, 3284, 482: 3294, 485: 3298, 3302, 488: 3283, 3282, 3321, 495: 3256, 498: 3295, 507: 3301, 3319, 511: 3260, 533: 3290, 567: 3297, 570: 3320, 3375, 573: 3303, 3255, 3257, 3259, 3258, 3287, 3263, 3277, 3268, 3289, 3264, 585: 3296, 3288, 3293, 3299, 3309, 3362, 3310, 3311, 595: 3262, 3340, 598: 3280, 3281, 3335, 3336, 3337, 3338, 3339, 3291, 3317, 3322, 3332, 3333, 3326, 3341, 3342, 3343, 3327, 3345, 3346, 3328, 3344, 3323, 3331, 3329, 3315, 3347, 3348, 3292, 3352, 3304, 3305, 3308, 3351, 3357, 3356, 3358, 3355, 3359, 3354, 3353, 3350, 3300, 3349, 3307, 3306, 3312, 3313, 658: 4956, 664: 3270, 2785, 2786, 2784, 713: 3285, 3361, 3271, 3276, 3261, 3334, 3274, 3272, 3273, 3314, 3325, 3324, 3318, 3316, 3330, 3269, 3279, 3360, 3278, 3275, 4957, 950: 4961}, + {9: 1937, 50: 1937}, // 2405 - {9: 2138, 49: 2138}, - {90: 4948, 1142: 4947, 1316: 4946}, - {2131, 2131, 6: 2131, 2131, 9: 2131, 18: 2131, 20: 2131, 22: 2131, 2131, 2131, 2131, 2131, 2131, 49: 2131, 473: 2131, 649: 2131}, - {22: 4381}, - {9: 4952, 49: 4951}, + {476: 4964, 658: 4963}, + {6: 2135, 2135, 9: 2135, 18: 2135, 20: 2135, 22: 2135, 2135, 2135, 2135, 2135, 2135, 50: 2135, 476: 2135, 652: 2135}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 2864, 2812, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 2893, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 2898, 2825, 2789, 2807, 2972, 3055, 3044, 2842, 2854, 2965, 2966, 2961, 2919, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 2900, 2885, 2881, 2973, 2997, 2783, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 2904, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 2823, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 2889, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 2890, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 2960, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 2848, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 2774, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 2906, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 2775, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3170, 2902, 3171, 3172, 2801, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3185, 3186, 3237, 3236, 3081, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 2942, 2959, 3082, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3203, 3204, 3205, 2955, 3156, 3215, 3216, 3227, 3211, 3212, 3213, 3246, 2901, 476: 3286, 478: 3265, 3284, 482: 3294, 485: 3298, 3302, 488: 3283, 3282, 3321, 495: 3256, 498: 3295, 507: 3301, 3319, 511: 3260, 533: 3290, 567: 3297, 570: 3320, 3375, 573: 3303, 3255, 3257, 3259, 3258, 3287, 3263, 3277, 3268, 3289, 3264, 585: 3296, 3288, 3293, 3299, 3309, 3362, 3310, 3311, 595: 3262, 3340, 598: 3280, 3281, 3335, 3336, 3337, 3338, 3339, 3291, 3317, 3322, 3332, 3333, 3326, 3341, 3342, 3343, 3327, 3345, 3346, 3328, 3344, 3323, 3331, 3329, 3315, 3347, 3348, 3292, 3352, 3304, 3305, 3308, 3351, 3357, 3356, 3358, 3355, 3359, 3354, 3353, 3350, 3300, 3349, 3307, 3306, 3312, 3313, 658: 4956, 664: 3270, 2785, 2786, 2784, 713: 3285, 3361, 3271, 3276, 3261, 3334, 3274, 3272, 3273, 3314, 3325, 3324, 3318, 3316, 3330, 3269, 3279, 3360, 3278, 3275, 4957, 950: 4958, 1087: 4965}, + {9: 4960, 50: 4966}, + {6: 2134, 2134, 9: 2134, 18: 2134, 20: 2134, 22: 2134, 2134, 2134, 2134, 2134, 2134, 50: 2134, 476: 2134, 652: 2134}, // 2410 - {9: 2135, 49: 2135}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 661: 4949, 2762, 2763, 2761}, - {6: 2132, 2132, 9: 2132, 18: 2132, 20: 2132, 22: 2132, 2132, 2132, 2132, 2132, 2132, 49: 2132, 649: 2132, 951: 4950}, - {6: 4241, 4945, 9: 2133, 18: 4197, 20: 4249, 22: 4242, 4245, 4244, 4247, 4248, 4250, 49: 2133, 649: 4246, 781: 4251, 813: 4944}, - {9: 2136, 49: 2136}, + {6: 4267, 4971, 9: 2154, 18: 4223, 20: 4275, 22: 4268, 4271, 4270, 4273, 4274, 4276, 50: 2154, 476: 4969, 652: 4272, 785: 4277, 818: 4970, 1326: 4968}, + {9: 2155, 50: 2155}, + {91: 4974, 1150: 4973, 1325: 4972}, + {2148, 2148, 6: 2148, 2148, 9: 2148, 18: 2148, 20: 2148, 22: 2148, 2148, 2148, 2148, 2148, 2148, 50: 2148, 476: 2148, 652: 2148}, + {22: 4407}, // 2415 - {90: 4948, 1142: 4953}, - {9: 2134, 49: 2134}, - {2141, 2141, 2141, 2141, 2141, 2141, 9: 2141, 472: 2141, 2141, 2141, 478: 2141, 488: 2141, 2141, 495: 2141, 504: 2141, 569: 2141, 646: 2141}, - {488: 4919, 952: 4956}, - {9: 2139, 49: 2139}, + {9: 4978, 50: 4977}, + {9: 2152, 50: 2152}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 664: 4975, 2785, 2786, 2784}, + {6: 2149, 2149, 9: 2149, 18: 2149, 20: 2149, 22: 2149, 2149, 2149, 2149, 2149, 2149, 50: 2149, 652: 2149, 956: 4976}, + {6: 4267, 4971, 9: 2150, 18: 4223, 20: 4275, 22: 4268, 4271, 4270, 4273, 4274, 4276, 50: 2150, 652: 4272, 785: 4277, 818: 4970}, // 2420 - {2489, 2489, 2489, 2489, 2489, 2489, 9: 2489, 488: 2489}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 473: 4960, 661: 4143, 2762, 2763, 2761, 744: 4456, 848: 4959}, - {2415, 2415, 2415, 2415, 2415, 2415, 9: 2415, 4731, 4732, 488: 2415, 929: 4968}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 581: 2406, 590: 2406, 2406, 642: 2406, 4589, 649: 2406, 661: 4143, 2762, 2763, 2761, 675: 2406, 2406, 744: 4456, 833: 4830, 848: 4962, 903: 4963, 968: 4964, 1145: 4961}, - {9: 4966, 49: 4965}, + {9: 2153, 50: 2153}, + {91: 4974, 1150: 4979}, + {9: 2151, 50: 2151}, + {2158, 2158, 2158, 2158, 2158, 2158, 9: 2158, 475: 2158, 2158, 2158, 481: 2158, 491: 2158, 2158, 498: 2158, 507: 2158, 572: 2158, 649: 2158}, + {491: 4945, 957: 4982}, // 2425 - {9: 440, 49: 440}, - {9: 439, 49: 439}, - {9: 438, 49: 438}, - {2492, 2492, 2492, 2492, 2492, 2492, 9: 2492, 488: 2492}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 581: 2406, 590: 2406, 2406, 642: 2406, 4589, 649: 2406, 661: 4143, 2762, 2763, 2761, 675: 2406, 2406, 744: 4456, 833: 4830, 848: 4962, 903: 4963, 968: 4967}, + {9: 2156, 50: 2156}, + {2509, 2509, 2509, 2509, 2509, 2509, 9: 2509, 491: 2509}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 476: 4986, 664: 4169, 2785, 2786, 2784, 748: 4482, 853: 4985}, + {2435, 2435, 2435, 2435, 2435, 2435, 9: 2435, 4757, 4758, 491: 2435, 934: 4994}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 584: 2426, 593: 2426, 2426, 645: 2426, 4615, 652: 2426, 664: 4169, 2785, 2786, 2784, 678: 2426, 2426, 748: 4482, 837: 4856, 853: 4988, 908: 4989, 973: 4990, 1153: 4987}, // 2430 - {9: 437, 49: 437}, - {2493, 2493, 2493, 2493, 2493, 2493, 9: 2493, 488: 2493}, - {16: 3836, 505: 3837, 647: 3835, 773: 4970}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 475: 3490, 479: 4972, 530: 3761, 661: 3491, 2762, 2763, 2761, 738: 3760, 807: 4971}, - {267, 267, 267, 267, 267, 267, 9: 267, 484: 4974, 488: 267, 1089: 4976}, + {9: 4992, 50: 4991}, + {9: 450, 50: 450}, + {9: 449, 50: 449}, + {9: 448, 50: 448}, + {2512, 2512, 2512, 2512, 2512, 2512, 9: 2512, 491: 2512}, // 2435 - {267, 267, 267, 267, 267, 267, 9: 267, 484: 4974, 488: 267, 1089: 4973}, - {2494, 2494, 2494, 2494, 2494, 2494, 9: 2494, 488: 2494}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 475: 3490, 530: 3489, 661: 3491, 2762, 2763, 2761, 738: 3488, 872: 4975}, - {266, 266, 266, 266, 266, 266, 9: 266, 488: 266}, - {2495, 2495, 2495, 2495, 2495, 2495, 9: 2495, 488: 2495}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 584: 2426, 593: 2426, 2426, 645: 2426, 4615, 652: 2426, 664: 4169, 2785, 2786, 2784, 678: 2426, 2426, 748: 4482, 837: 4856, 853: 4988, 908: 4989, 973: 4993}, + {9: 447, 50: 447}, + {2513, 2513, 2513, 2513, 2513, 2513, 9: 2513, 491: 2513}, + {16: 3862, 508: 3863, 650: 3861, 779: 4996}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 478: 3516, 482: 4998, 533: 3787, 664: 3517, 2785, 2786, 2784, 742: 3786, 811: 4997}, // 2440 - {191: 4978}, - {508: 2736, 733: 2735, 741: 4979}, - {2499, 2499, 2499, 2499, 2499, 2499, 9: 2499, 184: 4980, 488: 2499, 1077: 4981}, - {267: 4982}, - {2496, 2496, 2496, 2496, 2496, 2496, 9: 2496, 488: 2496}, + {277, 277, 277, 277, 277, 277, 9: 277, 487: 5000, 491: 277, 1097: 5002}, + {277, 277, 277, 277, 277, 277, 9: 277, 487: 5000, 491: 277, 1097: 4999}, + {2514, 2514, 2514, 2514, 2514, 2514, 9: 2514, 491: 2514}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 478: 3516, 533: 3515, 664: 3517, 2785, 2786, 2784, 742: 3514, 876: 5001}, + {276, 276, 276, 276, 276, 276, 9: 276, 491: 276}, // 2445 - {475: 4984, 1313: 4983}, - {2498, 2498, 2498, 2498, 2498, 2498, 9: 4985, 16: 2498, 18: 2498, 21: 2498, 479: 2498, 484: 2498, 488: 2498, 505: 2498, 2498, 647: 2498}, - {265, 265, 265, 265, 265, 265, 9: 265, 16: 265, 18: 265, 21: 265, 479: 265, 484: 265, 488: 265, 505: 265, 265, 647: 265}, - {475: 4986}, - {264, 264, 264, 264, 264, 264, 9: 264, 16: 264, 18: 264, 21: 264, 479: 264, 484: 264, 488: 264, 505: 264, 264, 647: 264}, + {2515, 2515, 2515, 2515, 2515, 2515, 9: 2515, 491: 2515}, + {193: 5004}, + {511: 2759, 737: 2758, 745: 5005}, + {2519, 2519, 2519, 2519, 2519, 2519, 9: 2519, 186: 5006, 491: 2519, 1084: 5007}, + {270: 5008}, // 2450 - {8: 399, 29: 399}, - {393, 393, 393, 393, 393, 393, 393, 393, 393, 393, 15: 393, 393, 393, 393, 393, 393, 393, 393, 393, 393, 393, 393, 393, 393, 393, 393, 393, 393, 393, 393, 393, 393, 393, 393, 393, 393, 393, 393, 393, 393, 393, 393, 393, 472: 393, 393, 393, 478: 393, 393, 393, 484: 393, 488: 393, 393, 495: 393, 503: 393, 393, 393, 569: 393, 646: 393, 393, 649: 393}, - {6: 4241, 4243, 400, 15: 4260, 2176, 4258, 4197, 4262, 4249, 4278, 4242, 4245, 4244, 4247, 4248, 4250, 4257, 400, 4268, 4269, 4255, 4256, 4261, 4263, 4275, 4274, 4280, 4276, 4273, 4266, 4271, 4272, 4265, 4267, 4270, 4259, 479: 4240, 4277, 484: 2176, 503: 4987, 505: 2176, 647: 2176, 649: 4246, 781: 4251, 792: 4253, 813: 4252, 835: 4254, 838: 4264, 842: 4990}, - {392, 392, 392, 392, 392, 392, 392, 392, 392, 392, 15: 392, 392, 392, 392, 392, 392, 392, 392, 392, 392, 392, 392, 392, 392, 392, 392, 392, 392, 392, 392, 392, 392, 392, 392, 392, 392, 392, 392, 392, 392, 392, 392, 392, 472: 392, 392, 392, 478: 392, 392, 392, 484: 392, 488: 392, 392, 495: 392, 503: 392, 392, 392, 569: 392, 646: 392, 392, 649: 392}, - {475: 4993, 479: 4992}, + {2516, 2516, 2516, 2516, 2516, 2516, 9: 2516, 491: 2516}, + {478: 5010, 1322: 5009}, + {2518, 2518, 2518, 2518, 2518, 2518, 9: 5011, 16: 2518, 18: 2518, 21: 2518, 482: 2518, 487: 2518, 491: 2518, 508: 2518, 2518, 650: 2518}, + {275, 275, 275, 275, 275, 275, 9: 275, 16: 275, 18: 275, 21: 275, 482: 275, 487: 275, 491: 275, 508: 275, 275, 650: 275}, + {478: 5012}, // 2455 - {2508, 2508, 2508, 2508, 2508, 2508, 9: 2508, 488: 2508}, - {2507, 2507, 2507, 2507, 2507, 2507, 9: 2507, 488: 2507}, - {475: 4996, 479: 4995}, - {2510, 2510, 2510, 2510, 2510, 2510, 9: 2510, 488: 2510}, - {2509, 2509, 2509, 2509, 2509, 2509, 9: 2509, 488: 2509}, + {274, 274, 274, 274, 274, 274, 9: 274, 16: 274, 18: 274, 21: 274, 482: 274, 487: 274, 491: 274, 508: 274, 274, 650: 274}, + {8: 409, 29: 409}, + {403, 403, 403, 403, 403, 403, 403, 403, 403, 403, 15: 403, 403, 403, 403, 403, 403, 403, 403, 403, 403, 403, 403, 403, 403, 403, 403, 403, 403, 403, 403, 403, 403, 403, 403, 403, 403, 403, 403, 403, 403, 403, 403, 403, 475: 403, 403, 403, 481: 403, 403, 403, 487: 403, 491: 403, 403, 498: 403, 506: 403, 403, 403, 572: 403, 649: 403, 403, 652: 403}, + {6: 4267, 4269, 410, 15: 4286, 2193, 4284, 4223, 4288, 4275, 4304, 4268, 4271, 4270, 4273, 4274, 4276, 4283, 410, 4294, 4295, 4281, 4282, 4287, 4289, 4301, 4300, 4306, 4302, 4299, 4292, 4297, 4298, 4291, 4293, 4296, 4285, 482: 4266, 4303, 487: 2193, 506: 5013, 508: 2193, 650: 2193, 652: 4272, 785: 4277, 797: 4279, 818: 4278, 840: 4280, 843: 4290, 847: 5016}, + {402, 402, 402, 402, 402, 402, 402, 402, 402, 402, 15: 402, 402, 402, 402, 402, 402, 402, 402, 402, 402, 402, 402, 402, 402, 402, 402, 402, 402, 402, 402, 402, 402, 402, 402, 402, 402, 402, 402, 402, 402, 402, 402, 402, 475: 402, 402, 402, 481: 402, 402, 402, 487: 402, 491: 402, 402, 498: 402, 506: 402, 402, 402, 572: 402, 649: 402, 402, 652: 402}, // 2460 - {2: 2047, 2047, 2047, 2047, 2047, 2047, 2047, 10: 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 50: 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 475: 2047, 479: 2047, 499: 4281, 506: 4999, 736: 4998}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 475: 5001, 479: 5003, 661: 5004, 2762, 2763, 2761, 886: 5002}, - {479: 5000}, - {2511, 2511, 2511, 2511, 2511, 2511, 2511, 2511, 2511, 2511, 15: 2511, 2511, 2511, 2511, 2511, 2511, 2511, 2511, 2511, 2511, 2511, 2511, 2511, 2511, 2511, 2511, 2511, 2511, 2511, 2511, 2511, 2511, 2511, 2511, 2511, 2511, 2511, 2511, 2511, 2511, 2511, 2511, 2511, 49: 2511, 472: 2511, 2511, 2511, 478: 2511, 2511, 2511, 484: 2511, 488: 2511, 2511, 495: 2511, 503: 2511, 2511, 2511, 2511, 569: 2511, 646: 2511, 2511, 649: 2511}, - {2514, 2514, 2514, 2514, 2514, 2514, 2514, 2514, 2514, 2514, 15: 2514, 2514, 2514, 2514, 2514, 2514, 2514, 2514, 2514, 2514, 2514, 2514, 2514, 2514, 2514, 2514, 2514, 2514, 2514, 2514, 2514, 2514, 2514, 2514, 2514, 2514, 2514, 2514, 2514, 2514, 2514, 2514, 2514, 49: 2514, 472: 2514, 2514, 2514, 478: 2514, 2514, 2514, 484: 2514, 488: 2514, 2514, 495: 2514, 503: 2514, 2514, 2514, 2514, 569: 2514, 646: 2514, 2514, 649: 2514}, + {478: 5019, 482: 5018}, + {2528, 2528, 2528, 2528, 2528, 2528, 9: 2528, 491: 2528}, + {2527, 2527, 2527, 2527, 2527, 2527, 9: 2527, 491: 2527}, + {478: 5022, 482: 5021}, + {2530, 2530, 2530, 2530, 2530, 2530, 9: 2530, 491: 2530}, // 2465 - {2513, 2513, 2513, 2513, 2513, 2513, 2513, 2513, 2513, 2513, 15: 2513, 2513, 2513, 2513, 2513, 2513, 2513, 2513, 2513, 2513, 2513, 2513, 2513, 2513, 2513, 2513, 2513, 2513, 2513, 2513, 2513, 2513, 2513, 2513, 2513, 2513, 2513, 2513, 2513, 2513, 2513, 2513, 2513, 49: 2513, 472: 2513, 2513, 2513, 478: 2513, 2513, 2513, 484: 2513, 488: 2513, 2513, 495: 2513, 503: 2513, 2513, 2513, 2513, 569: 2513, 646: 2513, 2513, 649: 2513}, - {2512, 2512, 2512, 2512, 2512, 2512, 2512, 2512, 2512, 2512, 15: 2512, 2512, 2512, 2512, 2512, 2512, 2512, 2512, 2512, 2512, 2512, 2512, 2512, 2512, 2512, 2512, 2512, 2512, 2512, 2512, 2512, 2512, 2512, 2512, 2512, 2512, 2512, 2512, 2512, 2512, 2512, 2512, 2512, 49: 2512, 472: 2512, 2512, 2512, 478: 2512, 2512, 2512, 484: 2512, 488: 2512, 2512, 495: 2512, 503: 2512, 2512, 2512, 2512, 569: 2512, 646: 2512, 2512, 649: 2512}, - {2192, 2192, 2192, 2192, 2192, 2192, 2192, 2192, 2192, 2192, 15: 2192, 2192, 2192, 2192, 2192, 2192, 2192, 2192, 2192, 2192, 2192, 2192, 2192, 2192, 2192, 2192, 2192, 2192, 2192, 2192, 2192, 2192, 2192, 2192, 2192, 2192, 2192, 2192, 2192, 2192, 2192, 2192, 2192, 49: 2192, 88: 2192, 92: 2192, 2192, 2192, 2192, 2192, 2192, 2192, 2192, 2192, 2192, 472: 2192, 2192, 2192, 478: 2192, 2192, 2192, 484: 2192, 488: 2192, 2192, 495: 2192, 503: 2192, 2192, 2192, 2192, 569: 2192, 646: 2192, 2192, 649: 2192}, - {191: 5010}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 661: 4754, 2762, 2763, 2761, 786: 5007}, + {2529, 2529, 2529, 2529, 2529, 2529, 9: 2529, 491: 2529}, + {2: 2064, 2064, 2064, 2064, 2064, 2064, 2064, 10: 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 51: 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 478: 2064, 482: 2064, 502: 4307, 509: 5025, 741: 5024}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 478: 5027, 482: 5029, 664: 5030, 2785, 2786, 2784, 890: 5028}, + {482: 5026}, + {2531, 2531, 2531, 2531, 2531, 2531, 2531, 2531, 2531, 2531, 15: 2531, 2531, 2531, 2531, 2531, 2531, 2531, 2531, 2531, 2531, 2531, 2531, 2531, 2531, 2531, 2531, 2531, 2531, 2531, 2531, 2531, 2531, 2531, 2531, 2531, 2531, 2531, 2531, 2531, 2531, 2531, 2531, 2531, 50: 2531, 475: 2531, 2531, 2531, 481: 2531, 2531, 2531, 487: 2531, 491: 2531, 2531, 498: 2531, 506: 2531, 2531, 2531, 2531, 572: 2531, 649: 2531, 2531, 652: 2531}, // 2470 - {2530, 2530, 9: 4755, 168: 5008}, - {191: 5009}, - {2529, 2529}, - {2531, 2531}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 661: 4754, 2762, 2763, 2761, 786: 5012}, + {2534, 2534, 2534, 2534, 2534, 2534, 2534, 2534, 2534, 2534, 15: 2534, 2534, 2534, 2534, 2534, 2534, 2534, 2534, 2534, 2534, 2534, 2534, 2534, 2534, 2534, 2534, 2534, 2534, 2534, 2534, 2534, 2534, 2534, 2534, 2534, 2534, 2534, 2534, 2534, 2534, 2534, 2534, 2534, 50: 2534, 475: 2534, 2534, 2534, 481: 2534, 2534, 2534, 487: 2534, 491: 2534, 2534, 498: 2534, 506: 2534, 2534, 2534, 2534, 572: 2534, 649: 2534, 2534, 652: 2534}, + {2533, 2533, 2533, 2533, 2533, 2533, 2533, 2533, 2533, 2533, 15: 2533, 2533, 2533, 2533, 2533, 2533, 2533, 2533, 2533, 2533, 2533, 2533, 2533, 2533, 2533, 2533, 2533, 2533, 2533, 2533, 2533, 2533, 2533, 2533, 2533, 2533, 2533, 2533, 2533, 2533, 2533, 2533, 2533, 50: 2533, 475: 2533, 2533, 2533, 481: 2533, 2533, 2533, 487: 2533, 491: 2533, 2533, 498: 2533, 506: 2533, 2533, 2533, 2533, 572: 2533, 649: 2533, 2533, 652: 2533}, + {2532, 2532, 2532, 2532, 2532, 2532, 2532, 2532, 2532, 2532, 15: 2532, 2532, 2532, 2532, 2532, 2532, 2532, 2532, 2532, 2532, 2532, 2532, 2532, 2532, 2532, 2532, 2532, 2532, 2532, 2532, 2532, 2532, 2532, 2532, 2532, 2532, 2532, 2532, 2532, 2532, 2532, 2532, 2532, 50: 2532, 475: 2532, 2532, 2532, 481: 2532, 2532, 2532, 487: 2532, 491: 2532, 2532, 498: 2532, 506: 2532, 2532, 2532, 2532, 572: 2532, 649: 2532, 2532, 652: 2532}, + {2209, 2209, 2209, 2209, 2209, 2209, 2209, 2209, 2209, 2209, 15: 2209, 2209, 2209, 2209, 2209, 2209, 2209, 2209, 2209, 2209, 2209, 2209, 2209, 2209, 2209, 2209, 2209, 2209, 2209, 2209, 2209, 2209, 2209, 2209, 2209, 2209, 2209, 2209, 2209, 2209, 2209, 2209, 2209, 50: 2209, 89: 2209, 93: 2209, 2209, 2209, 2209, 2209, 2209, 2209, 2209, 2209, 2209, 475: 2209, 2209, 2209, 481: 2209, 2209, 2209, 487: 2209, 491: 2209, 2209, 498: 2209, 506: 2209, 2209, 2209, 2209, 572: 2209, 649: 2209, 2209, 652: 2209}, + {193: 5036}, // 2475 - {2366, 2366, 9: 4755, 474: 5015, 649: 5014, 804: 5013}, - {2534, 2534}, - {908, 908, 3135, 2967, 3002, 2847, 2883, 3004, 2774, 908, 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 474: 908, 591: 5032, 661: 5031, 2762, 2763, 2761, 857: 5030}, - {508: 5020, 573: 3425, 3424, 733: 5018, 820: 5019, 991: 5017, 1173: 5016}, - {2365, 2365, 9: 5028}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 664: 4780, 2785, 2786, 2784, 791: 5033}, + {2550, 2550, 9: 4781, 170: 5034}, + {193: 5035}, + {2549, 2549}, + {2551, 2551}, // 2480 - {2364, 2364, 9: 2364}, - {232: 5022, 236: 5024, 283: 5025, 302: 5023}, - {195: 5021}, - {195: 2222, 232: 1973, 236: 1973, 283: 1973, 302: 1973}, - {2357, 2357, 9: 2357}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 664: 4780, 2785, 2786, 2784, 791: 5038}, + {2383, 2383, 9: 4781, 477: 5041, 652: 5040, 808: 5039}, + {2554, 2554}, + {922, 922, 3161, 2991, 3026, 2871, 2907, 3028, 2798, 922, 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 477: 922, 594: 5058, 664: 5057, 2785, 2786, 2784, 861: 5056}, + {511: 5046, 576: 3451, 3450, 737: 5044, 824: 5045, 996: 5043, 1182: 5042}, // 2485 - {2362, 2362, 9: 2362}, - {2361, 2361, 9: 2361}, - {333: 5026, 406: 5027}, - {2358, 2358, 9: 2358}, - {2360, 2360, 9: 2360}, + {2382, 2382, 9: 5054}, + {2381, 2381, 9: 2381}, + {235: 5048, 239: 5050, 286: 5051, 304: 5049}, + {197: 5047}, + {197: 2239, 235: 1990, 239: 1990, 286: 1990, 304: 1990}, // 2490 - {2359, 2359, 9: 2359}, - {508: 5020, 573: 3425, 3424, 733: 5018, 820: 5019, 991: 5029}, - {2363, 2363, 9: 2363}, - {2366, 2366, 9: 5034, 474: 5015, 804: 5033}, - {907, 907, 9: 907, 49: 907, 474: 907}, + {2374, 2374, 9: 2374}, + {2379, 2379, 9: 2379}, + {2378, 2378, 9: 2378}, + {335: 5052, 409: 5053}, + {2375, 2375, 9: 2375}, // 2495 - {905, 905, 9: 905, 49: 905, 474: 905}, - {2533, 2533}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 591: 5036, 661: 5035, 2762, 2763, 2761}, - {906, 906, 9: 906, 49: 906, 474: 906}, - {904, 904, 9: 904, 49: 904, 474: 904}, + {2377, 2377, 9: 2377}, + {2376, 2376, 9: 2376}, + {511: 5046, 576: 3451, 3450, 737: 5044, 824: 5045, 996: 5055}, + {2380, 2380, 9: 2380}, + {2383, 2383, 9: 5060, 477: 5041, 808: 5059}, // 2500 - {2535, 2535}, - {2506, 2506}, - {370: 5149}, - {488: 5141}, - {655: 5134}, + {921, 921, 9: 921, 50: 921, 477: 921}, + {919, 919, 9: 919, 50: 919, 477: 919}, + {2553, 2553}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 594: 5062, 664: 5061, 2785, 2786, 2784}, + {920, 920, 9: 920, 50: 920, 477: 920}, // 2505 - {10: 5127}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 660: 5045, 5044, 2762, 2763, 2761}, - {2132, 2132, 6: 2132, 2132, 18: 2132, 20: 2132, 22: 2132, 2132, 2132, 2132, 2132, 2132, 203: 4198, 649: 2132, 926: 5125, 951: 5126}, - {143: 2150, 357: 5050, 395: 5051, 527: 5049, 581: 2150, 1072: 5052, 5047, 1143: 5048, 1277: 5046}, - {2144, 2144, 90: 2144, 5115, 472: 2144, 2144, 2144, 478: 2144, 489: 2144, 495: 2144, 504: 2144, 569: 2144, 646: 2144, 1278: 5114}, + {918, 918, 9: 918, 50: 918, 477: 918}, + {2555, 2555}, + {2526, 2526}, + {372: 5175}, + {491: 5167}, // 2510 - {143: 5102, 581: 5101}, - {2168, 2168, 90: 2168, 2168, 472: 2168, 2168, 2168, 478: 2168, 489: 2168, 495: 2168, 504: 2168, 569: 2168, 646: 2168}, - {102: 3944, 111: 3943, 473: 5065, 834: 5066}, - {102: 3944, 111: 3943, 473: 5058, 834: 5059}, - {2161, 2161, 90: 2161, 2161, 472: 2161, 2161, 2161, 478: 2161, 489: 2161, 493: 5054, 495: 2161, 504: 2161, 569: 2161, 578: 5053, 646: 2161}, + {658: 5160}, + {10: 5153}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 663: 5071, 5070, 2785, 2786, 2784}, + {2149, 2149, 6: 2149, 2149, 18: 2149, 20: 2149, 22: 2149, 2149, 2149, 2149, 2149, 2149, 205: 4224, 652: 2149, 931: 5151, 956: 5152}, + {146: 2167, 359: 5076, 398: 5077, 530: 5075, 584: 2167, 1079: 5078, 5073, 1151: 5074, 1285: 5072}, // 2515 - {143: 2149, 581: 2149}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 2840, 2788, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 2869, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 2874, 2801, 2766, 2783, 2948, 3031, 3020, 2818, 2830, 2941, 2942, 2937, 2895, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 2876, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 2760, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 2880, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 2799, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 2866, 2865, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 2936, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 2824, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 2751, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 2882, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 2752, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3144, 2878, 3145, 3146, 2777, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3159, 3160, 3211, 3210, 3057, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 2918, 2935, 3058, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3177, 3178, 3179, 2931, 3130, 3189, 3190, 3201, 3185, 3186, 3187, 3220, 2877, 473: 3260, 475: 3239, 3258, 2755, 479: 3268, 482: 3272, 3276, 485: 3257, 3256, 3295, 492: 3230, 495: 3269, 504: 3275, 3293, 508: 3234, 530: 3264, 564: 3271, 567: 3294, 2753, 570: 3277, 3229, 3231, 3233, 3232, 3261, 3237, 3251, 3242, 3263, 3238, 582: 3270, 3262, 3267, 3273, 3283, 3336, 3284, 3285, 592: 3236, 3314, 595: 3254, 3255, 3309, 3310, 3311, 3312, 3313, 3265, 3291, 3296, 3306, 3307, 3300, 3315, 3316, 3317, 3301, 3319, 3320, 3302, 3318, 3297, 3305, 3303, 3289, 3321, 3322, 3266, 3326, 3278, 3279, 3282, 3325, 3331, 3330, 3332, 3329, 3333, 3328, 3327, 3324, 3274, 3323, 3281, 3280, 3286, 3287, 648: 2756, 661: 3244, 2762, 2763, 2761, 709: 3259, 3335, 3245, 3250, 3235, 3308, 3248, 3246, 3247, 3288, 3299, 3298, 3292, 3290, 3304, 3243, 3253, 3334, 3252, 3249, 2759, 2758, 2757, 5056}, - {508: 2736, 733: 2735, 741: 5055}, - {2162, 2162, 90: 2162, 2162, 472: 2162, 2162, 2162, 478: 2162, 489: 2162, 495: 2162, 504: 2162, 569: 2162, 646: 2162}, - {104: 3464, 3460, 108: 3457, 3472, 112: 3459, 3456, 3458, 3462, 3463, 3468, 3467, 3466, 3470, 3471, 3465, 3469, 3461, 507: 3345, 509: 3343, 3344, 3342, 3340, 532: 3454, 3451, 3453, 3452, 3448, 3450, 3449, 3446, 3447, 3445, 3455, 734: 3341, 3339, 796: 3444, 815: 5057}, + {2161, 2161, 91: 2161, 5141, 475: 2161, 2161, 2161, 481: 2161, 492: 2161, 498: 2161, 507: 2161, 572: 2161, 649: 2161, 1286: 5140}, + {146: 5128, 584: 5127}, + {2185, 2185, 91: 2185, 2185, 475: 2185, 2185, 2185, 481: 2185, 492: 2185, 498: 2185, 507: 2185, 572: 2185, 649: 2185}, + {103: 3970, 112: 3969, 476: 5091, 839: 5092}, + {103: 3970, 112: 3969, 476: 5084, 839: 5085}, // 2520 - {2163, 2163, 90: 2163, 2163, 472: 2163, 2163, 2163, 478: 2163, 489: 2163, 495: 2163, 504: 2163, 569: 2163, 646: 2163}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 2840, 2788, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 2869, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 2874, 2801, 2766, 2783, 2948, 3031, 3020, 2818, 2830, 2941, 2942, 2937, 2895, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 2876, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 2760, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 2880, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 2799, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 2866, 2865, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 2936, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 2824, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 2751, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 2882, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 2752, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3144, 2878, 3145, 3146, 2777, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3159, 3160, 3211, 3210, 3057, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 2918, 2935, 3058, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3177, 3178, 3179, 2931, 3130, 3189, 3190, 3201, 3185, 3186, 3187, 3220, 2877, 473: 3260, 475: 3239, 3258, 479: 3268, 482: 3272, 3276, 485: 3257, 3256, 3295, 492: 3230, 495: 3269, 504: 3275, 3293, 508: 3234, 530: 3264, 564: 3271, 567: 3294, 3349, 570: 3277, 3229, 3231, 3233, 3232, 3261, 3237, 3251, 3242, 3263, 3238, 582: 3270, 3262, 3267, 3273, 3283, 3336, 3284, 3285, 592: 3236, 3314, 595: 3254, 3255, 3309, 3310, 3311, 3312, 3313, 3265, 3291, 3296, 3306, 3307, 3300, 3315, 3316, 3317, 3301, 3319, 3320, 3302, 3318, 3297, 3305, 3303, 3289, 3321, 3322, 3266, 3326, 3278, 3279, 3282, 3325, 3331, 3330, 3332, 3329, 3333, 3328, 3327, 3324, 3274, 3323, 3281, 3280, 3286, 3287, 661: 3244, 2762, 2763, 2761, 709: 3259, 3335, 3245, 3250, 3235, 3308, 3248, 3246, 3247, 3288, 3299, 3298, 3292, 3290, 3304, 3243, 3253, 3334, 3252, 3249, 5063}, - {473: 5060}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 661: 4143, 2762, 2763, 2761, 744: 4144, 808: 5061}, - {9: 4146, 49: 5062}, + {2178, 2178, 91: 2178, 2178, 475: 2178, 2178, 2178, 481: 2178, 492: 2178, 496: 5080, 498: 2178, 507: 2178, 572: 2178, 581: 5079, 649: 2178}, + {146: 2166, 584: 2166}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 2864, 2812, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 2893, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 2898, 2825, 2789, 2807, 2972, 3055, 3044, 2842, 2854, 2965, 2966, 2961, 2919, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 2900, 2885, 2881, 2973, 2997, 2783, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 2904, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 2823, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 2889, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 2890, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 2960, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 2848, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 2774, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 2906, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 2775, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3170, 2902, 3171, 3172, 2801, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3185, 3186, 3237, 3236, 3081, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 2942, 2959, 3082, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3203, 3204, 3205, 2955, 3156, 3215, 3216, 3227, 3211, 3212, 3213, 3246, 2901, 476: 3286, 478: 3265, 3284, 2778, 482: 3294, 485: 3298, 3302, 488: 3283, 3282, 3321, 495: 3256, 498: 3295, 507: 3301, 3319, 511: 3260, 533: 3290, 567: 3297, 570: 3320, 2776, 573: 3303, 3255, 3257, 3259, 3258, 3287, 3263, 3277, 3268, 3289, 3264, 585: 3296, 3288, 3293, 3299, 3309, 3362, 3310, 3311, 595: 3262, 3340, 598: 3280, 3281, 3335, 3336, 3337, 3338, 3339, 3291, 3317, 3322, 3332, 3333, 3326, 3341, 3342, 3343, 3327, 3345, 3346, 3328, 3344, 3323, 3331, 3329, 3315, 3347, 3348, 3292, 3352, 3304, 3305, 3308, 3351, 3357, 3356, 3358, 3355, 3359, 3354, 3353, 3350, 3300, 3349, 3307, 3306, 3312, 3313, 651: 2779, 664: 3270, 2785, 2786, 2784, 713: 3285, 3361, 3271, 3276, 3261, 3334, 3274, 3272, 3273, 3314, 3325, 3324, 3318, 3316, 3330, 3269, 3279, 3360, 3278, 3275, 2782, 2781, 2780, 5082}, + {511: 2759, 737: 2758, 745: 5081}, + {2179, 2179, 91: 2179, 2179, 475: 2179, 2179, 2179, 481: 2179, 492: 2179, 498: 2179, 507: 2179, 572: 2179, 649: 2179}, // 2525 - {2164, 2164, 90: 2164, 2164, 472: 2164, 2164, 2164, 478: 2164, 489: 2164, 495: 2164, 504: 2164, 569: 2164, 646: 2164}, - {49: 5064, 485: 3686, 3687, 3692, 520: 3688, 547: 3689, 3690, 3683, 3693, 3682, 3691, 3684, 3685}, - {2165, 2165, 90: 2165, 2165, 472: 2165, 2165, 2165, 478: 2165, 489: 2165, 495: 2165, 504: 2165, 569: 2165, 646: 2165}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 2840, 2788, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 2869, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 2874, 2801, 2766, 2783, 2948, 3031, 3020, 2818, 2830, 2941, 2942, 2937, 2895, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 2876, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 2760, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 2880, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 2799, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 2866, 2865, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 2936, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 2824, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 2751, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 2882, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 2752, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3144, 2878, 3145, 3146, 2777, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3159, 3160, 3211, 3210, 3057, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 2918, 2935, 3058, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3177, 3178, 3179, 2931, 3130, 3189, 3190, 3201, 3185, 3186, 3187, 3220, 2877, 473: 3260, 475: 3239, 3258, 479: 3268, 482: 3272, 3276, 485: 3257, 3256, 3295, 492: 3230, 495: 3269, 504: 3275, 3293, 508: 3234, 530: 3264, 564: 3271, 567: 3294, 3349, 570: 3277, 3229, 3231, 3233, 3232, 3261, 3237, 3251, 3242, 3263, 3238, 582: 3270, 3262, 3267, 3273, 3283, 3336, 3284, 3285, 592: 3236, 3314, 595: 3254, 3255, 3309, 3310, 3311, 3312, 3313, 3265, 3291, 3296, 3306, 3307, 3300, 3315, 3316, 3317, 3301, 3319, 3320, 3302, 3318, 3297, 3305, 3303, 3289, 3321, 3322, 3266, 3326, 3278, 3279, 3282, 3325, 3331, 3330, 3332, 3329, 3333, 3328, 3327, 3324, 3274, 3323, 3281, 3280, 3286, 3287, 661: 3244, 2762, 2763, 2761, 709: 3259, 3335, 3245, 3250, 3235, 3308, 3248, 3246, 3247, 3288, 3299, 3298, 3292, 3290, 3304, 3243, 3253, 3334, 3252, 3249, 5098}, - {473: 5067}, + {105: 3490, 3486, 109: 3483, 3498, 113: 3485, 3482, 3484, 3488, 3489, 3494, 3493, 3492, 3496, 3497, 3491, 3495, 3487, 510: 3371, 512: 3369, 3370, 3368, 3366, 535: 3480, 3477, 3479, 3478, 3474, 3476, 3475, 3472, 3473, 3471, 3481, 738: 3367, 3365, 800: 3470, 820: 5083}, + {2180, 2180, 91: 2180, 2180, 475: 2180, 2180, 2180, 481: 2180, 492: 2180, 498: 2180, 507: 2180, 572: 2180, 649: 2180}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 2864, 2812, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 2893, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 2898, 2825, 2789, 2807, 2972, 3055, 3044, 2842, 2854, 2965, 2966, 2961, 2919, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 2900, 2885, 2881, 2973, 2997, 2783, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 2904, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 2823, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 2889, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 2890, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 2960, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 2848, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 2774, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 2906, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 2775, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3170, 2902, 3171, 3172, 2801, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3185, 3186, 3237, 3236, 3081, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 2942, 2959, 3082, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3203, 3204, 3205, 2955, 3156, 3215, 3216, 3227, 3211, 3212, 3213, 3246, 2901, 476: 3286, 478: 3265, 3284, 482: 3294, 485: 3298, 3302, 488: 3283, 3282, 3321, 495: 3256, 498: 3295, 507: 3301, 3319, 511: 3260, 533: 3290, 567: 3297, 570: 3320, 3375, 573: 3303, 3255, 3257, 3259, 3258, 3287, 3263, 3277, 3268, 3289, 3264, 585: 3296, 3288, 3293, 3299, 3309, 3362, 3310, 3311, 595: 3262, 3340, 598: 3280, 3281, 3335, 3336, 3337, 3338, 3339, 3291, 3317, 3322, 3332, 3333, 3326, 3341, 3342, 3343, 3327, 3345, 3346, 3328, 3344, 3323, 3331, 3329, 3315, 3347, 3348, 3292, 3352, 3304, 3305, 3308, 3351, 3357, 3356, 3358, 3355, 3359, 3354, 3353, 3350, 3300, 3349, 3307, 3306, 3312, 3313, 664: 3270, 2785, 2786, 2784, 713: 3285, 3361, 3271, 3276, 3261, 3334, 3274, 3272, 3273, 3314, 3325, 3324, 3318, 3316, 3330, 3269, 3279, 3360, 3278, 3275, 5089}, + {476: 5086}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 664: 4169, 2785, 2786, 2784, 748: 4170, 812: 5087}, // 2530 - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 661: 4143, 2762, 2763, 2761, 744: 4144, 808: 5068}, - {9: 4146, 49: 5069}, - {2160, 2160, 90: 2160, 2160, 472: 2160, 2160, 2160, 478: 2160, 489: 2160, 495: 2160, 504: 2160, 569: 2160, 578: 5071, 646: 2160, 1099: 5070}, - {2166, 2166, 90: 2166, 2166, 472: 2166, 2166, 2166, 478: 2166, 489: 2166, 495: 2166, 504: 2166, 569: 2166, 646: 2166}, - {473: 5072}, + {9: 4172, 50: 5088}, + {2181, 2181, 91: 2181, 2181, 475: 2181, 2181, 2181, 481: 2181, 492: 2181, 498: 2181, 507: 2181, 572: 2181, 649: 2181}, + {50: 5090, 488: 3712, 3713, 3718, 523: 3714, 550: 3715, 3716, 3709, 3719, 3708, 3717, 3710, 3711}, + {2182, 2182, 91: 2182, 2182, 475: 2182, 2182, 2182, 481: 2182, 492: 2182, 498: 2182, 507: 2182, 572: 2182, 649: 2182}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 2864, 2812, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 2893, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 2898, 2825, 2789, 2807, 2972, 3055, 3044, 2842, 2854, 2965, 2966, 2961, 2919, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 2900, 2885, 2881, 2973, 2997, 2783, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 2904, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 2823, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 2889, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 2890, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 2960, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 2848, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 2774, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 2906, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 2775, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3170, 2902, 3171, 3172, 2801, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3185, 3186, 3237, 3236, 3081, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 2942, 2959, 3082, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3203, 3204, 3205, 2955, 3156, 3215, 3216, 3227, 3211, 3212, 3213, 3246, 2901, 476: 3286, 478: 3265, 3284, 482: 3294, 485: 3298, 3302, 488: 3283, 3282, 3321, 495: 3256, 498: 3295, 507: 3301, 3319, 511: 3260, 533: 3290, 567: 3297, 570: 3320, 3375, 573: 3303, 3255, 3257, 3259, 3258, 3287, 3263, 3277, 3268, 3289, 3264, 585: 3296, 3288, 3293, 3299, 3309, 3362, 3310, 3311, 595: 3262, 3340, 598: 3280, 3281, 3335, 3336, 3337, 3338, 3339, 3291, 3317, 3322, 3332, 3333, 3326, 3341, 3342, 3343, 3327, 3345, 3346, 3328, 3344, 3323, 3331, 3329, 3315, 3347, 3348, 3292, 3352, 3304, 3305, 3308, 3351, 3357, 3356, 3358, 3355, 3359, 3354, 3353, 3350, 3300, 3349, 3307, 3306, 3312, 3313, 664: 3270, 2785, 2786, 2784, 713: 3285, 3361, 3271, 3276, 3261, 3334, 3274, 3272, 3273, 3314, 3325, 3324, 3318, 3316, 3330, 3269, 3279, 3360, 3278, 3275, 5124}, // 2535 - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 2840, 2788, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 2869, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 2874, 2801, 2766, 2783, 2948, 3031, 3020, 2818, 2830, 2941, 2942, 2937, 2895, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 2876, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 2760, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 2880, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 2799, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 2866, 2865, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 2936, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 2824, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 2751, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 2882, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 2752, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3144, 2878, 3145, 3146, 2777, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3159, 3160, 3211, 3210, 3057, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 2918, 2935, 3058, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3177, 3178, 3179, 2931, 3130, 3189, 3190, 3201, 3185, 3186, 3187, 3220, 2877, 473: 3260, 475: 3239, 3258, 479: 3268, 482: 3272, 3276, 485: 3257, 3256, 3295, 492: 3230, 495: 3269, 504: 3275, 3293, 508: 3234, 530: 3264, 564: 3271, 567: 3294, 3349, 570: 3277, 3229, 3231, 3233, 3232, 3261, 3237, 3251, 3242, 3263, 3238, 582: 3270, 3262, 3267, 3273, 3283, 3336, 3284, 3285, 592: 3236, 3314, 595: 3254, 3255, 3309, 3310, 3311, 3312, 3313, 3265, 3291, 3296, 3306, 3307, 3300, 3315, 3316, 3317, 3301, 3319, 3320, 3302, 3318, 3297, 3305, 3303, 3289, 3321, 3322, 3266, 3326, 3278, 3279, 3282, 3325, 3331, 3330, 3332, 3329, 3333, 3328, 3327, 3324, 3274, 3323, 3281, 3280, 3286, 3287, 661: 3244, 2762, 2763, 2761, 709: 3259, 3335, 3245, 3250, 3235, 3308, 3248, 3246, 3247, 3288, 3299, 3298, 3292, 3290, 3304, 3243, 3253, 3334, 3252, 3249, 5074, 1238: 5073}, - {49: 5076}, - {49: 2158, 104: 3464, 3460, 108: 3457, 3472, 112: 3459, 3456, 3458, 3462, 3463, 3468, 3467, 3466, 3470, 3471, 3465, 3469, 3461, 485: 3686, 3687, 3692, 520: 3688, 532: 3454, 3451, 3453, 3452, 3448, 3450, 3449, 3446, 3447, 3445, 3455, 547: 3689, 3690, 3683, 3693, 3682, 3691, 3684, 3685, 796: 3444, 815: 5075}, - {49: 2157}, - {2152, 2152, 10: 5078, 90: 2152, 2152, 472: 2152, 2152, 2152, 478: 2152, 489: 2152, 492: 2152, 495: 2152, 504: 2152, 569: 2152, 646: 2152, 655: 2152, 1215: 5077}, + {476: 5093}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 664: 4169, 2785, 2786, 2784, 748: 4170, 812: 5094}, + {9: 4172, 50: 5095}, + {2177, 2177, 91: 2177, 2177, 475: 2177, 2177, 2177, 481: 2177, 492: 2177, 498: 2177, 507: 2177, 572: 2177, 581: 5097, 649: 2177, 1107: 5096}, + {2183, 2183, 91: 2183, 2183, 475: 2183, 2183, 2183, 481: 2183, 492: 2183, 498: 2183, 507: 2183, 572: 2183, 649: 2183}, // 2540 - {2156, 2156, 90: 2156, 2156, 472: 2156, 2156, 2156, 478: 2156, 489: 2156, 492: 5093, 495: 2156, 504: 2156, 569: 2156, 646: 2156, 655: 2156, 1256: 5092}, - {488: 5079}, - {152: 5080}, - {157: 5081}, - {473: 5082}, + {476: 5098}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 2864, 2812, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 2893, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 2898, 2825, 2789, 2807, 2972, 3055, 3044, 2842, 2854, 2965, 2966, 2961, 2919, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 2900, 2885, 2881, 2973, 2997, 2783, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 2904, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 2823, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 2889, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 2890, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 2960, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 2848, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 2774, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 2906, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 2775, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3170, 2902, 3171, 3172, 2801, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3185, 3186, 3237, 3236, 3081, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 2942, 2959, 3082, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3203, 3204, 3205, 2955, 3156, 3215, 3216, 3227, 3211, 3212, 3213, 3246, 2901, 476: 3286, 478: 3265, 3284, 482: 3294, 485: 3298, 3302, 488: 3283, 3282, 3321, 495: 3256, 498: 3295, 507: 3301, 3319, 511: 3260, 533: 3290, 567: 3297, 570: 3320, 3375, 573: 3303, 3255, 3257, 3259, 3258, 3287, 3263, 3277, 3268, 3289, 3264, 585: 3296, 3288, 3293, 3299, 3309, 3362, 3310, 3311, 595: 3262, 3340, 598: 3280, 3281, 3335, 3336, 3337, 3338, 3339, 3291, 3317, 3322, 3332, 3333, 3326, 3341, 3342, 3343, 3327, 3345, 3346, 3328, 3344, 3323, 3331, 3329, 3315, 3347, 3348, 3292, 3352, 3304, 3305, 3308, 3351, 3357, 3356, 3358, 3355, 3359, 3354, 3353, 3350, 3300, 3349, 3307, 3306, 3312, 3313, 664: 3270, 2785, 2786, 2784, 713: 3285, 3361, 3271, 3276, 3261, 3334, 3274, 3272, 3273, 3314, 3325, 3324, 3318, 3316, 3330, 3269, 3279, 3360, 3278, 3275, 5100, 1246: 5099}, + {50: 5102}, + {50: 2175, 105: 3490, 3486, 109: 3483, 3498, 113: 3485, 3482, 3484, 3488, 3489, 3494, 3493, 3492, 3496, 3497, 3491, 3495, 3487, 488: 3712, 3713, 3718, 523: 3714, 535: 3480, 3477, 3479, 3478, 3474, 3476, 3475, 3472, 3473, 3471, 3481, 550: 3715, 3716, 3709, 3719, 3708, 3717, 3710, 3711, 800: 3470, 820: 5101}, + {50: 2174}, // 2545 - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 2840, 2788, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 2869, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 2874, 2801, 2766, 2783, 2948, 3031, 3020, 2818, 2830, 2941, 2942, 2937, 2895, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 2876, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 2760, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 2880, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 2799, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 2866, 2865, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 2936, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 2824, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 2751, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 2882, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 2752, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3144, 2878, 3145, 3146, 2777, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3159, 3160, 3211, 3210, 3057, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 2918, 2935, 3058, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3177, 3178, 3179, 2931, 3130, 3189, 3190, 3201, 3185, 3186, 3187, 3220, 2877, 473: 3260, 475: 3239, 3258, 479: 3268, 482: 3272, 3276, 485: 3257, 3256, 3295, 492: 3230, 495: 3269, 504: 3275, 3293, 508: 3234, 530: 3264, 564: 3271, 567: 3294, 3349, 570: 3277, 3229, 3231, 3233, 3232, 3261, 3237, 3251, 3242, 3263, 3238, 582: 3270, 3262, 3267, 3273, 3283, 3336, 3284, 3285, 592: 3236, 3314, 595: 3254, 3255, 3309, 3310, 3311, 3312, 3313, 3265, 3291, 3296, 3306, 3307, 3300, 3315, 3316, 3317, 3301, 3319, 3320, 3302, 3318, 3297, 3305, 3303, 3289, 3321, 3322, 3266, 3326, 3278, 3279, 3282, 3325, 3331, 3330, 3332, 3329, 3333, 3328, 3327, 3324, 3274, 3323, 3281, 3280, 3286, 3287, 661: 3244, 2762, 2763, 2761, 709: 3259, 3335, 3245, 3250, 3235, 3308, 3248, 3246, 3247, 3288, 3299, 3298, 3292, 3290, 3304, 3243, 3253, 3334, 3252, 3249, 5083}, - {49: 5084, 485: 3686, 3687, 3692, 520: 3688, 547: 3689, 3690, 3683, 3693, 3682, 3691, 3684, 3685}, - {183: 5085}, - {488: 5086}, - {152: 5087}, + {2169, 2169, 10: 5104, 91: 2169, 2169, 475: 2169, 2169, 2169, 481: 2169, 492: 2169, 495: 2169, 498: 2169, 507: 2169, 572: 2169, 649: 2169, 658: 2169, 1224: 5103}, + {2173, 2173, 91: 2173, 2173, 475: 2173, 2173, 2173, 481: 2173, 492: 2173, 495: 5119, 498: 2173, 507: 2173, 572: 2173, 649: 2173, 658: 2173, 1264: 5118}, + {491: 5105}, + {154: 5106}, + {159: 5107}, // 2550 - {157: 5088}, - {473: 5089}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 2840, 2788, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 2869, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 2874, 2801, 2766, 2783, 2948, 3031, 3020, 2818, 2830, 2941, 2942, 2937, 2895, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 2876, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 2760, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 2880, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 2799, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 2866, 2865, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 2936, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 2824, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 2751, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 2882, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 2752, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3144, 2878, 3145, 3146, 2777, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3159, 3160, 3211, 3210, 3057, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 2918, 2935, 3058, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3177, 3178, 3179, 2931, 3130, 3189, 3190, 3201, 3185, 3186, 3187, 3220, 2877, 473: 3260, 475: 3239, 3258, 479: 3268, 482: 3272, 3276, 485: 3257, 3256, 3295, 492: 3230, 495: 3269, 504: 3275, 3293, 508: 3234, 530: 3264, 564: 3271, 567: 3294, 3349, 570: 3277, 3229, 3231, 3233, 3232, 3261, 3237, 3251, 3242, 3263, 3238, 582: 3270, 3262, 3267, 3273, 3283, 3336, 3284, 3285, 592: 3236, 3314, 595: 3254, 3255, 3309, 3310, 3311, 3312, 3313, 3265, 3291, 3296, 3306, 3307, 3300, 3315, 3316, 3317, 3301, 3319, 3320, 3302, 3318, 3297, 3305, 3303, 3289, 3321, 3322, 3266, 3326, 3278, 3279, 3282, 3325, 3331, 3330, 3332, 3329, 3333, 3328, 3327, 3324, 3274, 3323, 3281, 3280, 3286, 3287, 661: 3244, 2762, 2763, 2761, 709: 3259, 3335, 3245, 3250, 3235, 3308, 3248, 3246, 3247, 3288, 3299, 3298, 3292, 3290, 3304, 3243, 3253, 3334, 3252, 3249, 5090}, - {49: 5091, 485: 3686, 3687, 3692, 520: 3688, 547: 3689, 3690, 3683, 3693, 3682, 3691, 3684, 3685}, - {2151, 2151, 90: 2151, 2151, 472: 2151, 2151, 2151, 478: 2151, 489: 2151, 492: 2151, 495: 2151, 504: 2151, 569: 2151, 646: 2151, 655: 2151}, + {476: 5108}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 2864, 2812, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 2893, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 2898, 2825, 2789, 2807, 2972, 3055, 3044, 2842, 2854, 2965, 2966, 2961, 2919, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 2900, 2885, 2881, 2973, 2997, 2783, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 2904, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 2823, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 2889, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 2890, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 2960, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 2848, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 2774, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 2906, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 2775, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3170, 2902, 3171, 3172, 2801, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3185, 3186, 3237, 3236, 3081, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 2942, 2959, 3082, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3203, 3204, 3205, 2955, 3156, 3215, 3216, 3227, 3211, 3212, 3213, 3246, 2901, 476: 3286, 478: 3265, 3284, 482: 3294, 485: 3298, 3302, 488: 3283, 3282, 3321, 495: 3256, 498: 3295, 507: 3301, 3319, 511: 3260, 533: 3290, 567: 3297, 570: 3320, 3375, 573: 3303, 3255, 3257, 3259, 3258, 3287, 3263, 3277, 3268, 3289, 3264, 585: 3296, 3288, 3293, 3299, 3309, 3362, 3310, 3311, 595: 3262, 3340, 598: 3280, 3281, 3335, 3336, 3337, 3338, 3339, 3291, 3317, 3322, 3332, 3333, 3326, 3341, 3342, 3343, 3327, 3345, 3346, 3328, 3344, 3323, 3331, 3329, 3315, 3347, 3348, 3292, 3352, 3304, 3305, 3308, 3351, 3357, 3356, 3358, 3355, 3359, 3354, 3353, 3350, 3300, 3349, 3307, 3306, 3312, 3313, 664: 3270, 2785, 2786, 2784, 713: 3285, 3361, 3271, 3276, 3261, 3334, 3274, 3272, 3273, 3314, 3325, 3324, 3318, 3316, 3330, 3269, 3279, 3360, 3278, 3275, 5109}, + {50: 5110, 488: 3712, 3713, 3718, 523: 3714, 550: 3715, 3716, 3709, 3719, 3708, 3717, 3710, 3711}, + {185: 5111}, + {491: 5112}, // 2555 - {2154, 2154, 90: 2154, 2154, 472: 2154, 2154, 2154, 478: 2154, 489: 2154, 495: 2154, 504: 2154, 569: 2154, 646: 2154, 655: 5096, 1254: 5095}, - {488: 5094}, - {2155, 2155, 90: 2155, 2155, 472: 2155, 2155, 2155, 478: 2155, 489: 2155, 495: 2155, 504: 2155, 569: 2155, 646: 2155, 655: 2155}, - {2159, 2159, 90: 2159, 2159, 472: 2159, 2159, 2159, 478: 2159, 489: 2159, 495: 2159, 504: 2159, 569: 2159, 646: 2159}, - {488: 5097}, + {154: 5113}, + {159: 5114}, + {476: 5115}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 2864, 2812, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 2893, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 2898, 2825, 2789, 2807, 2972, 3055, 3044, 2842, 2854, 2965, 2966, 2961, 2919, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 2900, 2885, 2881, 2973, 2997, 2783, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 2904, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 2823, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 2889, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 2890, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 2960, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 2848, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 2774, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 2906, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 2775, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3170, 2902, 3171, 3172, 2801, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3185, 3186, 3237, 3236, 3081, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 2942, 2959, 3082, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3203, 3204, 3205, 2955, 3156, 3215, 3216, 3227, 3211, 3212, 3213, 3246, 2901, 476: 3286, 478: 3265, 3284, 482: 3294, 485: 3298, 3302, 488: 3283, 3282, 3321, 495: 3256, 498: 3295, 507: 3301, 3319, 511: 3260, 533: 3290, 567: 3297, 570: 3320, 3375, 573: 3303, 3255, 3257, 3259, 3258, 3287, 3263, 3277, 3268, 3289, 3264, 585: 3296, 3288, 3293, 3299, 3309, 3362, 3310, 3311, 595: 3262, 3340, 598: 3280, 3281, 3335, 3336, 3337, 3338, 3339, 3291, 3317, 3322, 3332, 3333, 3326, 3341, 3342, 3343, 3327, 3345, 3346, 3328, 3344, 3323, 3331, 3329, 3315, 3347, 3348, 3292, 3352, 3304, 3305, 3308, 3351, 3357, 3356, 3358, 3355, 3359, 3354, 3353, 3350, 3300, 3349, 3307, 3306, 3312, 3313, 664: 3270, 2785, 2786, 2784, 713: 3285, 3361, 3271, 3276, 3261, 3334, 3274, 3272, 3273, 3314, 3325, 3324, 3318, 3316, 3330, 3269, 3279, 3360, 3278, 3275, 5116}, + {50: 5117, 488: 3712, 3713, 3718, 523: 3714, 550: 3715, 3716, 3709, 3719, 3708, 3717, 3710, 3711}, // 2560 - {2153, 2153, 90: 2153, 2153, 472: 2153, 2153, 2153, 478: 2153, 489: 2153, 495: 2153, 504: 2153, 569: 2153, 646: 2153}, - {49: 5099, 485: 3686, 3687, 3692, 520: 3688, 547: 3689, 3690, 3683, 3693, 3682, 3691, 3684, 3685}, - {2160, 2160, 90: 2160, 2160, 472: 2160, 2160, 2160, 478: 2160, 489: 2160, 495: 2160, 504: 2160, 569: 2160, 578: 5071, 646: 2160, 1099: 5100}, - {2167, 2167, 90: 2167, 2167, 472: 2167, 2167, 2167, 478: 2167, 489: 2167, 495: 2167, 504: 2167, 569: 2167, 646: 2167}, - {83: 5107, 473: 2170, 1276: 5106}, + {2168, 2168, 91: 2168, 2168, 475: 2168, 2168, 2168, 481: 2168, 492: 2168, 495: 2168, 498: 2168, 507: 2168, 572: 2168, 649: 2168, 658: 2168}, + {2171, 2171, 91: 2171, 2171, 475: 2171, 2171, 2171, 481: 2171, 492: 2171, 498: 2171, 507: 2171, 572: 2171, 649: 2171, 658: 5122, 1262: 5121}, + {491: 5120}, + {2172, 2172, 91: 2172, 2172, 475: 2172, 2172, 2172, 481: 2172, 492: 2172, 498: 2172, 507: 2172, 572: 2172, 649: 2172, 658: 2172}, + {2176, 2176, 91: 2176, 2176, 475: 2176, 2176, 2176, 481: 2176, 492: 2176, 498: 2176, 507: 2176, 572: 2176, 649: 2176}, // 2565 - {473: 5103}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 2840, 2788, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 2869, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 2874, 2801, 2766, 2783, 2948, 3031, 3020, 2818, 2830, 2941, 2942, 2937, 2895, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 2876, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 2760, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 2880, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 2799, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 2866, 2865, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 2936, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 2824, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 2751, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 2882, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 2752, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3144, 2878, 3145, 3146, 2777, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3159, 3160, 3211, 3210, 3057, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 2918, 2935, 3058, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3177, 3178, 3179, 2931, 3130, 3189, 3190, 3201, 3185, 3186, 3187, 3220, 2877, 473: 3260, 475: 3239, 3258, 479: 3268, 482: 3272, 3276, 485: 3257, 3256, 3295, 492: 3230, 495: 3269, 504: 3275, 3293, 508: 3234, 530: 3264, 564: 3271, 567: 3294, 3349, 570: 3277, 3229, 3231, 3233, 3232, 3261, 3237, 3251, 3242, 3263, 3238, 582: 3270, 3262, 3267, 3273, 3283, 3336, 3284, 3285, 592: 3236, 3314, 595: 3254, 3255, 3309, 3310, 3311, 3312, 3313, 3265, 3291, 3296, 3306, 3307, 3300, 3315, 3316, 3317, 3301, 3319, 3320, 3302, 3318, 3297, 3305, 3303, 3289, 3321, 3322, 3266, 3326, 3278, 3279, 3282, 3325, 3331, 3330, 3332, 3329, 3333, 3328, 3327, 3324, 3274, 3323, 3281, 3280, 3286, 3287, 661: 3244, 2762, 2763, 2761, 709: 3259, 3335, 3245, 3250, 3235, 3308, 3248, 3246, 3247, 3288, 3299, 3298, 3292, 3290, 3304, 3243, 3253, 3334, 3252, 3249, 5104}, - {49: 5105, 485: 3686, 3687, 3692, 520: 3688, 547: 3689, 3690, 3683, 3693, 3682, 3691, 3684, 3685}, - {2171, 2171, 90: 2171, 2171, 222: 2171, 472: 2171, 2171, 2171, 478: 2171, 489: 2171, 495: 2171, 504: 2171, 569: 2171, 646: 2171}, - {473: 5110}, + {491: 5123}, + {2170, 2170, 91: 2170, 2170, 475: 2170, 2170, 2170, 481: 2170, 492: 2170, 498: 2170, 507: 2170, 572: 2170, 649: 2170}, + {50: 5125, 488: 3712, 3713, 3718, 523: 3714, 550: 3715, 3716, 3709, 3719, 3708, 3717, 3710, 3711}, + {2177, 2177, 91: 2177, 2177, 475: 2177, 2177, 2177, 481: 2177, 492: 2177, 498: 2177, 507: 2177, 572: 2177, 581: 5097, 649: 2177, 1107: 5126}, + {2184, 2184, 91: 2184, 2184, 475: 2184, 2184, 2184, 481: 2184, 492: 2184, 498: 2184, 507: 2184, 572: 2184, 649: 2184}, // 2570 - {499: 5108}, - {508: 2736, 733: 5109}, - {473: 2169}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 2332, 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 661: 4143, 2762, 2763, 2761, 744: 4144, 808: 5111, 1001: 5112}, - {9: 4146, 49: 2331}, + {84: 5133, 476: 2187, 1284: 5132}, + {476: 5129}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 2864, 2812, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 2893, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 2898, 2825, 2789, 2807, 2972, 3055, 3044, 2842, 2854, 2965, 2966, 2961, 2919, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 2900, 2885, 2881, 2973, 2997, 2783, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 2904, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 2823, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 2889, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 2890, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 2960, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 2848, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 2774, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 2906, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 2775, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3170, 2902, 3171, 3172, 2801, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3185, 3186, 3237, 3236, 3081, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 2942, 2959, 3082, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3203, 3204, 3205, 2955, 3156, 3215, 3216, 3227, 3211, 3212, 3213, 3246, 2901, 476: 3286, 478: 3265, 3284, 482: 3294, 485: 3298, 3302, 488: 3283, 3282, 3321, 495: 3256, 498: 3295, 507: 3301, 3319, 511: 3260, 533: 3290, 567: 3297, 570: 3320, 3375, 573: 3303, 3255, 3257, 3259, 3258, 3287, 3263, 3277, 3268, 3289, 3264, 585: 3296, 3288, 3293, 3299, 3309, 3362, 3310, 3311, 595: 3262, 3340, 598: 3280, 3281, 3335, 3336, 3337, 3338, 3339, 3291, 3317, 3322, 3332, 3333, 3326, 3341, 3342, 3343, 3327, 3345, 3346, 3328, 3344, 3323, 3331, 3329, 3315, 3347, 3348, 3292, 3352, 3304, 3305, 3308, 3351, 3357, 3356, 3358, 3355, 3359, 3354, 3353, 3350, 3300, 3349, 3307, 3306, 3312, 3313, 664: 3270, 2785, 2786, 2784, 713: 3285, 3361, 3271, 3276, 3261, 3334, 3274, 3272, 3273, 3314, 3325, 3324, 3318, 3316, 3330, 3269, 3279, 3360, 3278, 3275, 5130}, + {50: 5131, 488: 3712, 3713, 3718, 523: 3714, 550: 3715, 3716, 3709, 3719, 3708, 3717, 3710, 3711}, + {2188, 2188, 91: 2188, 2188, 224: 2188, 475: 2188, 2188, 2188, 481: 2188, 492: 2188, 498: 2188, 507: 2188, 572: 2188, 649: 2188}, // 2575 - {49: 5113}, - {2172, 2172, 90: 2172, 2172, 222: 2172, 472: 2172, 2172, 2172, 478: 2172, 489: 2172, 495: 2172, 504: 2172, 569: 2172, 646: 2172}, - {2148, 2148, 90: 5118, 472: 2148, 2148, 2148, 478: 2148, 489: 2148, 495: 2148, 504: 2148, 569: 2148, 646: 2148, 1319: 5117}, - {508: 2736, 733: 2735, 741: 5116}, - {2143, 2143, 90: 2143, 472: 2143, 2143, 2143, 478: 2143, 489: 2143, 495: 2143, 504: 2143, 569: 2143, 646: 2143}, + {476: 5136}, + {502: 5134}, + {511: 2759, 737: 5135}, + {476: 2186}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 2349, 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 664: 4169, 2785, 2786, 2784, 748: 4170, 812: 5137, 1005: 5138}, // 2580 - {2142, 2142, 472: 2142, 4916, 2142, 478: 2142, 489: 2142, 495: 2142, 504: 2142, 569: 2142, 646: 2142, 1098: 5124}, - {660: 5119}, - {143: 2150, 581: 2150, 1072: 5052, 5047, 1143: 5120}, - {2146, 2146, 222: 5122, 472: 2146, 2146, 2146, 478: 2146, 489: 2146, 495: 2146, 504: 2146, 569: 2146, 646: 2146, 1318: 5121}, - {2147, 2147, 472: 2147, 2147, 2147, 478: 2147, 489: 2147, 495: 2147, 504: 2147, 569: 2147, 646: 2147}, + {9: 4172, 50: 2348}, + {50: 5139}, + {2189, 2189, 91: 2189, 2189, 224: 2189, 475: 2189, 2189, 2189, 481: 2189, 492: 2189, 498: 2189, 507: 2189, 572: 2189, 649: 2189}, + {2165, 2165, 91: 5144, 475: 2165, 2165, 2165, 481: 2165, 492: 2165, 498: 2165, 507: 2165, 572: 2165, 649: 2165, 1328: 5143}, + {511: 2759, 737: 2758, 745: 5142}, // 2585 - {508: 2736, 733: 2735, 741: 5123}, - {2145, 2145, 472: 2145, 2145, 2145, 478: 2145, 489: 2145, 495: 2145, 504: 2145, 569: 2145, 646: 2145}, - {2173, 2173, 472: 2173, 2173, 2173, 478: 2173, 489: 2173, 495: 2173, 504: 2173, 569: 2173, 646: 2173}, - {2501, 2501}, - {2500, 2500, 6: 4241, 4945, 18: 4197, 20: 4249, 22: 4242, 4245, 4244, 4247, 4248, 4250, 649: 4246, 781: 4251, 813: 4944}, + {2160, 2160, 91: 2160, 475: 2160, 2160, 2160, 481: 2160, 492: 2160, 498: 2160, 507: 2160, 572: 2160, 649: 2160}, + {2159, 2159, 475: 2159, 4942, 2159, 481: 2159, 492: 2159, 498: 2159, 507: 2159, 572: 2159, 649: 2159, 1106: 5150}, + {663: 5145}, + {146: 2167, 584: 2167, 1079: 5078, 5073, 1151: 5146}, + {2163, 2163, 224: 5148, 475: 2163, 2163, 2163, 481: 2163, 492: 2163, 498: 2163, 507: 2163, 572: 2163, 649: 2163, 1327: 5147}, // 2590 - {488: 5128}, - {152: 5129}, - {157: 5130}, - {473: 5131}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 2840, 2788, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 2869, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 2874, 2801, 2766, 2783, 2948, 3031, 3020, 2818, 2830, 2941, 2942, 2937, 2895, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 2876, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 2760, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 2880, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 2799, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 2866, 2865, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 2936, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 2824, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 2751, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 2882, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 2752, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3144, 2878, 3145, 3146, 2777, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3159, 3160, 3211, 3210, 3057, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 2918, 2935, 3058, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3177, 3178, 3179, 2931, 3130, 3189, 3190, 3201, 3185, 3186, 3187, 3220, 2877, 473: 3260, 475: 3239, 3258, 479: 3268, 482: 3272, 3276, 485: 3257, 3256, 3295, 492: 3230, 495: 3269, 504: 3275, 3293, 508: 3234, 530: 3264, 564: 3271, 567: 3294, 3349, 570: 3277, 3229, 3231, 3233, 3232, 3261, 3237, 3251, 3242, 3263, 3238, 582: 3270, 3262, 3267, 3273, 3283, 3336, 3284, 3285, 592: 3236, 3314, 595: 3254, 3255, 3309, 3310, 3311, 3312, 3313, 3265, 3291, 3296, 3306, 3307, 3300, 3315, 3316, 3317, 3301, 3319, 3320, 3302, 3318, 3297, 3305, 3303, 3289, 3321, 3322, 3266, 3326, 3278, 3279, 3282, 3325, 3331, 3330, 3332, 3329, 3333, 3328, 3327, 3324, 3274, 3323, 3281, 3280, 3286, 3287, 661: 3244, 2762, 2763, 2761, 709: 3259, 3335, 3245, 3250, 3235, 3308, 3248, 3246, 3247, 3288, 3299, 3298, 3292, 3290, 3304, 3243, 3253, 3334, 3252, 3249, 5132}, + {2164, 2164, 475: 2164, 2164, 2164, 481: 2164, 492: 2164, 498: 2164, 507: 2164, 572: 2164, 649: 2164}, + {511: 2759, 737: 2758, 745: 5149}, + {2162, 2162, 475: 2162, 2162, 2162, 481: 2162, 492: 2162, 498: 2162, 507: 2162, 572: 2162, 649: 2162}, + {2190, 2190, 475: 2190, 2190, 2190, 481: 2190, 492: 2190, 498: 2190, 507: 2190, 572: 2190, 649: 2190}, + {2521, 2521}, // 2595 - {49: 5133, 485: 3686, 3687, 3692, 520: 3688, 547: 3689, 3690, 3683, 3693, 3682, 3691, 3684, 3685}, - {2502, 2502}, - {488: 5135}, - {152: 5136}, - {157: 5137}, + {2520, 2520, 6: 4267, 4971, 18: 4223, 20: 4275, 22: 4268, 4271, 4270, 4273, 4274, 4276, 652: 4272, 785: 4277, 818: 4970}, + {491: 5154}, + {154: 5155}, + {159: 5156}, + {476: 5157}, // 2600 - {473: 5138}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 2840, 2788, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 2869, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 2874, 2801, 2766, 2783, 2948, 3031, 3020, 2818, 2830, 2941, 2942, 2937, 2895, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 2876, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 2760, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 2880, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 2799, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 2866, 2865, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 2936, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 2824, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 2751, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 2882, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 2752, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3144, 2878, 3145, 3146, 2777, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3159, 3160, 3211, 3210, 3057, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 2918, 2935, 3058, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3177, 3178, 3179, 2931, 3130, 3189, 3190, 3201, 3185, 3186, 3187, 3220, 2877, 473: 3260, 475: 3239, 3258, 479: 3268, 482: 3272, 3276, 485: 3257, 3256, 3295, 492: 3230, 495: 3269, 504: 3275, 3293, 508: 3234, 530: 3264, 564: 3271, 567: 3294, 3349, 570: 3277, 3229, 3231, 3233, 3232, 3261, 3237, 3251, 3242, 3263, 3238, 582: 3270, 3262, 3267, 3273, 3283, 3336, 3284, 3285, 592: 3236, 3314, 595: 3254, 3255, 3309, 3310, 3311, 3312, 3313, 3265, 3291, 3296, 3306, 3307, 3300, 3315, 3316, 3317, 3301, 3319, 3320, 3302, 3318, 3297, 3305, 3303, 3289, 3321, 3322, 3266, 3326, 3278, 3279, 3282, 3325, 3331, 3330, 3332, 3329, 3333, 3328, 3327, 3324, 3274, 3323, 3281, 3280, 3286, 3287, 661: 3244, 2762, 2763, 2761, 709: 3259, 3335, 3245, 3250, 3235, 3308, 3248, 3246, 3247, 3288, 3299, 3298, 3292, 3290, 3304, 3243, 3253, 3334, 3252, 3249, 5139}, - {49: 5140, 485: 3686, 3687, 3692, 520: 3688, 547: 3689, 3690, 3683, 3693, 3682, 3691, 3684, 3685}, - {2503, 2503}, - {569, 569, 569, 569, 569, 569, 569, 569, 569, 10: 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 50: 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 4750, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 569, 811: 4749, 829: 5142}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 2864, 2812, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 2893, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 2898, 2825, 2789, 2807, 2972, 3055, 3044, 2842, 2854, 2965, 2966, 2961, 2919, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 2900, 2885, 2881, 2973, 2997, 2783, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 2904, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 2823, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 2889, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 2890, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 2960, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 2848, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 2774, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 2906, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 2775, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3170, 2902, 3171, 3172, 2801, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3185, 3186, 3237, 3236, 3081, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 2942, 2959, 3082, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3203, 3204, 3205, 2955, 3156, 3215, 3216, 3227, 3211, 3212, 3213, 3246, 2901, 476: 3286, 478: 3265, 3284, 482: 3294, 485: 3298, 3302, 488: 3283, 3282, 3321, 495: 3256, 498: 3295, 507: 3301, 3319, 511: 3260, 533: 3290, 567: 3297, 570: 3320, 3375, 573: 3303, 3255, 3257, 3259, 3258, 3287, 3263, 3277, 3268, 3289, 3264, 585: 3296, 3288, 3293, 3299, 3309, 3362, 3310, 3311, 595: 3262, 3340, 598: 3280, 3281, 3335, 3336, 3337, 3338, 3339, 3291, 3317, 3322, 3332, 3333, 3326, 3341, 3342, 3343, 3327, 3345, 3346, 3328, 3344, 3323, 3331, 3329, 3315, 3347, 3348, 3292, 3352, 3304, 3305, 3308, 3351, 3357, 3356, 3358, 3355, 3359, 3354, 3353, 3350, 3300, 3349, 3307, 3306, 3312, 3313, 664: 3270, 2785, 2786, 2784, 713: 3285, 3361, 3271, 3276, 3261, 3334, 3274, 3272, 3273, 3314, 3325, 3324, 3318, 3316, 3330, 3269, 3279, 3360, 3278, 3275, 5158}, + {50: 5159, 488: 3712, 3713, 3718, 523: 3714, 550: 3715, 3716, 3709, 3719, 3708, 3717, 3710, 3711}, + {2522, 2522}, + {491: 5161}, + {154: 5162}, // 2605 - {2440, 2440, 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 661: 4754, 2762, 2763, 2761, 786: 5144, 1286: 5143}, - {2504, 2504}, - {9: 4755, 496: 5145}, - {473: 5146}, - {488: 4919, 952: 4918, 1097: 5147}, + {159: 5163}, + {476: 5164}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 2864, 2812, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 2893, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 2898, 2825, 2789, 2807, 2972, 3055, 3044, 2842, 2854, 2965, 2966, 2961, 2919, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 2900, 2885, 2881, 2973, 2997, 2783, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 2904, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 2823, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 2889, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 2890, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 2960, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 2848, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 2774, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 2906, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 2775, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3170, 2902, 3171, 3172, 2801, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3185, 3186, 3237, 3236, 3081, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 2942, 2959, 3082, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3203, 3204, 3205, 2955, 3156, 3215, 3216, 3227, 3211, 3212, 3213, 3246, 2901, 476: 3286, 478: 3265, 3284, 482: 3294, 485: 3298, 3302, 488: 3283, 3282, 3321, 495: 3256, 498: 3295, 507: 3301, 3319, 511: 3260, 533: 3290, 567: 3297, 570: 3320, 3375, 573: 3303, 3255, 3257, 3259, 3258, 3287, 3263, 3277, 3268, 3289, 3264, 585: 3296, 3288, 3293, 3299, 3309, 3362, 3310, 3311, 595: 3262, 3340, 598: 3280, 3281, 3335, 3336, 3337, 3338, 3339, 3291, 3317, 3322, 3332, 3333, 3326, 3341, 3342, 3343, 3327, 3345, 3346, 3328, 3344, 3323, 3331, 3329, 3315, 3347, 3348, 3292, 3352, 3304, 3305, 3308, 3351, 3357, 3356, 3358, 3355, 3359, 3354, 3353, 3350, 3300, 3349, 3307, 3306, 3312, 3313, 664: 3270, 2785, 2786, 2784, 713: 3285, 3361, 3271, 3276, 3261, 3334, 3274, 3272, 3273, 3314, 3325, 3324, 3318, 3316, 3330, 3269, 3279, 3360, 3278, 3275, 5165}, + {50: 5166, 488: 3712, 3713, 3718, 523: 3714, 550: 3715, 3716, 3709, 3719, 3708, 3717, 3710, 3711}, + {2523, 2523}, // 2610 - {9: 4955, 49: 5148}, - {2439, 2439}, - {2505, 2505}, - {136: 5151, 881: 104, 1076: 5152}, - {881: 103}, + {582, 582, 582, 582, 582, 582, 582, 582, 582, 10: 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 51: 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 4776, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 582, 816: 4775, 833: 5168}, + {2460, 2460, 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 664: 4780, 2785, 2786, 2784, 791: 5170, 1294: 5169}, + {2524, 2524}, + {9: 4781, 499: 5171}, + {476: 5172}, // 2615 - {881: 5153}, - {475: 5154}, - {19, 19, 185: 19, 359: 5156, 658: 19, 1253: 5155}, - {17, 17, 185: 5159, 658: 17, 1252: 5158}, - {508: 2736, 733: 5157}, + {491: 4945, 957: 4944, 1105: 5173}, + {9: 4981, 50: 5174}, + {2459, 2459}, + {2525, 2525}, + {141: 5177, 885: 110, 1083: 5178}, // 2620 - {18, 18, 185: 18, 658: 18}, - {89, 89, 658: 3965, 944: 5166}, - {15, 15, 189: 15, 371: 5161, 658: 15, 1280: 5160}, - {13, 13, 189: 5164, 658: 13, 1279: 5163}, - {508: 2736, 733: 5162}, + {885: 109}, + {885: 5179}, + {478: 5180}, + {19, 19, 187: 19, 361: 5182, 661: 19, 1261: 5181}, + {17, 17, 187: 5185, 661: 17, 1260: 5184}, // 2625 - {14, 14, 189: 14, 658: 14}, - {16, 16, 658: 16}, - {508: 2736, 733: 5165}, - {12, 12, 658: 12}, - {20, 20}, + {511: 2759, 737: 5183}, + {18, 18, 187: 18, 661: 18}, + {95, 95, 661: 3991, 949: 5192}, + {15, 15, 191: 15, 373: 5187, 661: 15, 1288: 5186}, + {13, 13, 191: 5190, 661: 13, 1287: 5189}, // 2630 - {28: 57, 139: 57, 508: 57}, - {61, 61}, - {508: 2736, 733: 5172}, - {508: 2736, 733: 5171}, - {59, 59}, + {511: 2759, 737: 5188}, + {14, 14, 191: 14, 661: 14}, + {16, 16, 661: 16}, + {511: 2759, 737: 5191}, + {12, 12, 661: 12}, // 2635 - {60, 60}, - {493: 5176}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 661: 4143, 2762, 2763, 2761, 744: 5175}, - {493: 62}, - {508: 2736, 733: 5177}, + {20, 20}, + {28: 59, 130: 59, 142: 59, 476: 59, 511: 59}, + {130: 4735, 476: 5194, 904: 4743}, + {64, 64}, + {511: 2759, 737: 5200}, // 2640 - {251: 5179, 474: 66, 739: 66, 1205: 5178}, - {474: 2587, 739: 2553, 759: 5182, 766: 2554, 779: 2555, 783: 5183}, - {383: 5180}, - {139: 5181, 474: 65, 739: 65}, - {474: 64, 739: 64}, + {511: 2759, 737: 5199}, + {61, 61}, + {62, 62}, + {63, 63}, + {496: 5204}, // 2645 - {739: 2553, 766: 5184, 779: 5185}, - {67, 67}, - {2070, 2070}, - {2069, 2069}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 661: 3921, 2762, 2763, 2761, 737: 5190, 1146: 5191, 1321: 5189}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 664: 4169, 2785, 2786, 2784, 748: 5203}, + {496: 65}, + {511: 2759, 737: 5205}, + {254: 5207, 477: 69, 570: 69, 657: 69, 743: 69, 1214: 5206}, + {477: 2607, 570: 2591, 657: 2713, 743: 2573, 763: 5210, 770: 2712, 2574, 777: 5214, 5213, 783: 2575, 788: 5212, 1304: 5211}, // 2650 - {76, 76, 76, 76, 76, 76, 76, 76, 76, 10: 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 50: 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76, 76}, - {75, 75, 75, 75, 75, 75, 75, 75, 75, 10: 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 50: 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75, 75}, - {77, 77, 9: 5197}, - {671: 5193, 687: 5194, 1248: 5192}, - {69, 69, 9: 69}, + {385: 5208}, + {142: 5209, 477: 68, 570: 68, 657: 68, 743: 68}, + {477: 67, 570: 67, 657: 67, 743: 67}, + {657: 2713, 743: 2573, 770: 5217, 5215, 783: 5216}, + {73, 73}, // 2655 - {74, 74, 9: 74}, - {73, 73, 9: 73, 136: 5196}, - {71, 71, 9: 71, 136: 5195}, - {70, 70, 9: 70}, - {72, 72, 9: 72}, + {72, 72}, + {71, 71}, + {70, 70}, + {2087, 2087}, + {2086, 2086}, // 2660 - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 661: 3921, 2762, 2763, 2761, 737: 5190, 1146: 5198}, - {68, 68, 9: 68}, - {78, 78}, - {136: 5151, 881: 104, 1076: 5203}, - {475: 5202}, + {262, 262, 484: 262}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 664: 3947, 2785, 2786, 2784, 740: 5224, 1154: 5225, 1330: 5223}, + {82, 82, 82, 82, 82, 82, 82, 82, 82, 10: 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 51: 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82, 82}, + {81, 81, 81, 81, 81, 81, 81, 81, 81, 10: 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 51: 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81, 81}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 664: 3947, 2785, 2786, 2784, 740: 3948, 786: 5222}, // 2665 - {56, 56}, - {881: 5204}, - {475: 5205}, - {489: 5206, 496: 2112, 504: 5207, 1037: 5208}, - {2111, 2111, 472: 2111, 2111, 2111, 478: 2111, 495: 2111, 2111, 569: 2111, 646: 2111}, + {57, 57, 9: 3950}, + {83, 83, 9: 5231}, + {674: 5227, 691: 5228, 1256: 5226}, + {75, 75, 9: 75}, + {80, 80, 9: 80}, // 2670 - {2110, 2110, 472: 2110, 2110, 2110, 478: 2110, 495: 2110, 2110, 569: 2110, 646: 2110}, - {496: 5209}, - {569: 5210}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 661: 3921, 2762, 2763, 2761, 737: 5211}, - {106, 106, 102: 106, 111: 106, 473: 106, 489: 106, 506: 106, 647: 5213, 658: 106, 1187: 5212}, + {79, 79, 9: 79, 141: 5230}, + {77, 77, 9: 77, 141: 5229}, + {76, 76, 9: 76}, + {78, 78, 9: 78}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 664: 3947, 2785, 2786, 2784, 740: 5224, 1154: 5232}, // 2675 - {102, 102, 102: 3944, 111: 3943, 473: 102, 489: 102, 506: 102, 658: 102, 834: 3942, 1048: 5216}, - {506: 5214}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 475: 3490, 530: 3761, 661: 3491, 2762, 2763, 2761, 738: 3760, 807: 5215}, - {105, 105, 102: 105, 111: 105, 473: 105, 489: 105, 506: 105, 658: 105}, - {89, 89, 473: 89, 489: 89, 506: 89, 658: 3965, 944: 5217}, + {74, 74, 9: 74}, + {84, 84}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 664: 3947, 2785, 2786, 2784, 740: 3948, 786: 5235}, + {56, 56, 9: 3950}, + {141: 5177, 885: 110, 1083: 5239}, // 2680 - {108, 108, 473: 108, 489: 5219, 506: 108, 1229: 5218}, - {2320, 2320, 473: 5222, 506: 2320, 1193: 5223}, - {508: 2736, 733: 5220}, - {658: 5221}, - {107, 107, 473: 107, 506: 107}, + {478: 5238}, + {58, 58}, + {885: 5240}, + {478: 5241}, + {492: 5242, 499: 2129, 507: 5243, 1042: 5244}, // 2685 - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 2326, 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 568: 3349, 661: 4143, 2762, 2763, 2761, 710: 5236, 744: 5235, 1002: 5234, 1191: 5233, 5237}, - {83, 83, 506: 5225, 1247: 5224}, - {109, 109}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 661: 3780, 2762, 2763, 2761, 711: 5228, 1074: 5227, 1246: 5226}, - {82, 82, 9: 5231}, + {2128, 2128, 475: 2128, 2128, 2128, 481: 2128, 498: 2128, 2128, 572: 2128, 649: 2128}, + {2127, 2127, 475: 2127, 2127, 2127, 481: 2127, 498: 2127, 2127, 572: 2127, 649: 2127}, + {499: 5245}, + {572: 5246}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 664: 3947, 2785, 2786, 2784, 740: 5247}, // 2690 - {80, 80, 9: 80}, - {499: 5229}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 2840, 2788, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 2869, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 2874, 2801, 2766, 2783, 2948, 3031, 3020, 2818, 2830, 2941, 2942, 2937, 2895, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 2876, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 2760, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 2880, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 2799, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 2866, 2865, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 2936, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 2824, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 2751, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 2882, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 2752, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3144, 2878, 3145, 3146, 2777, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3159, 3160, 3211, 3210, 3057, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 2918, 2935, 3058, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3177, 3178, 3179, 2931, 3130, 3189, 3190, 3201, 3185, 3186, 3187, 3220, 2877, 473: 3260, 475: 3239, 3258, 2755, 479: 3903, 482: 3272, 3276, 485: 3257, 3256, 3295, 492: 3230, 495: 3269, 504: 3275, 3293, 508: 3234, 530: 3264, 564: 3271, 567: 3294, 2753, 570: 3277, 3229, 3231, 3233, 3232, 3261, 3237, 3251, 3242, 3263, 3238, 582: 3270, 3262, 3267, 3273, 3283, 3336, 3284, 3285, 592: 3236, 3314, 595: 3254, 3255, 3309, 3310, 3311, 3312, 3313, 3265, 3291, 3296, 3306, 3307, 3300, 3315, 3316, 3317, 3301, 3319, 3320, 3302, 3318, 3297, 3305, 3303, 3289, 3321, 3322, 3266, 3326, 3278, 3279, 3282, 3325, 3331, 3330, 3332, 3329, 3333, 3328, 3327, 3324, 3274, 3323, 3281, 3280, 3286, 3287, 648: 2756, 661: 3244, 2762, 2763, 2761, 709: 3259, 3335, 3245, 3250, 3235, 3308, 3248, 3246, 3247, 3288, 3299, 3298, 3292, 3290, 3304, 3243, 3253, 3334, 3252, 3249, 2759, 2758, 2757, 3899, 797: 5230}, - {79, 79, 9: 79}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 661: 3780, 2762, 2763, 2761, 711: 5228, 1074: 5232}, + {112, 112, 103: 112, 112: 112, 476: 112, 492: 112, 509: 112, 650: 5249, 661: 112, 1196: 5248}, + {108, 108, 103: 3970, 112: 3969, 476: 108, 492: 108, 509: 108, 661: 108, 839: 3968, 1053: 5252}, + {509: 5250}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 478: 3516, 533: 3787, 664: 3517, 2785, 2786, 2784, 742: 3786, 811: 5251}, + {111, 111, 103: 111, 112: 111, 476: 111, 492: 111, 509: 111, 661: 111}, // 2695 - {81, 81, 9: 81}, - {9: 5239, 49: 2325}, - {9: 2324, 49: 2324}, - {9: 2322, 49: 2322}, - {9: 2321, 49: 2321}, + {95, 95, 476: 95, 492: 95, 509: 95, 661: 3991, 949: 5253}, + {114, 114, 476: 114, 492: 5255, 509: 114, 1237: 5254}, + {2337, 2337, 476: 5258, 509: 2337, 1202: 5259}, + {511: 2759, 737: 5256}, + {661: 5257}, // 2700 - {49: 5238}, - {2319, 2319, 506: 2319}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 568: 3349, 661: 4143, 2762, 2763, 2761, 710: 5236, 744: 5235, 1002: 5240}, - {9: 2323, 49: 2323}, - {9: 166, 151: 166, 472: 166, 500: 166, 568: 1832, 650: 166, 667: 1832}, + {113, 113, 476: 113, 509: 113}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 2343, 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 571: 3375, 664: 4169, 2785, 2786, 2784, 714: 5272, 748: 5271, 1006: 5270, 1200: 5269, 5273}, + {89, 89, 509: 5261, 1255: 5260}, + {115, 115}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 664: 3806, 2785, 2786, 2784, 715: 5264, 1081: 5263, 1254: 5262}, // 2705 - {9: 131, 472: 131, 131, 500: 131, 568: 1802, 650: 131, 667: 1802}, - {9: 145, 472: 145, 145, 500: 145, 568: 1776, 650: 145, 667: 1776}, - {9: 132, 472: 132, 132, 500: 132, 568: 1773, 650: 132, 667: 1773}, - {9: 121, 472: 121, 121, 500: 121, 568: 1738, 650: 121, 667: 1738}, - {9: 141, 472: 141, 141, 500: 141, 568: 1661, 650: 141, 667: 1661}, + {88, 88, 9: 5267}, + {86, 86, 9: 86}, + {502: 5265}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 2864, 2812, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 2893, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 2898, 2825, 2789, 2807, 2972, 3055, 3044, 2842, 2854, 2965, 2966, 2961, 2919, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 2900, 2885, 2881, 2973, 2997, 2783, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 2904, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 2823, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 2889, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 2890, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 2960, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 2848, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 2774, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 2906, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 2775, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3170, 2902, 3171, 3172, 2801, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3185, 3186, 3237, 3236, 3081, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 2942, 2959, 3082, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3203, 3204, 3205, 2955, 3156, 3215, 3216, 3227, 3211, 3212, 3213, 3246, 2901, 476: 3286, 478: 3265, 3284, 2778, 482: 3929, 485: 3298, 3302, 488: 3283, 3282, 3321, 495: 3256, 498: 3295, 507: 3301, 3319, 511: 3260, 533: 3290, 567: 3297, 570: 3320, 2776, 573: 3303, 3255, 3257, 3259, 3258, 3287, 3263, 3277, 3268, 3289, 3264, 585: 3296, 3288, 3293, 3299, 3309, 3362, 3310, 3311, 595: 3262, 3340, 598: 3280, 3281, 3335, 3336, 3337, 3338, 3339, 3291, 3317, 3322, 3332, 3333, 3326, 3341, 3342, 3343, 3327, 3345, 3346, 3328, 3344, 3323, 3331, 3329, 3315, 3347, 3348, 3292, 3352, 3304, 3305, 3308, 3351, 3357, 3356, 3358, 3355, 3359, 3354, 3353, 3350, 3300, 3349, 3307, 3306, 3312, 3313, 651: 2779, 664: 3270, 2785, 2786, 2784, 713: 3285, 3361, 3271, 3276, 3261, 3334, 3274, 3272, 3273, 3314, 3325, 3324, 3318, 3316, 3330, 3269, 3279, 3360, 3278, 3275, 2782, 2781, 2780, 3925, 801: 5266}, + {85, 85, 9: 85}, // 2710 - {9: 146, 472: 146, 146, 500: 146, 568: 1654, 650: 146, 667: 1654}, - {324: 5350, 388: 5349, 568: 1635, 667: 1635}, - {9: 133, 472: 133, 133, 500: 133, 568: 1632, 650: 133, 667: 1632}, - {9: 122, 472: 122, 122, 500: 122, 568: 1629, 650: 122, 667: 1629}, - {568: 5347, 667: 5346}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 664: 3806, 2785, 2786, 2784, 715: 5264, 1081: 5268}, + {87, 87, 9: 87}, + {9: 5275, 50: 2342}, + {9: 2341, 50: 2341}, + {9: 2339, 50: 2339}, // 2715 - {9: 734, 472: 734, 500: 734, 568: 258, 650: 734, 667: 258}, - {9: 733, 472: 733, 500: 733, 650: 733}, - {9: 162, 151: 5345, 472: 162, 500: 162, 650: 162}, - {9: 164, 472: 164, 500: 164, 650: 164}, - {9: 163, 472: 163, 500: 163, 650: 163}, + {9: 2338, 50: 2338}, + {50: 5274}, + {2336, 2336, 509: 2336}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 571: 3375, 664: 4169, 2785, 2786, 2784, 714: 5272, 748: 5271, 1006: 5276}, + {9: 2340, 50: 2340}, // 2720 - {500: 5343}, - {9: 142, 472: 142, 142, 496: 5341, 500: 142, 650: 142}, - {9: 159, 472: 159, 500: 159, 650: 159}, - {9: 5293, 472: 5294, 500: 5295}, - {9: 157, 472: 157, 5290, 500: 157, 650: 157}, + {9: 172, 130: 172, 475: 172, 503: 172, 571: 1849, 653: 172, 670: 1849}, + {9: 137, 475: 137, 137, 503: 137, 571: 1818, 653: 137, 670: 1818}, + {9: 151, 475: 151, 151, 503: 151, 571: 1792, 653: 151, 670: 1792}, + {9: 138, 475: 138, 138, 503: 138, 571: 1789, 653: 138, 670: 1789}, + {9: 127, 475: 127, 127, 503: 127, 571: 1754, 653: 127, 670: 1754}, // 2725 - {9: 155, 190: 5289, 472: 155, 155, 500: 155, 650: 155}, - {9: 153, 281: 5288, 472: 153, 153, 500: 153, 650: 153}, - {9: 152, 20: 5282, 103: 5284, 167: 5283, 170: 5281, 174: 5285, 281: 5286, 472: 152, 152, 500: 152, 650: 152}, - {9: 149, 472: 149, 149, 500: 149, 650: 149}, - {9: 148, 472: 148, 148, 500: 148, 650: 148}, + {9: 147, 475: 147, 147, 503: 147, 571: 1677, 653: 147, 670: 1677}, + {9: 152, 475: 152, 152, 503: 152, 571: 1670, 653: 152, 670: 1670}, + {326: 5386, 390: 5385, 571: 1651, 670: 1651}, + {9: 139, 475: 139, 139, 503: 139, 571: 1648, 653: 139, 670: 1648}, + {9: 128, 475: 128, 128, 503: 128, 571: 1645, 653: 128, 670: 1645}, // 2730 - {9: 147, 174: 5280, 472: 147, 147, 500: 147, 650: 147}, - {9: 144, 472: 144, 144, 500: 144, 650: 144}, - {9: 143, 472: 143, 143, 500: 143, 650: 143}, - {103: 5279, 1020: 5278}, - {9: 139, 472: 139, 139, 500: 139, 650: 139}, + {571: 5383, 670: 5382}, + {9: 748, 475: 748, 503: 748, 571: 268, 653: 748, 670: 268}, + {9: 747, 475: 747, 503: 747, 653: 747}, + {9: 168, 130: 5381, 475: 168, 503: 168, 653: 168}, + {9: 170, 475: 170, 503: 170, 653: 170}, // 2735 - {906: 5277}, - {9: 137, 472: 137, 137, 500: 137, 650: 137}, - {9: 134, 472: 134, 134, 500: 134, 650: 134}, - {125: 5276}, - {9: 129, 472: 129, 129, 500: 129, 650: 129}, + {9: 169, 475: 169, 503: 169, 653: 169}, + {503: 5379}, + {9: 148, 475: 148, 148, 499: 5377, 503: 148, 653: 148}, + {9: 165, 475: 165, 503: 165, 653: 165}, + {9: 5329, 475: 5330, 503: 5331}, // 2740 - {9: 138, 472: 138, 138, 500: 138, 650: 138}, - {9: 140, 472: 140, 140, 500: 140, 650: 140}, - {9: 127, 472: 127, 127, 500: 127, 650: 127}, - {9: 125, 472: 125, 125, 500: 125, 650: 125}, - {9: 151, 472: 151, 151, 500: 151, 650: 151}, + {9: 163, 475: 163, 5326, 503: 163, 653: 163}, + {9: 161, 192: 5325, 475: 161, 161, 503: 161, 653: 161}, + {9: 159, 284: 5324, 475: 159, 159, 503: 159, 653: 159}, + {9: 158, 20: 5318, 104: 5320, 169: 5319, 172: 5317, 176: 5321, 284: 5322, 475: 158, 158, 503: 158, 653: 158}, + {9: 155, 475: 155, 155, 503: 155, 653: 155}, // 2745 - {9: 150, 472: 150, 150, 500: 150, 650: 150}, - {125: 5287}, - {9: 128, 472: 128, 128, 500: 128, 650: 128}, - {9: 126, 472: 126, 126, 500: 126, 650: 126}, - {9: 124, 472: 124, 124, 500: 124, 650: 124}, + {9: 154, 475: 154, 154, 503: 154, 653: 154}, + {9: 153, 176: 5316, 475: 153, 153, 503: 153, 653: 153}, + {9: 150, 475: 150, 150, 503: 150, 653: 150}, + {9: 149, 475: 149, 149, 503: 149, 653: 149}, + {104: 5315, 1025: 5314}, // 2750 - {9: 130, 472: 130, 130, 500: 130, 650: 130}, - {9: 123, 472: 123, 123, 500: 123, 650: 123}, - {9: 154, 472: 154, 154, 500: 154, 650: 154}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 661: 4143, 2762, 2763, 2761, 744: 4144, 808: 5291}, - {9: 4146, 49: 5292}, + {9: 145, 475: 145, 145, 503: 145, 653: 145}, + {911: 5313}, + {9: 143, 475: 143, 143, 503: 143, 653: 143}, + {9: 140, 475: 140, 140, 503: 140, 653: 140}, + {126: 5312}, // 2755 - {9: 156, 472: 156, 500: 156, 650: 156}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 5241, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 5243, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 5249, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 5245, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 5242, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 5250, 3206, 2932, 3158, 5244, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 5247, 2843, 2844, 3083, 5248, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 5246, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 475: 5252, 497: 5275, 567: 5269, 644: 5273, 646: 5258, 649: 5268, 651: 5262, 654: 5271, 661: 3491, 2762, 2763, 2761, 5263, 669: 5267, 674: 5264, 738: 5251, 5266, 801: 5253, 809: 5257, 854: 5272, 866: 5270, 936: 5254, 957: 5255, 5261, 963: 5256, 5340, 972: 5265, 974: 5274}, - {2: 120, 120, 120, 120, 120, 120, 120, 10: 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 50: 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 5307, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 520: 120, 569: 5306, 959: 5308, 1083: 5309}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 475: 3490, 570: 5297, 661: 3491, 2762, 2763, 2761, 738: 5296, 777: 5298, 868: 5299}, - {747, 747, 9: 747, 15: 747, 48: 747, 103: 747, 144: 747, 474: 747, 481: 747, 499: 747, 568: 5304, 650: 747, 666: 747, 5303, 747}, + {9: 135, 475: 135, 135, 503: 135, 653: 135}, + {9: 144, 475: 144, 144, 503: 144, 653: 144}, + {9: 146, 475: 146, 146, 503: 146, 653: 146}, + {9: 133, 475: 133, 133, 503: 133, 653: 133}, + {9: 131, 475: 131, 131, 503: 131, 653: 131}, // 2760 - {1206, 1206, 9: 1206, 15: 1206, 48: 1206, 103: 1206, 144: 1206, 473: 3770, 1206, 481: 1206, 499: 1206, 650: 1206, 666: 1206, 668: 1206, 1092: 5302}, - {743, 743, 9: 743, 474: 743}, - {110, 110, 9: 5300}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 475: 3490, 570: 5297, 661: 3491, 2762, 2763, 2761, 738: 5296, 777: 5301}, - {742, 742, 9: 742, 474: 742}, + {9: 157, 475: 157, 157, 503: 157, 653: 157}, + {9: 156, 475: 156, 156, 503: 156, 653: 156}, + {126: 5323}, + {9: 134, 475: 134, 134, 503: 134, 653: 134}, + {9: 132, 475: 132, 132, 503: 132, 653: 132}, // 2765 - {744, 744, 9: 744, 15: 744, 48: 744, 103: 744, 144: 744, 474: 744, 481: 744, 499: 744, 650: 744, 666: 744, 668: 744}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 475: 3490, 661: 3491, 2762, 2763, 2761, 738: 5305}, - {745, 745, 9: 745, 15: 745, 48: 745, 103: 745, 144: 745, 474: 745, 481: 745, 499: 745, 650: 745, 666: 745, 668: 745}, - {746, 746, 9: 746, 15: 746, 48: 746, 103: 746, 144: 746, 474: 746, 481: 746, 499: 746, 650: 746, 666: 746, 668: 746}, - {2: 119, 119, 119, 119, 119, 119, 119, 10: 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 50: 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 119, 520: 119}, + {9: 130, 475: 130, 130, 503: 130, 653: 130}, + {9: 136, 475: 136, 136, 503: 136, 653: 136}, + {9: 129, 475: 129, 129, 503: 129, 653: 129}, + {9: 160, 475: 160, 160, 503: 160, 653: 160}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 664: 4169, 2785, 2786, 2784, 748: 4170, 812: 5327}, // 2770 - {2: 118, 118, 118, 118, 118, 118, 118, 10: 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 50: 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 118, 520: 118}, - {2: 117, 117, 117, 117, 117, 117, 117, 10: 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 50: 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 117, 520: 117}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 520: 5310, 661: 5311, 2762, 2763, 2761, 1107: 5312}, - {500: 116, 650: 116, 652: 5338}, - {500: 112, 650: 112, 652: 5335}, + {9: 4172, 50: 5328}, + {9: 162, 475: 162, 503: 162, 653: 162}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 5277, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 5279, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 5285, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 5281, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 5278, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 5286, 3232, 2956, 3184, 5280, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 5283, 2867, 2868, 3107, 5284, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 5282, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 478: 5288, 500: 5311, 570: 5305, 647: 5309, 649: 5294, 652: 5304, 654: 5298, 657: 5307, 664: 3517, 2785, 2786, 2784, 5299, 672: 5303, 677: 5300, 742: 5287, 5302, 805: 5289, 814: 5293, 858: 5308, 870: 5306, 941: 5290, 962: 5291, 5297, 968: 5292, 5376, 977: 5301, 979: 5310}, + {2: 126, 126, 126, 126, 126, 126, 126, 10: 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 51: 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 5343, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 523: 126, 572: 5342, 964: 5344, 1091: 5345}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 478: 3516, 573: 5333, 664: 3517, 2785, 2786, 2784, 742: 5332, 781: 5334, 872: 5335}, // 2775 - {500: 5313}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 475: 3490, 570: 5297, 661: 3491, 2762, 2763, 2761, 738: 5296, 777: 5314, 891: 5315, 922: 5316}, - {200, 200, 9: 200, 15: 200, 48: 200, 144: 5320, 474: 200, 666: 200, 1177: 5319}, - {235, 235, 9: 235, 15: 235, 48: 235, 474: 235, 666: 235}, - {111, 111, 9: 5317}, + {761, 761, 6: 761, 9: 761, 15: 761, 48: 761, 761, 104: 761, 147: 761, 477: 761, 484: 761, 502: 761, 571: 5340, 653: 761, 669: 761, 5339, 761}, + {1220, 1220, 6: 1220, 9: 1220, 15: 1220, 48: 1220, 1220, 104: 1220, 147: 1220, 476: 3796, 1220, 484: 1220, 502: 1220, 653: 1220, 669: 1220, 671: 1220, 1100: 5338}, + {757, 757, 9: 757, 477: 757}, + {116, 116, 9: 5336}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 478: 3516, 573: 5333, 664: 3517, 2785, 2786, 2784, 742: 5332, 781: 5337}, // 2780 - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 475: 3490, 570: 5297, 661: 3491, 2762, 2763, 2761, 738: 5296, 777: 5314, 891: 5318}, - {234, 234, 9: 234, 15: 234, 48: 234, 474: 234, 666: 234}, - {236, 236, 9: 236, 15: 236, 48: 236, 474: 236, 666: 236}, - {474: 5322, 660: 5321}, - {15: 5333, 475: 5330, 893: 5332}, + {756, 756, 9: 756, 477: 756}, + {758, 758, 6: 758, 9: 758, 15: 758, 48: 758, 758, 104: 758, 147: 758, 477: 758, 484: 758, 502: 758, 653: 758, 669: 758, 671: 758}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 478: 3516, 664: 3517, 2785, 2786, 2784, 742: 5341}, + {759, 759, 6: 759, 9: 759, 15: 759, 48: 759, 759, 104: 759, 147: 759, 477: 759, 484: 759, 502: 759, 653: 759, 669: 759, 671: 759}, + {760, 760, 6: 760, 9: 760, 15: 760, 48: 760, 760, 104: 760, 147: 760, 477: 760, 484: 760, 502: 760, 653: 760, 669: 760, 671: 760}, // 2785 - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 475: 3490, 661: 3491, 2762, 2763, 2761, 738: 5324, 1178: 5323}, - {198, 198, 9: 198, 15: 198, 48: 198, 474: 198, 478: 5326, 660: 5325, 666: 198}, - {194, 194, 9: 194, 15: 194, 48: 194, 474: 194, 478: 194, 660: 194, 666: 194}, - {475: 5330, 893: 5331}, - {475: 5328, 576: 5329, 1058: 5327}, + {2: 125, 125, 125, 125, 125, 125, 125, 10: 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 51: 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 125, 523: 125}, + {2: 124, 124, 124, 124, 124, 124, 124, 10: 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 51: 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 124, 523: 124}, + {2: 123, 123, 123, 123, 123, 123, 123, 10: 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 51: 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 123, 523: 123}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 523: 5346, 664: 5347, 2785, 2786, 2784, 1115: 5348}, + {503: 122, 653: 122, 655: 5374}, // 2790 - {196, 196, 9: 196, 15: 196, 48: 196, 474: 196, 666: 196}, - {193, 193, 9: 193, 15: 193, 48: 193, 474: 193, 666: 193}, - {192, 192, 9: 192, 15: 192, 48: 192, 474: 192, 666: 192}, - {739, 739, 9: 739, 15: 739, 48: 739, 739, 474: 739, 666: 739}, - {197, 197, 9: 197, 15: 197, 48: 197, 474: 197, 666: 197}, + {503: 118, 653: 118, 655: 5371}, + {503: 5349}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 478: 3516, 573: 5333, 664: 3517, 2785, 2786, 2784, 742: 5332, 781: 5350, 895: 5351, 927: 5352}, + {206, 206, 6: 206, 9: 206, 15: 206, 48: 206, 206, 147: 5356, 477: 206, 669: 206, 1186: 5355}, + {245, 245, 6: 245, 9: 245, 15: 245, 48: 245, 245, 477: 245, 669: 245}, // 2795 - {199, 199, 9: 199, 15: 199, 48: 199, 474: 199, 666: 199}, - {475: 5328, 576: 5329, 1058: 5334}, - {195, 195, 9: 195, 15: 195, 48: 195, 474: 195, 666: 195}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 520: 5336, 661: 5337, 2762, 2763, 2761}, - {500: 114, 650: 114}, + {117, 117, 9: 5353}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 478: 3516, 573: 5333, 664: 3517, 2785, 2786, 2784, 742: 5332, 781: 5350, 895: 5354}, + {244, 244, 6: 244, 9: 244, 15: 244, 48: 244, 244, 477: 244, 669: 244}, + {246, 246, 6: 246, 9: 246, 15: 246, 48: 246, 246, 477: 246, 669: 246}, + {477: 5358, 663: 5357}, // 2800 - {500: 113, 650: 113}, - {520: 5339}, - {500: 115, 650: 115}, - {9: 158, 472: 158, 500: 158, 650: 158}, - {282: 5342}, + {15: 5369, 478: 5366, 897: 5368}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 478: 3516, 664: 3517, 2785, 2786, 2784, 742: 5360, 1187: 5359}, + {204, 204, 6: 204, 9: 204, 15: 204, 48: 204, 204, 477: 204, 481: 5362, 663: 5361, 669: 204}, + {200, 200, 6: 200, 9: 200, 15: 200, 48: 200, 200, 477: 200, 481: 200, 663: 200, 669: 200}, + {478: 5366, 897: 5367}, // 2805 - {9: 160, 472: 160, 500: 160, 650: 160}, - {282: 5344}, - {9: 161, 472: 161, 500: 161, 650: 161}, - {9: 165, 151: 165, 472: 165, 500: 165, 650: 165}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 475: 3490, 661: 3491, 2762, 2763, 2761, 738: 5348}, + {478: 5364, 579: 5365, 1065: 5363}, + {202, 202, 6: 202, 9: 202, 15: 202, 48: 202, 202, 477: 202, 669: 202}, + {199, 199, 6: 199, 9: 199, 15: 199, 48: 199, 199, 477: 199, 669: 199}, + {198, 198, 6: 198, 9: 198, 15: 198, 48: 198, 198, 477: 198, 669: 198}, + {753, 753, 6: 753, 9: 753, 15: 753, 48: 753, 753, 753, 477: 753, 669: 753}, // 2810 - {735, 735, 9: 735, 472: 735, 500: 735, 650: 735}, - {736, 736, 9: 736, 472: 736, 500: 736, 650: 736}, - {9: 136, 472: 136, 136, 500: 136, 650: 136}, - {9: 135, 472: 135, 135, 500: 135, 650: 135}, - {472: 5391, 568: 1749, 667: 1749}, + {203, 203, 6: 203, 9: 203, 15: 203, 48: 203, 203, 477: 203, 669: 203}, + {205, 205, 6: 205, 9: 205, 15: 205, 48: 205, 205, 477: 205, 669: 205}, + {478: 5364, 579: 5365, 1065: 5370}, + {201, 201, 6: 201, 9: 201, 15: 201, 48: 201, 201, 477: 201, 669: 201}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 523: 5372, 664: 5373, 2785, 2786, 2784}, // 2815 - {9: 5293, 472: 5353, 650: 5354}, - {2: 120, 120, 120, 120, 120, 120, 120, 10: 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 50: 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 5307, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 520: 120, 569: 5306, 959: 5308, 1083: 5356}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 475: 3490, 570: 5297, 661: 3491, 2762, 2763, 2761, 738: 5296, 777: 5298, 868: 5355}, - {173, 173, 9: 5300}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 520: 5310, 661: 5311, 2762, 2763, 2761, 1107: 5357}, + {503: 120, 653: 120}, + {503: 119, 653: 119}, + {523: 5375}, + {503: 121, 653: 121}, + {9: 164, 475: 164, 503: 164, 653: 164}, // 2820 - {650: 5358}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 475: 3490, 570: 5297, 661: 3491, 2762, 2763, 2761, 738: 5296, 777: 5314, 891: 5315, 922: 5359}, - {225, 225, 9: 5317, 474: 225, 666: 5361, 960: 5360, 5362}, - {224, 224, 15: 224, 48: 224, 474: 224}, - {133: 5382, 135: 5380, 137: 5383, 5381, 363: 5375, 407: 5377, 962: 5379, 1287: 5378, 1305: 5376}, + {285: 5378}, + {9: 166, 475: 166, 503: 166, 653: 166}, + {285: 5380}, + {9: 167, 475: 167, 503: 167, 653: 167}, + {9: 171, 130: 171, 475: 171, 503: 171, 653: 171}, // 2825 - {172, 172, 474: 5364, 1163: 5363}, - {175, 175}, - {128: 5368, 5366, 5367, 5369, 854: 5365}, - {906: 5374}, - {508: 2736, 733: 5373}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 478: 3516, 664: 3517, 2785, 2786, 2784, 742: 5384}, + {749, 749, 9: 749, 475: 749, 503: 749, 653: 749}, + {750, 750, 9: 750, 475: 750, 503: 750, 653: 750}, + {9: 142, 475: 142, 142, 503: 142, 653: 142}, + {9: 141, 475: 141, 141, 503: 141, 653: 141}, // 2830 - {508: 2736, 733: 5372}, - {508: 2736, 733: 5371}, - {508: 2736, 733: 5370}, - {167, 167}, - {168, 168}, + {475: 5429, 571: 1765, 670: 1765}, + {9: 5329, 475: 5389, 653: 5390}, + {2: 126, 126, 126, 126, 126, 126, 126, 10: 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 51: 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 5343, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 126, 523: 126, 572: 5342, 964: 5344, 1091: 5392}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 478: 3516, 573: 5333, 664: 3517, 2785, 2786, 2784, 742: 5332, 781: 5334, 872: 5391}, + {179, 179, 9: 5336}, // 2835 - {169, 169}, - {170, 170}, - {171, 171}, - {223, 223, 15: 223, 48: 223, 474: 223}, - {222, 222, 15: 222, 48: 222, 474: 222}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 523: 5346, 664: 5347, 2785, 2786, 2784, 1115: 5393}, + {653: 5394}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 478: 3516, 573: 5333, 664: 3517, 2785, 2786, 2784, 742: 5332, 781: 5350, 895: 5351, 927: 5395}, + {235, 235, 9: 5353, 477: 235, 669: 5397, 965: 5396, 5398}, + {234, 234, 6: 234, 15: 234, 48: 234, 234, 477: 234}, // 2840 - {221, 221, 15: 221, 48: 221, 474: 221}, - {220, 220, 15: 220, 48: 220, 133: 5382, 135: 5380, 137: 5383, 5381, 474: 220, 507: 5388, 962: 5389}, - {219, 219, 15: 219, 48: 219, 133: 219, 135: 219, 137: 219, 219, 474: 219, 507: 219}, - {475: 5387}, - {475: 5386}, + {129: 5418, 131: 5416, 137: 5419, 5417, 5420, 365: 5411, 410: 5413, 967: 5415, 1295: 5414, 1314: 5412}, + {178, 178, 477: 5400, 1172: 5399}, + {181, 181}, + {132: 5404, 5402, 5403, 5405, 858: 5401}, + {911: 5410}, // 2845 - {475: 5385}, - {475: 5384}, - {213, 213, 15: 213, 48: 213, 133: 213, 135: 213, 137: 213, 213, 474: 213, 507: 213}, - {214, 214, 15: 214, 48: 214, 133: 214, 135: 214, 137: 214, 214, 474: 214, 507: 214}, - {215, 215, 15: 215, 48: 215, 133: 215, 135: 215, 137: 215, 215, 474: 215, 507: 215}, + {511: 2759, 737: 5409}, + {511: 2759, 737: 5408}, + {511: 2759, 737: 5407}, + {511: 2759, 737: 5406}, + {173, 173}, // 2850 - {216, 216, 15: 216, 48: 216, 133: 216, 135: 216, 137: 216, 216, 474: 216, 507: 216}, - {133: 5382, 135: 5380, 137: 5383, 5381, 962: 5390}, - {217, 217, 15: 217, 48: 217, 133: 217, 135: 217, 137: 217, 217, 474: 217, 507: 217}, - {218, 218, 15: 218, 48: 218, 133: 218, 135: 218, 137: 218, 218, 474: 218, 507: 218}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 475: 3490, 570: 5297, 661: 3491, 2762, 2763, 2761, 738: 5296, 777: 5392}, - // 2855 - {650: 5393}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 475: 3490, 570: 5297, 661: 3491, 2762, 2763, 2761, 738: 5296, 777: 5298, 868: 5394}, - {172, 172, 9: 5300, 474: 5364, 1163: 5395}, {174, 174}, - {2193, 2193, 9: 2193, 16: 2193, 18: 2193, 21: 2193, 479: 2193, 484: 2193, 498: 2193, 500: 2193, 505: 2193, 2193, 518: 2193, 647: 2193, 650: 2193}, + {175, 175}, + {176, 176}, + {177, 177}, + {233, 233, 6: 233, 15: 233, 48: 233, 233, 477: 233}, + // 2855 + {232, 232, 6: 232, 15: 232, 48: 232, 232, 477: 232}, + {231, 231, 6: 231, 15: 231, 48: 231, 231, 477: 231}, + {230, 230, 6: 230, 15: 230, 48: 230, 230, 129: 5418, 131: 5416, 137: 5419, 5417, 5420, 477: 230, 510: 5426, 967: 5427}, + {229, 229, 6: 229, 15: 229, 48: 229, 229, 129: 229, 131: 229, 137: 229, 229, 229, 477: 229, 510: 229}, + {478: 5425}, // 2860 - {249, 249}, - {2: 854, 854, 854, 854, 854, 854, 854, 10: 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 50: 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 473: 854, 475: 854, 854, 854, 479: 854, 482: 854, 854, 485: 854, 854, 854, 489: 854, 492: 854, 495: 854, 854, 500: 854, 504: 854, 854, 508: 854, 515: 854, 520: 854, 530: 854, 564: 854, 567: 854, 854, 570: 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 582: 854, 854, 854, 854, 854, 854, 854, 854, 592: 854, 854, 595: 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 854, 648: 854, 651: 854, 745: 854, 854, 753: 854, 854, 854, 762: 854, 769: 854, 854, 854}, - {2: 852, 852, 852, 852, 852, 852, 852, 10: 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 50: 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 852, 473: 852, 489: 852, 496: 852, 500: 852, 579: 852, 753: 852, 852, 852}, - {2: 1057, 1057, 1057, 1057, 1057, 1057, 1057, 10: 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 50: 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 473: 1057, 489: 1057, 579: 1057, 753: 5403, 5402, 5401, 837: 5404, 887: 5405}, - {2: 1060, 1060, 1060, 1060, 1060, 1060, 1060, 10: 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 50: 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 473: 1060, 475: 1060, 1060, 1060, 479: 1060, 482: 1060, 1060, 485: 1060, 1060, 1060, 489: 1060, 492: 1060, 495: 1060, 1060, 500: 1060, 504: 1060, 1060, 508: 1060, 515: 1060, 520: 1060, 530: 1060, 564: 1060, 567: 1060, 1060, 570: 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 582: 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 592: 1060, 1060, 595: 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 1060, 648: 1060, 651: 1060, 745: 1060, 1060, 753: 1060, 1060, 1060, 762: 1060, 769: 1060, 1060, 1060}, + {478: 5424}, + {478: 5423}, + {478: 5422}, + {478: 5421}, + {222, 222, 6: 222, 15: 222, 48: 222, 222, 129: 222, 131: 222, 137: 222, 222, 222, 477: 222, 510: 222}, // 2865 - {2: 1059, 1059, 1059, 1059, 1059, 1059, 1059, 10: 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 50: 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 473: 1059, 475: 1059, 1059, 1059, 479: 1059, 482: 1059, 1059, 485: 1059, 1059, 1059, 489: 1059, 492: 1059, 495: 1059, 1059, 500: 1059, 504: 1059, 1059, 508: 1059, 515: 1059, 520: 1059, 530: 1059, 564: 1059, 567: 1059, 1059, 570: 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 582: 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 592: 1059, 1059, 595: 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 648: 1059, 651: 1059, 745: 1059, 1059, 753: 1059, 1059, 1059, 762: 1059, 769: 1059, 1059, 1059}, - {2: 1058, 1058, 1058, 1058, 1058, 1058, 1058, 10: 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 50: 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 473: 1058, 475: 1058, 1058, 1058, 479: 1058, 482: 1058, 1058, 485: 1058, 1058, 1058, 489: 1058, 492: 1058, 495: 1058, 1058, 500: 1058, 504: 1058, 1058, 508: 1058, 515: 1058, 520: 1058, 530: 1058, 564: 1058, 567: 1058, 1058, 570: 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 582: 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 592: 1058, 1058, 595: 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 648: 1058, 651: 1058, 745: 1058, 1058, 753: 1058, 1058, 1058, 762: 1058, 769: 1058, 1058, 1058}, - {2: 1056, 1056, 1056, 1056, 1056, 1056, 1056, 10: 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 50: 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 1056, 473: 1056, 489: 1056, 496: 1056, 500: 1056, 579: 1056}, - {2: 1856, 1856, 1856, 1856, 1856, 1856, 1856, 10: 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 50: 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 473: 1856, 489: 4191, 579: 1856, 855: 5406}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 473: 5415, 579: 5410, 661: 3921, 2762, 2763, 2761, 709: 5414, 737: 5413, 798: 5412, 802: 5411, 5409, 852: 5407, 890: 5408}, + {223, 223, 6: 223, 15: 223, 48: 223, 223, 129: 223, 131: 223, 137: 223, 223, 223, 477: 223, 510: 223}, + {224, 224, 6: 224, 15: 224, 48: 224, 224, 129: 224, 131: 224, 137: 224, 224, 224, 477: 224, 510: 224}, + {225, 225, 6: 225, 15: 225, 48: 225, 225, 129: 225, 131: 225, 137: 225, 225, 225, 477: 225, 510: 225}, + {226, 226, 6: 226, 15: 226, 48: 226, 226, 129: 226, 131: 226, 137: 226, 226, 226, 477: 226, 510: 226}, + {129: 5418, 131: 5416, 137: 5419, 5417, 5420, 967: 5428}, // 2870 - {931, 931, 9: 931, 49: 931, 472: 931, 474: 931, 480: 931, 931, 490: 931, 931, 493: 931, 931, 496: 931, 931, 931, 501: 931, 931, 506: 931, 513: 931, 931, 516: 931}, - {9: 5461, 506: 5531}, - {9: 929, 482: 5428, 5429, 506: 5518, 515: 5427, 517: 5430, 519: 5426, 521: 5431, 5432, 819: 5425, 823: 5424}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 661: 5515, 2762, 2763, 2761}, - {927, 927, 9: 927, 49: 927, 472: 927, 474: 927, 480: 927, 927, 927, 927, 490: 927, 927, 493: 927, 927, 496: 927, 927, 927, 501: 927, 927, 506: 927, 513: 927, 927, 927, 927, 927, 519: 927, 521: 927, 927, 927}, + {227, 227, 6: 227, 15: 227, 48: 227, 227, 129: 227, 131: 227, 137: 227, 227, 227, 477: 227, 510: 227}, + {228, 228, 6: 228, 15: 228, 48: 228, 228, 129: 228, 131: 228, 137: 228, 228, 228, 477: 228, 510: 228}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 478: 3516, 573: 5333, 664: 3517, 2785, 2786, 2784, 742: 5332, 781: 5430}, + {653: 5431}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 478: 3516, 573: 5333, 664: 3517, 2785, 2786, 2784, 742: 5332, 781: 5334, 872: 5432}, // 2875 - {926, 926, 9: 926, 49: 926, 472: 926, 474: 926, 480: 926, 926, 926, 926, 490: 926, 926, 493: 926, 926, 496: 926, 926, 926, 501: 926, 926, 506: 926, 513: 926, 926, 926, 926, 926, 519: 926, 521: 926, 926, 926}, - {922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 474: 922, 478: 922, 480: 922, 922, 922, 922, 488: 5465, 922, 922, 922, 493: 922, 922, 496: 922, 922, 922, 501: 922, 922, 922, 506: 922, 513: 922, 922, 922, 922, 922, 519: 922, 521: 922, 922, 922, 525: 922, 922, 673: 922, 860: 5464}, - {920, 920, 3135, 2967, 3002, 2847, 2883, 3004, 2774, 920, 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 920, 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 920, 474: 920, 478: 5422, 480: 920, 920, 920, 920, 490: 920, 920, 493: 920, 920, 496: 920, 920, 920, 501: 920, 920, 506: 920, 513: 920, 920, 920, 920, 920, 519: 920, 521: 920, 920, 920, 661: 5421, 2762, 2763, 2761, 915: 5420, 5419}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 473: 5415, 2587, 495: 2586, 569: 2585, 579: 5410, 646: 2581, 661: 3921, 2762, 2763, 2761, 709: 5418, 737: 5413, 748: 3881, 2582, 2583, 2584, 2593, 756: 2591, 2590, 2589, 3880, 3883, 3882, 798: 5412, 802: 5411, 5417, 852: 5407, 890: 5416}, - {9: 5461, 49: 5462}, + {178, 178, 9: 5336, 477: 5400, 1172: 5433}, + {180, 180}, + {2210, 2210, 9: 2210, 16: 2210, 18: 2210, 21: 2210, 482: 2210, 487: 2210, 501: 2210, 503: 2210, 508: 2210, 2210, 521: 2210, 650: 2210, 653: 2210, 680: 2210}, + {259, 259}, + {2: 868, 868, 868, 868, 868, 868, 868, 10: 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 51: 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 476: 868, 478: 868, 868, 868, 482: 868, 485: 868, 868, 488: 868, 868, 868, 492: 868, 495: 868, 498: 868, 868, 503: 868, 507: 868, 868, 511: 868, 518: 868, 523: 868, 533: 868, 567: 868, 570: 868, 868, 573: 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 585: 868, 868, 868, 868, 868, 868, 868, 868, 595: 868, 868, 598: 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 868, 651: 868, 654: 868, 749: 868, 868, 757: 868, 868, 868, 766: 868, 774: 868, 868, 868}, // 2880 - {929, 929, 9: 929, 49: 929, 472: 929, 474: 929, 480: 929, 929, 5428, 5429, 490: 929, 929, 493: 929, 929, 496: 929, 929, 929, 501: 929, 929, 506: 929, 513: 929, 929, 5427, 929, 5430, 519: 5426, 521: 5431, 5432, 819: 5425, 823: 5424}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 920, 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 3974, 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 478: 5422, 480: 814, 482: 920, 920, 490: 814, 814, 493: 2728, 501: 2729, 2725, 515: 920, 517: 920, 519: 920, 521: 920, 920, 661: 5421, 2762, 2763, 2761, 767: 3891, 3892, 915: 5420, 5419}, - {924, 924, 9: 924, 49: 924, 472: 924, 474: 924, 480: 924, 924, 924, 924, 490: 924, 924, 493: 924, 924, 496: 924, 924, 924, 501: 924, 924, 506: 924, 513: 924, 924, 924, 924, 924, 519: 924, 521: 924, 924, 924}, - {919, 919, 9: 919, 49: 919, 472: 919, 474: 919, 480: 919, 919, 919, 919, 489: 919, 919, 919, 493: 919, 919, 496: 919, 919, 919, 501: 919, 919, 919, 506: 919, 513: 919, 919, 919, 919, 919, 519: 919, 521: 919, 919, 919, 525: 919, 919, 673: 919}, - {918, 918, 9: 918, 49: 918, 472: 918, 474: 918, 480: 918, 918, 918, 918, 489: 918, 918, 918, 493: 918, 918, 496: 918, 918, 918, 501: 918, 918, 918, 506: 918, 513: 918, 918, 918, 918, 918, 519: 918, 521: 918, 918, 918, 525: 918, 918, 673: 918}, + {2: 866, 866, 866, 866, 866, 866, 866, 10: 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 51: 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 476: 866, 492: 866, 499: 866, 503: 866, 582: 866, 757: 866, 866, 866}, + {2: 1071, 1071, 1071, 1071, 1071, 1071, 1071, 10: 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 51: 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 476: 1071, 492: 1071, 582: 1071, 757: 5441, 5440, 5439, 842: 5442, 891: 5443}, + {2: 1074, 1074, 1074, 1074, 1074, 1074, 1074, 10: 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 51: 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 476: 1074, 478: 1074, 1074, 1074, 482: 1074, 485: 1074, 1074, 488: 1074, 1074, 1074, 492: 1074, 495: 1074, 498: 1074, 1074, 503: 1074, 507: 1074, 1074, 511: 1074, 518: 1074, 523: 1074, 533: 1074, 567: 1074, 570: 1074, 1074, 573: 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 585: 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 595: 1074, 1074, 598: 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 1074, 651: 1074, 654: 1074, 749: 1074, 1074, 757: 1074, 1074, 1074, 766: 1074, 774: 1074, 1074, 1074}, + {2: 1073, 1073, 1073, 1073, 1073, 1073, 1073, 10: 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 51: 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 476: 1073, 478: 1073, 1073, 1073, 482: 1073, 485: 1073, 1073, 488: 1073, 1073, 1073, 492: 1073, 495: 1073, 498: 1073, 1073, 503: 1073, 507: 1073, 1073, 511: 1073, 518: 1073, 523: 1073, 533: 1073, 567: 1073, 570: 1073, 1073, 573: 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 585: 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 595: 1073, 1073, 598: 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 1073, 651: 1073, 654: 1073, 749: 1073, 1073, 757: 1073, 1073, 1073, 766: 1073, 774: 1073, 1073, 1073}, + {2: 1072, 1072, 1072, 1072, 1072, 1072, 1072, 10: 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 51: 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 476: 1072, 478: 1072, 1072, 1072, 482: 1072, 485: 1072, 1072, 488: 1072, 1072, 1072, 492: 1072, 495: 1072, 498: 1072, 1072, 503: 1072, 507: 1072, 1072, 511: 1072, 518: 1072, 523: 1072, 533: 1072, 567: 1072, 570: 1072, 1072, 573: 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 585: 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 595: 1072, 1072, 598: 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 1072, 651: 1072, 654: 1072, 749: 1072, 1072, 757: 1072, 1072, 1072, 766: 1072, 774: 1072, 1072, 1072}, // 2885 - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 661: 5423, 2762, 2763, 2761}, - {917, 917, 9: 917, 49: 917, 472: 917, 474: 917, 480: 917, 917, 917, 917, 489: 917, 917, 917, 493: 917, 917, 496: 917, 917, 917, 501: 917, 917, 917, 506: 917, 513: 917, 917, 917, 917, 917, 519: 917, 521: 917, 917, 917, 525: 917, 917, 673: 917}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 473: 5415, 661: 3921, 2762, 2763, 2761, 709: 5414, 737: 5413, 798: 5412, 802: 5411, 5454}, - {517: 888, 908: 5441, 1096: 5445}, - {482: 5428, 5429, 517: 5438, 819: 5439}, + {2: 1070, 1070, 1070, 1070, 1070, 1070, 1070, 10: 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 51: 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 1070, 476: 1070, 492: 1070, 499: 1070, 503: 1070, 582: 1070}, + {2: 1873, 1873, 1873, 1873, 1873, 1873, 1873, 10: 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 51: 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 476: 1873, 492: 4217, 582: 1873, 859: 5444}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 476: 5453, 582: 5448, 664: 3947, 2785, 2786, 2784, 713: 5452, 740: 5451, 802: 5450, 806: 5449, 5447, 856: 5445, 894: 5446}, + {945, 945, 9: 945, 50: 945, 475: 945, 477: 945, 483: 945, 945, 493: 945, 945, 496: 945, 945, 499: 945, 945, 945, 504: 945, 945, 509: 945, 516: 945, 945, 519: 945}, + {9: 5499, 509: 5569}, // 2890 - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 473: 5415, 661: 3921, 2762, 2763, 2761, 709: 5414, 737: 5413, 798: 5412, 802: 5411, 5435}, - {517: 890, 908: 890}, - {517: 889, 908: 889}, - {2: 886, 886, 886, 886, 886, 886, 886, 10: 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 50: 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 886, 473: 886}, - {517: 5434}, + {9: 943, 485: 5466, 5467, 509: 5556, 518: 5465, 520: 5468, 522: 5464, 524: 5469, 5470, 823: 5463, 827: 5462}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 664: 5553, 2785, 2786, 2784}, + {941, 941, 9: 941, 50: 941, 475: 941, 477: 941, 483: 941, 941, 941, 941, 493: 941, 941, 496: 941, 941, 499: 941, 941, 941, 504: 941, 941, 509: 941, 516: 941, 941, 941, 941, 941, 522: 941, 524: 941, 941, 941}, + {940, 940, 9: 940, 50: 940, 475: 940, 477: 940, 483: 940, 940, 940, 940, 493: 940, 940, 496: 940, 940, 499: 940, 940, 940, 504: 940, 940, 509: 940, 516: 940, 940, 940, 940, 940, 522: 940, 524: 940, 940, 940}, + {936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 477: 936, 481: 936, 483: 936, 936, 936, 936, 491: 5503, 936, 936, 936, 496: 936, 936, 499: 936, 936, 936, 504: 936, 936, 936, 509: 936, 516: 936, 936, 936, 936, 936, 522: 936, 524: 936, 936, 936, 528: 936, 936, 676: 936, 864: 5502}, // 2895 - {517: 5433}, - {2: 884, 884, 884, 884, 884, 884, 884, 10: 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 50: 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 884, 473: 884}, - {2: 885, 885, 885, 885, 885, 885, 885, 10: 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 50: 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 885, 473: 885}, - {892, 892, 9: 892, 49: 892, 472: 5436, 474: 892, 480: 892, 892, 892, 892, 490: 892, 892, 493: 892, 892, 496: 892, 892, 892, 501: 892, 892, 506: 892, 513: 892, 892, 892, 892, 892, 519: 892, 521: 892, 892, 892, 819: 5425, 823: 5424}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 2840, 2788, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 2869, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 2874, 2801, 2766, 2783, 2948, 3031, 3020, 2818, 2830, 2941, 2942, 2937, 2895, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 2876, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 2760, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 2880, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 2799, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 2866, 2865, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 2936, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 2824, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 2751, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 2882, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 2752, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3144, 2878, 3145, 3146, 2777, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3159, 3160, 3211, 3210, 3057, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 2918, 2935, 3058, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3177, 3178, 3179, 2931, 3130, 3189, 3190, 3201, 3185, 3186, 3187, 3220, 2877, 473: 3260, 475: 3239, 3258, 2755, 479: 3268, 482: 3272, 3276, 485: 3257, 3256, 3295, 492: 3230, 495: 3269, 504: 3275, 3293, 508: 3234, 530: 3264, 564: 3271, 567: 3294, 2753, 570: 3277, 3229, 3231, 3233, 3232, 3261, 3237, 3251, 3242, 3263, 3238, 582: 3270, 3262, 3267, 3273, 3283, 3336, 3284, 3285, 592: 3236, 3314, 595: 3254, 3255, 3309, 3310, 3311, 3312, 3313, 3265, 3291, 3296, 3306, 3307, 3300, 3315, 3316, 3317, 3301, 3319, 3320, 3302, 3318, 3297, 3305, 3303, 3289, 3321, 3322, 3266, 3326, 3278, 3279, 3282, 3325, 3331, 3330, 3332, 3329, 3333, 3328, 3327, 3324, 3274, 3323, 3281, 3280, 3286, 3287, 648: 2756, 661: 3244, 2762, 2763, 2761, 709: 3259, 3335, 3245, 3250, 3235, 3308, 3248, 3246, 3247, 3288, 3299, 3298, 3292, 3290, 3304, 3243, 3253, 3334, 3252, 3249, 2759, 2758, 2757, 5437}, + {934, 934, 3161, 2991, 3026, 2871, 2907, 3028, 2798, 934, 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 934, 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 934, 477: 934, 481: 5460, 483: 934, 934, 934, 934, 493: 934, 934, 496: 934, 934, 499: 934, 934, 934, 504: 934, 934, 509: 934, 516: 934, 934, 934, 934, 934, 522: 934, 524: 934, 934, 934, 664: 5459, 2785, 2786, 2784, 920: 5458, 5457}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 476: 5453, 2607, 498: 2606, 572: 2605, 582: 5448, 649: 2601, 664: 3947, 2785, 2786, 2784, 713: 5456, 740: 5451, 752: 3907, 2602, 2603, 2604, 2613, 760: 2611, 2610, 2609, 3906, 3909, 3908, 802: 5450, 806: 5449, 5455, 856: 5445, 894: 5454}, + {9: 5499, 50: 5500}, + {943, 943, 9: 943, 50: 943, 475: 943, 477: 943, 483: 943, 943, 5466, 5467, 493: 943, 943, 496: 943, 943, 499: 943, 943, 943, 504: 943, 943, 509: 943, 516: 943, 943, 5465, 943, 5468, 522: 5464, 524: 5469, 5470, 823: 5463, 827: 5462}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 934, 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 4000, 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 481: 5460, 483: 828, 485: 934, 934, 493: 828, 828, 496: 2751, 504: 2752, 2748, 518: 934, 520: 934, 522: 934, 524: 934, 934, 664: 5459, 2785, 2786, 2784, 772: 3917, 3918, 920: 5458, 5457}, // 2900 - {891, 891, 9: 891, 49: 891, 472: 891, 474: 891, 480: 891, 891, 891, 891, 490: 891, 891, 493: 891, 891, 496: 891, 891, 891, 501: 891, 891, 506: 891, 3345, 509: 3343, 3344, 3342, 3340, 891, 891, 891, 891, 891, 519: 891, 521: 891, 891, 891, 734: 3341, 3339}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 473: 5415, 661: 3921, 2762, 2763, 2761, 709: 5414, 737: 5413, 798: 5412, 802: 5411, 5444}, - {517: 888, 908: 5441, 1096: 5440}, - {517: 5442}, - {517: 887}, + {938, 938, 9: 938, 50: 938, 475: 938, 477: 938, 483: 938, 938, 938, 938, 493: 938, 938, 496: 938, 938, 499: 938, 938, 938, 504: 938, 938, 509: 938, 516: 938, 938, 938, 938, 938, 522: 938, 524: 938, 938, 938}, + {933, 933, 9: 933, 50: 933, 475: 933, 477: 933, 483: 933, 933, 933, 933, 492: 933, 933, 933, 496: 933, 933, 499: 933, 933, 933, 504: 933, 933, 933, 509: 933, 516: 933, 933, 933, 933, 933, 522: 933, 524: 933, 933, 933, 528: 933, 933, 676: 933}, + {932, 932, 9: 932, 50: 932, 475: 932, 477: 932, 483: 932, 932, 932, 932, 492: 932, 932, 932, 496: 932, 932, 499: 932, 932, 932, 504: 932, 932, 932, 509: 932, 516: 932, 932, 932, 932, 932, 522: 932, 524: 932, 932, 932, 528: 932, 932, 676: 932}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 664: 5461, 2785, 2786, 2784}, + {931, 931, 9: 931, 50: 931, 475: 931, 477: 931, 483: 931, 931, 931, 931, 492: 931, 931, 931, 496: 931, 931, 499: 931, 931, 931, 504: 931, 931, 931, 509: 931, 516: 931, 931, 931, 931, 931, 522: 931, 524: 931, 931, 931, 528: 931, 931, 676: 931}, // 2905 - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 473: 5415, 661: 3921, 2762, 2763, 2761, 709: 5414, 737: 5413, 798: 5412, 802: 5411, 5443}, - {893, 893, 9: 893, 49: 893, 472: 893, 474: 893, 480: 893, 893, 893, 893, 490: 893, 893, 493: 893, 893, 496: 893, 893, 893, 501: 893, 893, 506: 893, 513: 893, 893, 893, 893, 893, 519: 893, 521: 893, 893, 893, 819: 5425, 823: 5424}, - {894, 894, 9: 894, 49: 894, 472: 894, 474: 894, 480: 894, 894, 894, 894, 490: 894, 894, 493: 894, 894, 496: 894, 894, 894, 501: 894, 894, 506: 894, 513: 894, 894, 894, 894, 894, 519: 894, 521: 894, 894, 894, 819: 5425, 823: 5424}, - {517: 5446}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 473: 5415, 661: 3921, 2762, 2763, 2761, 709: 5414, 737: 5413, 798: 5412, 802: 5411, 5447}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 476: 5453, 664: 3947, 2785, 2786, 2784, 713: 5452, 740: 5451, 802: 5450, 806: 5449, 5492}, + {520: 902, 913: 5479, 1104: 5483}, + {485: 5466, 5467, 520: 5476, 823: 5477}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 476: 5453, 664: 3947, 2785, 2786, 2784, 713: 5452, 740: 5451, 802: 5450, 806: 5449, 5473}, + {520: 904, 913: 904}, // 2910 - {472: 5448, 481: 5449, 5428, 5429, 515: 5427, 517: 5430, 519: 5426, 521: 5431, 5432, 819: 5425, 823: 5424}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 2840, 2788, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 2869, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 2874, 2801, 2766, 2783, 2948, 3031, 3020, 2818, 2830, 2941, 2942, 2937, 2895, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 2876, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 2760, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 2880, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 2799, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 2866, 2865, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 2936, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 2824, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 2751, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 2882, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 2752, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3144, 2878, 3145, 3146, 2777, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3159, 3160, 3211, 3210, 3057, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 2918, 2935, 3058, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3177, 3178, 3179, 2931, 3130, 3189, 3190, 3201, 3185, 3186, 3187, 3220, 2877, 473: 3260, 475: 3239, 3258, 2755, 479: 3268, 482: 3272, 3276, 485: 3257, 3256, 3295, 492: 3230, 495: 3269, 504: 3275, 3293, 508: 3234, 530: 3264, 564: 3271, 567: 3294, 2753, 570: 3277, 3229, 3231, 3233, 3232, 3261, 3237, 3251, 3242, 3263, 3238, 582: 3270, 3262, 3267, 3273, 3283, 3336, 3284, 3285, 592: 3236, 3314, 595: 3254, 3255, 3309, 3310, 3311, 3312, 3313, 3265, 3291, 3296, 3306, 3307, 3300, 3315, 3316, 3317, 3301, 3319, 3320, 3302, 3318, 3297, 3305, 3303, 3289, 3321, 3322, 3266, 3326, 3278, 3279, 3282, 3325, 3331, 3330, 3332, 3329, 3333, 3328, 3327, 3324, 3274, 3323, 3281, 3280, 3286, 3287, 648: 2756, 661: 3244, 2762, 2763, 2761, 709: 3259, 3335, 3245, 3250, 3235, 3308, 3248, 3246, 3247, 3288, 3299, 3298, 3292, 3290, 3304, 3243, 3253, 3334, 3252, 3249, 2759, 2758, 2757, 5453}, - {473: 5450}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 661: 4143, 2762, 2763, 2761, 744: 4144, 808: 5451}, - {9: 4146, 49: 5452}, + {520: 903, 913: 903}, + {2: 900, 900, 900, 900, 900, 900, 900, 10: 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 51: 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 900, 476: 900}, + {520: 5472}, + {520: 5471}, + {2: 898, 898, 898, 898, 898, 898, 898, 10: 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 51: 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 898, 476: 898}, // 2915 - {895, 895, 9: 895, 49: 895, 472: 895, 474: 895, 480: 895, 895, 895, 895, 490: 895, 895, 493: 895, 895, 496: 895, 895, 895, 501: 895, 895, 506: 895, 513: 895, 895, 895, 895, 895, 519: 895, 521: 895, 895, 895}, - {896, 896, 9: 896, 49: 896, 472: 896, 474: 896, 480: 896, 896, 896, 896, 490: 896, 896, 493: 896, 896, 496: 896, 896, 896, 501: 896, 896, 506: 896, 3345, 509: 3343, 3344, 3342, 3340, 896, 896, 896, 896, 896, 519: 896, 521: 896, 896, 896, 734: 3341, 3339}, - {899, 899, 9: 899, 49: 899, 472: 5455, 474: 899, 480: 899, 5456, 5428, 5429, 490: 899, 899, 493: 899, 899, 496: 899, 899, 899, 501: 899, 899, 506: 899, 513: 899, 899, 5427, 899, 5430, 519: 5426, 521: 5431, 5432, 899, 819: 5425, 823: 5424}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 2840, 2788, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 2869, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 2874, 2801, 2766, 2783, 2948, 3031, 3020, 2818, 2830, 2941, 2942, 2937, 2895, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 2876, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 2760, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 2880, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 2799, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 2866, 2865, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 2936, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 2824, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 2751, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 2882, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 2752, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3144, 2878, 3145, 3146, 2777, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3159, 3160, 3211, 3210, 3057, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 2918, 2935, 3058, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3177, 3178, 3179, 2931, 3130, 3189, 3190, 3201, 3185, 3186, 3187, 3220, 2877, 473: 3260, 475: 3239, 3258, 2755, 479: 3268, 482: 3272, 3276, 485: 3257, 3256, 3295, 492: 3230, 495: 3269, 504: 3275, 3293, 508: 3234, 530: 3264, 564: 3271, 567: 3294, 2753, 570: 3277, 3229, 3231, 3233, 3232, 3261, 3237, 3251, 3242, 3263, 3238, 582: 3270, 3262, 3267, 3273, 3283, 3336, 3284, 3285, 592: 3236, 3314, 595: 3254, 3255, 3309, 3310, 3311, 3312, 3313, 3265, 3291, 3296, 3306, 3307, 3300, 3315, 3316, 3317, 3301, 3319, 3320, 3302, 3318, 3297, 3305, 3303, 3289, 3321, 3322, 3266, 3326, 3278, 3279, 3282, 3325, 3331, 3330, 3332, 3329, 3333, 3328, 3327, 3324, 3274, 3323, 3281, 3280, 3286, 3287, 648: 2756, 661: 3244, 2762, 2763, 2761, 709: 3259, 3335, 3245, 3250, 3235, 3308, 3248, 3246, 3247, 3288, 3299, 3298, 3292, 3290, 3304, 3243, 3253, 3334, 3252, 3249, 2759, 2758, 2757, 5460}, - {473: 5457}, + {2: 899, 899, 899, 899, 899, 899, 899, 10: 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 51: 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 899, 476: 899}, + {906, 906, 9: 906, 50: 906, 475: 5474, 477: 906, 483: 906, 906, 906, 906, 493: 906, 906, 496: 906, 906, 499: 906, 906, 906, 504: 906, 906, 509: 906, 516: 906, 906, 906, 906, 906, 522: 906, 524: 906, 906, 906, 823: 5463, 827: 5462}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 2864, 2812, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 2893, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 2898, 2825, 2789, 2807, 2972, 3055, 3044, 2842, 2854, 2965, 2966, 2961, 2919, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 2900, 2885, 2881, 2973, 2997, 2783, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 2904, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 2823, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 2889, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 2890, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 2960, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 2848, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 2774, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 2906, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 2775, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3170, 2902, 3171, 3172, 2801, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3185, 3186, 3237, 3236, 3081, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 2942, 2959, 3082, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3203, 3204, 3205, 2955, 3156, 3215, 3216, 3227, 3211, 3212, 3213, 3246, 2901, 476: 3286, 478: 3265, 3284, 2778, 482: 3294, 485: 3298, 3302, 488: 3283, 3282, 3321, 495: 3256, 498: 3295, 507: 3301, 3319, 511: 3260, 533: 3290, 567: 3297, 570: 3320, 2776, 573: 3303, 3255, 3257, 3259, 3258, 3287, 3263, 3277, 3268, 3289, 3264, 585: 3296, 3288, 3293, 3299, 3309, 3362, 3310, 3311, 595: 3262, 3340, 598: 3280, 3281, 3335, 3336, 3337, 3338, 3339, 3291, 3317, 3322, 3332, 3333, 3326, 3341, 3342, 3343, 3327, 3345, 3346, 3328, 3344, 3323, 3331, 3329, 3315, 3347, 3348, 3292, 3352, 3304, 3305, 3308, 3351, 3357, 3356, 3358, 3355, 3359, 3354, 3353, 3350, 3300, 3349, 3307, 3306, 3312, 3313, 651: 2779, 664: 3270, 2785, 2786, 2784, 713: 3285, 3361, 3271, 3276, 3261, 3334, 3274, 3272, 3273, 3314, 3325, 3324, 3318, 3316, 3330, 3269, 3279, 3360, 3278, 3275, 2782, 2781, 2780, 5475}, + {905, 905, 9: 905, 50: 905, 475: 905, 477: 905, 483: 905, 905, 905, 905, 493: 905, 905, 496: 905, 905, 499: 905, 905, 905, 504: 905, 905, 509: 905, 3371, 512: 3369, 3370, 3368, 3366, 905, 905, 905, 905, 905, 522: 905, 524: 905, 905, 905, 738: 3367, 3365}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 476: 5453, 664: 3947, 2785, 2786, 2784, 713: 5452, 740: 5451, 802: 5450, 806: 5449, 5482}, // 2920 - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 661: 4143, 2762, 2763, 2761, 744: 4144, 808: 5458}, - {9: 4146, 49: 5459}, - {897, 897, 9: 897, 49: 897, 472: 897, 474: 897, 480: 897, 897, 897, 897, 490: 897, 897, 493: 897, 897, 496: 897, 897, 897, 501: 897, 897, 506: 897, 513: 897, 897, 897, 897, 897, 519: 897, 521: 897, 897, 897}, - {898, 898, 9: 898, 49: 898, 472: 898, 474: 898, 480: 898, 898, 898, 898, 490: 898, 898, 493: 898, 898, 496: 898, 898, 898, 501: 898, 898, 506: 898, 3345, 509: 3343, 3344, 3342, 3340, 898, 898, 898, 898, 898, 519: 898, 521: 898, 898, 898, 734: 3341, 3339}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 473: 5415, 579: 5410, 661: 3921, 2762, 2763, 2761, 709: 5414, 737: 5413, 798: 5412, 802: 5411, 5417, 852: 5463}, + {520: 902, 913: 5479, 1104: 5478}, + {520: 5480}, + {520: 901}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 476: 5453, 664: 3947, 2785, 2786, 2784, 713: 5452, 740: 5451, 802: 5450, 806: 5449, 5481}, + {907, 907, 9: 907, 50: 907, 475: 907, 477: 907, 483: 907, 907, 907, 907, 493: 907, 907, 496: 907, 907, 499: 907, 907, 907, 504: 907, 907, 509: 907, 516: 907, 907, 907, 907, 907, 522: 907, 524: 907, 907, 907, 823: 5463, 827: 5462}, // 2925 - {923, 923, 9: 923, 49: 923, 472: 923, 474: 923, 480: 923, 923, 923, 923, 490: 923, 923, 493: 923, 923, 496: 923, 923, 923, 501: 923, 923, 506: 923, 513: 923, 923, 923, 923, 923, 519: 923, 521: 923, 923, 923}, - {930, 930, 9: 930, 49: 930, 472: 930, 474: 930, 480: 930, 930, 490: 930, 930, 493: 930, 930, 496: 930, 930, 930, 501: 930, 930, 506: 930, 513: 930, 930, 516: 930}, - {920, 920, 3135, 2967, 3002, 2847, 2883, 3004, 2774, 920, 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 920, 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 920, 474: 920, 478: 5422, 480: 920, 920, 920, 920, 489: 920, 920, 920, 493: 920, 920, 496: 920, 920, 920, 501: 920, 920, 920, 506: 920, 513: 920, 920, 920, 920, 920, 519: 920, 521: 920, 920, 920, 525: 920, 920, 661: 5421, 2762, 2763, 2761, 673: 920, 915: 5420, 5469}, - {473: 5466}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 661: 4754, 2762, 2763, 2761, 786: 5467}, + {908, 908, 9: 908, 50: 908, 475: 908, 477: 908, 483: 908, 908, 908, 908, 493: 908, 908, 496: 908, 908, 499: 908, 908, 908, 504: 908, 908, 509: 908, 516: 908, 908, 908, 908, 908, 522: 908, 524: 908, 908, 908, 823: 5463, 827: 5462}, + {520: 5484}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 476: 5453, 664: 3947, 2785, 2786, 2784, 713: 5452, 740: 5451, 802: 5450, 806: 5449, 5485}, + {475: 5486, 484: 5487, 5466, 5467, 518: 5465, 520: 5468, 522: 5464, 524: 5469, 5470, 823: 5463, 827: 5462}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 2864, 2812, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 2893, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 2898, 2825, 2789, 2807, 2972, 3055, 3044, 2842, 2854, 2965, 2966, 2961, 2919, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 2900, 2885, 2881, 2973, 2997, 2783, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 2904, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 2823, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 2889, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 2890, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 2960, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 2848, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 2774, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 2906, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 2775, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3170, 2902, 3171, 3172, 2801, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3185, 3186, 3237, 3236, 3081, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 2942, 2959, 3082, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3203, 3204, 3205, 2955, 3156, 3215, 3216, 3227, 3211, 3212, 3213, 3246, 2901, 476: 3286, 478: 3265, 3284, 2778, 482: 3294, 485: 3298, 3302, 488: 3283, 3282, 3321, 495: 3256, 498: 3295, 507: 3301, 3319, 511: 3260, 533: 3290, 567: 3297, 570: 3320, 2776, 573: 3303, 3255, 3257, 3259, 3258, 3287, 3263, 3277, 3268, 3289, 3264, 585: 3296, 3288, 3293, 3299, 3309, 3362, 3310, 3311, 595: 3262, 3340, 598: 3280, 3281, 3335, 3336, 3337, 3338, 3339, 3291, 3317, 3322, 3332, 3333, 3326, 3341, 3342, 3343, 3327, 3345, 3346, 3328, 3344, 3323, 3331, 3329, 3315, 3347, 3348, 3292, 3352, 3304, 3305, 3308, 3351, 3357, 3356, 3358, 3355, 3359, 3354, 3353, 3350, 3300, 3349, 3307, 3306, 3312, 3313, 651: 2779, 664: 3270, 2785, 2786, 2784, 713: 3285, 3361, 3271, 3276, 3261, 3334, 3274, 3272, 3273, 3314, 3325, 3324, 3318, 3316, 3330, 3269, 3279, 3360, 3278, 3275, 2782, 2781, 2780, 5491}, // 2930 - {9: 4755, 49: 5468}, - {921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 921, 478: 921, 480: 921, 921, 921, 921, 489: 921, 921, 921, 493: 921, 921, 921, 921, 921, 921, 501: 921, 921, 921, 506: 921, 513: 921, 921, 921, 921, 921, 519: 921, 521: 921, 921, 921, 525: 921, 921, 563: 921, 569: 921, 646: 921, 649: 921, 660: 921, 673: 921}, - {1863, 1863, 9: 1863, 49: 1863, 472: 1863, 474: 1863, 480: 1863, 1863, 1863, 1863, 489: 1863, 1863, 1863, 493: 1863, 1863, 496: 1863, 1863, 1863, 501: 1863, 1863, 1863, 506: 1863, 513: 1863, 1863, 1863, 1863, 1863, 519: 1863, 521: 1863, 1863, 1863, 525: 1863, 1863, 673: 5471, 924: 5470, 1175: 5472}, - {1862, 1862, 9: 1862, 49: 1862, 472: 1862, 474: 1862, 480: 1862, 1862, 1862, 1862, 489: 1862, 1862, 1862, 493: 1862, 1862, 496: 1862, 1862, 1862, 501: 1862, 1862, 1862, 506: 1862, 513: 1862, 1862, 1862, 1862, 1862, 519: 1862, 521: 1862, 1862, 1862, 525: 1862, 1862}, - {199: 5513}, + {476: 5488}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 664: 4169, 2785, 2786, 2784, 748: 4170, 812: 5489}, + {9: 4172, 50: 5490}, + {909, 909, 9: 909, 50: 909, 475: 909, 477: 909, 483: 909, 909, 909, 909, 493: 909, 909, 496: 909, 909, 499: 909, 909, 909, 504: 909, 909, 509: 909, 516: 909, 909, 909, 909, 909, 522: 909, 524: 909, 909, 909}, + {910, 910, 9: 910, 50: 910, 475: 910, 477: 910, 483: 910, 910, 910, 910, 493: 910, 910, 496: 910, 910, 499: 910, 910, 910, 504: 910, 910, 509: 910, 3371, 512: 3369, 3370, 3368, 3366, 910, 910, 910, 910, 910, 522: 910, 524: 910, 910, 910, 738: 3367, 3365}, // 2935 - {901, 901, 9: 901, 49: 901, 472: 901, 474: 901, 480: 901, 901, 901, 901, 489: 5475, 901, 901, 493: 901, 901, 496: 901, 901, 901, 501: 901, 901, 5476, 506: 901, 513: 901, 901, 901, 901, 901, 519: 901, 521: 901, 901, 901, 525: 5474, 901, 940: 5478, 5477, 1062: 5479, 5473}, - {1016, 1016, 9: 1016, 49: 1016, 472: 1016, 474: 1016, 480: 1016, 1016, 1016, 1016, 490: 1016, 1016, 493: 1016, 1016, 496: 1016, 1016, 1016, 501: 1016, 1016, 506: 1016, 513: 1016, 1016, 1016, 1016, 1016, 519: 1016, 521: 1016, 1016, 1016, 526: 5494, 1324: 5495}, - {581: 4410, 649: 4411, 828: 5493}, - {581: 4410, 649: 4411, 828: 5492}, - {581: 4410, 649: 4411, 828: 5491}, + {913, 913, 9: 913, 50: 913, 475: 5493, 477: 913, 483: 913, 5494, 5466, 5467, 493: 913, 913, 496: 913, 913, 499: 913, 913, 913, 504: 913, 913, 509: 913, 516: 913, 913, 5465, 913, 5468, 522: 5464, 524: 5469, 5470, 913, 823: 5463, 827: 5462}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 2864, 2812, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 2893, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 2898, 2825, 2789, 2807, 2972, 3055, 3044, 2842, 2854, 2965, 2966, 2961, 2919, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 2900, 2885, 2881, 2973, 2997, 2783, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 2904, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 2823, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 2889, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 2890, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 2960, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 2848, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 2774, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 2906, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 2775, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3170, 2902, 3171, 3172, 2801, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3185, 3186, 3237, 3236, 3081, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 2942, 2959, 3082, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3203, 3204, 3205, 2955, 3156, 3215, 3216, 3227, 3211, 3212, 3213, 3246, 2901, 476: 3286, 478: 3265, 3284, 2778, 482: 3294, 485: 3298, 3302, 488: 3283, 3282, 3321, 495: 3256, 498: 3295, 507: 3301, 3319, 511: 3260, 533: 3290, 567: 3297, 570: 3320, 2776, 573: 3303, 3255, 3257, 3259, 3258, 3287, 3263, 3277, 3268, 3289, 3264, 585: 3296, 3288, 3293, 3299, 3309, 3362, 3310, 3311, 595: 3262, 3340, 598: 3280, 3281, 3335, 3336, 3337, 3338, 3339, 3291, 3317, 3322, 3332, 3333, 3326, 3341, 3342, 3343, 3327, 3345, 3346, 3328, 3344, 3323, 3331, 3329, 3315, 3347, 3348, 3292, 3352, 3304, 3305, 3308, 3351, 3357, 3356, 3358, 3355, 3359, 3354, 3353, 3350, 3300, 3349, 3307, 3306, 3312, 3313, 651: 2779, 664: 3270, 2785, 2786, 2784, 713: 3285, 3361, 3271, 3276, 3261, 3334, 3274, 3272, 3273, 3314, 3325, 3324, 3318, 3316, 3330, 3269, 3279, 3360, 3278, 3275, 2782, 2781, 2780, 5498}, + {476: 5495}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 664: 4169, 2785, 2786, 2784, 748: 4170, 812: 5496}, + {9: 4172, 50: 5497}, // 2940 - {473: 913, 494: 5481, 1231: 5482}, - {903, 903, 9: 903, 49: 903, 472: 903, 474: 903, 480: 903, 903, 903, 903, 489: 903, 903, 903, 493: 903, 903, 496: 903, 903, 903, 501: 903, 903, 903, 506: 903, 513: 903, 903, 903, 903, 903, 519: 903, 521: 903, 903, 903, 525: 903, 903}, - {900, 900, 9: 900, 49: 900, 472: 900, 474: 900, 480: 900, 900, 900, 900, 489: 5475, 900, 900, 493: 900, 900, 496: 900, 900, 900, 501: 900, 900, 5476, 506: 900, 513: 900, 900, 900, 900, 900, 519: 900, 521: 900, 900, 900, 525: 5474, 900, 940: 5480, 5477}, - {902, 902, 9: 902, 49: 902, 472: 902, 474: 902, 480: 902, 902, 902, 902, 489: 902, 902, 902, 493: 902, 902, 496: 902, 902, 902, 501: 902, 902, 902, 506: 902, 513: 902, 902, 902, 902, 902, 519: 902, 521: 902, 902, 902, 525: 902, 902}, - {502: 5487, 513: 5488, 517: 5486}, + {911, 911, 9: 911, 50: 911, 475: 911, 477: 911, 483: 911, 911, 911, 911, 493: 911, 911, 496: 911, 911, 499: 911, 911, 911, 504: 911, 911, 509: 911, 516: 911, 911, 911, 911, 911, 522: 911, 524: 911, 911, 911}, + {912, 912, 9: 912, 50: 912, 475: 912, 477: 912, 483: 912, 912, 912, 912, 493: 912, 912, 496: 912, 912, 499: 912, 912, 912, 504: 912, 912, 509: 912, 3371, 512: 3369, 3370, 3368, 3366, 912, 912, 912, 912, 912, 522: 912, 524: 912, 912, 912, 738: 3367, 3365}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 476: 5453, 582: 5448, 664: 3947, 2785, 2786, 2784, 713: 5452, 740: 5451, 802: 5450, 806: 5449, 5455, 856: 5501}, + {937, 937, 9: 937, 50: 937, 475: 937, 477: 937, 483: 937, 937, 937, 937, 493: 937, 937, 496: 937, 937, 499: 937, 937, 937, 504: 937, 937, 509: 937, 516: 937, 937, 937, 937, 937, 522: 937, 524: 937, 937, 937}, + {944, 944, 9: 944, 50: 944, 475: 944, 477: 944, 483: 944, 944, 493: 944, 944, 496: 944, 944, 499: 944, 944, 944, 504: 944, 944, 509: 944, 516: 944, 944, 519: 944}, // 2945 - {473: 5483}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 908, 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 908, 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 591: 5032, 661: 5031, 2762, 2763, 2761, 857: 5484}, - {9: 5034, 49: 5485}, - {909, 909, 9: 909, 49: 909, 472: 909, 474: 909, 480: 909, 909, 909, 909, 489: 909, 909, 909, 493: 909, 909, 496: 909, 909, 909, 501: 909, 909, 909, 506: 909, 513: 909, 909, 909, 909, 909, 519: 909, 521: 909, 909, 909, 525: 909, 909}, - {473: 912}, + {934, 934, 3161, 2991, 3026, 2871, 2907, 3028, 2798, 934, 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 934, 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 934, 477: 934, 481: 5460, 483: 934, 934, 934, 934, 492: 934, 934, 934, 496: 934, 934, 499: 934, 934, 934, 504: 934, 934, 934, 509: 934, 516: 934, 934, 934, 934, 934, 522: 934, 524: 934, 934, 934, 528: 934, 934, 664: 5459, 2785, 2786, 2784, 676: 934, 920: 5458, 5507}, + {476: 5504}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 664: 4780, 2785, 2786, 2784, 791: 5505}, + {9: 4781, 50: 5506}, + {935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 935, 481: 935, 483: 935, 935, 935, 935, 492: 935, 935, 935, 496: 935, 935, 935, 935, 935, 935, 504: 935, 935, 935, 509: 935, 516: 935, 935, 935, 935, 935, 522: 935, 524: 935, 935, 935, 528: 935, 935, 566: 935, 572: 935, 649: 935, 652: 935, 663: 935, 676: 935}, // 2950 - {660: 5490}, - {660: 5489}, - {473: 910}, - {473: 911}, - {473: 914, 494: 914}, + {1880, 1880, 9: 1880, 50: 1880, 475: 1880, 477: 1880, 483: 1880, 1880, 1880, 1880, 492: 1880, 1880, 1880, 496: 1880, 1880, 499: 1880, 1880, 1880, 504: 1880, 1880, 1880, 509: 1880, 516: 1880, 1880, 1880, 1880, 1880, 522: 1880, 524: 1880, 1880, 1880, 528: 1880, 1880, 676: 5509, 929: 5508, 1184: 5510}, + {1879, 1879, 9: 1879, 50: 1879, 475: 1879, 477: 1879, 483: 1879, 1879, 1879, 1879, 492: 1879, 1879, 1879, 496: 1879, 1879, 499: 1879, 1879, 1879, 504: 1879, 1879, 1879, 509: 1879, 516: 1879, 1879, 1879, 1879, 1879, 522: 1879, 524: 1879, 1879, 1879, 528: 1879, 1879}, + {226: 5551}, + {915, 915, 9: 915, 50: 915, 475: 915, 477: 915, 483: 915, 915, 915, 915, 492: 5513, 915, 915, 496: 915, 915, 499: 915, 915, 915, 504: 915, 915, 5514, 509: 915, 516: 915, 915, 915, 915, 915, 522: 915, 524: 915, 915, 915, 528: 5512, 915, 945: 5516, 5515, 1069: 5517, 5511}, + {1030, 1030, 9: 1030, 50: 1030, 475: 1030, 477: 1030, 483: 1030, 1030, 1030, 1030, 493: 1030, 1030, 496: 1030, 1030, 499: 1030, 1030, 1030, 504: 1030, 1030, 509: 1030, 516: 1030, 1030, 1030, 1030, 1030, 522: 1030, 524: 1030, 1030, 1030, 529: 5532, 1333: 5533}, // 2955 - {473: 915, 494: 915}, - {473: 916, 494: 916}, - {88: 5499, 314: 5498, 394: 5497, 473: 1013, 1323: 5496}, - {925, 925, 9: 925, 49: 925, 472: 925, 474: 925, 480: 925, 925, 925, 925, 490: 925, 925, 493: 925, 925, 496: 925, 925, 925, 501: 925, 925, 506: 925, 513: 925, 925, 925, 925, 925, 519: 925, 521: 925, 925, 925}, - {473: 5500}, + {584: 4436, 652: 4437, 832: 5531}, + {584: 4436, 652: 4437, 832: 5530}, + {584: 4436, 652: 4437, 832: 5529}, + {476: 927, 497: 5519, 1239: 5520}, + {917, 917, 9: 917, 50: 917, 475: 917, 477: 917, 483: 917, 917, 917, 917, 492: 917, 917, 917, 496: 917, 917, 499: 917, 917, 917, 504: 917, 917, 917, 509: 917, 516: 917, 917, 917, 917, 917, 522: 917, 524: 917, 917, 917, 528: 917, 917}, // 2960 - {473: 1012}, - {473: 1011}, - {473: 1010}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 2840, 2788, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 5502, 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 2869, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 2874, 2801, 2766, 2783, 2948, 3031, 3020, 2818, 2830, 2941, 2942, 2937, 2895, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 2876, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 2760, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 2880, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 2799, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 2866, 2865, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 2936, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 2824, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 2751, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 2882, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 2752, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3144, 2878, 3145, 3146, 2777, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3159, 3160, 3211, 3210, 3057, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 2918, 2935, 3058, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3177, 3178, 3179, 2931, 3130, 3189, 3190, 3201, 3185, 3186, 3187, 3220, 2877, 473: 3260, 475: 3239, 3258, 2755, 479: 3268, 482: 3272, 3276, 485: 3257, 3256, 3295, 492: 3230, 495: 3269, 504: 3275, 3293, 508: 3234, 530: 3264, 564: 3271, 567: 3294, 2753, 570: 3277, 3229, 3231, 3233, 3232, 3261, 3237, 3251, 3242, 3263, 3238, 582: 3270, 3262, 3267, 3273, 3283, 3336, 3284, 3285, 592: 3236, 3314, 595: 3254, 3255, 3309, 3310, 3311, 3312, 3313, 3265, 3291, 3296, 3306, 3307, 3300, 3315, 3316, 3317, 3301, 3319, 3320, 3302, 3318, 3297, 3305, 3303, 3289, 3321, 3322, 3266, 3326, 3278, 3279, 3282, 3325, 3331, 3330, 3332, 3329, 3333, 3328, 3327, 3324, 3274, 3323, 3281, 3280, 3286, 3287, 648: 2756, 661: 3244, 2762, 2763, 2761, 709: 3259, 3335, 3245, 3250, 3235, 3308, 3248, 3246, 3247, 3288, 3299, 3298, 3292, 3290, 3304, 3243, 3253, 3334, 3252, 3249, 2759, 2758, 2757, 5501}, - {49: 1009, 372: 5510, 507: 3345, 509: 3343, 3344, 3342, 3340, 524: 5509, 734: 3341, 3339, 1325: 5508}, + {914, 914, 9: 914, 50: 914, 475: 914, 477: 914, 483: 914, 914, 914, 914, 492: 5513, 914, 914, 496: 914, 914, 499: 914, 914, 914, 504: 914, 914, 5514, 509: 914, 516: 914, 914, 914, 914, 914, 522: 914, 524: 914, 914, 914, 528: 5512, 914, 945: 5518, 5515}, + {916, 916, 9: 916, 50: 916, 475: 916, 477: 916, 483: 916, 916, 916, 916, 492: 916, 916, 916, 496: 916, 916, 499: 916, 916, 916, 504: 916, 916, 916, 509: 916, 516: 916, 916, 916, 916, 916, 522: 916, 524: 916, 916, 916, 528: 916, 916}, + {505: 5525, 516: 5526, 520: 5524}, + {476: 5521}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 922, 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 922, 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 594: 5058, 664: 5057, 2785, 2786, 2784, 861: 5522}, // 2965 - {1006, 1006, 9: 1006, 49: 1006, 220: 5504, 472: 1006, 474: 1006, 480: 1006, 1006, 1006, 1006, 490: 1006, 1006, 493: 1006, 1006, 496: 1006, 1006, 1006, 501: 1006, 1006, 506: 1006, 513: 1006, 1006, 1006, 1006, 1006, 519: 1006, 521: 1006, 1006, 1006, 1115: 5503}, - {1014, 1014, 9: 1014, 49: 1014, 472: 1014, 474: 1014, 480: 1014, 1014, 1014, 1014, 490: 1014, 1014, 493: 1014, 1014, 496: 1014, 1014, 1014, 501: 1014, 1014, 506: 1014, 513: 1014, 1014, 1014, 1014, 1014, 519: 1014, 521: 1014, 1014, 1014}, - {473: 5505}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 2840, 2788, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 2869, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 2874, 2801, 2766, 2783, 2948, 3031, 3020, 2818, 2830, 2941, 2942, 2937, 2895, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 2876, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 2760, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 2880, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 2799, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 2866, 2865, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 2936, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 2824, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 2751, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 2882, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 2752, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3144, 2878, 3145, 3146, 2777, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3159, 3160, 3211, 3210, 3057, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 2918, 2935, 3058, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3177, 3178, 3179, 2931, 3130, 3189, 3190, 3201, 3185, 3186, 3187, 3220, 2877, 473: 3260, 475: 3239, 3258, 2755, 479: 3268, 482: 3272, 3276, 485: 3257, 3256, 3295, 492: 3230, 495: 3269, 504: 3275, 3293, 508: 3234, 530: 3264, 564: 3271, 567: 3294, 2753, 570: 3277, 3229, 3231, 3233, 3232, 3261, 3237, 3251, 3242, 3263, 3238, 582: 3270, 3262, 3267, 3273, 3283, 3336, 3284, 3285, 592: 3236, 3314, 595: 3254, 3255, 3309, 3310, 3311, 3312, 3313, 3265, 3291, 3296, 3306, 3307, 3300, 3315, 3316, 3317, 3301, 3319, 3320, 3302, 3318, 3297, 3305, 3303, 3289, 3321, 3322, 3266, 3326, 3278, 3279, 3282, 3325, 3331, 3330, 3332, 3329, 3333, 3328, 3327, 3324, 3274, 3323, 3281, 3280, 3286, 3287, 648: 2756, 661: 3244, 2762, 2763, 2761, 709: 3259, 3335, 3245, 3250, 3235, 3308, 3248, 3246, 3247, 3288, 3299, 3298, 3292, 3290, 3304, 3243, 3253, 3334, 3252, 3249, 2759, 2758, 2757, 5506}, - {49: 5507, 507: 3345, 509: 3343, 3344, 3342, 3340, 734: 3341, 3339}, + {9: 5060, 50: 5523}, + {923, 923, 9: 923, 50: 923, 475: 923, 477: 923, 483: 923, 923, 923, 923, 492: 923, 923, 923, 496: 923, 923, 499: 923, 923, 923, 504: 923, 923, 923, 509: 923, 516: 923, 923, 923, 923, 923, 522: 923, 524: 923, 923, 923, 528: 923, 923}, + {476: 926}, + {663: 5528}, + {663: 5527}, // 2970 - {1005, 1005, 9: 1005, 49: 1005, 472: 1005, 474: 1005, 480: 1005, 1005, 1005, 1005, 490: 1005, 1005, 493: 1005, 1005, 496: 1005, 1005, 1005, 501: 1005, 1005, 506: 1005, 513: 1005, 1005, 1005, 1005, 1005, 519: 1005, 521: 1005, 1005, 1005}, - {49: 5511}, - {49: 1008}, - {49: 1007}, - {1006, 1006, 9: 1006, 49: 1006, 220: 5504, 472: 1006, 474: 1006, 480: 1006, 1006, 1006, 1006, 490: 1006, 1006, 493: 1006, 1006, 496: 1006, 1006, 1006, 501: 1006, 1006, 506: 1006, 513: 1006, 1006, 1006, 1006, 1006, 519: 1006, 521: 1006, 1006, 1006, 1115: 5512}, + {476: 924}, + {476: 925}, + {476: 928, 497: 928}, + {476: 929, 497: 929}, + {476: 930, 497: 930}, // 2975 - {1015, 1015, 9: 1015, 49: 1015, 472: 1015, 474: 1015, 480: 1015, 1015, 1015, 1015, 490: 1015, 1015, 493: 1015, 1015, 496: 1015, 1015, 1015, 501: 1015, 1015, 506: 1015, 513: 1015, 1015, 1015, 1015, 1015, 519: 1015, 521: 1015, 1015, 1015}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 2840, 2788, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 2869, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 2874, 2801, 2766, 2783, 2948, 3031, 3020, 2818, 2830, 2941, 2942, 2937, 2895, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 2876, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 2760, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 2880, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 2799, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 2866, 2865, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 2936, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 2824, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 2751, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 2882, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 2752, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3144, 2878, 3145, 3146, 2777, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3159, 3160, 3211, 3210, 3057, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 2918, 2935, 3058, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3177, 3178, 3179, 2931, 3130, 3189, 3190, 3201, 3185, 3186, 3187, 3220, 2877, 473: 3260, 475: 3239, 3258, 2755, 479: 3268, 482: 3272, 3276, 485: 3257, 3256, 3295, 492: 3230, 495: 3269, 504: 3275, 3293, 508: 3234, 530: 3264, 564: 3271, 567: 3294, 2753, 570: 3277, 3229, 3231, 3233, 3232, 3261, 3237, 3251, 3242, 3263, 3238, 582: 3270, 3262, 3267, 3273, 3283, 3336, 3284, 3285, 592: 3236, 3314, 595: 3254, 3255, 3309, 3310, 3311, 3312, 3313, 3265, 3291, 3296, 3306, 3307, 3300, 3315, 3316, 3317, 3301, 3319, 3320, 3302, 3318, 3297, 3305, 3303, 3289, 3321, 3322, 3266, 3326, 3278, 3279, 3282, 3325, 3331, 3330, 3332, 3329, 3333, 3328, 3327, 3324, 3274, 3323, 3281, 3280, 3286, 3287, 648: 2756, 661: 3244, 2762, 2763, 2761, 709: 3259, 3335, 3245, 3250, 3235, 3308, 3248, 3246, 3247, 3288, 3299, 3298, 3292, 3290, 3304, 3243, 3253, 3334, 3252, 3249, 2759, 2758, 2757, 5514}, - {1861, 1861, 9: 1861, 49: 1861, 472: 1861, 474: 1861, 480: 1861, 1861, 1861, 1861, 489: 1861, 1861, 1861, 493: 1861, 1861, 496: 1861, 1861, 1861, 501: 1861, 1861, 1861, 506: 1861, 3345, 509: 3343, 3344, 3342, 3340, 1861, 1861, 1861, 1861, 1861, 519: 1861, 521: 1861, 1861, 1861, 525: 1861, 1861, 734: 3341, 3339}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 473: 5415, 661: 3921, 2762, 2763, 2761, 709: 5414, 737: 5413, 798: 5412, 802: 5411, 5516}, - {482: 5428, 5429, 515: 5427, 517: 5430, 519: 5426, 521: 5431, 5432, 5517, 819: 5425, 823: 5424}, + {89: 5537, 316: 5536, 397: 5535, 476: 1027, 1332: 5534}, + {939, 939, 9: 939, 50: 939, 475: 939, 477: 939, 483: 939, 939, 939, 939, 493: 939, 939, 496: 939, 939, 499: 939, 939, 939, 504: 939, 939, 509: 939, 516: 939, 939, 939, 939, 939, 522: 939, 524: 939, 939, 939}, + {476: 5538}, + {476: 1026}, + {476: 1025}, // 2980 - {928, 928, 9: 928, 49: 928, 472: 928, 474: 928, 480: 928, 928, 490: 928, 928, 493: 928, 928, 496: 928, 928, 928, 501: 928, 928, 506: 928, 513: 928, 928, 516: 928}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 661: 4143, 2762, 2763, 2761, 744: 5519, 892: 5520, 925: 5521}, - {499: 5529}, - {2355, 2355, 9: 2355, 481: 2355, 493: 2355, 498: 2355, 502: 2355}, - {247, 247, 9: 5522, 481: 247, 493: 247, 498: 2722, 502: 247, 790: 2723, 5523}, + {476: 1024}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 2864, 2812, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 5540, 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 2893, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 2898, 2825, 2789, 2807, 2972, 3055, 3044, 2842, 2854, 2965, 2966, 2961, 2919, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 2900, 2885, 2881, 2973, 2997, 2783, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 2904, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 2823, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 2889, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 2890, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 2960, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 2848, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 2774, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 2906, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 2775, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3170, 2902, 3171, 3172, 2801, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3185, 3186, 3237, 3236, 3081, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 2942, 2959, 3082, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3203, 3204, 3205, 2955, 3156, 3215, 3216, 3227, 3211, 3212, 3213, 3246, 2901, 476: 3286, 478: 3265, 3284, 2778, 482: 3294, 485: 3298, 3302, 488: 3283, 3282, 3321, 495: 3256, 498: 3295, 507: 3301, 3319, 511: 3260, 533: 3290, 567: 3297, 570: 3320, 2776, 573: 3303, 3255, 3257, 3259, 3258, 3287, 3263, 3277, 3268, 3289, 3264, 585: 3296, 3288, 3293, 3299, 3309, 3362, 3310, 3311, 595: 3262, 3340, 598: 3280, 3281, 3335, 3336, 3337, 3338, 3339, 3291, 3317, 3322, 3332, 3333, 3326, 3341, 3342, 3343, 3327, 3345, 3346, 3328, 3344, 3323, 3331, 3329, 3315, 3347, 3348, 3292, 3352, 3304, 3305, 3308, 3351, 3357, 3356, 3358, 3355, 3359, 3354, 3353, 3350, 3300, 3349, 3307, 3306, 3312, 3313, 651: 2779, 664: 3270, 2785, 2786, 2784, 713: 3285, 3361, 3271, 3276, 3261, 3334, 3274, 3272, 3273, 3314, 3325, 3324, 3318, 3316, 3330, 3269, 3279, 3360, 3278, 3275, 2782, 2781, 2780, 5539}, + {50: 1023, 374: 5548, 510: 3371, 512: 3369, 3370, 3368, 3366, 527: 5547, 738: 3367, 3365, 1334: 5546}, + {1020, 1020, 9: 1020, 50: 1020, 222: 5542, 475: 1020, 477: 1020, 483: 1020, 1020, 1020, 1020, 493: 1020, 1020, 496: 1020, 1020, 499: 1020, 1020, 1020, 504: 1020, 1020, 509: 1020, 516: 1020, 1020, 1020, 1020, 1020, 522: 1020, 524: 1020, 1020, 1020, 1123: 5541}, + {1028, 1028, 9: 1028, 50: 1028, 475: 1028, 477: 1028, 483: 1028, 1028, 1028, 1028, 493: 1028, 1028, 496: 1028, 1028, 499: 1028, 1028, 1028, 504: 1028, 1028, 509: 1028, 516: 1028, 1028, 1028, 1028, 1028, 522: 1028, 524: 1028, 1028, 1028}, // 2985 - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 661: 4143, 2762, 2763, 2761, 744: 5519, 892: 5528}, - {1297, 1297, 481: 1297, 493: 1297, 502: 2725, 767: 2726, 812: 5524}, - {883, 883, 481: 883, 493: 5525, 1071: 5526}, - {508: 2736, 577: 2738, 733: 2735, 741: 2737, 882: 5527}, - {251, 251, 481: 251}, + {476: 5543}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 2864, 2812, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 2893, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 2898, 2825, 2789, 2807, 2972, 3055, 3044, 2842, 2854, 2965, 2966, 2961, 2919, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 2900, 2885, 2881, 2973, 2997, 2783, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 2904, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 2823, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 2889, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 2890, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 2960, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 2848, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 2774, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 2906, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 2775, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3170, 2902, 3171, 3172, 2801, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3185, 3186, 3237, 3236, 3081, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 2942, 2959, 3082, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3203, 3204, 3205, 2955, 3156, 3215, 3216, 3227, 3211, 3212, 3213, 3246, 2901, 476: 3286, 478: 3265, 3284, 2778, 482: 3294, 485: 3298, 3302, 488: 3283, 3282, 3321, 495: 3256, 498: 3295, 507: 3301, 3319, 511: 3260, 533: 3290, 567: 3297, 570: 3320, 2776, 573: 3303, 3255, 3257, 3259, 3258, 3287, 3263, 3277, 3268, 3289, 3264, 585: 3296, 3288, 3293, 3299, 3309, 3362, 3310, 3311, 595: 3262, 3340, 598: 3280, 3281, 3335, 3336, 3337, 3338, 3339, 3291, 3317, 3322, 3332, 3333, 3326, 3341, 3342, 3343, 3327, 3345, 3346, 3328, 3344, 3323, 3331, 3329, 3315, 3347, 3348, 3292, 3352, 3304, 3305, 3308, 3351, 3357, 3356, 3358, 3355, 3359, 3354, 3353, 3350, 3300, 3349, 3307, 3306, 3312, 3313, 651: 2779, 664: 3270, 2785, 2786, 2784, 713: 3285, 3361, 3271, 3276, 3261, 3334, 3274, 3272, 3273, 3314, 3325, 3324, 3318, 3316, 3330, 3269, 3279, 3360, 3278, 3275, 2782, 2781, 2780, 5544}, + {50: 5545, 510: 3371, 512: 3369, 3370, 3368, 3366, 738: 3367, 3365}, + {1019, 1019, 9: 1019, 50: 1019, 475: 1019, 477: 1019, 483: 1019, 1019, 1019, 1019, 493: 1019, 1019, 496: 1019, 1019, 499: 1019, 1019, 1019, 504: 1019, 1019, 509: 1019, 516: 1019, 1019, 1019, 1019, 1019, 522: 1019, 524: 1019, 1019, 1019}, + {50: 5549}, // 2990 - {882, 882, 481: 882}, - {2354, 2354, 9: 2354, 481: 2354, 493: 2354, 498: 2354, 502: 2354}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 2840, 2788, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 2869, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 2874, 2801, 2766, 2783, 2948, 3031, 3020, 2818, 2830, 2941, 2942, 2937, 2895, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 2876, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 2760, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 2880, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 2799, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 2866, 2865, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 2936, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 2824, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 2751, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 2882, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 2752, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3144, 2878, 3145, 3146, 2777, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3159, 3160, 3211, 3210, 3057, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 2918, 2935, 3058, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3177, 3178, 3179, 2931, 3130, 3189, 3190, 3201, 3185, 3186, 3187, 3220, 2877, 473: 3260, 475: 3239, 3258, 2755, 479: 3903, 482: 3272, 3276, 485: 3257, 3256, 3295, 492: 3230, 495: 3269, 504: 3275, 3293, 508: 3234, 530: 3264, 564: 3271, 567: 3294, 2753, 570: 3277, 3229, 3231, 3233, 3232, 3261, 3237, 3251, 3242, 3263, 3238, 582: 3270, 3262, 3267, 3273, 3283, 3336, 3284, 3285, 592: 3236, 3314, 595: 3254, 3255, 3309, 3310, 3311, 3312, 3313, 3265, 3291, 3296, 3306, 3307, 3300, 3315, 3316, 3317, 3301, 3319, 3320, 3302, 3318, 3297, 3305, 3303, 3289, 3321, 3322, 3266, 3326, 3278, 3279, 3282, 3325, 3331, 3330, 3332, 3329, 3333, 3328, 3327, 3324, 3274, 3323, 3281, 3280, 3286, 3287, 648: 2756, 661: 3244, 2762, 2763, 2761, 709: 3259, 3335, 3245, 3250, 3235, 3308, 3248, 3246, 3247, 3288, 3299, 3298, 3292, 3290, 3304, 3243, 3253, 3334, 3252, 3249, 2759, 2758, 2757, 3899, 797: 5530}, - {2356, 2356, 9: 2356, 481: 2356, 493: 2356, 498: 2356, 502: 2356}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 661: 4143, 2762, 2763, 2761, 744: 5519, 892: 5520, 925: 5532}, + {50: 1022}, + {50: 1021}, + {1020, 1020, 9: 1020, 50: 1020, 222: 5542, 475: 1020, 477: 1020, 483: 1020, 1020, 1020, 1020, 493: 1020, 1020, 496: 1020, 1020, 499: 1020, 1020, 1020, 504: 1020, 1020, 509: 1020, 516: 1020, 1020, 1020, 1020, 1020, 522: 1020, 524: 1020, 1020, 1020, 1123: 5550}, + {1029, 1029, 9: 1029, 50: 1029, 475: 1029, 477: 1029, 483: 1029, 1029, 1029, 1029, 493: 1029, 1029, 496: 1029, 1029, 499: 1029, 1029, 1029, 504: 1029, 1029, 509: 1029, 516: 1029, 1029, 1029, 1029, 1029, 522: 1029, 524: 1029, 1029, 1029}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 2864, 2812, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 2893, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 2898, 2825, 2789, 2807, 2972, 3055, 3044, 2842, 2854, 2965, 2966, 2961, 2919, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 2900, 2885, 2881, 2973, 2997, 2783, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 2904, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 2823, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 2889, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 2890, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 2960, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 2848, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 2774, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 2906, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 2775, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3170, 2902, 3171, 3172, 2801, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3185, 3186, 3237, 3236, 3081, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 2942, 2959, 3082, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3203, 3204, 3205, 2955, 3156, 3215, 3216, 3227, 3211, 3212, 3213, 3246, 2901, 476: 3286, 478: 3265, 3284, 2778, 482: 3294, 485: 3298, 3302, 488: 3283, 3282, 3321, 495: 3256, 498: 3295, 507: 3301, 3319, 511: 3260, 533: 3290, 567: 3297, 570: 3320, 2776, 573: 3303, 3255, 3257, 3259, 3258, 3287, 3263, 3277, 3268, 3289, 3264, 585: 3296, 3288, 3293, 3299, 3309, 3362, 3310, 3311, 595: 3262, 3340, 598: 3280, 3281, 3335, 3336, 3337, 3338, 3339, 3291, 3317, 3322, 3332, 3333, 3326, 3341, 3342, 3343, 3327, 3345, 3346, 3328, 3344, 3323, 3331, 3329, 3315, 3347, 3348, 3292, 3352, 3304, 3305, 3308, 3351, 3357, 3356, 3358, 3355, 3359, 3354, 3353, 3350, 3300, 3349, 3307, 3306, 3312, 3313, 651: 2779, 664: 3270, 2785, 2786, 2784, 713: 3285, 3361, 3271, 3276, 3261, 3334, 3274, 3272, 3273, 3314, 3325, 3324, 3318, 3316, 3330, 3269, 3279, 3360, 3278, 3275, 2782, 2781, 2780, 5552}, // 2995 - {247, 247, 9: 5522, 481: 247, 498: 2722, 790: 2723, 5533}, - {250, 250, 481: 250}, - {2: 390, 390, 390, 390, 390, 390, 390, 10: 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 50: 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390, 390}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 661: 3921, 2762, 2763, 2761, 737: 5536}, - {389, 389}, + {1878, 1878, 9: 1878, 50: 1878, 475: 1878, 477: 1878, 483: 1878, 1878, 1878, 1878, 492: 1878, 1878, 1878, 496: 1878, 1878, 499: 1878, 1878, 1878, 504: 1878, 1878, 1878, 509: 1878, 3371, 512: 3369, 3370, 3368, 3366, 1878, 1878, 1878, 1878, 1878, 522: 1878, 524: 1878, 1878, 1878, 528: 1878, 1878, 738: 3367, 3365}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 476: 5453, 664: 3947, 2785, 2786, 2784, 713: 5452, 740: 5451, 802: 5450, 806: 5449, 5554}, + {485: 5466, 5467, 518: 5465, 520: 5468, 522: 5464, 524: 5469, 5470, 5555, 823: 5463, 827: 5462}, + {942, 942, 9: 942, 50: 942, 475: 942, 477: 942, 483: 942, 942, 493: 942, 942, 496: 942, 942, 499: 942, 942, 942, 504: 942, 942, 509: 942, 516: 942, 942, 519: 942}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 664: 4169, 2785, 2786, 2784, 748: 5557, 896: 5558, 930: 5559}, // 3000 - {22: 5549, 125: 5539, 5542, 145: 575, 190: 5541, 198: 5552, 209: 5550, 223: 5543, 235: 5547, 257: 5551, 260: 5544, 530: 5548, 569: 5538, 1148: 5546, 1220: 5540, 1249: 5545}, - {2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 10: 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 50: 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 2049, 474: 2049, 564: 2049}, - {2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 10: 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 50: 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 2048, 474: 2048, 564: 2048}, - {585, 585}, - {582, 582}, + {502: 5567}, + {2372, 2372, 9: 2372, 484: 2372, 496: 2372, 501: 2372, 505: 2372}, + {257, 257, 9: 5560, 484: 257, 496: 257, 501: 2745, 505: 257, 795: 2746, 5561}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 664: 4169, 2785, 2786, 2784, 748: 5557, 896: 5566}, + {1311, 1311, 484: 1311, 496: 1311, 505: 2748, 772: 2749, 817: 5562}, // 3005 - {581, 581}, - {216: 5559}, - {579, 579}, - {145: 5558}, - {566, 566, 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 474: 566, 661: 3921, 2762, 2763, 2761, 737: 3922, 795: 4303, 1147: 5553}, + {897, 897, 484: 897, 496: 5563, 1078: 5564}, + {511: 2759, 580: 2761, 737: 2758, 745: 2760, 886: 5565}, + {261, 261, 484: 261}, + {896, 896, 484: 896}, + {2371, 2371, 9: 2371, 484: 2371, 496: 2371, 501: 2371, 505: 2371}, // 3010 - {576, 576}, - {145: 574}, - {145: 573}, - {145: 572}, - {145: 571}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 2864, 2812, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 2893, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 2898, 2825, 2789, 2807, 2972, 3055, 3044, 2842, 2854, 2965, 2966, 2961, 2919, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 2900, 2885, 2881, 2973, 2997, 2783, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 2904, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 2823, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 2889, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 2890, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 2960, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 2848, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 2774, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 2906, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 2775, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3170, 2902, 3171, 3172, 2801, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3185, 3186, 3237, 3236, 3081, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 2942, 2959, 3082, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3203, 3204, 3205, 2955, 3156, 3215, 3216, 3227, 3211, 3212, 3213, 3246, 2901, 476: 3286, 478: 3265, 3284, 2778, 482: 3929, 485: 3298, 3302, 488: 3283, 3282, 3321, 495: 3256, 498: 3295, 507: 3301, 3319, 511: 3260, 533: 3290, 567: 3297, 570: 3320, 2776, 573: 3303, 3255, 3257, 3259, 3258, 3287, 3263, 3277, 3268, 3289, 3264, 585: 3296, 3288, 3293, 3299, 3309, 3362, 3310, 3311, 595: 3262, 3340, 598: 3280, 3281, 3335, 3336, 3337, 3338, 3339, 3291, 3317, 3322, 3332, 3333, 3326, 3341, 3342, 3343, 3327, 3345, 3346, 3328, 3344, 3323, 3331, 3329, 3315, 3347, 3348, 3292, 3352, 3304, 3305, 3308, 3351, 3357, 3356, 3358, 3355, 3359, 3354, 3353, 3350, 3300, 3349, 3307, 3306, 3312, 3313, 651: 2779, 664: 3270, 2785, 2786, 2784, 713: 3285, 3361, 3271, 3276, 3261, 3334, 3274, 3272, 3273, 3314, 3325, 3324, 3318, 3316, 3330, 3269, 3279, 3360, 3278, 3275, 2782, 2781, 2780, 3925, 801: 5568}, + {2373, 2373, 9: 2373, 484: 2373, 496: 2373, 501: 2373, 505: 2373}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 664: 4169, 2785, 2786, 2784, 748: 5557, 896: 5558, 930: 5570}, + {257, 257, 9: 5560, 484: 257, 501: 2745, 795: 2746, 5571}, + {260, 260, 484: 260}, // 3015 - {145: 570}, - {562, 562, 474: 5555, 1352: 5554}, - {577, 577}, - {671: 5556}, - {497: 5557}, + {2: 400, 400, 400, 400, 400, 400, 400, 10: 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 51: 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 664: 3947, 2785, 2786, 2784, 740: 5574}, + {399, 399}, + {22: 5587, 126: 5577, 5580, 148: 588, 192: 5579, 200: 5590, 211: 5588, 225: 5581, 238: 5585, 260: 5589, 263: 5582, 533: 5586, 572: 5576, 1156: 5584, 1228: 5578, 1257: 5583}, + {2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 10: 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 51: 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 2066, 477: 2066, 567: 2066}, // 3020 - {561, 561}, - {578, 578}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 661: 5560, 2762, 2763, 2761, 955: 5561}, - {584, 584, 9: 584}, - {580, 580, 9: 5562}, + {2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 10: 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 51: 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 2065, 477: 2065, 567: 2065}, + {598, 598}, + {595, 595}, + {594, 594}, + {218: 5597}, // 3025 - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 661: 5563, 2762, 2763, 2761}, - {583, 583, 9: 583}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 5667, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 5668, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 5669, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 661: 3921, 2762, 2763, 2761, 737: 5670}, - {569: 5653, 649: 5654}, - {649: 5650}, + {592, 592}, + {148: 5596}, + {579, 579, 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 477: 579, 664: 3947, 2785, 2786, 2784, 740: 3948, 786: 4329, 1155: 5591}, + {589, 589}, + {148: 587}, // 3030 - {569: 5645, 649: 5644}, - {569: 5642}, - {332: 5636}, - {141: 5633, 221: 5635, 342: 5631, 367: 5632, 914: 5634}, - {205: 5628, 208: 5627}, + {148: 586}, + {148: 585}, + {148: 584}, + {148: 583}, + {575, 575, 477: 5593, 1361: 5592}, // 3035 - {569: 5586}, - {141: 5580, 162: 5582, 172: 594, 197: 5584, 262: 5583, 1310: 5581}, - {141: 5579}, - {141: 5578}, - {397: 5577}, + {590, 590}, + {674: 5594}, + {500: 5595}, + {574, 574}, + {591, 591}, // 3040 - {698, 698}, - {703, 703}, - {704, 704}, - {705, 705}, - {172: 5585}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 664: 5598, 2785, 2786, 2784, 960: 5599}, + {597, 597, 9: 597}, + {593, 593, 9: 5600}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 664: 5601, 2785, 2786, 2784}, + {596, 596, 9: 596}, // 3045 - {172: 593}, - {172: 592}, - {172: 591}, - {697, 697}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 661: 3921, 2762, 2763, 2761, 737: 5587}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 5705, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 5706, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 5707, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 664: 3947, 2785, 2786, 2784, 740: 5708}, + {572: 5691, 652: 5692}, + {652: 5688}, + {572: 5683, 652: 5682}, + {572: 5680}, // 3050 - {674: 5588, 931: 5589}, - {162: 5592, 167: 5591, 569: 2064, 950: 5590}, - {706, 706}, - {569: 5594}, - {125: 2063, 569: 2063}, + {334: 5674}, + {144: 5671, 223: 5673, 344: 5669, 369: 5670, 919: 5672}, + {207: 5666, 210: 5665}, + {572: 5624}, + {144: 5618, 164: 5620, 174: 607, 199: 5622, 265: 5621, 1319: 5619}, // 3055 - {167: 5593}, - {125: 2062, 569: 2062}, - {2: 1858, 1858, 1858, 1858, 1858, 1858, 1858, 10: 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 50: 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 564: 4844, 785: 5595}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 661: 3921, 2762, 2763, 2761, 737: 5596}, - {436, 436, 6: 436, 436, 436, 15: 436, 436, 436, 436, 436, 436, 436, 436, 436, 436, 436, 436, 436, 436, 436, 436, 436, 436, 436, 436, 436, 436, 436, 436, 436, 436, 436, 436, 436, 436, 436, 436, 436, 472: 436, 5600, 436, 478: 436, 436, 436, 484: 436, 488: 436, 436, 495: 436, 503: 436, 436, 436, 518: 5599, 569: 436, 646: 436, 436, 649: 436, 1244: 5598, 1320: 5597}, + {144: 5617}, + {144: 5616}, + {400: 5615}, + {712, 712}, + {717, 717}, // 3060 - {396, 396, 6: 4241, 4243, 400, 15: 4260, 2176, 4258, 4197, 4262, 4249, 4278, 4242, 4245, 4244, 4247, 4248, 4250, 4257, 400, 4268, 4269, 4255, 4256, 4261, 4263, 4275, 4274, 4280, 4276, 4273, 4266, 4271, 4272, 4265, 4267, 4270, 4259, 472: 396, 396, 396, 478: 396, 4240, 4277, 484: 2176, 488: 396, 396, 495: 396, 503: 4987, 396, 2176, 569: 396, 646: 396, 2176, 649: 4246, 781: 4251, 792: 4253, 813: 4252, 835: 4254, 838: 4264, 842: 4279, 919: 5615, 1017: 5614}, - {2179, 2179, 472: 5608, 1086: 5607}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 661: 3921, 2762, 2763, 2761, 737: 5606}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 518: 5601, 581: 2406, 590: 2406, 2406, 642: 2406, 4589, 649: 2406, 661: 4143, 2762, 2763, 2761, 675: 2406, 2406, 744: 4456, 833: 4830, 848: 4962, 903: 4963, 968: 4964, 1145: 5602}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 661: 3921, 2762, 2763, 2761, 737: 5604}, + {718, 718}, + {719, 719}, + {174: 5623}, + {174: 606}, + {174: 605}, // 3065 - {9: 4966, 49: 5603}, - {435, 435, 6: 435, 435, 435, 15: 435, 435, 435, 435, 435, 435, 435, 435, 435, 435, 435, 435, 435, 435, 435, 435, 435, 435, 435, 435, 435, 435, 435, 435, 435, 435, 435, 435, 435, 435, 435, 435, 435, 472: 435, 435, 435, 478: 435, 435, 435, 484: 435, 488: 435, 435, 495: 435, 503: 435, 435, 435, 569: 435, 646: 435, 435, 649: 435}, - {49: 5605}, - {2097, 2097, 472: 2097}, - {2098, 2098, 472: 2098}, + {174: 604}, + {711, 711}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 664: 3947, 2785, 2786, 2784, 740: 5625}, + {677: 5626, 936: 5627}, + {164: 5630, 169: 5629, 572: 2081, 955: 5628}, // 3070 - {2180, 2180}, - {147: 5609}, - {374: 5611, 739: 5610}, - {524: 5613}, - {524: 5612}, + {720, 720}, + {572: 5632}, + {126: 2080, 572: 2080}, + {169: 5631}, + {126: 2079, 572: 2079}, // 3075 - {2177, 2177}, - {2178, 2178}, - {2174, 2174, 472: 2174, 2174, 2174, 478: 2174, 488: 5617, 2174, 495: 2174, 504: 2174, 569: 2174, 646: 2174, 1100: 5616}, - {395, 395, 6: 4241, 4243, 400, 4989, 15: 4260, 2176, 4258, 4197, 4262, 4249, 4278, 4242, 4245, 4244, 4247, 4248, 4250, 4257, 400, 4268, 4269, 4255, 4256, 4261, 4263, 4275, 4274, 4280, 4276, 4273, 4266, 4271, 4272, 4265, 4267, 4270, 4259, 472: 395, 395, 395, 478: 395, 4240, 4277, 484: 2176, 488: 395, 395, 495: 395, 503: 4987, 395, 2176, 569: 395, 646: 395, 2176, 649: 4246, 781: 4251, 792: 4253, 813: 4252, 835: 4254, 838: 4264, 842: 4988}, - {2112, 2112, 472: 2112, 2112, 2112, 478: 2112, 489: 5206, 495: 2112, 504: 5207, 569: 2112, 646: 2112, 1037: 5618}, + {2: 1875, 1875, 1875, 1875, 1875, 1875, 1875, 10: 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 51: 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 567: 4870, 790: 5633}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 664: 3947, 2785, 2786, 2784, 740: 5634}, + {446, 446, 6: 446, 446, 446, 15: 446, 446, 446, 446, 446, 446, 446, 446, 446, 446, 446, 446, 446, 446, 446, 446, 446, 446, 446, 446, 446, 446, 446, 446, 446, 446, 446, 446, 446, 446, 446, 446, 446, 475: 446, 5638, 446, 481: 446, 446, 446, 487: 446, 491: 446, 446, 498: 446, 506: 446, 446, 446, 521: 5637, 572: 446, 649: 446, 446, 652: 446, 1252: 5636, 1329: 5635}, + {406, 406, 6: 4267, 4269, 410, 15: 4286, 2193, 4284, 4223, 4288, 4275, 4304, 4268, 4271, 4270, 4273, 4274, 4276, 4283, 410, 4294, 4295, 4281, 4282, 4287, 4289, 4301, 4300, 4306, 4302, 4299, 4292, 4297, 4298, 4291, 4293, 4296, 4285, 475: 406, 406, 406, 481: 406, 4266, 4303, 487: 2193, 491: 406, 406, 498: 406, 506: 5013, 406, 2193, 572: 406, 649: 406, 2193, 652: 4272, 785: 4277, 797: 4279, 818: 4278, 840: 4280, 843: 4290, 847: 4305, 924: 5653, 1022: 5652}, + {2196, 2196, 475: 5646, 1094: 5645}, // 3080 - {660: 5045}, - {2109, 2109, 472: 2109, 2109, 2109, 478: 5620, 495: 2109, 569: 2109, 646: 2109, 1176: 5619}, - {2107, 2107, 472: 2107, 2588, 2587, 495: 2586, 569: 2585, 646: 2581, 709: 5625, 748: 5623, 2582, 2583, 2584, 2593, 756: 2591, 2590, 2589, 3880, 5624, 5622, 1199: 5621}, - {2108, 2108, 472: 2108, 2108, 2108, 495: 2108, 569: 2108, 646: 2108}, - {2179, 2179, 472: 5608, 1086: 5626}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 664: 3947, 2785, 2786, 2784, 740: 5644}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 521: 5639, 584: 2426, 593: 2426, 2426, 645: 2426, 4615, 652: 2426, 664: 4169, 2785, 2786, 2784, 678: 2426, 2426, 748: 4482, 837: 4856, 853: 4988, 908: 4989, 973: 4990, 1153: 5640}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 664: 3947, 2785, 2786, 2784, 740: 5642}, + {9: 4992, 50: 5641}, + {445, 445, 6: 445, 445, 445, 15: 445, 445, 445, 445, 445, 445, 445, 445, 445, 445, 445, 445, 445, 445, 445, 445, 445, 445, 445, 445, 445, 445, 445, 445, 445, 445, 445, 445, 445, 445, 445, 445, 445, 475: 445, 445, 445, 481: 445, 445, 445, 487: 445, 491: 445, 445, 498: 445, 506: 445, 445, 445, 572: 445, 649: 445, 445, 652: 445}, // 3085 - {2106, 2106, 472: 2106}, - {2105, 2105, 472: 2105, 480: 815, 490: 815, 815}, - {2104, 2104, 472: 2104}, - {2103, 2103, 472: 2103, 480: 814, 490: 814, 814, 493: 2728, 501: 2729, 2725, 767: 3891, 3892}, - {2181, 2181}, + {50: 5643}, + {2114, 2114, 475: 2114}, + {2115, 2115, 475: 2115}, + {2197, 2197}, + {150: 5647}, // 3090 - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 661: 5560, 2762, 2763, 2761, 955: 5630}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 661: 5560, 2762, 2763, 2761, 955: 5629}, - {708, 708, 9: 5562}, - {709, 709, 9: 5562}, - {711, 711}, + {376: 5649, 743: 5648}, + {527: 5651}, + {527: 5650}, + {2194, 2194}, + {2195, 2195}, // 3095 - {710, 710}, - {702, 702}, - {701, 701}, - {700, 700}, - {266: 5637}, + {2191, 2191, 475: 2191, 2191, 2191, 481: 2191, 491: 5655, 2191, 498: 2191, 507: 2191, 572: 2191, 649: 2191, 1108: 5654}, + {405, 405, 6: 4267, 4269, 410, 5015, 15: 4286, 2193, 4284, 4223, 4288, 4275, 4304, 4268, 4271, 4270, 4273, 4274, 4276, 4283, 410, 4294, 4295, 4281, 4282, 4287, 4289, 4301, 4300, 4306, 4302, 4299, 4292, 4297, 4298, 4291, 4293, 4296, 4285, 475: 405, 405, 405, 481: 405, 4266, 4303, 487: 2193, 491: 405, 405, 498: 405, 506: 5013, 405, 2193, 572: 405, 649: 405, 2193, 652: 4272, 785: 4277, 797: 4279, 818: 4278, 840: 4280, 843: 4290, 847: 5014}, + {2129, 2129, 475: 2129, 2129, 2129, 481: 2129, 492: 5242, 498: 2129, 507: 5243, 572: 2129, 649: 2129, 1042: 5656}, + {663: 5071}, + {2126, 2126, 475: 2126, 2126, 2126, 481: 5658, 498: 2126, 572: 2126, 649: 2126, 1185: 5657}, // 3100 - {508: 2736, 733: 4053, 763: 5639, 1082: 5638}, - {715, 715, 9: 5640}, - {689, 689, 9: 689}, - {508: 2736, 733: 4053, 763: 5641}, - {688, 688, 9: 688}, + {2124, 2124, 475: 2124, 2608, 2607, 498: 2606, 572: 2605, 649: 2601, 713: 5663, 752: 5661, 2602, 2603, 2604, 2613, 760: 2611, 2610, 2609, 3906, 5662, 5660, 1208: 5659}, + {2125, 2125, 475: 2125, 2125, 2125, 498: 2125, 572: 2125, 649: 2125}, + {2196, 2196, 475: 5646, 1094: 5664}, + {2123, 2123, 475: 2123}, + {2122, 2122, 475: 2122, 483: 829, 493: 829, 829}, // 3105 - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 661: 3921, 2762, 2763, 2761, 737: 3922, 795: 5643}, - {716, 716, 9: 3924}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 661: 3921, 2762, 2763, 2761, 737: 5648}, - {497: 5646}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 661: 3921, 2762, 2763, 2761, 737: 3922, 795: 5647}, + {2121, 2121, 475: 2121}, + {2120, 2120, 475: 2120, 483: 828, 493: 828, 828, 496: 2751, 504: 2752, 2748, 772: 3917, 3918}, + {2198, 2198}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 664: 5598, 2785, 2786, 2784, 960: 5668}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 664: 5598, 2785, 2786, 2784, 960: 5667}, // 3110 - {707, 707, 9: 3924}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 661: 5649, 2762, 2763, 2761}, - {718, 718}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 661: 3921, 2762, 2763, 2761, 737: 5651}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 661: 5652, 2762, 2763, 2761}, + {722, 722, 9: 5600}, + {723, 723, 9: 5600}, + {725, 725}, + {724, 724}, + {716, 716}, // 3115 - {719, 719}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 661: 3921, 2762, 2763, 2761, 737: 3922, 795: 5666}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 661: 3921, 2762, 2763, 2761, 737: 5655}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 661: 5656, 2762, 2763, 2761}, - {720, 720, 473: 5659, 1057: 5658, 1225: 5657}, + {715, 715}, + {714, 714}, + {269: 5675}, + {511: 2759, 737: 4079, 767: 5677, 1090: 5676}, + {729, 729, 9: 5678}, // 3120 - {717, 717, 9: 5664}, - {692, 692, 9: 692}, - {508: 2736, 733: 4053, 763: 5660}, - {9: 5661}, - {508: 2736, 733: 4053, 763: 5662}, + {703, 703, 9: 703}, + {511: 2759, 737: 4079, 767: 5679}, + {702, 702, 9: 702}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 664: 3947, 2785, 2786, 2784, 740: 3948, 786: 5681}, + {730, 730, 9: 3950}, // 3125 - {49: 5663}, - {690, 690, 9: 690}, - {473: 5659, 1057: 5665}, - {691, 691, 9: 691}, - {721, 721, 9: 3924}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 664: 3947, 2785, 2786, 2784, 740: 5686}, + {500: 5684}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 664: 3947, 2785, 2786, 2784, 740: 3948, 786: 5685}, + {721, 721, 9: 3950}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 664: 5687, 2785, 2786, 2784}, // 3130 - {163: 1640, 378: 5687, 401: 5688, 652: 1640, 1166: 5686}, - {725, 725, 163: 1480, 265: 5673, 5672, 652: 1480}, - {699, 699, 163: 1460, 652: 1460}, - {163: 5671}, - {722, 722}, + {732, 732}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 664: 3947, 2785, 2786, 2784, 740: 5689}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 664: 5690, 2785, 2786, 2784}, + {733, 733}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 664: 3947, 2785, 2786, 2784, 740: 3948, 786: 5704}, // 3135 - {247, 247, 498: 2722, 508: 2736, 733: 4053, 763: 5684, 790: 2723, 5683}, - {377: 5674}, - {493: 5675, 508: 2736, 733: 4053, 763: 5639, 1082: 5676, 1167: 5677}, - {508: 2736, 733: 2735, 741: 5678}, - {714, 714, 9: 5640}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 664: 3947, 2785, 2786, 2784, 740: 5693}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 664: 5694, 2785, 2786, 2784}, + {734, 734, 476: 5697, 1064: 5696, 1233: 5695}, + {731, 731, 9: 5702}, + {706, 706, 9: 706}, // 3140 - {713, 713}, - {728, 728, 9: 5679, 164: 5680}, - {508: 2736, 733: 2735, 741: 5682}, - {508: 2736, 733: 2735, 741: 5681}, - {726, 726}, + {511: 2759, 737: 4079, 767: 5698}, + {9: 5699}, + {511: 2759, 737: 4079, 767: 5700}, + {50: 5701}, + {704, 704, 9: 704}, // 3145 - {727, 727}, - {724, 724}, - {247, 247, 498: 2722, 790: 2723, 5685}, - {723, 723}, - {712, 712}, + {476: 5697, 1064: 5703}, + {705, 705, 9: 705}, + {735, 735, 9: 3950}, + {165: 1656, 380: 5725, 404: 5726, 655: 1656, 1175: 5724}, + {739, 739, 165: 1495, 268: 5711, 5710, 655: 1495}, // 3150 - {508: 2736, 733: 5694}, - {352: 5690, 508: 2736, 651: 5691, 733: 5689}, - {695, 695}, - {508: 2736, 733: 5693}, - {508: 2736, 733: 5692}, + {713, 713, 165: 1474, 655: 1474}, + {165: 5709}, + {736, 736}, + {257, 257, 501: 2745, 511: 2759, 737: 4079, 767: 5722, 795: 2746, 5721}, + {379: 5712}, // 3155 - {693, 693}, - {694, 694}, - {696, 696}, - {2: 269, 269, 269, 269, 269, 269, 269, 10: 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 50: 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 269, 475: 269, 479: 269, 499: 1804, 530: 269, 652: 1804, 659: 1804}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 475: 5847, 499: 1802, 652: 1802, 659: 1802, 661: 5846, 2762, 2763, 2761}, + {496: 5713, 511: 2759, 737: 4079, 767: 5677, 1090: 5714, 1176: 5715}, + {511: 2759, 737: 2758, 745: 5716}, + {728, 728, 9: 5678}, + {727, 727}, + {742, 742, 9: 5717, 166: 5718}, // 3160 - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 5844, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 499: 1765, 652: 1765, 659: 1765, 661: 5708, 2762, 2763, 2761, 831: 5751}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 499: 1759, 652: 1759, 659: 1759, 661: 5708, 2762, 2763, 2761, 831: 5841}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 475: 3490, 479: 5837, 499: 1757, 530: 3761, 652: 1757, 659: 1757, 661: 3491, 2762, 2763, 2761, 738: 3760, 807: 5836}, - {494: 5826, 499: 5825, 652: 1752, 659: 1752}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 5731, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 5732, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 475: 5736, 479: 5822, 499: 1743, 651: 5820, 1743, 659: 1743, 661: 3491, 2762, 2763, 2761, 738: 5251, 801: 5738, 821: 5739, 5737, 862: 5735, 1126: 5821, 1295: 5819}, + {511: 2759, 737: 2758, 745: 5720}, + {511: 2759, 737: 2758, 745: 5719}, + {740, 740}, + {741, 741}, + {738, 738}, // 3165 - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 5817, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 499: 1741, 652: 1741, 659: 1741, 661: 5708, 2762, 2763, 2761, 831: 5748}, - {182: 5802, 499: 1724, 652: 1724, 659: 1724, 671: 5803, 921: 5801, 971: 5800}, - {334: 5756, 336: 5755, 499: 1668, 652: 1668, 659: 1668, 1181: 5757}, - {475: 5754, 499: 1469, 652: 1469, 659: 1469}, - {807, 807, 9: 5744}, + {257, 257, 501: 2745, 795: 2746, 5723}, + {737, 737}, + {726, 726}, + {511: 2759, 737: 5732}, + {354: 5728, 511: 2759, 654: 5729, 737: 5727}, // 3170 - {174: 5730}, - {499: 775, 652: 5728, 659: 775}, - {499: 5717, 659: 5718, 824: 5726}, - {499: 5717, 659: 5718, 824: 5721}, - {499: 5717, 659: 5718, 824: 5719}, + {709, 709}, + {511: 2759, 737: 5731}, + {511: 2759, 737: 5730}, + {707, 707}, + {708, 708}, // 3175 - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 475: 3490, 479: 5716, 530: 3761, 661: 3491, 2762, 2763, 2761, 738: 3760, 807: 5715, 1186: 5714}, - {753, 753, 9: 753}, - {760, 760, 9: 760}, - {759, 759, 9: 759}, - {758, 758, 9: 758}, + {710, 710}, + {2: 279, 279, 279, 279, 279, 279, 279, 10: 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 51: 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 279, 478: 279, 482: 279, 502: 1820, 533: 279, 655: 1820, 662: 1820}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 478: 5884, 502: 1818, 655: 1818, 662: 1818, 664: 5883, 2785, 2786, 2784}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 5881, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 502: 1781, 655: 1781, 662: 1781, 664: 5746, 2785, 2786, 2784, 835: 5789}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 502: 1775, 655: 1775, 662: 1775, 664: 5746, 2785, 2786, 2784, 835: 5878}, // 3180 - {2: 777, 777, 777, 777, 777, 777, 777, 10: 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 50: 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 475: 777, 777, 777, 479: 777, 482: 777, 777, 485: 777, 777, 777, 492: 777, 495: 777, 504: 777, 777, 508: 777, 530: 777, 564: 777, 567: 777, 777, 570: 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 582: 777, 777, 777, 777, 777, 777, 777, 777, 592: 777, 777, 595: 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 777, 648: 777}, - {2: 776, 776, 776, 776, 776, 776, 776, 10: 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 50: 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 475: 776, 776, 776, 479: 776, 482: 776, 776, 485: 776, 776, 776, 492: 776, 495: 776, 504: 776, 776, 508: 776, 530: 776, 564: 776, 567: 776, 776, 570: 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 582: 776, 776, 776, 776, 776, 776, 776, 776, 592: 776, 776, 595: 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 776, 648: 776}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 2840, 2788, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 2869, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 2874, 2801, 2766, 2783, 2948, 3031, 3020, 2818, 2830, 2941, 2942, 2937, 2895, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 2876, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 2760, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 2880, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 2799, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 2866, 2865, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 2936, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 2824, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 2751, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 2882, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 2752, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3144, 2878, 3145, 3146, 2777, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3159, 3160, 3211, 3210, 3057, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 2918, 2935, 3058, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3177, 3178, 3179, 2931, 3130, 3189, 3190, 3201, 3185, 3186, 3187, 3220, 2877, 473: 3260, 475: 3239, 3258, 2755, 479: 3268, 482: 3272, 3276, 485: 3257, 3256, 3295, 492: 3230, 495: 3269, 504: 3275, 3293, 508: 3234, 530: 3264, 564: 3271, 567: 3294, 2753, 570: 3277, 3229, 3231, 3233, 3232, 3261, 3237, 3251, 3242, 3263, 3238, 582: 3270, 3262, 3267, 3273, 3283, 3336, 3284, 3285, 592: 3236, 3314, 595: 3254, 3255, 3309, 3310, 3311, 3312, 3313, 3265, 3291, 3296, 3306, 3307, 3300, 3315, 3316, 3317, 3301, 3319, 3320, 3302, 3318, 3297, 3305, 3303, 3289, 3321, 3322, 3266, 3326, 3278, 3279, 3282, 3325, 3331, 3330, 3332, 3329, 3333, 3328, 3327, 3324, 3274, 3323, 3281, 3280, 3286, 3287, 648: 2756, 661: 3244, 2762, 2763, 2761, 709: 3259, 3335, 3245, 3250, 3235, 3308, 3248, 3246, 3247, 3288, 3299, 3298, 3292, 3290, 3304, 3243, 3253, 3334, 3252, 3249, 2759, 2758, 2757, 5720}, - {765, 765, 9: 765, 507: 3345, 509: 3343, 3344, 3342, 3340, 734: 3341, 3339}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 2840, 2788, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 2869, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 2874, 2801, 2766, 2783, 2948, 3031, 3020, 2818, 2830, 2941, 2942, 2937, 2895, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 2876, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 2760, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 2880, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 2799, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 2866, 2865, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 2936, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 2824, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 2751, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 2882, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 2752, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3144, 2878, 3145, 3146, 2777, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3159, 3160, 3211, 3210, 3057, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 2918, 2935, 3058, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3177, 3178, 3179, 2931, 3130, 3189, 3190, 3201, 3185, 3186, 3187, 3220, 2877, 5723, 3260, 475: 3239, 3258, 2755, 479: 3903, 482: 3272, 3276, 485: 3257, 3256, 3295, 492: 3230, 495: 3269, 504: 3275, 3293, 508: 3234, 530: 5722, 564: 3271, 567: 3294, 2753, 570: 3277, 3229, 3231, 3233, 3232, 3261, 3237, 3251, 3242, 3263, 3238, 582: 3270, 3262, 3267, 3273, 3283, 3336, 3284, 3285, 592: 3236, 3314, 595: 3254, 3255, 3309, 3310, 3311, 3312, 3313, 3265, 3291, 3296, 3306, 3307, 3300, 3315, 3316, 3317, 3301, 3319, 3320, 3302, 3318, 3297, 3305, 3303, 3289, 3321, 3322, 3266, 3326, 3278, 3279, 3282, 3325, 3331, 3330, 3332, 3329, 3333, 3328, 3327, 3324, 3274, 3323, 3281, 3280, 3286, 3287, 648: 2756, 661: 3244, 2762, 2763, 2761, 709: 3259, 3335, 3245, 3250, 3235, 3308, 3248, 3246, 3247, 3288, 3299, 3298, 3292, 3290, 3304, 3243, 3253, 3334, 3252, 3249, 2759, 2758, 2757, 3899, 797: 5724, 840: 5725}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 478: 3516, 482: 5874, 502: 1773, 533: 3787, 655: 1773, 662: 1773, 664: 3517, 2785, 2786, 2784, 742: 3786, 811: 5873}, + {497: 5863, 502: 5862, 655: 1768, 662: 1768}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 5769, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 5770, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 478: 5774, 482: 5859, 502: 1759, 654: 5857, 1759, 662: 1759, 664: 3517, 2785, 2786, 2784, 742: 5287, 805: 5776, 825: 5777, 5775, 866: 5773, 1134: 5858, 1303: 5856}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 5854, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 502: 1757, 655: 1757, 662: 1757, 664: 5746, 2785, 2786, 2784, 835: 5786}, + {184: 5839, 502: 1740, 655: 1740, 662: 1740, 674: 5840, 926: 5838, 976: 5837}, // 3185 - {779, 779, 3135, 2967, 3002, 2847, 2883, 3004, 2774, 779, 2820, 2775, 2906, 3021, 3014, 2840, 2788, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 2869, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 2874, 2801, 2766, 2783, 2948, 3031, 3020, 2818, 2830, 2941, 2942, 2937, 2895, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 2876, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 2760, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 2880, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 2799, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 2866, 2865, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 2936, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 2824, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 2751, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 2882, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 2752, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3144, 2878, 3145, 3146, 2777, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3159, 3160, 3211, 3210, 3057, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 2918, 2935, 3058, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3177, 3178, 3179, 2931, 3130, 3189, 3190, 3201, 3185, 3186, 3187, 3220, 2877, 473: 3260, 475: 3239, 3258, 479: 3268, 482: 3272, 3276, 485: 3257, 3256, 3295, 492: 3230, 495: 3269, 504: 3275, 3293, 508: 3234, 530: 3264, 564: 3271, 567: 3294, 3349, 570: 3277, 3229, 3231, 3233, 3232, 3261, 3237, 3251, 3348, 3263, 3238, 582: 3270, 3262, 3267, 3273, 3283, 3336, 3284, 3285, 592: 3236, 3314, 595: 3254, 3255, 3309, 3310, 3311, 3312, 3313, 3265, 3291, 3296, 3306, 3307, 3300, 3315, 3316, 3317, 3301, 3319, 3320, 3302, 3318, 3297, 3305, 3303, 3289, 3321, 3322, 3266, 3326, 3278, 3279, 3282, 3325, 3331, 3330, 3332, 3329, 3333, 3328, 3327, 3324, 3274, 3323, 3281, 3280, 3286, 3287, 661: 3244, 2762, 2763, 2761, 709: 3259, 3335, 3245, 3250, 3235, 3308, 3248, 3246, 3247, 3288, 3299, 3298, 3292, 3290, 3304, 3866, 3253, 3334, 3252, 3249}, - {780, 780, 9: 780}, - {778, 778, 9: 778}, - {766, 766, 9: 766}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 2840, 2788, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 2869, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 2874, 2801, 2766, 2783, 2948, 3031, 3020, 2818, 2830, 2941, 2942, 2937, 2895, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 2876, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 2760, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 2880, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 2799, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 2866, 2865, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 2936, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 2824, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 2751, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 2882, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 2752, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3144, 2878, 3145, 3146, 2777, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3159, 3160, 3211, 3210, 3057, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 2918, 2935, 3058, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3177, 3178, 3179, 2931, 3130, 3189, 3190, 3201, 3185, 3186, 3187, 3220, 2877, 5723, 3260, 475: 3239, 3258, 2755, 479: 3903, 482: 3272, 3276, 485: 3257, 3256, 3295, 492: 3230, 495: 3269, 504: 3275, 3293, 508: 3234, 530: 5722, 564: 3271, 567: 3294, 2753, 570: 3277, 3229, 3231, 3233, 3232, 3261, 3237, 3251, 3242, 3263, 3238, 582: 3270, 3262, 3267, 3273, 3283, 3336, 3284, 3285, 592: 3236, 3314, 595: 3254, 3255, 3309, 3310, 3311, 3312, 3313, 3265, 3291, 3296, 3306, 3307, 3300, 3315, 3316, 3317, 3301, 3319, 3320, 3302, 3318, 3297, 3305, 3303, 3289, 3321, 3322, 3266, 3326, 3278, 3279, 3282, 3325, 3331, 3330, 3332, 3329, 3333, 3328, 3327, 3324, 3274, 3323, 3281, 3280, 3286, 3287, 648: 2756, 661: 3244, 2762, 2763, 2761, 709: 3259, 3335, 3245, 3250, 3235, 3308, 3248, 3246, 3247, 3288, 3299, 3298, 3292, 3290, 3304, 3243, 3253, 3334, 3252, 3249, 2759, 2758, 2757, 3899, 797: 5724, 840: 5727}, + {336: 5794, 338: 5793, 502: 1684, 655: 1684, 662: 1684, 1190: 5795}, + {478: 5792, 502: 1484, 655: 1484, 662: 1484}, + {821, 821, 9: 5782}, + {176: 5768}, + {502: 789, 655: 5766, 662: 789}, // 3190 - {770, 770, 9: 770}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 661: 5729, 2762, 2763, 2761}, - {499: 774, 659: 774}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 5731, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 5732, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 475: 5736, 651: 5734, 661: 3491, 2762, 2763, 2761, 738: 5251, 801: 5738, 821: 5739, 5737, 862: 5735, 1126: 5733}, - {737, 737, 9: 737, 568: 1832, 650: 737, 667: 1832}, + {502: 5755, 662: 5756, 828: 5764}, + {502: 5755, 662: 5756, 828: 5759}, + {502: 5755, 662: 5756, 828: 5757}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 478: 3516, 482: 5754, 533: 3787, 664: 3517, 2785, 2786, 2784, 742: 3786, 811: 5753, 1195: 5752}, + {767, 767, 9: 767}, // 3195 - {796, 796, 568: 1663, 650: 796, 667: 1663}, - {650: 5742}, - {650: 795}, - {794, 794, 9: 5740, 650: 794}, - {738, 738, 9: 738, 568: 258, 650: 738, 667: 258}, + {774, 774, 9: 774}, + {773, 773, 9: 773}, + {772, 772, 9: 772}, + {2: 791, 791, 791, 791, 791, 791, 791, 10: 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 51: 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 478: 791, 791, 791, 482: 791, 485: 791, 791, 488: 791, 791, 791, 495: 791, 498: 791, 507: 791, 791, 511: 791, 533: 791, 567: 791, 570: 791, 791, 573: 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 585: 791, 791, 791, 791, 791, 791, 791, 791, 595: 791, 791, 598: 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 791, 651: 791}, + {2: 790, 790, 790, 790, 790, 790, 790, 10: 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 51: 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 478: 790, 790, 790, 482: 790, 485: 790, 790, 488: 790, 790, 790, 495: 790, 498: 790, 507: 790, 790, 511: 790, 533: 790, 567: 790, 570: 790, 790, 573: 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 585: 790, 790, 790, 790, 790, 790, 790, 790, 595: 790, 790, 598: 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 790, 651: 790}, // 3200 - {732, 732, 9: 732, 650: 732}, - {731, 731, 9: 731, 650: 731}, - {730, 730, 9: 730, 650: 730}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 5731, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 475: 5736, 661: 3491, 2762, 2763, 2761, 738: 5251, 801: 5738, 821: 5741, 5737}, - {729, 729, 9: 729, 650: 729}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 2864, 2812, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 2893, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 2898, 2825, 2789, 2807, 2972, 3055, 3044, 2842, 2854, 2965, 2966, 2961, 2919, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 2900, 2885, 2881, 2973, 2997, 2783, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 2904, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 2823, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 2889, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 2890, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 2960, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 2848, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 2774, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 2906, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 2775, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3170, 2902, 3171, 3172, 2801, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3185, 3186, 3237, 3236, 3081, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 2942, 2959, 3082, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3203, 3204, 3205, 2955, 3156, 3215, 3216, 3227, 3211, 3212, 3213, 3246, 2901, 476: 3286, 478: 3265, 3284, 2778, 482: 3294, 485: 3298, 3302, 488: 3283, 3282, 3321, 495: 3256, 498: 3295, 507: 3301, 3319, 511: 3260, 533: 3290, 567: 3297, 570: 3320, 2776, 573: 3303, 3255, 3257, 3259, 3258, 3287, 3263, 3277, 3268, 3289, 3264, 585: 3296, 3288, 3293, 3299, 3309, 3362, 3310, 3311, 595: 3262, 3340, 598: 3280, 3281, 3335, 3336, 3337, 3338, 3339, 3291, 3317, 3322, 3332, 3333, 3326, 3341, 3342, 3343, 3327, 3345, 3346, 3328, 3344, 3323, 3331, 3329, 3315, 3347, 3348, 3292, 3352, 3304, 3305, 3308, 3351, 3357, 3356, 3358, 3355, 3359, 3354, 3353, 3350, 3300, 3349, 3307, 3306, 3312, 3313, 651: 2779, 664: 3270, 2785, 2786, 2784, 713: 3285, 3361, 3271, 3276, 3261, 3334, 3274, 3272, 3273, 3314, 3325, 3324, 3318, 3316, 3330, 3269, 3279, 3360, 3278, 3275, 2782, 2781, 2780, 5758}, + {779, 779, 9: 779, 510: 3371, 512: 3369, 3370, 3368, 3366, 738: 3367, 3365}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 2864, 2812, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 2893, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 2898, 2825, 2789, 2807, 2972, 3055, 3044, 2842, 2854, 2965, 2966, 2961, 2919, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 2900, 2885, 2881, 2973, 2997, 2783, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 2904, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 2823, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 2889, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 2890, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 2960, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 2848, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 2774, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 2906, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 2775, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3170, 2902, 3171, 3172, 2801, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3185, 3186, 3237, 3236, 3081, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 2942, 2959, 3082, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3203, 3204, 3205, 2955, 3156, 3215, 3216, 3227, 3211, 3212, 3213, 3246, 2901, 5761, 3286, 478: 3265, 3284, 2778, 482: 3929, 485: 3298, 3302, 488: 3283, 3282, 3321, 495: 3256, 498: 3295, 507: 3301, 3319, 511: 3260, 533: 5760, 567: 3297, 570: 3320, 2776, 573: 3303, 3255, 3257, 3259, 3258, 3287, 3263, 3277, 3268, 3289, 3264, 585: 3296, 3288, 3293, 3299, 3309, 3362, 3310, 3311, 595: 3262, 3340, 598: 3280, 3281, 3335, 3336, 3337, 3338, 3339, 3291, 3317, 3322, 3332, 3333, 3326, 3341, 3342, 3343, 3327, 3345, 3346, 3328, 3344, 3323, 3331, 3329, 3315, 3347, 3348, 3292, 3352, 3304, 3305, 3308, 3351, 3357, 3356, 3358, 3355, 3359, 3354, 3353, 3350, 3300, 3349, 3307, 3306, 3312, 3313, 651: 2779, 664: 3270, 2785, 2786, 2784, 713: 3285, 3361, 3271, 3276, 3261, 3334, 3274, 3272, 3273, 3314, 3325, 3324, 3318, 3316, 3330, 3269, 3279, 3360, 3278, 3275, 2782, 2781, 2780, 3925, 801: 5762, 845: 5763}, + {793, 793, 3161, 2991, 3026, 2871, 2907, 3028, 2798, 793, 2844, 2799, 2930, 3045, 3038, 2864, 2812, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 2893, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 2898, 2825, 2789, 2807, 2972, 3055, 3044, 2842, 2854, 2965, 2966, 2961, 2919, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 2900, 2885, 2881, 2973, 2997, 2783, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 2904, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 2823, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 2889, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 2890, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 2960, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 2848, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 2774, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 2906, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 2775, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3170, 2902, 3171, 3172, 2801, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3185, 3186, 3237, 3236, 3081, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 2942, 2959, 3082, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3203, 3204, 3205, 2955, 3156, 3215, 3216, 3227, 3211, 3212, 3213, 3246, 2901, 476: 3286, 478: 3265, 3284, 482: 3294, 485: 3298, 3302, 488: 3283, 3282, 3321, 495: 3256, 498: 3295, 507: 3301, 3319, 511: 3260, 533: 3290, 567: 3297, 570: 3320, 3375, 573: 3303, 3255, 3257, 3259, 3258, 3287, 3263, 3277, 3374, 3289, 3264, 585: 3296, 3288, 3293, 3299, 3309, 3362, 3310, 3311, 595: 3262, 3340, 598: 3280, 3281, 3335, 3336, 3337, 3338, 3339, 3291, 3317, 3322, 3332, 3333, 3326, 3341, 3342, 3343, 3327, 3345, 3346, 3328, 3344, 3323, 3331, 3329, 3315, 3347, 3348, 3292, 3352, 3304, 3305, 3308, 3351, 3357, 3356, 3358, 3355, 3359, 3354, 3353, 3350, 3300, 3349, 3307, 3306, 3312, 3313, 664: 3270, 2785, 2786, 2784, 713: 3285, 3361, 3271, 3276, 3261, 3334, 3274, 3272, 3273, 3314, 3325, 3324, 3318, 3316, 3330, 3892, 3279, 3360, 3278, 3275}, + {794, 794, 9: 794}, // 3205 - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 475: 3490, 570: 5297, 661: 3491, 2762, 2763, 2761, 738: 5296, 777: 5298, 868: 5743}, - {797, 797, 9: 5300}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 5695, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 5698, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 5745, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 5746, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 5699, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 505: 3837, 568: 5711, 587: 5710, 647: 3835, 661: 5708, 2762, 2763, 2761, 773: 5712, 831: 5709, 978: 5747}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 499: 1765, 652: 1765, 659: 1765, 661: 5708, 2762, 2763, 2761, 831: 5751}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 499: 1741, 652: 1741, 659: 1741, 661: 5708, 2762, 2763, 2761, 831: 5748}, + {792, 792, 9: 792}, + {780, 780, 9: 780}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 2864, 2812, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 2893, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 2898, 2825, 2789, 2807, 2972, 3055, 3044, 2842, 2854, 2965, 2966, 2961, 2919, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 2900, 2885, 2881, 2973, 2997, 2783, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 2904, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 2823, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 2889, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 2890, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 2960, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 2848, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 2774, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 2906, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 2775, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3170, 2902, 3171, 3172, 2801, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3185, 3186, 3237, 3236, 3081, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 2942, 2959, 3082, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3203, 3204, 3205, 2955, 3156, 3215, 3216, 3227, 3211, 3212, 3213, 3246, 2901, 5761, 3286, 478: 3265, 3284, 2778, 482: 3929, 485: 3298, 3302, 488: 3283, 3282, 3321, 495: 3256, 498: 3295, 507: 3301, 3319, 511: 3260, 533: 5760, 567: 3297, 570: 3320, 2776, 573: 3303, 3255, 3257, 3259, 3258, 3287, 3263, 3277, 3268, 3289, 3264, 585: 3296, 3288, 3293, 3299, 3309, 3362, 3310, 3311, 595: 3262, 3340, 598: 3280, 3281, 3335, 3336, 3337, 3338, 3339, 3291, 3317, 3322, 3332, 3333, 3326, 3341, 3342, 3343, 3327, 3345, 3346, 3328, 3344, 3323, 3331, 3329, 3315, 3347, 3348, 3292, 3352, 3304, 3305, 3308, 3351, 3357, 3356, 3358, 3355, 3359, 3354, 3353, 3350, 3300, 3349, 3307, 3306, 3312, 3313, 651: 2779, 664: 3270, 2785, 2786, 2784, 713: 3285, 3361, 3271, 3276, 3261, 3334, 3274, 3272, 3273, 3314, 3325, 3324, 3318, 3316, 3330, 3269, 3279, 3360, 3278, 3275, 2782, 2781, 2780, 3925, 801: 5762, 845: 5765}, + {784, 784, 9: 784}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 664: 5767, 2785, 2786, 2784}, // 3210 - {752, 752, 9: 752}, - {499: 5717, 659: 5718, 824: 5749}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 2840, 2788, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 2869, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 2874, 2801, 2766, 2783, 2948, 3031, 3020, 2818, 2830, 2941, 2942, 2937, 2895, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 2876, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 2760, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 2880, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 2799, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 2866, 2865, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 2936, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 2824, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 2751, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 2882, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 2752, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3144, 2878, 3145, 3146, 2777, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3159, 3160, 3211, 3210, 3057, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 2918, 2935, 3058, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3177, 3178, 3179, 2931, 3130, 3189, 3190, 3201, 3185, 3186, 3187, 3220, 2877, 5723, 3260, 475: 3239, 3258, 2755, 479: 3903, 482: 3272, 3276, 485: 3257, 3256, 3295, 492: 3230, 495: 3269, 504: 3275, 3293, 508: 3234, 530: 5722, 564: 3271, 567: 3294, 2753, 570: 3277, 3229, 3231, 3233, 3232, 3261, 3237, 3251, 3242, 3263, 3238, 582: 3270, 3262, 3267, 3273, 3283, 3336, 3284, 3285, 592: 3236, 3314, 595: 3254, 3255, 3309, 3310, 3311, 3312, 3313, 3265, 3291, 3296, 3306, 3307, 3300, 3315, 3316, 3317, 3301, 3319, 3320, 3302, 3318, 3297, 3305, 3303, 3289, 3321, 3322, 3266, 3326, 3278, 3279, 3282, 3325, 3331, 3330, 3332, 3329, 3333, 3328, 3327, 3324, 3274, 3323, 3281, 3280, 3286, 3287, 648: 2756, 661: 3244, 2762, 2763, 2761, 709: 3259, 3335, 3245, 3250, 3235, 3308, 3248, 3246, 3247, 3288, 3299, 3298, 3292, 3290, 3304, 3243, 3253, 3334, 3252, 3249, 2759, 2758, 2757, 3899, 797: 5724, 840: 5750}, - {768, 768, 9: 768}, - {499: 5717, 659: 5718, 824: 5752}, + {502: 788, 662: 788}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 5769, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 5770, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 478: 5774, 654: 5772, 664: 3517, 2785, 2786, 2784, 742: 5287, 805: 5776, 825: 5777, 5775, 866: 5773, 1134: 5771}, + {751, 751, 9: 751, 571: 1849, 653: 751, 670: 1849}, + {810, 810, 571: 1679, 653: 810, 670: 1679}, + {653: 5780}, // 3215 - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 2840, 2788, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 2869, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 2874, 2801, 2766, 2783, 2948, 3031, 3020, 2818, 2830, 2941, 2942, 2937, 2895, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 2876, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 2760, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 2880, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 2799, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 2866, 2865, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 2936, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 2824, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 2751, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 2882, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 2752, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3144, 2878, 3145, 3146, 2777, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3159, 3160, 3211, 3210, 3057, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 2918, 2935, 3058, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3177, 3178, 3179, 2931, 3130, 3189, 3190, 3201, 3185, 3186, 3187, 3220, 2877, 5723, 3260, 475: 3239, 3258, 2755, 479: 3903, 482: 3272, 3276, 485: 3257, 3256, 3295, 492: 3230, 495: 3269, 504: 3275, 3293, 508: 3234, 530: 5722, 564: 3271, 567: 3294, 2753, 570: 3277, 3229, 3231, 3233, 3232, 3261, 3237, 3251, 3242, 3263, 3238, 582: 3270, 3262, 3267, 3273, 3283, 3336, 3284, 3285, 592: 3236, 3314, 595: 3254, 3255, 3309, 3310, 3311, 3312, 3313, 3265, 3291, 3296, 3306, 3307, 3300, 3315, 3316, 3317, 3301, 3319, 3320, 3302, 3318, 3297, 3305, 3303, 3289, 3321, 3322, 3266, 3326, 3278, 3279, 3282, 3325, 3331, 3330, 3332, 3329, 3333, 3328, 3327, 3324, 3274, 3323, 3281, 3280, 3286, 3287, 648: 2756, 661: 3244, 2762, 2763, 2761, 709: 3259, 3335, 3245, 3250, 3235, 3308, 3248, 3246, 3247, 3288, 3299, 3298, 3292, 3290, 3304, 3243, 3253, 3334, 3252, 3249, 2759, 2758, 2757, 3899, 797: 5724, 840: 5753}, - {769, 769, 9: 769}, - {799, 799}, - {494: 2216}, - {494: 2215}, + {653: 809}, + {808, 808, 9: 5778, 653: 808}, + {752, 752, 9: 752, 571: 268, 653: 752, 670: 268}, + {746, 746, 9: 746, 653: 746}, + {745, 745, 9: 745, 653: 745}, // 3220 - {494: 5758}, - {473: 2588, 2587, 495: 2586, 504: 2572, 567: 2571, 569: 2585, 646: 2581, 654: 2690, 709: 5761, 739: 5759, 748: 5762, 2582, 2583, 2584, 2593, 756: 2591, 2590, 2589, 5760, 5764, 5763, 766: 5766, 772: 2689, 774: 5767, 5768, 5765, 846: 5769}, - {2: 853, 853, 853, 853, 853, 853, 853, 10: 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 50: 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 853, 489: 853, 500: 853, 753: 853, 853, 853, 762: 5398, 867: 5399, 918: 5773}, - {473: 2588, 495: 2586, 569: 2585, 646: 2581, 654: 2690, 709: 3888, 748: 3887, 2582, 2583, 2584, 2593, 756: 2591, 3889, 3890, 772: 5772}, - {185, 185, 480: 814, 185, 490: 814, 814, 493: 2728, 501: 2729, 2725, 767: 3891, 3892}, + {744, 744, 9: 744, 653: 744}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 5769, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 478: 5774, 664: 3517, 2785, 2786, 2784, 742: 5287, 805: 5776, 825: 5779, 5775}, + {743, 743, 9: 743, 653: 743}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 478: 3516, 573: 5333, 664: 3517, 2785, 2786, 2784, 742: 5332, 781: 5334, 872: 5781}, + {811, 811, 9: 5336}, // 3225 - {187, 187, 480: 815, 187, 490: 815, 815}, - {188, 188, 481: 188}, - {186, 186, 481: 186}, - {184, 184, 481: 184}, - {183, 183, 481: 183}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 5733, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 5736, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 5783, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 5784, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 5737, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 508: 3863, 571: 5749, 590: 5748, 650: 3861, 664: 5746, 2785, 2786, 2784, 779: 5750, 835: 5747, 983: 5785}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 502: 1781, 655: 1781, 662: 1781, 664: 5746, 2785, 2786, 2784, 835: 5789}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 502: 1757, 655: 1757, 662: 1757, 664: 5746, 2785, 2786, 2784, 835: 5786}, + {766, 766, 9: 766}, + {502: 5755, 662: 5756, 828: 5787}, // 3230 - {182, 182, 481: 182}, - {181, 181, 481: 181}, - {177, 177, 481: 5770}, - {473: 2588, 2587, 495: 2586, 504: 2572, 567: 2571, 569: 2585, 646: 2581, 654: 2690, 709: 5761, 739: 5759, 748: 5762, 2582, 2583, 2584, 2593, 756: 2591, 2590, 2589, 5760, 5764, 5763, 766: 5766, 772: 2689, 774: 5767, 5768, 5765, 846: 5771}, - {176, 176}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 2864, 2812, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 2893, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 2898, 2825, 2789, 2807, 2972, 3055, 3044, 2842, 2854, 2965, 2966, 2961, 2919, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 2900, 2885, 2881, 2973, 2997, 2783, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 2904, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 2823, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 2889, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 2890, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 2960, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 2848, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 2774, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 2906, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 2775, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3170, 2902, 3171, 3172, 2801, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3185, 3186, 3237, 3236, 3081, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 2942, 2959, 3082, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3203, 3204, 3205, 2955, 3156, 3215, 3216, 3227, 3211, 3212, 3213, 3246, 2901, 5761, 3286, 478: 3265, 3284, 2778, 482: 3929, 485: 3298, 3302, 488: 3283, 3282, 3321, 495: 3256, 498: 3295, 507: 3301, 3319, 511: 3260, 533: 5760, 567: 3297, 570: 3320, 2776, 573: 3303, 3255, 3257, 3259, 3258, 3287, 3263, 3277, 3268, 3289, 3264, 585: 3296, 3288, 3293, 3299, 3309, 3362, 3310, 3311, 595: 3262, 3340, 598: 3280, 3281, 3335, 3336, 3337, 3338, 3339, 3291, 3317, 3322, 3332, 3333, 3326, 3341, 3342, 3343, 3327, 3345, 3346, 3328, 3344, 3323, 3331, 3329, 3315, 3347, 3348, 3292, 3352, 3304, 3305, 3308, 3351, 3357, 3356, 3358, 3355, 3359, 3354, 3353, 3350, 3300, 3349, 3307, 3306, 3312, 3313, 651: 2779, 664: 3270, 2785, 2786, 2784, 713: 3285, 3361, 3271, 3276, 3261, 3334, 3274, 3272, 3273, 3314, 3325, 3324, 3318, 3316, 3330, 3269, 3279, 3360, 3278, 3275, 2782, 2781, 2780, 3925, 801: 5762, 845: 5788}, + {782, 782, 9: 782}, + {502: 5755, 662: 5756, 828: 5790}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 2864, 2812, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 2893, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 2898, 2825, 2789, 2807, 2972, 3055, 3044, 2842, 2854, 2965, 2966, 2961, 2919, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 2900, 2885, 2881, 2973, 2997, 2783, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 2904, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 2823, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 2889, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 2890, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 2960, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 2848, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 2774, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 2906, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 2775, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3170, 2902, 3171, 3172, 2801, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3185, 3186, 3237, 3236, 3081, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 2942, 2959, 3082, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3203, 3204, 3205, 2955, 3156, 3215, 3216, 3227, 3211, 3212, 3213, 3246, 2901, 5761, 3286, 478: 3265, 3284, 2778, 482: 3929, 485: 3298, 3302, 488: 3283, 3282, 3321, 495: 3256, 498: 3295, 507: 3301, 3319, 511: 3260, 533: 5760, 567: 3297, 570: 3320, 2776, 573: 3303, 3255, 3257, 3259, 3258, 3287, 3263, 3277, 3268, 3289, 3264, 585: 3296, 3288, 3293, 3299, 3309, 3362, 3310, 3311, 595: 3262, 3340, 598: 3280, 3281, 3335, 3336, 3337, 3338, 3339, 3291, 3317, 3322, 3332, 3333, 3326, 3341, 3342, 3343, 3327, 3345, 3346, 3328, 3344, 3323, 3331, 3329, 3315, 3347, 3348, 3292, 3352, 3304, 3305, 3308, 3351, 3357, 3356, 3358, 3355, 3359, 3354, 3353, 3350, 3300, 3349, 3307, 3306, 3312, 3313, 651: 2779, 664: 3270, 2785, 2786, 2784, 713: 3285, 3361, 3271, 3276, 3261, 3334, 3274, 3272, 3273, 3314, 3325, 3324, 3318, 3316, 3330, 3269, 3279, 3360, 3278, 3275, 2782, 2781, 2780, 3925, 801: 5762, 845: 5791}, + {783, 783, 9: 783}, // 3235 - {252, 252, 481: 252}, - {2: 1057, 1057, 1057, 1057, 1057, 1057, 1057, 10: 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 50: 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 489: 1057, 500: 1057, 753: 5403, 5402, 5401, 837: 5404, 887: 5774}, - {2: 1045, 1045, 1045, 1045, 1045, 1045, 1045, 10: 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 50: 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 5776, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 489: 1045, 500: 1045, 1109: 5775}, - {2: 1856, 1856, 1856, 1856, 1856, 1856, 1856, 10: 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 50: 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 489: 4191, 500: 1856, 855: 5777}, - {2: 1044, 1044, 1044, 1044, 1044, 1044, 1044, 10: 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 50: 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 1044, 489: 1044, 500: 1044}, + {813, 813}, + {497: 2233}, + {497: 2232}, + {497: 5796}, + {476: 2608, 2607, 498: 2606, 507: 2592, 570: 2591, 572: 2605, 649: 2601, 657: 2713, 713: 5799, 743: 5797, 752: 5800, 2602, 2603, 2604, 2613, 760: 2611, 2610, 2609, 5798, 5802, 5801, 770: 2712, 5804, 777: 5805, 5803, 780: 5806, 851: 5807}, // 3240 - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 500: 5778, 661: 5780, 2762, 2763, 2761, 917: 5781, 967: 5779}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 661: 3921, 2762, 2763, 2761, 737: 5793}, - {9: 5789, 500: 5788}, - {9: 1047, 481: 1047, 500: 1047, 652: 5783, 907: 5782}, - {9: 1049, 481: 1049, 500: 1049}, + {2: 867, 867, 867, 867, 867, 867, 867, 10: 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 51: 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 492: 867, 503: 867, 757: 867, 867, 867, 766: 5436, 871: 5437, 923: 5810}, + {476: 2608, 498: 2606, 572: 2605, 649: 2601, 657: 2713, 713: 3914, 752: 3913, 2602, 2603, 2604, 2613, 760: 2611, 3915, 3916, 770: 5217}, + {191, 191, 483: 828, 191, 493: 828, 828, 496: 2751, 504: 2752, 2748, 772: 3917, 3918}, + {193, 193, 483: 829, 193, 493: 829, 829}, + {194, 194, 484: 194}, // 3245 - {9: 1051, 481: 1051, 500: 1051}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 520: 5785, 661: 5784, 2762, 2763, 2761}, - {9: 1047, 481: 1047, 500: 1047, 652: 5787, 907: 5786}, - {9: 1046, 481: 1046, 500: 1046}, - {9: 1050, 481: 1050, 500: 1050}, + {192, 192, 484: 192}, + {190, 190, 484: 190}, + {189, 189, 484: 189}, + {188, 188, 484: 188}, + {187, 187, 484: 187}, // 3250 - {520: 5785}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 473: 5415, 579: 5410, 661: 3921, 2762, 2763, 2761, 709: 5414, 737: 5413, 798: 5412, 802: 5411, 5417, 852: 5407, 890: 5791}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 661: 5780, 2762, 2763, 2761, 917: 5790}, - {9: 1048, 481: 1048, 500: 1048}, - {247, 247, 9: 5461, 481: 247, 498: 2722, 790: 2723, 5792}, + {183, 183, 484: 5808}, + {476: 2608, 2607, 498: 2606, 507: 2592, 570: 2591, 572: 2605, 649: 2601, 657: 2713, 713: 5799, 743: 5797, 752: 5800, 2602, 2603, 2604, 2613, 760: 2611, 2610, 2609, 5798, 5802, 5801, 770: 2712, 5804, 777: 5805, 5803, 780: 5806, 851: 5809}, + {182, 182}, + {2: 1071, 1071, 1071, 1071, 1071, 1071, 1071, 10: 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 51: 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 492: 1071, 503: 1071, 757: 5441, 5440, 5439, 842: 5442, 891: 5811}, + {2: 1059, 1059, 1059, 1059, 1059, 1059, 1059, 10: 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 51: 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 5813, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 492: 1059, 503: 1059, 1117: 5812}, // 3255 - {2074, 2074, 481: 2074}, - {922, 922, 922, 922, 922, 922, 922, 922, 922, 10: 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 50: 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 922, 478: 922, 481: 922, 488: 5465, 922, 493: 922, 498: 922, 502: 922, 922, 525: 922, 860: 5794}, - {920, 920, 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 478: 5422, 481: 920, 489: 920, 493: 920, 498: 920, 502: 920, 920, 525: 920, 661: 5421, 2762, 2763, 2761, 915: 5420, 5795}, - {901, 901, 481: 901, 489: 5475, 493: 901, 498: 901, 502: 901, 5476, 525: 5474, 940: 5478, 5477, 1062: 5479, 5796}, - {247, 247, 481: 247, 493: 247, 498: 2722, 502: 247, 790: 2723, 5797}, + {2: 1873, 1873, 1873, 1873, 1873, 1873, 1873, 10: 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 51: 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 492: 4217, 503: 1873, 859: 5814}, + {2: 1058, 1058, 1058, 1058, 1058, 1058, 1058, 10: 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 51: 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 1058, 492: 1058, 503: 1058}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 503: 5815, 664: 5817, 2785, 2786, 2784, 922: 5818, 972: 5816}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 664: 3947, 2785, 2786, 2784, 740: 5830}, + {9: 5826, 503: 5825}, // 3260 - {1297, 1297, 481: 1297, 493: 1297, 502: 2725, 767: 2726, 812: 5798}, - {883, 883, 481: 883, 493: 5525, 1071: 5799}, - {2075, 2075, 481: 2075}, - {802, 802, 9: 5815}, - {790, 790, 9: 790}, + {9: 1061, 484: 1061, 503: 1061, 655: 5820, 912: 5819}, + {9: 1063, 484: 1063, 503: 1063}, + {9: 1065, 484: 1065, 503: 1065}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 523: 5822, 664: 5821, 2785, 2786, 2784}, + {9: 1061, 484: 1061, 503: 1061, 655: 5824, 912: 5823}, // 3265 - {356: 5807}, - {154: 5805, 687: 5804}, - {787, 787, 9: 787}, - {786, 786, 9: 786, 673: 5471, 924: 5806}, - {785, 785, 9: 785}, + {9: 1060, 484: 1060, 503: 1060}, + {9: 1064, 484: 1064, 503: 1064}, + {523: 5822}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 476: 5453, 582: 5448, 664: 3947, 2785, 2786, 2784, 713: 5452, 740: 5451, 802: 5450, 806: 5449, 5455, 856: 5445, 894: 5828}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 664: 5817, 2785, 2786, 2784, 922: 5827}, // 3270 - {220: 5809, 385: 5811, 671: 5810, 1239: 5808}, - {788, 788, 9: 788}, - {671: 5814}, - {328: 5812, 404: 5813}, - {781, 781, 9: 781}, + {9: 1062, 484: 1062, 503: 1062}, + {257, 257, 9: 5499, 484: 257, 501: 2745, 795: 2746, 5829}, + {2091, 2091, 484: 2091}, + {936, 936, 936, 936, 936, 936, 936, 936, 936, 10: 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 51: 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 936, 481: 936, 484: 936, 491: 5503, 936, 496: 936, 501: 936, 505: 936, 936, 528: 936, 864: 5831}, + {934, 934, 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 481: 5460, 484: 934, 492: 934, 496: 934, 501: 934, 505: 934, 934, 528: 934, 664: 5459, 2785, 2786, 2784, 920: 5458, 5832}, // 3275 - {783, 783, 9: 783}, - {782, 782, 9: 782}, - {784, 784, 9: 784}, - {182: 5802, 671: 5803, 921: 5816}, - {789, 789, 9: 789}, + {915, 915, 484: 915, 492: 5513, 496: 915, 501: 915, 505: 915, 5514, 528: 5512, 945: 5516, 5515, 1069: 5517, 5833}, + {257, 257, 484: 257, 496: 257, 501: 2745, 505: 257, 795: 2746, 5834}, + {1311, 1311, 484: 1311, 496: 1311, 505: 2748, 772: 2749, 817: 5835}, + {897, 897, 484: 897, 496: 5563, 1078: 5836}, + {2092, 2092, 484: 2092}, // 3280 - {182: 5802, 499: 1724, 652: 1724, 659: 1724, 671: 5803, 921: 5801, 971: 5818}, - {803, 803, 9: 5815}, - {798, 798}, - {795, 795, 490: 5823}, - {792, 792}, + {816, 816, 9: 5852}, + {804, 804, 9: 804}, + {358: 5844}, + {156: 5842, 691: 5841}, + {801, 801, 9: 801}, // 3285 - {791, 791}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 5731, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 475: 5736, 661: 3491, 2762, 2763, 2761, 738: 5251, 801: 5738, 821: 5739, 5737, 862: 5824}, - {793, 793, 9: 5740}, - {15: 5831, 475: 5830, 1101: 5835}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 475: 3490, 570: 5297, 661: 3491, 2762, 2763, 2761, 738: 5296, 777: 5827}, + {800, 800, 9: 800, 676: 5509, 929: 5843}, + {799, 799, 9: 799}, + {222: 5846, 387: 5848, 674: 5847, 1247: 5845}, + {802, 802, 9: 802}, + {674: 5851}, // 3290 - {499: 5828}, - {15: 5831, 475: 5830, 1101: 5829}, - {805, 805}, - {741, 741}, - {473: 5832}, + {330: 5849, 407: 5850}, + {795, 795, 9: 795}, + {797, 797, 9: 797}, + {796, 796, 9: 796}, + {798, 798, 9: 798}, // 3295 - {475: 5330, 893: 5833}, - {49: 5834}, - {740, 740}, - {806, 806}, - {764, 764, 9: 764, 484: 5838}, + {184: 5839, 674: 5840, 926: 5853}, + {803, 803, 9: 803}, + {184: 5839, 502: 1740, 655: 1740, 662: 1740, 674: 5840, 926: 5838, 976: 5855}, + {817, 817, 9: 5852}, + {812, 812}, // 3300 - {761, 761, 9: 761}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 475: 3490, 479: 5839, 661: 3491, 2762, 2763, 2761, 738: 5840}, - {763, 763, 9: 763}, - {762, 762, 9: 762}, - {499: 5717, 659: 5718, 824: 5842}, + {809, 809, 493: 5860}, + {806, 806}, + {805, 805}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 5769, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 478: 5774, 664: 3517, 2785, 2786, 2784, 742: 5287, 805: 5776, 825: 5777, 5775, 866: 5861}, + {807, 807, 9: 5778}, // 3305 - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 2840, 2788, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 2869, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 2874, 2801, 2766, 2783, 2948, 3031, 3020, 2818, 2830, 2941, 2942, 2937, 2895, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 2876, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 2760, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 2880, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 2799, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 2866, 2865, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 2936, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 2824, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 2751, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 2882, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 2752, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3144, 2878, 3145, 3146, 2777, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3159, 3160, 3211, 3210, 3057, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 2918, 2935, 3058, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3177, 3178, 3179, 2931, 3130, 3189, 3190, 3201, 3185, 3186, 3187, 3220, 2877, 5723, 3260, 475: 3239, 3258, 2755, 479: 3903, 482: 3272, 3276, 485: 3257, 3256, 3295, 492: 3230, 495: 3269, 504: 3275, 3293, 508: 3234, 530: 5722, 564: 3271, 567: 3294, 2753, 570: 3277, 3229, 3231, 3233, 3232, 3261, 3237, 3251, 3242, 3263, 3238, 582: 3270, 3262, 3267, 3273, 3283, 3336, 3284, 3285, 592: 3236, 3314, 595: 3254, 3255, 3309, 3310, 3311, 3312, 3313, 3265, 3291, 3296, 3306, 3307, 3300, 3315, 3316, 3317, 3301, 3319, 3320, 3302, 3318, 3297, 3305, 3303, 3289, 3321, 3322, 3266, 3326, 3278, 3279, 3282, 3325, 3331, 3330, 3332, 3329, 3333, 3328, 3327, 3324, 3274, 3323, 3281, 3280, 3286, 3287, 648: 2756, 661: 3244, 2762, 2763, 2761, 709: 3259, 3335, 3245, 3250, 3235, 3308, 3248, 3246, 3247, 3288, 3299, 3298, 3292, 3290, 3304, 3243, 3253, 3334, 3252, 3249, 2759, 2758, 2757, 3899, 797: 5724, 840: 5843}, - {767, 767, 9: 767}, - {182: 5802, 499: 1724, 652: 1724, 659: 1724, 671: 5803, 921: 5801, 971: 5845}, - {804, 804, 9: 5815}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 661: 5849, 2762, 2763, 2761, 902: 5856}, + {15: 5868, 478: 5867, 1109: 5872}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 478: 3516, 573: 5333, 664: 3517, 2785, 2786, 2784, 742: 5332, 781: 5864}, + {502: 5865}, + {15: 5868, 478: 5867, 1109: 5866}, + {819, 819}, // 3310 - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 661: 5849, 2762, 2763, 2761, 902: 5848}, - {499: 5717, 659: 5718, 824: 5854}, - {486: 5851, 499: 773, 652: 5850, 659: 773}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 661: 5849, 2762, 2763, 2761, 902: 5853}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 661: 5849, 2762, 2763, 2761, 902: 5852}, + {755, 755}, + {476: 5869}, + {478: 5366, 897: 5870}, + {50: 5871}, + {754, 754}, // 3315 - {499: 771, 659: 771}, - {499: 772, 659: 772}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 2840, 2788, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 2869, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 2874, 2801, 2766, 2783, 2948, 3031, 3020, 2818, 2830, 2941, 2942, 2937, 2895, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 2876, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 2760, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 2880, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 2799, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 2866, 2865, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 2936, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 2824, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 2751, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 2882, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 2752, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3144, 2878, 3145, 3146, 2777, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3159, 3160, 3211, 3210, 3057, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 2918, 2935, 3058, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3177, 3178, 3179, 2931, 3130, 3189, 3190, 3201, 3185, 3186, 3187, 3220, 2877, 5723, 3260, 475: 3239, 3258, 2755, 479: 3903, 482: 3272, 3276, 485: 3257, 3256, 3295, 492: 3230, 495: 3269, 504: 3275, 3293, 508: 3234, 530: 5722, 564: 3271, 567: 3294, 2753, 570: 3277, 3229, 3231, 3233, 3232, 3261, 3237, 3251, 3242, 3263, 3238, 582: 3270, 3262, 3267, 3273, 3283, 3336, 3284, 3285, 592: 3236, 3314, 595: 3254, 3255, 3309, 3310, 3311, 3312, 3313, 3265, 3291, 3296, 3306, 3307, 3300, 3315, 3316, 3317, 3301, 3319, 3320, 3302, 3318, 3297, 3305, 3303, 3289, 3321, 3322, 3266, 3326, 3278, 3279, 3282, 3325, 3331, 3330, 3332, 3329, 3333, 3328, 3327, 3324, 3274, 3323, 3281, 3280, 3286, 3287, 648: 2756, 661: 3244, 2762, 2763, 2761, 709: 3259, 3335, 3245, 3250, 3235, 3308, 3248, 3246, 3247, 3288, 3299, 3298, 3292, 3290, 3304, 3243, 3253, 3334, 3252, 3249, 2759, 2758, 2757, 3899, 797: 5724, 840: 5855}, - {800, 800}, - {499: 5717, 659: 5718, 824: 5857}, + {820, 820}, + {778, 778, 9: 778, 487: 5875}, + {775, 775, 9: 775}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 478: 3516, 482: 5876, 664: 3517, 2785, 2786, 2784, 742: 5877}, + {777, 777, 9: 777}, // 3320 - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 2840, 2788, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 2869, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 2874, 2801, 2766, 2783, 2948, 3031, 3020, 2818, 2830, 2941, 2942, 2937, 2895, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 2876, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 2760, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 2880, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 2799, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 2866, 2865, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 2936, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 2824, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 2751, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 2882, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 2752, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3144, 2878, 3145, 3146, 2777, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3159, 3160, 3211, 3210, 3057, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 2918, 2935, 3058, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3177, 3178, 3179, 2931, 3130, 3189, 3190, 3201, 3185, 3186, 3187, 3220, 2877, 5723, 3260, 475: 3239, 3258, 2755, 479: 3903, 482: 3272, 3276, 485: 3257, 3256, 3295, 492: 3230, 495: 3269, 504: 3275, 3293, 508: 3234, 530: 5722, 564: 3271, 567: 3294, 2753, 570: 3277, 3229, 3231, 3233, 3232, 3261, 3237, 3251, 3242, 3263, 3238, 582: 3270, 3262, 3267, 3273, 3283, 3336, 3284, 3285, 592: 3236, 3314, 595: 3254, 3255, 3309, 3310, 3311, 3312, 3313, 3265, 3291, 3296, 3306, 3307, 3300, 3315, 3316, 3317, 3301, 3319, 3320, 3302, 3318, 3297, 3305, 3303, 3289, 3321, 3322, 3266, 3326, 3278, 3279, 3282, 3325, 3331, 3330, 3332, 3329, 3333, 3328, 3327, 3324, 3274, 3323, 3281, 3280, 3286, 3287, 648: 2756, 661: 3244, 2762, 2763, 2761, 709: 3259, 3335, 3245, 3250, 3235, 3308, 3248, 3246, 3247, 3288, 3299, 3298, 3292, 3290, 3304, 3243, 3253, 3334, 3252, 3249, 2759, 2758, 2757, 3899, 797: 5724, 840: 5858}, - {801, 801}, - {650: 5868}, - {650: 5861}, - {272: 5862}, + {776, 776, 9: 776}, + {502: 5755, 662: 5756, 828: 5879}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 2864, 2812, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 2893, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 2898, 2825, 2789, 2807, 2972, 3055, 3044, 2842, 2854, 2965, 2966, 2961, 2919, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 2900, 2885, 2881, 2973, 2997, 2783, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 2904, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 2823, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 2889, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 2890, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 2960, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 2848, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 2774, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 2906, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 2775, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3170, 2902, 3171, 3172, 2801, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3185, 3186, 3237, 3236, 3081, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 2942, 2959, 3082, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3203, 3204, 3205, 2955, 3156, 3215, 3216, 3227, 3211, 3212, 3213, 3246, 2901, 5761, 3286, 478: 3265, 3284, 2778, 482: 3929, 485: 3298, 3302, 488: 3283, 3282, 3321, 495: 3256, 498: 3295, 507: 3301, 3319, 511: 3260, 533: 5760, 567: 3297, 570: 3320, 2776, 573: 3303, 3255, 3257, 3259, 3258, 3287, 3263, 3277, 3268, 3289, 3264, 585: 3296, 3288, 3293, 3299, 3309, 3362, 3310, 3311, 595: 3262, 3340, 598: 3280, 3281, 3335, 3336, 3337, 3338, 3339, 3291, 3317, 3322, 3332, 3333, 3326, 3341, 3342, 3343, 3327, 3345, 3346, 3328, 3344, 3323, 3331, 3329, 3315, 3347, 3348, 3292, 3352, 3304, 3305, 3308, 3351, 3357, 3356, 3358, 3355, 3359, 3354, 3353, 3350, 3300, 3349, 3307, 3306, 3312, 3313, 651: 2779, 664: 3270, 2785, 2786, 2784, 713: 3285, 3361, 3271, 3276, 3261, 3334, 3274, 3272, 3273, 3314, 3325, 3324, 3318, 3316, 3330, 3269, 3279, 3360, 3278, 3275, 2782, 2781, 2780, 3925, 801: 5762, 845: 5880}, + {781, 781, 9: 781}, + {184: 5839, 502: 1740, 655: 1740, 662: 1740, 674: 5840, 926: 5838, 976: 5882}, // 3325 - {499: 5863}, - {475: 5864}, - {494: 5865}, - {271: 5866}, - {475: 5867}, + {818, 818, 9: 5852}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 664: 5886, 2785, 2786, 2784, 907: 5893}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 664: 5886, 2785, 2786, 2784, 907: 5885}, + {502: 5755, 662: 5756, 828: 5891}, + {489: 5888, 502: 787, 655: 5887, 662: 787}, // 3330 - {808, 808}, - {272: 5869}, - {499: 5870}, - {475: 5871}, - {494: 5872}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 664: 5886, 2785, 2786, 2784, 907: 5890}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 664: 5886, 2785, 2786, 2784, 907: 5889}, + {502: 785, 662: 785}, + {502: 786, 662: 786}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 2864, 2812, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 2893, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 2898, 2825, 2789, 2807, 2972, 3055, 3044, 2842, 2854, 2965, 2966, 2961, 2919, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 2900, 2885, 2881, 2973, 2997, 2783, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 2904, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 2823, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 2889, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 2890, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 2960, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 2848, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 2774, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 2906, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 2775, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3170, 2902, 3171, 3172, 2801, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3185, 3186, 3237, 3236, 3081, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 2942, 2959, 3082, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3203, 3204, 3205, 2955, 3156, 3215, 3216, 3227, 3211, 3212, 3213, 3246, 2901, 5761, 3286, 478: 3265, 3284, 2778, 482: 3929, 485: 3298, 3302, 488: 3283, 3282, 3321, 495: 3256, 498: 3295, 507: 3301, 3319, 511: 3260, 533: 5760, 567: 3297, 570: 3320, 2776, 573: 3303, 3255, 3257, 3259, 3258, 3287, 3263, 3277, 3268, 3289, 3264, 585: 3296, 3288, 3293, 3299, 3309, 3362, 3310, 3311, 595: 3262, 3340, 598: 3280, 3281, 3335, 3336, 3337, 3338, 3339, 3291, 3317, 3322, 3332, 3333, 3326, 3341, 3342, 3343, 3327, 3345, 3346, 3328, 3344, 3323, 3331, 3329, 3315, 3347, 3348, 3292, 3352, 3304, 3305, 3308, 3351, 3357, 3356, 3358, 3355, 3359, 3354, 3353, 3350, 3300, 3349, 3307, 3306, 3312, 3313, 651: 2779, 664: 3270, 2785, 2786, 2784, 713: 3285, 3361, 3271, 3276, 3261, 3334, 3274, 3272, 3273, 3314, 3325, 3324, 3318, 3316, 3330, 3269, 3279, 3360, 3278, 3275, 2782, 2781, 2780, 3925, 801: 5762, 845: 5892}, // 3335 - {271: 5873}, - {475: 5874}, - {809, 809}, - {473: 2588, 495: 2586, 569: 2585, 646: 2581, 709: 5886, 748: 5885, 2582, 2583, 2584, 5887}, - {473: 1239, 495: 1239, 569: 1239, 646: 1239, 651: 3546, 745: 3544, 3545, 784: 5879, 787: 5880, 933: 5882, 966: 5884}, + {814, 814}, + {502: 5755, 662: 5756, 828: 5894}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 2864, 2812, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 2893, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 2898, 2825, 2789, 2807, 2972, 3055, 3044, 2842, 2854, 2965, 2966, 2961, 2919, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 2900, 2885, 2881, 2973, 2997, 2783, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 2904, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 2823, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 2889, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 2890, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 2960, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 2848, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 2774, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 2906, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 2775, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3170, 2902, 3171, 3172, 2801, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3185, 3186, 3237, 3236, 3081, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 2942, 2959, 3082, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3203, 3204, 3205, 2955, 3156, 3215, 3216, 3227, 3211, 3212, 3213, 3246, 2901, 5761, 3286, 478: 3265, 3284, 2778, 482: 3929, 485: 3298, 3302, 488: 3283, 3282, 3321, 495: 3256, 498: 3295, 507: 3301, 3319, 511: 3260, 533: 5760, 567: 3297, 570: 3320, 2776, 573: 3303, 3255, 3257, 3259, 3258, 3287, 3263, 3277, 3268, 3289, 3264, 585: 3296, 3288, 3293, 3299, 3309, 3362, 3310, 3311, 595: 3262, 3340, 598: 3280, 3281, 3335, 3336, 3337, 3338, 3339, 3291, 3317, 3322, 3332, 3333, 3326, 3341, 3342, 3343, 3327, 3345, 3346, 3328, 3344, 3323, 3331, 3329, 3315, 3347, 3348, 3292, 3352, 3304, 3305, 3308, 3351, 3357, 3356, 3358, 3355, 3359, 3354, 3353, 3350, 3300, 3349, 3307, 3306, 3312, 3313, 651: 2779, 664: 3270, 2785, 2786, 2784, 713: 3285, 3361, 3271, 3276, 3261, 3334, 3274, 3272, 3273, 3314, 3325, 3324, 3318, 3316, 3330, 3269, 3279, 3360, 3278, 3275, 2782, 2781, 2780, 3925, 801: 5762, 845: 5895}, + {815, 815}, + {653: 5905}, // 3340 - {473: 1239, 495: 1239, 569: 1239, 646: 1239, 651: 3546, 745: 3544, 3545, 784: 5879, 787: 5880, 933: 5882, 966: 5883}, - {473: 1239, 495: 1239, 569: 1239, 646: 1239, 651: 3546, 745: 3544, 3545, 784: 5879, 787: 5880, 933: 5882, 966: 5881}, - {2: 1242, 1242, 1242, 1242, 1242, 1242, 1242, 10: 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 50: 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 473: 1242, 475: 1242, 1242, 1242, 479: 1242, 482: 1242, 1242, 485: 1242, 1242, 1242, 492: 1242, 495: 1242, 504: 1242, 1242, 508: 1242, 515: 1242, 520: 1242, 530: 1242, 564: 1242, 567: 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 582: 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 592: 1242, 1242, 595: 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 1242, 646: 1242, 648: 1242, 651: 1242, 745: 1242, 1242, 753: 1242, 1242, 1242, 762: 1242, 769: 1242, 1242, 1242}, - {473: 1238, 495: 1238, 569: 1238, 646: 1238}, - {473: 811, 495: 811, 569: 811, 646: 811}, + {653: 5898}, + {275: 5899}, + {502: 5900}, + {478: 5901}, + {497: 5902}, // 3345 - {473: 810, 495: 810, 569: 810, 646: 810}, - {473: 812, 495: 812, 569: 812, 646: 812}, - {473: 813, 495: 813, 569: 813, 646: 813}, - {825, 825, 49: 825, 472: 825, 474: 825, 480: 815, 825, 490: 815, 815}, - {824, 824, 49: 824, 472: 824, 474: 824, 480: 814, 824, 490: 814, 814, 493: 2728, 501: 2729, 2725, 767: 5888, 5889}, + {274: 5903}, + {478: 5904}, + {822, 822}, + {275: 5906}, + {502: 5907}, // 3350 - {480: 816, 490: 816, 816}, - {823, 823, 49: 823, 472: 823, 474: 823, 481: 823, 493: 2728, 501: 2729, 768: 5890}, - {822, 822, 49: 822, 472: 822, 474: 822, 481: 822}, - {821, 821, 49: 821, 472: 821, 474: 821, 481: 821}, - {49: 3974, 480: 814, 490: 814, 814, 493: 2728, 501: 2729, 2725, 767: 3891, 3892}, + {478: 5908}, + {497: 5909}, + {274: 5910}, + {478: 5911}, + {823, 823}, // 3355 - {9: 5906, 473: 997, 495: 997, 569: 997, 646: 997, 654: 997, 739: 997}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 661: 5895, 2762, 2763, 2761, 930: 5894, 1164: 5905}, - {9: 994, 473: 994, 495: 994, 569: 994, 646: 994, 654: 994, 739: 994}, - {473: 5896, 478: 2330, 1226: 5897}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 661: 5901, 2762, 2763, 2761, 877: 5900}, + {476: 2608, 498: 2606, 572: 2605, 649: 2601, 713: 5923, 752: 5922, 2602, 2603, 2604, 5924}, + {476: 1253, 498: 1253, 572: 1253, 649: 1253, 654: 3572, 749: 3570, 3571, 789: 5916, 792: 5917, 938: 5919, 971: 5921}, + {476: 1253, 498: 1253, 572: 1253, 649: 1253, 654: 3572, 749: 3570, 3571, 789: 5916, 792: 5917, 938: 5919, 971: 5920}, + {476: 1253, 498: 1253, 572: 1253, 649: 1253, 654: 3572, 749: 3570, 3571, 789: 5916, 792: 5917, 938: 5919, 971: 5918}, + {2: 1256, 1256, 1256, 1256, 1256, 1256, 1256, 10: 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 51: 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 476: 1256, 478: 1256, 1256, 1256, 482: 1256, 485: 1256, 1256, 488: 1256, 1256, 1256, 495: 1256, 498: 1256, 507: 1256, 1256, 511: 1256, 518: 1256, 523: 1256, 533: 1256, 567: 1256, 570: 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 585: 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 595: 1256, 1256, 598: 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 1256, 649: 1256, 651: 1256, 654: 1256, 749: 1256, 1256, 757: 1256, 1256, 1256, 766: 1256, 774: 1256, 1256, 1256}, // 3360 - {478: 5898}, - {473: 2588, 709: 5899}, - {9: 993, 473: 993, 495: 993, 569: 993, 646: 993, 654: 993, 739: 993}, - {9: 5903, 49: 5902}, - {2328, 2328, 9: 2328, 49: 2328, 474: 2328}, + {476: 1252, 498: 1252, 572: 1252, 649: 1252}, + {476: 825, 498: 825, 572: 825, 649: 825}, + {476: 824, 498: 824, 572: 824, 649: 824}, + {476: 826, 498: 826, 572: 826, 649: 826}, + {476: 827, 498: 827, 572: 827, 649: 827}, // 3365 - {478: 2329}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 661: 5904, 2762, 2763, 2761}, - {2327, 2327, 9: 2327, 49: 2327, 474: 2327}, - {9: 5906, 473: 996, 495: 996, 569: 996, 646: 996, 654: 996, 739: 996}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 661: 5895, 2762, 2763, 2761, 930: 5907}, + {839, 839, 50: 839, 475: 839, 477: 839, 483: 829, 839, 493: 829, 829}, + {838, 838, 50: 838, 475: 838, 477: 838, 483: 828, 838, 493: 828, 828, 496: 2751, 504: 2752, 2748, 772: 5925, 5926}, + {483: 830, 493: 830, 830}, + {837, 837, 50: 837, 475: 837, 477: 837, 484: 837, 496: 2751, 504: 2752, 773: 5927}, + {836, 836, 50: 836, 475: 836, 477: 836, 484: 836}, // 3370 - {9: 995, 473: 995, 495: 995, 569: 995, 646: 995, 654: 995, 739: 995}, - {1297, 1297, 49: 1297, 472: 1297, 474: 1297, 480: 1297, 1297, 490: 1297, 1297, 493: 1297, 1297, 496: 1297, 1297, 501: 1297, 2725, 767: 2726, 812: 5909}, - {869, 869, 49: 869, 472: 869, 474: 869, 480: 869, 869, 490: 869, 869, 493: 2728, 869, 496: 869, 869, 501: 2729, 768: 2730, 830: 5910}, - {840, 840, 49: 840, 472: 840, 474: 840, 480: 840, 840, 490: 840, 840, 494: 3912, 496: 840, 3913, 888: 5911}, - {846, 846, 49: 846, 472: 846, 474: 846, 480: 846, 846, 490: 846, 846, 496: 3938, 889: 5912}, + {835, 835, 50: 835, 475: 835, 477: 835, 484: 835}, + {50: 4000, 483: 828, 493: 828, 828, 496: 2751, 504: 2752, 2748, 772: 3917, 3918}, + {9: 5943, 476: 1011, 498: 1011, 572: 1011, 649: 1011, 657: 1011, 743: 1011}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 664: 5932, 2785, 2786, 2784, 935: 5931, 1173: 5942}, + {9: 1008, 476: 1008, 498: 1008, 572: 1008, 649: 1008, 657: 1008, 743: 1008}, // 3375 - {1001, 1001, 49: 1001, 472: 1001, 474: 1001, 480: 1001, 1001, 490: 1001, 1001}, - {869, 869, 49: 869, 472: 869, 474: 869, 480: 869, 869, 490: 869, 869, 493: 2728, 869, 496: 869, 869, 501: 2729, 768: 2730, 830: 5914}, - {840, 840, 49: 840, 472: 840, 474: 840, 480: 840, 840, 490: 840, 840, 494: 3912, 496: 840, 3913, 888: 5915}, - {846, 846, 49: 846, 472: 846, 474: 846, 480: 846, 846, 490: 846, 846, 496: 3938, 889: 5916}, - {1002, 1002, 49: 1002, 472: 1002, 474: 1002, 480: 1002, 1002, 490: 1002, 1002}, + {476: 5933, 481: 2347, 1234: 5934}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 664: 5938, 2785, 2786, 2784, 881: 5937}, + {481: 5935}, + {476: 2608, 713: 5936}, + {9: 1007, 476: 1007, 498: 1007, 572: 1007, 649: 1007, 657: 1007, 743: 1007}, // 3380 - {660: 5924}, - {1297, 1297, 49: 1297, 472: 1297, 474: 1297, 480: 1297, 1297, 490: 1297, 1297, 493: 1297, 1297, 496: 1297, 1297, 501: 1297, 2725, 767: 2726, 812: 5920}, - {847, 847, 49: 847, 472: 847, 474: 847, 480: 847, 847, 490: 847, 847, 493: 847, 847, 496: 847, 847, 501: 847, 847, 514: 847, 516: 847}, - {869, 869, 49: 869, 472: 869, 474: 869, 480: 869, 869, 490: 869, 869, 493: 2728, 869, 496: 869, 869, 501: 2729, 768: 2730, 830: 5921}, - {840, 840, 49: 840, 472: 840, 474: 840, 480: 840, 840, 490: 840, 840, 494: 3912, 496: 840, 3913, 888: 5922}, + {9: 5940, 50: 5939}, + {2345, 2345, 9: 2345, 50: 2345, 477: 2345}, + {481: 2346}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 664: 5941, 2785, 2786, 2784}, + {2344, 2344, 9: 2344, 50: 2344, 477: 2344}, // 3385 - {846, 846, 49: 846, 472: 846, 474: 846, 480: 846, 846, 490: 846, 846, 496: 3938, 889: 5923}, - {1003, 1003, 49: 1003, 472: 1003, 474: 1003, 480: 1003, 1003, 490: 1003, 1003}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 2840, 2788, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 2869, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 2874, 2801, 2766, 2783, 2948, 3031, 3020, 2818, 2830, 2941, 2942, 2937, 2895, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 2876, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 2760, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 2880, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 2799, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 2866, 2865, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 2936, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 2824, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 2751, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 2882, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 2752, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3144, 2878, 3145, 3146, 2777, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3159, 3160, 3211, 3210, 3057, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 2918, 2935, 3058, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3177, 3178, 3179, 2931, 3130, 3189, 3190, 3201, 3185, 3186, 3187, 3220, 2877, 473: 3260, 475: 3239, 3258, 2755, 479: 3268, 482: 3272, 3276, 485: 3257, 3256, 3295, 492: 3230, 495: 3269, 504: 3275, 3293, 508: 3234, 530: 3264, 564: 3271, 567: 3294, 2753, 570: 3277, 3229, 3231, 3233, 3232, 3261, 3237, 3251, 3242, 3263, 3238, 582: 3270, 3262, 3267, 3273, 3283, 3336, 3284, 3285, 592: 3236, 3314, 595: 3254, 3255, 3309, 3310, 3311, 3312, 3313, 3265, 3291, 3296, 3306, 3307, 3300, 3315, 3316, 3317, 3301, 3319, 3320, 3302, 3318, 3297, 3305, 3303, 3289, 3321, 3322, 3266, 3326, 3278, 3279, 3282, 3325, 3331, 3330, 3332, 3329, 3333, 3328, 3327, 3324, 3274, 3323, 3281, 3280, 3286, 3287, 648: 2756, 661: 3244, 2762, 2763, 2761, 709: 3259, 3335, 3245, 3250, 3235, 3308, 3248, 3246, 3247, 3288, 3299, 3298, 3292, 3290, 3304, 3243, 3253, 3334, 3252, 3249, 2759, 2758, 2757, 2754, 871: 3241, 900: 5925}, - {1866, 1866, 9: 3412, 49: 1866, 472: 1866, 474: 1866, 480: 1866, 1866, 490: 1866, 1866, 493: 1866, 1866, 496: 1866, 1866, 501: 1866, 1866, 514: 1866, 516: 1866}, - {247, 247, 49: 247, 472: 247, 474: 247, 480: 247, 247, 490: 247, 247, 493: 247, 247, 496: 247, 247, 2722, 501: 247, 247, 513: 247, 790: 2723, 5951}, + {9: 5943, 476: 1010, 498: 1010, 572: 1010, 649: 1010, 657: 1010, 743: 1010}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 664: 5932, 2785, 2786, 2784, 935: 5944}, + {9: 1009, 476: 1009, 498: 1009, 572: 1009, 649: 1009, 657: 1009, 743: 1009}, + {1311, 1311, 50: 1311, 475: 1311, 477: 1311, 483: 1311, 1311, 493: 1311, 1311, 496: 1311, 1311, 499: 1311, 1311, 504: 1311, 2748, 772: 2749, 817: 5946}, + {883, 883, 50: 883, 475: 883, 477: 883, 483: 883, 883, 493: 883, 883, 496: 2751, 883, 499: 883, 883, 504: 2752, 773: 2753, 834: 5947}, // 3390 - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 473: 5415, 579: 5410, 661: 3921, 2762, 2763, 2761, 709: 5414, 737: 5413, 798: 5412, 802: 5411, 5417, 852: 5407, 890: 5936, 1206: 5935, 1322: 5934}, - {848, 848, 49: 848, 472: 848, 474: 848, 480: 848, 848, 490: 848, 848, 493: 848, 848, 496: 848, 848, 501: 848, 848, 513: 5917, 939: 5919, 965: 5929}, - {1297, 1297, 49: 1297, 472: 1297, 474: 1297, 480: 1297, 1297, 490: 1297, 1297, 493: 1297, 1297, 496: 1297, 1297, 501: 1297, 2725, 767: 2726, 812: 5930}, - {869, 869, 49: 869, 472: 869, 474: 869, 480: 869, 869, 490: 869, 869, 493: 2728, 869, 496: 869, 869, 501: 2729, 768: 2730, 830: 5931}, - {840, 840, 49: 840, 472: 840, 474: 840, 480: 840, 840, 490: 840, 840, 494: 3912, 496: 840, 3913, 888: 5932}, + {854, 854, 50: 854, 475: 854, 477: 854, 483: 854, 854, 493: 854, 854, 497: 3938, 499: 854, 3939, 892: 5948}, + {860, 860, 50: 860, 475: 860, 477: 860, 483: 860, 860, 493: 860, 860, 499: 3964, 893: 5949}, + {1015, 1015, 50: 1015, 475: 1015, 477: 1015, 483: 1015, 1015, 493: 1015, 1015}, + {883, 883, 50: 883, 475: 883, 477: 883, 483: 883, 883, 493: 883, 883, 496: 2751, 883, 499: 883, 883, 504: 2752, 773: 2753, 834: 5951}, + {854, 854, 50: 854, 475: 854, 477: 854, 483: 854, 854, 493: 854, 854, 497: 3938, 499: 854, 3939, 892: 5952}, // 3395 - {846, 846, 49: 846, 472: 846, 474: 846, 480: 846, 846, 490: 846, 846, 496: 3938, 889: 5933}, - {1004, 1004, 49: 1004, 472: 1004, 474: 1004, 480: 1004, 1004, 490: 1004, 1004}, - {247, 247, 49: 247, 472: 247, 474: 247, 480: 247, 247, 490: 247, 247, 493: 247, 247, 496: 247, 247, 2722, 501: 247, 247, 513: 247, 247, 516: 247, 790: 2723, 5937}, - {992, 992, 49: 992, 472: 992, 474: 992, 480: 992, 992, 490: 992, 992, 493: 992, 992, 496: 992, 992, 992, 501: 992, 992, 513: 992}, - {932, 932, 9: 5461, 49: 932, 472: 932, 474: 932, 480: 932, 932, 490: 932, 932, 493: 932, 932, 496: 932, 932, 932, 501: 932, 932, 513: 932, 932, 516: 932}, + {860, 860, 50: 860, 475: 860, 477: 860, 483: 860, 860, 493: 860, 860, 499: 3964, 893: 5953}, + {1016, 1016, 50: 1016, 475: 1016, 477: 1016, 483: 1016, 1016, 493: 1016, 1016}, + {663: 5961}, + {1311, 1311, 50: 1311, 475: 1311, 477: 1311, 483: 1311, 1311, 493: 1311, 1311, 496: 1311, 1311, 499: 1311, 1311, 504: 1311, 2748, 772: 2749, 817: 5957}, + {861, 861, 50: 861, 475: 861, 477: 861, 483: 861, 861, 493: 861, 861, 496: 861, 861, 499: 861, 861, 504: 861, 861, 517: 861, 519: 861}, // 3400 - {848, 848, 49: 848, 472: 848, 474: 848, 480: 848, 848, 490: 848, 848, 493: 848, 848, 496: 848, 848, 501: 848, 848, 513: 5917, 848, 516: 848, 939: 5919, 965: 5938}, - {1865, 1865, 49: 1865, 472: 1865, 474: 1865, 480: 1865, 1865, 490: 1865, 1865, 493: 1865, 1865, 496: 1865, 1865, 501: 1865, 1865, 514: 5939, 516: 1865, 1059: 5940}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 2840, 2788, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 2869, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 2874, 2801, 2766, 2783, 2948, 3031, 3020, 2818, 2830, 2941, 2942, 2937, 2895, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 2876, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 2760, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 2880, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 2799, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 2866, 2865, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 2936, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 2824, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 2751, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 2882, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 2752, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3144, 2878, 3145, 3146, 2777, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3159, 3160, 3211, 3210, 3057, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 2918, 2935, 3058, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3177, 3178, 3179, 2931, 3130, 3189, 3190, 3201, 3185, 3186, 3187, 3220, 2877, 473: 3260, 475: 3239, 3258, 2755, 479: 3268, 482: 3272, 3276, 485: 3257, 3256, 3295, 492: 3230, 495: 3269, 504: 3275, 3293, 508: 3234, 530: 3264, 564: 3271, 567: 3294, 2753, 570: 3277, 3229, 3231, 3233, 3232, 3261, 3237, 3251, 3242, 3263, 3238, 582: 3270, 3262, 3267, 3273, 3283, 3336, 3284, 3285, 592: 3236, 3314, 595: 3254, 3255, 3309, 3310, 3311, 3312, 3313, 3265, 3291, 3296, 3306, 3307, 3300, 3315, 3316, 3317, 3301, 3319, 3320, 3302, 3318, 3297, 3305, 3303, 3289, 3321, 3322, 3266, 3326, 3278, 3279, 3282, 3325, 3331, 3330, 3332, 3329, 3333, 3328, 3327, 3324, 3274, 3323, 3281, 3280, 3286, 3287, 648: 2756, 661: 3244, 2762, 2763, 2761, 709: 3259, 3335, 3245, 3250, 3235, 3308, 3248, 3246, 3247, 3288, 3299, 3298, 3292, 3290, 3304, 3243, 3253, 3334, 3252, 3249, 2759, 2758, 2757, 5950}, - {991, 991, 49: 991, 472: 991, 474: 991, 480: 991, 991, 490: 991, 991, 493: 991, 991, 496: 991, 991, 501: 991, 991, 516: 5942, 1345: 5941}, - {1017, 1017, 49: 1017, 472: 1017, 474: 1017, 480: 1017, 1017, 490: 1017, 1017, 493: 1017, 1017, 496: 1017, 1017, 501: 1017, 1017}, + {883, 883, 50: 883, 475: 883, 477: 883, 483: 883, 883, 493: 883, 883, 496: 2751, 883, 499: 883, 883, 504: 2752, 773: 2753, 834: 5958}, + {854, 854, 50: 854, 475: 854, 477: 854, 483: 854, 854, 493: 854, 854, 497: 3938, 499: 854, 3939, 892: 5959}, + {860, 860, 50: 860, 475: 860, 477: 860, 483: 860, 860, 493: 860, 860, 499: 3964, 893: 5960}, + {1017, 1017, 50: 1017, 475: 1017, 477: 1017, 483: 1017, 1017, 493: 1017, 1017}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 2864, 2812, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 2893, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 2898, 2825, 2789, 2807, 2972, 3055, 3044, 2842, 2854, 2965, 2966, 2961, 2919, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 2900, 2885, 2881, 2973, 2997, 2783, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 2904, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 2823, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 2889, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 2890, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 2960, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 2848, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 2774, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 2906, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 2775, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3170, 2902, 3171, 3172, 2801, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3185, 3186, 3237, 3236, 3081, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 2942, 2959, 3082, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3203, 3204, 3205, 2955, 3156, 3215, 3216, 3227, 3211, 3212, 3213, 3246, 2901, 476: 3286, 478: 3265, 3284, 2778, 482: 3294, 485: 3298, 3302, 488: 3283, 3282, 3321, 495: 3256, 498: 3295, 507: 3301, 3319, 511: 3260, 533: 3290, 567: 3297, 570: 3320, 2776, 573: 3303, 3255, 3257, 3259, 3258, 3287, 3263, 3277, 3268, 3289, 3264, 585: 3296, 3288, 3293, 3299, 3309, 3362, 3310, 3311, 595: 3262, 3340, 598: 3280, 3281, 3335, 3336, 3337, 3338, 3339, 3291, 3317, 3322, 3332, 3333, 3326, 3341, 3342, 3343, 3327, 3345, 3346, 3328, 3344, 3323, 3331, 3329, 3315, 3347, 3348, 3292, 3352, 3304, 3305, 3308, 3351, 3357, 3356, 3358, 3355, 3359, 3354, 3353, 3350, 3300, 3349, 3307, 3306, 3312, 3313, 651: 2779, 664: 3270, 2785, 2786, 2784, 713: 3285, 3361, 3271, 3276, 3261, 3334, 3274, 3272, 3273, 3314, 3325, 3324, 3318, 3316, 3330, 3269, 3279, 3360, 3278, 3275, 2782, 2781, 2780, 2777, 875: 3267, 905: 5962}, // 3405 - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 661: 3400, 2762, 2763, 2761, 923: 5945, 1160: 5944, 1346: 5943}, - {990, 990, 9: 5948, 49: 990, 472: 990, 474: 990, 480: 990, 990, 490: 990, 990, 493: 990, 990, 496: 990, 990, 501: 990, 990}, - {989, 989, 9: 989, 49: 989, 472: 989, 474: 989, 480: 989, 989, 490: 989, 989, 493: 989, 989, 496: 989, 989, 501: 989, 989}, - {478: 5946}, - {473: 3401, 1162: 5947}, + {1883, 1883, 9: 3438, 50: 1883, 475: 1883, 477: 1883, 483: 1883, 1883, 493: 1883, 1883, 496: 1883, 1883, 499: 1883, 1883, 504: 1883, 1883, 517: 1883, 519: 1883}, + {257, 257, 50: 257, 475: 257, 477: 257, 483: 257, 257, 493: 257, 257, 496: 257, 257, 499: 257, 257, 2745, 504: 257, 257, 516: 257, 795: 2746, 5988}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 476: 5453, 582: 5448, 664: 3947, 2785, 2786, 2784, 713: 5452, 740: 5451, 802: 5450, 806: 5449, 5455, 856: 5445, 894: 5973, 1215: 5972, 1331: 5971}, + {862, 862, 50: 862, 475: 862, 477: 862, 483: 862, 862, 493: 862, 862, 496: 862, 862, 499: 862, 862, 504: 862, 862, 516: 5954, 944: 5956, 970: 5966}, + {1311, 1311, 50: 1311, 475: 1311, 477: 1311, 483: 1311, 1311, 493: 1311, 1311, 496: 1311, 1311, 499: 1311, 1311, 504: 1311, 2748, 772: 2749, 817: 5967}, // 3410 - {987, 987, 9: 987, 49: 987, 472: 987, 474: 987, 480: 987, 987, 490: 987, 987, 493: 987, 987, 496: 987, 987, 501: 987, 987}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 661: 3400, 2762, 2763, 2761, 923: 5945, 1160: 5949}, - {988, 988, 9: 988, 49: 988, 472: 988, 474: 988, 480: 988, 988, 490: 988, 988, 493: 988, 988, 496: 988, 988, 501: 988, 988}, - {1864, 1864, 49: 1864, 472: 1864, 474: 1864, 480: 1864, 1864, 490: 1864, 1864, 493: 1864, 1864, 496: 1864, 1864, 1864, 500: 1864, 1864, 1864, 507: 3345, 509: 3343, 3344, 3342, 3340, 1864, 516: 1864, 734: 3341, 3339}, - {1018, 1018, 49: 1018, 472: 1018, 474: 1018, 480: 1018, 1018, 490: 1018, 1018, 493: 1018, 1018, 496: 1018, 1018, 501: 1018, 1018, 513: 1018}, + {883, 883, 50: 883, 475: 883, 477: 883, 483: 883, 883, 493: 883, 883, 496: 2751, 883, 499: 883, 883, 504: 2752, 773: 2753, 834: 5968}, + {854, 854, 50: 854, 475: 854, 477: 854, 483: 854, 854, 493: 854, 854, 497: 3938, 499: 854, 3939, 892: 5969}, + {860, 860, 50: 860, 475: 860, 477: 860, 483: 860, 860, 493: 860, 860, 499: 3964, 893: 5970}, + {1018, 1018, 50: 1018, 475: 1018, 477: 1018, 483: 1018, 1018, 493: 1018, 1018}, + {257, 257, 50: 257, 475: 257, 477: 257, 483: 257, 257, 493: 257, 257, 496: 257, 257, 499: 257, 257, 2745, 504: 257, 257, 516: 257, 257, 519: 257, 795: 2746, 5974}, // 3415 - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 2840, 2788, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 2869, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 2874, 2801, 2766, 2783, 2948, 3031, 3020, 2818, 2830, 2941, 2942, 2937, 2895, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 2876, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 2760, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 2880, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 2799, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 2866, 2865, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 2936, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 2824, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 2751, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 2882, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 2752, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3144, 2878, 3145, 3146, 2777, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3159, 3160, 3211, 3210, 3057, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 2918, 2935, 3058, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3177, 3178, 3179, 2931, 3130, 3189, 3190, 3201, 3185, 3186, 3187, 3220, 2877, 473: 3260, 475: 3239, 3258, 2755, 479: 3268, 482: 3272, 3276, 485: 3257, 3256, 3295, 492: 3230, 495: 3269, 504: 3275, 3293, 508: 3234, 520: 5968, 530: 3264, 564: 3271, 567: 3294, 2753, 570: 3277, 3229, 3231, 3233, 3232, 3261, 3237, 3251, 3242, 3263, 3238, 582: 3270, 3262, 3267, 3273, 3283, 3336, 3284, 3285, 592: 3236, 3314, 595: 3254, 3255, 3309, 3310, 3311, 3312, 3313, 3265, 3291, 3296, 3306, 3307, 3300, 3315, 3316, 3317, 3301, 3319, 3320, 3302, 3318, 3297, 3305, 3303, 3289, 3321, 3322, 3266, 3326, 3278, 3279, 3282, 3325, 3331, 3330, 3332, 3329, 3333, 3328, 3327, 3324, 3274, 3323, 3281, 3280, 3286, 3287, 648: 2756, 661: 5969, 2762, 2763, 2761, 709: 3259, 3335, 3245, 3250, 3235, 3308, 3248, 3246, 3247, 3288, 3299, 3298, 3292, 3290, 3304, 3243, 3253, 3334, 3252, 3249, 2759, 2758, 2757, 5967, 1046: 5970, 1214: 5971, 1290: 5972}, - {2: 867, 867, 867, 867, 867, 867, 867, 10: 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 50: 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 473: 867, 475: 867, 867, 867, 479: 867, 482: 867, 867, 485: 867, 867, 867, 492: 867, 495: 867, 504: 867, 867, 508: 867, 515: 867, 520: 867, 530: 867, 564: 867, 567: 867, 867, 570: 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 582: 867, 867, 867, 867, 867, 867, 867, 867, 592: 867, 867, 595: 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 867, 648: 867, 651: 867, 745: 867, 867, 753: 867, 867, 867, 762: 867, 769: 867, 867, 867}, - {2: 866, 866, 866, 866, 866, 866, 866, 10: 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 50: 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 473: 866, 475: 866, 866, 866, 479: 866, 482: 866, 866, 485: 866, 866, 866, 492: 866, 495: 866, 504: 866, 866, 508: 866, 515: 866, 520: 866, 530: 866, 564: 866, 567: 866, 866, 570: 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 582: 866, 866, 866, 866, 866, 866, 866, 866, 592: 866, 866, 595: 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 866, 648: 866, 651: 866, 745: 866, 866, 753: 866, 866, 866, 762: 866, 769: 866, 866, 866}, - {2: 865, 865, 865, 865, 865, 865, 865, 10: 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 50: 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 473: 865, 475: 865, 865, 865, 479: 865, 482: 865, 865, 485: 865, 865, 865, 492: 865, 495: 865, 504: 865, 865, 508: 865, 515: 865, 520: 865, 530: 865, 564: 865, 567: 865, 865, 570: 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 582: 865, 865, 865, 865, 865, 865, 865, 865, 592: 865, 865, 595: 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 648: 865, 651: 865, 745: 865, 865, 753: 865, 865, 865, 762: 865, 769: 865, 865, 865}, - {2: 864, 864, 864, 864, 864, 864, 864, 10: 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 50: 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 473: 864, 475: 864, 864, 864, 479: 864, 482: 864, 864, 485: 864, 864, 864, 492: 864, 495: 864, 504: 864, 864, 508: 864, 515: 864, 520: 864, 530: 864, 564: 864, 567: 864, 864, 570: 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 582: 864, 864, 864, 864, 864, 864, 864, 864, 592: 864, 864, 595: 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 648: 864, 651: 864, 745: 864, 864, 753: 864, 864, 864, 762: 864, 769: 864, 864, 864}, + {1006, 1006, 50: 1006, 475: 1006, 477: 1006, 483: 1006, 1006, 493: 1006, 1006, 496: 1006, 1006, 499: 1006, 1006, 1006, 504: 1006, 1006, 516: 1006}, + {946, 946, 9: 5499, 50: 946, 475: 946, 477: 946, 483: 946, 946, 493: 946, 946, 496: 946, 946, 499: 946, 946, 946, 504: 946, 946, 516: 946, 946, 519: 946}, + {862, 862, 50: 862, 475: 862, 477: 862, 483: 862, 862, 493: 862, 862, 496: 862, 862, 499: 862, 862, 504: 862, 862, 516: 5954, 862, 519: 862, 944: 5956, 970: 5975}, + {1882, 1882, 50: 1882, 475: 1882, 477: 1882, 483: 1882, 1882, 493: 1882, 1882, 496: 1882, 1882, 499: 1882, 1882, 504: 1882, 1882, 517: 5976, 519: 1882, 1066: 5977}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 2864, 2812, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 2893, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 2898, 2825, 2789, 2807, 2972, 3055, 3044, 2842, 2854, 2965, 2966, 2961, 2919, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 2900, 2885, 2881, 2973, 2997, 2783, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 2904, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 2823, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 2889, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 2890, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 2960, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 2848, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 2774, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 2906, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 2775, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3170, 2902, 3171, 3172, 2801, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3185, 3186, 3237, 3236, 3081, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 2942, 2959, 3082, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3203, 3204, 3205, 2955, 3156, 3215, 3216, 3227, 3211, 3212, 3213, 3246, 2901, 476: 3286, 478: 3265, 3284, 2778, 482: 3294, 485: 3298, 3302, 488: 3283, 3282, 3321, 495: 3256, 498: 3295, 507: 3301, 3319, 511: 3260, 533: 3290, 567: 3297, 570: 3320, 2776, 573: 3303, 3255, 3257, 3259, 3258, 3287, 3263, 3277, 3268, 3289, 3264, 585: 3296, 3288, 3293, 3299, 3309, 3362, 3310, 3311, 595: 3262, 3340, 598: 3280, 3281, 3335, 3336, 3337, 3338, 3339, 3291, 3317, 3322, 3332, 3333, 3326, 3341, 3342, 3343, 3327, 3345, 3346, 3328, 3344, 3323, 3331, 3329, 3315, 3347, 3348, 3292, 3352, 3304, 3305, 3308, 3351, 3357, 3356, 3358, 3355, 3359, 3354, 3353, 3350, 3300, 3349, 3307, 3306, 3312, 3313, 651: 2779, 664: 3270, 2785, 2786, 2784, 713: 3285, 3361, 3271, 3276, 3261, 3334, 3274, 3272, 3273, 3314, 3325, 3324, 3318, 3316, 3330, 3269, 3279, 3360, 3278, 3275, 2782, 2781, 2780, 5987}, // 3420 - {2: 863, 863, 863, 863, 863, 863, 863, 10: 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 50: 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 473: 863, 475: 863, 863, 863, 479: 863, 482: 863, 863, 485: 863, 863, 863, 492: 863, 495: 863, 504: 863, 863, 508: 863, 515: 863, 520: 863, 530: 863, 564: 863, 567: 863, 863, 570: 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 582: 863, 863, 863, 863, 863, 863, 863, 863, 592: 863, 863, 595: 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 863, 648: 863, 651: 863, 745: 863, 863, 753: 863, 863, 863, 762: 863, 769: 863, 863, 863}, - {2: 862, 862, 862, 862, 862, 862, 862, 10: 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 50: 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 473: 862, 475: 862, 862, 862, 479: 862, 482: 862, 862, 485: 862, 862, 862, 492: 862, 495: 862, 504: 862, 862, 508: 862, 515: 862, 520: 862, 530: 862, 564: 862, 567: 862, 862, 570: 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 582: 862, 862, 862, 862, 862, 862, 862, 862, 592: 862, 862, 595: 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 862, 648: 862, 651: 862, 745: 862, 862, 753: 862, 862, 862, 762: 862, 769: 862, 862, 862}, - {2: 861, 861, 861, 861, 861, 861, 861, 10: 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 50: 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 473: 861, 475: 861, 861, 861, 479: 861, 482: 861, 861, 485: 861, 861, 861, 492: 861, 495: 861, 504: 861, 861, 508: 861, 515: 861, 520: 861, 530: 861, 564: 861, 567: 861, 861, 570: 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 582: 861, 861, 861, 861, 861, 861, 861, 861, 592: 861, 861, 595: 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 861, 648: 861, 651: 861, 745: 861, 861, 753: 861, 861, 861, 762: 861, 769: 861, 861, 861}, - {2: 860, 860, 860, 860, 860, 860, 860, 10: 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 50: 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 473: 860, 475: 860, 860, 860, 479: 860, 482: 860, 860, 485: 860, 860, 860, 492: 860, 495: 860, 504: 860, 860, 508: 860, 515: 860, 520: 860, 530: 860, 564: 860, 567: 860, 860, 570: 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 582: 860, 860, 860, 860, 860, 860, 860, 860, 592: 860, 860, 595: 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 860, 648: 860, 651: 860, 745: 860, 860, 753: 860, 860, 860, 762: 860, 769: 860, 860, 860}, - {2: 859, 859, 859, 859, 859, 859, 859, 10: 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 50: 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 473: 859, 475: 859, 859, 859, 479: 859, 482: 859, 859, 485: 859, 859, 859, 492: 859, 495: 859, 504: 859, 859, 508: 859, 515: 859, 520: 859, 530: 859, 564: 859, 567: 859, 859, 570: 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 582: 859, 859, 859, 859, 859, 859, 859, 859, 592: 859, 859, 595: 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 859, 648: 859, 651: 859, 745: 859, 859, 753: 859, 859, 859, 762: 859, 769: 859, 859, 859}, + {1005, 1005, 50: 1005, 475: 1005, 477: 1005, 483: 1005, 1005, 493: 1005, 1005, 496: 1005, 1005, 499: 1005, 1005, 504: 1005, 1005, 519: 5979, 1354: 5978}, + {1031, 1031, 50: 1031, 475: 1031, 477: 1031, 483: 1031, 1031, 493: 1031, 1031, 496: 1031, 1031, 499: 1031, 1031, 504: 1031, 1031}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 664: 3426, 2785, 2786, 2784, 928: 5982, 1169: 5981, 1355: 5980}, + {1004, 1004, 9: 5985, 50: 1004, 475: 1004, 477: 1004, 483: 1004, 1004, 493: 1004, 1004, 496: 1004, 1004, 499: 1004, 1004, 504: 1004, 1004}, + {1003, 1003, 9: 1003, 50: 1003, 475: 1003, 477: 1003, 483: 1003, 1003, 493: 1003, 1003, 496: 1003, 1003, 499: 1003, 1003, 504: 1003, 1003}, // 3425 - {2: 857, 857, 857, 857, 857, 857, 857, 10: 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 50: 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 5958, 5964, 5965, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 473: 857, 475: 857, 857, 857, 479: 857, 482: 857, 857, 485: 857, 857, 857, 492: 857, 495: 857, 504: 857, 857, 508: 857, 515: 5961, 520: 857, 530: 857, 564: 857, 567: 857, 857, 570: 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 582: 857, 857, 857, 857, 857, 857, 857, 857, 592: 857, 857, 595: 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 857, 648: 857, 651: 3546, 745: 3544, 3545, 753: 5403, 5402, 5401, 762: 5398, 769: 5957, 5960, 5956, 784: 5879, 787: 5954, 837: 5955, 867: 5953, 1123: 5966, 5959}, - {2: 855, 855, 855, 855, 855, 855, 855, 10: 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 50: 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 473: 855, 475: 855, 855, 855, 479: 855, 482: 855, 855, 485: 855, 855, 855, 492: 855, 495: 855, 504: 855, 855, 508: 855, 515: 855, 520: 855, 530: 855, 564: 855, 567: 855, 855, 570: 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 582: 855, 855, 855, 855, 855, 855, 855, 855, 592: 855, 855, 595: 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 855, 648: 855, 651: 855, 745: 855, 855, 753: 855, 855, 855, 762: 855, 769: 855, 855, 855}, - {2: 851, 851, 851, 851, 851, 851, 851, 10: 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 50: 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 473: 851, 475: 851, 851, 851, 479: 851, 482: 851, 851, 485: 851, 851, 851, 492: 851, 495: 851, 504: 851, 851, 508: 851, 515: 851, 520: 851, 530: 851, 564: 851, 567: 851, 851, 570: 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 582: 851, 851, 851, 851, 851, 851, 851, 851, 592: 851, 851, 595: 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 851, 648: 851, 651: 851, 745: 851, 851, 753: 851, 851, 851, 762: 851, 769: 851, 851, 851}, - {2: 850, 850, 850, 850, 850, 850, 850, 10: 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 50: 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 473: 850, 475: 850, 850, 850, 479: 850, 482: 850, 850, 485: 850, 850, 850, 492: 850, 495: 850, 504: 850, 850, 508: 850, 515: 850, 520: 850, 530: 850, 564: 850, 567: 850, 850, 570: 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 582: 850, 850, 850, 850, 850, 850, 850, 850, 592: 850, 850, 595: 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 850, 648: 850, 651: 850, 745: 850, 850, 753: 850, 850, 850, 762: 850, 769: 850, 850, 850}, - {2: 856, 856, 856, 856, 856, 856, 856, 10: 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 50: 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 473: 856, 475: 856, 856, 856, 479: 856, 482: 856, 856, 485: 856, 856, 856, 492: 856, 495: 856, 504: 856, 856, 508: 856, 515: 856, 520: 856, 530: 856, 564: 856, 567: 856, 856, 570: 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 582: 856, 856, 856, 856, 856, 856, 856, 856, 592: 856, 856, 595: 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 856, 648: 856, 651: 856, 745: 856, 856, 753: 856, 856, 856, 762: 856, 769: 856, 856, 856}, + {481: 5983}, + {476: 3427, 1171: 5984}, + {1001, 1001, 9: 1001, 50: 1001, 475: 1001, 477: 1001, 483: 1001, 1001, 493: 1001, 1001, 496: 1001, 1001, 499: 1001, 1001, 504: 1001, 1001}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 664: 3426, 2785, 2786, 2784, 928: 5982, 1169: 5986}, + {1002, 1002, 9: 1002, 50: 1002, 475: 1002, 477: 1002, 483: 1002, 1002, 493: 1002, 1002, 496: 1002, 1002, 499: 1002, 1002, 504: 1002, 1002}, // 3430 - {1874, 1874, 3135, 2967, 3002, 2847, 2883, 3004, 2774, 1874, 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 1874, 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 1874, 474: 1874, 5985, 478: 5984, 480: 1874, 1874, 490: 1874, 1874, 493: 1874, 1874, 496: 1874, 1874, 1874, 500: 1874, 1874, 1874, 507: 3345, 509: 3343, 3344, 3342, 3340, 1874, 1874, 661: 5983, 2762, 2763, 2761, 734: 3341, 3339, 1211: 5982, 5981}, - {1878, 1878, 9: 1878, 49: 1878, 472: 1878, 474: 1878, 480: 1878, 1878, 490: 1878, 1878, 493: 1878, 1878, 496: 1878, 1878, 1878, 500: 1878, 1878, 1878, 513: 1878, 1878}, - {1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 474: 1279, 1279, 1279, 1279, 1279, 480: 1279, 1279, 484: 1279, 1279, 1279, 1279, 490: 1279, 1279, 493: 1279, 1279, 496: 1279, 1279, 1279, 1279, 1279, 1279, 1279, 507: 1279, 509: 1279, 1279, 1279, 1279, 1279, 1279, 518: 1279, 520: 1279, 544: 1279, 547: 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 1279, 565: 1279, 1279, 594: 1279, 652: 5976, 656: 1279, 1279}, - {1868, 1868, 9: 1868, 49: 1868, 472: 1868, 474: 1868, 480: 1868, 1868, 490: 1868, 1868, 493: 1868, 1868, 496: 1868, 1868, 1868, 500: 1868, 1868, 1868, 513: 1868, 1868}, - {849, 849, 9: 5974, 49: 849, 472: 849, 474: 849, 480: 849, 849, 490: 849, 849, 493: 849, 849, 496: 849, 849, 849, 500: 849, 849, 849, 513: 849, 849}, + {1881, 1881, 50: 1881, 475: 1881, 477: 1881, 483: 1881, 1881, 493: 1881, 1881, 496: 1881, 1881, 499: 1881, 1881, 1881, 503: 1881, 1881, 1881, 510: 3371, 512: 3369, 3370, 3368, 3366, 1881, 519: 1881, 738: 3367, 3365}, + {1032, 1032, 50: 1032, 475: 1032, 477: 1032, 483: 1032, 1032, 493: 1032, 1032, 496: 1032, 1032, 499: 1032, 1032, 504: 1032, 1032, 516: 1032}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 2864, 2812, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 2893, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 2898, 2825, 2789, 2807, 2972, 3055, 3044, 2842, 2854, 2965, 2966, 2961, 2919, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 2900, 2885, 2881, 2973, 2997, 2783, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 2904, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 2823, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 2889, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 2890, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 2960, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 2848, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 2774, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 2906, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 2775, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3170, 2902, 3171, 3172, 2801, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3185, 3186, 3237, 3236, 3081, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 2942, 2959, 3082, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3203, 3204, 3205, 2955, 3156, 3215, 3216, 3227, 3211, 3212, 3213, 3246, 2901, 476: 3286, 478: 3265, 3284, 2778, 482: 3294, 485: 3298, 3302, 488: 3283, 3282, 3321, 495: 3256, 498: 3295, 507: 3301, 3319, 511: 3260, 523: 6005, 533: 3290, 567: 3297, 570: 3320, 2776, 573: 3303, 3255, 3257, 3259, 3258, 3287, 3263, 3277, 3268, 3289, 3264, 585: 3296, 3288, 3293, 3299, 3309, 3362, 3310, 3311, 595: 3262, 3340, 598: 3280, 3281, 3335, 3336, 3337, 3338, 3339, 3291, 3317, 3322, 3332, 3333, 3326, 3341, 3342, 3343, 3327, 3345, 3346, 3328, 3344, 3323, 3331, 3329, 3315, 3347, 3348, 3292, 3352, 3304, 3305, 3308, 3351, 3357, 3356, 3358, 3355, 3359, 3354, 3353, 3350, 3300, 3349, 3307, 3306, 3312, 3313, 651: 2779, 664: 6006, 2785, 2786, 2784, 713: 3285, 3361, 3271, 3276, 3261, 3334, 3274, 3272, 3273, 3314, 3325, 3324, 3318, 3316, 3330, 3269, 3279, 3360, 3278, 3275, 2782, 2781, 2780, 6004, 1051: 6007, 1223: 6008, 1298: 6009}, + {2: 881, 881, 881, 881, 881, 881, 881, 10: 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 51: 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 476: 881, 478: 881, 881, 881, 482: 881, 485: 881, 881, 488: 881, 881, 881, 495: 881, 498: 881, 507: 881, 881, 511: 881, 518: 881, 523: 881, 533: 881, 567: 881, 570: 881, 881, 573: 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 585: 881, 881, 881, 881, 881, 881, 881, 881, 595: 881, 881, 598: 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 881, 651: 881, 654: 881, 749: 881, 881, 757: 881, 881, 881, 766: 881, 774: 881, 881, 881}, + {2: 880, 880, 880, 880, 880, 880, 880, 10: 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 51: 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 476: 880, 478: 880, 880, 880, 482: 880, 485: 880, 880, 488: 880, 880, 880, 495: 880, 498: 880, 507: 880, 880, 511: 880, 518: 880, 523: 880, 533: 880, 567: 880, 570: 880, 880, 573: 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 585: 880, 880, 880, 880, 880, 880, 880, 880, 595: 880, 880, 598: 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 880, 651: 880, 654: 880, 749: 880, 880, 757: 880, 880, 880, 766: 880, 774: 880, 880, 880}, // 3435 - {1865, 1865, 49: 1865, 472: 1865, 474: 1865, 480: 1865, 1865, 490: 1865, 1865, 493: 1865, 1865, 496: 1865, 1865, 1865, 500: 1865, 1865, 1865, 513: 1865, 5939, 1059: 5973}, - {1019, 1019, 49: 1019, 472: 1019, 474: 1019, 480: 1019, 1019, 490: 1019, 1019, 493: 1019, 1019, 496: 1019, 1019, 1019, 500: 1019, 1019, 1019, 513: 1019}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 2840, 2788, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 2869, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 2874, 2801, 2766, 2783, 2948, 3031, 3020, 2818, 2830, 2941, 2942, 2937, 2895, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 2876, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 2760, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 2880, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 2799, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 2866, 2865, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 2936, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 2824, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 2751, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 2882, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 2752, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3144, 2878, 3145, 3146, 2777, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3159, 3160, 3211, 3210, 3057, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 2918, 2935, 3058, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3177, 3178, 3179, 2931, 3130, 3189, 3190, 3201, 3185, 3186, 3187, 3220, 2877, 473: 3260, 475: 3239, 3258, 2755, 479: 3268, 482: 3272, 3276, 485: 3257, 3256, 3295, 492: 3230, 495: 3269, 504: 3275, 3293, 508: 3234, 520: 5968, 530: 3264, 564: 3271, 567: 3294, 2753, 570: 3277, 3229, 3231, 3233, 3232, 3261, 3237, 3251, 3242, 3263, 3238, 582: 3270, 3262, 3267, 3273, 3283, 3336, 3284, 3285, 592: 3236, 3314, 595: 3254, 3255, 3309, 3310, 3311, 3312, 3313, 3265, 3291, 3296, 3306, 3307, 3300, 3315, 3316, 3317, 3301, 3319, 3320, 3302, 3318, 3297, 3305, 3303, 3289, 3321, 3322, 3266, 3326, 3278, 3279, 3282, 3325, 3331, 3330, 3332, 3329, 3333, 3328, 3327, 3324, 3274, 3323, 3281, 3280, 3286, 3287, 648: 2756, 661: 5969, 2762, 2763, 2761, 709: 3259, 3335, 3245, 3250, 3235, 3308, 3248, 3246, 3247, 3288, 3299, 3298, 3292, 3290, 3304, 3243, 3253, 3334, 3252, 3249, 2759, 2758, 2757, 5967, 1046: 5975}, - {1867, 1867, 9: 1867, 49: 1867, 472: 1867, 474: 1867, 480: 1867, 1867, 490: 1867, 1867, 493: 1867, 1867, 496: 1867, 1867, 1867, 500: 1867, 1867, 1867, 513: 1867, 1867}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 520: 5977, 661: 5978, 2762, 2763, 2761}, + {2: 879, 879, 879, 879, 879, 879, 879, 10: 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 51: 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 476: 879, 478: 879, 879, 879, 482: 879, 485: 879, 879, 488: 879, 879, 879, 495: 879, 498: 879, 507: 879, 879, 511: 879, 518: 879, 523: 879, 533: 879, 567: 879, 570: 879, 879, 573: 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 585: 879, 879, 879, 879, 879, 879, 879, 879, 595: 879, 879, 598: 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 879, 651: 879, 654: 879, 749: 879, 879, 757: 879, 879, 879, 766: 879, 774: 879, 879, 879}, + {2: 878, 878, 878, 878, 878, 878, 878, 10: 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 51: 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 476: 878, 478: 878, 878, 878, 482: 878, 485: 878, 878, 488: 878, 878, 878, 495: 878, 498: 878, 507: 878, 878, 511: 878, 518: 878, 523: 878, 533: 878, 567: 878, 570: 878, 878, 573: 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 585: 878, 878, 878, 878, 878, 878, 878, 878, 595: 878, 878, 598: 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 878, 651: 878, 654: 878, 749: 878, 878, 757: 878, 878, 878, 766: 878, 774: 878, 878, 878}, + {2: 877, 877, 877, 877, 877, 877, 877, 10: 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 51: 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 476: 877, 478: 877, 877, 877, 482: 877, 485: 877, 877, 488: 877, 877, 877, 495: 877, 498: 877, 507: 877, 877, 511: 877, 518: 877, 523: 877, 533: 877, 567: 877, 570: 877, 877, 573: 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 585: 877, 877, 877, 877, 877, 877, 877, 877, 595: 877, 877, 598: 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 877, 651: 877, 654: 877, 749: 877, 877, 757: 877, 877, 877, 766: 877, 774: 877, 877, 877}, + {2: 876, 876, 876, 876, 876, 876, 876, 10: 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 51: 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 476: 876, 478: 876, 876, 876, 482: 876, 485: 876, 876, 488: 876, 876, 876, 495: 876, 498: 876, 507: 876, 876, 511: 876, 518: 876, 523: 876, 533: 876, 567: 876, 570: 876, 876, 573: 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 585: 876, 876, 876, 876, 876, 876, 876, 876, 595: 876, 876, 598: 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 876, 651: 876, 654: 876, 749: 876, 876, 757: 876, 876, 876, 766: 876, 774: 876, 876, 876}, + {2: 875, 875, 875, 875, 875, 875, 875, 10: 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 51: 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 476: 875, 478: 875, 875, 875, 482: 875, 485: 875, 875, 488: 875, 875, 875, 495: 875, 498: 875, 507: 875, 875, 511: 875, 518: 875, 523: 875, 533: 875, 567: 875, 570: 875, 875, 573: 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 585: 875, 875, 875, 875, 875, 875, 875, 875, 595: 875, 875, 598: 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 875, 651: 875, 654: 875, 749: 875, 875, 757: 875, 875, 875, 766: 875, 774: 875, 875, 875}, // 3440 - {1877, 1877, 9: 1877, 49: 1877, 472: 1877, 474: 1877, 480: 1877, 1877, 490: 1877, 1877, 493: 1877, 1877, 496: 1877, 1877, 1877, 500: 1877, 1877, 1877, 513: 1877, 1877}, - {1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 3990, 1278, 1278, 1278, 1278, 1278, 480: 1278, 1278, 484: 1278, 1278, 1278, 1278, 490: 1278, 1278, 493: 1278, 1278, 496: 1278, 1278, 1278, 1278, 1278, 1278, 1278, 507: 1278, 509: 1278, 1278, 1278, 1278, 1278, 1278, 518: 1278, 520: 1278, 544: 1278, 547: 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 1278, 565: 1278, 1278, 594: 1278, 652: 5979, 656: 1278, 1278}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 520: 5980, 661: 3786, 2762, 2763, 2761}, - {1876, 1876, 9: 1876, 49: 1876, 472: 1876, 474: 1876, 480: 1876, 1876, 490: 1876, 1876, 493: 1876, 1876, 496: 1876, 1876, 1876, 500: 1876, 1876, 1876, 513: 1876, 1876}, - {1875, 1875, 9: 1875, 49: 1875, 472: 1875, 474: 1875, 480: 1875, 1875, 490: 1875, 1875, 493: 1875, 1875, 496: 1875, 1875, 1875, 500: 1875, 1875, 1875, 513: 1875, 1875}, + {2: 874, 874, 874, 874, 874, 874, 874, 10: 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 51: 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 476: 874, 478: 874, 874, 874, 482: 874, 485: 874, 874, 488: 874, 874, 874, 495: 874, 498: 874, 507: 874, 874, 511: 874, 518: 874, 523: 874, 533: 874, 567: 874, 570: 874, 874, 573: 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 585: 874, 874, 874, 874, 874, 874, 874, 874, 595: 874, 874, 598: 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 874, 651: 874, 654: 874, 749: 874, 874, 757: 874, 874, 874, 766: 874, 774: 874, 874, 874}, + {2: 873, 873, 873, 873, 873, 873, 873, 10: 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 51: 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 476: 873, 478: 873, 873, 873, 482: 873, 485: 873, 873, 488: 873, 873, 873, 495: 873, 498: 873, 507: 873, 873, 511: 873, 518: 873, 523: 873, 533: 873, 567: 873, 570: 873, 873, 573: 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 585: 873, 873, 873, 873, 873, 873, 873, 873, 595: 873, 873, 598: 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 873, 651: 873, 654: 873, 749: 873, 873, 757: 873, 873, 873, 766: 873, 774: 873, 873, 873}, + {2: 871, 871, 871, 871, 871, 871, 871, 10: 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 51: 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 5995, 6001, 6002, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 476: 871, 478: 871, 871, 871, 482: 871, 485: 871, 871, 488: 871, 871, 871, 495: 871, 498: 871, 507: 871, 871, 511: 871, 518: 5998, 523: 871, 533: 871, 567: 871, 570: 871, 871, 573: 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 585: 871, 871, 871, 871, 871, 871, 871, 871, 595: 871, 871, 598: 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 871, 651: 871, 654: 3572, 749: 3570, 3571, 757: 5441, 5440, 5439, 766: 5436, 774: 5994, 5997, 5993, 789: 5916, 792: 5991, 842: 5992, 871: 5990, 1131: 6003, 5996}, + {2: 869, 869, 869, 869, 869, 869, 869, 10: 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 51: 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 476: 869, 478: 869, 869, 869, 482: 869, 485: 869, 869, 488: 869, 869, 869, 495: 869, 498: 869, 507: 869, 869, 511: 869, 518: 869, 523: 869, 533: 869, 567: 869, 570: 869, 869, 573: 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 585: 869, 869, 869, 869, 869, 869, 869, 869, 595: 869, 869, 598: 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 869, 651: 869, 654: 869, 749: 869, 869, 757: 869, 869, 869, 766: 869, 774: 869, 869, 869}, + {2: 865, 865, 865, 865, 865, 865, 865, 10: 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 51: 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 476: 865, 478: 865, 865, 865, 482: 865, 485: 865, 865, 488: 865, 865, 865, 495: 865, 498: 865, 507: 865, 865, 511: 865, 518: 865, 523: 865, 533: 865, 567: 865, 570: 865, 865, 573: 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 585: 865, 865, 865, 865, 865, 865, 865, 865, 595: 865, 865, 598: 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 865, 651: 865, 654: 865, 749: 865, 865, 757: 865, 865, 865, 766: 865, 774: 865, 865, 865}, // 3445 - {1873, 1873, 9: 1873, 49: 1873, 472: 1873, 474: 1873, 480: 1873, 1873, 490: 1873, 1873, 493: 1873, 1873, 496: 1873, 1873, 1873, 500: 1873, 1873, 1873, 513: 1873, 1873}, - {1872, 1872, 9: 1872, 49: 1872, 472: 1872, 474: 1872, 480: 1872, 1872, 490: 1872, 1872, 493: 1872, 1872, 496: 1872, 1872, 1872, 500: 1872, 1872, 1872, 513: 1872, 1872}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 475: 5987, 661: 5986, 2762, 2763, 2761}, - {1870, 1870, 9: 1870, 49: 1870, 472: 1870, 474: 1870, 480: 1870, 1870, 490: 1870, 1870, 493: 1870, 1870, 496: 1870, 1870, 1870, 500: 1870, 1870, 1870, 513: 1870, 1870}, - {1871, 1871, 9: 1871, 49: 1871, 472: 1871, 474: 1871, 480: 1871, 1871, 490: 1871, 1871, 493: 1871, 1871, 496: 1871, 1871, 1871, 500: 1871, 1871, 1871, 513: 1871, 1871}, + {2: 864, 864, 864, 864, 864, 864, 864, 10: 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 51: 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 476: 864, 478: 864, 864, 864, 482: 864, 485: 864, 864, 488: 864, 864, 864, 495: 864, 498: 864, 507: 864, 864, 511: 864, 518: 864, 523: 864, 533: 864, 567: 864, 570: 864, 864, 573: 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 585: 864, 864, 864, 864, 864, 864, 864, 864, 595: 864, 864, 598: 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 864, 651: 864, 654: 864, 749: 864, 864, 757: 864, 864, 864, 766: 864, 774: 864, 864, 864}, + {2: 870, 870, 870, 870, 870, 870, 870, 10: 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 51: 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 476: 870, 478: 870, 870, 870, 482: 870, 485: 870, 870, 488: 870, 870, 870, 495: 870, 498: 870, 507: 870, 870, 511: 870, 518: 870, 523: 870, 533: 870, 567: 870, 570: 870, 870, 573: 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 585: 870, 870, 870, 870, 870, 870, 870, 870, 595: 870, 870, 598: 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 870, 651: 870, 654: 870, 749: 870, 870, 757: 870, 870, 870, 766: 870, 774: 870, 870, 870}, + {1891, 1891, 3161, 2991, 3026, 2871, 2907, 3028, 2798, 1891, 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 1891, 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 1891, 477: 1891, 6022, 481: 6021, 483: 1891, 1891, 493: 1891, 1891, 496: 1891, 1891, 499: 1891, 1891, 1891, 503: 1891, 1891, 1891, 510: 3371, 512: 3369, 3370, 3368, 3366, 1891, 1891, 664: 6020, 2785, 2786, 2784, 738: 3367, 3365, 1220: 6019, 6018}, + {1895, 1895, 9: 1895, 50: 1895, 475: 1895, 477: 1895, 483: 1895, 1895, 493: 1895, 1895, 496: 1895, 1895, 499: 1895, 1895, 1895, 503: 1895, 1895, 1895, 516: 1895, 1895}, + {1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 477: 1293, 1293, 1293, 1293, 1293, 483: 1293, 1293, 487: 1293, 1293, 1293, 1293, 493: 1293, 1293, 496: 1293, 1293, 499: 1293, 1293, 1293, 1293, 1293, 1293, 1293, 510: 1293, 512: 1293, 1293, 1293, 1293, 1293, 1293, 521: 1293, 523: 1293, 547: 1293, 550: 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 1293, 568: 1293, 1293, 597: 1293, 655: 6013, 659: 1293, 1293}, // 3450 - {1869, 1869, 9: 1869, 49: 1869, 472: 1869, 474: 1869, 480: 1869, 1869, 490: 1869, 1869, 493: 1869, 1869, 496: 1869, 1869, 1869, 500: 1869, 1869, 1869, 513: 1869, 1869}, - {1020, 1020}, - {1032, 1032}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 6003, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 661: 6004, 2762, 2763, 2761}, - {72: 5996, 234: 5995}, + {1885, 1885, 9: 1885, 50: 1885, 475: 1885, 477: 1885, 483: 1885, 1885, 493: 1885, 1885, 496: 1885, 1885, 499: 1885, 1885, 1885, 503: 1885, 1885, 1885, 516: 1885, 1885}, + {863, 863, 9: 6011, 50: 863, 475: 863, 477: 863, 483: 863, 863, 493: 863, 863, 496: 863, 863, 499: 863, 863, 863, 503: 863, 863, 863, 516: 863, 863}, + {1882, 1882, 50: 1882, 475: 1882, 477: 1882, 483: 1882, 1882, 493: 1882, 1882, 496: 1882, 1882, 499: 1882, 1882, 1882, 503: 1882, 1882, 1882, 516: 1882, 5976, 1066: 6010}, + {1033, 1033, 50: 1033, 475: 1033, 477: 1033, 483: 1033, 1033, 493: 1033, 1033, 496: 1033, 1033, 499: 1033, 1033, 1033, 503: 1033, 1033, 1033, 516: 1033}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 2864, 2812, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 2893, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 2898, 2825, 2789, 2807, 2972, 3055, 3044, 2842, 2854, 2965, 2966, 2961, 2919, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 2900, 2885, 2881, 2973, 2997, 2783, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 2904, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 2823, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 2889, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 2890, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 2960, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 2848, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 2774, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 2906, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 2775, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3170, 2902, 3171, 3172, 2801, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3185, 3186, 3237, 3236, 3081, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 2942, 2959, 3082, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3203, 3204, 3205, 2955, 3156, 3215, 3216, 3227, 3211, 3212, 3213, 3246, 2901, 476: 3286, 478: 3265, 3284, 2778, 482: 3294, 485: 3298, 3302, 488: 3283, 3282, 3321, 495: 3256, 498: 3295, 507: 3301, 3319, 511: 3260, 523: 6005, 533: 3290, 567: 3297, 570: 3320, 2776, 573: 3303, 3255, 3257, 3259, 3258, 3287, 3263, 3277, 3268, 3289, 3264, 585: 3296, 3288, 3293, 3299, 3309, 3362, 3310, 3311, 595: 3262, 3340, 598: 3280, 3281, 3335, 3336, 3337, 3338, 3339, 3291, 3317, 3322, 3332, 3333, 3326, 3341, 3342, 3343, 3327, 3345, 3346, 3328, 3344, 3323, 3331, 3329, 3315, 3347, 3348, 3292, 3352, 3304, 3305, 3308, 3351, 3357, 3356, 3358, 3355, 3359, 3354, 3353, 3350, 3300, 3349, 3307, 3306, 3312, 3313, 651: 2779, 664: 6006, 2785, 2786, 2784, 713: 3285, 3361, 3271, 3276, 3261, 3334, 3274, 3272, 3273, 3314, 3325, 3324, 3318, 3316, 3330, 3269, 3279, 3360, 3278, 3275, 2782, 2781, 2780, 6004, 1051: 6012}, // 3455 - {1024, 1024}, - {800: 5994}, - {1023, 1023}, - {1026, 1026, 72: 6001}, - {234: 5997}, + {1884, 1884, 9: 1884, 50: 1884, 475: 1884, 477: 1884, 483: 1884, 1884, 493: 1884, 1884, 496: 1884, 1884, 499: 1884, 1884, 1884, 503: 1884, 1884, 1884, 516: 1884, 1884}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 523: 6014, 664: 6015, 2785, 2786, 2784}, + {1894, 1894, 9: 1894, 50: 1894, 475: 1894, 477: 1894, 483: 1894, 1894, 493: 1894, 1894, 496: 1894, 1894, 499: 1894, 1894, 1894, 503: 1894, 1894, 1894, 516: 1894, 1894}, + {1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 4016, 1292, 1292, 1292, 1292, 1292, 483: 1292, 1292, 487: 1292, 1292, 1292, 1292, 493: 1292, 1292, 496: 1292, 1292, 499: 1292, 1292, 1292, 1292, 1292, 1292, 1292, 510: 1292, 512: 1292, 1292, 1292, 1292, 1292, 1292, 521: 1292, 523: 1292, 547: 1292, 550: 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 1292, 568: 1292, 1292, 597: 1292, 655: 6016, 659: 1292, 1292}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 523: 6017, 664: 3812, 2785, 2786, 2784}, // 3460 - {1025, 1025, 72: 5999, 800: 5998}, - {1028, 1028}, - {800: 6000}, - {1027, 1027}, - {800: 6002}, + {1893, 1893, 9: 1893, 50: 1893, 475: 1893, 477: 1893, 483: 1893, 1893, 493: 1893, 1893, 496: 1893, 1893, 499: 1893, 1893, 1893, 503: 1893, 1893, 1893, 516: 1893, 1893}, + {1892, 1892, 9: 1892, 50: 1892, 475: 1892, 477: 1892, 483: 1892, 1892, 493: 1892, 1892, 496: 1892, 1892, 499: 1892, 1892, 1892, 503: 1892, 1892, 1892, 516: 1892, 1892}, + {1890, 1890, 9: 1890, 50: 1890, 475: 1890, 477: 1890, 483: 1890, 1890, 493: 1890, 1890, 496: 1890, 1890, 499: 1890, 1890, 1890, 503: 1890, 1890, 1890, 516: 1890, 1890}, + {1889, 1889, 9: 1889, 50: 1889, 475: 1889, 477: 1889, 483: 1889, 1889, 493: 1889, 1889, 496: 1889, 1889, 499: 1889, 1889, 1889, 503: 1889, 1889, 1889, 516: 1889, 1889}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 478: 6024, 664: 6023, 2785, 2786, 2784}, // 3465 - {1029, 1029}, - {1645, 1645, 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 661: 6005, 2762, 2763, 2761}, - {1031, 1031}, - {1030, 1030}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 661: 6007, 2762, 2763, 2761}, + {1887, 1887, 9: 1887, 50: 1887, 475: 1887, 477: 1887, 483: 1887, 1887, 493: 1887, 1887, 496: 1887, 1887, 499: 1887, 1887, 1887, 503: 1887, 1887, 1887, 516: 1887, 1887}, + {1888, 1888, 9: 1888, 50: 1888, 475: 1888, 477: 1888, 483: 1888, 1888, 493: 1888, 1888, 496: 1888, 1888, 499: 1888, 1888, 1888, 503: 1888, 1888, 1888, 516: 1888, 1888}, + {1886, 1886, 9: 1886, 50: 1886, 475: 1886, 477: 1886, 483: 1886, 1886, 493: 1886, 1886, 496: 1886, 1886, 499: 1886, 1886, 1886, 503: 1886, 1886, 1886, 516: 1886, 1886}, + {1034, 1034}, + {1046, 1046}, // 3470 - {1036, 1036}, - {1040, 1040, 481: 6009}, - {568: 3349, 710: 6011, 1332: 6010}, - {1039, 1039, 9: 6012}, - {1038, 1038, 9: 1038}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 6040, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 664: 6041, 2785, 2786, 2784}, + {73: 6033, 237: 6032}, + {1038, 1038}, + {804: 6031}, + {1037, 1037}, // 3475 - {568: 3349, 710: 6013}, - {1037, 1037, 9: 1037}, - {500: 6015}, - {475: 6017, 568: 3349, 710: 6018, 1282: 6016}, - {1043, 1043}, - // 3480 + {1040, 1040, 73: 6038}, + {237: 6034}, + {1039, 1039, 73: 6036, 804: 6035}, {1042, 1042}, + {804: 6037}, + // 3480 {1041, 1041}, - {2: 1355, 1355, 1355, 1355, 1355, 1355, 1355, 10: 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 50: 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 496: 6020, 1066: 6021}, - {2: 1354, 1354, 1354, 1354, 1354, 1354, 1354, 10: 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 50: 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354, 1354}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 661: 3921, 2762, 2763, 2761, 737: 6022}, + {804: 6039}, + {1043, 1043}, + {1661, 1661, 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 664: 6042, 2785, 2786, 2784}, + {1045, 1045}, // 3485 - {158: 922, 473: 922, 922, 488: 5465, 495: 922, 506: 922, 569: 922, 646: 922, 860: 6023}, - {158: 6031, 473: 6024, 2587, 495: 6032, 506: 6030, 569: 2585, 646: 2581, 709: 6029, 748: 6027, 2582, 2583, 2584, 2593, 756: 2591, 2590, 2589, 3880, 6028, 6026, 977: 6025, 1065: 6033}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 2332, 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 473: 2588, 2587, 495: 2586, 569: 2585, 646: 2581, 661: 4143, 2762, 2763, 2761, 709: 5891, 744: 4144, 748: 3881, 2582, 2583, 2584, 2593, 756: 2591, 2590, 2589, 3880, 3883, 3882, 808: 5111, 1001: 6045}, - {473: 3897, 839: 6042, 975: 6041}, - {1347, 1347, 472: 1347, 481: 1347}, + {1044, 1044}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 664: 6044, 2785, 2786, 2784}, + {1050, 1050}, + {1054, 1054, 484: 6046}, + {571: 3375, 714: 6048, 1341: 6047}, // 3490 - {1346, 1346, 472: 1346, 480: 815, 1346, 490: 815, 815}, - {1345, 1345, 472: 1345, 481: 1345}, - {1344, 1344, 472: 1344, 480: 814, 1344, 490: 814, 814, 493: 2728, 501: 2729, 2725, 767: 3891, 3892}, - {1330, 1330, 3135, 2967, 3002, 2847, 2883, 3004, 2774, 1330, 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 1330, 481: 1330, 661: 4143, 2762, 2763, 2761, 744: 6035, 1005: 6036, 1194: 6034}, - {473: 1342}, + {1053, 1053, 9: 6049}, + {1052, 1052, 9: 1052}, + {571: 3375, 714: 6050}, + {1051, 1051, 9: 1051}, + {503: 6052}, // 3495 - {473: 1341, 575: 3896, 912: 3895, 976: 3894}, - {1325, 1325, 481: 1325}, - {1343, 1343, 9: 6039, 472: 1343, 481: 1343}, - {499: 6037}, - {1329, 1329, 9: 1329, 472: 1329, 481: 1329}, + {478: 6054, 571: 3375, 714: 6055, 1290: 6053}, + {1057, 1057}, + {1056, 1056}, + {1055, 1055}, + {2: 1369, 1369, 1369, 1369, 1369, 1369, 1369, 10: 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 51: 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 499: 6057, 1073: 6058}, // 3500 - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 2840, 2788, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 2869, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 2874, 2801, 2766, 2783, 2948, 3031, 3020, 2818, 2830, 2941, 2942, 2937, 2895, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 2876, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 2760, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 2880, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 2799, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 2866, 2865, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 2936, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 2824, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 2751, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 2882, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 2752, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3144, 2878, 3145, 3146, 2777, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3159, 3160, 3211, 3210, 3057, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 2918, 2935, 3058, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3177, 3178, 3179, 2931, 3130, 3189, 3190, 3201, 3185, 3186, 3187, 3220, 2877, 473: 3260, 475: 3239, 3258, 2755, 479: 3903, 482: 3272, 3276, 485: 3257, 3256, 3295, 492: 3230, 495: 3269, 504: 3275, 3293, 508: 3234, 530: 3264, 564: 3271, 567: 3294, 2753, 570: 3277, 3229, 3231, 3233, 3232, 3261, 3237, 3251, 3242, 3263, 3238, 582: 3270, 3262, 3267, 3273, 3283, 3336, 3284, 3285, 592: 3236, 3314, 595: 3254, 3255, 3309, 3310, 3311, 3312, 3313, 3265, 3291, 3296, 3306, 3307, 3300, 3315, 3316, 3317, 3301, 3319, 3320, 3302, 3318, 3297, 3305, 3303, 3289, 3321, 3322, 3266, 3326, 3278, 3279, 3282, 3325, 3331, 3330, 3332, 3329, 3333, 3328, 3327, 3324, 3274, 3323, 3281, 3280, 3286, 3287, 648: 2756, 661: 3244, 2762, 2763, 2761, 709: 3259, 3335, 3245, 3250, 3235, 3308, 3248, 3246, 3247, 3288, 3299, 3298, 3292, 3290, 3304, 3243, 3253, 3334, 3252, 3249, 2759, 2758, 2757, 3899, 797: 6038}, - {1331, 1331, 9: 1331, 472: 1331, 481: 1331}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 661: 4143, 2762, 2763, 2761, 744: 6035, 1005: 6040}, - {1328, 1328, 9: 1328, 472: 1328, 481: 1328}, - {1348, 1348, 9: 6043, 472: 1348, 481: 1348}, + {2: 1368, 1368, 1368, 1368, 1368, 1368, 1368, 10: 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 51: 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368, 1368}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 664: 3947, 2785, 2786, 2784, 740: 6059}, + {160: 936, 476: 936, 936, 491: 5503, 498: 936, 509: 936, 572: 936, 649: 936, 864: 6060}, + {160: 6068, 476: 6061, 2607, 498: 6069, 509: 6067, 572: 2605, 649: 2601, 713: 6066, 752: 6064, 2602, 2603, 2604, 2613, 760: 2611, 2610, 2609, 3906, 6065, 6063, 982: 6062, 1072: 6070}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 2349, 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 476: 2608, 2607, 498: 2606, 572: 2605, 649: 2601, 664: 4169, 2785, 2786, 2784, 713: 5928, 748: 4170, 752: 3907, 2602, 2603, 2604, 2613, 760: 2611, 2610, 2609, 3906, 3909, 3908, 812: 5137, 1005: 6082}, // 3505 - {1340, 1340, 9: 1340, 472: 1340, 481: 1340}, - {473: 3897, 839: 6044}, - {1339, 1339, 9: 1339, 472: 1339, 481: 1339}, - {49: 6046}, - {158: 6031, 473: 2588, 2587, 495: 6032, 569: 2585, 646: 2581, 709: 6051, 748: 6049, 2582, 2583, 2584, 2593, 756: 2591, 2590, 2589, 3880, 6050, 6048, 977: 6047}, + {476: 3923, 844: 6079, 980: 6078}, + {1361, 1361, 475: 1361, 484: 1361}, + {1360, 1360, 475: 1360, 483: 829, 1360, 493: 829, 829}, + {1359, 1359, 475: 1359, 484: 1359}, + {1358, 1358, 475: 1358, 483: 828, 1358, 493: 828, 828, 496: 2751, 504: 2752, 2748, 772: 3917, 3918}, // 3510 - {473: 3897, 839: 6042, 975: 6052}, - {1352, 1352, 472: 1352, 481: 1352}, - {1351, 1351, 472: 1351, 480: 815, 1351, 490: 815, 815}, - {1350, 1350, 472: 1350, 481: 1350}, - {1349, 1349, 472: 1349, 480: 814, 1349, 490: 814, 814, 493: 2728, 501: 2729, 2725, 767: 3891, 3892}, + {1344, 1344, 3161, 2991, 3026, 2871, 2907, 3028, 2798, 1344, 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 1344, 484: 1344, 664: 4169, 2785, 2786, 2784, 748: 6072, 1009: 6073, 1203: 6071}, + {476: 1356}, + {476: 1355, 578: 3922, 917: 3921, 981: 3920}, + {1339, 1339, 484: 1339}, + {1357, 1357, 9: 6076, 475: 1357, 484: 1357}, // 3515 - {1353, 1353, 9: 6043, 472: 1353, 481: 1353}, - {2: 1057, 1057, 1057, 1057, 1057, 1057, 1057, 10: 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 50: 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 489: 1057, 496: 1057, 753: 5403, 5402, 5401, 837: 5404, 887: 6054}, - {2: 1856, 1856, 1856, 1856, 1856, 1856, 1856, 10: 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 50: 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 489: 4191, 496: 1856, 855: 6055}, - {2: 1355, 1355, 1355, 1355, 1355, 1355, 1355, 10: 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 50: 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 1355, 496: 6020, 1066: 6056}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 661: 3921, 2762, 2763, 2761, 737: 6057}, + {502: 6074}, + {1343, 1343, 9: 1343, 475: 1343, 484: 1343}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 2864, 2812, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 2893, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 2898, 2825, 2789, 2807, 2972, 3055, 3044, 2842, 2854, 2965, 2966, 2961, 2919, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 2900, 2885, 2881, 2973, 2997, 2783, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 2904, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 2823, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 2889, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 2890, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 2960, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 2848, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 2774, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 2906, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 2775, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3170, 2902, 3171, 3172, 2801, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3185, 3186, 3237, 3236, 3081, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 2942, 2959, 3082, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3203, 3204, 3205, 2955, 3156, 3215, 3216, 3227, 3211, 3212, 3213, 3246, 2901, 476: 3286, 478: 3265, 3284, 2778, 482: 3929, 485: 3298, 3302, 488: 3283, 3282, 3321, 495: 3256, 498: 3295, 507: 3301, 3319, 511: 3260, 533: 3290, 567: 3297, 570: 3320, 2776, 573: 3303, 3255, 3257, 3259, 3258, 3287, 3263, 3277, 3268, 3289, 3264, 585: 3296, 3288, 3293, 3299, 3309, 3362, 3310, 3311, 595: 3262, 3340, 598: 3280, 3281, 3335, 3336, 3337, 3338, 3339, 3291, 3317, 3322, 3332, 3333, 3326, 3341, 3342, 3343, 3327, 3345, 3346, 3328, 3344, 3323, 3331, 3329, 3315, 3347, 3348, 3292, 3352, 3304, 3305, 3308, 3351, 3357, 3356, 3358, 3355, 3359, 3354, 3353, 3350, 3300, 3349, 3307, 3306, 3312, 3313, 651: 2779, 664: 3270, 2785, 2786, 2784, 713: 3285, 3361, 3271, 3276, 3261, 3334, 3274, 3272, 3273, 3314, 3325, 3324, 3318, 3316, 3330, 3269, 3279, 3360, 3278, 3275, 2782, 2781, 2780, 3925, 801: 6075}, + {1345, 1345, 9: 1345, 475: 1345, 484: 1345}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 664: 4169, 2785, 2786, 2784, 748: 6072, 1009: 6077}, // 3520 - {158: 922, 473: 922, 922, 488: 5465, 495: 922, 506: 922, 569: 922, 646: 922, 860: 6058}, - {158: 6031, 473: 6024, 2587, 495: 6032, 506: 6030, 569: 2585, 646: 2581, 709: 6029, 748: 6027, 2582, 2583, 2584, 2593, 756: 2591, 2590, 2589, 3880, 6028, 6026, 977: 6025, 1065: 6059}, - {1327, 1327, 472: 6061, 481: 1327, 1260: 6060}, - {1356, 1356, 481: 1356}, - {206: 6062}, + {1342, 1342, 9: 1342, 475: 1342, 484: 1342}, + {1362, 1362, 9: 6080, 475: 1362, 484: 1362}, + {1354, 1354, 9: 1354, 475: 1354, 484: 1354}, + {476: 3923, 844: 6081}, + {1353, 1353, 9: 1353, 475: 1353, 484: 1353}, // 3525 - {581: 6063}, - {654: 6064}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 661: 4143, 2762, 2763, 2761, 744: 5519, 892: 5520, 925: 6065}, - {1326, 1326, 9: 5522, 481: 1326}, - {1360, 1360, 473: 6074, 652: 1832}, + {50: 6083}, + {160: 6068, 476: 2608, 2607, 498: 6069, 572: 2605, 649: 2601, 713: 6088, 752: 6086, 2602, 2603, 2604, 2613, 760: 2611, 2610, 2609, 3906, 6087, 6085, 982: 6084}, + {476: 3923, 844: 6079, 980: 6089}, + {1366, 1366, 475: 1366, 484: 1366}, + {1365, 1365, 475: 1365, 483: 829, 1365, 493: 829, 829}, // 3530 - {1361, 1361}, - {652: 6069}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 661: 6070, 2762, 2763, 2761}, - {1359, 1359, 473: 6071}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 2840, 2788, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 1919, 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 2869, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 2874, 2801, 2766, 2783, 2948, 3031, 3020, 2818, 2830, 2941, 2942, 2937, 2895, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 2876, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 2760, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 2880, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 2799, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 2866, 2865, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 2936, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 2824, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 2751, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 2882, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 2752, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3144, 2878, 3145, 3146, 2777, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3159, 3160, 3211, 3210, 3057, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 2918, 2935, 3058, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3177, 3178, 3179, 2931, 3130, 3189, 3190, 3201, 3185, 3186, 3187, 3220, 2877, 473: 3260, 475: 3239, 3258, 2755, 479: 3268, 482: 3272, 3276, 485: 3257, 3256, 3295, 492: 3230, 495: 3269, 504: 3275, 3293, 508: 3234, 530: 3264, 564: 3271, 567: 3294, 2753, 570: 3277, 3229, 3231, 3233, 3232, 3261, 3237, 3251, 3242, 3263, 3238, 582: 3270, 3262, 3267, 3273, 3283, 3336, 3284, 3285, 592: 3236, 3314, 595: 3254, 3255, 3309, 3310, 3311, 3312, 3313, 3265, 3291, 3296, 3306, 3307, 3300, 3315, 3316, 3317, 3301, 3319, 3320, 3302, 3318, 3297, 3305, 3303, 3289, 3321, 3322, 3266, 3326, 3278, 3279, 3282, 3325, 3331, 3330, 3332, 3329, 3333, 3328, 3327, 3324, 3274, 3323, 3281, 3280, 3286, 3287, 648: 2756, 661: 3244, 2762, 2763, 2761, 709: 3259, 3335, 3245, 3250, 3235, 3308, 3248, 3246, 3247, 3288, 3299, 3298, 3292, 3290, 3304, 3243, 3253, 3334, 3252, 3249, 2759, 2758, 2757, 3588, 778: 3752, 826: 6072}, + {1364, 1364, 475: 1364, 484: 1364}, + {1363, 1363, 475: 1363, 483: 828, 1363, 493: 828, 828, 496: 2751, 504: 2752, 2748, 772: 3917, 3918}, + {1367, 1367, 9: 6080, 475: 1367, 484: 1367}, + {2: 1071, 1071, 1071, 1071, 1071, 1071, 1071, 10: 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 51: 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 492: 1071, 499: 1071, 757: 5441, 5440, 5439, 842: 5442, 891: 6091}, + {2: 1873, 1873, 1873, 1873, 1873, 1873, 1873, 10: 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 51: 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 492: 4217, 499: 1873, 859: 6092}, // 3535 - {49: 6073}, - {1357, 1357}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 2840, 2788, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 1919, 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 2869, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 2874, 2801, 2766, 2783, 2948, 3031, 3020, 2818, 2830, 2941, 2942, 2937, 2895, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 2876, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 2760, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 2880, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 2799, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 2866, 2865, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 2936, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 2824, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 2751, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 2882, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 2752, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3144, 2878, 3145, 3146, 2777, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3159, 3160, 3211, 3210, 3057, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 2918, 2935, 3058, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3177, 3178, 3179, 2931, 3130, 3189, 3190, 3201, 3185, 3186, 3187, 3220, 2877, 473: 3260, 475: 3239, 3258, 2755, 479: 3268, 482: 3272, 3276, 485: 3257, 3256, 3295, 492: 3230, 495: 3269, 504: 3275, 3293, 508: 3234, 530: 3264, 564: 3271, 567: 3294, 2753, 570: 3277, 3229, 3231, 3233, 3232, 3261, 3237, 3251, 3242, 3263, 3238, 582: 3270, 3262, 3267, 3273, 3283, 3336, 3284, 3285, 592: 3236, 3314, 595: 3254, 3255, 3309, 3310, 3311, 3312, 3313, 3265, 3291, 3296, 3306, 3307, 3300, 3315, 3316, 3317, 3301, 3319, 3320, 3302, 3318, 3297, 3305, 3303, 3289, 3321, 3322, 3266, 3326, 3278, 3279, 3282, 3325, 3331, 3330, 3332, 3329, 3333, 3328, 3327, 3324, 3274, 3323, 3281, 3280, 3286, 3287, 648: 2756, 661: 3244, 2762, 2763, 2761, 709: 3259, 3335, 3245, 3250, 3235, 3308, 3248, 3246, 3247, 3288, 3299, 3298, 3292, 3290, 3304, 3243, 3253, 3334, 3252, 3249, 2759, 2758, 2757, 3588, 778: 3752, 826: 6075}, - {49: 6076}, - {1358, 1358}, + {2: 1369, 1369, 1369, 1369, 1369, 1369, 1369, 10: 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 51: 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 1369, 499: 6057, 1073: 6093}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 664: 3947, 2785, 2786, 2784, 740: 6094}, + {160: 936, 476: 936, 936, 491: 5503, 498: 936, 509: 936, 572: 936, 649: 936, 864: 6095}, + {160: 6068, 476: 6061, 2607, 498: 6069, 509: 6067, 572: 2605, 649: 2601, 713: 6066, 752: 6064, 2602, 2603, 2604, 2613, 760: 2611, 2610, 2609, 3906, 6065, 6063, 982: 6062, 1072: 6096}, + {1341, 1341, 475: 6098, 484: 1341, 1268: 6097}, // 3540 - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 661: 6237, 2762, 2763, 2761}, - {600, 600, 498: 6234, 518: 6233, 1297: 6232}, - {18: 6220, 103: 6217, 134: 6222, 170: 6221, 196: 6219, 569: 6216, 582: 6218}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 6205, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 661: 3921, 2762, 2763, 2761, 737: 6206}, - {676, 676, 494: 6200}, + {1370, 1370, 484: 1370}, + {208: 6099}, + {584: 6100}, + {657: 6101}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 664: 4169, 2785, 2786, 2784, 748: 5557, 896: 5558, 930: 6102}, // 3545 - {126: 6199}, - {102: 3944, 111: 3943, 125: 6194, 217: 6193, 834: 6195}, - {672, 672}, - {664, 664, 186: 6175, 229: 6176, 239: 6177, 242: 6174, 264: 6179, 274: 6178, 288: 6181, 292: 6180, 493: 664, 664, 501: 664, 651: 6182, 1130: 6173, 1300: 6172, 6171}, - {670, 670}, + {1340, 1340, 9: 5560, 484: 1340}, + {1374, 1374, 476: 6111, 655: 1849}, + {1375, 1375}, + {655: 6106}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 664: 6107, 2785, 2786, 2784}, // 3550 - {669, 669}, - {602, 602, 267: 6162, 494: 6161, 498: 602, 518: 602}, - {500: 647, 544: 647}, - {500: 646, 544: 646}, - {500: 645, 544: 645}, + {1373, 1373, 476: 6108}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 2864, 2812, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 1936, 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 2893, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 2898, 2825, 2789, 2807, 2972, 3055, 3044, 2842, 2854, 2965, 2966, 2961, 2919, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 2900, 2885, 2881, 2973, 2997, 2783, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 2904, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 2823, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 2889, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 2890, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 2960, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 2848, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 2774, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 2906, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 2775, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3170, 2902, 3171, 3172, 2801, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3185, 3186, 3237, 3236, 3081, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 2942, 2959, 3082, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3203, 3204, 3205, 2955, 3156, 3215, 3216, 3227, 3211, 3212, 3213, 3246, 2901, 476: 3286, 478: 3265, 3284, 2778, 482: 3294, 485: 3298, 3302, 488: 3283, 3282, 3321, 495: 3256, 498: 3295, 507: 3301, 3319, 511: 3260, 533: 3290, 567: 3297, 570: 3320, 2776, 573: 3303, 3255, 3257, 3259, 3258, 3287, 3263, 3277, 3268, 3289, 3264, 585: 3296, 3288, 3293, 3299, 3309, 3362, 3310, 3311, 595: 3262, 3340, 598: 3280, 3281, 3335, 3336, 3337, 3338, 3339, 3291, 3317, 3322, 3332, 3333, 3326, 3341, 3342, 3343, 3327, 3345, 3346, 3328, 3344, 3323, 3331, 3329, 3315, 3347, 3348, 3292, 3352, 3304, 3305, 3308, 3351, 3357, 3356, 3358, 3355, 3359, 3354, 3353, 3350, 3300, 3349, 3307, 3306, 3312, 3313, 651: 2779, 664: 3270, 2785, 2786, 2784, 713: 3285, 3361, 3271, 3276, 3261, 3334, 3274, 3272, 3273, 3314, 3325, 3324, 3318, 3316, 3330, 3269, 3279, 3360, 3278, 3275, 2782, 2781, 2780, 3614, 782: 3778, 830: 6109}, + {50: 6110}, + {1371, 1371}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 2864, 2812, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 1936, 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 2893, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 2898, 2825, 2789, 2807, 2972, 3055, 3044, 2842, 2854, 2965, 2966, 2961, 2919, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 2900, 2885, 2881, 2973, 2997, 2783, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 2904, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 2823, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 2889, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 2890, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 2960, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 2848, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 2774, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 2906, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 2775, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3170, 2902, 3171, 3172, 2801, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3185, 3186, 3237, 3236, 3081, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 2942, 2959, 3082, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3203, 3204, 3205, 2955, 3156, 3215, 3216, 3227, 3211, 3212, 3213, 3246, 2901, 476: 3286, 478: 3265, 3284, 2778, 482: 3294, 485: 3298, 3302, 488: 3283, 3282, 3321, 495: 3256, 498: 3295, 507: 3301, 3319, 511: 3260, 533: 3290, 567: 3297, 570: 3320, 2776, 573: 3303, 3255, 3257, 3259, 3258, 3287, 3263, 3277, 3268, 3289, 3264, 585: 3296, 3288, 3293, 3299, 3309, 3362, 3310, 3311, 595: 3262, 3340, 598: 3280, 3281, 3335, 3336, 3337, 3338, 3339, 3291, 3317, 3322, 3332, 3333, 3326, 3341, 3342, 3343, 3327, 3345, 3346, 3328, 3344, 3323, 3331, 3329, 3315, 3347, 3348, 3292, 3352, 3304, 3305, 3308, 3351, 3357, 3356, 3358, 3355, 3359, 3354, 3353, 3350, 3300, 3349, 3307, 3306, 3312, 3313, 651: 2779, 664: 3270, 2785, 2786, 2784, 713: 3285, 3361, 3271, 3276, 3261, 3334, 3274, 3272, 3273, 3314, 3325, 3324, 3318, 3316, 3330, 3269, 3279, 3360, 3278, 3275, 2782, 2781, 2780, 3614, 782: 3778, 830: 6112}, // 3555 - {642, 642, 498: 642, 518: 642}, - {641, 641, 498: 641, 518: 641}, - {640, 640, 498: 640, 518: 640}, - {639, 639, 498: 639, 518: 639}, - {125: 6159}, + {50: 6113}, + {1372, 1372}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 664: 6275, 2785, 2786, 2784}, + {613, 613, 501: 6272, 521: 6271, 1306: 6270}, + {18: 6258, 104: 6255, 140: 6260, 172: 6259, 198: 6257, 572: 6254, 585: 6256}, // 3560 - {500: 6129, 544: 6130, 805: 6154}, - {102: 590, 111: 590, 211: 6127, 1090: 6148}, - {473: 6143}, - {630, 630, 498: 630, 518: 630}, - {628, 628, 498: 628, 518: 628}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 6243, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 664: 3947, 2785, 2786, 2784, 740: 6244}, + {690, 690, 497: 6238}, + {127: 6237}, + {103: 3970, 112: 3969, 126: 6232, 219: 6231, 839: 6233}, + {686, 686}, // 3565 - {126: 6141, 141: 6142, 202: 6140}, - {624, 624, 498: 624, 518: 624}, - {588, 588, 498: 588, 500: 6129, 518: 588, 544: 6130, 805: 6132, 841: 6139}, - {126: 6138}, - {126: 6137}, + {678, 678, 188: 6213, 232: 6214, 242: 6215, 245: 6212, 267: 6217, 277: 6216, 291: 6219, 294: 6218, 496: 678, 678, 504: 678, 654: 6220, 1138: 6211, 1309: 6210, 6209}, + {684, 684}, + {683, 683}, + {615, 615, 270: 6200, 497: 6199, 501: 615, 521: 615}, + {503: 661, 547: 661}, // 3570 - {126: 6136}, - {126: 6135}, - {126: 6134}, - {588, 588, 498: 588, 500: 6129, 518: 588, 544: 6130, 805: 6132, 841: 6131}, - {616, 616, 498: 616, 518: 616}, + {503: 660, 547: 660}, + {503: 659, 547: 659}, + {656, 656, 501: 656, 521: 656}, + {655, 655, 501: 655, 521: 655}, + {654, 654, 501: 654, 521: 654}, // 3575 - {615, 615, 498: 615, 518: 615}, - {614, 614, 498: 614, 518: 614}, - {613, 613, 498: 613, 518: 613}, - {612, 612, 498: 612, 518: 612}, - {611, 611, 498: 611, 518: 611}, + {653, 653, 501: 653, 521: 653}, + {126: 6197}, + {503: 6167, 547: 6168, 809: 6192}, + {103: 603, 112: 603, 213: 6165, 1098: 6186}, + {476: 6181}, // 3580 - {610, 610, 498: 610, 518: 610}, - {609, 609, 498: 609, 518: 609}, - {608, 608, 498: 608, 518: 608}, - {607, 607, 498: 607, 518: 607}, - {126: 6128}, + {644, 644, 501: 644, 521: 644}, + {642, 642, 501: 642, 521: 642}, + {127: 6179, 144: 6180, 204: 6178}, + {638, 638, 501: 638, 521: 638}, + {601, 601, 501: 601, 503: 6167, 521: 601, 547: 6168, 809: 6170, 846: 6177}, // 3585 - {605, 605, 498: 605, 518: 605}, - {604, 604, 498: 604, 518: 604}, - {603, 603, 498: 603, 518: 603}, - {126: 596, 141: 596, 202: 596}, - {126: 595, 141: 595, 160: 595, 202: 595}, + {127: 6176}, + {127: 6175}, + {127: 6174}, + {127: 6173}, + {127: 6172}, // 3590 - {102: 589, 111: 589, 125: 589, 217: 589}, - {606, 606, 498: 606, 518: 606}, - {2: 644, 644, 644, 644, 644, 644, 644, 10: 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 50: 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644, 644}, - {2: 643, 643, 643, 643, 643, 643, 643, 10: 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 50: 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643, 643}, - {617, 617, 498: 617, 518: 617}, + {601, 601, 501: 601, 503: 6167, 521: 601, 547: 6168, 809: 6170, 846: 6169}, + {630, 630, 501: 630, 521: 630}, + {629, 629, 501: 629, 521: 629}, + {628, 628, 501: 628, 521: 628}, + {627, 627, 501: 627, 521: 627}, // 3595 - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 661: 5396, 2762, 2763, 2761, 817: 6133}, - {587, 587, 498: 587, 518: 587}, - {618, 618, 498: 618, 518: 618}, - {619, 619, 498: 619, 518: 619}, - {620, 620, 498: 620, 518: 620}, + {626, 626, 501: 626, 521: 626}, + {625, 625, 501: 625, 521: 625}, + {624, 624, 501: 624, 521: 624}, + {623, 623, 501: 623, 521: 623}, + {622, 622, 501: 622, 521: 622}, // 3600 - {621, 621, 498: 621, 518: 621}, - {622, 622, 498: 622, 518: 622}, - {623, 623, 498: 623, 518: 623}, - {627, 627, 498: 627, 518: 627}, - {626, 626, 498: 626, 518: 626}, + {621, 621, 501: 621, 521: 621}, + {620, 620, 501: 620, 521: 620}, + {127: 6166}, + {618, 618, 501: 618, 521: 618}, + {617, 617, 501: 617, 521: 617}, // 3605 - {625, 625, 498: 625, 518: 625}, - {520: 6144}, - {49: 6145}, - {181: 6147, 307: 6146}, - {631, 631, 498: 631, 518: 631}, + {616, 616, 501: 616, 521: 616}, + {127: 609, 144: 609, 204: 609}, + {127: 608, 144: 608, 162: 608, 204: 608}, + {103: 602, 112: 602, 126: 602, 219: 602}, + {619, 619, 501: 619, 521: 619}, // 3610 - {629, 629, 498: 629, 518: 629}, - {102: 3944, 111: 3943, 834: 6149}, - {500: 6129, 544: 6130, 805: 6151, 1132: 6150}, - {588, 588, 498: 588, 500: 6129, 518: 588, 544: 6130, 805: 6132, 841: 6153}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 661: 3921, 2762, 2763, 2761, 737: 6152}, + {2: 658, 658, 658, 658, 658, 658, 658, 10: 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 51: 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658, 658}, + {2: 657, 657, 657, 657, 657, 657, 657, 10: 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 51: 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657, 657}, + {631, 631, 501: 631, 521: 631}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 664: 5434, 2785, 2786, 2784, 813: 6171}, + {600, 600, 501: 600, 521: 600}, // 3615 - {586, 586, 498: 586, 500: 586, 518: 586, 544: 586}, - {632, 632, 498: 632, 518: 632}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 661: 6155, 2762, 2763, 2761, 737: 6156}, - {1055, 1055, 498: 1055, 500: 6129, 518: 1055, 544: 6130, 652: 3926, 805: 6157}, - {635, 635, 498: 635, 518: 635}, + {632, 632, 501: 632, 521: 632}, + {633, 633, 501: 633, 521: 633}, + {634, 634, 501: 634, 521: 634}, + {635, 635, 501: 635, 521: 635}, + {636, 636, 501: 636, 521: 636}, // 3620 - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 661: 6158, 2762, 2763, 2761}, - {634, 634, 498: 634, 518: 634}, - {588, 588, 498: 588, 500: 6129, 518: 588, 544: 6130, 805: 6132, 841: 6160}, - {637, 637, 498: 637, 518: 637}, - {569: 6166, 582: 6163, 851: 6165, 1298: 6164}, + {637, 637, 501: 637, 521: 637}, + {641, 641, 501: 641, 521: 641}, + {640, 640, 501: 640, 521: 640}, + {639, 639, 501: 639, 521: 639}, + {523: 6182}, // 3625 - {601, 601, 498: 601, 518: 601}, - {2: 2068, 2068, 2068, 2068, 2068, 2068, 2068, 10: 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 50: 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 2068, 479: 2068, 484: 2068, 505: 2068, 2068, 520: 2068, 564: 2068, 647: 2068}, - {668, 668}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 661: 5396, 2762, 2763, 2761, 817: 6170}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 661: 3921, 2762, 2763, 2761, 737: 6167}, + {50: 6183}, + {183: 6185, 309: 6184}, + {645, 645, 501: 645, 521: 645}, + {643, 643, 501: 643, 521: 643}, + {103: 3970, 112: 3969, 839: 6187}, // 3630 - {666, 666, 488: 6168}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 661: 6169, 2762, 2763, 2761}, - {665, 665}, - {667, 667}, - {651, 651, 493: 651, 6189, 501: 651, 1299: 6188}, + {503: 6167, 547: 6168, 809: 6189, 1140: 6188}, + {601, 601, 501: 601, 503: 6167, 521: 601, 547: 6168, 809: 6170, 846: 6191}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 664: 3947, 2785, 2786, 2784, 740: 6190}, + {599, 599, 501: 599, 503: 599, 521: 599, 547: 599}, + {646, 646, 501: 646, 521: 646}, // 3635 - {663, 663, 9: 6186, 493: 663, 663, 501: 663}, - {662, 662, 9: 662, 493: 662, 662, 501: 662}, - {660, 660, 9: 660, 493: 660, 660, 501: 660}, - {659, 659, 9: 659, 493: 659, 659, 501: 659}, - {354: 6185}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 664: 6193, 2785, 2786, 2784, 740: 6194}, + {1069, 1069, 501: 1069, 503: 6167, 521: 1069, 547: 6168, 655: 3952, 809: 6195}, + {649, 649, 501: 649, 521: 649}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 664: 6196, 2785, 2786, 2784}, + {648, 648, 501: 648, 521: 648}, // 3640 - {393: 6184}, - {344: 6183}, - {655, 655, 9: 655, 493: 655, 655, 501: 655}, - {654, 654, 9: 654, 493: 654, 654, 501: 654}, - {653, 653, 9: 653, 493: 653, 653, 501: 653}, + {601, 601, 501: 601, 503: 6167, 521: 601, 547: 6168, 809: 6170, 846: 6198}, + {651, 651, 501: 651, 521: 651}, + {572: 6204, 585: 6201, 838: 6203, 1307: 6202}, + {614, 614, 501: 614, 521: 614}, + {2: 2085, 2085, 2085, 2085, 2085, 2085, 2085, 10: 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 51: 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 2085, 482: 2085, 487: 2085, 508: 2085, 2085, 523: 2085, 567: 2085, 650: 2085}, // 3645 - {652, 652, 9: 652, 493: 652, 652, 501: 652}, - {656, 656, 9: 656, 493: 656, 656, 501: 656}, - {657, 657, 9: 657, 493: 657, 657, 501: 657}, - {658, 658, 9: 658, 493: 658, 658, 501: 658}, - {186: 6175, 229: 6176, 239: 6177, 242: 6174, 264: 6179, 274: 6178, 288: 6181, 292: 6180, 651: 6182, 1130: 6187}, + {682, 682}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 664: 5434, 2785, 2786, 2784, 813: 6208}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 664: 3947, 2785, 2786, 2784, 740: 6205}, + {680, 680, 491: 6206}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 664: 6207, 2785, 2786, 2784}, // 3650 - {661, 661, 9: 661, 493: 661, 661, 501: 661}, - {869, 869, 493: 2728, 501: 2729, 768: 2730, 830: 6192}, - {139: 6190}, - {508: 2736, 733: 4053, 763: 6191}, - {650, 650, 493: 650, 501: 650}, + {679, 679}, + {681, 681}, + {665, 665, 496: 665, 6227, 504: 665, 1308: 6226}, + {677, 677, 9: 6224, 496: 677, 677, 504: 677}, + {676, 676, 9: 676, 496: 676, 676, 504: 676}, // 3655 - {671, 671}, - {673, 673}, - {588, 588, 498: 588, 500: 6129, 518: 588, 544: 6130, 805: 6132, 841: 6198}, - {500: 6129, 544: 6130, 805: 6151, 1132: 6196}, - {588, 588, 498: 588, 500: 6129, 518: 588, 544: 6130, 805: 6132, 841: 6197}, + {674, 674, 9: 674, 496: 674, 674, 504: 674}, + {673, 673, 9: 673, 496: 673, 673, 504: 673}, + {356: 6223}, + {396: 6222}, + {346: 6221}, // 3660 - {633, 633, 498: 633, 518: 633}, - {638, 638, 498: 638, 518: 638}, - {674, 674}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 475: 3490, 570: 5297, 661: 3491, 2762, 2763, 2761, 738: 5296, 777: 6201}, - {649, 649, 481: 6203, 1333: 6202}, + {669, 669, 9: 669, 496: 669, 669, 504: 669}, + {668, 668, 9: 668, 496: 668, 668, 504: 668}, + {667, 667, 9: 667, 496: 667, 667, 504: 667}, + {666, 666, 9: 666, 496: 666, 666, 504: 666}, + {670, 670, 9: 670, 496: 670, 670, 504: 670}, // 3665 - {675, 675}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 5731, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 475: 5736, 661: 3491, 2762, 2763, 2761, 738: 5251, 801: 5738, 821: 5739, 5737, 862: 6204}, - {648, 648, 9: 5740}, - {588, 588, 88: 1735, 163: 1735, 488: 1735, 498: 588, 500: 6129, 518: 588, 544: 6130, 649: 1735, 652: 1735, 805: 6132, 841: 6215}, - {88: 922, 163: 6208, 488: 5465, 649: 922, 860: 6207}, + {671, 671, 9: 671, 496: 671, 671, 504: 671}, + {672, 672, 9: 672, 496: 672, 672, 504: 672}, + {188: 6213, 232: 6214, 242: 6215, 245: 6212, 267: 6217, 277: 6216, 291: 6219, 294: 6218, 654: 6220, 1138: 6225}, + {675, 675, 9: 675, 496: 675, 675, 504: 675}, + {883, 883, 496: 2751, 504: 2752, 773: 2753, 834: 6230}, // 3670 - {88: 6209, 649: 6210}, - {678, 678}, - {247, 247, 498: 2722, 790: 2723, 6214}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 661: 6211, 2762, 2763, 2761}, - {88: 6212}, + {142: 6228}, + {511: 2759, 737: 4079, 767: 6229}, + {664, 664, 496: 664, 504: 664}, + {685, 685}, + {687, 687}, // 3675 - {247, 247, 498: 2722, 790: 2723, 6213}, - {677, 677}, - {679, 679}, - {636, 636, 498: 636, 518: 636}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 661: 3921, 2762, 2763, 2761, 737: 6231}, + {601, 601, 501: 601, 503: 6167, 521: 601, 547: 6168, 809: 6170, 846: 6236}, + {503: 6167, 547: 6168, 809: 6189, 1140: 6234}, + {601, 601, 501: 601, 503: 6167, 521: 601, 547: 6168, 809: 6170, 846: 6235}, + {647, 647, 501: 647, 521: 647}, + {652, 652, 501: 652, 521: 652}, // 3680 - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 661: 3921, 2762, 2763, 2761, 737: 6230}, - {2: 1858, 1858, 1858, 1858, 1858, 1858, 1858, 10: 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 50: 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 564: 4844, 785: 6228}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 661: 3921, 2762, 2763, 2761, 737: 6227}, - {165: 6225}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 475: 3490, 570: 5297, 661: 3491, 2762, 2763, 2761, 738: 5296, 777: 6224}, + {688, 688}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 478: 3516, 573: 5333, 664: 3517, 2785, 2786, 2784, 742: 5332, 781: 6239}, + {663, 663, 484: 6241, 1342: 6240}, + {689, 689}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 5769, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 478: 5774, 664: 3517, 2785, 2786, 2784, 742: 5287, 805: 5776, 825: 5777, 5775, 866: 6242}, // 3685 - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 661: 6223, 2762, 2763, 2761}, - {680, 680}, - {681, 681}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 661: 5004, 2762, 2763, 2761, 886: 6226}, - {682, 682}, + {662, 662, 9: 5778}, + {601, 601, 89: 1751, 165: 1751, 491: 1751, 501: 601, 503: 6167, 521: 601, 547: 6168, 652: 1751, 655: 1751, 809: 6170, 846: 6253}, + {89: 936, 165: 6246, 491: 5503, 652: 936, 864: 6245}, + {89: 6247, 652: 6248}, + {692, 692}, // 3690 - {683, 683}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 661: 5396, 2762, 2763, 2761, 817: 6229}, - {684, 684}, - {685, 685}, - {686, 686}, + {257, 257, 501: 2745, 795: 2746, 6252}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 664: 6249, 2785, 2786, 2784}, + {89: 6250}, + {257, 257, 501: 2745, 795: 2746, 6251}, + {691, 691}, // 3695 - {687, 687}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 2840, 2788, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 2869, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 2874, 2801, 2766, 2783, 2948, 3031, 3020, 2818, 2830, 2941, 2942, 2937, 2895, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 2876, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 2760, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 2880, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 2799, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 2866, 2865, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 2936, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 2824, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 2751, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 2882, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 2752, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3144, 2878, 3145, 3146, 2777, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3159, 3160, 3211, 3210, 3057, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 2918, 2935, 3058, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3177, 3178, 3179, 2931, 3130, 3189, 3190, 3201, 3185, 3186, 3187, 3220, 2877, 473: 3260, 475: 3239, 3258, 479: 3268, 482: 3272, 3276, 485: 3257, 3256, 3295, 492: 3230, 495: 3269, 504: 3275, 3293, 508: 3234, 530: 3264, 564: 3271, 567: 3294, 3349, 570: 3277, 3229, 3231, 3233, 3232, 3261, 3237, 3251, 3348, 3263, 3238, 582: 3270, 3262, 3267, 3273, 3283, 3336, 3284, 3285, 592: 3236, 3314, 595: 3254, 3255, 3309, 3310, 3311, 3312, 3313, 3265, 3291, 3296, 3306, 3307, 3300, 3315, 3316, 3317, 3301, 3319, 3320, 3302, 3318, 3297, 3305, 3303, 3289, 3321, 3322, 3266, 3326, 3278, 3279, 3282, 3325, 3331, 3330, 3332, 3329, 3333, 3328, 3327, 3324, 3274, 3323, 3281, 3280, 3286, 3287, 661: 3244, 2762, 2763, 2761, 709: 3259, 3335, 3245, 3250, 3235, 3308, 3248, 3246, 3247, 3288, 3299, 3298, 3292, 3290, 3304, 6236, 3253, 3334, 3252, 3249}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 2840, 2788, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 2869, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 2874, 2801, 2766, 2783, 2948, 3031, 3020, 2818, 2830, 2941, 2942, 2937, 2895, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 2876, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 2760, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 2880, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 2799, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 2866, 2865, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 2936, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 2824, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 2751, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 2882, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 2752, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3144, 2878, 3145, 3146, 2777, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3159, 3160, 3211, 3210, 3057, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 2918, 2935, 3058, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3177, 3178, 3179, 2931, 3130, 3189, 3190, 3201, 3185, 3186, 3187, 3220, 2877, 473: 3260, 475: 3239, 3258, 2755, 479: 3268, 482: 3272, 3276, 485: 3257, 3256, 3295, 492: 3230, 495: 3269, 504: 3275, 3293, 508: 3234, 530: 3264, 564: 3271, 567: 3294, 2753, 570: 3277, 3229, 3231, 3233, 3232, 3261, 3237, 3251, 3242, 3263, 3238, 582: 3270, 3262, 3267, 3273, 3283, 3336, 3284, 3285, 592: 3236, 3314, 595: 3254, 3255, 3309, 3310, 3311, 3312, 3313, 3265, 3291, 3296, 3306, 3307, 3300, 3315, 3316, 3317, 3301, 3319, 3320, 3302, 3318, 3297, 3305, 3303, 3289, 3321, 3322, 3266, 3326, 3278, 3279, 3282, 3325, 3331, 3330, 3332, 3329, 3333, 3328, 3327, 3324, 3274, 3323, 3281, 3280, 3286, 3287, 648: 2756, 661: 3244, 2762, 2763, 2761, 709: 3259, 3335, 3245, 3250, 3235, 3308, 3248, 3246, 3247, 3288, 3299, 3298, 3292, 3290, 3304, 3243, 3253, 3334, 3252, 3249, 2759, 2758, 2757, 6235}, - {598, 598, 507: 3345, 509: 3343, 3344, 3342, 3340, 734: 3341, 3339}, - {599, 599, 484: 3350, 594: 3351}, + {693, 693}, + {650, 650, 501: 650, 521: 650}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 664: 3947, 2785, 2786, 2784, 740: 6269}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 664: 3947, 2785, 2786, 2784, 740: 6268}, + {2: 1875, 1875, 1875, 1875, 1875, 1875, 1875, 10: 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 51: 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 567: 4870, 790: 6266}, // 3700 - {1955, 1955, 181: 6239, 569: 1955, 1263: 6238}, - {564, 564, 569: 6241, 969: 6240}, - {1954, 1954, 569: 1954}, - {1960, 1960}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 661: 3921, 2762, 2763, 2761, 737: 3922, 795: 6242}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 664: 3947, 2785, 2786, 2784, 740: 6265}, + {167: 6263}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 478: 3516, 573: 5333, 664: 3517, 2785, 2786, 2784, 742: 5332, 781: 6262}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 664: 6261, 2785, 2786, 2784}, + {694, 694}, // 3705 - {563, 563, 9: 3924}, - {2: 1957, 1957, 1957, 1957, 1957, 1957, 1957, 10: 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 50: 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 1957, 564: 6245, 1227: 6244}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 661: 6248, 2762, 2763, 2761}, - {476: 4089, 4088, 810: 6246}, - {194: 6247}, + {695, 695}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 664: 5030, 2785, 2786, 2784, 890: 6264}, + {696, 696}, + {697, 697}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 664: 5434, 2785, 2786, 2784, 813: 6267}, // 3710 - {2: 1956, 1956, 1956, 1956, 1956, 1956, 1956, 10: 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 50: 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956, 1956}, - {1963, 1963}, - {2: 1959, 1959, 1959, 1959, 1959, 1959, 1959, 10: 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 50: 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 1959, 564: 6251, 1228: 6250}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 661: 6253, 2762, 2763, 2761}, - {194: 6252}, + {698, 698}, + {699, 699}, + {700, 700}, + {701, 701}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 2864, 2812, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 2893, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 2898, 2825, 2789, 2807, 2972, 3055, 3044, 2842, 2854, 2965, 2966, 2961, 2919, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 2900, 2885, 2881, 2973, 2997, 2783, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 2904, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 2823, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 2889, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 2890, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 2960, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 2848, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 2774, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 2906, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 2775, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3170, 2902, 3171, 3172, 2801, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3185, 3186, 3237, 3236, 3081, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 2942, 2959, 3082, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3203, 3204, 3205, 2955, 3156, 3215, 3216, 3227, 3211, 3212, 3213, 3246, 2901, 476: 3286, 478: 3265, 3284, 482: 3294, 485: 3298, 3302, 488: 3283, 3282, 3321, 495: 3256, 498: 3295, 507: 3301, 3319, 511: 3260, 533: 3290, 567: 3297, 570: 3320, 3375, 573: 3303, 3255, 3257, 3259, 3258, 3287, 3263, 3277, 3374, 3289, 3264, 585: 3296, 3288, 3293, 3299, 3309, 3362, 3310, 3311, 595: 3262, 3340, 598: 3280, 3281, 3335, 3336, 3337, 3338, 3339, 3291, 3317, 3322, 3332, 3333, 3326, 3341, 3342, 3343, 3327, 3345, 3346, 3328, 3344, 3323, 3331, 3329, 3315, 3347, 3348, 3292, 3352, 3304, 3305, 3308, 3351, 3357, 3356, 3358, 3355, 3359, 3354, 3353, 3350, 3300, 3349, 3307, 3306, 3312, 3313, 664: 3270, 2785, 2786, 2784, 713: 3285, 3361, 3271, 3276, 3261, 3334, 3274, 3272, 3273, 3314, 3325, 3324, 3318, 3316, 3330, 6274, 3279, 3360, 3278, 3275}, // 3715 - {2: 1958, 1958, 1958, 1958, 1958, 1958, 1958, 10: 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 50: 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958, 1958}, - {1964, 1964}, - {508: 2736, 733: 6255}, - {1966, 1966}, - {500: 6265}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 2864, 2812, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 2893, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 2898, 2825, 2789, 2807, 2972, 3055, 3044, 2842, 2854, 2965, 2966, 2961, 2919, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 2900, 2885, 2881, 2973, 2997, 2783, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 2904, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 2823, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 2889, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 2890, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 2960, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 2848, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 2774, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 2906, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 2775, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3170, 2902, 3171, 3172, 2801, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3185, 3186, 3237, 3236, 3081, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 2942, 2959, 3082, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3203, 3204, 3205, 2955, 3156, 3215, 3216, 3227, 3211, 3212, 3213, 3246, 2901, 476: 3286, 478: 3265, 3284, 2778, 482: 3294, 485: 3298, 3302, 488: 3283, 3282, 3321, 495: 3256, 498: 3295, 507: 3301, 3319, 511: 3260, 533: 3290, 567: 3297, 570: 3320, 2776, 573: 3303, 3255, 3257, 3259, 3258, 3287, 3263, 3277, 3268, 3289, 3264, 585: 3296, 3288, 3293, 3299, 3309, 3362, 3310, 3311, 595: 3262, 3340, 598: 3280, 3281, 3335, 3336, 3337, 3338, 3339, 3291, 3317, 3322, 3332, 3333, 3326, 3341, 3342, 3343, 3327, 3345, 3346, 3328, 3344, 3323, 3331, 3329, 3315, 3347, 3348, 3292, 3352, 3304, 3305, 3308, 3351, 3357, 3356, 3358, 3355, 3359, 3354, 3353, 3350, 3300, 3349, 3307, 3306, 3312, 3313, 651: 2779, 664: 3270, 2785, 2786, 2784, 713: 3285, 3361, 3271, 3276, 3261, 3334, 3274, 3272, 3273, 3314, 3325, 3324, 3318, 3316, 3330, 3269, 3279, 3360, 3278, 3275, 2782, 2781, 2780, 6273}, + {611, 611, 510: 3371, 512: 3369, 3370, 3368, 3366, 738: 3367, 3365}, + {612, 612, 487: 3376, 597: 3377}, + {1972, 1972, 183: 6277, 572: 1972, 1271: 6276}, + {577, 577, 572: 6279, 974: 6278}, // 3720 - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 520: 6260, 661: 5396, 2762, 2763, 2761, 817: 6262, 1203: 6261}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 661: 3921, 2762, 2763, 2761, 737: 3922, 795: 6259}, - {9: 3924, 500: 2013, 650: 2013}, - {500: 2015, 650: 2015}, - {9: 6263, 500: 2014, 650: 2014}, + {1971, 1971, 572: 1971}, + {1977, 1977}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 664: 3947, 2785, 2786, 2784, 740: 3948, 786: 6280}, + {576, 576, 9: 3950}, + {2: 1974, 1974, 1974, 1974, 1974, 1974, 1974, 10: 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 51: 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 1974, 567: 6283, 1235: 6282}, // 3725 - {9: 2012, 500: 2012, 650: 2012}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 661: 5396, 2762, 2763, 2761, 817: 6264}, - {9: 2011, 500: 2011, 650: 2011}, - {475: 6266}, - {2010, 2010, 17: 2010, 50: 2010, 52: 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 472: 2010, 653: 2010, 898: 6267}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 664: 6286, 2785, 2786, 2784}, + {479: 4115, 4114, 815: 6284}, + {196: 6285}, + {2: 1973, 1973, 1973, 1973, 1973, 1973, 1973, 10: 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 51: 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973, 1973}, + {1980, 1980}, // 3730 - {2016, 2016, 17: 6294, 50: 6270, 52: 6290, 6283, 6273, 6269, 6277, 6281, 6293, 6276, 6282, 6280, 6278, 6291, 6284, 6272, 6292, 6271, 6274, 6275, 6279, 472: 6285, 653: 6295, 894: 6287, 6286, 6289, 6268, 899: 6288}, - {2009, 2009, 17: 2009, 50: 2009, 52: 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 472: 2009, 653: 2009}, - {499: 2008, 508: 2008}, - {499: 2007, 508: 2007}, - {499: 2006, 508: 2006, 571: 2006, 2006}, + {2: 1976, 1976, 1976, 1976, 1976, 1976, 1976, 10: 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 51: 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 567: 6289, 1236: 6288}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 664: 6291, 2785, 2786, 2784}, + {196: 6290}, + {2: 1975, 1975, 1975, 1975, 1975, 1975, 1975, 10: 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 51: 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975, 1975}, + {1981, 1981}, // 3735 - {499: 2005, 508: 2005, 571: 2005, 2005}, - {499: 2004, 508: 2004, 571: 2004, 2004}, - {499: 2003, 508: 2003, 571: 2003, 2003}, - {499: 2002, 508: 2002, 571: 2002, 2002}, - {499: 2001, 508: 2001, 571: 2001, 2001}, + {511: 2759, 737: 6293}, + {1983, 1983}, + {503: 6303}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 523: 6298, 664: 5434, 2785, 2786, 2784, 813: 6300, 1212: 6299}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 664: 3947, 2785, 2786, 2784, 740: 3948, 786: 6297}, // 3740 - {499: 2000, 508: 2000, 571: 2000, 2000}, - {499: 1999, 508: 1999, 571: 1999, 1999}, - {475: 1998, 499: 1998}, - {475: 1997, 499: 1997}, - {475: 1996, 499: 1996}, + {9: 3950, 503: 2030, 653: 2030}, + {503: 2032, 653: 2032}, + {9: 6301, 503: 2031, 653: 2031}, + {9: 2029, 503: 2029, 653: 2029}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 664: 5434, 2785, 2786, 2784, 813: 6302}, // 3745 - {475: 1995, 499: 1995}, - {2: 1994, 1994, 1994, 1994, 1994, 1994, 1994, 10: 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 50: 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 475: 1994, 489: 1994, 499: 1994, 504: 1994}, - {2: 1993, 1993, 1993, 1993, 1993, 1993, 1993, 10: 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 50: 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 475: 1993, 489: 1993, 499: 1993, 504: 1993}, - {206: 6335}, - {499: 4281, 508: 2047, 736: 6333}, + {9: 2028, 503: 2028, 653: 2028}, + {478: 6304}, + {2027, 2027, 17: 2027, 51: 2027, 53: 2027, 2027, 2027, 2027, 2027, 2027, 2027, 2027, 2027, 2027, 2027, 2027, 2027, 2027, 2027, 2027, 2027, 2027, 2027, 475: 2027, 656: 2027, 902: 6305}, + {2033, 2033, 17: 6332, 51: 6308, 53: 6328, 6321, 6311, 6307, 6315, 6319, 6331, 6314, 6320, 6318, 6316, 6329, 6322, 6310, 6330, 6309, 6312, 6313, 6317, 475: 6323, 656: 6333, 898: 6325, 6324, 6327, 6306, 903: 6326}, + {2026, 2026, 17: 2026, 51: 2026, 53: 2026, 2026, 2026, 2026, 2026, 2026, 2026, 2026, 2026, 2026, 2026, 2026, 2026, 2026, 2026, 2026, 2026, 2026, 2026, 2026, 475: 2026, 656: 2026}, // 3750 - {499: 4281, 508: 2047, 571: 2047, 2047, 736: 6331}, - {475: 2047, 499: 4281, 736: 6329}, - {2: 2047, 2047, 2047, 2047, 2047, 2047, 2047, 10: 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 50: 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 475: 2047, 489: 2047, 499: 4281, 504: 2047, 736: 6324}, - {475: 2047, 499: 4281, 508: 2047, 736: 6319}, - {475: 2047, 499: 4281, 508: 2047, 736: 6316}, + {502: 2025, 511: 2025}, + {502: 2024, 511: 2024}, + {502: 2023, 511: 2023, 574: 2023, 2023}, + {502: 2022, 511: 2022, 574: 2022, 2022}, + {502: 2021, 511: 2021, 574: 2021, 2021}, // 3755 - {499: 4281, 508: 2047, 736: 6311}, - {102: 2047, 111: 2047, 499: 4281, 508: 2047, 736: 6308}, - {187: 2047, 2047, 192: 2047, 499: 4281, 508: 2047, 571: 2047, 2047, 736: 6305}, - {187: 2047, 2047, 192: 2047, 499: 4281, 508: 2047, 571: 2047, 2047, 736: 6296}, - {187: 6302, 6303, 192: 6304, 508: 2736, 571: 6300, 6301, 733: 6299, 927: 6297, 1093: 6298}, + {502: 2020, 511: 2020, 574: 2020, 2020}, + {502: 2019, 511: 2019, 574: 2019, 2019}, + {502: 2018, 511: 2018, 574: 2018, 2018}, + {502: 2017, 511: 2017, 574: 2017, 2017}, + {502: 2016, 511: 2016, 574: 2016, 2016}, // 3760 - {1977, 1977, 17: 1977, 50: 1977, 52: 1977, 1977, 1977, 1977, 1977, 1977, 1977, 1977, 1977, 1977, 1977, 1977, 1977, 1977, 1977, 1977, 1977, 1977, 1977, 1977, 472: 1977, 653: 1977}, - {1976, 1976, 17: 1976, 50: 1976, 52: 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 1976, 472: 1976, 653: 1976}, - {1972, 1972, 17: 1972, 50: 1972, 52: 1972, 1972, 1972, 1972, 1972, 1972, 1972, 1972, 1972, 1972, 1972, 1972, 1972, 1972, 1972, 1972, 1972, 1972, 1972, 1972, 472: 1972, 653: 1972}, - {1971, 1971, 17: 1971, 50: 1971, 52: 1971, 1971, 1971, 1971, 1971, 1971, 1971, 1971, 1971, 1971, 1971, 1971, 1971, 1971, 1971, 1971, 1971, 1971, 1971, 1971, 472: 1971, 653: 1971}, - {1970, 1970, 17: 1970, 50: 1970, 52: 1970, 1970, 1970, 1970, 1970, 1970, 1970, 1970, 1970, 1970, 1970, 1970, 1970, 1970, 1970, 1970, 1970, 1970, 1970, 1970, 472: 1970, 653: 1970}, + {478: 2015, 502: 2015}, + {478: 2014, 502: 2014}, + {478: 2013, 502: 2013}, + {478: 2012, 502: 2012}, + {2: 2011, 2011, 2011, 2011, 2011, 2011, 2011, 10: 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 51: 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 2011, 478: 2011, 492: 2011, 502: 2011, 507: 2011}, // 3765 - {1969, 1969, 17: 1969, 50: 1969, 52: 1969, 1969, 1969, 1969, 1969, 1969, 1969, 1969, 1969, 1969, 1969, 1969, 1969, 1969, 1969, 1969, 1969, 1969, 1969, 1969, 472: 1969, 653: 1969}, - {1968, 1968, 17: 1968, 50: 1968, 52: 1968, 1968, 1968, 1968, 1968, 1968, 1968, 1968, 1968, 1968, 1968, 1968, 1968, 1968, 1968, 1968, 1968, 1968, 1968, 1968, 472: 1968, 653: 1968}, - {1967, 1967, 17: 1967, 50: 1967, 52: 1967, 1967, 1967, 1967, 1967, 1967, 1967, 1967, 1967, 1967, 1967, 1967, 1967, 1967, 1967, 1967, 1967, 1967, 1967, 1967, 472: 1967, 653: 1967}, - {187: 6302, 6303, 192: 6304, 508: 2736, 571: 6300, 6301, 733: 6299, 927: 6306, 1093: 6307}, - {1979, 1979, 17: 1979, 50: 1979, 52: 1979, 1979, 1979, 1979, 1979, 1979, 1979, 1979, 1979, 1979, 1979, 1979, 1979, 1979, 1979, 1979, 1979, 1979, 1979, 1979, 472: 1979, 653: 1979}, + {2: 2010, 2010, 2010, 2010, 2010, 2010, 2010, 10: 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 51: 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 478: 2010, 492: 2010, 502: 2010, 507: 2010}, + {208: 6373}, + {502: 4307, 511: 2064, 741: 6371}, + {502: 4307, 511: 2064, 574: 2064, 2064, 741: 6369}, + {478: 2064, 502: 4307, 741: 6367}, // 3770 - {1978, 1978, 17: 1978, 50: 1978, 52: 1978, 1978, 1978, 1978, 1978, 1978, 1978, 1978, 1978, 1978, 1978, 1978, 1978, 1978, 1978, 1978, 1978, 1978, 1978, 1978, 472: 1978, 653: 1978}, - {102: 3944, 111: 3943, 508: 2736, 733: 2735, 741: 6310, 834: 6309}, - {1981, 1981, 17: 1981, 50: 1981, 52: 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 1981, 472: 1981, 653: 1981}, - {1980, 1980, 17: 1980, 50: 1980, 52: 1980, 1980, 1980, 1980, 1980, 1980, 1980, 1980, 1980, 1980, 1980, 1980, 1980, 1980, 1980, 1980, 1980, 1980, 1980, 1980, 472: 1980, 653: 1980}, - {508: 2736, 733: 2735, 741: 6312}, + {2: 2064, 2064, 2064, 2064, 2064, 2064, 2064, 10: 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 51: 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 478: 2064, 492: 2064, 502: 4307, 507: 2064, 741: 6362}, + {478: 2064, 502: 4307, 511: 2064, 741: 6357}, + {478: 2064, 502: 4307, 511: 2064, 741: 6354}, + {502: 4307, 511: 2064, 741: 6349}, + {103: 2064, 112: 2064, 502: 4307, 511: 2064, 741: 6346}, // 3775 - {212: 6313}, - {547: 6314}, - {108: 6315}, - {1982, 1982, 17: 1982, 50: 1982, 52: 1982, 1982, 1982, 1982, 1982, 1982, 1982, 1982, 1982, 1982, 1982, 1982, 1982, 1982, 1982, 1982, 1982, 1982, 1982, 1982, 472: 1982, 653: 1982}, - {475: 6317, 508: 2736, 733: 2735, 741: 6318}, + {189: 2064, 2064, 194: 2064, 502: 4307, 511: 2064, 574: 2064, 2064, 741: 6343}, + {189: 2064, 2064, 194: 2064, 502: 4307, 511: 2064, 574: 2064, 2064, 741: 6334}, + {189: 6340, 6341, 194: 6342, 511: 2759, 574: 6338, 6339, 737: 6337, 932: 6335, 1101: 6336}, + {1994, 1994, 17: 1994, 51: 1994, 53: 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 1994, 475: 1994, 656: 1994}, + {1993, 1993, 17: 1993, 51: 1993, 53: 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 1993, 475: 1993, 656: 1993}, // 3780 - {1984, 1984, 17: 1984, 50: 1984, 52: 1984, 1984, 1984, 1984, 1984, 1984, 1984, 1984, 1984, 1984, 1984, 1984, 1984, 1984, 1984, 1984, 1984, 1984, 1984, 1984, 472: 1984, 653: 1984}, - {1983, 1983, 17: 1983, 50: 1983, 52: 1983, 1983, 1983, 1983, 1983, 1983, 1983, 1983, 1983, 1983, 1983, 1983, 1983, 1983, 1983, 1983, 1983, 1983, 1983, 1983, 472: 1983, 653: 1983}, - {475: 6321, 508: 2736, 733: 2735, 741: 6320}, - {1985, 1985, 17: 1985, 50: 1985, 52: 1985, 1985, 1985, 1985, 1985, 1985, 1985, 1985, 1985, 1985, 1985, 1985, 1985, 1985, 1985, 1985, 1985, 1985, 1985, 1985, 104: 3464, 3460, 108: 3457, 3472, 112: 3459, 3456, 3458, 3462, 3463, 3468, 3467, 3466, 3470, 3471, 3465, 3469, 3461, 472: 1985, 653: 1985, 796: 6322}, - {1986, 1986, 17: 1986, 50: 1986, 52: 1986, 1986, 1986, 1986, 1986, 1986, 1986, 1986, 1986, 1986, 1986, 1986, 1986, 1986, 1986, 1986, 1986, 1986, 1986, 1986, 472: 1986, 653: 1986}, + {1989, 1989, 17: 1989, 51: 1989, 53: 1989, 1989, 1989, 1989, 1989, 1989, 1989, 1989, 1989, 1989, 1989, 1989, 1989, 1989, 1989, 1989, 1989, 1989, 1989, 1989, 475: 1989, 656: 1989}, + {1988, 1988, 17: 1988, 51: 1988, 53: 1988, 1988, 1988, 1988, 1988, 1988, 1988, 1988, 1988, 1988, 1988, 1988, 1988, 1988, 1988, 1988, 1988, 1988, 1988, 1988, 475: 1988, 656: 1988}, + {1987, 1987, 17: 1987, 51: 1987, 53: 1987, 1987, 1987, 1987, 1987, 1987, 1987, 1987, 1987, 1987, 1987, 1987, 1987, 1987, 1987, 1987, 1987, 1987, 1987, 1987, 475: 1987, 656: 1987}, + {1986, 1986, 17: 1986, 51: 1986, 53: 1986, 1986, 1986, 1986, 1986, 1986, 1986, 1986, 1986, 1986, 1986, 1986, 1986, 1986, 1986, 1986, 1986, 1986, 1986, 1986, 475: 1986, 656: 1986}, + {1985, 1985, 17: 1985, 51: 1985, 53: 1985, 1985, 1985, 1985, 1985, 1985, 1985, 1985, 1985, 1985, 1985, 1985, 1985, 1985, 1985, 1985, 1985, 1985, 1985, 1985, 475: 1985, 656: 1985}, // 3785 - {311: 6323}, - {1987, 1987, 17: 1987, 50: 1987, 52: 1987, 1987, 1987, 1987, 1987, 1987, 1987, 1987, 1987, 1987, 1987, 1987, 1987, 1987, 1987, 1987, 1987, 1987, 1987, 1987, 472: 1987, 653: 1987}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 475: 3490, 489: 6327, 504: 6328, 661: 3491, 2762, 2763, 2761, 738: 6326, 1314: 6325}, - {1988, 1988, 17: 1988, 50: 1988, 52: 1988, 1988, 1988, 1988, 1988, 1988, 1988, 1988, 1988, 1988, 1988, 1988, 1988, 1988, 1988, 1988, 1988, 1988, 1988, 1988, 472: 1988, 653: 1988}, - {256, 256, 17: 256, 50: 256, 52: 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 256, 472: 256, 653: 256}, + {1984, 1984, 17: 1984, 51: 1984, 53: 1984, 1984, 1984, 1984, 1984, 1984, 1984, 1984, 1984, 1984, 1984, 1984, 1984, 1984, 1984, 1984, 1984, 1984, 1984, 1984, 475: 1984, 656: 1984}, + {189: 6340, 6341, 194: 6342, 511: 2759, 574: 6338, 6339, 737: 6337, 932: 6344, 1101: 6345}, + {1996, 1996, 17: 1996, 51: 1996, 53: 1996, 1996, 1996, 1996, 1996, 1996, 1996, 1996, 1996, 1996, 1996, 1996, 1996, 1996, 1996, 1996, 1996, 1996, 1996, 1996, 475: 1996, 656: 1996}, + {1995, 1995, 17: 1995, 51: 1995, 53: 1995, 1995, 1995, 1995, 1995, 1995, 1995, 1995, 1995, 1995, 1995, 1995, 1995, 1995, 1995, 1995, 1995, 1995, 1995, 1995, 475: 1995, 656: 1995}, + {103: 3970, 112: 3969, 511: 2759, 737: 2758, 745: 6348, 839: 6347}, // 3790 - {255, 255, 17: 255, 50: 255, 52: 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 472: 255, 653: 255}, - {254, 254, 17: 254, 50: 254, 52: 254, 254, 254, 254, 254, 254, 254, 254, 254, 254, 254, 254, 254, 254, 254, 254, 254, 254, 254, 254, 472: 254, 653: 254}, - {475: 6330}, - {1989, 1989, 17: 1989, 50: 1989, 52: 1989, 1989, 1989, 1989, 1989, 1989, 1989, 1989, 1989, 1989, 1989, 1989, 1989, 1989, 1989, 1989, 1989, 1989, 1989, 1989, 472: 1989, 653: 1989}, - {508: 2736, 571: 6300, 6301, 733: 6299, 927: 6332}, + {1998, 1998, 17: 1998, 51: 1998, 53: 1998, 1998, 1998, 1998, 1998, 1998, 1998, 1998, 1998, 1998, 1998, 1998, 1998, 1998, 1998, 1998, 1998, 1998, 1998, 1998, 475: 1998, 656: 1998}, + {1997, 1997, 17: 1997, 51: 1997, 53: 1997, 1997, 1997, 1997, 1997, 1997, 1997, 1997, 1997, 1997, 1997, 1997, 1997, 1997, 1997, 1997, 1997, 1997, 1997, 1997, 475: 1997, 656: 1997}, + {511: 2759, 737: 2758, 745: 6350}, + {214: 6351}, + {550: 6352}, // 3795 - {1990, 1990, 17: 1990, 50: 1990, 52: 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 1990, 472: 1990, 653: 1990}, - {508: 2736, 733: 2735, 741: 6334}, - {1991, 1991, 17: 1991, 50: 1991, 52: 1991, 1991, 1991, 1991, 1991, 1991, 1991, 1991, 1991, 1991, 1991, 1991, 1991, 1991, 1991, 1991, 1991, 1991, 1991, 1991, 472: 1991, 653: 1991}, - {2: 1992, 1992, 1992, 1992, 1992, 1992, 1992, 10: 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 50: 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 1992, 475: 1992, 489: 1992, 499: 1992, 504: 1992}, - {650: 6337}, + {109: 6353}, + {1999, 1999, 17: 1999, 51: 1999, 53: 1999, 1999, 1999, 1999, 1999, 1999, 1999, 1999, 1999, 1999, 1999, 1999, 1999, 1999, 1999, 1999, 1999, 1999, 1999, 1999, 475: 1999, 656: 1999}, + {478: 6355, 511: 2759, 737: 2758, 745: 6356}, + {2001, 2001, 17: 2001, 51: 2001, 53: 2001, 2001, 2001, 2001, 2001, 2001, 2001, 2001, 2001, 2001, 2001, 2001, 2001, 2001, 2001, 2001, 2001, 2001, 2001, 2001, 475: 2001, 656: 2001}, + {2000, 2000, 17: 2000, 51: 2000, 53: 2000, 2000, 2000, 2000, 2000, 2000, 2000, 2000, 2000, 2000, 2000, 2000, 2000, 2000, 2000, 2000, 2000, 2000, 2000, 2000, 475: 2000, 656: 2000}, // 3800 - {475: 6338}, - {2010, 2010, 17: 2010, 50: 2010, 52: 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 472: 2010, 653: 2010, 898: 6339}, - {2017, 2017, 17: 6294, 50: 6270, 52: 6290, 6283, 6273, 6269, 6277, 6281, 6293, 6276, 6282, 6280, 6278, 6291, 6284, 6272, 6292, 6271, 6274, 6275, 6279, 472: 6285, 653: 6295, 894: 6287, 6286, 6289, 6268, 899: 6288}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 661: 6341, 2762, 2763, 2761}, - {2018, 2018}, + {478: 6359, 511: 2759, 737: 2758, 745: 6358}, + {2002, 2002, 17: 2002, 51: 2002, 53: 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 2002, 105: 3490, 3486, 109: 3483, 3498, 113: 3485, 3482, 3484, 3488, 3489, 3494, 3493, 3492, 3496, 3497, 3491, 3495, 3487, 475: 2002, 656: 2002, 800: 6360}, + {2003, 2003, 17: 2003, 51: 2003, 53: 2003, 2003, 2003, 2003, 2003, 2003, 2003, 2003, 2003, 2003, 2003, 2003, 2003, 2003, 2003, 2003, 2003, 2003, 2003, 2003, 475: 2003, 656: 2003}, + {313: 6361}, + {2004, 2004, 17: 2004, 51: 2004, 53: 2004, 2004, 2004, 2004, 2004, 2004, 2004, 2004, 2004, 2004, 2004, 2004, 2004, 2004, 2004, 2004, 2004, 2004, 2004, 2004, 475: 2004, 656: 2004}, // 3805 - {2019, 2019}, - {2037, 2037, 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 661: 4143, 2762, 2763, 2761, 744: 6375}, - {2035, 2035}, - {28: 6373}, - {1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 10: 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 50: 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 1768, 499: 6362, 652: 1768}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 478: 3516, 492: 6365, 507: 6366, 664: 3517, 2785, 2786, 2784, 742: 6364, 1323: 6363}, + {2005, 2005, 17: 2005, 51: 2005, 53: 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 2005, 475: 2005, 656: 2005}, + {266, 266, 17: 266, 51: 266, 53: 266, 266, 266, 266, 266, 266, 266, 266, 266, 266, 266, 266, 266, 266, 266, 266, 266, 266, 266, 266, 475: 266, 656: 266}, + {265, 265, 17: 265, 51: 265, 53: 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 265, 475: 265, 656: 265}, + {264, 264, 17: 264, 51: 264, 53: 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 264, 475: 264, 656: 264}, // 3810 - {256: 6349, 473: 2588, 2587, 495: 2586, 504: 2572, 567: 2571, 569: 2585, 646: 2581, 654: 2690, 665: 2707, 709: 2708, 739: 2553, 748: 2709, 2582, 2583, 2584, 2593, 756: 2591, 2590, 2589, 2556, 2715, 2714, 766: 2554, 772: 2689, 774: 2712, 2713, 2711, 779: 2555, 783: 2710, 806: 2716, 825: 6348}, - {2029, 2029}, - {499: 6350}, - {171: 6354, 231: 6357, 249: 6356, 304: 6353, 6359, 6358, 475: 6352, 575: 6355, 1043: 6351}, - {473: 2588, 2587, 495: 2586, 504: 2572, 567: 2571, 569: 2585, 646: 2581, 654: 2690, 665: 2707, 709: 2708, 739: 2553, 748: 2709, 2582, 2583, 2584, 2593, 756: 2591, 2590, 2589, 2556, 2715, 2714, 766: 2554, 772: 2689, 774: 2712, 2713, 2711, 779: 2555, 783: 2710, 806: 2716, 825: 6361}, + {478: 6368}, + {2006, 2006, 17: 2006, 51: 2006, 53: 2006, 2006, 2006, 2006, 2006, 2006, 2006, 2006, 2006, 2006, 2006, 2006, 2006, 2006, 2006, 2006, 2006, 2006, 2006, 2006, 475: 2006, 656: 2006}, + {511: 2759, 574: 6338, 6339, 737: 6337, 932: 6370}, + {2007, 2007, 17: 2007, 51: 2007, 53: 2007, 2007, 2007, 2007, 2007, 2007, 2007, 2007, 2007, 2007, 2007, 2007, 2007, 2007, 2007, 2007, 2007, 2007, 2007, 2007, 475: 2007, 656: 2007}, + {511: 2759, 737: 2758, 745: 6372}, // 3815 - {473: 2588, 2587, 495: 2586, 504: 2572, 567: 2571, 569: 2585, 646: 2581, 654: 2690, 665: 2707, 709: 2708, 739: 2553, 748: 2709, 2582, 2583, 2584, 2593, 756: 2591, 2590, 2589, 2556, 2715, 2714, 766: 2554, 772: 2689, 774: 2712, 2713, 2711, 779: 2555, 783: 2710, 806: 2716, 825: 6360}, - {473: 2026, 2026, 494: 2026, 2026, 504: 2026, 567: 2026, 569: 2026, 646: 2026, 654: 2026, 665: 2026, 739: 2026}, - {473: 2025, 2025, 494: 2025, 2025, 504: 2025, 567: 2025, 569: 2025, 646: 2025, 654: 2025, 665: 2025, 739: 2025}, - {473: 2024, 2024, 494: 2024, 2024, 504: 2024, 567: 2024, 569: 2024, 646: 2024, 654: 2024, 665: 2024, 739: 2024}, - {473: 2023, 2023, 494: 2023, 2023, 504: 2023, 567: 2023, 569: 2023, 646: 2023, 654: 2023, 665: 2023, 739: 2023}, + {2008, 2008, 17: 2008, 51: 2008, 53: 2008, 2008, 2008, 2008, 2008, 2008, 2008, 2008, 2008, 2008, 2008, 2008, 2008, 2008, 2008, 2008, 2008, 2008, 2008, 2008, 475: 2008, 656: 2008}, + {2: 2009, 2009, 2009, 2009, 2009, 2009, 2009, 10: 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 51: 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 2009, 478: 2009, 492: 2009, 502: 2009, 507: 2009}, + {653: 6375}, + {478: 6376}, + {2027, 2027, 17: 2027, 51: 2027, 53: 2027, 2027, 2027, 2027, 2027, 2027, 2027, 2027, 2027, 2027, 2027, 2027, 2027, 2027, 2027, 2027, 2027, 2027, 2027, 475: 2027, 656: 2027, 902: 6377}, // 3820 - {473: 2022, 2022, 494: 2022, 2022, 504: 2022, 567: 2022, 569: 2022, 646: 2022, 654: 2022, 665: 2022, 739: 2022}, - {473: 2021, 2021, 494: 2021, 2021, 504: 2021, 567: 2021, 569: 2021, 646: 2021, 654: 2021, 665: 2021, 739: 2021}, - {473: 2020, 2020, 494: 2020, 2020, 504: 2020, 567: 2020, 569: 2020, 646: 2020, 654: 2020, 665: 2020, 739: 2020}, - {2027, 2027}, - {2028, 2028}, + {2034, 2034, 17: 6332, 51: 6308, 53: 6328, 6321, 6311, 6307, 6315, 6319, 6331, 6314, 6320, 6318, 6316, 6329, 6322, 6310, 6330, 6309, 6312, 6313, 6317, 475: 6323, 656: 6333, 898: 6325, 6324, 6327, 6306, 903: 6326}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 664: 6379, 2785, 2786, 2784}, + {2035, 2035}, + {2036, 2036}, + {2054, 2054, 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 664: 4169, 2785, 2786, 2784, 748: 6413}, // 3825 - {171: 6354, 231: 6357, 249: 6356, 304: 6353, 6359, 6358, 475: 6363, 575: 6355, 1043: 6364}, - {473: 2588, 2587, 494: 6369, 2586, 504: 2572, 567: 2571, 569: 2585, 646: 2581, 654: 2690, 665: 2707, 709: 2708, 739: 2553, 748: 2709, 2582, 2583, 2584, 2593, 756: 2591, 2590, 2589, 2556, 2715, 2714, 766: 2554, 772: 2689, 774: 2712, 2713, 2711, 779: 2555, 783: 2710, 806: 2716, 825: 6370}, - {473: 2588, 2587, 494: 6365, 2586, 504: 2572, 567: 2571, 569: 2585, 646: 2581, 654: 2690, 665: 2707, 709: 2708, 739: 2553, 748: 2709, 2582, 2583, 2584, 2593, 756: 2591, 2590, 2589, 2556, 2715, 2714, 766: 2554, 772: 2689, 774: 2712, 2713, 2711, 779: 2555, 783: 2710, 806: 2716, 825: 6366}, - {28: 6367}, - {2030, 2030}, + {2052, 2052}, + {28: 6411}, + {1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 10: 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 51: 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 1784, 502: 6400, 655: 1784}, + {259: 6387, 476: 2608, 2607, 498: 2606, 507: 2592, 570: 2591, 572: 2605, 649: 2601, 657: 2713, 668: 2730, 713: 2731, 743: 2573, 752: 2732, 2602, 2603, 2604, 2613, 760: 2611, 2610, 2609, 2576, 2738, 2737, 770: 2712, 2574, 777: 2735, 2734, 780: 2736, 783: 2575, 788: 2733, 810: 2739, 829: 6386}, + {2046, 2046}, // 3830 - {508: 2736, 733: 6368}, - {2031, 2031}, - {28: 6371}, - {2032, 2032}, - {508: 2736, 733: 6372}, + {502: 6388}, + {173: 6392, 234: 6395, 252: 6394, 306: 6391, 6397, 6396, 478: 6390, 578: 6393, 1048: 6389}, + {476: 2608, 2607, 498: 2606, 507: 2592, 570: 2591, 572: 2605, 649: 2601, 657: 2713, 668: 2730, 713: 2731, 743: 2573, 752: 2732, 2602, 2603, 2604, 2613, 760: 2611, 2610, 2609, 2576, 2738, 2737, 770: 2712, 2574, 777: 2735, 2734, 780: 2736, 783: 2575, 788: 2733, 810: 2739, 829: 6399}, + {476: 2608, 2607, 498: 2606, 507: 2592, 570: 2591, 572: 2605, 649: 2601, 657: 2713, 668: 2730, 713: 2731, 743: 2573, 752: 2732, 2602, 2603, 2604, 2613, 760: 2611, 2610, 2609, 2576, 2738, 2737, 770: 2712, 2574, 777: 2735, 2734, 780: 2736, 783: 2575, 788: 2733, 810: 2739, 829: 6398}, + {476: 2043, 2043, 497: 2043, 2043, 507: 2043, 570: 2043, 572: 2043, 649: 2043, 657: 2043, 668: 2043, 743: 2043}, // 3835 - {2033, 2033}, - {508: 2736, 733: 6374}, - {2034, 2034}, - {2036, 2036}, - {2044, 2044}, + {476: 2042, 2042, 497: 2042, 2042, 507: 2042, 570: 2042, 572: 2042, 649: 2042, 657: 2042, 668: 2042, 743: 2042}, + {476: 2041, 2041, 497: 2041, 2041, 507: 2041, 570: 2041, 572: 2041, 649: 2041, 657: 2041, 668: 2041, 743: 2041}, + {476: 2040, 2040, 497: 2040, 2040, 507: 2040, 570: 2040, 572: 2040, 649: 2040, 657: 2040, 668: 2040, 743: 2040}, + {476: 2039, 2039, 497: 2039, 2039, 507: 2039, 570: 2039, 572: 2039, 649: 2039, 657: 2039, 668: 2039, 743: 2039}, + {476: 2038, 2038, 497: 2038, 2038, 507: 2038, 570: 2038, 572: 2038, 649: 2038, 657: 2038, 668: 2038, 743: 2038}, // 3840 - {499: 6402}, - {73: 2547, 147: 2549, 155: 2577, 2562, 159: 2546, 396: 6398, 473: 2588, 2587, 495: 2586, 504: 2572, 506: 6381, 567: 2571, 569: 2585, 646: 2581, 653: 2545, 2690, 709: 6379, 739: 2553, 748: 6380, 2582, 2583, 2584, 2593, 756: 2591, 2590, 2589, 2556, 6387, 6386, 766: 2554, 772: 2689, 774: 6384, 6385, 6383, 779: 2555, 783: 6382, 800: 2563, 809: 6396, 844: 6395, 6389, 849: 6390, 859: 6388, 861: 6392, 863: 6393, 6391, 6394, 920: 6397}, - {463, 463, 480: 814, 490: 814, 814, 493: 2728, 501: 2729, 2725, 767: 3891, 3892}, - {465, 465, 480: 815, 490: 815, 815}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 5700, 5695, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 5698, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 5697, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 5702, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 5696, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 5705, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 5703, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 5699, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 505: 3837, 568: 5711, 587: 5710, 647: 3835, 661: 5708, 2762, 2763, 2761, 773: 5712, 831: 5709, 978: 5713, 1158: 5706}, + {476: 2037, 2037, 497: 2037, 2037, 507: 2037, 570: 2037, 572: 2037, 649: 2037, 657: 2037, 668: 2037, 743: 2037}, + {2044, 2044}, + {2045, 2045}, + {173: 6392, 234: 6395, 252: 6394, 306: 6391, 6397, 6396, 478: 6401, 578: 6393, 1048: 6402}, + {476: 2608, 2607, 497: 6407, 2606, 507: 2592, 570: 2591, 572: 2605, 649: 2601, 657: 2713, 668: 2730, 713: 2731, 743: 2573, 752: 2732, 2602, 2603, 2604, 2613, 760: 2611, 2610, 2609, 2576, 2738, 2737, 770: 2712, 2574, 777: 2735, 2734, 780: 2736, 783: 2575, 788: 2733, 810: 2739, 829: 6408}, // 3845 - {470, 470}, - {469, 469}, - {468, 468}, - {467, 467}, - {466, 466}, + {476: 2608, 2607, 497: 6403, 2606, 507: 2592, 570: 2591, 572: 2605, 649: 2601, 657: 2713, 668: 2730, 713: 2731, 743: 2573, 752: 2732, 2602, 2603, 2604, 2613, 760: 2611, 2610, 2609, 2576, 2738, 2737, 770: 2712, 2574, 777: 2735, 2734, 780: 2736, 783: 2575, 788: 2733, 810: 2739, 829: 6404}, + {28: 6405}, + {2047, 2047}, + {511: 2759, 737: 6406}, + {2048, 2048}, // 3850 - {464, 464}, - {462, 462}, - {461, 461}, - {460, 460}, - {459, 459}, + {28: 6409}, + {2049, 2049}, + {511: 2759, 737: 6410}, + {2050, 2050}, + {511: 2759, 737: 6412}, // 3855 - {458, 458}, - {457, 457}, - {456, 456}, - {455, 455}, - {23: 5200}, + {2051, 2051}, + {2053, 2053}, + {2061, 2061}, + {502: 6440}, + {74: 2567, 150: 2569, 157: 2597, 2582, 161: 2566, 399: 6436, 476: 2608, 2607, 498: 2606, 507: 2592, 509: 6419, 570: 2591, 572: 2605, 649: 2601, 656: 2565, 2713, 713: 6417, 743: 2573, 752: 6418, 2602, 2603, 2604, 2613, 760: 2611, 2610, 2609, 2576, 6425, 6424, 770: 2712, 2574, 777: 6422, 6421, 780: 6423, 783: 2575, 788: 6420, 804: 2583, 814: 6434, 849: 6433, 6427, 854: 6428, 863: 6426, 865: 6430, 867: 6431, 6429, 6432, 925: 6435}, // 3860 - {2042, 2042}, - {499: 6399}, - {475: 6400}, - {73: 2547, 147: 2549, 155: 2577, 2562, 159: 2546, 473: 2588, 2587, 495: 2586, 504: 2572, 506: 6381, 567: 2571, 569: 2585, 646: 2581, 653: 2545, 2690, 709: 6379, 739: 2553, 748: 6380, 2582, 2583, 2584, 2593, 756: 2591, 2590, 2589, 2556, 6387, 6386, 766: 2554, 772: 2689, 774: 6384, 6385, 6383, 779: 2555, 783: 6382, 800: 2563, 809: 6396, 844: 6395, 6389, 849: 6390, 859: 6388, 861: 6392, 863: 6393, 6391, 6394, 920: 6401}, - {2041, 2041}, + {473, 473, 483: 828, 493: 828, 828, 496: 2751, 504: 2752, 2748, 772: 3917, 3918}, + {475, 475, 483: 829, 493: 829, 829}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 5738, 5733, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 5736, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 5735, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 5740, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 5734, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 5743, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 5741, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 5737, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 508: 3863, 571: 5749, 590: 5748, 650: 3861, 664: 5746, 2785, 2786, 2784, 779: 5750, 835: 5747, 983: 5751, 1167: 5744}, + {480, 480}, + {479, 479}, // 3865 - {475: 6403}, - {73: 2547, 147: 2549, 155: 2577, 2562, 159: 2546, 473: 2588, 2587, 495: 2586, 504: 2572, 506: 6381, 567: 2571, 569: 2585, 646: 2581, 653: 2545, 2690, 709: 6379, 739: 2553, 748: 6380, 2582, 2583, 2584, 2593, 756: 2591, 2590, 2589, 2556, 6387, 6386, 766: 2554, 772: 2689, 774: 6384, 6385, 6383, 779: 2555, 783: 6382, 800: 2563, 809: 6396, 844: 6395, 6389, 849: 6390, 859: 6388, 861: 6392, 863: 6393, 6391, 6394, 920: 6404}, - {2043, 2043}, - {2: 1057, 1057, 1057, 1057, 1057, 1057, 1057, 10: 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 50: 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 1057, 489: 1057, 500: 1057, 753: 5403, 5402, 5401, 837: 5404, 887: 6406}, - {2: 1045, 1045, 1045, 1045, 1045, 1045, 1045, 10: 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 50: 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 5776, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 1045, 489: 1045, 500: 1045, 1109: 6407}, + {478, 478}, + {477, 477}, + {476, 476}, + {474, 474}, + {472, 472}, // 3870 - {2: 1856, 1856, 1856, 1856, 1856, 1856, 1856, 10: 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 50: 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 1856, 489: 4191, 500: 1856, 855: 6408}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 500: 6409, 661: 5780, 2762, 2763, 2761, 917: 5781, 967: 5779}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 661: 6411, 2762, 2763, 2761, 737: 5793, 917: 5781, 967: 6410}, - {9: 5789, 481: 6414}, - {1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1047, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 50: 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 1055, 478: 1055, 481: 1047, 488: 1055, 1055, 493: 1055, 498: 1055, 502: 1055, 1055, 525: 1055, 652: 6412, 907: 5782}, + {471, 471}, + {470, 470}, + {469, 469}, + {468, 468}, + {467, 467}, // 3875 - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 520: 5785, 661: 6413, 2762, 2763, 2761}, - {1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1047, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 50: 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 1054, 478: 1054, 481: 1047, 488: 1054, 1054, 493: 1054, 498: 1054, 502: 1054, 1054, 525: 1054, 652: 5787, 907: 5786}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 473: 5415, 579: 5410, 661: 3921, 2762, 2763, 2761, 709: 5414, 737: 5413, 798: 5412, 802: 5411, 5417, 852: 5407, 890: 6415}, - {247, 247, 9: 5461, 498: 2722, 790: 2723, 6416}, - {2073, 2073}, + {466, 466}, + {465, 465}, + {23: 5236}, + {2059, 2059}, + {502: 6437}, // 3880 - {2076, 2076, 9: 3590}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 661: 6476, 2762, 2763, 2761}, - {2: 1860, 1860, 1860, 1860, 1860, 1860, 1860, 10: 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 50: 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 564: 4452, 780: 6474}, - {2: 1860, 1860, 1860, 1860, 1860, 1860, 1860, 10: 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 50: 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 564: 4452, 780: 6465}, - {125: 5539, 569: 5538, 1148: 6461}, + {478: 6438}, + {74: 2567, 150: 2569, 157: 2597, 2582, 161: 2566, 476: 2608, 2607, 498: 2606, 507: 2592, 509: 6419, 570: 2591, 572: 2605, 649: 2601, 656: 2565, 2713, 713: 6417, 743: 2573, 752: 6418, 2602, 2603, 2604, 2613, 760: 2611, 2610, 2609, 2576, 6425, 6424, 770: 2712, 2574, 777: 6422, 6421, 780: 6423, 783: 2575, 788: 6420, 804: 2583, 814: 6434, 849: 6433, 6427, 854: 6428, 863: 6426, 865: 6430, 867: 6431, 6429, 6432, 925: 6439}, + {2058, 2058}, + {478: 6441}, + {74: 2567, 150: 2569, 157: 2597, 2582, 161: 2566, 476: 2608, 2607, 498: 2606, 507: 2592, 509: 6419, 570: 2591, 572: 2605, 649: 2601, 656: 2565, 2713, 713: 6417, 743: 2573, 752: 6418, 2602, 2603, 2604, 2613, 760: 2611, 2610, 2609, 2576, 6425, 6424, 770: 2712, 2574, 777: 6422, 6421, 780: 6423, 783: 2575, 788: 6420, 804: 2583, 814: 6434, 849: 6433, 6427, 854: 6428, 863: 6426, 865: 6430, 867: 6431, 6429, 6432, 925: 6442}, // 3885 - {160: 596, 167: 5593}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 564: 6456, 661: 3921, 2762, 2763, 2761, 737: 3922, 795: 6455}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 475: 3490, 564: 6452, 570: 5297, 661: 3491, 2762, 2763, 2761, 738: 5296, 777: 5298, 868: 6451}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 5731, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 475: 5736, 564: 6448, 661: 3491, 2762, 2763, 2761, 738: 5251, 801: 5738, 821: 5739, 5737, 862: 6447}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 661: 3921, 2762, 2763, 2761, 737: 6443}, + {2060, 2060}, + {2: 1071, 1071, 1071, 1071, 1071, 1071, 1071, 10: 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 51: 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 1071, 492: 1071, 503: 1071, 757: 5441, 5440, 5439, 842: 5442, 891: 6444}, + {2: 1059, 1059, 1059, 1059, 1059, 1059, 1059, 10: 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 51: 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 5813, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 1059, 492: 1059, 503: 1059, 1117: 6445}, + {2: 1873, 1873, 1873, 1873, 1873, 1873, 1873, 10: 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 51: 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 1873, 492: 4217, 503: 1873, 859: 6446}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 503: 6447, 664: 5817, 2785, 2786, 2784, 922: 5818, 972: 5816}, // 3890 - {2: 1860, 1860, 1860, 1860, 1860, 1860, 1860, 10: 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 50: 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 564: 4452, 780: 6441}, - {160: 6436}, - {165: 6433}, - {2: 1860, 1860, 1860, 1860, 1860, 1860, 1860, 10: 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 50: 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 564: 4452, 780: 6431}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 661: 3921, 2762, 2763, 2761, 737: 3922, 795: 6432}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 664: 6449, 2785, 2786, 2784, 740: 5830, 922: 5818, 972: 6448}, + {9: 5826, 484: 6452}, + {1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1061, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 51: 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 1069, 481: 1069, 484: 1061, 491: 1069, 1069, 496: 1069, 501: 1069, 505: 1069, 1069, 528: 1069, 655: 6450, 912: 5819}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 523: 5822, 664: 6451, 2785, 2786, 2784}, + {1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1061, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 51: 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 1068, 481: 1068, 484: 1061, 491: 1068, 1068, 496: 1068, 501: 1068, 505: 1068, 1068, 528: 1068, 655: 5824, 912: 5823}, // 3895 - {28, 28, 9: 3924}, - {2: 1860, 1860, 1860, 1860, 1860, 1860, 1860, 10: 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 50: 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 564: 4452, 780: 6434}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 661: 5004, 2762, 2763, 2761, 886: 6435}, - {55, 55}, - {494: 6437}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 476: 5453, 582: 5448, 664: 3947, 2785, 2786, 2784, 713: 5452, 740: 5451, 802: 5450, 806: 5449, 5455, 856: 5445, 894: 6453}, + {257, 257, 9: 5499, 501: 2745, 795: 2746, 6454}, + {2090, 2090}, + {2093, 2093, 9: 3616}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 664: 6515, 2785, 2786, 2784}, // 3900 - {473: 2588, 2587, 495: 2586, 504: 2572, 567: 2571, 569: 2585, 646: 2581, 654: 2690, 709: 5761, 739: 5759, 748: 5762, 2582, 2583, 2584, 2593, 756: 2591, 2590, 2589, 5760, 5764, 5763, 766: 5766, 772: 2689, 774: 5767, 5768, 5765, 846: 6438}, - {179, 179, 481: 6439}, - {473: 2588, 2587, 495: 2586, 504: 2572, 567: 2571, 569: 2585, 646: 2581, 654: 2690, 709: 5761, 739: 5759, 748: 5762, 2582, 2583, 2584, 2593, 756: 2591, 2590, 2589, 5760, 5764, 5763, 766: 5766, 772: 2689, 774: 5767, 5768, 5765, 846: 6440}, - {178, 178}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 661: 6442, 2762, 2763, 2761}, + {2: 1877, 1877, 1877, 1877, 1877, 1877, 1877, 10: 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 51: 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 567: 4478, 784: 6513}, + {2: 1877, 1877, 1877, 1877, 1877, 1877, 1877, 10: 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 51: 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 567: 4478, 784: 6504}, + {126: 5577, 572: 5576, 1156: 6500}, + {162: 609, 169: 5631}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 567: 6495, 664: 3947, 2785, 2786, 2784, 740: 3948, 786: 6494}, // 3905 - {1961, 1961}, - {2055, 2055, 162: 6445, 488: 6444}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 661: 4754, 2762, 2763, 2761, 786: 6446}, - {2053, 2053}, - {2054, 2054, 9: 4755}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 478: 3516, 567: 6491, 573: 5333, 664: 3517, 2785, 2786, 2784, 742: 5332, 781: 5334, 872: 6490}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 5769, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 478: 5774, 567: 6487, 664: 3517, 2785, 2786, 2784, 742: 5287, 805: 5776, 825: 5777, 5775, 866: 6486}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 664: 3947, 2785, 2786, 2784, 740: 6482, 786: 6481}, + {2: 1877, 1877, 1877, 1877, 1877, 1877, 1877, 10: 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 51: 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 567: 4478, 784: 6479}, + {162: 6474}, // 3910 - {2057, 2057, 9: 5740}, - {583: 6449}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 5731, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 475: 5736, 661: 3491, 2762, 2763, 2761, 738: 5251, 801: 5738, 821: 5739, 5737, 862: 6450}, - {2056, 2056, 9: 5740}, - {2059, 2059, 9: 5300}, + {167: 6471}, + {2: 1877, 1877, 1877, 1877, 1877, 1877, 1877, 10: 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 51: 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 567: 4478, 784: 6469}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 664: 3947, 2785, 2786, 2784, 740: 3948, 786: 6470}, + {28, 28, 9: 3950}, + {2: 1877, 1877, 1877, 1877, 1877, 1877, 1877, 10: 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 51: 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 567: 4478, 784: 6472}, // 3915 - {583: 6453}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 475: 3490, 570: 5297, 661: 3491, 2762, 2763, 2761, 738: 5296, 777: 5298, 868: 6454}, - {2058, 2058, 9: 5300}, - {2052, 2052, 9: 3924, 670: 4813, 672: 4812, 911: 6460}, - {583: 6457}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 664: 5030, 2785, 2786, 2784, 890: 6473}, + {55, 55}, + {497: 6475}, + {476: 2608, 2607, 498: 2606, 507: 2592, 570: 2591, 572: 2605, 649: 2601, 657: 2713, 713: 5799, 743: 5797, 752: 5800, 2602, 2603, 2604, 2613, 760: 2611, 2610, 2609, 5798, 5802, 5801, 770: 2712, 5804, 777: 5805, 5803, 780: 5806, 851: 6476}, + {185, 185, 484: 6477}, // 3920 - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 661: 3921, 2762, 2763, 2761, 737: 3922, 795: 6458}, - {2052, 2052, 9: 3924, 670: 4813, 672: 4812, 911: 6459}, - {2060, 2060}, - {2061, 2061}, - {2: 1860, 1860, 1860, 1860, 1860, 1860, 1860, 10: 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 50: 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 564: 4452, 780: 6462}, + {476: 2608, 2607, 498: 2606, 507: 2592, 570: 2591, 572: 2605, 649: 2601, 657: 2713, 713: 5799, 743: 5797, 752: 5800, 2602, 2603, 2604, 2613, 760: 2611, 2610, 2609, 5798, 5802, 5801, 770: 2712, 5804, 777: 5805, 5803, 780: 5806, 851: 6478}, + {184, 184}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 664: 6480, 2785, 2786, 2784}, + {1978, 1978}, + {2072, 2072, 9: 3950}, // 3925 - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 661: 3921, 2762, 2763, 2761, 737: 3922, 795: 6463}, - {2052, 2052, 9: 3924, 670: 4813, 672: 4812, 911: 6464}, - {2065, 2065}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 661: 6466, 2762, 2763, 2761}, - {472: 6467}, + {1067, 1067, 9: 1067, 164: 6484, 491: 6483}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 664: 4780, 2785, 2786, 2784, 791: 6485}, + {2070, 2070}, + {2071, 2071, 9: 4781}, + {2074, 2074, 9: 5778}, // 3930 - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 661: 3921, 2762, 2763, 2761, 737: 6468}, - {2205, 2205, 83: 4235, 497: 4236, 870: 6470, 883: 6469, 1064: 6471}, - {2204, 2204, 83: 4235, 870: 6473}, - {2203, 2203, 497: 4236, 883: 6472}, - {2066, 2066}, + {586: 6488}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 5769, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 478: 5774, 664: 3517, 2785, 2786, 2784, 742: 5287, 805: 5776, 825: 5777, 5775, 866: 6489}, + {2073, 2073, 9: 5778}, + {2076, 2076, 9: 5336}, + {586: 6492}, // 3935 - {2201, 2201}, - {2202, 2202}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 661: 5396, 2762, 2763, 2761, 817: 6475}, - {2067, 2067}, - {2213, 2213}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 478: 3516, 573: 5333, 664: 3517, 2785, 2786, 2784, 742: 5332, 781: 5334, 872: 6493}, + {2075, 2075, 9: 5336}, + {2069, 2069, 9: 3950, 673: 4839, 675: 4838, 916: 6499}, + {586: 6496}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 664: 3947, 2785, 2786, 2784, 740: 3948, 786: 6497}, // 3940 - {2: 1858, 1858, 1858, 1858, 1858, 1858, 1858, 10: 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 50: 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 564: 4844, 785: 6698}, - {649: 6686}, - {649: 2199}, - {649: 2198}, - {649: 2197}, + {2069, 2069, 9: 3950, 673: 4839, 675: 4838, 916: 6498}, + {2077, 2077}, + {2078, 2078}, + {2: 1877, 1877, 1877, 1877, 1877, 1877, 1877, 10: 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 51: 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 567: 4478, 784: 6501}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 664: 3947, 2785, 2786, 2784, 740: 3948, 786: 6502}, // 3945 - {2: 1858, 1858, 1858, 1858, 1858, 1858, 1858, 10: 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 50: 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 564: 4844, 785: 6663}, - {18: 6584, 83: 6583, 103: 2093, 142: 2093, 668: 2093, 1336: 6582}, - {504: 6581}, - {2: 1858, 1858, 1858, 1858, 1858, 1858, 1858, 10: 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 50: 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 564: 4844, 785: 6569}, - {2: 1858, 1858, 1858, 1858, 1858, 1858, 1858, 10: 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 50: 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 475: 1858, 564: 4844, 570: 1858, 785: 6537}, + {2069, 2069, 9: 3950, 673: 4839, 675: 4838, 916: 6503}, + {2082, 2082}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 664: 6505, 2785, 2786, 2784}, + {475: 6506}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 664: 3947, 2785, 2786, 2784, 740: 6507}, // 3950 - {2: 1858, 1858, 1858, 1858, 1858, 1858, 1858, 10: 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 50: 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 475: 1858, 564: 4844, 785: 6531}, - {160: 6526}, - {2: 1858, 1858, 1858, 1858, 1858, 1858, 1858, 10: 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 50: 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 564: 4844, 785: 6490}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 661: 3921, 2762, 2763, 2761, 737: 6491}, - {51, 51, 6: 51, 51, 51, 15: 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 72: 6499, 6496, 6502, 6503, 6504, 6497, 6495, 6505, 6501, 6498, 479: 51, 51, 484: 51, 503: 51, 505: 51, 647: 51, 649: 51, 655: 6500, 913: 6494, 1198: 6492, 1293: 6493}, + {2222, 2222, 84: 4261, 500: 4262, 874: 6509, 887: 6508, 1071: 6510}, + {2221, 2221, 84: 4261, 874: 6512}, + {2220, 2220, 500: 4262, 887: 6511}, + {2083, 2083}, + {2218, 2218}, // 3955 - {396, 396, 6: 4241, 4243, 400, 15: 4260, 2176, 4258, 4197, 4262, 4249, 4278, 4242, 4245, 4244, 4247, 4248, 4250, 4257, 400, 4268, 4269, 4255, 4256, 4261, 4263, 4275, 4274, 4280, 4276, 4273, 4266, 4271, 4272, 4265, 4267, 4270, 4259, 479: 4240, 4277, 484: 2176, 503: 4987, 505: 2176, 647: 2176, 649: 4246, 781: 4251, 792: 4253, 813: 4252, 835: 4254, 838: 4264, 842: 4279, 919: 5615, 1017: 6525}, - {50, 50, 6: 50, 50, 50, 15: 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 72: 6499, 6496, 6502, 6503, 6504, 6497, 6495, 6505, 6501, 6498, 479: 50, 50, 484: 50, 503: 50, 505: 50, 647: 50, 649: 50, 655: 6500, 913: 6524}, - {49, 49, 6: 49, 49, 49, 15: 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 72: 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 479: 49, 49, 484: 49, 503: 49, 505: 49, 647: 49, 649: 49, 655: 49}, - {485: 2047, 2047, 499: 4281, 508: 2047, 660: 6521, 736: 6520}, - {474: 6517, 485: 2047, 2047, 499: 4281, 508: 2047, 736: 6516}, + {2219, 2219}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 664: 5434, 2785, 2786, 2784, 813: 6514}, + {2084, 2084}, + {2230, 2230}, + {2: 1875, 1875, 1875, 1875, 1875, 1875, 1875, 10: 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 51: 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 567: 4870, 790: 6742}, // 3960 - {485: 2047, 2047, 499: 4281, 508: 2047, 736: 6514}, - {42, 42, 6: 42, 42, 42, 15: 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 72: 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 479: 42, 42, 484: 42, 503: 42, 505: 42, 647: 42, 649: 42, 655: 42}, - {74: 6512, 76: 6513, 6510, 655: 6511}, - {485: 2047, 2047, 499: 4281, 508: 2047, 736: 6508}, - {39, 39, 6: 39, 39, 39, 15: 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 72: 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 479: 39, 39, 484: 39, 503: 39, 505: 39, 647: 39, 649: 39, 655: 39}, + {652: 6730}, + {652: 2216}, + {652: 2215}, + {652: 2214}, + {2: 1875, 1875, 1875, 1875, 1875, 1875, 1875, 10: 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 51: 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 567: 4870, 790: 6707}, // 3965 - {485: 2047, 2047, 499: 4281, 508: 2047, 736: 6506}, - {36, 36, 6: 36, 36, 36, 15: 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 72: 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 479: 36, 36, 484: 36, 503: 36, 505: 36, 647: 36, 649: 36, 655: 36}, - {34, 34, 6: 34, 34, 34, 15: 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 72: 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 479: 34, 34, 484: 34, 503: 34, 505: 34, 647: 34, 649: 34, 655: 34}, - {33, 33, 6: 33, 33, 33, 15: 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 72: 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 479: 33, 33, 484: 33, 503: 33, 505: 33, 647: 33, 649: 33, 655: 33}, - {485: 4056, 4057, 508: 2736, 733: 4053, 763: 4055, 814: 6507}, + {18: 6628, 84: 6627, 104: 2110, 145: 2110, 671: 2110, 1345: 6626}, + {507: 6625}, + {2: 1875, 1875, 1875, 1875, 1875, 1875, 1875, 10: 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 51: 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 567: 4870, 790: 6613}, + {2: 1875, 1875, 1875, 1875, 1875, 1875, 1875, 10: 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 51: 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 478: 1875, 567: 4870, 573: 1875, 790: 6576}, + {2: 1875, 1875, 1875, 1875, 1875, 1875, 1875, 10: 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 51: 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 478: 1875, 567: 4870, 790: 6570}, // 3970 - {37, 37, 6: 37, 37, 37, 15: 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 72: 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 479: 37, 37, 484: 37, 503: 37, 505: 37, 647: 37, 649: 37, 655: 37}, - {485: 4056, 4057, 508: 2736, 733: 4053, 763: 4055, 814: 6509}, - {40, 40, 6: 40, 40, 40, 15: 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 72: 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 479: 40, 40, 484: 40, 503: 40, 505: 40, 647: 40, 649: 40, 655: 40}, - {41, 41, 6: 41, 41, 41, 15: 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 72: 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 479: 41, 41, 484: 41, 503: 41, 505: 41, 647: 41, 649: 41, 655: 41}, - {38, 38, 6: 38, 38, 38, 15: 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 72: 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 479: 38, 38, 484: 38, 503: 38, 505: 38, 647: 38, 649: 38, 655: 38}, + {162: 6565}, + {2: 1875, 1875, 1875, 1875, 1875, 1875, 1875, 10: 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 51: 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 567: 4870, 790: 6529}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 664: 3947, 2785, 2786, 2784, 740: 6530}, + {51, 51, 6: 51, 51, 51, 15: 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 51, 73: 6538, 6535, 6541, 6542, 6543, 6536, 6534, 6544, 6540, 6537, 482: 51, 51, 487: 51, 506: 51, 508: 51, 650: 51, 652: 51, 658: 6539, 918: 6533, 1207: 6531, 1301: 6532}, + {406, 406, 6: 4267, 4269, 410, 15: 4286, 2193, 4284, 4223, 4288, 4275, 4304, 4268, 4271, 4270, 4273, 4274, 4276, 4283, 410, 4294, 4295, 4281, 4282, 4287, 4289, 4301, 4300, 4306, 4302, 4299, 4292, 4297, 4298, 4291, 4293, 4296, 4285, 482: 4266, 4303, 487: 2193, 506: 5013, 508: 2193, 650: 2193, 652: 4272, 785: 4277, 797: 4279, 818: 4278, 840: 4280, 843: 4290, 847: 4305, 924: 5653, 1022: 6564}, // 3975 - {35, 35, 6: 35, 35, 35, 15: 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 72: 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 479: 35, 35, 484: 35, 503: 35, 505: 35, 647: 35, 649: 35, 655: 35}, - {32, 32, 6: 32, 32, 32, 15: 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 72: 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 479: 32, 32, 484: 32, 503: 32, 505: 32, 647: 32, 649: 32, 655: 32}, - {485: 4056, 4057, 508: 2736, 733: 4053, 763: 4055, 814: 6515}, - {43, 43, 6: 43, 43, 43, 15: 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 72: 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 479: 43, 43, 484: 43, 503: 43, 505: 43, 647: 43, 649: 43, 655: 43}, - {485: 4056, 4057, 508: 2736, 733: 4053, 763: 4055, 814: 6519}, + {50, 50, 6: 50, 50, 50, 15: 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 50, 73: 6538, 6535, 6541, 6542, 6543, 6536, 6534, 6544, 6540, 6537, 482: 50, 50, 487: 50, 506: 50, 508: 50, 650: 50, 652: 50, 658: 6539, 918: 6563}, + {49, 49, 6: 49, 49, 49, 15: 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 73: 49, 49, 49, 49, 49, 49, 49, 49, 49, 49, 482: 49, 49, 487: 49, 506: 49, 508: 49, 650: 49, 652: 49, 658: 49}, + {488: 2064, 2064, 502: 4307, 511: 2064, 663: 6560, 741: 6559}, + {477: 6556, 488: 2064, 2064, 502: 4307, 511: 2064, 741: 6555}, + {488: 2064, 2064, 502: 4307, 511: 2064, 741: 6553}, // 3980 - {485: 4056, 4057, 508: 2736, 733: 4053, 763: 4055, 814: 6518}, - {44, 44, 6: 44, 44, 44, 15: 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 72: 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 479: 44, 44, 484: 44, 503: 44, 505: 44, 647: 44, 649: 44, 655: 44}, - {45, 45, 6: 45, 45, 45, 15: 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 72: 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 479: 45, 45, 484: 45, 503: 45, 505: 45, 647: 45, 649: 45, 655: 45}, - {485: 4056, 4057, 508: 2736, 733: 4053, 763: 4055, 814: 6523}, - {485: 4056, 4057, 508: 2736, 733: 4053, 763: 4055, 814: 6522}, + {42, 42, 6: 42, 42, 42, 15: 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 73: 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 482: 42, 42, 487: 42, 506: 42, 508: 42, 650: 42, 652: 42, 658: 42}, + {75: 6551, 77: 6552, 6549, 658: 6550}, + {488: 2064, 2064, 502: 4307, 511: 2064, 741: 6547}, + {39, 39, 6: 39, 39, 39, 15: 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 73: 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 39, 482: 39, 39, 487: 39, 506: 39, 508: 39, 650: 39, 652: 39, 658: 39}, + {488: 2064, 2064, 502: 4307, 511: 2064, 741: 6545}, // 3985 - {46, 46, 6: 46, 46, 46, 15: 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 72: 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 479: 46, 46, 484: 46, 503: 46, 505: 46, 647: 46, 649: 46, 655: 46}, - {47, 47, 6: 47, 47, 47, 15: 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 72: 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 479: 47, 47, 484: 47, 503: 47, 505: 47, 647: 47, 649: 47, 655: 47}, - {48, 48, 6: 48, 48, 48, 15: 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 72: 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 479: 48, 48, 484: 48, 503: 48, 505: 48, 647: 48, 649: 48, 655: 48}, - {52, 52}, - {494: 6527}, + {36, 36, 6: 36, 36, 36, 15: 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 73: 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 482: 36, 36, 487: 36, 506: 36, 508: 36, 650: 36, 652: 36, 658: 36}, + {34, 34, 6: 34, 34, 34, 15: 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 73: 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 34, 482: 34, 34, 487: 34, 506: 34, 508: 34, 650: 34, 652: 34, 658: 34}, + {33, 33, 6: 33, 33, 33, 15: 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 73: 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 33, 482: 33, 33, 487: 33, 506: 33, 508: 33, 650: 33, 652: 33, 658: 33}, + {488: 4082, 4083, 511: 2759, 737: 4079, 767: 4081, 819: 6546}, + {37, 37, 6: 37, 37, 37, 15: 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 73: 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 482: 37, 37, 487: 37, 506: 37, 508: 37, 650: 37, 652: 37, 658: 37}, // 3990 - {473: 2588, 2587, 495: 2586, 504: 2572, 567: 2571, 569: 2585, 646: 2581, 654: 2690, 709: 5761, 739: 5759, 748: 5762, 2582, 2583, 2584, 2593, 756: 2591, 2590, 2589, 5760, 5764, 5763, 766: 5766, 772: 2689, 774: 5767, 5768, 5765, 846: 6528}, - {481: 6529}, - {473: 2588, 2587, 495: 2586, 504: 2572, 567: 2571, 569: 2585, 646: 2581, 654: 2690, 709: 5761, 739: 5759, 748: 5762, 2582, 2583, 2584, 2593, 756: 2591, 2590, 2589, 5760, 5764, 5763, 766: 5766, 772: 2689, 774: 5767, 5768, 5765, 846: 6530}, - {180, 180}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 5731, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 475: 5736, 661: 3491, 2762, 2763, 2761, 738: 5251, 801: 5738, 821: 6533, 5737, 1122: 6534, 1288: 6532}, + {488: 4082, 4083, 511: 2759, 737: 4079, 767: 4081, 819: 6548}, + {40, 40, 6: 40, 40, 40, 15: 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 73: 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 482: 40, 40, 487: 40, 506: 40, 508: 40, 650: 40, 652: 40, 658: 40}, + {41, 41, 6: 41, 41, 41, 15: 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 73: 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 41, 482: 41, 41, 487: 41, 506: 41, 508: 41, 650: 41, 652: 41, 658: 41}, + {38, 38, 6: 38, 38, 38, 15: 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 73: 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 38, 482: 38, 38, 487: 38, 506: 38, 508: 38, 650: 38, 652: 38, 658: 38}, + {35, 35, 6: 35, 35, 35, 15: 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 73: 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 35, 482: 35, 35, 487: 35, 506: 35, 508: 35, 650: 35, 652: 35, 658: 35}, // 3995 - {242, 242, 9: 6535}, - {191, 191, 9: 191}, - {190, 190, 9: 190}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 5731, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 475: 5736, 661: 3491, 2762, 2763, 2761, 738: 5251, 801: 5738, 821: 6533, 5737, 1122: 6536}, - {189, 189, 9: 189}, + {32, 32, 6: 32, 32, 32, 15: 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 73: 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 482: 32, 32, 487: 32, 506: 32, 508: 32, 650: 32, 652: 32, 658: 32}, + {488: 4082, 4083, 511: 2759, 737: 4079, 767: 4081, 819: 6554}, + {43, 43, 6: 43, 43, 43, 15: 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 73: 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 43, 482: 43, 43, 487: 43, 506: 43, 508: 43, 650: 43, 652: 43, 658: 43}, + {488: 4082, 4083, 511: 2759, 737: 4079, 767: 4081, 819: 6558}, + {488: 4082, 4083, 511: 2759, 737: 4079, 767: 4081, 819: 6557}, // 4000 - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 475: 3490, 570: 5297, 661: 3491, 2762, 2763, 2761, 738: 5296, 777: 5314, 891: 5315, 922: 6538}, - {225, 225, 9: 5317, 15: 225, 48: 225, 474: 225, 666: 5361, 960: 5360, 6539}, - {233, 233, 15: 233, 48: 233, 474: 6541, 1008: 6540}, - {212, 212, 15: 6558, 48: 6556, 953: 6557, 6555, 1102: 6554, 6553}, - {128: 6546, 6544, 6545, 6547, 1007: 6543, 1196: 6542}, + {44, 44, 6: 44, 44, 44, 15: 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 73: 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 482: 44, 44, 487: 44, 506: 44, 508: 44, 650: 44, 652: 44, 658: 44}, + {45, 45, 6: 45, 45, 45, 15: 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 73: 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 45, 482: 45, 45, 487: 45, 506: 45, 508: 45, 650: 45, 652: 45, 658: 45}, + {488: 4082, 4083, 511: 2759, 737: 4079, 767: 4081, 819: 6562}, + {488: 4082, 4083, 511: 2759, 737: 4079, 767: 4081, 819: 6561}, + {46, 46, 6: 46, 46, 46, 15: 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 73: 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 46, 482: 46, 46, 487: 46, 506: 46, 508: 46, 650: 46, 652: 46, 658: 46}, // 4005 - {232, 232, 15: 232, 48: 232, 128: 6546, 6544, 6545, 6547, 1007: 6552}, - {231, 231, 15: 231, 48: 231, 128: 231, 231, 231, 231}, - {508: 2736, 733: 4053, 763: 6551}, - {508: 2736, 733: 4053, 763: 6550}, - {508: 2736, 733: 4053, 763: 6549}, + {47, 47, 6: 47, 47, 47, 15: 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 73: 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 47, 482: 47, 47, 487: 47, 506: 47, 508: 47, 650: 47, 652: 47, 658: 47}, + {48, 48, 6: 48, 48, 48, 15: 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 73: 48, 48, 48, 48, 48, 48, 48, 48, 48, 48, 482: 48, 48, 487: 48, 506: 48, 508: 48, 650: 48, 652: 48, 658: 48}, + {52, 52}, + {497: 6566}, + {476: 2608, 2607, 498: 2606, 507: 2592, 570: 2591, 572: 2605, 649: 2601, 657: 2713, 713: 5799, 743: 5797, 752: 5800, 2602, 2603, 2604, 2613, 760: 2611, 2610, 2609, 5798, 5802, 5801, 770: 2712, 5804, 777: 5805, 5803, 780: 5806, 851: 6567}, // 4010 - {508: 2736, 733: 4053, 763: 6548}, - {226, 226, 15: 226, 48: 226, 128: 226, 226, 226, 226}, - {227, 227, 15: 227, 48: 227, 128: 227, 227, 227, 227}, - {228, 228, 15: 228, 48: 228, 128: 228, 228, 228, 228}, - {229, 229, 15: 229, 48: 229, 128: 229, 229, 229, 229}, + {484: 6568}, + {476: 2608, 2607, 498: 2606, 507: 2592, 570: 2591, 572: 2605, 649: 2601, 657: 2713, 713: 5799, 743: 5797, 752: 5800, 2602, 2603, 2604, 2613, 760: 2611, 2610, 2609, 5798, 5802, 5801, 770: 2712, 5804, 777: 5805, 5803, 780: 5806, 851: 6569}, + {186, 186}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 5769, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 478: 5774, 664: 3517, 2785, 2786, 2784, 742: 5287, 805: 5776, 825: 6572, 5775, 1130: 6573, 1296: 6571}, + {252, 252, 9: 6574}, // 4015 - {230, 230, 15: 230, 48: 230, 128: 230, 230, 230, 230}, - {243, 243}, - {211, 211, 15: 6558, 48: 6556, 953: 6557, 6568}, - {210, 210, 15: 210, 48: 210}, - {497: 6567, 973: 6566}, + {197, 197, 9: 197}, + {196, 196, 9: 196}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 5769, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 478: 5774, 664: 3517, 2785, 2786, 2784, 742: 5287, 805: 5776, 825: 6572, 5775, 1130: 6575}, + {195, 195, 9: 195}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 478: 3516, 573: 5333, 664: 3517, 2785, 2786, 2784, 742: 5332, 781: 5350, 895: 5351, 927: 6577}, // 4020 - {206, 206, 15: 206, 48: 206, 214: 6562, 479: 6563, 578: 6561}, - {341: 6559}, - {201, 201, 15: 201, 48: 201, 214: 201, 479: 201, 578: 201, 1188: 6560}, - {202, 202, 15: 202, 48: 202, 214: 202, 479: 202, 578: 202}, - {508: 2736, 733: 4053, 763: 6564}, + {235, 235, 6: 235, 9: 5353, 15: 235, 48: 235, 235, 477: 235, 669: 5397, 965: 5396, 6578}, + {243, 243, 6: 243, 15: 243, 48: 243, 243, 477: 6580, 1013: 6579}, + {218, 218, 6: 218, 15: 6597, 48: 218, 6595, 958: 6596, 6594, 1110: 6593, 6592}, + {132: 6585, 6583, 6584, 6586, 1012: 6582, 1205: 6581}, + {242, 242, 6: 242, 15: 242, 48: 242, 242, 132: 6585, 6583, 6584, 6586, 1012: 6591}, // 4025 - {204, 204, 15: 204, 48: 204}, - {203, 203, 15: 203, 48: 203}, - {105: 6565}, - {205, 205, 15: 205, 48: 205}, - {208, 208, 15: 208, 48: 208}, + {241, 241, 6: 241, 15: 241, 48: 241, 241, 132: 241, 241, 241, 241}, + {511: 2759, 737: 4079, 767: 6590}, + {511: 2759, 737: 4079, 767: 6589}, + {511: 2759, 737: 4079, 767: 6588}, + {511: 2759, 737: 4079, 767: 6587}, // 4030 - {207, 207, 15: 207, 48: 207}, - {209, 209, 15: 209, 48: 209}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 661: 6570, 2762, 2763, 2761}, - {500: 6571}, - {475: 6572}, + {236, 236, 6: 236, 15: 236, 48: 236, 236, 132: 236, 236, 236, 236}, + {237, 237, 6: 237, 15: 237, 48: 237, 237, 132: 237, 237, 237, 237}, + {238, 238, 6: 238, 15: 238, 48: 238, 238, 132: 238, 238, 238, 238}, + {239, 239, 6: 239, 15: 239, 48: 239, 239, 132: 239, 239, 239, 239}, + {240, 240, 6: 240, 15: 240, 48: 240, 240, 132: 240, 240, 240, 240}, // 4035 - {1953, 1953, 17: 1953, 50: 1953, 52: 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 140: 6575, 472: 1953, 504: 6574, 653: 1953, 1041: 6573}, - {2010, 2010, 17: 2010, 50: 2010, 52: 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 472: 2010, 653: 2010, 898: 6580}, - {1952, 1952, 17: 1952, 50: 1952, 52: 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 1952, 472: 1952, 653: 1952}, - {206: 6578, 392: 6579, 643: 6577, 651: 6576}, - {1951, 1951, 17: 1951, 50: 1951, 52: 1951, 1951, 1951, 1951, 1951, 1951, 1951, 1951, 1951, 1951, 1951, 1951, 1951, 1951, 1951, 1951, 1951, 1951, 1951, 1951, 472: 1951, 653: 1951}, + {221, 221, 6: 6609, 48: 6610, 1010: 6608}, + {217, 217, 6: 217, 15: 6597, 48: 217, 6595, 958: 6596, 6607}, + {216, 216, 6: 216, 15: 216, 48: 216, 216}, + {500: 6606, 978: 6605}, + {212, 212, 6: 212, 15: 212, 48: 212, 212, 216: 6601, 482: 6602, 581: 6600}, // 4040 - {1950, 1950, 17: 1950, 50: 1950, 52: 1950, 1950, 1950, 1950, 1950, 1950, 1950, 1950, 1950, 1950, 1950, 1950, 1950, 1950, 1950, 1950, 1950, 1950, 1950, 1950, 472: 1950, 653: 1950}, - {1949, 1949, 17: 1949, 50: 1949, 52: 1949, 1949, 1949, 1949, 1949, 1949, 1949, 1949, 1949, 1949, 1949, 1949, 1949, 1949, 1949, 1949, 1949, 1949, 1949, 1949, 472: 1949, 653: 1949}, - {1948, 1948, 17: 1948, 50: 1948, 52: 1948, 1948, 1948, 1948, 1948, 1948, 1948, 1948, 1948, 1948, 1948, 1948, 1948, 1948, 1948, 1948, 1948, 1948, 1948, 1948, 472: 1948, 653: 1948}, - {1965, 1965, 17: 6294, 50: 6270, 52: 6290, 6283, 6273, 6269, 6277, 6281, 6293, 6276, 6282, 6280, 6278, 6291, 6284, 6272, 6292, 6271, 6274, 6275, 6279, 472: 6285, 653: 6295, 894: 6287, 6286, 6289, 6268, 899: 6288}, - {18: 2094, 83: 2094, 103: 2094, 142: 2094, 668: 2094}, + {343: 6598}, + {207, 207, 6: 207, 15: 207, 48: 207, 207, 216: 207, 482: 207, 581: 207, 1197: 6599}, + {208, 208, 6: 208, 15: 208, 48: 208, 208, 216: 208, 482: 208, 581: 208}, + {511: 2759, 737: 4079, 767: 6603}, + {210, 210, 6: 210, 15: 210, 48: 210, 210}, // 4045 - {103: 2089, 142: 6631, 668: 2089, 1338: 6630}, - {499: 6626}, - {165: 6585}, - {2: 1858, 1858, 1858, 1858, 1858, 1858, 1858, 10: 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 50: 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 564: 4844, 785: 6586}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 661: 5004, 2762, 2763, 2761, 886: 6587}, + {209, 209, 6: 209, 15: 209, 48: 209, 209}, + {106: 6604}, + {211, 211, 6: 211, 15: 211, 48: 211, 211}, + {214, 214, 6: 214, 15: 214, 48: 214, 214}, + {213, 213, 6: 213, 15: 213, 48: 213, 213}, // 4050 - {88: 6591, 92: 6596, 6598, 6592, 6597, 6600, 6594, 6590, 6595, 6599, 6593, 874: 6588, 1104: 6589}, - {2528, 2528, 9: 2528, 88: 2528, 92: 2528, 2528, 2528, 2528, 2528, 2528, 2528, 2528, 2528, 2528}, - {54, 54, 9: 6624, 88: 6591, 92: 6596, 6598, 6592, 6597, 6600, 6594, 6590, 6595, 6599, 6593, 874: 6623}, - {475: 2047, 499: 4281, 736: 6621}, - {475: 2047, 499: 4281, 736: 6619}, + {215, 215, 6: 215, 15: 215, 48: 215, 215}, + {253, 253}, + {478: 6612}, + {478: 6611}, + {219, 219}, // 4055 - {499: 4281, 508: 2047, 736: 6617}, - {499: 4281, 508: 2047, 736: 6615}, - {499: 4281, 508: 2047, 736: 6613}, - {475: 2047, 499: 4281, 736: 6611}, - {475: 2047, 499: 4281, 736: 6609}, + {220, 220}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 664: 6614, 2785, 2786, 2784}, + {503: 6615}, + {478: 6616}, + {1970, 1970, 17: 1970, 51: 1970, 53: 1970, 1970, 1970, 1970, 1970, 1970, 1970, 1970, 1970, 1970, 1970, 1970, 1970, 1970, 1970, 1970, 1970, 1970, 1970, 143: 6619, 475: 1970, 507: 6618, 656: 1970, 1046: 6617}, // 4060 - {475: 2047, 499: 4281, 736: 6607}, - {475: 2047, 499: 4281, 736: 6605}, - {475: 2047, 499: 4281, 736: 6603}, - {475: 2047, 499: 4281, 736: 6601}, - {475: 6602}, + {2027, 2027, 17: 2027, 51: 2027, 53: 2027, 2027, 2027, 2027, 2027, 2027, 2027, 2027, 2027, 2027, 2027, 2027, 2027, 2027, 2027, 2027, 2027, 2027, 2027, 475: 2027, 656: 2027, 902: 6624}, + {1969, 1969, 17: 1969, 51: 1969, 53: 1969, 1969, 1969, 1969, 1969, 1969, 1969, 1969, 1969, 1969, 1969, 1969, 1969, 1969, 1969, 1969, 1969, 1969, 1969, 1969, 475: 1969, 656: 1969}, + {208: 6622, 395: 6623, 646: 6621, 654: 6620}, + {1968, 1968, 17: 1968, 51: 1968, 53: 1968, 1968, 1968, 1968, 1968, 1968, 1968, 1968, 1968, 1968, 1968, 1968, 1968, 1968, 1968, 1968, 1968, 1968, 1968, 1968, 475: 1968, 656: 1968}, + {1967, 1967, 17: 1967, 51: 1967, 53: 1967, 1967, 1967, 1967, 1967, 1967, 1967, 1967, 1967, 1967, 1967, 1967, 1967, 1967, 1967, 1967, 1967, 1967, 1967, 1967, 475: 1967, 656: 1967}, // 4065 - {2515, 2515, 9: 2515, 88: 2515, 92: 2515, 2515, 2515, 2515, 2515, 2515, 2515, 2515, 2515, 2515}, - {475: 6604}, - {2516, 2516, 9: 2516, 88: 2516, 92: 2516, 2516, 2516, 2516, 2516, 2516, 2516, 2516, 2516, 2516}, - {475: 6606}, - {2517, 2517, 9: 2517, 88: 2517, 92: 2517, 2517, 2517, 2517, 2517, 2517, 2517, 2517, 2517, 2517}, + {1966, 1966, 17: 1966, 51: 1966, 53: 1966, 1966, 1966, 1966, 1966, 1966, 1966, 1966, 1966, 1966, 1966, 1966, 1966, 1966, 1966, 1966, 1966, 1966, 1966, 1966, 475: 1966, 656: 1966}, + {1965, 1965, 17: 1965, 51: 1965, 53: 1965, 1965, 1965, 1965, 1965, 1965, 1965, 1965, 1965, 1965, 1965, 1965, 1965, 1965, 1965, 1965, 1965, 1965, 1965, 1965, 475: 1965, 656: 1965}, + {1982, 1982, 17: 6332, 51: 6308, 53: 6328, 6321, 6311, 6307, 6315, 6319, 6331, 6314, 6320, 6318, 6316, 6329, 6322, 6310, 6330, 6309, 6312, 6313, 6317, 475: 6323, 656: 6333, 898: 6325, 6324, 6327, 6306, 903: 6326}, + {18: 2111, 84: 2111, 104: 2111, 145: 2111, 671: 2111}, + {104: 2106, 145: 6675, 671: 2106, 1347: 6674}, // 4070 - {475: 6608}, - {2518, 2518, 9: 2518, 88: 2518, 92: 2518, 2518, 2518, 2518, 2518, 2518, 2518, 2518, 2518, 2518}, - {475: 6610}, - {2519, 2519, 9: 2519, 88: 2519, 92: 2519, 2519, 2519, 2519, 2519, 2519, 2519, 2519, 2519, 2519}, - {475: 6612}, + {502: 6670}, + {167: 6629}, + {2: 1875, 1875, 1875, 1875, 1875, 1875, 1875, 10: 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 51: 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 567: 4870, 790: 6630}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 664: 5030, 2785, 2786, 2784, 890: 6631}, + {89: 6635, 93: 6640, 6642, 6636, 6641, 6644, 6638, 6634, 6639, 6643, 6637, 878: 6632, 1112: 6633}, // 4075 - {2520, 2520, 9: 2520, 88: 2520, 92: 2520, 2520, 2520, 2520, 2520, 2520, 2520, 2520, 2520, 2520}, - {508: 2736, 733: 2735, 741: 6614}, - {2521, 2521, 9: 2521, 88: 2521, 92: 2521, 2521, 2521, 2521, 2521, 2521, 2521, 2521, 2521, 2521}, - {508: 2736, 733: 2735, 741: 6616}, - {2522, 2522, 9: 2522, 88: 2522, 92: 2522, 2522, 2522, 2522, 2522, 2522, 2522, 2522, 2522, 2522}, + {2548, 2548, 9: 2548, 89: 2548, 93: 2548, 2548, 2548, 2548, 2548, 2548, 2548, 2548, 2548, 2548}, + {54, 54, 9: 6668, 89: 6635, 93: 6640, 6642, 6636, 6641, 6644, 6638, 6634, 6639, 6643, 6637, 878: 6667}, + {478: 2064, 502: 4307, 741: 6665}, + {478: 2064, 502: 4307, 741: 6663}, + {502: 4307, 511: 2064, 741: 6661}, // 4080 - {508: 2736, 733: 2735, 741: 6618}, - {2523, 2523, 9: 2523, 88: 2523, 92: 2523, 2523, 2523, 2523, 2523, 2523, 2523, 2523, 2523, 2523}, - {475: 6620}, - {2524, 2524, 9: 2524, 88: 2524, 92: 2524, 2524, 2524, 2524, 2524, 2524, 2524, 2524, 2524, 2524}, - {475: 6622}, + {502: 4307, 511: 2064, 741: 6659}, + {502: 4307, 511: 2064, 741: 6657}, + {478: 2064, 502: 4307, 741: 6655}, + {478: 2064, 502: 4307, 741: 6653}, + {478: 2064, 502: 4307, 741: 6651}, // 4085 - {2525, 2525, 9: 2525, 88: 2525, 92: 2525, 2525, 2525, 2525, 2525, 2525, 2525, 2525, 2525, 2525}, - {2527, 2527, 9: 2527, 88: 2527, 92: 2527, 2527, 2527, 2527, 2527, 2527, 2527, 2527, 2527, 2527}, - {88: 6591, 92: 6596, 6598, 6592, 6597, 6600, 6594, 6590, 6595, 6599, 6593, 874: 6625}, - {2526, 2526, 9: 2526, 88: 2526, 92: 2526, 2526, 2526, 2526, 2526, 2526, 2526, 2526, 2526, 2526}, - {3: 6628, 398: 6629, 405: 6627}, + {478: 2064, 502: 4307, 741: 6649}, + {478: 2064, 502: 4307, 741: 6647}, + {478: 2064, 502: 4307, 741: 6645}, + {478: 6646}, + {2535, 2535, 9: 2535, 89: 2535, 93: 2535, 2535, 2535, 2535, 2535, 2535, 2535, 2535, 2535, 2535}, // 4090 - {103: 2092, 142: 2092, 668: 2092}, - {103: 2091, 142: 2091, 668: 2091}, - {103: 2090, 142: 2090, 668: 2090}, - {103: 2087, 668: 6635, 1341: 6634}, - {499: 6632}, + {478: 6648}, + {2536, 2536, 9: 2536, 89: 2536, 93: 2536, 2536, 2536, 2536, 2536, 2536, 2536, 2536, 2536, 2536}, + {478: 6650}, + {2537, 2537, 9: 2537, 89: 2537, 93: 2537, 2537, 2537, 2537, 2537, 2537, 2537, 2537, 2537, 2537}, + {478: 6652}, // 4095 - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 475: 3490, 570: 5297, 661: 3491, 2762, 2763, 2761, 738: 5296, 777: 6633}, - {103: 2088, 668: 2088}, - {103: 6639}, - {384: 6636}, - {142: 6637, 353: 6638}, + {2538, 2538, 9: 2538, 89: 2538, 93: 2538, 2538, 2538, 2538, 2538, 2538, 2538, 2538, 2538, 2538}, + {478: 6654}, + {2539, 2539, 9: 2539, 89: 2539, 93: 2539, 2539, 2539, 2539, 2539, 2539, 2539, 2539, 2539, 2539}, + {478: 6656}, + {2540, 2540, 9: 2540, 89: 2540, 93: 2540, 2540, 2540, 2540, 2540, 2540, 2540, 2540, 2540, 2540}, // 4100 - {103: 2086}, - {103: 2085}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 661: 3921, 2762, 2763, 2761, 737: 6641, 1340: 6640}, - {473: 6643, 478: 2083, 1339: 6642}, - {473: 2084, 478: 2084}, + {511: 2759, 737: 2758, 745: 6658}, + {2541, 2541, 9: 2541, 89: 2541, 93: 2541, 2541, 2541, 2541, 2541, 2541, 2541, 2541, 2541, 2541}, + {511: 2759, 737: 2758, 745: 6660}, + {2542, 2542, 9: 2542, 89: 2542, 93: 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542, 2542}, + {511: 2759, 737: 2758, 745: 6662}, // 4105 - {478: 6649}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 661: 6645, 2762, 2763, 2761, 1190: 6644}, - {9: 6647, 49: 6646}, - {9: 2081, 49: 2081}, - {478: 2082}, + {2543, 2543, 9: 2543, 89: 2543, 93: 2543, 2543, 2543, 2543, 2543, 2543, 2543, 2543, 2543, 2543}, + {478: 6664}, + {2544, 2544, 9: 2544, 89: 2544, 93: 2544, 2544, 2544, 2544, 2544, 2544, 2544, 2544, 2544, 2544}, + {478: 6666}, + {2545, 2545, 9: 2545, 89: 2545, 93: 2545, 2545, 2545, 2545, 2545, 2545, 2545, 2545, 2545, 2545}, // 4110 - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 661: 6648, 2762, 2763, 2761}, - {9: 2080, 49: 2080}, - {473: 2588, 2587, 495: 2586, 569: 2585, 646: 2581, 709: 6653, 748: 6651, 2582, 2583, 2584, 2593, 756: 2591, 2590, 2589, 3880, 6652, 6650, 1200: 6654}, - {2102, 2102, 474: 2102}, - {2101, 2101, 474: 2101, 480: 815, 490: 815, 815}, + {2547, 2547, 9: 2547, 89: 2547, 93: 2547, 2547, 2547, 2547, 2547, 2547, 2547, 2547, 2547, 2547}, + {89: 6635, 93: 6640, 6642, 6636, 6641, 6644, 6638, 6634, 6639, 6643, 6637, 878: 6669}, + {2546, 2546, 9: 2546, 89: 2546, 93: 2546, 2546, 2546, 2546, 2546, 2546, 2546, 2546, 2546, 2546}, + {3: 6672, 401: 6673, 408: 6671}, + {104: 2109, 145: 2109, 671: 2109}, // 4115 - {2100, 2100, 474: 2100}, - {2099, 2099, 474: 2099, 480: 814, 490: 814, 814, 493: 2728, 501: 2729, 2725, 767: 3891, 3892}, - {2079, 2079, 474: 6656, 1337: 6655}, - {2096, 2096}, - {136: 6658, 321: 6657}, + {104: 2108, 145: 2108, 671: 2108}, + {104: 2107, 145: 2107, 671: 2107}, + {104: 2104, 671: 6679, 1350: 6678}, + {502: 6676}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 478: 3516, 573: 5333, 664: 3517, 2785, 2786, 2784, 742: 5332, 781: 6677}, // 4120 - {590: 6661}, - {590: 6659}, - {906: 6660}, - {2077, 2077}, - {906: 6662}, + {104: 2105, 671: 2105}, + {104: 6683}, + {386: 6680}, + {145: 6681, 355: 6682}, + {104: 2103}, // 4125 - {2078, 2078}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 661: 5396, 2762, 2763, 2761, 817: 6664}, - {2185, 2185, 16: 2176, 18: 2176, 21: 2176, 479: 4240, 484: 2176, 505: 2176, 6668, 647: 2176, 781: 6667, 792: 6666, 850: 6670, 932: 6669, 1201: 6665}, - {2194, 2194}, - {16: 3836, 18: 4197, 21: 6678, 484: 6677, 505: 3837, 647: 3835, 773: 6676, 781: 6679}, + {104: 2102}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 664: 3947, 2785, 2786, 2784, 740: 6685, 1349: 6684}, + {476: 6687, 481: 2100, 1348: 6686}, + {476: 2101, 481: 2101}, + {481: 6693}, // 4130 - {2187, 2187, 16: 2187, 18: 2187, 21: 2187, 479: 2187, 484: 2187, 505: 2187, 2187, 647: 2187}, - {168: 6672}, - {2184, 2184, 16: 2176, 18: 2176, 21: 2176, 479: 4240, 484: 2176, 505: 2176, 6668, 647: 2176, 781: 6667, 792: 6666, 850: 6671}, - {2183, 2183, 16: 2183, 18: 2183, 21: 2183, 479: 2183, 484: 2183, 505: 2183, 2183, 647: 2183}, - {2182, 2182, 16: 2182, 18: 2182, 21: 2182, 479: 2182, 484: 2182, 505: 2182, 2182, 647: 2182}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 664: 6689, 2785, 2786, 2784, 1199: 6688}, + {9: 6691, 50: 6690}, + {9: 2098, 50: 2098}, + {481: 2099}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 664: 6692, 2785, 2786, 2784}, // 4135 - {191: 6673}, - {508: 2736, 733: 2735, 741: 6674}, - {2499, 2499, 16: 2499, 18: 2499, 21: 2499, 184: 4980, 479: 2499, 484: 2499, 505: 2499, 2499, 647: 2499, 1077: 6675}, - {2186, 2186, 16: 2186, 18: 2186, 21: 2186, 479: 2186, 484: 2186, 505: 2186, 2186, 647: 2186}, - {2: 2047, 2047, 2047, 2047, 2047, 2047, 2047, 10: 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 50: 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 475: 2047, 499: 4281, 530: 2047, 736: 6684}, + {9: 2097, 50: 2097}, + {476: 2608, 2607, 498: 2606, 572: 2605, 649: 2601, 713: 6697, 752: 6695, 2602, 2603, 2604, 2613, 760: 2611, 2610, 2609, 3906, 6696, 6694, 1209: 6698}, + {2119, 2119, 477: 2119}, + {2118, 2118, 477: 2118, 483: 829, 493: 829, 829}, + {2117, 2117, 477: 2117}, // 4140 - {2: 2047, 2047, 2047, 2047, 2047, 2047, 2047, 10: 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 50: 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 2047, 475: 2047, 499: 4281, 530: 2047, 736: 6682}, - {475: 2047, 499: 4281, 736: 6680}, - {2188, 2188, 16: 2188, 18: 2188, 21: 2188, 479: 2188, 484: 2188, 505: 2188, 2188, 647: 2188}, - {475: 4300, 1039: 6681}, - {2189, 2189, 16: 2189, 18: 2189, 21: 2189, 479: 2189, 484: 2189, 505: 2189, 2189, 647: 2189}, + {2116, 2116, 477: 2116, 483: 828, 493: 828, 828, 496: 2751, 504: 2752, 2748, 772: 3917, 3918}, + {2096, 2096, 477: 6700, 1346: 6699}, + {2113, 2113}, + {141: 6702, 323: 6701}, + {593: 6705}, // 4145 - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 475: 3490, 530: 3489, 661: 3491, 2762, 2763, 2761, 738: 3488, 872: 6683}, - {2190, 2190, 16: 2190, 18: 2190, 21: 2190, 479: 2190, 484: 2190, 505: 2190, 2190, 647: 2190}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 475: 3490, 530: 3761, 661: 3491, 2762, 2763, 2761, 738: 3760, 807: 6685}, - {2191, 2191, 16: 2191, 18: 2191, 21: 2191, 479: 2191, 484: 2191, 505: 2191, 2191, 647: 2191}, - {2: 1858, 1858, 1858, 1858, 1858, 1858, 1858, 10: 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 50: 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 1858, 564: 4844, 785: 6687}, + {593: 6703}, + {911: 6704}, + {2094, 2094}, + {911: 6706}, + {2095, 2095}, // 4150 - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 661: 6688, 2762, 2763, 2761}, - {84: 4877, 472: 1841, 481: 4876, 858: 6690, 1234: 6689}, - {472: 6691}, - {472: 1840}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 661: 3921, 2762, 2763, 2761, 737: 6692}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 664: 5434, 2785, 2786, 2784, 813: 6708}, + {2202, 2202, 16: 2193, 18: 2193, 21: 2193, 482: 4266, 487: 2193, 508: 2193, 6712, 650: 2193, 785: 6711, 797: 6710, 855: 6714, 937: 6713, 1210: 6709}, + {2211, 2211}, + {16: 3862, 18: 4223, 21: 6722, 487: 6721, 508: 3863, 650: 3861, 779: 6720, 785: 6723}, + {2204, 2204, 16: 2204, 18: 2204, 21: 2204, 482: 2204, 487: 2204, 508: 2204, 2204, 650: 2204}, // 4155 - {473: 6693}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 473: 4618, 661: 4143, 2762, 2763, 2761, 744: 4617, 827: 4616, 836: 6694}, - {9: 4627, 49: 6695}, - {1852, 1852, 6: 1852, 19: 1852, 83: 1852, 1852, 1852, 1852, 1852, 89: 1852, 474: 1852, 481: 1852, 497: 1852, 880: 6696}, - {2205, 2205, 6: 4873, 19: 4870, 83: 4235, 4877, 4723, 4430, 4724, 89: 4429, 474: 4872, 481: 4876, 497: 4236, 856: 4874, 858: 4871, 869: 4875, 6470, 879: 4869, 883: 6469, 1064: 6697}, + {170: 6716}, + {2201, 2201, 16: 2193, 18: 2193, 21: 2193, 482: 4266, 487: 2193, 508: 2193, 6712, 650: 2193, 785: 6711, 797: 6710, 855: 6715}, + {2200, 2200, 16: 2200, 18: 2200, 21: 2200, 482: 2200, 487: 2200, 508: 2200, 2200, 650: 2200}, + {2199, 2199, 16: 2199, 18: 2199, 21: 2199, 482: 2199, 487: 2199, 508: 2199, 2199, 650: 2199}, + {193: 6717}, // 4160 - {2212, 2212}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 661: 6699, 2762, 2763, 2761}, - {473: 6700}, - {233: 4906, 241: 4908, 244: 4907, 1140: 6701}, - {49: 6702}, + {511: 2759, 737: 2758, 745: 6718}, + {2519, 2519, 16: 2519, 18: 2519, 21: 2519, 186: 5006, 482: 2519, 487: 2519, 508: 2519, 2519, 650: 2519, 1084: 6719}, + {2203, 2203, 16: 2203, 18: 2203, 21: 2203, 482: 2203, 487: 2203, 508: 2203, 2203, 650: 2203}, + {2: 2064, 2064, 2064, 2064, 2064, 2064, 2064, 10: 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 51: 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 478: 2064, 502: 4307, 533: 2064, 741: 6728}, + {2: 2064, 2064, 2064, 2064, 2064, 2064, 2064, 10: 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 51: 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 2064, 478: 2064, 502: 4307, 533: 2064, 741: 6726}, // 4165 - {472: 6703}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 661: 3921, 2762, 2763, 2761, 737: 6704}, - {473: 6705}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 661: 4143, 2762, 2763, 2761, 744: 4144, 808: 6706}, - {9: 4146, 49: 6707}, + {478: 2064, 502: 4307, 741: 6724}, + {2205, 2205, 16: 2205, 18: 2205, 21: 2205, 482: 2205, 487: 2205, 508: 2205, 2205, 650: 2205}, + {478: 4326, 1044: 6725}, + {2206, 2206, 16: 2206, 18: 2206, 21: 2206, 482: 2206, 487: 2206, 508: 2206, 2206, 650: 2206}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 478: 3516, 533: 3515, 664: 3517, 2785, 2786, 2784, 742: 3514, 876: 6727}, // 4170 - {2214, 2214}, - {2317, 2317}, - {2342, 2342}, - {2348, 2348, 474: 6712, 671: 6711}, - {154: 6719, 687: 6718}, + {2207, 2207, 16: 2207, 18: 2207, 21: 2207, 482: 2207, 487: 2207, 508: 2207, 2207, 650: 2207}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 478: 3516, 533: 3787, 664: 3517, 2785, 2786, 2784, 742: 3786, 811: 6729}, + {2208, 2208, 16: 2208, 18: 2208, 21: 2208, 482: 2208, 487: 2208, 508: 2208, 2208, 650: 2208}, + {2: 1875, 1875, 1875, 1875, 1875, 1875, 1875, 10: 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 51: 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 1875, 567: 4870, 790: 6731}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 664: 6732, 2785, 2786, 2784}, // 4175 - {322: 6714, 331: 6713}, - {52: 6717}, - {330: 6715}, - {154: 6716}, - {2345, 2345}, + {85: 4903, 475: 1858, 484: 4902, 862: 6734, 1242: 6733}, + {475: 6735}, + {475: 1857}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 664: 3947, 2785, 2786, 2784, 740: 6736}, + {476: 6737}, // 4180 - {2346, 2346}, - {2347, 2347}, - {2344, 2344, 673: 5471, 924: 6720}, - {2343, 2343}, - {2350, 2350}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 476: 4644, 664: 4169, 2785, 2786, 2784, 748: 4643, 831: 4642, 841: 6738}, + {9: 4653, 50: 6739}, + {1869, 1869, 6: 1869, 19: 1869, 84: 1869, 1869, 1869, 1869, 1869, 90: 1869, 477: 1869, 484: 1869, 500: 1869, 884: 6740}, + {2222, 2222, 6: 4899, 19: 4896, 84: 4261, 4903, 4749, 4456, 4750, 90: 4455, 477: 4898, 484: 4902, 500: 4262, 860: 4900, 862: 4897, 873: 4901, 6509, 883: 4895, 887: 6508, 1071: 6741}, + {2229, 2229}, // 4185 - {2349, 2349}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 661: 3921, 2762, 2763, 2761, 737: 6736, 795: 6735}, - {569: 6725}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 661: 3921, 2762, 2763, 2761, 737: 6726}, - {488: 6728, 649: 6727}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 664: 6743, 2785, 2786, 2784}, + {476: 6744}, + {236: 4932, 244: 4934, 247: 4933, 1148: 6745}, + {50: 6746}, + {475: 6747}, // 4190 - {908, 908, 3135, 2967, 3002, 2847, 2883, 3004, 2774, 908, 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 474: 908, 591: 5032, 661: 5031, 2762, 2763, 2761, 857: 6733}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 661: 4754, 2762, 2763, 2761, 786: 6729}, - {9: 4755, 649: 6730}, - {908, 908, 3135, 2967, 3002, 2847, 2883, 3004, 2774, 908, 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 474: 908, 591: 5032, 661: 5031, 2762, 2763, 2761, 857: 6731}, - {2366, 2366, 9: 5034, 474: 5015, 804: 6732}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 664: 3947, 2785, 2786, 2784, 740: 6748}, + {476: 6749}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 664: 4169, 2785, 2786, 2784, 748: 4170, 812: 6750}, + {9: 4172, 50: 6751}, + {2231, 2231}, // 4195 - {2374, 2374}, - {2366, 2366, 9: 5034, 474: 5015, 804: 6734}, - {2377, 2377}, - {2369, 2369, 9: 3924, 166: 6756, 474: 2369, 651: 6755, 981: 6766}, - {1053, 1053, 9: 1053, 102: 6741, 166: 1053, 474: 1053, 488: 6738, 649: 6737, 651: 1053, 654: 6739, 669: 6740}, + {2334, 2334}, + {2359, 2359}, + {2365, 2365, 477: 6756, 674: 6755}, + {156: 6763, 691: 6762}, + {324: 6758, 333: 6757}, // 4200 - {908, 908, 3135, 2967, 3002, 2847, 2883, 3004, 2774, 908, 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 474: 908, 591: 5032, 661: 5031, 2762, 2763, 2761, 857: 6764}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 661: 4754, 2762, 2763, 2761, 786: 6751}, - {259: 6747}, - {259: 6744}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 661: 5901, 2762, 2763, 2761, 877: 6742}, + {53: 6761}, + {332: 6759}, + {156: 6760}, + {2362, 2362}, + {2363, 2363}, // 4205 - {2366, 2366, 9: 5903, 474: 5015, 804: 6743}, - {2371, 2371}, - {472: 6745}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 661: 5901, 2762, 2763, 2761, 877: 6746}, - {2372, 2372, 9: 5903}, + {2364, 2364}, + {2361, 2361, 676: 5509, 929: 6764}, + {2360, 2360}, + {2367, 2367}, + {2366, 2366}, // 4210 - {472: 6748}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 661: 5901, 2762, 2763, 2761, 877: 6749}, - {2366, 2366, 9: 5903, 474: 5015, 804: 6750}, - {2373, 2373}, - {2369, 2369, 9: 4755, 102: 6754, 166: 6756, 474: 2369, 649: 6753, 651: 6755, 981: 6752}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 664: 3947, 2785, 2786, 2784, 740: 6780, 786: 6779}, + {572: 6769}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 664: 3947, 2785, 2786, 2784, 740: 6770}, + {491: 6772, 652: 6771}, + {922, 922, 3161, 2991, 3026, 2871, 2907, 3028, 2798, 922, 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 477: 922, 594: 5058, 664: 5057, 2785, 2786, 2784, 861: 6777}, // 4215 - {2366, 2366, 474: 5015, 804: 6763}, - {908, 908, 3135, 2967, 3002, 2847, 2883, 3004, 2774, 908, 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 474: 908, 591: 5032, 661: 5031, 2762, 2763, 2761, 857: 6761}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 661: 5901, 2762, 2763, 2761, 877: 6759}, - {102: 6758}, - {102: 6757}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 664: 4780, 2785, 2786, 2784, 791: 6773}, + {9: 4781, 652: 6774}, + {922, 922, 3161, 2991, 3026, 2871, 2907, 3028, 2798, 922, 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 477: 922, 594: 5058, 664: 5057, 2785, 2786, 2784, 861: 6775}, + {2383, 2383, 9: 5060, 477: 5041, 808: 6776}, + {2391, 2391}, // 4220 - {2367, 2367, 474: 2367}, - {2368, 2368, 474: 2368}, - {2366, 2366, 9: 5903, 474: 5015, 804: 6760}, - {2370, 2370}, - {2366, 2366, 9: 5034, 474: 5015, 804: 6762}, + {2383, 2383, 9: 5060, 477: 5041, 808: 6778}, + {2394, 2394}, + {2386, 2386, 9: 3950, 168: 6800, 477: 2386, 654: 6799, 986: 6810}, + {1067, 1067, 9: 1067, 103: 6785, 168: 1067, 477: 1067, 491: 6782, 652: 6781, 654: 1067, 657: 6783, 672: 6784}, + {922, 922, 3161, 2991, 3026, 2871, 2907, 3028, 2798, 922, 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 477: 922, 594: 5058, 664: 5057, 2785, 2786, 2784, 861: 6808}, // 4225 - {2375, 2375}, - {2376, 2376}, - {2366, 2366, 9: 5034, 474: 5015, 804: 6765}, - {2378, 2378}, - {2366, 2366, 474: 5015, 804: 6767}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 664: 4780, 2785, 2786, 2784, 791: 6795}, + {262: 6791}, + {262: 6788}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 664: 5938, 2785, 2786, 2784, 881: 6786}, + {2383, 2383, 9: 5940, 477: 5041, 808: 6787}, // 4230 - {2379, 2379}, - {569: 6773}, - {494: 6771}, - {569: 2381}, - {488: 6772, 569: 2382}, + {2388, 2388}, + {475: 6789}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 664: 5938, 2785, 2786, 2784, 881: 6790}, + {2389, 2389, 9: 5940}, + {475: 6792}, // 4235 - {569: 2380}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 661: 3921, 2762, 2763, 2761, 737: 6774}, - {488: 5465, 563: 922, 649: 922, 660: 922, 860: 6775}, - {563: 6778, 649: 6777, 660: 6779, 1135: 6776}, - {2387, 2387}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 664: 5938, 2785, 2786, 2784, 881: 6793}, + {2383, 2383, 9: 5940, 477: 5041, 808: 6794}, + {2390, 2390}, + {2386, 2386, 9: 4781, 103: 6798, 168: 6800, 477: 2386, 652: 6797, 654: 6799, 986: 6796}, + {2383, 2383, 477: 5041, 808: 6807}, // 4240 - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 661: 6786, 2762, 2763, 2761}, - {473: 3897, 839: 6781}, - {473: 3897, 839: 6042, 975: 6780}, - {2384, 2384, 9: 6043}, - {507: 6782}, + {922, 922, 3161, 2991, 3026, 2871, 2907, 3028, 2798, 922, 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 477: 922, 594: 5058, 664: 5057, 2785, 2786, 2784, 861: 6805}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 664: 5938, 2785, 2786, 2784, 881: 6803}, + {103: 6802}, + {103: 6801}, + {2384, 2384, 477: 2384}, // 4245 - {473: 3897, 839: 6783}, - {88: 6784}, - {508: 2736, 733: 4053, 763: 6785}, - {2385, 2385}, - {563: 6778, 660: 6779, 1135: 6787}, + {2385, 2385, 477: 2385}, + {2383, 2383, 9: 5940, 477: 5041, 808: 6804}, + {2387, 2387}, + {2383, 2383, 9: 5060, 477: 5041, 808: 6806}, + {2392, 2392}, // 4250 - {2386, 2386}, - {650: 6794}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 661: 3921, 2762, 2763, 2761, 737: 6790}, - {2389, 2389, 650: 6792, 1218: 6791}, - {2390, 2390}, + {2393, 2393}, + {2383, 2383, 9: 5060, 477: 5041, 808: 6809}, + {2395, 2395}, + {2383, 2383, 477: 5041, 808: 6811}, + {2396, 2396}, // 4255 - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 661: 6793, 2762, 2763, 2761}, - {2388, 2388}, - {199: 6795}, - {475: 6796}, - {2391, 2391}, + {572: 6817}, + {497: 6815}, + {572: 2398}, + {491: 6816, 572: 2399}, + {572: 2397}, // 4260 - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 660: 6798, 3921, 2762, 2763, 2761, 737: 6799}, - {265: 6801}, - {2393, 2393, 508: 2736, 733: 4053, 763: 6800}, - {2392, 2392}, - {508: 2736, 733: 4053, 763: 6802}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 664: 3947, 2785, 2786, 2784, 740: 6818}, + {491: 5503, 566: 936, 652: 936, 663: 936, 864: 6819}, + {566: 6822, 652: 6821, 663: 6823, 1143: 6820}, + {2404, 2404}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 664: 6830, 2785, 2786, 2784}, // 4265 - {2394, 2394}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 661: 3921, 2762, 2763, 2761, 737: 6814, 1150: 6813, 1326: 6812}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 475: 3490, 570: 5297, 661: 3491, 2762, 2763, 2761, 738: 5296, 777: 6807, 1155: 6806, 1331: 6805}, - {2398, 2398, 9: 6810}, - {2397, 2397, 9: 2397}, + {476: 3923, 844: 6825}, + {476: 3923, 844: 6079, 980: 6824}, + {2401, 2401, 9: 6080}, + {510: 6826}, + {476: 3923, 844: 6827}, // 4270 - {650: 6808}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 475: 3490, 570: 5297, 661: 3491, 2762, 2763, 2761, 738: 5296, 777: 6809}, - {2395, 2395, 9: 2395}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 475: 3490, 570: 5297, 661: 3491, 2762, 2763, 2761, 738: 5296, 777: 6807, 1155: 6811}, - {2396, 2396, 9: 2396}, + {89: 6828}, + {511: 2759, 737: 4079, 767: 6829}, + {2402, 2402}, + {566: 6822, 663: 6823, 1143: 6831}, + {2403, 2403}, // 4275 - {2402, 2402, 9: 6817}, - {2401, 2401, 9: 2401}, - {650: 6815}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 661: 3921, 2762, 2763, 2761, 737: 6816}, - {2399, 2399, 9: 2399}, + {680: 6846}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 664: 3947, 2785, 2786, 2784, 740: 6842, 786: 6841}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 664: 5434, 2785, 2786, 2784, 813: 6835}, + {2407, 2407, 653: 6837, 680: 6836, 1056: 6838}, + {478: 6840}, // 4280 - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 661: 3921, 2762, 2763, 2761, 737: 6814, 1150: 6818}, - {2400, 2400, 9: 2400}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 2176, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 479: 4240, 484: 2176, 505: 2176, 6668, 647: 2176, 661: 5396, 2762, 2763, 2761, 781: 6667, 792: 6666, 817: 6868, 850: 6670, 932: 6869}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 661: 6858, 2762, 2763, 2761}, - {2: 1860, 1860, 1860, 1860, 1860, 1860, 1860, 10: 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 50: 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 475: 1860, 564: 4452, 570: 1860, 780: 6847}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 664: 6839, 2785, 2786, 2784}, + {2405, 2405}, + {2406, 2406}, + {2409, 2409}, + {9: 3950, 680: 6844}, // 4285 - {279: 6841, 1236: 6840}, - {165: 6836}, - {2: 1860, 1860, 1860, 1860, 1860, 1860, 1860, 10: 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 50: 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 564: 4452, 780: 6825}, - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 661: 3921, 2762, 2763, 2761, 737: 6826}, - {72: 6499, 6496, 6502, 6503, 6504, 6497, 6495, 6505, 6501, 6498, 6830, 655: 6500, 913: 6829, 987: 6828, 1169: 6827}, + {2407, 2407, 9: 1067, 653: 6837, 680: 1067, 1056: 6843}, + {2408, 2408}, + {478: 6845}, + {2410, 2410}, + {478: 6847}, // 4290 - {27, 27, 72: 6499, 6496, 6502, 6503, 6504, 6497, 6495, 6505, 6501, 6498, 6830, 655: 6500, 913: 6829, 987: 6835}, - {26, 26, 72: 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 655: 26}, - {24, 24, 72: 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 655: 24}, - {23, 23, 72: 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 474: 6832, 485: 2047, 2047, 499: 4281, 508: 2047, 655: 23, 736: 6831}, - {485: 4056, 4057, 508: 2736, 733: 4053, 763: 4055, 814: 6834}, + {2411, 2411}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 663: 6849, 3947, 2785, 2786, 2784, 740: 6850}, + {268: 6852}, + {2413, 2413, 511: 2759, 737: 4079, 767: 6851}, + {2412, 2412}, // 4295 - {485: 4056, 4057, 508: 2736, 733: 4053, 763: 4055, 814: 6833}, - {21, 21, 72: 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 655: 21}, - {22, 22, 72: 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 655: 22}, - {25, 25, 72: 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 655: 25}, - {2: 1860, 1860, 1860, 1860, 1860, 1860, 1860, 10: 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 50: 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 1860, 564: 4452, 780: 6837}, + {511: 2759, 737: 4079, 767: 6853}, + {2414, 2414}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 664: 3947, 2785, 2786, 2784, 740: 6865, 1158: 6864, 1335: 6863}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 478: 3516, 573: 5333, 664: 3517, 2785, 2786, 2784, 742: 5332, 781: 6858, 1164: 6857, 1340: 6856}, + {2418, 2418, 9: 6861}, // 4300 - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 3379, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 661: 5004, 2762, 2763, 2761, 886: 6838}, - {88: 6591, 92: 6596, 6598, 6592, 6597, 6600, 6594, 6590, 6595, 6599, 6593, 874: 6588, 1104: 6839}, - {53, 53, 9: 6624, 88: 6591, 92: 6596, 6598, 6592, 6597, 6600, 6594, 6590, 6595, 6599, 6593, 874: 6623}, - {239, 239}, - {400: 6842}, + {2417, 2417, 9: 2417}, + {653: 6859}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 478: 3516, 573: 5333, 664: 3517, 2785, 2786, 2784, 742: 5332, 781: 6860}, + {2415, 2415, 9: 2415}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 478: 3516, 573: 5333, 664: 3517, 2785, 2786, 2784, 742: 5332, 781: 6858, 1164: 6862}, // 4305 - {238, 238, 72: 6843}, - {155: 6844}, - {472: 6845}, - {209: 6846}, - {237, 237}, + {2416, 2416, 9: 2416}, + {2422, 2422, 9: 6868}, + {2421, 2421, 9: 2421}, + {653: 6866}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 664: 3947, 2785, 2786, 2784, 740: 6867}, // 4310 - {2: 3135, 2967, 3002, 2847, 2883, 3004, 2774, 10: 2820, 2775, 2906, 3021, 3014, 3372, 3367, 2886, 3170, 2888, 2862, 2806, 2809, 2798, 2831, 2890, 2891, 2998, 2885, 3022, 3127, 3126, 2773, 2884, 2887, 2898, 2838, 2842, 2894, 3007, 2853, 2934, 2771, 2772, 2933, 3006, 2770, 3019, 2979, 50: 3090, 2852, 2855, 3073, 3070, 3062, 3074, 3077, 3078, 3075, 3079, 3080, 3076, 3069, 3081, 3064, 3065, 3068, 3071, 3072, 3082, 3375, 2920, 2856, 3049, 3048, 3050, 3045, 3044, 3051, 3046, 3047, 2848, 2964, 3034, 3098, 3032, 3099, 3139, 3033, 2860, 2928, 3222, 3226, 3214, 3225, 3227, 3217, 3223, 3224, 3228, 3221, 2789, 2923, 3376, 3369, 3365, 2783, 3388, 3031, 3020, 2818, 3371, 3386, 3387, 3385, 3381, 3023, 3024, 3025, 3026, 3027, 3028, 3030, 3377, 2861, 2857, 2949, 2953, 2954, 2955, 2956, 2944, 2973, 3016, 2975, 2833, 2791, 2974, 2945, 3095, 2925, 2965, 2828, 2881, 3040, 2902, 2792, 2797, 2808, 2823, 3364, 2832, 3035, 2905, 2850, 2947, 2864, 2872, 2778, 2924, 2807, 2827, 3202, 2837, 3084, 3174, 2961, 3133, 2870, 6848, 2900, 3172, 2841, 2849, 2871, 3085, 2782, 2800, 3368, 2821, 2813, 2899, 2834, 3038, 3054, 2982, 3091, 3092, 3056, 2919, 3037, 3093, 3012, 3169, 3120, 3052, 2851, 2952, 3374, 3373, 3010, 2909, 2767, 2793, 2914, 2804, 2805, 2916, 2812, 2822, 2825, 3063, 2875, 2977, 3171, 2943, 2912, 2972, 3015, 2901, 3122, 2859, 3132, 3011, 3101, 3060, 3102, 2921, 2983, 2781, 3150, 3103, 3106, 2787, 3086, 3107, 3384, 2794, 2985, 3152, 3109, 2981, 2802, 3111, 2994, 3018, 3005, 2803, 3156, 3113, 3142, 3013, 2816, 3043, 3209, 3370, 2826, 2829, 2995, 3041, 3161, 3036, 3162, 2989, 3115, 3114, 3039, 3096, 2926, 3389, 3116, 3117, 2930, 2987, 3118, 3094, 2845, 2846, 2960, 3066, 2962, 3175, 3119, 3008, 3009, 2950, 2854, 2991, 3123, 2769, 3184, 2990, 3191, 3192, 3193, 3194, 3196, 3195, 3197, 3198, 3199, 3134, 2867, 2992, 3219, 3218, 2873, 2764, 2765, 3042, 3059, 2776, 3061, 3087, 2768, 2779, 2780, 3104, 3105, 2784, 2971, 2785, 2786, 2958, 3097, 3380, 3108, 2903, 2790, 2795, 2796, 3110, 3112, 2915, 3157, 2917, 2810, 2811, 2927, 2815, 2978, 3203, 2817, 2988, 2922, 2896, 3129, 2996, 3017, 2980, 2911, 3163, 2966, 2984, 3029, 2908, 2997, 2889, 3053, 2892, 2893, 3390, 2929, 2836, 2858, 3136, 3204, 2839, 3000, 3003, 3055, 3089, 3137, 3100, 2939, 2940, 2946, 3167, 3140, 3168, 3141, 3067, 3143, 2970, 2907, 3121, 3001, 2959, 3128, 3125, 3124, 3176, 2986, 3088, 2999, 3188, 3131, 2968, 2863, 3212, 3200, 2868, 2897, 2904, 2969, 3138, 2976, 3393, 2878, 3145, 3146, 3366, 3147, 3148, 3149, 3205, 3151, 3153, 3154, 3155, 2814, 2963, 3206, 2932, 3158, 2819, 3213, 3394, 3160, 3399, 3398, 3391, 3215, 3216, 3165, 3164, 2835, 3166, 3173, 2938, 2843, 2844, 3083, 2957, 3382, 3383, 3392, 2951, 2879, 2993, 2910, 2913, 3207, 3180, 3181, 3182, 3183, 3208, 3395, 3178, 3179, 2931, 3130, 3396, 3397, 3201, 3185, 3186, 3187, 3220, 3378, 475: 3490, 570: 5297, 661: 3491, 2762, 2763, 2761, 738: 5296, 777: 5314, 891: 5315, 922: 6849}, - {1712, 1712, 9: 1712, 15: 1712, 48: 1712, 144: 1712, 473: 6853, 1712, 568: 1712, 666: 1712, 1712}, - {225, 225, 9: 5317, 15: 225, 48: 225, 474: 225, 666: 5361, 960: 5360, 6850}, - {233, 233, 15: 233, 48: 233, 474: 6541, 1008: 6851}, - {212, 212, 15: 6558, 48: 6556, 953: 6557, 6555, 1102: 6554, 6852}, + {2419, 2419, 9: 2419}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 664: 3947, 2785, 2786, 2784, 740: 6865, 1158: 6869}, + {2420, 2420, 9: 2420}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 2193, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 482: 4266, 487: 2193, 508: 2193, 6712, 650: 2193, 664: 5434, 2785, 2786, 2784, 785: 6711, 797: 6710, 813: 6920, 855: 6714, 937: 6921}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 664: 6910, 2785, 2786, 2784}, // 4315 - {241, 241}, - {49: 6854}, - {144: 6855}, - {660: 6856}, - {475: 5330, 893: 6857}, + {2: 1877, 1877, 1877, 1877, 1877, 1877, 1877, 10: 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 51: 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 478: 1877, 567: 4478, 573: 1877, 784: 6898}, + {282: 6892, 1244: 6891}, + {167: 6887}, + {2: 1877, 1877, 1877, 1877, 1877, 1877, 1877, 10: 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 51: 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 567: 4478, 784: 6876}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 664: 3947, 2785, 2786, 2784, 740: 6877}, // 4320 - {240, 240}, - {1953, 1953, 17: 1953, 50: 1953, 52: 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 1953, 140: 6575, 472: 1953, 504: 6574, 653: 1953, 1041: 6859}, - {2010, 2010, 17: 2010, 50: 2010, 52: 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 2010, 472: 2010, 653: 2010, 898: 6860}, - {1947, 1947, 17: 6294, 50: 6270, 52: 6290, 6283, 6273, 6269, 6277, 6281, 6293, 6276, 6282, 6280, 6278, 6291, 6284, 6272, 6292, 6271, 6274, 6275, 6279, 6862, 472: 6285, 653: 6295, 894: 6287, 6286, 6289, 6268, 899: 6288, 1230: 6861}, - {1962, 1962}, + {73: 6538, 6535, 6541, 6542, 6543, 6536, 6534, 6544, 6540, 6537, 6881, 658: 6539, 918: 6880, 992: 6879, 1178: 6878}, + {27, 27, 73: 6538, 6535, 6541, 6542, 6543, 6536, 6534, 6544, 6540, 6537, 6881, 658: 6539, 918: 6880, 992: 6886}, + {26, 26, 73: 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 26, 658: 26}, + {24, 24, 73: 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 658: 24}, + {23, 23, 73: 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 23, 477: 6883, 488: 2064, 2064, 502: 4307, 511: 2064, 658: 23, 741: 6882}, // 4325 - {181: 6864, 651: 6863}, - {564, 564, 569: 6241, 969: 6866}, - {564, 564, 569: 6241, 969: 6865}, - {1945, 1945}, - {1946, 1946}, + {488: 4082, 4083, 511: 2759, 737: 4079, 767: 4081, 819: 6885}, + {488: 4082, 4083, 511: 2759, 737: 4079, 767: 4081, 819: 6884}, + {21, 21, 73: 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 658: 21}, + {22, 22, 73: 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 22, 658: 22}, + {25, 25, 73: 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 25, 658: 25}, // 4330 - {16: 1420, 18: 1420, 21: 1420, 165: 4997, 479: 1420, 484: 1420, 505: 1420, 1420, 647: 1420}, - {16: 2176, 18: 2176, 21: 2176, 479: 4240, 484: 2176, 505: 2176, 6668, 647: 2176, 781: 6667, 792: 6666, 850: 6670, 932: 6870}, - {2195, 2195, 16: 2176, 18: 2176, 21: 2176, 479: 4240, 484: 2176, 505: 2176, 6668, 647: 2176, 781: 6667, 792: 6666, 850: 6671}, - {2196, 2196, 16: 2176, 18: 2176, 21: 2176, 479: 4240, 484: 2176, 505: 2176, 6668, 647: 2176, 781: 6667, 792: 6666, 850: 6671}, - {2045, 2045, 2544, 50: 2568, 71: 2688, 73: 2547, 82: 2579, 147: 2549, 155: 2577, 2562, 159: 2546, 173: 2573, 210: 2598, 215: 2701, 218: 2542, 225: 2597, 2564, 2697, 2548, 243: 2576, 248: 2552, 253: 2574, 255: 2543, 258: 2580, 276: 2566, 280: 2565, 287: 2578, 291: 2567, 303: 2557, 473: 2588, 2587, 495: 2586, 497: 2696, 504: 2572, 506: 2596, 525: 2691, 529: 2560, 567: 2571, 569: 2585, 646: 2581, 649: 2700, 653: 2545, 2690, 665: 2540, 669: 2551, 674: 2550, 679: 2595, 686: 2541, 709: 2592, 739: 2553, 748: 2594, 2582, 2583, 2584, 2593, 756: 2591, 2590, 2589, 2556, 2668, 2667, 766: 2554, 772: 2689, 774: 2649, 2660, 2679, 779: 2555, 783: 2614, 800: 2563, 806: 2602, 809: 2694, 844: 2608, 2609, 849: 2612, 854: 2692, 859: 2652, 861: 2662, 863: 2657, 2666, 2669, 2569, 931: 2621, 935: 2558, 973: 2695, 980: 2600, 982: 2601, 2604, 2605, 986: 2607, 988: 2606, 990: 2603, 992: 2610, 2611, 996: 2570, 2648, 999: 2617, 1009: 2625, 2618, 2619, 2620, 2626, 2624, 2627, 2628, 1018: 2623, 2622, 1021: 2613, 2575, 2559, 2629, 2641, 2630, 2631, 2632, 2634, 2638, 2635, 2639, 2640, 2633, 2637, 2636, 1038: 2599, 1042: 2615, 1044: 2616, 2561, 1049: 2643, 2644, 2642, 1054: 2646, 2647, 2645, 1060: 2685, 2650, 1068: 2699, 2698, 2651, 1075: 2653, 1078: 2682, 1080: 2686, 1105: 2654, 2655, 1108: 2656, 1110: 2661, 1113: 2658, 2659, 1116: 2684, 2663, 2693, 2665, 2664, 1125: 2670, 1127: 2672, 2671, 2675, 1131: 2676, 1133: 2683, 1136: 2673, 6872, 1141: 2674, 1152: 2677, 2678, 2681, 1156: 2680}, + {2: 1877, 1877, 1877, 1877, 1877, 1877, 1877, 10: 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 51: 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 1877, 567: 4478, 784: 6888}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 3405, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 664: 5030, 2785, 2786, 2784, 890: 6889}, + {89: 6635, 93: 6640, 6642, 6636, 6641, 6644, 6638, 6634, 6639, 6643, 6637, 878: 6632, 1112: 6890}, + {53, 53, 9: 6668, 89: 6635, 93: 6640, 6642, 6636, 6641, 6644, 6638, 6634, 6639, 6643, 6637, 878: 6667}, + {249, 249}, // 4335 - {444, 444}, + {403: 6893}, + {248, 248, 73: 6894}, + {157: 6895}, + {475: 6896}, + {211: 6897}, + // 4340 + {247, 247}, + {2: 3161, 2991, 3026, 2871, 2907, 3028, 2798, 10: 2844, 2799, 2930, 3045, 3038, 3398, 3393, 2910, 3196, 2912, 2886, 2830, 2833, 2822, 2855, 2914, 2915, 3022, 2909, 3046, 3152, 3151, 2797, 2908, 2911, 2922, 2862, 2866, 2918, 3031, 2877, 2958, 2795, 2796, 2957, 3030, 2794, 3043, 2790, 3003, 51: 3114, 2876, 2879, 3097, 3094, 3086, 3098, 3101, 3102, 3099, 3103, 3104, 3100, 3093, 3105, 3088, 3089, 3092, 3095, 3096, 3106, 3401, 2944, 2880, 3073, 3072, 3074, 3069, 3068, 3075, 3070, 3071, 2872, 2988, 3058, 3122, 3056, 3123, 3165, 3057, 2884, 2952, 3248, 3252, 3240, 3251, 3253, 3243, 3249, 3250, 3254, 3247, 2813, 2947, 3402, 3395, 3391, 2807, 3414, 3055, 3044, 2842, 3397, 3412, 3413, 3411, 3407, 3047, 3048, 3049, 3050, 3051, 3052, 3054, 3403, 2885, 2881, 2973, 2997, 3390, 2999, 2977, 2978, 2979, 2980, 2968, 2815, 2998, 3125, 3040, 2857, 2969, 3119, 2949, 2989, 2852, 2905, 3064, 2926, 2816, 2821, 2832, 2847, 2856, 3059, 2929, 2874, 2971, 2888, 2896, 2802, 2948, 2831, 2851, 3228, 2861, 3108, 3200, 2985, 3159, 2894, 6899, 2924, 3198, 2865, 2873, 2895, 3109, 2806, 2824, 3394, 2845, 2837, 2923, 2858, 3062, 3078, 3006, 3115, 3116, 3080, 2943, 3061, 3117, 3036, 3195, 3145, 3076, 2875, 2976, 3148, 3399, 3034, 2933, 2791, 2817, 2938, 2828, 2829, 2940, 2836, 2846, 2849, 3087, 2899, 3001, 3197, 2967, 2936, 2996, 3039, 2925, 3147, 2883, 3158, 3400, 3035, 3126, 3084, 3127, 2945, 3007, 2805, 3176, 3128, 3131, 2811, 3110, 3132, 3410, 2818, 3009, 3178, 3134, 3005, 2826, 3136, 3018, 3042, 3029, 2827, 3182, 3138, 3168, 3037, 2840, 3067, 3235, 3396, 2850, 2853, 3019, 3065, 3187, 3060, 3188, 3013, 3140, 3139, 3063, 3120, 2950, 3415, 3141, 3142, 2954, 3011, 3143, 3118, 2869, 2870, 2984, 3090, 2986, 3201, 3144, 3032, 3033, 2974, 2878, 3015, 2793, 3210, 3014, 3217, 3218, 3219, 3220, 3222, 3221, 3223, 3224, 3225, 3160, 2891, 3016, 3245, 3244, 2897, 2787, 2788, 3066, 3083, 2800, 3085, 3111, 2792, 2803, 2804, 3129, 3130, 2808, 2995, 2809, 2810, 2982, 3121, 3406, 3133, 2927, 2814, 2819, 2820, 3135, 3137, 2939, 3183, 2941, 2834, 2835, 2951, 2839, 3002, 3229, 2841, 3012, 2946, 2920, 3155, 3020, 3041, 3004, 2935, 3189, 2990, 3008, 3053, 2932, 3021, 2913, 3077, 2916, 2917, 3416, 2953, 2860, 2882, 3162, 3230, 2863, 3024, 3027, 3079, 3113, 3163, 3124, 2963, 2964, 2970, 3193, 3166, 3194, 3167, 3091, 3169, 2994, 2931, 3146, 3025, 2983, 3153, 3150, 3154, 3149, 3202, 3010, 3112, 3023, 3214, 3157, 2992, 2887, 3238, 3226, 2892, 2921, 2928, 2993, 3164, 3000, 3419, 2902, 3171, 3172, 3392, 3173, 3174, 3175, 3231, 3177, 3179, 3180, 3181, 2838, 2987, 3232, 2956, 3184, 2843, 3239, 3420, 3186, 3425, 3424, 3417, 3241, 3242, 3191, 3190, 2859, 3192, 3199, 2962, 2867, 2868, 3107, 2981, 3408, 3409, 3418, 2975, 2903, 3017, 2934, 2937, 3233, 3206, 3207, 3208, 3209, 3234, 3421, 3204, 3205, 2955, 3156, 3422, 3423, 3227, 3211, 3212, 3213, 3246, 3404, 478: 3516, 573: 5333, 664: 3517, 2785, 2786, 2784, 742: 5332, 781: 5350, 895: 5351, 927: 6900}, + {1728, 1728, 6: 1728, 9: 1728, 15: 1728, 48: 1728, 1728, 147: 1728, 476: 6905, 1728, 571: 1728, 669: 1728, 1728}, + {235, 235, 6: 235, 9: 5353, 15: 235, 48: 235, 235, 477: 235, 669: 5397, 965: 5396, 6901}, + {243, 243, 6: 243, 15: 243, 48: 243, 243, 477: 6580, 1013: 6902}, + // 4345 + {218, 218, 6: 218, 15: 6597, 48: 218, 6595, 958: 6596, 6594, 1110: 6593, 6903}, + {221, 221, 6: 6609, 48: 6610, 1010: 6904}, + {251, 251}, + {50: 6906}, + {147: 6907}, + // 4350 + {663: 6908}, + {478: 5366, 897: 6909}, + {250, 250}, + {1970, 1970, 17: 1970, 51: 1970, 53: 1970, 1970, 1970, 1970, 1970, 1970, 1970, 1970, 1970, 1970, 1970, 1970, 1970, 1970, 1970, 1970, 1970, 1970, 1970, 1970, 143: 6619, 475: 1970, 507: 6618, 656: 1970, 1046: 6911}, + {2027, 2027, 17: 2027, 51: 2027, 53: 2027, 2027, 2027, 2027, 2027, 2027, 2027, 2027, 2027, 2027, 2027, 2027, 2027, 2027, 2027, 2027, 2027, 2027, 2027, 2027, 475: 2027, 656: 2027, 902: 6912}, + // 4355 + {1964, 1964, 17: 6332, 51: 6308, 53: 6328, 6321, 6311, 6307, 6315, 6319, 6331, 6314, 6320, 6318, 6316, 6329, 6322, 6310, 6330, 6309, 6312, 6313, 6317, 6914, 475: 6323, 656: 6333, 898: 6325, 6324, 6327, 6306, 903: 6326, 1238: 6913}, + {1979, 1979}, + {183: 6916, 654: 6915}, + {577, 577, 572: 6279, 974: 6918}, + {577, 577, 572: 6279, 974: 6917}, + // 4360 + {1962, 1962}, + {1963, 1963}, + {16: 1434, 18: 1434, 21: 1434, 167: 5023, 482: 1434, 487: 1434, 508: 1434, 1434, 650: 1434}, + {16: 2193, 18: 2193, 21: 2193, 482: 4266, 487: 2193, 508: 2193, 6712, 650: 2193, 785: 6711, 797: 6710, 855: 6714, 937: 6922}, + {2212, 2212, 16: 2193, 18: 2193, 21: 2193, 482: 4266, 487: 2193, 508: 2193, 6712, 650: 2193, 785: 6711, 797: 6710, 855: 6715}, + // 4365 + {2213, 2213, 16: 2193, 18: 2193, 21: 2193, 482: 4266, 487: 2193, 508: 2193, 6712, 650: 2193, 785: 6711, 797: 6710, 855: 6715}, + {2062, 2062, 2564, 51: 2588, 72: 2711, 74: 2567, 83: 2599, 150: 2569, 157: 2597, 2582, 161: 2566, 175: 2593, 212: 2618, 217: 2724, 220: 2562, 228: 2617, 2584, 2720, 2568, 246: 2596, 251: 2572, 256: 2594, 258: 2563, 261: 2600, 279: 2586, 283: 2585, 290: 2598, 293: 2587, 305: 2577, 476: 2608, 2607, 498: 2606, 500: 2719, 507: 2592, 509: 2616, 528: 2714, 532: 2580, 570: 2591, 572: 2605, 649: 2601, 652: 2723, 656: 2565, 2713, 668: 2560, 672: 2571, 677: 2570, 683: 2615, 690: 2561, 713: 2612, 743: 2573, 752: 2614, 2602, 2603, 2604, 2613, 760: 2611, 2610, 2609, 2576, 2691, 2690, 770: 2712, 2574, 777: 2670, 2702, 780: 2683, 783: 2575, 788: 2634, 804: 2583, 810: 2622, 814: 2717, 849: 2628, 2629, 854: 2632, 858: 2715, 863: 2673, 865: 2685, 867: 2680, 2689, 2692, 2589, 936: 2641, 940: 2578, 978: 2718, 985: 2620, 987: 2621, 2624, 2625, 991: 2627, 993: 2626, 995: 2623, 997: 2630, 2631, 1000: 2590, 2669, 1003: 2637, 1014: 2645, 2638, 2639, 2640, 2646, 2644, 2647, 2648, 1023: 2643, 2642, 1026: 2633, 2595, 2579, 2649, 2661, 2650, 2651, 2652, 2654, 2658, 2655, 2659, 2660, 2653, 2657, 2656, 1043: 2619, 1047: 2635, 1049: 2636, 2581, 1054: 2665, 2663, 1057: 2664, 2662, 1061: 2667, 2668, 2666, 1067: 2708, 2671, 1075: 2722, 2721, 2672, 1082: 2674, 1085: 2675, 2705, 1088: 2709, 1113: 2677, 2678, 1116: 2679, 1118: 2684, 1121: 2681, 2682, 1124: 2707, 2686, 2716, 2688, 2687, 1133: 2693, 1135: 2695, 2694, 2698, 1139: 2699, 1141: 2706, 1144: 2696, 6924, 1149: 2697, 1160: 2700, 2701, 2676, 2704, 1165: 2703}, + {454, 454}, } ) @@ -11404,7 +11484,7 @@ func yylex1(yylex yyLexer, lval *yySymType) (n int) { } func yyParse(yylex yyLexer, parser *Parser) int { - const yyError = 1363 + const yyError = 1372 yyEx, _ := yylex.(yyLexerEx) var yyn int @@ -12563,26 +12643,47 @@ yynewstate: } case 146: { - parser.yyVAL.statement = &ast.FlashBackClusterStmt{ + parser.yyVAL.statement = &ast.FlashBackToTimestampStmt{ FlashbackTS: ast.NewValueExpr(yyS[yypt-0].ident, "", ""), } } case 147: + { + parser.yyVAL.statement = &ast.FlashBackToTimestampStmt{ + Tables: yyS[yypt-2].item.([]*ast.TableName), + FlashbackTS: ast.NewValueExpr(yyS[yypt-0].ident, "", ""), + } + } + case 148: + { + parser.yyVAL.statement = &ast.FlashBackToTimestampStmt{ + DBName: model.NewCIStr(yyS[yypt-2].ident), + FlashbackTS: ast.NewValueExpr(yyS[yypt-0].ident, "", ""), + } + } + case 149: { parser.yyVAL.statement = &ast.FlashBackTableStmt{ Table: yyS[yypt-1].item.(*ast.TableName), NewName: yyS[yypt-0].ident, } } - case 148: + case 150: { parser.yyVAL.ident = "" } - case 149: + case 151: { parser.yyVAL.ident = yyS[yypt-0].ident } - case 150: + case 152: + { + parser.yyVAL.statement = &ast.FlashBackDatabaseStmt{ + DBName: model.NewCIStr(yyS[yypt-1].ident), + NewName: yyS[yypt-0].ident, + } + } + case 153: { parser.yyVAL.statement = &ast.SplitRegionStmt{ SplitSyntaxOpt: yyS[yypt-4].item.(*ast.SplitSyntaxOption), @@ -12591,7 +12692,7 @@ yynewstate: SplitOpt: yyS[yypt-0].item.(*ast.SplitOption), } } - case 151: + case 154: { parser.yyVAL.statement = &ast.SplitRegionStmt{ SplitSyntaxOpt: yyS[yypt-6].item.(*ast.SplitSyntaxOption), @@ -12601,7 +12702,7 @@ yynewstate: SplitOpt: yyS[yypt-0].item.(*ast.SplitOption), } } - case 152: + case 155: { parser.yyVAL.item = &ast.SplitOption{ Lower: yyS[yypt-4].item.([]ast.ExprNode), @@ -12609,52 +12710,52 @@ yynewstate: Num: yyS[yypt-0].item.(int64), } } - case 153: + case 156: { parser.yyVAL.item = &ast.SplitOption{ ValueLists: yyS[yypt-0].item.([][]ast.ExprNode), } } - case 154: + case 157: { parser.yyVAL.item = &ast.SplitSyntaxOption{} } - case 155: + case 158: { parser.yyVAL.item = &ast.SplitSyntaxOption{ HasRegionFor: true, } } - case 156: + case 159: { parser.yyVAL.item = &ast.SplitSyntaxOption{ HasPartition: true, } } - case 157: + case 160: { parser.yyVAL.item = &ast.SplitSyntaxOption{ HasRegionFor: true, HasPartition: true, } } - case 158: + case 161: { parser.yyVAL.statement = &ast.AnalyzeTableStmt{TableNames: yyS[yypt-2].item.([]*ast.TableName), ColumnChoice: yyS[yypt-1].item.(model.ColumnChoice), AnalyzeOpts: yyS[yypt-0].item.([]ast.AnalyzeOpt)} } - case 159: + case 162: { parser.yyVAL.statement = &ast.AnalyzeTableStmt{TableNames: []*ast.TableName{yyS[yypt-3].item.(*ast.TableName)}, IndexNames: yyS[yypt-1].item.([]model.CIStr), IndexFlag: true, AnalyzeOpts: yyS[yypt-0].item.([]ast.AnalyzeOpt)} } - case 160: + case 163: { parser.yyVAL.statement = &ast.AnalyzeTableStmt{TableNames: []*ast.TableName{yyS[yypt-3].item.(*ast.TableName)}, IndexNames: yyS[yypt-1].item.([]model.CIStr), IndexFlag: true, Incremental: true, AnalyzeOpts: yyS[yypt-0].item.([]ast.AnalyzeOpt)} } - case 161: + case 164: { parser.yyVAL.statement = &ast.AnalyzeTableStmt{TableNames: []*ast.TableName{yyS[yypt-4].item.(*ast.TableName)}, PartitionNames: yyS[yypt-2].item.([]model.CIStr), ColumnChoice: yyS[yypt-1].item.(model.ColumnChoice), AnalyzeOpts: yyS[yypt-0].item.([]ast.AnalyzeOpt)} } - case 162: + case 165: { parser.yyVAL.statement = &ast.AnalyzeTableStmt{ TableNames: []*ast.TableName{yyS[yypt-5].item.(*ast.TableName)}, @@ -12664,7 +12765,7 @@ yynewstate: AnalyzeOpts: yyS[yypt-0].item.([]ast.AnalyzeOpt), } } - case 163: + case 166: { parser.yyVAL.statement = &ast.AnalyzeTableStmt{ TableNames: []*ast.TableName{yyS[yypt-5].item.(*ast.TableName)}, @@ -12675,7 +12776,7 @@ yynewstate: AnalyzeOpts: yyS[yypt-0].item.([]ast.AnalyzeOpt), } } - case 164: + case 167: { parser.yyVAL.statement = &ast.AnalyzeTableStmt{ TableNames: []*ast.TableName{yyS[yypt-5].item.(*ast.TableName)}, @@ -12684,7 +12785,7 @@ yynewstate: HistogramOperation: ast.HistogramOperationUpdate, } } - case 165: + case 168: { parser.yyVAL.statement = &ast.AnalyzeTableStmt{ TableNames: []*ast.TableName{yyS[yypt-4].item.(*ast.TableName)}, @@ -12692,7 +12793,7 @@ yynewstate: HistogramOperation: ast.HistogramOperationDrop, } } - case 166: + case 169: { parser.yyVAL.statement = &ast.AnalyzeTableStmt{ TableNames: []*ast.TableName{yyS[yypt-3].item.(*ast.TableName)}, @@ -12700,7 +12801,7 @@ yynewstate: ColumnChoice: model.ColumnList, AnalyzeOpts: yyS[yypt-0].item.([]ast.AnalyzeOpt)} } - case 167: + case 170: { parser.yyVAL.statement = &ast.AnalyzeTableStmt{ TableNames: []*ast.TableName{yyS[yypt-5].item.(*ast.TableName)}, @@ -12709,134 +12810,134 @@ yynewstate: ColumnChoice: model.ColumnList, AnalyzeOpts: yyS[yypt-0].item.([]ast.AnalyzeOpt)} } - case 168: + case 171: { parser.yyVAL.item = model.DefaultChoice } - case 169: + case 172: { parser.yyVAL.item = model.AllColumns } - case 170: + case 173: { parser.yyVAL.item = model.PredicateColumns } - case 171: + case 174: { parser.yyVAL.item = []ast.AnalyzeOpt{} } - case 172: + case 175: { parser.yyVAL.item = yyS[yypt-0].item.([]ast.AnalyzeOpt) } - case 173: + case 176: { parser.yyVAL.item = []ast.AnalyzeOpt{yyS[yypt-0].item.(ast.AnalyzeOpt)} } - case 174: + case 177: { parser.yyVAL.item = append(yyS[yypt-2].item.([]ast.AnalyzeOpt), yyS[yypt-0].item.(ast.AnalyzeOpt)) } - case 175: + case 178: { parser.yyVAL.item = ast.AnalyzeOpt{Type: ast.AnalyzeOptNumBuckets, Value: ast.NewValueExpr(yyS[yypt-1].item, "", "")} } - case 176: + case 179: { parser.yyVAL.item = ast.AnalyzeOpt{Type: ast.AnalyzeOptNumTopN, Value: ast.NewValueExpr(yyS[yypt-1].item, "", "")} } - case 177: + case 180: { parser.yyVAL.item = ast.AnalyzeOpt{Type: ast.AnalyzeOptCMSketchDepth, Value: ast.NewValueExpr(yyS[yypt-2].item, "", "")} } - case 178: + case 181: { parser.yyVAL.item = ast.AnalyzeOpt{Type: ast.AnalyzeOptCMSketchWidth, Value: ast.NewValueExpr(yyS[yypt-2].item, "", "")} } - case 179: + case 182: { parser.yyVAL.item = ast.AnalyzeOpt{Type: ast.AnalyzeOptNumSamples, Value: ast.NewValueExpr(yyS[yypt-1].item, "", "")} } - case 180: + case 183: { parser.yyVAL.item = ast.AnalyzeOpt{Type: ast.AnalyzeOptSampleRate, Value: ast.NewValueExpr(yyS[yypt-1].item, "", "")} } - case 181: + case 184: { parser.yyVAL.item = &ast.Assignment{Column: yyS[yypt-2].item.(*ast.ColumnName), Expr: yyS[yypt-0].expr} } - case 182: + case 185: { parser.yyVAL.item = []*ast.Assignment{yyS[yypt-0].item.(*ast.Assignment)} } - case 183: + case 186: { parser.yyVAL.item = append(yyS[yypt-2].item.([]*ast.Assignment), yyS[yypt-0].item.(*ast.Assignment)) } - case 184: + case 187: { parser.yyVAL.item = []*ast.Assignment{} } - case 186: + case 189: { parser.yyVAL.statement = &ast.BeginStmt{} } - case 187: + case 190: { parser.yyVAL.statement = &ast.BeginStmt{ Mode: ast.Pessimistic, } } - case 188: + case 191: { parser.yyVAL.statement = &ast.BeginStmt{ Mode: ast.Optimistic, } } - case 189: + case 192: { parser.yyVAL.statement = &ast.BeginStmt{} } - case 190: + case 193: { parser.yyVAL.statement = &ast.BeginStmt{} } - case 191: + case 194: { parser.yyVAL.statement = &ast.BeginStmt{} } - case 192: + case 195: { parser.yyVAL.statement = &ast.BeginStmt{ CausalConsistencyOnly: true, } } - case 193: + case 196: { parser.yyVAL.statement = &ast.BeginStmt{ ReadOnly: true, } } - case 194: + case 197: { parser.yyVAL.statement = &ast.BeginStmt{ ReadOnly: true, AsOf: yyS[yypt-0].item.(*ast.AsOfClause), } } - case 195: + case 198: { parser.yyVAL.statement = &ast.BinlogStmt{Str: yyS[yypt-0].ident} } - case 196: + case 199: { parser.yyVAL.item = []*ast.ColumnDef{yyS[yypt-0].item.(*ast.ColumnDef)} } - case 197: + case 200: { parser.yyVAL.item = append(yyS[yypt-2].item.([]*ast.ColumnDef), yyS[yypt-0].item.(*ast.ColumnDef)) } - case 198: + case 201: { colDef := &ast.ColumnDef{Name: yyS[yypt-2].item.(*ast.ColumnName), Tp: yyS[yypt-1].item.(*types.FieldType), Options: yyS[yypt-0].item.([]*ast.ColumnOption)} if !colDef.Validate() { @@ -12845,7 +12946,7 @@ yynewstate: } parser.yyVAL.item = colDef } - case 199: + case 202: { // TODO: check flen 0 tp := types.NewFieldType(mysql.TypeLonglong) @@ -12859,103 +12960,103 @@ yynewstate: } parser.yyVAL.item = colDef } - case 200: + case 203: { parser.yyVAL.item = &ast.ColumnName{Name: model.NewCIStr(yyS[yypt-0].ident)} } - case 201: + case 204: { parser.yyVAL.item = &ast.ColumnName{Table: model.NewCIStr(yyS[yypt-2].ident), Name: model.NewCIStr(yyS[yypt-0].ident)} } - case 202: + case 205: { parser.yyVAL.item = &ast.ColumnName{Schema: model.NewCIStr(yyS[yypt-4].ident), Table: model.NewCIStr(yyS[yypt-2].ident), Name: model.NewCIStr(yyS[yypt-0].ident)} } - case 203: + case 206: { parser.yyVAL.item = []*ast.ColumnName{yyS[yypt-0].item.(*ast.ColumnName)} } - case 204: + case 207: { parser.yyVAL.item = append(yyS[yypt-2].item.([]*ast.ColumnName), yyS[yypt-0].item.(*ast.ColumnName)) } - case 205: + case 208: { parser.yyVAL.item = []*ast.ColumnName{} } - case 207: + case 210: { parser.yyVAL.item = []model.CIStr{} } - case 208: + case 211: { parser.yyVAL.item = yyS[yypt-1].item } - case 209: + case 212: { parser.yyVAL.item = []model.CIStr{model.NewCIStr(yyS[yypt-0].ident)} } - case 210: + case 213: { parser.yyVAL.item = append(yyS[yypt-2].item.([]model.CIStr), model.NewCIStr(yyS[yypt-0].ident)) } - case 211: + case 214: { parser.yyVAL.item = []*ast.ColumnNameOrUserVar{} } - case 213: + case 216: { parser.yyVAL.item = []*ast.ColumnNameOrUserVar{yyS[yypt-0].item.(*ast.ColumnNameOrUserVar)} } - case 214: + case 217: { parser.yyVAL.item = append(yyS[yypt-2].item.([]*ast.ColumnNameOrUserVar), yyS[yypt-0].item.(*ast.ColumnNameOrUserVar)) } - case 215: + case 218: { parser.yyVAL.item = &ast.ColumnNameOrUserVar{ColumnName: yyS[yypt-0].item.(*ast.ColumnName)} } - case 216: + case 219: { parser.yyVAL.item = &ast.ColumnNameOrUserVar{UserVar: yyS[yypt-0].expr.(*ast.VariableExpr)} } - case 217: + case 220: { parser.yyVAL.item = []*ast.ColumnNameOrUserVar{} } - case 218: + case 221: { parser.yyVAL.item = yyS[yypt-1].item.([]*ast.ColumnNameOrUserVar) } - case 219: + case 222: { parser.yyVAL.statement = &ast.CommitStmt{} } - case 220: + case 223: { parser.yyVAL.statement = &ast.CommitStmt{CompletionType: yyS[yypt-0].item.(ast.CompletionType)} } - case 224: + case 227: { parser.yyVAL.ident = "NOT" } - case 225: + case 228: { parser.yyVAL.item = true } - case 226: + case 229: { parser.yyVAL.item = false } - case 227: + case 230: { parser.yyVAL.item = true } - case 229: + case 232: { parser.yyVAL.item = 0 } - case 230: + case 233: { if yyS[yypt-0].item.(bool) { parser.yyVAL.item = 1 @@ -12963,57 +13064,57 @@ yynewstate: parser.yyVAL.item = 2 } } - case 231: + case 234: { parser.yyVAL.item = &ast.ColumnOption{Tp: ast.ColumnOptionNotNull} } - case 232: + case 235: { parser.yyVAL.item = &ast.ColumnOption{Tp: ast.ColumnOptionNull} } - case 233: + case 236: { parser.yyVAL.item = &ast.ColumnOption{Tp: ast.ColumnOptionAutoIncrement} } - case 234: + case 237: { // KEY is normally a synonym for INDEX. The key attribute PRIMARY KEY // can also be specified as just KEY when given in a column definition. // See http://dev.mysql.com/doc/refman/5.7/en/create-table.html parser.yyVAL.item = &ast.ColumnOption{Tp: ast.ColumnOptionPrimaryKey} } - case 235: + case 238: { // KEY is normally a synonym for INDEX. The key attribute PRIMARY KEY // can also be specified as just KEY when given in a column definition. // See http://dev.mysql.com/doc/refman/5.7/en/create-table.html parser.yyVAL.item = &ast.ColumnOption{Tp: ast.ColumnOptionPrimaryKey, PrimaryKeyTp: yyS[yypt-0].item.(model.PrimaryKeyType)} } - case 236: + case 239: { parser.yyVAL.item = &ast.ColumnOption{Tp: ast.ColumnOptionUniqKey} } - case 237: + case 240: { parser.yyVAL.item = &ast.ColumnOption{Tp: ast.ColumnOptionUniqKey} } - case 238: + case 241: { parser.yyVAL.item = &ast.ColumnOption{Tp: ast.ColumnOptionDefaultValue, Expr: yyS[yypt-0].expr} } - case 239: + case 242: { parser.yyVAL.item = []*ast.ColumnOption{{Tp: ast.ColumnOptionNotNull}, {Tp: ast.ColumnOptionAutoIncrement}, {Tp: ast.ColumnOptionUniqKey}} } - case 240: + case 243: { parser.yyVAL.item = &ast.ColumnOption{Tp: ast.ColumnOptionOnUpdate, Expr: yyS[yypt-0].expr} } - case 241: + case 244: { parser.yyVAL.item = &ast.ColumnOption{Tp: ast.ColumnOptionComment, Expr: ast.NewValueExpr(yyS[yypt-0].ident, "", "")} } - case 242: + case 245: { // See https://dev.mysql.com/doc/refman/5.7/en/create-table.html // The CHECK clause is parsed but ignored by all storage engines. @@ -13040,7 +13141,7 @@ yynewstate: default: } } - case 243: + case 246: { startOffset := parser.startOffset(&yyS[yypt-2]) endOffset := parser.endOffset(&yyS[yypt-1]) @@ -13053,68 +13154,68 @@ yynewstate: Stored: yyS[yypt-0].item.(bool), } } - case 244: + case 247: { parser.yyVAL.item = &ast.ColumnOption{ Tp: ast.ColumnOptionReference, Refer: yyS[yypt-0].item.(*ast.ReferenceDef), } } - case 245: + case 248: { parser.yyVAL.item = &ast.ColumnOption{Tp: ast.ColumnOptionCollate, StrValue: yyS[yypt-0].ident} } - case 246: + case 249: { parser.yyVAL.item = &ast.ColumnOption{Tp: ast.ColumnOptionColumnFormat, StrValue: yyS[yypt-0].ident} } - case 247: + case 250: { parser.yyVAL.item = &ast.ColumnOption{Tp: ast.ColumnOptionStorage, StrValue: yyS[yypt-0].ident} yylex.AppendError(yylex.Errorf("The STORAGE clause is parsed but ignored by all storage engines.")) parser.lastErrorAsWarn() } - case 248: + case 251: { parser.yyVAL.item = &ast.ColumnOption{Tp: ast.ColumnOptionAutoRandom, AutoRandOpt: yyS[yypt-0].item.(ast.AutoRandomOption)} } - case 249: + case 252: { parser.yyVAL.item = ast.AutoRandomOption{ShardBits: types.UnspecifiedLength, RangeBits: types.UnspecifiedLength} } - case 250: + case 253: { parser.yyVAL.item = ast.AutoRandomOption{ShardBits: int(yyS[yypt-1].item.(uint64)), RangeBits: types.UnspecifiedLength} } - case 251: + case 254: { parser.yyVAL.item = ast.AutoRandomOption{ShardBits: int(yyS[yypt-3].item.(uint64)), RangeBits: int(yyS[yypt-1].item.(uint64))} } - case 255: + case 258: { parser.yyVAL.ident = "DEFAULT" } - case 256: + case 259: { parser.yyVAL.ident = "FIXED" } - case 257: + case 260: { parser.yyVAL.ident = "DYNAMIC" } - case 260: + case 263: { parser.yyVAL.item = false } - case 261: + case 264: { parser.yyVAL.item = false } - case 262: + case 265: { parser.yyVAL.item = true } - case 263: + case 266: { if columnOption, ok := yyS[yypt-0].item.(*ast.ColumnOption); ok { parser.yyVAL.item = []*ast.ColumnOption{columnOption} @@ -13122,7 +13223,7 @@ yynewstate: parser.yyVAL.item = yyS[yypt-0].item } } - case 264: + case 267: { if columnOption, ok := yyS[yypt-0].item.(*ast.ColumnOption); ok { parser.yyVAL.item = append(yyS[yypt-1].item.([]*ast.ColumnOption), columnOption) @@ -13130,11 +13231,11 @@ yynewstate: parser.yyVAL.item = append(yyS[yypt-1].item.([]*ast.ColumnOption), yyS[yypt-0].item.([]*ast.ColumnOption)...) } } - case 265: + case 268: { parser.yyVAL.item = []*ast.ColumnOption{} } - case 267: + case 270: { c := &ast.Constraint{ Tp: ast.ConstraintPrimaryKey, @@ -13153,7 +13254,7 @@ yynewstate: } parser.yyVAL.item = c } - case 268: + case 271: { c := &ast.Constraint{ Tp: ast.ConstraintFulltext, @@ -13166,7 +13267,7 @@ yynewstate: } parser.yyVAL.item = c } - case 269: + case 272: { c := &ast.Constraint{ IfNotExists: yyS[yypt-5].item.(bool), @@ -13186,7 +13287,7 @@ yynewstate: } parser.yyVAL.item = c } - case 270: + case 273: { c := &ast.Constraint{ Tp: ast.ConstraintUniq, @@ -13206,7 +13307,7 @@ yynewstate: } parser.yyVAL.item = c } - case 271: + case 274: { parser.yyVAL.item = &ast.Constraint{ IfNotExists: yyS[yypt-5].item.(bool), @@ -13217,7 +13318,7 @@ yynewstate: IsEmptyIndex: yyS[yypt-4].item.(*ast.NullString).Empty, } } - case 272: + case 275: { parser.yyVAL.item = &ast.Constraint{ Tp: ast.ConstraintCheck, @@ -13225,29 +13326,29 @@ yynewstate: Enforced: yyS[yypt-0].item.(bool), } } - case 273: + case 276: { parser.yyVAL.item = ast.MatchFull } - case 274: + case 277: { parser.yyVAL.item = ast.MatchPartial } - case 275: + case 278: { parser.yyVAL.item = ast.MatchSimple } - case 276: + case 279: { parser.yyVAL.item = ast.MatchNone } - case 277: + case 280: { parser.yyVAL.item = yyS[yypt-0].item yylex.AppendError(yylex.Errorf("The MATCH clause is parsed but ignored by all storage engines.")) parser.lastErrorAsWarn() } - case 278: + case 281: { onDeleteUpdate := yyS[yypt-0].item.([2]interface{}) parser.yyVAL.item = &ast.ReferenceDef{ @@ -13258,90 +13359,90 @@ yynewstate: Match: yyS[yypt-1].item.(ast.MatchType), } } - case 279: + case 282: { parser.yyVAL.item = &ast.OnDeleteOpt{ReferOpt: yyS[yypt-0].item.(model.ReferOptionType)} } - case 280: + case 283: { parser.yyVAL.item = &ast.OnUpdateOpt{ReferOpt: yyS[yypt-0].item.(model.ReferOptionType)} } - case 281: + case 284: { parser.yyVAL.item = [2]interface{}{&ast.OnDeleteOpt{}, &ast.OnUpdateOpt{}} } - case 282: + case 285: { parser.yyVAL.item = [2]interface{}{yyS[yypt-0].item, &ast.OnUpdateOpt{}} } - case 283: + case 286: { parser.yyVAL.item = [2]interface{}{&ast.OnDeleteOpt{}, yyS[yypt-0].item} } - case 284: + case 287: { parser.yyVAL.item = [2]interface{}{yyS[yypt-1].item, yyS[yypt-0].item} } - case 285: + case 288: { parser.yyVAL.item = [2]interface{}{yyS[yypt-0].item, yyS[yypt-1].item} } - case 286: + case 289: { parser.yyVAL.item = model.ReferOptionRestrict } - case 287: + case 290: { parser.yyVAL.item = model.ReferOptionCascade } - case 288: + case 291: { parser.yyVAL.item = model.ReferOptionSetNull } - case 289: + case 292: { parser.yyVAL.item = model.ReferOptionNoAction } - case 290: + case 293: { parser.yyVAL.item = model.ReferOptionSetDefault yylex.AppendError(yylex.Errorf("The SET DEFAULT clause is parsed but ignored by all storage engines.")) parser.lastErrorAsWarn() } - case 295: + case 298: { parser.yyVAL.expr = yyS[yypt-1].expr.(*ast.FuncCallExpr) } - case 296: + case 299: { parser.yyVAL.expr = &ast.FuncCallExpr{ FnName: model.NewCIStr(yyS[yypt-2].ident), } } - case 297: + case 300: { parser.yyVAL.expr = &ast.FuncCallExpr{ FnName: model.NewCIStr(yyS[yypt-3].ident), Args: yyS[yypt-1].item.([]ast.ExprNode), } } - case 298: + case 301: { parser.yyVAL.expr = yyS[yypt-1].expr.(*ast.FuncCallExpr) } - case 300: + case 303: { parser.yyVAL.expr = &ast.FuncCallExpr{FnName: model.NewCIStr("CURRENT_TIMESTAMP")} } - case 301: + case 304: { parser.yyVAL.expr = &ast.FuncCallExpr{FnName: model.NewCIStr("CURRENT_TIMESTAMP")} } - case 302: + case 305: { parser.yyVAL.expr = &ast.FuncCallExpr{FnName: model.NewCIStr("CURRENT_TIMESTAMP"), Args: []ast.ExprNode{ast.NewValueExpr(yyS[yypt-1].item, parser.charset, parser.collation)}} } - case 303: + case 306: { objNameExpr := &ast.TableNameExpr{ Name: yyS[yypt-0].item.(*ast.TableName), @@ -13351,7 +13452,7 @@ yynewstate: Args: []ast.ExprNode{objNameExpr}, } } - case 304: + case 307: { objNameExpr := &ast.TableNameExpr{ Name: yyS[yypt-1].item.(*ast.TableName), @@ -13361,39 +13462,39 @@ yynewstate: Args: []ast.ExprNode{objNameExpr}, } } - case 312: + case 315: { parser.yyVAL.expr = ast.NewValueExpr(yyS[yypt-0].expr, parser.charset, parser.collation) } - case 313: + case 316: { parser.yyVAL.expr = &ast.UnaryOperationExpr{Op: opcode.Plus, V: ast.NewValueExpr(yyS[yypt-0].item, parser.charset, parser.collation)} } - case 314: + case 317: { parser.yyVAL.expr = &ast.UnaryOperationExpr{Op: opcode.Minus, V: ast.NewValueExpr(yyS[yypt-0].item, parser.charset, parser.collation)} } - case 318: + case 321: { parser.yyVAL.item = ast.StatsTypeCardinality } - case 319: + case 322: { parser.yyVAL.item = ast.StatsTypeDependency } - case 320: + case 323: { parser.yyVAL.item = ast.StatsTypeCorrelation } - case 321: + case 324: { parser.yyVAL.item = ast.BindingStatusTypeEnabled } - case 322: + case 325: { parser.yyVAL.item = ast.BindingStatusTypeDisabled } - case 323: + case 326: { parser.yyVAL.statement = &ast.CreateStatisticsStmt{ IfNotExists: yyS[yypt-9].item.(bool), @@ -13403,11 +13504,11 @@ yynewstate: Columns: yyS[yypt-1].item.([]*ast.ColumnName), } } - case 324: + case 327: { parser.yyVAL.statement = &ast.DropStatisticsStmt{StatsName: yyS[yypt-0].ident} } - case 325: + case 328: { var indexOption *ast.IndexOption if yyS[yypt-1].item != nil { @@ -13440,79 +13541,79 @@ yynewstate: LockAlg: indexLockAndAlgorithm, } } - case 326: + case 329: { parser.yyVAL.item = ([]*ast.IndexPartSpecification)(nil) } - case 327: + case 330: { parser.yyVAL.item = yyS[yypt-1].item } - case 328: + case 331: { parser.yyVAL.item = []*ast.IndexPartSpecification{yyS[yypt-0].item.(*ast.IndexPartSpecification)} } - case 329: + case 332: { parser.yyVAL.item = append(yyS[yypt-2].item.([]*ast.IndexPartSpecification), yyS[yypt-0].item.(*ast.IndexPartSpecification)) } - case 330: + case 333: { parser.yyVAL.item = &ast.IndexPartSpecification{Column: yyS[yypt-2].item.(*ast.ColumnName), Length: yyS[yypt-1].item.(int), Desc: yyS[yypt-0].item.(bool)} } - case 331: + case 334: { parser.yyVAL.item = &ast.IndexPartSpecification{Expr: yyS[yypt-2].expr, Desc: yyS[yypt-0].item.(bool)} } - case 332: + case 335: { parser.yyVAL.item = nil } - case 333: + case 336: { parser.yyVAL.item = &ast.IndexLockAndAlgorithm{ LockTp: yyS[yypt-0].item.(ast.LockType), AlgorithmTp: ast.AlgorithmTypeDefault, } } - case 334: + case 337: { parser.yyVAL.item = &ast.IndexLockAndAlgorithm{ LockTp: ast.LockTypeDefault, AlgorithmTp: yyS[yypt-0].item.(ast.AlgorithmType), } } - case 335: + case 338: { parser.yyVAL.item = &ast.IndexLockAndAlgorithm{ LockTp: yyS[yypt-1].item.(ast.LockType), AlgorithmTp: yyS[yypt-0].item.(ast.AlgorithmType), } } - case 336: + case 339: { parser.yyVAL.item = &ast.IndexLockAndAlgorithm{ LockTp: yyS[yypt-0].item.(ast.LockType), AlgorithmTp: yyS[yypt-1].item.(ast.AlgorithmType), } } - case 337: + case 340: { parser.yyVAL.item = ast.IndexKeyTypeNone } - case 338: + case 341: { parser.yyVAL.item = ast.IndexKeyTypeUnique } - case 339: + case 342: { parser.yyVAL.item = ast.IndexKeyTypeSpatial } - case 340: + case 343: { parser.yyVAL.item = ast.IndexKeyTypeFullText } - case 341: + case 344: { parser.yyVAL.statement = &ast.AlterDatabaseStmt{ Name: model.NewCIStr(yyS[yypt-1].ident), @@ -13520,7 +13621,7 @@ yynewstate: Options: yyS[yypt-0].item.([]*ast.DatabaseOption), } } - case 342: + case 345: { parser.yyVAL.statement = &ast.AlterDatabaseStmt{ Name: model.NewCIStr(""), @@ -13528,7 +13629,7 @@ yynewstate: Options: yyS[yypt-0].item.([]*ast.DatabaseOption), } } - case 343: + case 346: { parser.yyVAL.statement = &ast.CreateDatabaseStmt{ IfNotExists: yyS[yypt-2].item.(bool), @@ -13536,19 +13637,19 @@ yynewstate: Options: yyS[yypt-0].item.([]*ast.DatabaseOption), } } - case 346: + case 349: { parser.yyVAL.item = &ast.DatabaseOption{Tp: ast.DatabaseOptionCharset, Value: yyS[yypt-0].ident} } - case 347: + case 350: { parser.yyVAL.item = &ast.DatabaseOption{Tp: ast.DatabaseOptionCollate, Value: yyS[yypt-0].ident} } - case 348: + case 351: { parser.yyVAL.item = &ast.DatabaseOption{Tp: ast.DatabaseOptionEncryption, Value: yyS[yypt-0].ident} } - case 349: + case 352: { placementOptions := yyS[yypt-0].item.(*ast.PlacementOption) parser.yyVAL.item = &ast.DatabaseOption{ @@ -13558,7 +13659,7 @@ yynewstate: UintValue: placementOptions.UintValue, } } - case 350: + case 353: { placementOptions := yyS[yypt-0].item.(*ast.PlacementOption) parser.yyVAL.item = &ast.DatabaseOption{ @@ -13568,7 +13669,7 @@ yynewstate: UintValue: placementOptions.UintValue, } } - case 351: + case 354: { tiflashReplicaSpec := &ast.TiFlashReplicaSpec{ Count: yyS[yypt-1].item.(uint64), @@ -13579,19 +13680,19 @@ yynewstate: TiFlashReplica: tiflashReplicaSpec, } } - case 352: + case 355: { parser.yyVAL.item = []*ast.DatabaseOption{} } - case 354: + case 357: { parser.yyVAL.item = []*ast.DatabaseOption{yyS[yypt-0].item.(*ast.DatabaseOption)} } - case 355: + case 358: { parser.yyVAL.item = append(yyS[yypt-1].item.([]*ast.DatabaseOption), yyS[yypt-0].item.(*ast.DatabaseOption)) } - case 356: + case 359: { stmt := yyS[yypt-6].item.(*ast.CreateTableStmt) stmt.Table = yyS[yypt-7].item.(*ast.TableName) @@ -13612,7 +13713,7 @@ yynewstate: } parser.yyVAL.statement = stmt } - case 357: + case 360: { tmp := &ast.CreateTableStmt{ Table: yyS[yypt-2].item.(*ast.TableName), @@ -13629,23 +13730,23 @@ yynewstate: } parser.yyVAL.statement = tmp } - case 358: + case 361: { parser.yyVAL.item = nil } - case 359: + case 362: { parser.yyVAL.item = true } - case 360: + case 363: { parser.yyVAL.item = false } - case 363: + case 366: { parser.yyVAL.item = nil } - case 364: + case 367: { method := yyS[yypt-3].item.(*ast.PartitionMethod) method.Num = yyS[yypt-2].item.(uint64) @@ -13662,7 +13763,7 @@ yynewstate: } parser.yyVAL.item = opt } - case 365: + case 368: { keyAlgorithm, _ := yyS[yypt-3].item.(*ast.PartitionKeyAlgorithm) parser.yyVAL.item = &ast.PartitionMethod{ @@ -13672,7 +13773,7 @@ yynewstate: KeyAlgorithm: keyAlgorithm, } } - case 366: + case 369: { parser.yyVAL.item = &ast.PartitionMethod{ Tp: model.PartitionTypeHash, @@ -13680,11 +13781,11 @@ yynewstate: Expr: yyS[yypt-1].expr.(ast.ExprNode), } } - case 367: + case 370: { parser.yyVAL.item = nil } - case 368: + case 371: { tp := getUint64FromNUM(yyS[yypt-0].item) if tp != 1 && tp != 2 { @@ -13695,7 +13796,7 @@ yynewstate: Type: tp, } } - case 370: + case 373: { partitionInterval, _ := yyS[yypt-0].item.(*ast.PartitionInterval) parser.yyVAL.item = &ast.PartitionMethod{ @@ -13704,7 +13805,7 @@ yynewstate: Interval: partitionInterval, } } - case 371: + case 374: { partitionInterval, _ := yyS[yypt-0].item.(*ast.PartitionInterval) parser.yyVAL.item = &ast.PartitionMethod{ @@ -13713,21 +13814,21 @@ yynewstate: Interval: partitionInterval, } } - case 372: + case 375: { parser.yyVAL.item = &ast.PartitionMethod{ Tp: model.PartitionTypeList, Expr: yyS[yypt-1].expr.(ast.ExprNode), } } - case 373: + case 376: { parser.yyVAL.item = &ast.PartitionMethod{ Tp: model.PartitionTypeList, ColumnNames: yyS[yypt-1].item.([]*ast.ColumnName), } } - case 374: + case 377: { parser.yyVAL.item = &ast.PartitionMethod{ Tp: model.PartitionTypeSystemTime, @@ -13735,24 +13836,24 @@ yynewstate: Unit: yyS[yypt-0].item.(ast.TimeUnitType), } } - case 375: + case 378: { parser.yyVAL.item = &ast.PartitionMethod{ Tp: model.PartitionTypeSystemTime, Limit: yyS[yypt-0].item.(uint64), } } - case 376: + case 379: { parser.yyVAL.item = &ast.PartitionMethod{ Tp: model.PartitionTypeSystemTime, } } - case 377: + case 380: { parser.yyVAL.item = nil } - case 378: + case 381: { partitionInterval := &ast.PartitionInterval{ IntervalExpr: yyS[yypt-4].item.(ast.PartitionIntervalExpr), @@ -13768,35 +13869,35 @@ yynewstate: partitionInterval.SetOriginTextPosition(startOffset) parser.yyVAL.item = partitionInterval } - case 379: + case 382: { parser.yyVAL.item = ast.PartitionIntervalExpr{Expr: yyS[yypt-0].expr, TimeUnit: ast.TimeUnitInvalid} } - case 380: + case 383: { parser.yyVAL.item = ast.PartitionIntervalExpr{Expr: yyS[yypt-1].expr, TimeUnit: yyS[yypt-0].item.(ast.TimeUnitType)} } - case 381: + case 384: { parser.yyVAL.item = false } - case 382: + case 385: { parser.yyVAL.item = true } - case 383: + case 386: { parser.yyVAL.item = false } - case 384: + case 387: { parser.yyVAL.item = true } - case 385: + case 388: { parser.yyVAL.item = ast.PartitionInterval{} // First/LastRangeEnd defaults to nil } - case 386: + case 389: { first := yyS[yypt-8].expr.(ast.ExprNode) last := yyS[yypt-1].expr.(ast.ExprNode) @@ -13805,25 +13906,25 @@ yynewstate: LastRangeEnd: &last, } } - case 387: + case 390: { parser.yyVAL.ident = "" } - case 389: + case 392: { parser.yyVAL.item = nil } - case 390: + case 393: { method := yyS[yypt-1].item.(*ast.PartitionMethod) method.Num = yyS[yypt-0].item.(uint64) parser.yyVAL.item = method } - case 391: + case 394: { parser.yyVAL.item = uint64(0) } - case 392: + case 395: { res := yyS[yypt-0].item.(uint64) if res == 0 { @@ -13832,11 +13933,11 @@ yynewstate: } parser.yyVAL.item = res } - case 393: + case 396: { parser.yyVAL.item = uint64(0) } - case 394: + case 397: { res := yyS[yypt-0].item.(uint64) if res == 0 { @@ -13845,23 +13946,23 @@ yynewstate: } parser.yyVAL.item = res } - case 395: + case 398: { parser.yyVAL.item = nil } - case 396: + case 399: { parser.yyVAL.item = yyS[yypt-1].item.([]*ast.PartitionDefinition) } - case 397: + case 400: { parser.yyVAL.item = []*ast.PartitionDefinition{yyS[yypt-0].item.(*ast.PartitionDefinition)} } - case 398: + case 401: { parser.yyVAL.item = append(yyS[yypt-2].item.([]*ast.PartitionDefinition), yyS[yypt-0].item.(*ast.PartitionDefinition)) } - case 399: + case 402: { parser.yyVAL.item = &ast.PartitionDefinition{ Name: model.NewCIStr(yyS[yypt-3].ident), @@ -13870,80 +13971,80 @@ yynewstate: Sub: yyS[yypt-0].item.([]*ast.SubPartitionDefinition), } } - case 400: + case 403: { parser.yyVAL.item = make([]*ast.SubPartitionDefinition, 0) } - case 401: + case 404: { parser.yyVAL.item = yyS[yypt-1].item } - case 402: + case 405: { parser.yyVAL.item = []*ast.SubPartitionDefinition{yyS[yypt-0].item.(*ast.SubPartitionDefinition)} } - case 403: + case 406: { list := yyS[yypt-2].item.([]*ast.SubPartitionDefinition) parser.yyVAL.item = append(list, yyS[yypt-0].item.(*ast.SubPartitionDefinition)) } - case 404: + case 407: { parser.yyVAL.item = &ast.SubPartitionDefinition{ Name: model.NewCIStr(yyS[yypt-1].ident), Options: yyS[yypt-0].item.([]*ast.TableOption), } } - case 405: + case 408: { parser.yyVAL.item = make([]*ast.TableOption, 0) } - case 406: + case 409: { list := yyS[yypt-1].item.([]*ast.TableOption) parser.yyVAL.item = append(list, yyS[yypt-0].item.(*ast.TableOption)) } - case 407: + case 410: { parser.yyVAL.item = &ast.TableOption{Tp: ast.TableOptionComment, StrValue: yyS[yypt-0].ident} } - case 408: + case 411: { parser.yyVAL.item = &ast.TableOption{Tp: ast.TableOptionEngine, StrValue: yyS[yypt-0].ident} } - case 409: + case 412: { parser.yyVAL.item = &ast.TableOption{Tp: ast.TableOptionEngine, StrValue: yyS[yypt-0].ident} } - case 410: + case 413: { parser.yyVAL.item = &ast.TableOption{Tp: ast.TableOptionInsertMethod, StrValue: yyS[yypt-0].ident} } - case 411: + case 414: { parser.yyVAL.item = &ast.TableOption{Tp: ast.TableOptionDataDirectory, StrValue: yyS[yypt-0].ident} } - case 412: + case 415: { parser.yyVAL.item = &ast.TableOption{Tp: ast.TableOptionIndexDirectory, StrValue: yyS[yypt-0].ident} } - case 413: + case 416: { parser.yyVAL.item = &ast.TableOption{Tp: ast.TableOptionMaxRows, UintValue: yyS[yypt-0].item.(uint64)} } - case 414: + case 417: { parser.yyVAL.item = &ast.TableOption{Tp: ast.TableOptionMinRows, UintValue: yyS[yypt-0].item.(uint64)} } - case 415: + case 418: { parser.yyVAL.item = &ast.TableOption{Tp: ast.TableOptionTablespace, StrValue: yyS[yypt-0].ident} } - case 416: + case 419: { parser.yyVAL.item = &ast.TableOption{Tp: ast.TableOptionNodegroup, UintValue: yyS[yypt-0].item.(uint64)} } - case 417: + case 420: { placementOptions := yyS[yypt-0].item.(*ast.PlacementOption) parser.yyVAL.item = &ast.TableOption{ @@ -13953,27 +14054,27 @@ yynewstate: UintValue: placementOptions.UintValue, } } - case 418: + case 421: { parser.yyVAL.item = &ast.PartitionDefinitionClauseNone{} } - case 419: + case 422: { parser.yyVAL.item = &ast.PartitionDefinitionClauseLessThan{ Exprs: []ast.ExprNode{&ast.MaxValueExpr{}}, } } - case 420: + case 423: { parser.yyVAL.item = &ast.PartitionDefinitionClauseLessThan{ Exprs: yyS[yypt-1].item.([]ast.ExprNode), } } - case 421: + case 424: { parser.yyVAL.item = &ast.PartitionDefinitionClauseIn{} } - case 422: + case 425: { exprs := yyS[yypt-1].item.([]ast.ExprNode) values := make([][]ast.ExprNode, 0, len(exprs)) @@ -13986,43 +14087,43 @@ yynewstate: } parser.yyVAL.item = &ast.PartitionDefinitionClauseIn{Values: values} } - case 423: + case 426: { parser.yyVAL.item = &ast.PartitionDefinitionClauseHistory{Current: false} } - case 424: + case 427: { parser.yyVAL.item = &ast.PartitionDefinitionClauseHistory{Current: true} } - case 425: + case 428: { parser.yyVAL.item = ast.OnDuplicateKeyHandlingError } - case 426: + case 429: { parser.yyVAL.item = ast.OnDuplicateKeyHandlingIgnore } - case 427: + case 430: { parser.yyVAL.item = ast.OnDuplicateKeyHandlingReplace } - case 430: + case 433: { parser.yyVAL.item = &ast.CreateTableStmt{} } - case 431: + case 434: { parser.yyVAL.item = &ast.CreateTableStmt{Select: yyS[yypt-0].statement.(ast.ResultSetNode)} } - case 432: + case 435: { parser.yyVAL.item = &ast.CreateTableStmt{Select: yyS[yypt-0].statement.(ast.ResultSetNode)} } - case 433: + case 436: { parser.yyVAL.item = &ast.CreateTableStmt{Select: yyS[yypt-0].statement.(ast.ResultSetNode)} } - case 434: + case 437: { var sel ast.ResultSetNode switch x := yyS[yypt-0].expr.(*ast.SubqueryExpr).Query.(type) { @@ -14035,7 +14136,7 @@ yynewstate: } parser.yyVAL.item = &ast.CreateTableStmt{Select: sel} } - case 438: + case 441: { var sel ast.StmtNode switch x := yyS[yypt-0].expr.(*ast.SubqueryExpr).Query.(type) { @@ -14048,15 +14149,15 @@ yynewstate: } parser.yyVAL.statement = sel } - case 439: + case 442: { parser.yyVAL.item = yyS[yypt-0].item } - case 440: + case 443: { parser.yyVAL.item = yyS[yypt-1].item } - case 441: + case 444: { startOffset := parser.startOffset(&yyS[yypt-1]) selStmt := yyS[yypt-1].statement.(ast.StmtNode) @@ -14081,85 +14182,85 @@ yynewstate: } parser.yyVAL.statement = x } - case 442: + case 445: { parser.yyVAL.item = false } - case 443: + case 446: { parser.yyVAL.item = true } - case 444: + case 447: { parser.yyVAL.item = model.AlgorithmUndefined } - case 445: + case 448: { parser.yyVAL.item = model.AlgorithmUndefined } - case 446: + case 449: { parser.yyVAL.item = model.AlgorithmMerge } - case 447: + case 450: { parser.yyVAL.item = model.AlgorithmTemptable } - case 448: + case 451: { parser.yyVAL.item = &auth.UserIdentity{CurrentUser: true} } - case 449: + case 452: { parser.yyVAL.item = yyS[yypt-0].item } - case 450: + case 453: { parser.yyVAL.item = model.SecurityDefiner } - case 451: + case 454: { parser.yyVAL.item = model.SecurityDefiner } - case 452: + case 455: { parser.yyVAL.item = model.SecurityInvoker } - case 454: + case 457: { parser.yyVAL.item = nil } - case 455: + case 458: { parser.yyVAL.item = yyS[yypt-1].item.([]model.CIStr) } - case 456: + case 459: { parser.yyVAL.item = []model.CIStr{model.NewCIStr(yyS[yypt-0].ident)} } - case 457: + case 460: { parser.yyVAL.item = append(yyS[yypt-2].item.([]model.CIStr), model.NewCIStr(yyS[yypt-0].ident)) } - case 458: + case 461: { parser.yyVAL.item = nil } - case 459: + case 462: { parser.yyVAL.item = model.CheckOptionCascaded } - case 460: + case 463: { parser.yyVAL.item = model.CheckOptionLocal } - case 461: + case 464: { parser.yyVAL.statement = &ast.DoStmt{ Exprs: yyS[yypt-0].item.([]ast.ExprNode), } } - case 462: + case 465: { // Single Table tn := yyS[yypt-6].item.(*ast.TableName) @@ -14187,7 +14288,7 @@ yynewstate: parser.yyVAL.statement = x } - case 463: + case 466: { // Multiple Table x := &ast.DeleteStmt{ @@ -14207,7 +14308,7 @@ yynewstate: } parser.yyVAL.statement = x } - case 464: + case 467: { // Multiple Table x := &ast.DeleteStmt{ @@ -14226,23 +14327,23 @@ yynewstate: } parser.yyVAL.statement = x } - case 467: + case 470: { d := yyS[yypt-0].statement.(*ast.DeleteStmt) d.With = yyS[yypt-1].item.(*ast.WithClause) parser.yyVAL.statement = d } - case 468: + case 471: { d := yyS[yypt-0].statement.(*ast.DeleteStmt) d.With = yyS[yypt-1].item.(*ast.WithClause) parser.yyVAL.statement = d } - case 470: + case 473: { parser.yyVAL.statement = &ast.DropDatabaseStmt{IfExists: yyS[yypt-1].item.(bool), Name: model.NewCIStr(yyS[yypt-0].ident)} } - case 471: + case 474: { var indexLockAndAlgorithm *ast.IndexLockAndAlgorithm if yyS[yypt-0].item != nil { @@ -14253,39 +14354,39 @@ yynewstate: } parser.yyVAL.statement = &ast.DropIndexStmt{IfExists: yyS[yypt-4].item.(bool), IndexName: yyS[yypt-3].ident, Table: yyS[yypt-1].item.(*ast.TableName), LockAlg: indexLockAndAlgorithm} } - case 472: + case 475: { parser.yyVAL.statement = &ast.DropTableStmt{IfExists: yyS[yypt-2].item.(bool), Tables: yyS[yypt-1].item.([]*ast.TableName), IsView: false, TemporaryKeyword: yyS[yypt-4].item.(ast.TemporaryKeyword)} } - case 473: + case 476: { parser.yyVAL.item = ast.TemporaryNone } - case 474: + case 477: { parser.yyVAL.item = ast.TemporaryLocal } - case 475: + case 478: { parser.yyVAL.item = ast.TemporaryGlobal } - case 476: + case 479: { parser.yyVAL.statement = &ast.DropTableStmt{Tables: yyS[yypt-1].item.([]*ast.TableName), IsView: true} } - case 477: + case 480: { parser.yyVAL.statement = &ast.DropTableStmt{IfExists: true, Tables: yyS[yypt-1].item.([]*ast.TableName), IsView: true} } - case 478: + case 481: { parser.yyVAL.statement = &ast.DropUserStmt{IsDropRole: false, IfExists: false, UserList: yyS[yypt-0].item.([]*auth.UserIdentity)} } - case 479: + case 482: { parser.yyVAL.statement = &ast.DropUserStmt{IsDropRole: false, IfExists: true, UserList: yyS[yypt-0].item.([]*auth.UserIdentity)} } - case 480: + case 483: { tmp := make([]*auth.UserIdentity, 0, 10) roleList := yyS[yypt-0].item.([]*auth.RoleIdentity) @@ -14294,7 +14395,7 @@ yynewstate: } parser.yyVAL.statement = &ast.DropUserStmt{IsDropRole: true, IfExists: false, UserList: tmp} } - case 481: + case 484: { tmp := make([]*auth.UserIdentity, 0, 10) roleList := yyS[yypt-0].item.([]*auth.RoleIdentity) @@ -14303,29 +14404,33 @@ yynewstate: } parser.yyVAL.statement = &ast.DropUserStmt{IsDropRole: true, IfExists: true, UserList: tmp} } - case 482: + case 485: { - parser.yyVAL.statement = &ast.DropStatsStmt{Table: yyS[yypt-0].item.(*ast.TableName)} + parser.yyVAL.statement = &ast.DropStatsStmt{Tables: yyS[yypt-0].item.([]*ast.TableName)} } - case 483: + case 486: { + yylex.AppendError(ErrWarnDeprecatedSyntaxNoReplacement.FastGenByArgs("DROP STATS ... PARTITION ...")) + parser.lastErrorAsWarn() parser.yyVAL.statement = &ast.DropStatsStmt{ - Table: yyS[yypt-2].item.(*ast.TableName), + Tables: []*ast.TableName{yyS[yypt-2].item.(*ast.TableName)}, PartitionNames: yyS[yypt-0].item.([]model.CIStr), } } - case 484: + case 487: { + yylex.AppendError(ErrWarnDeprecatedSyntax.FastGenByArgs("DROP STATS ... GLOBAL", "DROP STATS ...")) + parser.lastErrorAsWarn() parser.yyVAL.statement = &ast.DropStatsStmt{ - Table: yyS[yypt-1].item.(*ast.TableName), + Tables: []*ast.TableName{yyS[yypt-1].item.(*ast.TableName)}, IsGlobalStats: true, } } - case 492: + case 495: { parser.yyVAL.statement = nil } - case 493: + case 496: { parser.yyVAL.statement = &ast.TraceStmt{ Stmt: yyS[yypt-0].statement, @@ -14335,7 +14440,7 @@ yynewstate: startOffset := parser.startOffset(&yyS[yypt]) yyS[yypt-0].statement.SetText(parser.lexer.client, string(parser.src[startOffset:])) } - case 494: + case 497: { parser.yyVAL.statement = &ast.TraceStmt{ Stmt: yyS[yypt-0].statement, @@ -14345,7 +14450,7 @@ yynewstate: startOffset := parser.startOffset(&yyS[yypt]) yyS[yypt-0].statement.SetText(parser.lexer.client, string(parser.src[startOffset:])) } - case 495: + case 498: { parser.yyVAL.statement = &ast.TraceStmt{ Stmt: yyS[yypt-0].statement, @@ -14354,7 +14459,7 @@ yynewstate: startOffset := parser.startOffset(&yyS[yypt]) yyS[yypt-0].statement.SetText(parser.lexer.client, string(parser.src[startOffset:])) } - case 496: + case 499: { parser.yyVAL.statement = &ast.TraceStmt{ Stmt: yyS[yypt-0].statement, @@ -14364,7 +14469,7 @@ yynewstate: startOffset := parser.startOffset(&yyS[yypt]) yyS[yypt-0].statement.SetText(parser.lexer.client, string(parser.src[startOffset:])) } - case 500: + case 503: { parser.yyVAL.statement = &ast.ExplainStmt{ Stmt: &ast.ShowStmt{ @@ -14373,7 +14478,7 @@ yynewstate: }, } } - case 501: + case 504: { parser.yyVAL.statement = &ast.ExplainStmt{ Stmt: &ast.ShowStmt{ @@ -14383,49 +14488,49 @@ yynewstate: }, } } - case 502: + case 505: { parser.yyVAL.statement = &ast.ExplainStmt{ Stmt: yyS[yypt-0].statement, Format: "row", } } - case 503: + case 506: { parser.yyVAL.statement = &ast.ExplainForStmt{ Format: "row", ConnectionID: getUint64FromNUM(yyS[yypt-0].item), } } - case 504: + case 507: { parser.yyVAL.statement = &ast.ExplainForStmt{ Format: yyS[yypt-3].ident, ConnectionID: getUint64FromNUM(yyS[yypt-0].item), } } - case 505: + case 508: { parser.yyVAL.statement = &ast.ExplainStmt{ Stmt: yyS[yypt-0].statement, Format: yyS[yypt-1].ident, } } - case 506: + case 509: { parser.yyVAL.statement = &ast.ExplainForStmt{ Format: yyS[yypt-3].ident, ConnectionID: getUint64FromNUM(yyS[yypt-0].item), } } - case 507: + case 510: { parser.yyVAL.statement = &ast.ExplainStmt{ Stmt: yyS[yypt-0].statement, Format: yyS[yypt-1].ident, } } - case 508: + case 511: { parser.yyVAL.statement = &ast.ExplainStmt{ Stmt: yyS[yypt-0].statement, @@ -14433,7 +14538,7 @@ yynewstate: Analyze: true, } } - case 509: + case 512: { parser.yyVAL.statement = &ast.ExplainStmt{ Stmt: yyS[yypt-0].statement, @@ -14441,7 +14546,7 @@ yynewstate: Analyze: true, } } - case 510: + case 513: { parser.yyVAL.statement = &ast.ExplainStmt{ Stmt: yyS[yypt-0].statement, @@ -14449,15 +14554,15 @@ yynewstate: Analyze: true, } } - case 518: + case 521: { parser.yyVAL.statement = &ast.SavepointStmt{Name: yyS[yypt-0].ident} } - case 519: + case 522: { parser.yyVAL.statement = &ast.ReleaseSavepointStmt{Name: yyS[yypt-0].ident} } - case 520: + case 523: { stmt := yyS[yypt-3].item.(*ast.BRIEStmt) stmt.Kind = ast.BRIEKindBackup @@ -14465,7 +14570,7 @@ yynewstate: stmt.Options = yyS[yypt-0].item.([]*ast.BRIEOption) parser.yyVAL.statement = stmt } - case 521: + case 524: { stmt := yyS[yypt-3].item.(*ast.BRIEStmt) stmt.Kind = ast.BRIEKindRestore @@ -14473,110 +14578,110 @@ yynewstate: stmt.Options = yyS[yypt-0].item.([]*ast.BRIEOption) parser.yyVAL.statement = stmt } - case 522: + case 525: { parser.yyVAL.item = &ast.BRIEStmt{} } - case 523: + case 526: { parser.yyVAL.item = &ast.BRIEStmt{Schemas: yyS[yypt-0].item.([]string)} } - case 524: + case 527: { parser.yyVAL.item = &ast.BRIEStmt{Tables: yyS[yypt-0].item.([]*ast.TableName)} } - case 525: + case 528: { parser.yyVAL.item = []string{yyS[yypt-0].ident} } - case 526: + case 529: { parser.yyVAL.item = append(yyS[yypt-2].item.([]string), yyS[yypt-0].ident) } - case 527: + case 530: { parser.yyVAL.item = []*ast.BRIEOption{} } - case 528: + case 531: { parser.yyVAL.item = append(yyS[yypt-1].item.([]*ast.BRIEOption), yyS[yypt-0].item.(*ast.BRIEOption)) } - case 529: + case 532: { parser.yyVAL.item = ast.BRIEOptionConcurrency } - case 530: + case 533: { parser.yyVAL.item = ast.BRIEOptionResume } - case 531: + case 534: { parser.yyVAL.item = ast.BRIEOptionSendCreds } - case 532: + case 535: { parser.yyVAL.item = ast.BRIEOptionOnline } - case 533: + case 536: { parser.yyVAL.item = ast.BRIEOptionCheckpoint } - case 534: + case 537: { parser.yyVAL.item = ast.BRIEOptionSkipSchemaFiles } - case 535: + case 538: { parser.yyVAL.item = ast.BRIEOptionStrictFormat } - case 536: + case 539: { parser.yyVAL.item = ast.BRIEOptionCSVNotNull } - case 537: + case 540: { parser.yyVAL.item = ast.BRIEOptionCSVBackslashEscape } - case 538: + case 541: { parser.yyVAL.item = ast.BRIEOptionCSVTrimLastSeparators } - case 539: + case 542: { parser.yyVAL.item = ast.BRIEOptionTiKVImporter } - case 540: + case 543: { parser.yyVAL.item = ast.BRIEOptionCSVSeparator } - case 541: + case 544: { parser.yyVAL.item = ast.BRIEOptionCSVDelimiter } - case 542: + case 545: { parser.yyVAL.item = ast.BRIEOptionCSVNull } - case 543: + case 546: { parser.yyVAL.item = ast.BRIEOptionBackend } - case 544: + case 547: { parser.yyVAL.item = ast.BRIEOptionOnDuplicate } - case 545: + case 548: { parser.yyVAL.item = ast.BRIEOptionOnDuplicate } - case 546: + case 549: { parser.yyVAL.item = &ast.BRIEOption{ Tp: yyS[yypt-2].item.(ast.BRIEOptionType), UintValue: yyS[yypt-0].item.(uint64), } } - case 547: + case 550: { value := uint64(0) if yyS[yypt-0].item.(bool) { @@ -14587,21 +14692,21 @@ yynewstate: UintValue: value, } } - case 548: + case 551: { parser.yyVAL.item = &ast.BRIEOption{ Tp: yyS[yypt-2].item.(ast.BRIEOptionType), StrValue: yyS[yypt-0].ident, } } - case 549: + case 552: { parser.yyVAL.item = &ast.BRIEOption{ Tp: yyS[yypt-2].item.(ast.BRIEOptionType), StrValue: strings.ToLower(yyS[yypt-0].ident), } } - case 550: + case 553: { unit, err := yyS[yypt-1].item.(ast.TimeUnitType).Duration() if err != nil { @@ -14614,35 +14719,35 @@ yynewstate: UintValue: yyS[yypt-2].item.(uint64) * uint64(unit), } } - case 551: + case 554: { parser.yyVAL.item = &ast.BRIEOption{ Tp: ast.BRIEOptionBackupTS, StrValue: yyS[yypt-0].ident, } } - case 552: + case 555: { parser.yyVAL.item = &ast.BRIEOption{ Tp: ast.BRIEOptionBackupTSO, UintValue: yyS[yypt-0].item.(uint64), } } - case 553: + case 556: { parser.yyVAL.item = &ast.BRIEOption{ Tp: ast.BRIEOptionLastBackupTS, StrValue: yyS[yypt-0].ident, } } - case 554: + case 557: { parser.yyVAL.item = &ast.BRIEOption{ Tp: ast.BRIEOptionLastBackupTSO, UintValue: yyS[yypt-0].item.(uint64), } } - case 555: + case 558: { // TODO: check overflow? parser.yyVAL.item = &ast.BRIEOption{ @@ -14650,21 +14755,21 @@ yynewstate: UintValue: yyS[yypt-3].item.(uint64) * 1048576, } } - case 556: + case 559: { parser.yyVAL.item = &ast.BRIEOption{ Tp: ast.BRIEOptionCSVHeader, UintValue: ast.BRIECSVHeaderIsColumns, } } - case 557: + case 560: { parser.yyVAL.item = &ast.BRIEOption{ Tp: ast.BRIEOptionCSVHeader, UintValue: yyS[yypt-0].item.(uint64), } } - case 558: + case 561: { value := uint64(0) if yyS[yypt-0].item.(bool) { @@ -14675,14 +14780,14 @@ yynewstate: UintValue: value, } } - case 559: + case 562: { parser.yyVAL.item = &ast.BRIEOption{ Tp: ast.BRIEOptionChecksum, UintValue: uint64(yyS[yypt-0].item.(ast.BRIEOptionLevel)), } } - case 560: + case 563: { value := uint64(0) if yyS[yypt-0].item.(bool) { @@ -14693,18 +14798,18 @@ yynewstate: UintValue: value, } } - case 561: + case 564: { parser.yyVAL.item = &ast.BRIEOption{ Tp: ast.BRIEOptionAnalyze, UintValue: uint64(yyS[yypt-0].item.(ast.BRIEOptionLevel)), } } - case 562: + case 565: { parser.yyVAL.item = getUint64FromNUM(yyS[yypt-0].item) } - case 563: + case 566: { v, rangeErrMsg := getInt64FromNUM(yyS[yypt-0].item) if len(rangeErrMsg) != 0 { @@ -14713,35 +14818,35 @@ yynewstate: } parser.yyVAL.item = v } - case 565: + case 568: { parser.yyVAL.item = yyS[yypt-0].item.(int64) != 0 } - case 566: + case 569: { parser.yyVAL.item = false } - case 567: + case 570: { parser.yyVAL.item = true } - case 568: + case 571: { parser.yyVAL.item = ast.BRIEOptionLevelOff } - case 569: + case 572: { parser.yyVAL.item = ast.BRIEOptionLevelOptional } - case 570: + case 573: { parser.yyVAL.item = ast.BRIEOptionLevelRequired } - case 571: + case 574: { parser.yyVAL.statement = &ast.PurgeImportStmt{TaskID: getUint64FromNUM(yyS[yypt-0].item)} } - case 572: + case 575: { parser.yyVAL.statement = &ast.CreateImportStmt{ IfNotExists: yyS[yypt-5].item.(bool), @@ -14751,21 +14856,21 @@ yynewstate: Options: yyS[yypt-0].item.([]*ast.BRIEOption), } } - case 573: + case 576: { parser.yyVAL.statement = &ast.StopImportStmt{ IfRunning: yyS[yypt-1].item.(bool), Name: yyS[yypt-0].ident, } } - case 574: + case 577: { parser.yyVAL.statement = &ast.ResumeImportStmt{ IfNotRunning: yyS[yypt-1].item.(bool), Name: yyS[yypt-0].ident, } } - case 575: + case 578: { s := &ast.AlterImportStmt{ Name: yyS[yypt-3].ident, @@ -14777,14 +14882,14 @@ yynewstate: } parser.yyVAL.statement = s } - case 576: + case 579: { parser.yyVAL.statement = &ast.DropImportStmt{ IfExists: yyS[yypt-1].item.(bool), Name: yyS[yypt-0].ident, } } - case 577: + case 580: { parser.yyVAL.statement = &ast.ShowImportStmt{ Name: yyS[yypt-2].ident, @@ -14792,73 +14897,73 @@ yynewstate: TableNames: yyS[yypt-0].item.([]*ast.TableName), } } - case 578: + case 581: { parser.yyVAL.item = false } - case 579: + case 582: { parser.yyVAL.item = true } - case 580: + case 583: { parser.yyVAL.item = false } - case 581: + case 584: { parser.yyVAL.item = true } - case 582: + case 585: { parser.yyVAL.item = false } - case 583: + case 586: { parser.yyVAL.item = true } - case 584: + case 587: { parser.yyVAL.item = ast.ErrorHandleError } - case 585: + case 588: { parser.yyVAL.item = ast.ErrorHandleReplace } - case 586: + case 589: { parser.yyVAL.item = ast.ErrorHandleSkipAll } - case 587: + case 590: { parser.yyVAL.item = ast.ErrorHandleSkipConstraint } - case 588: + case 591: { parser.yyVAL.item = ast.ErrorHandleSkipDuplicate } - case 589: + case 592: { parser.yyVAL.item = ast.ErrorHandleSkipStrict } - case 590: + case 593: { parser.yyVAL.item = nil } - case 591: + case 594: { parser.yyVAL.item = &ast.ImportTruncate{ IsErrorsOnly: false, TableNames: yyS[yypt-0].item.([]*ast.TableName), } } - case 592: + case 595: { parser.yyVAL.item = &ast.ImportTruncate{ IsErrorsOnly: true, TableNames: yyS[yypt-0].item.([]*ast.TableName), } } - case 593: + case 596: { v := yyS[yypt-2].ident v = strings.TrimPrefix(v, "@") @@ -14869,19 +14974,19 @@ yynewstate: Value: yyS[yypt-0].expr, } } - case 594: + case 597: { parser.yyVAL.expr = &ast.BinaryOperationExpr{Op: opcode.LogicOr, L: yyS[yypt-2].expr, R: yyS[yypt-0].expr} } - case 595: + case 598: { parser.yyVAL.expr = &ast.BinaryOperationExpr{Op: opcode.LogicXor, L: yyS[yypt-2].expr, R: yyS[yypt-0].expr} } - case 596: + case 599: { parser.yyVAL.expr = &ast.BinaryOperationExpr{Op: opcode.LogicAnd, L: yyS[yypt-2].expr, R: yyS[yypt-0].expr} } - case 597: + case 600: { expr, ok := yyS[yypt-0].expr.(*ast.ExistsSubqueryExpr) if ok { @@ -14891,7 +14996,7 @@ yynewstate: parser.yyVAL.expr = &ast.UnaryOperationExpr{Op: opcode.Not, V: yyS[yypt-0].expr} } } - case 598: + case 601: { parser.yyVAL.expr = &ast.MatchAgainst{ ColumnNames: yyS[yypt-6].item.([]*ast.ColumnName), @@ -14899,87 +15004,87 @@ yynewstate: Modifier: ast.FulltextSearchModifier(yyS[yypt-1].item.(int)), } } - case 599: + case 602: { parser.yyVAL.expr = &ast.IsTruthExpr{Expr: yyS[yypt-2].expr, Not: !yyS[yypt-1].item.(bool), True: int64(1)} } - case 600: + case 603: { parser.yyVAL.expr = &ast.IsTruthExpr{Expr: yyS[yypt-2].expr, Not: !yyS[yypt-1].item.(bool), True: int64(0)} } - case 601: + case 604: { /* https://dev.mysql.com/doc/refman/5.7/en/comparison-operators.html#operator_is */ parser.yyVAL.expr = &ast.IsNullExpr{Expr: yyS[yypt-2].expr, Not: !yyS[yypt-1].item.(bool)} } - case 603: + case 606: { parser.yyVAL.expr = &ast.MaxValueExpr{} } - case 605: + case 608: { parser.yyVAL.item = ast.FulltextSearchModifierNaturalLanguageMode } - case 606: + case 609: { parser.yyVAL.item = ast.FulltextSearchModifierNaturalLanguageMode } - case 607: + case 610: { parser.yyVAL.item = ast.FulltextSearchModifierNaturalLanguageMode | ast.FulltextSearchModifierWithQueryExpansion } - case 608: + case 611: { parser.yyVAL.item = ast.FulltextSearchModifierBooleanMode } - case 609: + case 612: { parser.yyVAL.item = ast.FulltextSearchModifierWithQueryExpansion } - case 614: + case 617: { parser.yyVAL.item = []ast.ExprNode{yyS[yypt-0].expr} } - case 615: + case 618: { parser.yyVAL.item = append(yyS[yypt-2].item.([]ast.ExprNode), yyS[yypt-0].expr) } - case 616: + case 619: { parser.yyVAL.item = []ast.ExprNode{yyS[yypt-0].expr} } - case 617: + case 620: { parser.yyVAL.item = append(yyS[yypt-2].item.([]ast.ExprNode), yyS[yypt-0].expr) } - case 618: + case 621: { parser.yyVAL.item = []ast.ExprNode{} } - case 620: + case 623: { parser.yyVAL.item = []ast.ExprNode{} } - case 622: + case 625: { expr := ast.NewValueExpr(yyS[yypt-0].item, parser.charset, parser.collation) parser.yyVAL.item = []ast.ExprNode{expr} } - case 623: + case 626: { parser.yyVAL.expr = &ast.IsNullExpr{Expr: yyS[yypt-2].expr, Not: !yyS[yypt-1].item.(bool)} } - case 624: + case 627: { parser.yyVAL.expr = &ast.BinaryOperationExpr{Op: yyS[yypt-1].item.(opcode.Op), L: yyS[yypt-2].expr, R: yyS[yypt-0].expr} } - case 625: + case 628: { sq := yyS[yypt-0].expr.(*ast.SubqueryExpr) sq.MultiRows = true parser.yyVAL.expr = &ast.CompareSubqueryExpr{Op: yyS[yypt-2].item.(opcode.Op), L: yyS[yypt-3].expr, R: sq, All: yyS[yypt-1].item.(bool)} } - case 626: + case 629: { v := yyS[yypt-2].ident v = strings.TrimPrefix(v, "@") @@ -14991,101 +15096,101 @@ yynewstate: } parser.yyVAL.expr = &ast.BinaryOperationExpr{Op: yyS[yypt-3].item.(opcode.Op), L: yyS[yypt-4].expr, R: variable} } - case 628: + case 631: { parser.yyVAL.item = opcode.GE } - case 629: + case 632: { parser.yyVAL.item = opcode.GT } - case 630: + case 633: { parser.yyVAL.item = opcode.LE } - case 631: + case 634: { parser.yyVAL.item = opcode.LT } - case 632: + case 635: { parser.yyVAL.item = opcode.NE } - case 633: + case 636: { parser.yyVAL.item = opcode.NE } - case 634: + case 637: { parser.yyVAL.item = opcode.EQ } - case 635: + case 638: { parser.yyVAL.item = opcode.NullEQ } - case 636: + case 639: { parser.yyVAL.item = true } - case 637: + case 640: { parser.yyVAL.item = false } - case 638: + case 641: { parser.yyVAL.item = true } - case 639: + case 642: { parser.yyVAL.item = false } - case 640: + case 643: { parser.yyVAL.item = true } - case 641: + case 644: { parser.yyVAL.item = false } - case 642: + case 645: { parser.yyVAL.item = true } - case 643: + case 646: { parser.yyVAL.item = false } - case 644: + case 647: { parser.yyVAL.item = true } - case 645: + case 648: { parser.yyVAL.item = false } - case 646: + case 649: { parser.yyVAL.item = false } - case 647: + case 650: { parser.yyVAL.item = false } - case 648: + case 651: { parser.yyVAL.item = true } - case 649: + case 652: { parser.yyVAL.expr = &ast.PatternInExpr{Expr: yyS[yypt-4].expr, Not: !yyS[yypt-3].item.(bool), List: yyS[yypt-1].item.([]ast.ExprNode)} } - case 650: + case 653: { sq := yyS[yypt-0].expr.(*ast.SubqueryExpr) sq.MultiRows = true parser.yyVAL.expr = &ast.PatternInExpr{Expr: yyS[yypt-2].expr, Not: !yyS[yypt-1].item.(bool), Sel: sq} } - case 651: + case 654: { parser.yyVAL.expr = &ast.BetweenExpr{ Expr: yyS[yypt-4].expr, @@ -15094,7 +15199,7 @@ yynewstate: Not: !yyS[yypt-3].item.(bool), } } - case 652: + case 655: { escape := yyS[yypt-0].ident if len(escape) > 1 { @@ -15110,57 +15215,57 @@ yynewstate: Escape: escape[0], } } - case 653: + case 656: { parser.yyVAL.expr = &ast.PatternRegexpExpr{Expr: yyS[yypt-2].expr, Pattern: yyS[yypt-0].expr, Not: !yyS[yypt-1].item.(bool)} } - case 657: + case 660: { parser.yyVAL.ident = "\\" } - case 658: + case 661: { parser.yyVAL.ident = yyS[yypt-0].ident } - case 659: + case 662: { parser.yyVAL.item = &ast.SelectField{WildCard: &ast.WildCardField{}} } - case 660: + case 663: { wildCard := &ast.WildCardField{Table: model.NewCIStr(yyS[yypt-2].ident)} parser.yyVAL.item = &ast.SelectField{WildCard: wildCard} } - case 661: + case 664: { wildCard := &ast.WildCardField{Schema: model.NewCIStr(yyS[yypt-4].ident), Table: model.NewCIStr(yyS[yypt-2].ident)} parser.yyVAL.item = &ast.SelectField{WildCard: wildCard} } - case 662: + case 665: { expr := yyS[yypt-1].expr asName := yyS[yypt-0].ident parser.yyVAL.item = &ast.SelectField{Expr: expr, AsName: model.NewCIStr(asName)} } - case 663: + case 666: { parser.yyVAL.ident = "" } - case 666: + case 669: { parser.yyVAL.ident = yyS[yypt-0].ident } - case 668: + case 671: { parser.yyVAL.ident = yyS[yypt-0].ident } - case 669: + case 672: { field := yyS[yypt-0].item.(*ast.SelectField) field.Offset = parser.startOffset(&yyS[yypt]) parser.yyVAL.item = []*ast.SelectField{field} } - case 670: + case 673: { fl := yyS[yypt-2].item.([]*ast.SelectField) last := fl[len(fl)-1] @@ -15172,71 +15277,71 @@ yynewstate: newField.Offset = parser.startOffset(&yyS[yypt]) parser.yyVAL.item = append(fl, newField) } - case 671: + case 674: { parser.yyVAL.item = &ast.GroupByClause{Items: yyS[yypt-0].item.([]*ast.ByItem)} } - case 672: + case 675: { parser.yyVAL.item = nil } - case 673: + case 676: { parser.yyVAL.item = &ast.HavingClause{Expr: yyS[yypt-0].expr} } - case 674: + case 677: { parser.yyVAL.item = nil } - case 676: + case 679: { parser.yyVAL.item = &ast.AsOfClause{ TsExpr: yyS[yypt-0].expr.(ast.ExprNode), } } - case 677: + case 680: { parser.yyVAL.item = false } - case 678: + case 681: { parser.yyVAL.item = true } - case 679: + case 682: { parser.yyVAL.item = false } - case 680: + case 683: { parser.yyVAL.item = true } - case 681: + case 684: { parser.yyVAL.item = false } - case 682: + case 685: { parser.yyVAL.item = true } - case 683: + case 686: { parser.yyVAL.item = &ast.NullString{ String: "", Empty: false, } } - case 684: + case 687: { parser.yyVAL.item = &ast.NullString{ String: yyS[yypt-0].ident, Empty: len(yyS[yypt-0].ident) == 0, } } - case 685: + case 688: { parser.yyVAL.item = nil } - case 686: + case 689: { // Merge the options if yyS[yypt-1].item == nil { @@ -15260,19 +15365,19 @@ yynewstate: parser.yyVAL.item = opt1 } } - case 687: + case 690: { parser.yyVAL.item = &ast.IndexOption{ KeyBlockSize: yyS[yypt-0].item.(uint64), } } - case 688: + case 691: { parser.yyVAL.item = &ast.IndexOption{ Tp: yyS[yypt-0].item.(model.IndexType), } } - case 689: + case 692: { parser.yyVAL.item = &ast.IndexOption{ ParserName: model.NewCIStr(yyS[yypt-0].ident), @@ -15280,75 +15385,75 @@ yynewstate: yylex.AppendError(yylex.Errorf("The WITH PARASER clause is parsed but ignored by all storage engines.")) parser.lastErrorAsWarn() } - case 690: + case 693: { parser.yyVAL.item = &ast.IndexOption{ Comment: yyS[yypt-0].ident, } } - case 691: + case 694: { parser.yyVAL.item = &ast.IndexOption{ Visibility: yyS[yypt-0].item.(ast.IndexVisibility), } } - case 692: + case 695: { parser.yyVAL.item = &ast.IndexOption{ PrimaryKeyTp: yyS[yypt-0].item.(model.PrimaryKeyType), } } - case 693: + case 696: { parser.yyVAL.item = []interface{}{yyS[yypt-0].item, nil} } - case 694: + case 697: { parser.yyVAL.item = []interface{}{yyS[yypt-2].item, yyS[yypt-0].item} } - case 695: + case 698: { parser.yyVAL.item = []interface{}{&ast.NullString{String: yyS[yypt-2].ident, Empty: len(yyS[yypt-2].ident) == 0}, yyS[yypt-0].item} } - case 696: + case 699: { parser.yyVAL.item = nil } - case 698: + case 701: { parser.yyVAL.item = yyS[yypt-0].item } - case 699: + case 702: { parser.yyVAL.item = yyS[yypt-0].item } - case 700: + case 703: { parser.yyVAL.item = model.IndexTypeBtree } - case 701: + case 704: { parser.yyVAL.item = model.IndexTypeHash } - case 702: + case 705: { parser.yyVAL.item = model.IndexTypeRtree } - case 703: + case 706: { parser.yyVAL.item = ast.IndexVisibilityVisible } - case 704: + case 707: { parser.yyVAL.item = ast.IndexVisibilityInvisible } - case 1176: + case 1182: { parser.yyVAL.statement = &ast.CallStmt{ Procedure: yyS[yypt-0].expr.(*ast.FuncCallExpr), } } - case 1177: + case 1183: { parser.yyVAL.expr = &ast.FuncCallExpr{ Tp: ast.FuncCallExprTypeGeneric, @@ -15356,7 +15461,7 @@ yynewstate: Args: []ast.ExprNode{}, } } - case 1178: + case 1184: { parser.yyVAL.expr = &ast.FuncCallExpr{ Tp: ast.FuncCallExprTypeGeneric, @@ -15365,7 +15470,7 @@ yynewstate: Args: []ast.ExprNode{}, } } - case 1179: + case 1185: { parser.yyVAL.expr = &ast.FuncCallExpr{ Tp: ast.FuncCallExprTypeGeneric, @@ -15373,7 +15478,7 @@ yynewstate: Args: yyS[yypt-1].item.([]ast.ExprNode), } } - case 1180: + case 1186: { parser.yyVAL.expr = &ast.FuncCallExpr{ Tp: ast.FuncCallExprTypeGeneric, @@ -15382,7 +15487,7 @@ yynewstate: Args: yyS[yypt-1].item.([]ast.ExprNode), } } - case 1181: + case 1187: { x := yyS[yypt-1].item.(*ast.InsertStmt) x.Priority = yyS[yypt-6].item.(mysql.PriorityEnum) @@ -15399,26 +15504,26 @@ yynewstate: x.PartitionNames = yyS[yypt-2].item.([]model.CIStr) parser.yyVAL.statement = x } - case 1184: + case 1190: { parser.yyVAL.item = &ast.InsertStmt{ Columns: yyS[yypt-3].item.([]*ast.ColumnName), Lists: yyS[yypt-0].item.([][]ast.ExprNode), } } - case 1185: + case 1191: { parser.yyVAL.item = &ast.InsertStmt{Columns: yyS[yypt-2].item.([]*ast.ColumnName), Select: yyS[yypt-0].statement.(ast.ResultSetNode)} } - case 1186: + case 1192: { parser.yyVAL.item = &ast.InsertStmt{Columns: yyS[yypt-2].item.([]*ast.ColumnName), Select: yyS[yypt-0].statement.(ast.ResultSetNode)} } - case 1187: + case 1193: { parser.yyVAL.item = &ast.InsertStmt{Columns: yyS[yypt-2].item.([]*ast.ColumnName), Select: yyS[yypt-0].statement.(ast.ResultSetNode)} } - case 1188: + case 1194: { var sel ast.ResultSetNode switch x := yyS[yypt-0].expr.(*ast.SubqueryExpr).Query.(type) { @@ -15431,23 +15536,23 @@ yynewstate: } parser.yyVAL.item = &ast.InsertStmt{Columns: yyS[yypt-2].item.([]*ast.ColumnName), Select: sel} } - case 1189: + case 1195: { parser.yyVAL.item = &ast.InsertStmt{Lists: yyS[yypt-0].item.([][]ast.ExprNode)} } - case 1190: + case 1196: { parser.yyVAL.item = &ast.InsertStmt{Select: yyS[yypt-0].statement.(ast.ResultSetNode)} } - case 1191: + case 1197: { parser.yyVAL.item = &ast.InsertStmt{Select: yyS[yypt-0].statement.(ast.ResultSetNode)} } - case 1192: + case 1198: { parser.yyVAL.item = &ast.InsertStmt{Select: yyS[yypt-0].statement.(ast.ResultSetNode)} } - case 1193: + case 1199: { var sel ast.ResultSetNode switch x := yyS[yypt-0].expr.(*ast.SubqueryExpr).Query.(type) { @@ -15460,66 +15565,66 @@ yynewstate: } parser.yyVAL.item = &ast.InsertStmt{Select: sel} } - case 1194: + case 1200: { parser.yyVAL.item = &ast.InsertStmt{Setlist: yyS[yypt-0].item.([]*ast.Assignment)} } - case 1197: + case 1203: { parser.yyVAL.item = [][]ast.ExprNode{yyS[yypt-0].item.([]ast.ExprNode)} } - case 1198: + case 1204: { parser.yyVAL.item = append(yyS[yypt-2].item.([][]ast.ExprNode), yyS[yypt-0].item.([]ast.ExprNode)) } - case 1199: + case 1205: { parser.yyVAL.item = yyS[yypt-1].item } - case 1200: + case 1206: { parser.yyVAL.item = []ast.ExprNode{} } - case 1202: + case 1208: { parser.yyVAL.item = append(yyS[yypt-2].item.([]ast.ExprNode), yyS[yypt-0].expr) } - case 1203: + case 1209: { parser.yyVAL.item = []ast.ExprNode{yyS[yypt-0].expr} } - case 1205: + case 1211: { parser.yyVAL.expr = &ast.DefaultExpr{} } - case 1206: + case 1212: { parser.yyVAL.item = &ast.Assignment{ Column: yyS[yypt-2].item.(*ast.ColumnName), Expr: yyS[yypt-0].expr, } } - case 1207: + case 1213: { parser.yyVAL.item = []*ast.Assignment{} } - case 1208: + case 1214: { parser.yyVAL.item = []*ast.Assignment{yyS[yypt-0].item.(*ast.Assignment)} } - case 1209: + case 1215: { parser.yyVAL.item = append(yyS[yypt-2].item.([]*ast.Assignment), yyS[yypt-0].item.(*ast.Assignment)) } - case 1210: + case 1216: { parser.yyVAL.item = nil } - case 1211: + case 1217: { parser.yyVAL.item = yyS[yypt-0].item } - case 1212: + case 1218: { x := yyS[yypt-0].item.(*ast.InsertStmt) x.IsReplace = true @@ -15529,31 +15634,31 @@ yynewstate: x.PartitionNames = yyS[yypt-1].item.([]model.CIStr) parser.yyVAL.statement = x } - case 1213: + case 1219: { parser.yyVAL.expr = ast.NewValueExpr(false, parser.charset, parser.collation) } - case 1214: + case 1220: { parser.yyVAL.expr = ast.NewValueExpr(nil, parser.charset, parser.collation) } - case 1215: + case 1221: { parser.yyVAL.expr = ast.NewValueExpr(true, parser.charset, parser.collation) } - case 1216: + case 1222: { parser.yyVAL.expr = ast.NewValueExpr(yyS[yypt-0].item, parser.charset, parser.collation) } - case 1217: + case 1223: { parser.yyVAL.expr = ast.NewValueExpr(yyS[yypt-0].item, parser.charset, parser.collation) } - case 1218: + case 1224: { parser.yyVAL.expr = ast.NewValueExpr(yyS[yypt-0].item, parser.charset, parser.collation) } - case 1220: + case 1226: { // See https://dev.mysql.com/doc/refman/5.7/en/charset-literal.html co, err := charset.GetDefaultCollationLegacy(yyS[yypt-1].ident) @@ -15570,15 +15675,15 @@ yynewstate: } parser.yyVAL.expr = expr } - case 1221: + case 1227: { parser.yyVAL.expr = ast.NewValueExpr(yyS[yypt-0].item, parser.charset, parser.collation) } - case 1222: + case 1228: { parser.yyVAL.expr = ast.NewValueExpr(yyS[yypt-0].item, parser.charset, parser.collation) } - case 1223: + case 1229: { co, err := charset.GetDefaultCollationLegacy(yyS[yypt-1].ident) if err != nil { @@ -15594,7 +15699,7 @@ yynewstate: } parser.yyVAL.expr = expr } - case 1224: + case 1230: { co, err := charset.GetDefaultCollationLegacy(yyS[yypt-1].ident) if err != nil { @@ -15610,12 +15715,12 @@ yynewstate: } parser.yyVAL.expr = expr } - case 1225: + case 1231: { expr := ast.NewValueExpr(yyS[yypt-0].ident, parser.charset, parser.collation) parser.yyVAL.expr = expr } - case 1226: + case 1232: { valExpr := yyS[yypt-1].expr.(ast.ValueExpr) strLit := valExpr.GetString() @@ -15628,31 +15733,31 @@ yynewstate: } parser.yyVAL.expr = expr } - case 1227: + case 1233: { parser.yyVAL.item = []*ast.AlterOrderItem{yyS[yypt-0].item.(*ast.AlterOrderItem)} } - case 1228: + case 1234: { parser.yyVAL.item = append(yyS[yypt-2].item.([]*ast.AlterOrderItem), yyS[yypt-0].item.(*ast.AlterOrderItem)) } - case 1229: + case 1235: { parser.yyVAL.item = &ast.AlterOrderItem{Column: yyS[yypt-1].item.(*ast.ColumnName), Desc: yyS[yypt-0].item.(bool)} } - case 1230: + case 1236: { parser.yyVAL.item = &ast.OrderByClause{Items: yyS[yypt-0].item.([]*ast.ByItem)} } - case 1231: + case 1237: { parser.yyVAL.item = []*ast.ByItem{yyS[yypt-0].item.(*ast.ByItem)} } - case 1232: + case 1238: { parser.yyVAL.item = append(yyS[yypt-2].item.([]*ast.ByItem), yyS[yypt-0].item.(*ast.ByItem)) } - case 1233: + case 1239: { expr := yyS[yypt-0].expr valueExpr, ok := expr.(ast.ValueExpr) @@ -15664,7 +15769,7 @@ yynewstate: } parser.yyVAL.item = &ast.ByItem{Expr: expr, NullOrder: true} } - case 1234: + case 1240: { expr := yyS[yypt-1].expr valueExpr, ok := expr.(ast.ValueExpr) @@ -15676,55 +15781,55 @@ yynewstate: } parser.yyVAL.item = &ast.ByItem{Expr: expr, Desc: yyS[yypt-0].item.(bool)} } - case 1235: + case 1241: { parser.yyVAL.item = false } - case 1236: + case 1242: { parser.yyVAL.item = true } - case 1237: + case 1243: { parser.yyVAL.item = false // ASC by default } - case 1238: + case 1244: { parser.yyVAL.item = false } - case 1239: + case 1245: { parser.yyVAL.item = true } - case 1240: + case 1246: { parser.yyVAL.item = nil } - case 1242: + case 1248: { parser.yyVAL.expr = &ast.BinaryOperationExpr{Op: opcode.Or, L: yyS[yypt-2].expr, R: yyS[yypt-0].expr} } - case 1243: + case 1249: { parser.yyVAL.expr = &ast.BinaryOperationExpr{Op: opcode.And, L: yyS[yypt-2].expr, R: yyS[yypt-0].expr} } - case 1244: + case 1250: { parser.yyVAL.expr = &ast.BinaryOperationExpr{Op: opcode.LeftShift, L: yyS[yypt-2].expr, R: yyS[yypt-0].expr} } - case 1245: + case 1251: { parser.yyVAL.expr = &ast.BinaryOperationExpr{Op: opcode.RightShift, L: yyS[yypt-2].expr, R: yyS[yypt-0].expr} } - case 1246: + case 1252: { parser.yyVAL.expr = &ast.BinaryOperationExpr{Op: opcode.Plus, L: yyS[yypt-2].expr, R: yyS[yypt-0].expr} } - case 1247: + case 1253: { parser.yyVAL.expr = &ast.BinaryOperationExpr{Op: opcode.Minus, L: yyS[yypt-2].expr, R: yyS[yypt-0].expr} } - case 1248: + case 1254: { parser.yyVAL.expr = &ast.FuncCallExpr{ FnName: model.NewCIStr("DATE_ADD"), @@ -15735,7 +15840,7 @@ yynewstate: }, } } - case 1249: + case 1255: { parser.yyVAL.expr = &ast.FuncCallExpr{ FnName: model.NewCIStr("DATE_SUB"), @@ -15746,7 +15851,7 @@ yynewstate: }, } } - case 1250: + case 1256: { parser.yyVAL.expr = &ast.FuncCallExpr{ FnName: model.NewCIStr("DATE_ADD"), @@ -15757,44 +15862,44 @@ yynewstate: }, } } - case 1251: + case 1257: { parser.yyVAL.expr = &ast.BinaryOperationExpr{Op: opcode.Mul, L: yyS[yypt-2].expr, R: yyS[yypt-0].expr} } - case 1252: + case 1258: { parser.yyVAL.expr = &ast.BinaryOperationExpr{Op: opcode.Div, L: yyS[yypt-2].expr, R: yyS[yypt-0].expr} } - case 1253: + case 1259: { parser.yyVAL.expr = &ast.BinaryOperationExpr{Op: opcode.Mod, L: yyS[yypt-2].expr, R: yyS[yypt-0].expr} } - case 1254: + case 1260: { parser.yyVAL.expr = &ast.BinaryOperationExpr{Op: opcode.IntDiv, L: yyS[yypt-2].expr, R: yyS[yypt-0].expr} } - case 1255: + case 1261: { parser.yyVAL.expr = &ast.BinaryOperationExpr{Op: opcode.Mod, L: yyS[yypt-2].expr, R: yyS[yypt-0].expr} } - case 1256: + case 1262: { parser.yyVAL.expr = &ast.BinaryOperationExpr{Op: opcode.Xor, L: yyS[yypt-2].expr, R: yyS[yypt-0].expr} } - case 1258: + case 1264: { parser.yyVAL.expr = &ast.ColumnNameExpr{Name: &ast.ColumnName{ Name: model.NewCIStr(yyS[yypt-0].ident), }} } - case 1259: + case 1265: { parser.yyVAL.expr = &ast.ColumnNameExpr{Name: &ast.ColumnName{ Table: model.NewCIStr(yyS[yypt-2].ident), Name: model.NewCIStr(yyS[yypt-0].ident), }} } - case 1260: + case 1266: { parser.yyVAL.expr = &ast.ColumnNameExpr{Name: &ast.ColumnName{ Schema: model.NewCIStr(yyS[yypt-4].ident), @@ -15802,39 +15907,39 @@ yynewstate: Name: model.NewCIStr(yyS[yypt-0].ident), }} } - case 1265: + case 1271: { parser.yyVAL.expr = &ast.SetCollationExpr{Expr: yyS[yypt-2].expr, Collate: yyS[yypt-0].ident} } - case 1268: + case 1274: { parser.yyVAL.expr = ast.NewParamMarkerExpr(yyS[yypt].offset) } - case 1271: + case 1277: { parser.yyVAL.expr = &ast.UnaryOperationExpr{Op: opcode.Not2, V: yyS[yypt-0].expr} } - case 1272: + case 1278: { parser.yyVAL.expr = &ast.UnaryOperationExpr{Op: opcode.BitNeg, V: yyS[yypt-0].expr} } - case 1273: + case 1279: { parser.yyVAL.expr = &ast.UnaryOperationExpr{Op: opcode.Minus, V: yyS[yypt-0].expr} } - case 1274: + case 1280: { parser.yyVAL.expr = &ast.UnaryOperationExpr{Op: opcode.Plus, V: yyS[yypt-0].expr} } - case 1275: + case 1281: { parser.yyVAL.expr = &ast.FuncCallExpr{FnName: model.NewCIStr(ast.Concat), Args: []ast.ExprNode{yyS[yypt-2].expr, yyS[yypt-0].expr}} } - case 1276: + case 1282: { parser.yyVAL.expr = &ast.UnaryOperationExpr{Op: opcode.Not2, V: yyS[yypt-0].expr} } - case 1278: + case 1284: { startOffset := parser.startOffset(&yyS[yypt-1]) endOffset := parser.endOffset(&yyS[yypt]) @@ -15842,23 +15947,23 @@ yynewstate: expr.SetText(parser.lexer.client, parser.src[startOffset:endOffset]) parser.yyVAL.expr = &ast.ParenthesesExpr{Expr: expr} } - case 1279: + case 1285: { values := append(yyS[yypt-3].item.([]ast.ExprNode), yyS[yypt-1].expr) parser.yyVAL.expr = &ast.RowExpr{Values: values} } - case 1280: + case 1286: { values := append(yyS[yypt-3].item.([]ast.ExprNode), yyS[yypt-1].expr) parser.yyVAL.expr = &ast.RowExpr{Values: values} } - case 1281: + case 1287: { sq := yyS[yypt-0].expr.(*ast.SubqueryExpr) sq.Exists = true parser.yyVAL.expr = &ast.ExistsSubqueryExpr{Sel: sq} } - case 1282: + case 1288: { /* * ODBC escape syntax. @@ -15882,7 +15987,7 @@ yynewstate: parser.yyVAL.expr = yyS[yypt-1].expr } } - case 1283: + case 1289: { // See https://dev.mysql.com/doc/refman/5.7/en/cast-functions.html#operator_binary tp := types.NewFieldType(mysql.TypeString) @@ -15895,7 +16000,7 @@ yynewstate: FunctionType: ast.CastBinaryOperator, } } - case 1284: + case 1290: { /* See https://dev.mysql.com/doc/refman/5.7/en/cast-functions.html#function_cast */ tp := yyS[yypt-1].item.(*types.FieldType) @@ -15915,7 +16020,7 @@ yynewstate: ExplicitCharSet: explicitCharset, } } - case 1285: + case 1291: { x := &ast.CaseExpr{WhenClauses: yyS[yypt-2].item.([]*ast.WhenClause)} if yyS[yypt-3].expr != nil { @@ -15926,7 +16031,7 @@ yynewstate: } parser.yyVAL.expr = x } - case 1286: + case 1292: { // See https://dev.mysql.com/doc/refman/5.7/en/cast-functions.html#function_convert tp := yyS[yypt-1].item.(*types.FieldType) @@ -15946,7 +16051,7 @@ yynewstate: ExplicitCharSet: explicitCharset, } } - case 1287: + case 1293: { // See https://dev.mysql.com/doc/refman/5.7/en/cast-functions.html#function_convert charset1 := ast.NewValueExpr(yyS[yypt-1].ident, "", "") @@ -15955,62 +16060,62 @@ yynewstate: Args: []ast.ExprNode{yyS[yypt-3].expr, charset1}, } } - case 1288: + case 1294: { parser.yyVAL.expr = &ast.DefaultExpr{Name: yyS[yypt-1].expr.(*ast.ColumnNameExpr).Name} } - case 1289: + case 1295: { parser.yyVAL.expr = &ast.ValuesExpr{Column: yyS[yypt-1].expr.(*ast.ColumnNameExpr)} } - case 1290: + case 1296: { expr := ast.NewValueExpr(yyS[yypt-0].ident, parser.charset, parser.collation) parser.yyVAL.expr = &ast.FuncCallExpr{FnName: model.NewCIStr(ast.JSONExtract), Args: []ast.ExprNode{yyS[yypt-2].expr, expr}} } - case 1291: + case 1297: { expr := ast.NewValueExpr(yyS[yypt-0].ident, parser.charset, parser.collation) extract := &ast.FuncCallExpr{FnName: model.NewCIStr(ast.JSONExtract), Args: []ast.ExprNode{yyS[yypt-2].expr, expr}} parser.yyVAL.expr = &ast.FuncCallExpr{FnName: model.NewCIStr(ast.JSONUnquote), Args: []ast.ExprNode{extract}} } - case 1294: + case 1300: { parser.yyVAL.item = false } - case 1295: + case 1301: { parser.yyVAL.item = true } - case 1296: + case 1302: { parser.yyVAL.item = false } - case 1298: + case 1304: { parser.yyVAL.item = true } - case 1301: + case 1307: { parser.yyVAL.item = true } - case 1344: + case 1350: { parser.yyVAL.expr = &ast.FuncCallExpr{FnName: model.NewCIStr(yyS[yypt-3].ident), Args: yyS[yypt-1].item.([]ast.ExprNode)} } - case 1345: + case 1351: { parser.yyVAL.expr = &ast.FuncCallExpr{FnName: model.NewCIStr(yyS[yypt-3].ident), Args: yyS[yypt-1].item.([]ast.ExprNode)} } - case 1346: + case 1352: { parser.yyVAL.expr = &ast.FuncCallExpr{FnName: model.NewCIStr(yyS[yypt-1].ident)} } - case 1347: + case 1353: { parser.yyVAL.expr = &ast.FuncCallExpr{FnName: model.NewCIStr(yyS[yypt-2].ident)} } - case 1348: + case 1354: { args := []ast.ExprNode{} if yyS[yypt-0].item != nil { @@ -16018,7 +16123,7 @@ yynewstate: } parser.yyVAL.expr = &ast.FuncCallExpr{FnName: model.NewCIStr(yyS[yypt-1].ident), Args: args} } - case 1349: + case 1355: { nilVal := ast.NewValueExpr(nil, parser.charset, parser.collation) args := yyS[yypt-1].item.([]ast.ExprNode) @@ -16027,7 +16132,7 @@ yynewstate: Args: append(args, nilVal), } } - case 1350: + case 1356: { charset1 := ast.NewValueExpr(yyS[yypt-1].ident, "", "") args := yyS[yypt-3].item.([]ast.ExprNode) @@ -16036,42 +16141,42 @@ yynewstate: Args: append(args, charset1), } } - case 1351: + case 1357: { expr := ast.NewValueExpr(yyS[yypt-0].ident, "", "") parser.yyVAL.expr = &ast.FuncCallExpr{FnName: model.NewCIStr(ast.DateLiteral), Args: []ast.ExprNode{expr}} } - case 1352: + case 1358: { expr := ast.NewValueExpr(yyS[yypt-0].ident, "", "") parser.yyVAL.expr = &ast.FuncCallExpr{FnName: model.NewCIStr(ast.TimeLiteral), Args: []ast.ExprNode{expr}} } - case 1353: + case 1359: { expr := ast.NewValueExpr(yyS[yypt-0].ident, "", "") parser.yyVAL.expr = &ast.FuncCallExpr{FnName: model.NewCIStr(ast.TimestampLiteral), Args: []ast.ExprNode{expr}} } - case 1354: + case 1360: { parser.yyVAL.expr = &ast.FuncCallExpr{FnName: model.NewCIStr(ast.InsertFunc), Args: yyS[yypt-1].item.([]ast.ExprNode)} } - case 1355: + case 1361: { parser.yyVAL.expr = &ast.BinaryOperationExpr{Op: opcode.Mod, L: yyS[yypt-3].expr, R: yyS[yypt-1].expr} } - case 1356: + case 1362: { parser.yyVAL.expr = &ast.FuncCallExpr{FnName: model.NewCIStr(ast.PasswordFunc), Args: yyS[yypt-1].item.([]ast.ExprNode)} } - case 1357: + case 1363: { parser.yyVAL.expr = &ast.FuncCallExpr{FnName: model.NewCIStr(yyS[yypt-3].ident), Args: yyS[yypt-1].item.([]ast.ExprNode)} } - case 1358: + case 1364: { parser.yyVAL.expr = &ast.FuncCallExpr{FnName: model.NewCIStr(yyS[yypt-3].ident), Args: yyS[yypt-1].item.([]ast.ExprNode)} } - case 1359: + case 1365: { parser.yyVAL.expr = &ast.FuncCallExpr{ FnName: model.NewCIStr(yyS[yypt-5].ident), @@ -16082,7 +16187,7 @@ yynewstate: }, } } - case 1360: + case 1366: { parser.yyVAL.expr = &ast.FuncCallExpr{ FnName: model.NewCIStr(yyS[yypt-7].ident), @@ -16093,7 +16198,7 @@ yynewstate: }, } } - case 1361: + case 1367: { parser.yyVAL.expr = &ast.FuncCallExpr{ FnName: model.NewCIStr(yyS[yypt-7].ident), @@ -16104,7 +16209,7 @@ yynewstate: }, } } - case 1362: + case 1368: { timeUnit := &ast.TimeUnitExpr{Unit: yyS[yypt-3].item.(ast.TimeUnitType)} parser.yyVAL.expr = &ast.FuncCallExpr{ @@ -16112,7 +16217,7 @@ yynewstate: Args: []ast.ExprNode{timeUnit, yyS[yypt-1].expr}, } } - case 1363: + case 1369: { parser.yyVAL.expr = &ast.FuncCallExpr{ FnName: model.NewCIStr(yyS[yypt-5].ident), @@ -16122,67 +16227,67 @@ yynewstate: }, } } - case 1364: + case 1370: { parser.yyVAL.expr = &ast.FuncCallExpr{FnName: model.NewCIStr(yyS[yypt-5].ident), Args: []ast.ExprNode{yyS[yypt-3].expr, yyS[yypt-1].expr}} } - case 1365: + case 1371: { parser.yyVAL.expr = &ast.FuncCallExpr{ FnName: model.NewCIStr(yyS[yypt-5].ident), Args: []ast.ExprNode{yyS[yypt-3].expr, yyS[yypt-1].expr}, } } - case 1366: + case 1372: { parser.yyVAL.expr = &ast.FuncCallExpr{ FnName: model.NewCIStr(yyS[yypt-5].ident), Args: []ast.ExprNode{yyS[yypt-3].expr, yyS[yypt-1].expr}, } } - case 1367: + case 1373: { parser.yyVAL.expr = &ast.FuncCallExpr{ FnName: model.NewCIStr(yyS[yypt-7].ident), Args: []ast.ExprNode{yyS[yypt-5].expr, yyS[yypt-3].expr, yyS[yypt-1].expr}, } } - case 1368: + case 1374: { parser.yyVAL.expr = &ast.FuncCallExpr{ FnName: model.NewCIStr(yyS[yypt-7].ident), Args: []ast.ExprNode{yyS[yypt-5].expr, yyS[yypt-3].expr, yyS[yypt-1].expr}, } } - case 1369: + case 1375: { parser.yyVAL.expr = &ast.FuncCallExpr{ FnName: model.NewCIStr(yyS[yypt-7].ident), Args: []ast.ExprNode{&ast.TimeUnitExpr{Unit: yyS[yypt-5].item.(ast.TimeUnitType)}, yyS[yypt-3].expr, yyS[yypt-1].expr}, } } - case 1370: + case 1376: { parser.yyVAL.expr = &ast.FuncCallExpr{ FnName: model.NewCIStr(yyS[yypt-7].ident), Args: []ast.ExprNode{&ast.TimeUnitExpr{Unit: yyS[yypt-5].item.(ast.TimeUnitType)}, yyS[yypt-3].expr, yyS[yypt-1].expr}, } } - case 1371: + case 1377: { parser.yyVAL.expr = &ast.FuncCallExpr{ FnName: model.NewCIStr(yyS[yypt-3].ident), Args: []ast.ExprNode{yyS[yypt-1].expr}, } } - case 1372: + case 1378: { parser.yyVAL.expr = &ast.FuncCallExpr{ FnName: model.NewCIStr(yyS[yypt-5].ident), Args: []ast.ExprNode{yyS[yypt-1].expr, yyS[yypt-3].expr}, } } - case 1373: + case 1379: { spaceVal := ast.NewValueExpr(" ", parser.charset, parser.collation) direction := &ast.TrimDirectionExpr{Direction: yyS[yypt-3].item.(ast.TrimDirectionType)} @@ -16191,7 +16296,7 @@ yynewstate: Args: []ast.ExprNode{yyS[yypt-1].expr, spaceVal, direction}, } } - case 1374: + case 1380: { direction := &ast.TrimDirectionExpr{Direction: yyS[yypt-4].item.(ast.TrimDirectionType)} parser.yyVAL.expr = &ast.FuncCallExpr{ @@ -16199,63 +16304,63 @@ yynewstate: Args: []ast.ExprNode{yyS[yypt-1].expr, yyS[yypt-3].expr, direction}, } } - case 1375: + case 1381: { parser.yyVAL.expr = &ast.FuncCallExpr{ FnName: model.NewCIStr(yyS[yypt-3].ident), Args: []ast.ExprNode{yyS[yypt-1].expr}, } } - case 1376: + case 1382: { parser.yyVAL.expr = &ast.FuncCallExpr{ FnName: model.NewCIStr(yyS[yypt-6].ident), Args: []ast.ExprNode{yyS[yypt-4].expr, ast.NewValueExpr("CHAR", parser.charset, parser.collation), ast.NewValueExpr(yyS[yypt-1].item, parser.charset, parser.collation)}, } } - case 1377: + case 1383: { parser.yyVAL.expr = &ast.FuncCallExpr{ FnName: model.NewCIStr(yyS[yypt-6].ident), Args: []ast.ExprNode{yyS[yypt-4].expr, ast.NewValueExpr("BINARY", parser.charset, parser.collation), ast.NewValueExpr(yyS[yypt-1].item, parser.charset, parser.collation)}, } } - case 1379: + case 1385: { parser.yyVAL.expr = &ast.FuncCallExpr{ FnName: model.NewCIStr(yyS[yypt-7].ident), Args: []ast.ExprNode{yyS[yypt-5].expr, yyS[yypt-3].expr, yyS[yypt-1].expr}, } } - case 1380: + case 1386: { parser.yyVAL.item = ast.GetFormatSelectorDate } - case 1381: + case 1387: { parser.yyVAL.item = ast.GetFormatSelectorDatetime } - case 1382: + case 1388: { parser.yyVAL.item = ast.GetFormatSelectorTime } - case 1383: + case 1389: { parser.yyVAL.item = ast.GetFormatSelectorDatetime } - case 1388: + case 1394: { parser.yyVAL.item = ast.TrimBoth } - case 1389: + case 1395: { parser.yyVAL.item = ast.TrimLeading } - case 1390: + case 1396: { parser.yyVAL.item = ast.TrimTrailing } - case 1391: + case 1397: { objNameExpr := &ast.TableNameExpr{ Name: yyS[yypt-1].item.(*ast.TableName), @@ -16265,7 +16370,7 @@ yynewstate: Args: []ast.ExprNode{objNameExpr}, } } - case 1392: + case 1398: { objNameExpr := &ast.TableNameExpr{ Name: yyS[yypt-3].item.(*ast.TableName), @@ -16276,7 +16381,7 @@ yynewstate: Args: []ast.ExprNode{objNameExpr, valueExpr}, } } - case 1394: + case 1400: { if yyS[yypt-0].item != nil { parser.yyVAL.expr = &ast.WindowFuncExpr{F: yyS[yypt-5].ident, Args: []ast.ExprNode{yyS[yypt-2].expr}, Distinct: yyS[yypt-3].item.(bool), Spec: *(yyS[yypt-0].item.(*ast.WindowSpec))} @@ -16284,15 +16389,15 @@ yynewstate: parser.yyVAL.expr = &ast.AggregateFuncExpr{F: yyS[yypt-5].ident, Args: []ast.ExprNode{yyS[yypt-2].expr}, Distinct: yyS[yypt-3].item.(bool)} } } - case 1395: + case 1401: { parser.yyVAL.expr = &ast.AggregateFuncExpr{F: yyS[yypt-3].ident, Args: yyS[yypt-1].item.([]ast.ExprNode), Distinct: false} } - case 1396: + case 1402: { parser.yyVAL.expr = &ast.AggregateFuncExpr{F: yyS[yypt-3].ident, Args: yyS[yypt-1].item.([]ast.ExprNode)} } - case 1397: + case 1403: { if yyS[yypt-0].item != nil { parser.yyVAL.expr = &ast.WindowFuncExpr{F: yyS[yypt-4].ident, Args: []ast.ExprNode{yyS[yypt-2].expr}, Spec: *(yyS[yypt-0].item.(*ast.WindowSpec))} @@ -16300,7 +16405,7 @@ yynewstate: parser.yyVAL.expr = &ast.AggregateFuncExpr{F: yyS[yypt-4].ident, Args: []ast.ExprNode{yyS[yypt-2].expr}} } } - case 1398: + case 1404: { if yyS[yypt-0].item != nil { parser.yyVAL.expr = &ast.WindowFuncExpr{F: yyS[yypt-5].ident, Args: []ast.ExprNode{yyS[yypt-2].expr}, Spec: *(yyS[yypt-0].item.(*ast.WindowSpec))} @@ -16308,7 +16413,7 @@ yynewstate: parser.yyVAL.expr = &ast.AggregateFuncExpr{F: yyS[yypt-5].ident, Args: []ast.ExprNode{yyS[yypt-2].expr}} } } - case 1399: + case 1405: { if yyS[yypt-0].item != nil { parser.yyVAL.expr = &ast.WindowFuncExpr{F: yyS[yypt-4].ident, Args: []ast.ExprNode{yyS[yypt-2].expr}, Spec: *(yyS[yypt-0].item.(*ast.WindowSpec))} @@ -16316,7 +16421,7 @@ yynewstate: parser.yyVAL.expr = &ast.AggregateFuncExpr{F: yyS[yypt-4].ident, Args: []ast.ExprNode{yyS[yypt-2].expr}} } } - case 1400: + case 1406: { if yyS[yypt-0].item != nil { parser.yyVAL.expr = &ast.WindowFuncExpr{F: yyS[yypt-5].ident, Args: []ast.ExprNode{yyS[yypt-2].expr}, Spec: *(yyS[yypt-0].item.(*ast.WindowSpec))} @@ -16324,7 +16429,7 @@ yynewstate: parser.yyVAL.expr = &ast.AggregateFuncExpr{F: yyS[yypt-5].ident, Args: []ast.ExprNode{yyS[yypt-2].expr}} } } - case 1401: + case 1407: { if yyS[yypt-0].item != nil { parser.yyVAL.expr = &ast.WindowFuncExpr{F: yyS[yypt-4].ident, Args: []ast.ExprNode{yyS[yypt-2].expr}, Spec: *(yyS[yypt-0].item.(*ast.WindowSpec))} @@ -16332,7 +16437,7 @@ yynewstate: parser.yyVAL.expr = &ast.AggregateFuncExpr{F: yyS[yypt-4].ident, Args: []ast.ExprNode{yyS[yypt-2].expr}} } } - case 1402: + case 1408: { if yyS[yypt-0].item != nil { parser.yyVAL.expr = &ast.WindowFuncExpr{F: yyS[yypt-5].ident, Args: []ast.ExprNode{yyS[yypt-2].expr}, Spec: *(yyS[yypt-0].item.(*ast.WindowSpec))} @@ -16340,11 +16445,11 @@ yynewstate: parser.yyVAL.expr = &ast.AggregateFuncExpr{F: yyS[yypt-5].ident, Args: []ast.ExprNode{yyS[yypt-2].expr}} } } - case 1403: + case 1409: { parser.yyVAL.expr = &ast.AggregateFuncExpr{F: yyS[yypt-4].ident, Args: yyS[yypt-1].item.([]ast.ExprNode), Distinct: true} } - case 1404: + case 1410: { if yyS[yypt-0].item != nil { parser.yyVAL.expr = &ast.WindowFuncExpr{F: yyS[yypt-5].ident, Args: []ast.ExprNode{yyS[yypt-2].expr}, Spec: *(yyS[yypt-0].item.(*ast.WindowSpec))} @@ -16352,7 +16457,7 @@ yynewstate: parser.yyVAL.expr = &ast.AggregateFuncExpr{F: yyS[yypt-5].ident, Args: []ast.ExprNode{yyS[yypt-2].expr}} } } - case 1405: + case 1411: { if yyS[yypt-0].item != nil { parser.yyVAL.expr = &ast.WindowFuncExpr{F: yyS[yypt-4].ident, Args: []ast.ExprNode{yyS[yypt-2].expr}, Spec: *(yyS[yypt-0].item.(*ast.WindowSpec))} @@ -16360,7 +16465,7 @@ yynewstate: parser.yyVAL.expr = &ast.AggregateFuncExpr{F: yyS[yypt-4].ident, Args: []ast.ExprNode{yyS[yypt-2].expr}} } } - case 1406: + case 1412: { args := []ast.ExprNode{ast.NewValueExpr(1, parser.charset, parser.collation)} if yyS[yypt-0].item != nil { @@ -16369,7 +16474,7 @@ yynewstate: parser.yyVAL.expr = &ast.AggregateFuncExpr{F: yyS[yypt-4].ident, Args: args} } } - case 1407: + case 1413: { args := yyS[yypt-4].item.([]ast.ExprNode) args = append(args, yyS[yypt-2].item.(ast.ExprNode)) @@ -16383,7 +16488,7 @@ yynewstate: parser.yyVAL.expr = agg } } - case 1408: + case 1414: { if yyS[yypt-0].item != nil { parser.yyVAL.expr = &ast.WindowFuncExpr{F: yyS[yypt-5].ident, Args: []ast.ExprNode{yyS[yypt-2].expr}, Distinct: yyS[yypt-3].item.(bool), Spec: *(yyS[yypt-0].item.(*ast.WindowSpec))} @@ -16391,7 +16496,7 @@ yynewstate: parser.yyVAL.expr = &ast.AggregateFuncExpr{F: yyS[yypt-5].ident, Args: []ast.ExprNode{yyS[yypt-2].expr}, Distinct: yyS[yypt-3].item.(bool)} } } - case 1409: + case 1415: { if yyS[yypt-0].item != nil { parser.yyVAL.expr = &ast.WindowFuncExpr{F: yyS[yypt-5].ident, Args: []ast.ExprNode{yyS[yypt-2].expr}, Distinct: yyS[yypt-3].item.(bool), Spec: *(yyS[yypt-0].item.(*ast.WindowSpec))} @@ -16399,7 +16504,7 @@ yynewstate: parser.yyVAL.expr = &ast.AggregateFuncExpr{F: yyS[yypt-5].ident, Args: []ast.ExprNode{yyS[yypt-2].expr}, Distinct: yyS[yypt-3].item.(bool)} } } - case 1410: + case 1416: { if yyS[yypt-0].item != nil { parser.yyVAL.expr = &ast.WindowFuncExpr{F: yyS[yypt-5].ident, Args: []ast.ExprNode{yyS[yypt-2].expr}, Distinct: yyS[yypt-3].item.(bool), Spec: *(yyS[yypt-0].item.(*ast.WindowSpec))} @@ -16407,7 +16512,7 @@ yynewstate: parser.yyVAL.expr = &ast.AggregateFuncExpr{F: yyS[yypt-5].ident, Args: []ast.ExprNode{yyS[yypt-2].expr}, Distinct: yyS[yypt-3].item.(bool)} } } - case 1411: + case 1417: { if yyS[yypt-0].item != nil { parser.yyVAL.expr = &ast.WindowFuncExpr{F: ast.AggFuncStddevPop, Args: []ast.ExprNode{yyS[yypt-2].expr}, Distinct: yyS[yypt-3].item.(bool), Spec: *(yyS[yypt-0].item.(*ast.WindowSpec))} @@ -16415,7 +16520,7 @@ yynewstate: parser.yyVAL.expr = &ast.AggregateFuncExpr{F: ast.AggFuncStddevPop, Args: []ast.ExprNode{yyS[yypt-2].expr}, Distinct: yyS[yypt-3].item.(bool)} } } - case 1412: + case 1418: { if yyS[yypt-0].item != nil { parser.yyVAL.expr = &ast.WindowFuncExpr{F: yyS[yypt-5].ident, Args: []ast.ExprNode{yyS[yypt-2].expr}, Distinct: yyS[yypt-3].item.(bool), Spec: *(yyS[yypt-0].item.(*ast.WindowSpec))} @@ -16423,7 +16528,7 @@ yynewstate: parser.yyVAL.expr = &ast.AggregateFuncExpr{F: yyS[yypt-5].ident, Args: []ast.ExprNode{yyS[yypt-2].expr}, Distinct: yyS[yypt-3].item.(bool)} } } - case 1413: + case 1419: { if yyS[yypt-0].item != nil { parser.yyVAL.expr = &ast.WindowFuncExpr{F: ast.AggFuncVarPop, Args: []ast.ExprNode{yyS[yypt-2].expr}, Distinct: yyS[yypt-3].item.(bool), Spec: *(yyS[yypt-0].item.(*ast.WindowSpec))} @@ -16431,11 +16536,11 @@ yynewstate: parser.yyVAL.expr = &ast.AggregateFuncExpr{F: ast.AggFuncVarPop, Args: []ast.ExprNode{yyS[yypt-2].expr}, Distinct: yyS[yypt-3].item.(bool)} } } - case 1414: + case 1420: { parser.yyVAL.expr = &ast.AggregateFuncExpr{F: yyS[yypt-5].ident, Args: []ast.ExprNode{yyS[yypt-2].expr}, Distinct: yyS[yypt-3].item.(bool)} } - case 1415: + case 1421: { if yyS[yypt-0].item != nil { parser.yyVAL.expr = &ast.WindowFuncExpr{F: yyS[yypt-4].ident, Args: []ast.ExprNode{yyS[yypt-2].expr}, Spec: *(yyS[yypt-0].item.(*ast.WindowSpec))} @@ -16443,7 +16548,7 @@ yynewstate: parser.yyVAL.expr = &ast.AggregateFuncExpr{F: yyS[yypt-4].ident, Args: []ast.ExprNode{yyS[yypt-2].expr}} } } - case 1416: + case 1422: { if yyS[yypt-0].item != nil { parser.yyVAL.expr = &ast.WindowFuncExpr{F: yyS[yypt-5].ident, Args: []ast.ExprNode{yyS[yypt-2].expr}, Spec: *(yyS[yypt-0].item.(*ast.WindowSpec))} @@ -16451,7 +16556,7 @@ yynewstate: parser.yyVAL.expr = &ast.AggregateFuncExpr{F: yyS[yypt-5].ident, Args: []ast.ExprNode{yyS[yypt-2].expr}} } } - case 1417: + case 1423: { if yyS[yypt-0].item != nil { parser.yyVAL.expr = &ast.WindowFuncExpr{F: yyS[yypt-6].ident, Args: []ast.ExprNode{yyS[yypt-4].expr, yyS[yypt-2].expr}, Spec: *(yyS[yypt-0].item.(*ast.WindowSpec))} @@ -16459,7 +16564,7 @@ yynewstate: parser.yyVAL.expr = &ast.AggregateFuncExpr{F: yyS[yypt-6].ident, Args: []ast.ExprNode{yyS[yypt-4].expr, yyS[yypt-2].expr}} } } - case 1418: + case 1424: { if yyS[yypt-0].item != nil { parser.yyVAL.expr = &ast.WindowFuncExpr{F: yyS[yypt-7].ident, Args: []ast.ExprNode{yyS[yypt-4].expr, yyS[yypt-2].expr}, Spec: *(yyS[yypt-0].item.(*ast.WindowSpec))} @@ -16467,7 +16572,7 @@ yynewstate: parser.yyVAL.expr = &ast.AggregateFuncExpr{F: yyS[yypt-7].ident, Args: []ast.ExprNode{yyS[yypt-4].expr, yyS[yypt-2].expr}} } } - case 1419: + case 1425: { if yyS[yypt-0].item != nil { parser.yyVAL.expr = &ast.WindowFuncExpr{F: yyS[yypt-7].ident, Args: []ast.ExprNode{yyS[yypt-5].expr, yyS[yypt-2].expr}, Spec: *(yyS[yypt-0].item.(*ast.WindowSpec))} @@ -16475,7 +16580,7 @@ yynewstate: parser.yyVAL.expr = &ast.AggregateFuncExpr{F: yyS[yypt-7].ident, Args: []ast.ExprNode{yyS[yypt-5].expr, yyS[yypt-2].expr}} } } - case 1420: + case 1426: { if yyS[yypt-0].item != nil { parser.yyVAL.expr = &ast.WindowFuncExpr{F: yyS[yypt-8].ident, Args: []ast.ExprNode{yyS[yypt-5].expr, yyS[yypt-2].expr}, Spec: *(yyS[yypt-0].item.(*ast.WindowSpec))} @@ -16483,22 +16588,22 @@ yynewstate: parser.yyVAL.expr = &ast.AggregateFuncExpr{F: yyS[yypt-8].ident, Args: []ast.ExprNode{yyS[yypt-5].expr, yyS[yypt-2].expr}} } } - case 1421: + case 1427: { parser.yyVAL.item = ast.NewValueExpr(",", "", "") } - case 1422: + case 1428: { parser.yyVAL.item = ast.NewValueExpr(yyS[yypt-0].ident, "", "") } - case 1423: + case 1429: { parser.yyVAL.expr = &ast.FuncCallExpr{ FnName: model.NewCIStr(yyS[yypt-3].ident), Args: yyS[yypt-1].item.([]ast.ExprNode), } } - case 1424: + case 1430: { var tp ast.FuncCallExprType if isInTokenMap(yyS[yypt-3].ident) { @@ -16513,159 +16618,159 @@ yynewstate: Args: yyS[yypt-1].item.([]ast.ExprNode), } } - case 1425: + case 1431: { parser.yyVAL.item = nil } - case 1426: + case 1432: { parser.yyVAL.item = nil } - case 1427: + case 1433: { expr := ast.NewValueExpr(yyS[yypt-1].item, parser.charset, parser.collation) parser.yyVAL.item = expr } - case 1429: + case 1435: { parser.yyVAL.item = ast.TimeUnitSecondMicrosecond } - case 1430: + case 1436: { parser.yyVAL.item = ast.TimeUnitMinuteMicrosecond } - case 1431: + case 1437: { parser.yyVAL.item = ast.TimeUnitMinuteSecond } - case 1432: + case 1438: { parser.yyVAL.item = ast.TimeUnitHourMicrosecond } - case 1433: + case 1439: { parser.yyVAL.item = ast.TimeUnitHourSecond } - case 1434: + case 1440: { parser.yyVAL.item = ast.TimeUnitHourMinute } - case 1435: + case 1441: { parser.yyVAL.item = ast.TimeUnitDayMicrosecond } - case 1436: + case 1442: { parser.yyVAL.item = ast.TimeUnitDaySecond } - case 1437: + case 1443: { parser.yyVAL.item = ast.TimeUnitDayMinute } - case 1438: + case 1444: { parser.yyVAL.item = ast.TimeUnitDayHour } - case 1439: + case 1445: { parser.yyVAL.item = ast.TimeUnitYearMonth } - case 1440: + case 1446: { parser.yyVAL.item = ast.TimeUnitMicrosecond } - case 1441: + case 1447: { parser.yyVAL.item = ast.TimeUnitSecond } - case 1442: + case 1448: { parser.yyVAL.item = ast.TimeUnitMinute } - case 1443: + case 1449: { parser.yyVAL.item = ast.TimeUnitHour } - case 1444: + case 1450: { parser.yyVAL.item = ast.TimeUnitDay } - case 1445: + case 1451: { parser.yyVAL.item = ast.TimeUnitWeek } - case 1446: + case 1452: { parser.yyVAL.item = ast.TimeUnitMonth } - case 1447: + case 1453: { parser.yyVAL.item = ast.TimeUnitQuarter } - case 1448: + case 1454: { parser.yyVAL.item = ast.TimeUnitYear } - case 1449: + case 1455: { parser.yyVAL.item = ast.TimeUnitSecond } - case 1450: + case 1456: { parser.yyVAL.item = ast.TimeUnitMinute } - case 1451: + case 1457: { parser.yyVAL.item = ast.TimeUnitHour } - case 1452: + case 1458: { parser.yyVAL.item = ast.TimeUnitDay } - case 1453: + case 1459: { parser.yyVAL.item = ast.TimeUnitWeek } - case 1454: + case 1460: { parser.yyVAL.item = ast.TimeUnitMonth } - case 1455: + case 1461: { parser.yyVAL.item = ast.TimeUnitQuarter } - case 1456: + case 1462: { parser.yyVAL.item = ast.TimeUnitYear } - case 1457: + case 1463: { parser.yyVAL.expr = nil } - case 1459: + case 1465: { parser.yyVAL.item = []*ast.WhenClause{yyS[yypt-0].item.(*ast.WhenClause)} } - case 1460: + case 1466: { parser.yyVAL.item = append(yyS[yypt-1].item.([]*ast.WhenClause), yyS[yypt-0].item.(*ast.WhenClause)) } - case 1461: + case 1467: { parser.yyVAL.item = &ast.WhenClause{ Expr: yyS[yypt-2].expr, Result: yyS[yypt-0].expr, } } - case 1462: + case 1468: { parser.yyVAL.item = nil } - case 1463: + case 1469: { parser.yyVAL.item = yyS[yypt-0].expr } - case 1464: + case 1470: { tp := types.NewFieldType(mysql.TypeVarString) tp.SetFlen(yyS[yypt-0].item.(int)) // TODO: Flen should be the flen of expression @@ -16677,7 +16782,7 @@ yynewstate: tp.AddFlag(mysql.BinaryFlag) parser.yyVAL.item = tp } - case 1465: + case 1471: { tp := types.NewFieldType(mysql.TypeVarString) tp.SetFlen(yyS[yypt-1].item.(int)) // TODO: Flen should be the flen of expression @@ -16700,7 +16805,7 @@ yynewstate: } parser.yyVAL.item = tp } - case 1466: + case 1472: { tp := types.NewFieldType(mysql.TypeDate) tp.SetCharset(charset.CharsetBin) @@ -16708,7 +16813,7 @@ yynewstate: tp.AddFlag(mysql.BinaryFlag) parser.yyVAL.item = tp } - case 1467: + case 1473: { tp := types.NewFieldType(mysql.TypeYear) tp.SetCharset(charset.CharsetBin) @@ -16716,7 +16821,7 @@ yynewstate: tp.AddFlag(mysql.BinaryFlag) parser.yyVAL.item = tp } - case 1468: + case 1474: { tp := types.NewFieldType(mysql.TypeDatetime) flen, _ := mysql.GetDefaultFieldLengthAndDecimalForCast(mysql.TypeDatetime) @@ -16730,7 +16835,7 @@ yynewstate: tp.AddFlag(mysql.BinaryFlag) parser.yyVAL.item = tp } - case 1469: + case 1475: { fopt := yyS[yypt-0].item.(*ast.FloatOpt) tp := types.NewFieldType(mysql.TypeNewDecimal) @@ -16741,7 +16846,7 @@ yynewstate: tp.AddFlag(mysql.BinaryFlag) parser.yyVAL.item = tp } - case 1470: + case 1476: { tp := types.NewFieldType(mysql.TypeDuration) flen, _ := mysql.GetDefaultFieldLengthAndDecimalForCast(mysql.TypeDuration) @@ -16755,7 +16860,7 @@ yynewstate: tp.AddFlag(mysql.BinaryFlag) parser.yyVAL.item = tp } - case 1471: + case 1477: { tp := types.NewFieldType(mysql.TypeLonglong) tp.SetCharset(charset.CharsetBin) @@ -16763,7 +16868,7 @@ yynewstate: tp.AddFlag(mysql.BinaryFlag) parser.yyVAL.item = tp } - case 1472: + case 1478: { tp := types.NewFieldType(mysql.TypeLonglong) tp.AddFlag(mysql.UnsignedFlag | mysql.BinaryFlag) @@ -16771,7 +16876,7 @@ yynewstate: tp.SetCollate(charset.CollationBin) parser.yyVAL.item = tp } - case 1473: + case 1479: { tp := types.NewFieldType(mysql.TypeJSON) tp.AddFlag(mysql.BinaryFlag | mysql.ParseToJSONFlag) @@ -16779,7 +16884,7 @@ yynewstate: tp.SetCollate(mysql.DefaultCollationName) parser.yyVAL.item = tp } - case 1474: + case 1480: { tp := types.NewFieldType(mysql.TypeDouble) flen, decimal := mysql.GetDefaultFieldLengthAndDecimalForCast(mysql.TypeDouble) @@ -16790,7 +16895,7 @@ yynewstate: tp.SetCollate(charset.CollationBin) parser.yyVAL.item = tp } - case 1475: + case 1481: { tp := types.NewFieldType(mysql.TypeFloat) fopt := yyS[yypt-0].item.(*ast.FloatOpt) @@ -16807,7 +16912,7 @@ yynewstate: tp.SetCollate(charset.CollationBin) parser.yyVAL.item = tp } - case 1476: + case 1482: { var tp *types.FieldType if parser.lexer.GetSQLMode().HasRealAsFloatMode() { @@ -16823,65 +16928,65 @@ yynewstate: tp.SetCollate(charset.CollationBin) parser.yyVAL.item = tp } - case 1477: + case 1483: { parser.yyVAL.item = mysql.LowPriority } - case 1478: + case 1484: { parser.yyVAL.item = mysql.HighPriority } - case 1479: + case 1485: { parser.yyVAL.item = mysql.DelayedPriority } - case 1480: + case 1486: { parser.yyVAL.item = mysql.NoPriority } - case 1482: + case 1488: { parser.yyVAL.item = &ast.TableName{Name: model.NewCIStr(yyS[yypt-0].ident)} } - case 1483: + case 1489: { parser.yyVAL.item = &ast.TableName{Schema: model.NewCIStr(yyS[yypt-2].ident), Name: model.NewCIStr(yyS[yypt-0].ident)} } - case 1484: + case 1490: { tbl := []*ast.TableName{yyS[yypt-0].item.(*ast.TableName)} parser.yyVAL.item = tbl } - case 1485: + case 1491: { parser.yyVAL.item = append(yyS[yypt-2].item.([]*ast.TableName), yyS[yypt-0].item.(*ast.TableName)) } - case 1486: + case 1492: { parser.yyVAL.item = &ast.TableName{Name: model.NewCIStr(yyS[yypt-1].ident)} } - case 1487: + case 1493: { parser.yyVAL.item = &ast.TableName{Schema: model.NewCIStr(yyS[yypt-3].ident), Name: model.NewCIStr(yyS[yypt-1].ident)} } - case 1488: + case 1494: { tbl := []*ast.TableName{yyS[yypt-0].item.(*ast.TableName)} parser.yyVAL.item = tbl } - case 1489: + case 1495: { parser.yyVAL.item = append(yyS[yypt-2].item.([]*ast.TableName), yyS[yypt-0].item.(*ast.TableName)) } - case 1492: + case 1498: { parser.yyVAL.item = false } - case 1493: + case 1499: { parser.yyVAL.item = true } - case 1494: + case 1500: { var sqlText string var sqlVar *ast.VariableExpr @@ -16897,94 +17002,94 @@ yynewstate: SQLVar: sqlVar, } } - case 1495: + case 1501: { parser.yyVAL.item = yyS[yypt-0].ident } - case 1496: + case 1502: { parser.yyVAL.item = yyS[yypt-0].expr } - case 1497: + case 1503: { parser.yyVAL.statement = &ast.ExecuteStmt{Name: yyS[yypt-0].ident} } - case 1498: + case 1504: { parser.yyVAL.statement = &ast.ExecuteStmt{ Name: yyS[yypt-2].ident, UsingVars: yyS[yypt-0].item.([]ast.ExprNode), } } - case 1499: + case 1505: { parser.yyVAL.item = []ast.ExprNode{yyS[yypt-0].expr} } - case 1500: + case 1506: { parser.yyVAL.item = append(yyS[yypt-2].item.([]ast.ExprNode), yyS[yypt-0].expr) } - case 1501: + case 1507: { parser.yyVAL.statement = &ast.DeallocateStmt{Name: yyS[yypt-0].ident} } - case 1504: + case 1510: { parser.yyVAL.statement = &ast.RollbackStmt{} } - case 1505: + case 1511: { parser.yyVAL.statement = &ast.RollbackStmt{CompletionType: yyS[yypt-0].item.(ast.CompletionType)} } - case 1506: + case 1512: { parser.yyVAL.statement = &ast.RollbackStmt{SavepointName: yyS[yypt-0].ident} } - case 1507: + case 1513: { parser.yyVAL.statement = &ast.RollbackStmt{SavepointName: yyS[yypt-0].ident} } - case 1508: + case 1514: { parser.yyVAL.item = ast.CompletionTypeChain } - case 1509: + case 1515: { parser.yyVAL.item = ast.CompletionTypeRelease } - case 1510: + case 1516: { parser.yyVAL.item = ast.CompletionTypeDefault } - case 1511: + case 1517: { parser.yyVAL.item = ast.CompletionTypeChain } - case 1512: + case 1518: { parser.yyVAL.item = ast.CompletionTypeDefault } - case 1513: + case 1519: { parser.yyVAL.item = ast.CompletionTypeRelease } - case 1514: + case 1520: { parser.yyVAL.item = ast.CompletionTypeDefault } - case 1515: + case 1521: { parser.yyVAL.statement = &ast.ShutdownStmt{} } - case 1516: + case 1522: { parser.yyVAL.statement = &ast.RestartStmt{} } - case 1517: + case 1523: { parser.yyVAL.statement = &ast.HelpStmt{Topic: yyS[yypt-0].ident} } - case 1518: + case 1524: { st := &ast.SelectStmt{ SelectStmtOpts: yyS[yypt-2].item.(*ast.SelectStmtOpts), @@ -17000,7 +17105,7 @@ yynewstate: } parser.yyVAL.item = st } - case 1519: + case 1525: { st := yyS[yypt-2].item.(*ast.SelectStmt) lastField := st.Fields.Fields[len(st.Fields.Fields)-1] @@ -17012,7 +17117,7 @@ yynewstate: st.Where = yyS[yypt-0].item.(ast.ExprNode) } } - case 1520: + case 1526: { st := yyS[yypt-6].item.(*ast.SelectStmt) st.From = yyS[yypt-4].item.(*ast.TableRefsClause) @@ -17035,11 +17140,11 @@ yynewstate: } parser.yyVAL.item = st } - case 1521: + case 1527: { parser.yyVAL.item = nil } - case 1522: + case 1528: { var repSeed ast.ExprNode if yyS[yypt-0].expr != nil { @@ -17052,7 +17157,7 @@ yynewstate: RepeatableSeed: repSeed, } } - case 1523: + case 1529: { var repSeed ast.ExprNode if yyS[yypt-0].expr != nil { @@ -17063,43 +17168,43 @@ yynewstate: RepeatableSeed: repSeed, } } - case 1524: + case 1530: { parser.yyVAL.item = ast.SampleMethodTypeNone } - case 1525: + case 1531: { parser.yyVAL.item = ast.SampleMethodTypeSystem } - case 1526: + case 1532: { parser.yyVAL.item = ast.SampleMethodTypeBernoulli } - case 1527: + case 1533: { parser.yyVAL.item = ast.SampleMethodTypeTiDBRegion } - case 1528: + case 1534: { parser.yyVAL.item = ast.SampleClauseUnitTypeDefault } - case 1529: + case 1535: { parser.yyVAL.item = ast.SampleClauseUnitTypeRow } - case 1530: + case 1536: { parser.yyVAL.item = ast.SampleClauseUnitTypePercent } - case 1531: + case 1537: { parser.yyVAL.expr = nil } - case 1532: + case 1538: { parser.yyVAL.expr = yyS[yypt-1].expr } - case 1533: + case 1539: { st := yyS[yypt-6].item.(*ast.SelectStmt) if yyS[yypt-1].item != nil { @@ -17146,7 +17251,7 @@ yynewstate: } parser.yyVAL.statement = st } - case 1534: + case 1540: { st := yyS[yypt-5].item.(*ast.SelectStmt) if yyS[yypt-4].item != nil { @@ -17166,7 +17271,7 @@ yynewstate: } parser.yyVAL.statement = st } - case 1535: + case 1541: { st := yyS[yypt-4].item.(*ast.SelectStmt) if yyS[yypt-1].item != nil { @@ -17183,7 +17288,7 @@ yynewstate: } parser.yyVAL.statement = st } - case 1536: + case 1542: { st := &ast.SelectStmt{ Kind: ast.SelectStmtKindTable, @@ -17205,7 +17310,7 @@ yynewstate: } parser.yyVAL.statement = st } - case 1537: + case 1543: { st := &ast.SelectStmt{ Kind: ast.SelectStmtKindValues, @@ -17226,13 +17331,13 @@ yynewstate: } parser.yyVAL.statement = st } - case 1538: + case 1544: { sel := yyS[yypt-0].statement.(*ast.SelectStmt) sel.With = yyS[yypt-1].item.(*ast.WithClause) parser.yyVAL.statement = sel } - case 1539: + case 1545: { var sel ast.StmtNode switch x := yyS[yypt-0].expr.(*ast.SubqueryExpr).Query.(type) { @@ -17248,11 +17353,11 @@ yynewstate: } parser.yyVAL.statement = sel } - case 1540: + case 1546: { parser.yyVAL.item = yyS[yypt-0].item } - case 1541: + case 1547: { ws := yyS[yypt-0].item.(*ast.WithClause) ws.IsRecursive = true @@ -17261,20 +17366,20 @@ yynewstate: } parser.yyVAL.item = ws } - case 1542: + case 1548: { ws := yyS[yypt-2].item.(*ast.WithClause) ws.CTEs = append(ws.CTEs, yyS[yypt-0].item.(*ast.CommonTableExpression)) parser.yyVAL.item = ws } - case 1543: + case 1549: { ws := &ast.WithClause{} ws.CTEs = make([]*ast.CommonTableExpression, 0, 4) ws.CTEs = append(ws.CTEs, yyS[yypt-0].item.(*ast.CommonTableExpression)) parser.yyVAL.item = ws } - case 1544: + case 1550: { cte := &ast.CommonTableExpression{} cte.Name = model.NewCIStr(yyS[yypt-3].ident) @@ -17282,37 +17387,37 @@ yynewstate: cte.Query = yyS[yypt-0].expr.(*ast.SubqueryExpr) parser.yyVAL.item = cte } - case 1546: + case 1552: { parser.yyVAL.item = nil } - case 1547: + case 1553: { parser.yyVAL.item = yyS[yypt-0].item.([]ast.WindowSpec) } - case 1548: + case 1554: { parser.yyVAL.item = []ast.WindowSpec{yyS[yypt-0].item.(ast.WindowSpec)} } - case 1549: + case 1555: { parser.yyVAL.item = append(yyS[yypt-2].item.([]ast.WindowSpec), yyS[yypt-0].item.(ast.WindowSpec)) } - case 1550: + case 1556: { var spec = yyS[yypt-0].item.(ast.WindowSpec) spec.Name = yyS[yypt-2].item.(model.CIStr) parser.yyVAL.item = spec } - case 1551: + case 1557: { parser.yyVAL.item = model.NewCIStr(yyS[yypt-0].ident) } - case 1552: + case 1558: { parser.yyVAL.item = yyS[yypt-1].item.(ast.WindowSpec) } - case 1553: + case 1559: { spec := ast.WindowSpec{Ref: yyS[yypt-3].item.(model.CIStr)} if yyS[yypt-2].item != nil { @@ -17326,138 +17431,138 @@ yynewstate: } parser.yyVAL.item = spec } - case 1554: + case 1560: { parser.yyVAL.item = model.CIStr{} } - case 1556: + case 1562: { parser.yyVAL.item = nil } - case 1557: + case 1563: { parser.yyVAL.item = &ast.PartitionByClause{Items: yyS[yypt-0].item.([]*ast.ByItem)} } - case 1558: + case 1564: { parser.yyVAL.item = nil } - case 1559: + case 1565: { parser.yyVAL.item = &ast.OrderByClause{Items: yyS[yypt-0].item.([]*ast.ByItem)} } - case 1560: + case 1566: { parser.yyVAL.item = nil } - case 1561: + case 1567: { parser.yyVAL.item = &ast.FrameClause{ Type: yyS[yypt-1].item.(ast.FrameType), Extent: yyS[yypt-0].item.(ast.FrameExtent), } } - case 1562: + case 1568: { parser.yyVAL.item = ast.FrameType(ast.Rows) } - case 1563: + case 1569: { parser.yyVAL.item = ast.FrameType(ast.Ranges) } - case 1564: + case 1570: { parser.yyVAL.item = ast.FrameType(ast.Groups) } - case 1565: + case 1571: { parser.yyVAL.item = ast.FrameExtent{ Start: yyS[yypt-0].item.(ast.FrameBound), End: ast.FrameBound{Type: ast.CurrentRow}, } } - case 1567: + case 1573: { parser.yyVAL.item = ast.FrameBound{Type: ast.Preceding, UnBounded: true} } - case 1568: + case 1574: { parser.yyVAL.item = ast.FrameBound{Type: ast.Preceding, Expr: ast.NewValueExpr(yyS[yypt-1].item, parser.charset, parser.collation)} } - case 1569: + case 1575: { parser.yyVAL.item = ast.FrameBound{Type: ast.Preceding, Expr: ast.NewParamMarkerExpr(yyS[yypt].offset)} } - case 1570: + case 1576: { parser.yyVAL.item = ast.FrameBound{Type: ast.Preceding, Expr: yyS[yypt-2].expr, Unit: yyS[yypt-1].item.(ast.TimeUnitType)} } - case 1571: + case 1577: { parser.yyVAL.item = ast.FrameBound{Type: ast.CurrentRow} } - case 1572: + case 1578: { parser.yyVAL.item = ast.FrameExtent{Start: yyS[yypt-2].item.(ast.FrameBound), End: yyS[yypt-0].item.(ast.FrameBound)} } - case 1574: + case 1580: { parser.yyVAL.item = ast.FrameBound{Type: ast.Following, UnBounded: true} } - case 1575: + case 1581: { parser.yyVAL.item = ast.FrameBound{Type: ast.Following, Expr: ast.NewValueExpr(yyS[yypt-1].item, parser.charset, parser.collation)} } - case 1576: + case 1582: { parser.yyVAL.item = ast.FrameBound{Type: ast.Following, Expr: ast.NewParamMarkerExpr(yyS[yypt].offset)} } - case 1577: + case 1583: { parser.yyVAL.item = ast.FrameBound{Type: ast.Following, Expr: yyS[yypt-2].expr, Unit: yyS[yypt-1].item.(ast.TimeUnitType)} } - case 1578: + case 1584: { parser.yyVAL.item = nil } - case 1579: + case 1585: { spec := yyS[yypt-0].item.(ast.WindowSpec) parser.yyVAL.item = &spec } - case 1580: + case 1586: { parser.yyVAL.item = yyS[yypt-0].item.(ast.WindowSpec) } - case 1581: + case 1587: { parser.yyVAL.item = ast.WindowSpec{Name: yyS[yypt-0].item.(model.CIStr), OnlyAlias: true} } - case 1583: + case 1589: { parser.yyVAL.expr = &ast.WindowFuncExpr{F: yyS[yypt-3].ident, Spec: yyS[yypt-0].item.(ast.WindowSpec)} } - case 1584: + case 1590: { parser.yyVAL.expr = &ast.WindowFuncExpr{F: yyS[yypt-3].ident, Spec: yyS[yypt-0].item.(ast.WindowSpec)} } - case 1585: + case 1591: { parser.yyVAL.expr = &ast.WindowFuncExpr{F: yyS[yypt-3].ident, Spec: yyS[yypt-0].item.(ast.WindowSpec)} } - case 1586: + case 1592: { parser.yyVAL.expr = &ast.WindowFuncExpr{F: yyS[yypt-3].ident, Spec: yyS[yypt-0].item.(ast.WindowSpec)} } - case 1587: + case 1593: { parser.yyVAL.expr = &ast.WindowFuncExpr{F: yyS[yypt-3].ident, Spec: yyS[yypt-0].item.(ast.WindowSpec)} } - case 1588: + case 1594: { parser.yyVAL.expr = &ast.WindowFuncExpr{F: yyS[yypt-4].ident, Args: []ast.ExprNode{yyS[yypt-2].expr}, Spec: yyS[yypt-0].item.(ast.WindowSpec)} } - case 1589: + case 1595: { args := []ast.ExprNode{yyS[yypt-4].expr} if yyS[yypt-3].item != nil { @@ -17465,7 +17570,7 @@ yynewstate: } parser.yyVAL.expr = &ast.WindowFuncExpr{F: yyS[yypt-6].ident, Args: args, IgnoreNull: yyS[yypt-1].item.(bool), Spec: yyS[yypt-0].item.(ast.WindowSpec)} } - case 1590: + case 1596: { args := []ast.ExprNode{yyS[yypt-4].expr} if yyS[yypt-3].item != nil { @@ -17473,23 +17578,23 @@ yynewstate: } parser.yyVAL.expr = &ast.WindowFuncExpr{F: yyS[yypt-6].ident, Args: args, IgnoreNull: yyS[yypt-1].item.(bool), Spec: yyS[yypt-0].item.(ast.WindowSpec)} } - case 1591: + case 1597: { parser.yyVAL.expr = &ast.WindowFuncExpr{F: yyS[yypt-5].ident, Args: []ast.ExprNode{yyS[yypt-3].expr}, IgnoreNull: yyS[yypt-1].item.(bool), Spec: yyS[yypt-0].item.(ast.WindowSpec)} } - case 1592: + case 1598: { parser.yyVAL.expr = &ast.WindowFuncExpr{F: yyS[yypt-5].ident, Args: []ast.ExprNode{yyS[yypt-3].expr}, IgnoreNull: yyS[yypt-1].item.(bool), Spec: yyS[yypt-0].item.(ast.WindowSpec)} } - case 1593: + case 1599: { parser.yyVAL.expr = &ast.WindowFuncExpr{F: yyS[yypt-8].ident, Args: []ast.ExprNode{yyS[yypt-6].expr, yyS[yypt-4].expr}, FromLast: yyS[yypt-2].item.(bool), IgnoreNull: yyS[yypt-1].item.(bool), Spec: yyS[yypt-0].item.(ast.WindowSpec)} } - case 1594: + case 1600: { parser.yyVAL.item = nil } - case 1595: + case 1601: { args := []ast.ExprNode{ast.NewValueExpr(yyS[yypt-1].item, parser.charset, parser.collation)} if yyS[yypt-0].item != nil { @@ -17497,7 +17602,7 @@ yynewstate: } parser.yyVAL.item = args } - case 1596: + case 1602: { args := []ast.ExprNode{ast.NewParamMarkerExpr(yyS[yypt-1].offset)} if yyS[yypt-0].item != nil { @@ -17505,43 +17610,43 @@ yynewstate: } parser.yyVAL.item = args } - case 1597: + case 1603: { parser.yyVAL.item = nil } - case 1598: + case 1604: { parser.yyVAL.item = yyS[yypt-0].expr } - case 1599: + case 1605: { parser.yyVAL.item = false } - case 1600: + case 1606: { parser.yyVAL.item = false } - case 1601: + case 1607: { parser.yyVAL.item = true } - case 1602: + case 1608: { parser.yyVAL.item = false } - case 1603: + case 1609: { parser.yyVAL.item = false } - case 1604: + case 1610: { parser.yyVAL.item = true } - case 1605: + case 1611: { parser.yyVAL.item = &ast.TableRefsClause{TableRefs: yyS[yypt-0].item.(*ast.Join)} } - case 1606: + case 1612: { if j, ok := yyS[yypt-0].item.(*ast.Join); ok { // if $1 is Join, use it directly @@ -17550,12 +17655,12 @@ yynewstate: parser.yyVAL.item = &ast.Join{Left: yyS[yypt-0].item.(ast.ResultSetNode), Right: nil} } } - case 1607: + case 1613: { /* from a, b is default cross join */ parser.yyVAL.item = &ast.Join{Left: yyS[yypt-2].item.(ast.ResultSetNode), Right: yyS[yypt-0].item.(ast.ResultSetNode), Tp: ast.CrossJoin} } - case 1609: + case 1615: { /* * ODBC escape syntax for outer join is { OJ join_table } @@ -17563,7 +17668,7 @@ yynewstate: */ parser.yyVAL.item = yyS[yypt-1].item } - case 1612: + case 1618: { tn := yyS[yypt-5].item.(*ast.TableName) tn.PartitionNames = yyS[yypt-4].item.([]model.CIStr) @@ -17576,66 +17681,66 @@ yynewstate: } parser.yyVAL.item = &ast.TableSource{Source: tn, AsName: yyS[yypt-3].item.(model.CIStr)} } - case 1613: + case 1619: { resultNode := yyS[yypt-1].expr.(*ast.SubqueryExpr).Query parser.yyVAL.item = &ast.TableSource{Source: resultNode, AsName: yyS[yypt-0].item.(model.CIStr)} } - case 1614: + case 1620: { j := yyS[yypt-1].item.(*ast.Join) j.ExplicitParens = true parser.yyVAL.item = yyS[yypt-1].item } - case 1615: + case 1621: { parser.yyVAL.item = []model.CIStr{} } - case 1616: + case 1622: { parser.yyVAL.item = yyS[yypt-1].item } - case 1617: + case 1623: { parser.yyVAL.item = model.CIStr{} } - case 1619: + case 1625: { parser.yyVAL.item = model.NewCIStr(yyS[yypt-0].ident) } - case 1620: + case 1626: { parser.yyVAL.item = model.NewCIStr(yyS[yypt-0].ident) } - case 1621: + case 1627: { parser.yyVAL.item = ast.HintUse } - case 1622: + case 1628: { parser.yyVAL.item = ast.HintIgnore } - case 1623: + case 1629: { parser.yyVAL.item = ast.HintForce } - case 1624: + case 1630: { parser.yyVAL.item = ast.HintForScan } - case 1625: + case 1631: { parser.yyVAL.item = ast.HintForJoin } - case 1626: + case 1632: { parser.yyVAL.item = ast.HintForOrderBy } - case 1627: + case 1633: { parser.yyVAL.item = ast.HintForGroupBy } - case 1628: + case 1634: { parser.yyVAL.item = &ast.IndexHint{ IndexNames: yyS[yypt-1].item.([]model.CIStr), @@ -17643,134 +17748,134 @@ yynewstate: HintScope: yyS[yypt-3].item.(ast.IndexHintScope), } } - case 1629: + case 1635: { var nameList []model.CIStr parser.yyVAL.item = nameList } - case 1630: + case 1636: { parser.yyVAL.item = []model.CIStr{model.NewCIStr(yyS[yypt-0].ident)} } - case 1631: + case 1637: { parser.yyVAL.item = append(yyS[yypt-2].item.([]model.CIStr), model.NewCIStr(yyS[yypt-0].ident)) } - case 1632: + case 1638: { parser.yyVAL.item = []model.CIStr{model.NewCIStr(yyS[yypt-0].ident)} } - case 1633: + case 1639: { parser.yyVAL.item = append(yyS[yypt-2].item.([]model.CIStr), model.NewCIStr(yyS[yypt-0].ident)) } - case 1634: + case 1640: { parser.yyVAL.item = []*ast.IndexHint{yyS[yypt-0].item.(*ast.IndexHint)} } - case 1635: + case 1641: { parser.yyVAL.item = append(yyS[yypt-1].item.([]*ast.IndexHint), yyS[yypt-0].item.(*ast.IndexHint)) } - case 1636: + case 1642: { parser.yyVAL.item = []*ast.IndexHint{} } - case 1638: + case 1644: { parser.yyVAL.item = ast.NewCrossJoin(yyS[yypt-2].item.(ast.ResultSetNode), yyS[yypt-0].item.(ast.ResultSetNode)) } - case 1639: + case 1645: { on := &ast.OnCondition{Expr: yyS[yypt-0].expr} parser.yyVAL.item = &ast.Join{Left: yyS[yypt-4].item.(ast.ResultSetNode), Right: yyS[yypt-2].item.(ast.ResultSetNode), Tp: ast.CrossJoin, On: on} } - case 1640: + case 1646: { parser.yyVAL.item = &ast.Join{Left: yyS[yypt-6].item.(ast.ResultSetNode), Right: yyS[yypt-4].item.(ast.ResultSetNode), Tp: ast.CrossJoin, Using: yyS[yypt-1].item.([]*ast.ColumnName)} } - case 1641: + case 1647: { on := &ast.OnCondition{Expr: yyS[yypt-0].expr} parser.yyVAL.item = &ast.Join{Left: yyS[yypt-6].item.(ast.ResultSetNode), Right: yyS[yypt-2].item.(ast.ResultSetNode), Tp: yyS[yypt-5].item.(ast.JoinType), On: on} } - case 1642: + case 1648: { parser.yyVAL.item = &ast.Join{Left: yyS[yypt-8].item.(ast.ResultSetNode), Right: yyS[yypt-4].item.(ast.ResultSetNode), Tp: yyS[yypt-7].item.(ast.JoinType), Using: yyS[yypt-1].item.([]*ast.ColumnName)} } - case 1643: + case 1649: { parser.yyVAL.item = &ast.Join{Left: yyS[yypt-3].item.(ast.ResultSetNode), Right: yyS[yypt-0].item.(ast.ResultSetNode), NaturalJoin: true} } - case 1644: + case 1650: { parser.yyVAL.item = &ast.Join{Left: yyS[yypt-5].item.(ast.ResultSetNode), Right: yyS[yypt-0].item.(ast.ResultSetNode), Tp: yyS[yypt-3].item.(ast.JoinType), NaturalJoin: true} } - case 1645: + case 1651: { parser.yyVAL.item = &ast.Join{Left: yyS[yypt-2].item.(ast.ResultSetNode), Right: yyS[yypt-0].item.(ast.ResultSetNode), StraightJoin: true} } - case 1646: + case 1652: { on := &ast.OnCondition{Expr: yyS[yypt-0].expr} parser.yyVAL.item = &ast.Join{Left: yyS[yypt-4].item.(ast.ResultSetNode), Right: yyS[yypt-2].item.(ast.ResultSetNode), StraightJoin: true, On: on} } - case 1647: + case 1653: { parser.yyVAL.item = ast.LeftJoin } - case 1648: + case 1654: { parser.yyVAL.item = ast.RightJoin } - case 1654: + case 1660: { parser.yyVAL.item = nil } - case 1655: + case 1661: { parser.yyVAL.item = &ast.Limit{Count: yyS[yypt-0].item.(ast.ValueExpr)} } - case 1656: + case 1662: { parser.yyVAL.item = ast.NewValueExpr(yyS[yypt-0].item, parser.charset, parser.collation) } - case 1657: + case 1663: { parser.yyVAL.item = ast.NewParamMarkerExpr(yyS[yypt].offset) } - case 1662: + case 1668: { parser.yyVAL.item = ast.NewValueExpr(uint64(1), parser.charset, parser.collation) } - case 1664: + case 1670: { parser.yyVAL.item = &ast.Limit{Count: yyS[yypt-0].item.(ast.ExprNode)} } - case 1665: + case 1671: { parser.yyVAL.item = &ast.Limit{Offset: yyS[yypt-2].item.(ast.ExprNode), Count: yyS[yypt-0].item.(ast.ExprNode)} } - case 1666: + case 1672: { parser.yyVAL.item = &ast.Limit{Offset: yyS[yypt-0].item.(ast.ExprNode), Count: yyS[yypt-2].item.(ast.ExprNode)} } - case 1667: + case 1673: { parser.yyVAL.item = &ast.Limit{Count: yyS[yypt-2].item.(ast.ExprNode)} } - case 1668: + case 1674: { parser.yyVAL.item = nil } - case 1670: + case 1676: { opt := &ast.SelectStmtOpts{} opt.SQLCache = true opt.TableHints = yyS[yypt-0].item.([]*ast.TableOptimizerHint) parser.yyVAL.item = opt } - case 1671: + case 1677: { opt := &ast.SelectStmtOpts{} opt.SQLCache = true @@ -17782,61 +17887,61 @@ yynewstate: } parser.yyVAL.item = opt } - case 1672: + case 1678: { opt := &ast.SelectStmtOpts{} opt.SQLCache = true opt.Priority = yyS[yypt-0].item.(mysql.PriorityEnum) parser.yyVAL.item = opt } - case 1673: + case 1679: { opt := &ast.SelectStmtOpts{} opt.SQLCache = true opt.SQLSmallResult = true parser.yyVAL.item = opt } - case 1674: + case 1680: { opt := &ast.SelectStmtOpts{} opt.SQLCache = true opt.SQLBigResult = true parser.yyVAL.item = opt } - case 1675: + case 1681: { opt := &ast.SelectStmtOpts{} opt.SQLCache = true opt.SQLBufferResult = true parser.yyVAL.item = opt } - case 1676: + case 1682: { opt := &ast.SelectStmtOpts{} opt.SQLCache = yyS[yypt-0].item.(bool) parser.yyVAL.item = opt } - case 1677: + case 1683: { opt := &ast.SelectStmtOpts{} opt.SQLCache = true opt.CalcFoundRows = true parser.yyVAL.item = opt } - case 1678: + case 1684: { opt := &ast.SelectStmtOpts{} opt.SQLCache = true opt.StraightJoin = true parser.yyVAL.item = opt } - case 1679: + case 1685: { opt := &ast.SelectStmtOpts{} opt.SQLCache = true parser.yyVAL.item = opt } - case 1681: + case 1687: { opts := yyS[yypt-1].item.(*ast.SelectStmtOpts) opt := yyS[yypt-0].item.(*ast.SelectStmtOpts) @@ -17881,7 +17986,7 @@ yynewstate: parser.yyVAL.item = opts } - case 1683: + case 1689: { hints, warns := parser.parseHint(yyS[yypt-0].ident) for _, w := range warns { @@ -17890,31 +17995,31 @@ yynewstate: } parser.yyVAL.item = hints } - case 1684: + case 1690: { parser.yyVAL.item = nil } - case 1686: + case 1692: { parser.yyVAL.item = true } - case 1687: + case 1693: { parser.yyVAL.item = false } - case 1688: + case 1694: { parser.yyVAL.item = &ast.FieldList{Fields: yyS[yypt-0].item.([]*ast.SelectField)} } - case 1689: + case 1695: { parser.yyVAL.item = nil } - case 1691: + case 1697: { parser.yyVAL.item = nil } - case 1692: + case 1698: { x := &ast.SelectIntoOption{ Tp: ast.SelectIntoOutfile, @@ -17929,7 +18034,7 @@ yynewstate: parser.yyVAL.item = x } - case 1693: + case 1699: { rs := yyS[yypt-1].statement.(*ast.SelectStmt) endOffset := parser.endOffset(&yyS[yypt]) @@ -17939,14 +18044,14 @@ yynewstate: rs.SetText(parser.lexer.client, src[yyS[yypt-1].offset:yyS[yypt].offset]) parser.yyVAL.expr = &ast.SubqueryExpr{Query: rs} } - case 1694: + case 1700: { rs := yyS[yypt-1].statement.(*ast.SetOprStmt) src := parser.src rs.SetText(parser.lexer.client, src[yyS[yypt-1].offset:yyS[yypt].offset]) parser.yyVAL.expr = &ast.SubqueryExpr{Query: rs} } - case 1695: + case 1701: { rs := yyS[yypt-1].statement.(*ast.SelectStmt) endOffset := parser.endOffset(&yyS[yypt]) @@ -17956,7 +18061,7 @@ yynewstate: rs.SetText(parser.lexer.client, src[yyS[yypt-1].offset:yyS[yypt].offset]) parser.yyVAL.expr = &ast.SubqueryExpr{Query: rs} } - case 1696: + case 1702: { subQuery := yyS[yypt-1].expr.(*ast.SubqueryExpr).Query isRecursive := true @@ -17979,32 +18084,32 @@ yynewstate: parser.yyVAL.expr = &ast.SubqueryExpr{Query: rs} } } - case 1697: + case 1703: { parser.yyVAL.item = nil } - case 1698: + case 1704: { parser.yyVAL.item = &ast.SelectLockInfo{ LockType: ast.SelectLockForUpdate, Tables: yyS[yypt-0].item.([]*ast.TableName), } } - case 1699: + case 1705: { parser.yyVAL.item = &ast.SelectLockInfo{ LockType: ast.SelectLockForShare, Tables: yyS[yypt-0].item.([]*ast.TableName), } } - case 1700: + case 1706: { parser.yyVAL.item = &ast.SelectLockInfo{ LockType: ast.SelectLockForUpdateNoWait, Tables: yyS[yypt-1].item.([]*ast.TableName), } } - case 1701: + case 1707: { parser.yyVAL.item = &ast.SelectLockInfo{ LockType: ast.SelectLockForUpdateWaitN, @@ -18012,55 +18117,55 @@ yynewstate: Tables: yyS[yypt-2].item.([]*ast.TableName), } } - case 1702: + case 1708: { parser.yyVAL.item = &ast.SelectLockInfo{ LockType: ast.SelectLockForShareNoWait, Tables: yyS[yypt-1].item.([]*ast.TableName), } } - case 1703: + case 1709: { parser.yyVAL.item = &ast.SelectLockInfo{ LockType: ast.SelectLockForUpdateSkipLocked, Tables: yyS[yypt-2].item.([]*ast.TableName), } } - case 1704: + case 1710: { parser.yyVAL.item = &ast.SelectLockInfo{ LockType: ast.SelectLockForShareSkipLocked, Tables: yyS[yypt-2].item.([]*ast.TableName), } } - case 1705: + case 1711: { parser.yyVAL.item = &ast.SelectLockInfo{ LockType: ast.SelectLockForShare, Tables: []*ast.TableName{}, } } - case 1706: + case 1712: { parser.yyVAL.item = []*ast.TableName{} } - case 1707: + case 1713: { parser.yyVAL.item = yyS[yypt-0].item.([]*ast.TableName) } - case 1710: + case 1716: { setOpr := yyS[yypt-0].statement.(*ast.SetOprStmt) setOpr.With = yyS[yypt-1].item.(*ast.WithClause) parser.yyVAL.statement = setOpr } - case 1711: + case 1717: { setOpr := yyS[yypt-0].statement.(*ast.SetOprStmt) setOpr.With = yyS[yypt-1].item.(*ast.WithClause) parser.yyVAL.statement = setOpr } - case 1712: + case 1718: { setOprList1 := yyS[yypt-2].item.([]ast.Node) if sel, isSelect := setOprList1[len(setOprList1)-1].(*ast.SelectStmt); isSelect && !sel.IsInBraces { @@ -18077,7 +18182,7 @@ yynewstate: setOpr.SelectList.Selects = append(setOpr.SelectList.Selects, st) parser.yyVAL.statement = setOpr } - case 1713: + case 1719: { setOprList1 := yyS[yypt-2].item.([]ast.Node) if sel, isSelect := setOprList1[len(setOprList1)-1].(*ast.SelectStmt); isSelect && !sel.IsInBraces { @@ -18100,7 +18205,7 @@ yynewstate: setOpr := &ast.SetOprStmt{SelectList: &ast.SetOprSelectList{Selects: setOprList}} parser.yyVAL.statement = setOpr } - case 1714: + case 1720: { setOprList1 := yyS[yypt-3].item.([]ast.Node) if sel, isSelect := setOprList1[len(setOprList1)-1].(*ast.SelectStmt); isSelect && !sel.IsInBraces { @@ -18124,7 +18229,7 @@ yynewstate: setOpr.OrderBy = yyS[yypt-0].item.(*ast.OrderByClause) parser.yyVAL.statement = setOpr } - case 1715: + case 1721: { setOprList1 := yyS[yypt-3].item.([]ast.Node) if sel, isSelect := setOprList1[len(setOprList1)-1].(*ast.SelectStmt); isSelect && !sel.IsInBraces { @@ -18148,7 +18253,7 @@ yynewstate: setOpr.Limit = yyS[yypt-0].item.(*ast.Limit) parser.yyVAL.statement = setOpr } - case 1716: + case 1722: { setOprList1 := yyS[yypt-4].item.([]ast.Node) if sel, isSelect := setOprList1[len(setOprList1)-1].(*ast.SelectStmt); isSelect && !sel.IsInBraces { @@ -18173,7 +18278,7 @@ yynewstate: setOpr.Limit = yyS[yypt-0].item.(*ast.Limit) parser.yyVAL.statement = setOpr } - case 1717: + case 1723: { var setOprList []ast.Node var with *ast.WithClause @@ -18189,7 +18294,7 @@ yynewstate: setOpr.OrderBy = yyS[yypt-0].item.(*ast.OrderByClause) parser.yyVAL.statement = setOpr } - case 1718: + case 1724: { var setOprList []ast.Node var with *ast.WithClause @@ -18205,7 +18310,7 @@ yynewstate: setOpr.Limit = yyS[yypt-0].item.(*ast.Limit) parser.yyVAL.statement = setOpr } - case 1719: + case 1725: { var setOprList []ast.Node var with *ast.WithClause @@ -18222,7 +18327,7 @@ yynewstate: setOpr.Limit = yyS[yypt-0].item.(*ast.Limit) parser.yyVAL.statement = setOpr } - case 1721: + case 1727: { setOprList1 := yyS[yypt-2].item.([]ast.Node) setOprList2 := yyS[yypt-0].item.([]ast.Node) @@ -18238,11 +18343,11 @@ yynewstate: } parser.yyVAL.item = append(setOprList1, setOprList2...) } - case 1722: + case 1728: { parser.yyVAL.item = []ast.Node{yyS[yypt-0].statement.(*ast.SelectStmt)} } - case 1723: + case 1729: { var setOprList []ast.Node switch x := yyS[yypt-0].expr.(*ast.SubqueryExpr).Query.(type) { @@ -18253,7 +18358,7 @@ yynewstate: } parser.yyVAL.item = setOprList } - case 1724: + case 1730: { var tp ast.SetOprType tp = ast.Union @@ -18262,7 +18367,7 @@ yynewstate: } parser.yyVAL.item = &tp } - case 1725: + case 1731: { var tp ast.SetOprType tp = ast.Except @@ -18271,7 +18376,7 @@ yynewstate: } parser.yyVAL.item = &tp } - case 1726: + case 1732: { var tp ast.SetOprType tp = ast.Intersect @@ -18280,7 +18385,7 @@ yynewstate: } parser.yyVAL.item = &tp } - case 1728: + case 1734: { parser.yyVAL.statement = &ast.ChangeStmt{ NodeType: ast.PumpType, @@ -18288,7 +18393,7 @@ yynewstate: NodeID: yyS[yypt-0].ident, } } - case 1729: + case 1735: { parser.yyVAL.statement = &ast.ChangeStmt{ NodeType: ast.DrainerType, @@ -18296,19 +18401,19 @@ yynewstate: NodeID: yyS[yypt-0].ident, } } - case 1730: + case 1736: { parser.yyVAL.statement = &ast.SetStmt{Variables: yyS[yypt-0].item.([]*ast.VariableAssignment)} } - case 1731: + case 1737: { parser.yyVAL.statement = &ast.SetPwdStmt{Password: yyS[yypt-0].ident} } - case 1732: + case 1738: { parser.yyVAL.statement = &ast.SetPwdStmt{User: yyS[yypt-2].item.(*auth.UserIdentity), Password: yyS[yypt-0].ident} } - case 1733: + case 1739: { vars := yyS[yypt-0].item.([]*ast.VariableAssignment) for _, v := range vars { @@ -18316,11 +18421,11 @@ yynewstate: } parser.yyVAL.statement = &ast.SetStmt{Variables: vars} } - case 1734: + case 1740: { parser.yyVAL.statement = &ast.SetStmt{Variables: yyS[yypt-0].item.([]*ast.VariableAssignment)} } - case 1735: + case 1741: { assigns := yyS[yypt-0].item.([]*ast.VariableAssignment) for i := 0; i < len(assigns); i++ { @@ -18331,23 +18436,23 @@ yynewstate: } parser.yyVAL.statement = &ast.SetStmt{Variables: assigns} } - case 1736: + case 1742: { parser.yyVAL.statement = &ast.SetConfigStmt{Type: strings.ToLower(yyS[yypt-3].ident), Name: yyS[yypt-2].ident, Value: yyS[yypt-0].expr} } - case 1737: + case 1743: { parser.yyVAL.statement = &ast.SetConfigStmt{Instance: yyS[yypt-3].ident, Name: yyS[yypt-2].ident, Value: yyS[yypt-0].expr} } - case 1738: + case 1744: { parser.yyVAL.statement = &ast.SetSessionStatesStmt{SessionStates: yyS[yypt-0].ident} } - case 1739: + case 1745: { parser.yyVAL.statement = yyS[yypt-0].item.(*ast.SetRoleStmt) } - case 1740: + case 1746: { tmp := yyS[yypt-2].item.(*ast.SetRoleStmt) parser.yyVAL.statement = &ast.SetDefaultRoleStmt{ @@ -18356,27 +18461,27 @@ yynewstate: UserList: yyS[yypt-0].item.([]*auth.UserIdentity), } } - case 1741: + case 1747: { parser.yyVAL.item = &ast.SetRoleStmt{SetRoleOpt: ast.SetRoleNone, RoleList: nil} } - case 1742: + case 1748: { parser.yyVAL.item = &ast.SetRoleStmt{SetRoleOpt: ast.SetRoleAll, RoleList: nil} } - case 1743: + case 1749: { parser.yyVAL.item = &ast.SetRoleStmt{SetRoleOpt: ast.SetRoleRegular, RoleList: yyS[yypt-0].item.([]*auth.RoleIdentity)} } - case 1744: + case 1750: { parser.yyVAL.item = &ast.SetRoleStmt{SetRoleOpt: ast.SetRoleAllExcept, RoleList: yyS[yypt-0].item.([]*auth.RoleIdentity)} } - case 1746: + case 1752: { parser.yyVAL.item = &ast.SetRoleStmt{SetRoleOpt: ast.SetRoleDefault, RoleList: nil} } - case 1747: + case 1753: { if yyS[yypt-0].item != nil { parser.yyVAL.item = yyS[yypt-0].item @@ -18384,7 +18489,7 @@ yynewstate: parser.yyVAL.item = []*ast.VariableAssignment{} } } - case 1748: + case 1754: { if yyS[yypt-0].item != nil { varAssigns := yyS[yypt-0].item.([]*ast.VariableAssignment) @@ -18393,28 +18498,28 @@ yynewstate: parser.yyVAL.item = yyS[yypt-2].item } } - case 1749: + case 1755: { varAssigns := []*ast.VariableAssignment{} expr := ast.NewValueExpr(yyS[yypt-0].ident, parser.charset, parser.collation) varAssigns = append(varAssigns, &ast.VariableAssignment{Name: "tx_isolation", Value: expr, IsSystem: true}) parser.yyVAL.item = varAssigns } - case 1750: + case 1756: { varAssigns := []*ast.VariableAssignment{} expr := ast.NewValueExpr("0", parser.charset, parser.collation) varAssigns = append(varAssigns, &ast.VariableAssignment{Name: "tx_read_only", Value: expr, IsSystem: true}) parser.yyVAL.item = varAssigns } - case 1751: + case 1757: { varAssigns := []*ast.VariableAssignment{} expr := ast.NewValueExpr("1", parser.charset, parser.collation) varAssigns = append(varAssigns, &ast.VariableAssignment{Name: "tx_read_only", Value: expr, IsSystem: true}) parser.yyVAL.item = varAssigns } - case 1752: + case 1758: { varAssigns := []*ast.VariableAssignment{} asof := yyS[yypt-0].item.(*ast.AsOfClause) @@ -18423,59 +18528,59 @@ yynewstate: } parser.yyVAL.item = varAssigns } - case 1753: + case 1759: { parser.yyVAL.ident = ast.RepeatableRead } - case 1754: + case 1760: { parser.yyVAL.ident = ast.ReadCommitted } - case 1755: + case 1761: { parser.yyVAL.ident = ast.ReadUncommitted } - case 1756: + case 1762: { parser.yyVAL.ident = ast.Serializable } - case 1757: + case 1763: { parser.yyVAL.expr = ast.NewValueExpr("ON", parser.charset, parser.collation) } - case 1758: + case 1764: { parser.yyVAL.expr = ast.NewValueExpr("BINARY", parser.charset, parser.collation) } - case 1763: + case 1769: { parser.yyVAL.ident = yyS[yypt-2].ident + "." + yyS[yypt-0].ident } - case 1765: + case 1771: { parser.yyVAL.ident = yyS[yypt-2].ident + "." + yyS[yypt-0].ident } - case 1766: + case 1772: { parser.yyVAL.ident = yyS[yypt-2].ident + "-" + yyS[yypt-0].ident } - case 1767: + case 1773: { parser.yyVAL.item = &ast.VariableAssignment{Name: yyS[yypt-2].ident, Value: yyS[yypt-0].expr, IsSystem: true} } - case 1768: + case 1774: { parser.yyVAL.item = &ast.VariableAssignment{Name: yyS[yypt-2].ident, Value: yyS[yypt-0].expr, IsGlobal: true, IsSystem: true} } - case 1769: + case 1775: { parser.yyVAL.item = &ast.VariableAssignment{Name: yyS[yypt-2].ident, Value: yyS[yypt-0].expr, IsSystem: true} } - case 1770: + case 1776: { parser.yyVAL.item = &ast.VariableAssignment{Name: yyS[yypt-2].ident, Value: yyS[yypt-0].expr, IsSystem: true} } - case 1771: + case 1777: { v := strings.ToLower(yyS[yypt-2].ident) var isGlobal bool @@ -18491,27 +18596,27 @@ yynewstate: } parser.yyVAL.item = &ast.VariableAssignment{Name: v, Value: yyS[yypt-0].expr, IsGlobal: isGlobal, IsSystem: true} } - case 1772: + case 1778: { v := yyS[yypt-2].ident v = strings.TrimPrefix(v, "@") parser.yyVAL.item = &ast.VariableAssignment{Name: v, Value: yyS[yypt-0].expr} } - case 1773: + case 1779: { parser.yyVAL.item = &ast.VariableAssignment{ Name: ast.SetNames, Value: ast.NewValueExpr(yyS[yypt-0].ident, "", ""), } } - case 1774: + case 1780: { parser.yyVAL.item = &ast.VariableAssignment{ Name: ast.SetNames, Value: ast.NewValueExpr(yyS[yypt-2].ident, "", ""), } } - case 1775: + case 1781: { parser.yyVAL.item = &ast.VariableAssignment{ Name: ast.SetNames, @@ -18519,24 +18624,24 @@ yynewstate: ExtendValue: ast.NewValueExpr(yyS[yypt-0].ident, "", ""), } } - case 1776: + case 1782: { v := &ast.DefaultExpr{} parser.yyVAL.item = &ast.VariableAssignment{Name: ast.SetNames, Value: v} } - case 1777: + case 1783: { parser.yyVAL.item = &ast.VariableAssignment{Name: ast.SetCharset, Value: yyS[yypt-0].expr} } - case 1778: + case 1784: { parser.yyVAL.expr = ast.NewValueExpr(yyS[yypt-0].ident, "", "") } - case 1779: + case 1785: { parser.yyVAL.expr = &ast.DefaultExpr{} } - case 1780: + case 1786: { // Validate input charset name to keep the same behavior as parser of MySQL. cs, err := charset.GetCharsetInfo(yyS[yypt-0].ident) @@ -18548,11 +18653,11 @@ yynewstate: // to keep lower case of input for generated column restore. parser.yyVAL.ident = cs.Name } - case 1781: + case 1787: { parser.yyVAL.ident = charset.CharsetBin } - case 1782: + case 1788: { info, err := charset.GetCollationByName(yyS[yypt-0].ident) if err != nil { @@ -18561,19 +18666,19 @@ yynewstate: } parser.yyVAL.ident = info.Name } - case 1783: + case 1789: { parser.yyVAL.ident = charset.CollationBin } - case 1784: + case 1790: { parser.yyVAL.item = []*ast.VariableAssignment{yyS[yypt-0].item.(*ast.VariableAssignment)} } - case 1785: + case 1791: { parser.yyVAL.item = append(yyS[yypt-2].item.([]*ast.VariableAssignment), yyS[yypt-0].item.(*ast.VariableAssignment)) } - case 1788: + case 1794: { v := strings.ToLower(yyS[yypt-0].ident) var isGlobal bool @@ -18590,89 +18695,89 @@ yynewstate: } parser.yyVAL.expr = &ast.VariableExpr{Name: v, IsGlobal: isGlobal, IsSystem: true, ExplicitScope: explicitScope} } - case 1789: + case 1795: { v := yyS[yypt-0].ident v = strings.TrimPrefix(v, "@") parser.yyVAL.expr = &ast.VariableExpr{Name: v, IsGlobal: false, IsSystem: false} } - case 1790: + case 1796: { parser.yyVAL.item = &auth.UserIdentity{Username: yyS[yypt-0].ident, Hostname: "%"} } - case 1791: + case 1797: { parser.yyVAL.item = &auth.UserIdentity{Username: yyS[yypt-2].ident, Hostname: strings.ToLower(yyS[yypt-0].ident)} } - case 1792: + case 1798: { parser.yyVAL.item = &auth.UserIdentity{Username: yyS[yypt-1].ident, Hostname: strings.ToLower(strings.TrimPrefix(yyS[yypt-0].ident, "@"))} } - case 1793: + case 1799: { parser.yyVAL.item = &auth.UserIdentity{CurrentUser: true} } - case 1794: + case 1800: { parser.yyVAL.item = []*auth.UserIdentity{yyS[yypt-0].item.(*auth.UserIdentity)} } - case 1795: + case 1801: { parser.yyVAL.item = append(yyS[yypt-2].item.([]*auth.UserIdentity), yyS[yypt-0].item.(*auth.UserIdentity)) } - case 1797: + case 1803: { parser.yyVAL.ident = yyS[yypt-1].ident } - case 1801: + case 1807: { parser.yyVAL.item = &auth.RoleIdentity{Username: yyS[yypt-2].ident, Hostname: strings.ToLower(yyS[yypt-0].ident)} } - case 1802: + case 1808: { parser.yyVAL.item = &auth.RoleIdentity{Username: yyS[yypt-1].ident, Hostname: strings.ToLower(strings.TrimPrefix(yyS[yypt-0].ident, "@"))} } - case 1803: + case 1809: { parser.yyVAL.item = &auth.RoleIdentity{Username: yyS[yypt-0].ident, Hostname: "%"} } - case 1804: + case 1810: { parser.yyVAL.item = yyS[yypt-0].item } - case 1805: + case 1811: { parser.yyVAL.item = &auth.RoleIdentity{Username: yyS[yypt-0].ident, Hostname: "%"} } - case 1806: + case 1812: { parser.yyVAL.item = yyS[yypt-0].item } - case 1807: + case 1813: { parser.yyVAL.item = []*auth.RoleIdentity{yyS[yypt-0].item.(*auth.RoleIdentity)} } - case 1808: + case 1814: { parser.yyVAL.item = append(yyS[yypt-2].item.([]*auth.RoleIdentity), yyS[yypt-0].item.(*auth.RoleIdentity)) } - case 1809: + case 1815: { parser.yyVAL.item = &ast.LimitSimple{Offset: 0, Count: yyS[yypt-0].item.(uint64)} } - case 1810: + case 1816: { parser.yyVAL.item = &ast.LimitSimple{Offset: yyS[yypt-2].item.(uint64), Count: yyS[yypt-0].item.(uint64)} } - case 1811: + case 1817: { parser.yyVAL.item = &ast.LimitSimple{Offset: yyS[yypt-0].item.(uint64), Count: yyS[yypt-2].item.(uint64)} } - case 1812: + case 1818: { parser.yyVAL.statement = &ast.AdminStmt{Tp: ast.AdminShowDDL} } - case 1813: + case 1819: { stmt := &ast.AdminStmt{Tp: ast.AdminShowDDLJobs} if yyS[yypt-0].item != nil { @@ -18680,7 +18785,7 @@ yynewstate: } parser.yyVAL.statement = stmt } - case 1814: + case 1820: { stmt := &ast.AdminStmt{ Tp: ast.AdminShowDDLJobs, @@ -18691,21 +18796,21 @@ yynewstate: } parser.yyVAL.statement = stmt } - case 1815: + case 1821: { parser.yyVAL.statement = &ast.AdminStmt{ Tp: ast.AdminShowNextRowID, Tables: []*ast.TableName{yyS[yypt-1].item.(*ast.TableName)}, } } - case 1816: + case 1822: { parser.yyVAL.statement = &ast.AdminStmt{ Tp: ast.AdminCheckTable, Tables: yyS[yypt-0].item.([]*ast.TableName), } } - case 1817: + case 1823: { parser.yyVAL.statement = &ast.AdminStmt{ Tp: ast.AdminCheckIndex, @@ -18713,7 +18818,7 @@ yynewstate: Index: string(yyS[yypt-0].ident), } } - case 1818: + case 1824: { parser.yyVAL.statement = &ast.AdminStmt{ Tp: ast.AdminRecoverIndex, @@ -18721,7 +18826,7 @@ yynewstate: Index: string(yyS[yypt-0].ident), } } - case 1819: + case 1825: { parser.yyVAL.statement = &ast.AdminStmt{ Tp: ast.AdminCleanupIndex, @@ -18729,7 +18834,7 @@ yynewstate: Index: string(yyS[yypt-0].ident), } } - case 1820: + case 1826: { parser.yyVAL.statement = &ast.AdminStmt{ Tp: ast.AdminCheckIndexRange, @@ -18738,28 +18843,28 @@ yynewstate: HandleRanges: yyS[yypt-0].item.([]ast.HandleRange), } } - case 1821: + case 1827: { parser.yyVAL.statement = &ast.AdminStmt{ Tp: ast.AdminChecksumTable, Tables: yyS[yypt-0].item.([]*ast.TableName), } } - case 1822: + case 1828: { parser.yyVAL.statement = &ast.AdminStmt{ Tp: ast.AdminCancelDDLJobs, JobIDs: yyS[yypt-0].item.([]int64), } } - case 1823: + case 1829: { parser.yyVAL.statement = &ast.AdminStmt{ Tp: ast.AdminShowDDLJobQueries, JobIDs: yyS[yypt-0].item.([]int64), } } - case 1824: + case 1830: { ret := &ast.AdminStmt{ Tp: ast.AdminShowDDLJobQueriesWithRange, @@ -18768,115 +18873,115 @@ yynewstate: ret.LimitSimple.Offset = yyS[yypt-0].item.(*ast.LimitSimple).Offset parser.yyVAL.statement = ret } - case 1825: + case 1831: { parser.yyVAL.statement = &ast.AdminStmt{ Tp: ast.AdminShowSlow, ShowSlow: yyS[yypt-0].item.(*ast.ShowSlow), } } - case 1826: + case 1832: { parser.yyVAL.statement = &ast.AdminStmt{ Tp: ast.AdminReloadExprPushdownBlacklist, } } - case 1827: + case 1833: { parser.yyVAL.statement = &ast.AdminStmt{ Tp: ast.AdminReloadOptRuleBlacklist, } } - case 1828: + case 1834: { parser.yyVAL.statement = &ast.AdminStmt{ Tp: ast.AdminPluginEnable, Plugins: yyS[yypt-0].item.([]string), } } - case 1829: + case 1835: { parser.yyVAL.statement = &ast.AdminStmt{ Tp: ast.AdminPluginDisable, Plugins: yyS[yypt-0].item.([]string), } } - case 1830: + case 1836: { parser.yyVAL.statement = &ast.CleanupTableLockStmt{ Tables: yyS[yypt-0].item.([]*ast.TableName), } } - case 1831: + case 1837: { parser.yyVAL.statement = &ast.RepairTableStmt{ Table: yyS[yypt-1].item.(*ast.TableName), CreateStmt: yyS[yypt-0].statement.(*ast.CreateTableStmt), } } - case 1832: + case 1838: { parser.yyVAL.statement = &ast.AdminStmt{ Tp: ast.AdminFlushBindings, } } - case 1833: + case 1839: { parser.yyVAL.statement = &ast.AdminStmt{ Tp: ast.AdminCaptureBindings, } } - case 1834: + case 1840: { parser.yyVAL.statement = &ast.AdminStmt{ Tp: ast.AdminEvolveBindings, } } - case 1835: + case 1841: { parser.yyVAL.statement = &ast.AdminStmt{ Tp: ast.AdminReloadBindings, } } - case 1836: + case 1842: { parser.yyVAL.statement = &ast.AdminStmt{ Tp: ast.AdminReloadStatistics, } } - case 1837: + case 1843: { parser.yyVAL.statement = &ast.AdminStmt{ Tp: ast.AdminReloadStatistics, } } - case 1838: + case 1844: { parser.yyVAL.statement = &ast.AdminStmt{ Tp: ast.AdminShowTelemetry, } } - case 1839: + case 1845: { parser.yyVAL.statement = &ast.AdminStmt{ Tp: ast.AdminResetTelemetryID, } } - case 1840: + case 1846: { parser.yyVAL.statement = &ast.AdminStmt{ Tp: ast.AdminFlushPlanCache, StatementScope: yyS[yypt-1].item.(ast.StatementScope), } } - case 1841: + case 1847: { parser.yyVAL.item = &ast.ShowSlow{ Tp: ast.ShowSlowRecent, Count: getUint64FromNUM(yyS[yypt-0].item), } } - case 1842: + case 1848: { parser.yyVAL.item = &ast.ShowSlow{ Tp: ast.ShowSlowTop, @@ -18884,7 +18989,7 @@ yynewstate: Count: getUint64FromNUM(yyS[yypt-0].item), } } - case 1843: + case 1849: { parser.yyVAL.item = &ast.ShowSlow{ Tp: ast.ShowSlowTop, @@ -18892,7 +18997,7 @@ yynewstate: Count: getUint64FromNUM(yyS[yypt-0].item), } } - case 1844: + case 1850: { parser.yyVAL.item = &ast.ShowSlow{ Tp: ast.ShowSlowTop, @@ -18900,27 +19005,27 @@ yynewstate: Count: getUint64FromNUM(yyS[yypt-0].item), } } - case 1845: + case 1851: { parser.yyVAL.item = []ast.HandleRange{yyS[yypt-0].item.(ast.HandleRange)} } - case 1846: + case 1852: { parser.yyVAL.item = append(yyS[yypt-2].item.([]ast.HandleRange), yyS[yypt-0].item.(ast.HandleRange)) } - case 1847: + case 1853: { parser.yyVAL.item = ast.HandleRange{Begin: yyS[yypt-3].item.(int64), End: yyS[yypt-1].item.(int64)} } - case 1848: + case 1854: { parser.yyVAL.item = []int64{yyS[yypt-0].item.(int64)} } - case 1849: + case 1855: { parser.yyVAL.item = append(yyS[yypt-2].item.([]int64), yyS[yypt-0].item.(int64)) } - case 1850: + case 1856: { stmt := yyS[yypt-1].item.(*ast.ShowStmt) if yyS[yypt-0].item != nil { @@ -18932,21 +19037,21 @@ yynewstate: } parser.yyVAL.statement = stmt } - case 1851: + case 1857: { parser.yyVAL.statement = &ast.ShowStmt{ Tp: ast.ShowCreateTable, Table: yyS[yypt-0].item.(*ast.TableName), } } - case 1852: + case 1858: { parser.yyVAL.statement = &ast.ShowStmt{ Tp: ast.ShowCreateView, Table: yyS[yypt-0].item.(*ast.TableName), } } - case 1853: + case 1859: { parser.yyVAL.statement = &ast.ShowStmt{ Tp: ast.ShowCreateDatabase, @@ -18954,21 +19059,21 @@ yynewstate: DBName: yyS[yypt-0].ident, } } - case 1854: + case 1860: { parser.yyVAL.statement = &ast.ShowStmt{ Tp: ast.ShowCreateSequence, Table: yyS[yypt-0].item.(*ast.TableName), } } - case 1855: + case 1861: { parser.yyVAL.statement = &ast.ShowStmt{ Tp: ast.ShowCreatePlacementPolicy, DBName: yyS[yypt-0].ident, } } - case 1856: + case 1862: { // See https://dev.mysql.com/doc/refman/5.7/en/show-create-user.html parser.yyVAL.statement = &ast.ShowStmt{ @@ -18976,14 +19081,14 @@ yynewstate: User: yyS[yypt-0].item.(*auth.UserIdentity), } } - case 1857: + case 1863: { parser.yyVAL.statement = &ast.ShowStmt{ Tp: ast.ShowCreateImport, DBName: yyS[yypt-0].ident, // we reuse DBName of ShowStmt } } - case 1858: + case 1864: { stmt := &ast.ShowStmt{ Tp: ast.ShowRegions, @@ -18995,14 +19100,14 @@ yynewstate: } parser.yyVAL.statement = stmt } - case 1859: + case 1865: { parser.yyVAL.statement = &ast.ShowStmt{ Tp: ast.ShowTableNextRowId, Table: yyS[yypt-1].item.(*ast.TableName), } } - case 1860: + case 1866: { stmt := &ast.ShowStmt{ Tp: ast.ShowRegions, @@ -19015,12 +19120,12 @@ yynewstate: } parser.yyVAL.statement = stmt } - case 1861: + case 1867: { // See https://dev.mysql.com/doc/refman/5.7/en/show-grants.html parser.yyVAL.statement = &ast.ShowStmt{Tp: ast.ShowGrants} } - case 1862: + case 1868: { // See https://dev.mysql.com/doc/refman/5.7/en/show-grants.html if yyS[yypt-0].item != nil { @@ -19037,26 +19142,26 @@ yynewstate: } } } - case 1863: + case 1869: { parser.yyVAL.statement = &ast.ShowStmt{ Tp: ast.ShowMasterStatus, } } - case 1864: + case 1870: { parser.yyVAL.statement = &ast.ShowStmt{ Tp: ast.ShowProcessList, Full: yyS[yypt-1].item.(bool), } } - case 1865: + case 1871: { parser.yyVAL.statement = &ast.ShowStmt{ Tp: ast.ShowProfiles, } } - case 1866: + case 1872: { v := &ast.ShowStmt{ Tp: ast.ShowProfile, @@ -19072,37 +19177,37 @@ yynewstate: } parser.yyVAL.statement = v } - case 1867: + case 1873: { parser.yyVAL.statement = &ast.ShowStmt{ Tp: ast.ShowPrivileges, } } - case 1868: + case 1874: { parser.yyVAL.statement = &ast.ShowStmt{ Tp: ast.ShowBuiltins, } } - case 1869: + case 1875: { parser.yyVAL.statement = yyS[yypt-0].item.(*ast.ShowStmt) } - case 1870: + case 1876: { parser.yyVAL.item = &ast.ShowStmt{ Tp: ast.ShowPlacementForDatabase, DBName: yyS[yypt-0].ident, } } - case 1871: + case 1877: { parser.yyVAL.item = &ast.ShowStmt{ Tp: ast.ShowPlacementForTable, Table: yyS[yypt-0].item.(*ast.TableName), } } - case 1872: + case 1878: { parser.yyVAL.item = &ast.ShowStmt{ Tp: ast.ShowPlacementForPartition, @@ -19110,90 +19215,90 @@ yynewstate: Partition: model.NewCIStr(yyS[yypt-0].ident), } } - case 1873: + case 1879: { parser.yyVAL.item = nil } - case 1875: + case 1881: { parser.yyVAL.item = []int{yyS[yypt-0].item.(int)} } - case 1876: + case 1882: { l := yyS[yypt-2].item.([]int) l = append(l, yyS[yypt-0].item.(int)) parser.yyVAL.item = l } - case 1877: + case 1883: { parser.yyVAL.item = ast.ProfileTypeCPU } - case 1878: + case 1884: { parser.yyVAL.item = ast.ProfileTypeMemory } - case 1879: + case 1885: { parser.yyVAL.item = ast.ProfileTypeBlockIo } - case 1880: + case 1886: { parser.yyVAL.item = ast.ProfileTypeContextSwitch } - case 1881: + case 1887: { parser.yyVAL.item = ast.ProfileTypePageFaults } - case 1882: + case 1888: { parser.yyVAL.item = ast.ProfileTypeIpc } - case 1883: + case 1889: { parser.yyVAL.item = ast.ProfileTypeSwaps } - case 1884: + case 1890: { parser.yyVAL.item = ast.ProfileTypeSource } - case 1885: + case 1891: { parser.yyVAL.item = ast.ProfileTypeAll } - case 1886: + case 1892: { parser.yyVAL.item = nil } - case 1887: + case 1893: { v := yyS[yypt-0].item.(int64) parser.yyVAL.item = &v } - case 1888: + case 1894: { parser.yyVAL.item = nil } - case 1889: + case 1895: { parser.yyVAL.item = yyS[yypt-0].item.([]*auth.RoleIdentity) } - case 1895: + case 1901: { parser.yyVAL.item = &ast.ShowStmt{Tp: ast.ShowEngines} } - case 1896: + case 1902: { parser.yyVAL.item = &ast.ShowStmt{Tp: ast.ShowDatabases} } - case 1897: + case 1903: { parser.yyVAL.item = &ast.ShowStmt{Tp: ast.ShowConfig} } - case 1898: + case 1904: { parser.yyVAL.item = &ast.ShowStmt{Tp: ast.ShowCharset} } - case 1899: + case 1905: { parser.yyVAL.item = &ast.ShowStmt{ Tp: ast.ShowTables, @@ -19201,28 +19306,28 @@ yynewstate: Full: yyS[yypt-2].item.(bool), } } - case 1900: + case 1906: { parser.yyVAL.item = &ast.ShowStmt{ Tp: ast.ShowOpenTables, DBName: yyS[yypt-0].ident, } } - case 1901: + case 1907: { parser.yyVAL.item = &ast.ShowStmt{ Tp: ast.ShowTableStatus, DBName: yyS[yypt-0].ident, } } - case 1902: + case 1908: { parser.yyVAL.item = &ast.ShowStmt{ Tp: ast.ShowIndex, Table: yyS[yypt-0].item.(*ast.TableName), } } - case 1903: + case 1909: { show := &ast.ShowStmt{ Tp: ast.ShowIndex, @@ -19230,7 +19335,7 @@ yynewstate: } parser.yyVAL.item = show } - case 1904: + case 1910: { parser.yyVAL.item = &ast.ShowStmt{ Tp: ast.ShowColumns, @@ -19239,7 +19344,7 @@ yynewstate: Full: yyS[yypt-3].item.(bool), } } - case 1905: + case 1911: { parser.yyVAL.item = &ast.ShowStmt{ Tp: ast.ShowColumns, @@ -19249,81 +19354,81 @@ yynewstate: Extended: true, } } - case 1906: + case 1912: { parser.yyVAL.item = &ast.ShowStmt{Tp: ast.ShowWarnings, CountWarningsOrErrors: true} } - case 1907: + case 1913: { parser.yyVAL.item = &ast.ShowStmt{Tp: ast.ShowWarnings} } - case 1908: + case 1914: { parser.yyVAL.item = &ast.ShowStmt{Tp: ast.ShowErrors, CountWarningsOrErrors: true} } - case 1909: + case 1915: { parser.yyVAL.item = &ast.ShowStmt{Tp: ast.ShowErrors} } - case 1910: + case 1916: { parser.yyVAL.item = &ast.ShowStmt{ Tp: ast.ShowVariables, GlobalScope: yyS[yypt-1].item.(bool), } } - case 1911: + case 1917: { parser.yyVAL.item = &ast.ShowStmt{ Tp: ast.ShowStatus, GlobalScope: yyS[yypt-1].item.(bool), } } - case 1912: + case 1918: { parser.yyVAL.item = &ast.ShowStmt{ Tp: ast.ShowBindings, GlobalScope: yyS[yypt-1].item.(bool), } } - case 1913: + case 1919: { parser.yyVAL.item = &ast.ShowStmt{ Tp: ast.ShowCollation, } } - case 1914: + case 1920: { parser.yyVAL.item = &ast.ShowStmt{ Tp: ast.ShowTriggers, DBName: yyS[yypt-0].ident, } } - case 1915: + case 1921: { parser.yyVAL.item = &ast.ShowStmt{ Tp: ast.ShowBindingCacheStatus, } } - case 1916: + case 1922: { parser.yyVAL.item = &ast.ShowStmt{ Tp: ast.ShowProcedureStatus, } } - case 1917: + case 1923: { parser.yyVAL.item = &ast.ShowStmt{ Tp: ast.ShowPumpStatus, } } - case 1918: + case 1924: { parser.yyVAL.item = &ast.ShowStmt{ Tp: ast.ShowDrainerStatus, } } - case 1919: + case 1925: { // This statement is similar to SHOW PROCEDURE STATUS but for stored functions. // See http://dev.mysql.com/doc/refman/5.7/en/show-function-status.html @@ -19333,189 +19438,193 @@ yynewstate: Tp: ast.ShowProcedureStatus, } } - case 1920: + case 1926: { parser.yyVAL.item = &ast.ShowStmt{ Tp: ast.ShowEvents, DBName: yyS[yypt-0].ident, } } - case 1921: + case 1927: { parser.yyVAL.item = &ast.ShowStmt{ Tp: ast.ShowPlugins, } } - case 1922: + case 1928: { parser.yyVAL.item = &ast.ShowStmt{Tp: ast.ShowSessionStates} } - case 1923: + case 1929: { parser.yyVAL.item = &ast.ShowStmt{Tp: ast.ShowStatsExtended} } - case 1924: + case 1930: { parser.yyVAL.item = &ast.ShowStmt{Tp: ast.ShowStatsMeta, Table: &ast.TableName{Name: model.NewCIStr("STATS_META"), Schema: model.NewCIStr(mysql.SystemDB)}} } - case 1925: + case 1931: { parser.yyVAL.item = &ast.ShowStmt{Tp: ast.ShowStatsHistograms, Table: &ast.TableName{Name: model.NewCIStr("STATS_HISTOGRAMS"), Schema: model.NewCIStr(mysql.SystemDB)}} } - case 1926: + case 1932: { parser.yyVAL.item = &ast.ShowStmt{Tp: ast.ShowStatsTopN} } - case 1927: + case 1933: { parser.yyVAL.item = &ast.ShowStmt{Tp: ast.ShowStatsBuckets, Table: &ast.TableName{Name: model.NewCIStr("STATS_BUCKETS"), Schema: model.NewCIStr(mysql.SystemDB)}} } - case 1928: + case 1934: { parser.yyVAL.item = &ast.ShowStmt{Tp: ast.ShowStatsHealthy} } - case 1929: + case 1935: + { + parser.yyVAL.item = &ast.ShowStmt{Tp: ast.ShowStatsLocked, Table: &ast.TableName{Name: model.NewCIStr("STATS_TABLE_LOCKED"), Schema: model.NewCIStr(mysql.SystemDB)}} + } + case 1936: { parser.yyVAL.item = &ast.ShowStmt{Tp: ast.ShowHistogramsInFlight} } - case 1930: + case 1937: { parser.yyVAL.item = &ast.ShowStmt{Tp: ast.ShowColumnStatsUsage} } - case 1931: + case 1938: { parser.yyVAL.item = &ast.ShowStmt{Tp: ast.ShowAnalyzeStatus} } - case 1932: + case 1939: { parser.yyVAL.item = &ast.ShowStmt{Tp: ast.ShowBackups} } - case 1933: + case 1940: { parser.yyVAL.item = &ast.ShowStmt{Tp: ast.ShowRestores} } - case 1934: + case 1941: { parser.yyVAL.item = &ast.ShowStmt{Tp: ast.ShowImports} } - case 1935: + case 1942: { parser.yyVAL.item = &ast.ShowStmt{Tp: ast.ShowPlacement} } - case 1936: + case 1943: { parser.yyVAL.item = &ast.ShowStmt{Tp: ast.ShowPlacementLabels} } - case 1937: + case 1944: { parser.yyVAL.item = nil } - case 1938: + case 1945: { parser.yyVAL.item = &ast.PatternLikeExpr{ Pattern: yyS[yypt-0].expr, Escape: '\\', } } - case 1939: + case 1946: { parser.yyVAL.item = yyS[yypt-0].expr } - case 1940: + case 1947: { parser.yyVAL.item = false } - case 1941: + case 1948: { parser.yyVAL.item = true } - case 1942: + case 1949: { parser.yyVAL.item = false } - case 1943: + case 1950: { parser.yyVAL.item = ast.StatementScopeSession } - case 1944: + case 1951: { parser.yyVAL.item = ast.StatementScopeGlobal } - case 1945: + case 1952: { parser.yyVAL.item = ast.StatementScopeInstance } - case 1946: + case 1953: { parser.yyVAL.item = ast.StatementScopeSession } - case 1947: + case 1954: { parser.yyVAL.item = false } - case 1948: + case 1955: { parser.yyVAL.item = true } - case 1949: + case 1956: { parser.yyVAL.ident = "" } - case 1950: + case 1957: { parser.yyVAL.ident = yyS[yypt-0].ident } - case 1951: + case 1958: { parser.yyVAL.item = yyS[yypt-0].item.(*ast.TableName) } - case 1952: + case 1959: { tmp := yyS[yypt-0].item.(*ast.FlushStmt) tmp.NoWriteToBinLog = yyS[yypt-1].item.(bool) parser.yyVAL.statement = tmp } - case 1953: + case 1960: { parser.yyVAL.item = []string{yyS[yypt-0].ident} } - case 1954: + case 1961: { parser.yyVAL.item = append(yyS[yypt-2].item.([]string), yyS[yypt-0].ident) } - case 1955: + case 1962: { parser.yyVAL.item = &ast.FlushStmt{ Tp: ast.FlushPrivileges, } } - case 1956: + case 1963: { parser.yyVAL.item = &ast.FlushStmt{ Tp: ast.FlushStatus, } } - case 1957: + case 1964: { parser.yyVAL.item = &ast.FlushStmt{ Tp: ast.FlushTiDBPlugin, Plugins: yyS[yypt-0].item.([]string), } } - case 1958: + case 1965: { parser.yyVAL.item = &ast.FlushStmt{ Tp: ast.FlushHosts, } } - case 1959: + case 1966: { parser.yyVAL.item = &ast.FlushStmt{ Tp: ast.FlushLogs, LogType: yyS[yypt-1].item.(ast.LogType), } } - case 1960: + case 1967: { parser.yyVAL.item = &ast.FlushStmt{ Tp: ast.FlushTables, @@ -19523,69 +19632,69 @@ yynewstate: ReadLock: yyS[yypt-0].item.(bool), } } - case 1961: + case 1968: { parser.yyVAL.item = &ast.FlushStmt{ Tp: ast.FlushClientErrorsSummary, } } - case 1962: + case 1969: { parser.yyVAL.item = ast.LogTypeDefault } - case 1963: + case 1970: { parser.yyVAL.item = ast.LogTypeBinary } - case 1964: + case 1971: { parser.yyVAL.item = ast.LogTypeEngine } - case 1965: + case 1972: { parser.yyVAL.item = ast.LogTypeError } - case 1966: + case 1973: { parser.yyVAL.item = ast.LogTypeGeneral } - case 1967: + case 1974: { parser.yyVAL.item = ast.LogTypeSlow } - case 1968: + case 1975: { parser.yyVAL.item = false } - case 1969: + case 1976: { parser.yyVAL.item = true } - case 1970: + case 1977: { parser.yyVAL.item = true } - case 1971: + case 1978: { parser.yyVAL.item = []*ast.TableName{} } - case 1973: + case 1980: { parser.yyVAL.item = []*ast.TableName{} } - case 1974: + case 1981: { parser.yyVAL.item = yyS[yypt-0].item } - case 1975: + case 1982: { parser.yyVAL.item = false } - case 1976: + case 1983: { parser.yyVAL.item = true } - case 2048: + case 2058: { var sel ast.StmtNode switch x := yyS[yypt-0].expr.(*ast.SubqueryExpr).Query.(type) { @@ -19598,7 +19707,7 @@ yynewstate: } parser.yyVAL.statement = sel } - case 2074: + case 2084: { var sel ast.StmtNode switch x := yyS[yypt-0].expr.(*ast.SubqueryExpr).Query.(type) { @@ -19611,7 +19720,7 @@ yynewstate: } parser.yyVAL.statement = sel } - case 2090: + case 2100: { var sel ast.StmtNode switch x := yyS[yypt-0].expr.(*ast.SubqueryExpr).Query.(type) { @@ -19624,7 +19733,7 @@ yynewstate: } parser.yyVAL.statement = sel } - case 2092: + case 2102: { if yyS[yypt-0].statement != nil { s := yyS[yypt-0].statement @@ -19634,7 +19743,7 @@ yynewstate: parser.result = append(parser.result, s) } } - case 2093: + case 2103: { if yyS[yypt-0].statement != nil { s := yyS[yypt-0].statement @@ -19644,7 +19753,7 @@ yynewstate: parser.result = append(parser.result, s) } } - case 2094: + case 2104: { cst := yyS[yypt-0].item.(*ast.Constraint) if yyS[yypt-1].item != nil { @@ -19653,7 +19762,7 @@ yynewstate: } parser.yyVAL.item = cst } - case 2099: + case 2109: { if yyS[yypt-0].item != nil { parser.yyVAL.item = []interface{}{yyS[yypt-0].item.(interface{})} @@ -19661,7 +19770,7 @@ yynewstate: parser.yyVAL.item = []interface{}{} } } - case 2100: + case 2110: { if yyS[yypt-0].item != nil { parser.yyVAL.item = append(yyS[yypt-2].item.([]interface{}), yyS[yypt-0].item) @@ -19669,7 +19778,7 @@ yynewstate: parser.yyVAL.item = yyS[yypt-2].item } } - case 2101: + case 2111: { var columnDefs []*ast.ColumnDef var constraints []*ast.Constraint @@ -19678,7 +19787,7 @@ yynewstate: Constraints: constraints, } } - case 2102: + case 2112: { tes := yyS[yypt-1].item.([]interface{}) var columnDefs []*ast.ColumnDef @@ -19696,69 +19805,69 @@ yynewstate: Constraints: constraints, } } - case 2104: + case 2114: { parser.yyVAL.item = &ast.TableOption{Tp: ast.TableOptionCharset, StrValue: yyS[yypt-0].ident, UintValue: ast.TableOptionCharsetWithoutConvertTo} } - case 2105: + case 2115: { parser.yyVAL.item = &ast.TableOption{Tp: ast.TableOptionCollate, StrValue: yyS[yypt-0].ident, UintValue: ast.TableOptionCharsetWithoutConvertTo} } - case 2106: + case 2116: { parser.yyVAL.item = &ast.TableOption{Tp: ast.TableOptionAutoIncrement, UintValue: yyS[yypt-0].item.(uint64), BoolValue: yyS[yypt-3].item.(bool)} } - case 2107: + case 2117: { parser.yyVAL.item = &ast.TableOption{Tp: ast.TableOptionAutoIdCache, UintValue: yyS[yypt-0].item.(uint64)} } - case 2108: + case 2118: { parser.yyVAL.item = &ast.TableOption{Tp: ast.TableOptionAutoRandomBase, UintValue: yyS[yypt-0].item.(uint64), BoolValue: yyS[yypt-3].item.(bool)} } - case 2109: + case 2119: { parser.yyVAL.item = &ast.TableOption{Tp: ast.TableOptionAvgRowLength, UintValue: yyS[yypt-0].item.(uint64)} } - case 2110: + case 2120: { parser.yyVAL.item = &ast.TableOption{Tp: ast.TableOptionConnection, StrValue: yyS[yypt-0].ident} } - case 2111: + case 2121: { parser.yyVAL.item = &ast.TableOption{Tp: ast.TableOptionCheckSum, UintValue: yyS[yypt-0].item.(uint64)} } - case 2112: + case 2122: { parser.yyVAL.item = &ast.TableOption{Tp: ast.TableOptionTableCheckSum, UintValue: yyS[yypt-0].item.(uint64)} } - case 2113: + case 2123: { parser.yyVAL.item = &ast.TableOption{Tp: ast.TableOptionPassword, StrValue: yyS[yypt-0].ident} } - case 2114: + case 2124: { parser.yyVAL.item = &ast.TableOption{Tp: ast.TableOptionCompression, StrValue: yyS[yypt-0].ident} } - case 2115: + case 2125: { parser.yyVAL.item = &ast.TableOption{Tp: ast.TableOptionKeyBlockSize, UintValue: yyS[yypt-0].item.(uint64)} } - case 2116: + case 2126: { parser.yyVAL.item = &ast.TableOption{Tp: ast.TableOptionDelayKeyWrite, UintValue: yyS[yypt-0].item.(uint64)} } - case 2117: + case 2127: { parser.yyVAL.item = &ast.TableOption{Tp: ast.TableOptionRowFormat, UintValue: yyS[yypt-0].item.(uint64)} } - case 2118: + case 2128: { parser.yyVAL.item = &ast.TableOption{Tp: ast.TableOptionStatsPersistent} } - case 2119: + case 2129: { n := yyS[yypt-0].item.(uint64) if n != 0 && n != 1 { @@ -19769,13 +19878,13 @@ yynewstate: yylex.AppendError(yylex.Errorf("The STATS_AUTO_RECALC is parsed but ignored by all storage engines.")) parser.lastErrorAsWarn() } - case 2120: + case 2130: { parser.yyVAL.item = &ast.TableOption{Tp: ast.TableOptionStatsAutoRecalc, Default: true} yylex.AppendError(yylex.Errorf("The STATS_AUTO_RECALC is parsed but ignored by all storage engines.")) parser.lastErrorAsWarn() } - case 2121: + case 2131: { // Parse it but will ignore it. // In MySQL, STATS_SAMPLE_PAGES=N(Where 0 1 { @@ -21503,7 +21639,7 @@ yynewstate: OptEnclosed: true, } } - case 2443: + case 2457: { str := yyS[yypt-0].ident if str != "\\" && len(str) > 1 { @@ -21515,7 +21651,7 @@ yynewstate: Value: str, } } - case 2444: + case 2458: { str := yyS[yypt-0].ident if str != "\\" && len(str) > 1 { @@ -21527,147 +21663,147 @@ yynewstate: Value: str, } } - case 2446: + case 2460: { parser.yyVAL.ident = yyS[yypt-0].item.(ast.BinaryLiteral).ToString() } - case 2447: + case 2461: { parser.yyVAL.ident = yyS[yypt-0].item.(ast.BinaryLiteral).ToString() } - case 2448: + case 2462: { parser.yyVAL.item = &ast.LinesClause{Terminated: "\n"} } - case 2449: + case 2463: { parser.yyVAL.item = &ast.LinesClause{Starting: yyS[yypt-1].ident, Terminated: yyS[yypt-0].ident} } - case 2450: + case 2464: { parser.yyVAL.ident = "" } - case 2451: + case 2465: { parser.yyVAL.ident = yyS[yypt-0].ident } - case 2452: + case 2466: { parser.yyVAL.ident = "\n" } - case 2453: + case 2467: { parser.yyVAL.ident = yyS[yypt-0].ident } - case 2454: + case 2468: { parser.yyVAL.item = nil } - case 2455: + case 2469: { parser.yyVAL.item = yyS[yypt-0].item } - case 2456: + case 2470: { l := yyS[yypt-2].item.([]*ast.Assignment) parser.yyVAL.item = append(l, yyS[yypt-0].item.(*ast.Assignment)) } - case 2457: + case 2471: { parser.yyVAL.item = []*ast.Assignment{yyS[yypt-0].item.(*ast.Assignment)} } - case 2458: + case 2472: { parser.yyVAL.item = &ast.Assignment{ Column: yyS[yypt-2].expr.(*ast.ColumnNameExpr).Name, Expr: yyS[yypt-0].expr, } } - case 2459: + case 2473: { parser.yyVAL.statement = &ast.UnlockTablesStmt{} } - case 2460: + case 2474: { parser.yyVAL.statement = &ast.LockTablesStmt{ TableLocks: yyS[yypt-0].item.([]ast.TableLock), } } - case 2463: + case 2477: { parser.yyVAL.item = ast.TableLock{ Table: yyS[yypt-1].item.(*ast.TableName), Type: yyS[yypt-0].item.(model.TableLockType), } } - case 2464: + case 2478: { parser.yyVAL.item = model.TableLockRead } - case 2465: + case 2479: { parser.yyVAL.item = model.TableLockReadLocal } - case 2466: + case 2480: { parser.yyVAL.item = model.TableLockWrite } - case 2467: + case 2481: { parser.yyVAL.item = model.TableLockWriteLocal } - case 2468: + case 2482: { parser.yyVAL.item = []ast.TableLock{yyS[yypt-0].item.(ast.TableLock)} } - case 2469: + case 2483: { parser.yyVAL.item = append(yyS[yypt-2].item.([]ast.TableLock), yyS[yypt-0].item.(ast.TableLock)) } - case 2470: + case 2484: { - parser.yyVAL.statement = &ast.NonTransactionalDeleteStmt{ + parser.yyVAL.statement = &ast.NonTransactionalDMLStmt{ DryRun: yyS[yypt-1].item.(int), ShardColumn: yyS[yypt-4].item.(*ast.ColumnName), Limit: getUint64FromNUM(yyS[yypt-2].item), - DeleteStmt: yyS[yypt-0].statement.(*ast.DeleteStmt), + DMLStmt: yyS[yypt-0].statement.(ast.ShardableDMLStmt), } } - case 2471: + case 2488: { parser.yyVAL.item = ast.NoDryRun } - case 2472: + case 2489: { parser.yyVAL.item = ast.DryRunSplitDml } - case 2473: + case 2490: { parser.yyVAL.item = ast.DryRunQuery } - case 2474: + case 2491: { parser.yyVAL.item = (*ast.ColumnName)(nil) } - case 2475: + case 2492: { parser.yyVAL.item = yyS[yypt-0].item.(*ast.ColumnName) } - case 2476: + case 2493: { parser.yyVAL.statement = &ast.KillStmt{ ConnectionID: getUint64FromNUM(yyS[yypt-0].item), TiDBExtension: yyS[yypt-1].item.(bool), } } - case 2477: + case 2494: { parser.yyVAL.statement = &ast.KillStmt{ ConnectionID: getUint64FromNUM(yyS[yypt-0].item), TiDBExtension: yyS[yypt-2].item.(bool), } } - case 2478: + case 2495: { parser.yyVAL.statement = &ast.KillStmt{ ConnectionID: getUint64FromNUM(yyS[yypt-0].item), @@ -21675,28 +21811,47 @@ yynewstate: TiDBExtension: yyS[yypt-2].item.(bool), } } - case 2479: + case 2496: + { + parser.yyVAL.statement = &ast.KillStmt{ + TiDBExtension: yyS[yypt-1].item.(bool), + Expr: yyS[yypt-0].expr, + } + } + case 2497: { parser.yyVAL.item = false } - case 2480: + case 2498: { parser.yyVAL.item = true } - case 2481: + case 2499: { parser.yyVAL.statement = &ast.LoadStatsStmt{ Path: yyS[yypt-0].ident, } } - case 2482: + case 2500: + { + parser.yyVAL.statement = &ast.LockStatsStmt{ + Tables: yyS[yypt-0].item.([]*ast.TableName), + } + } + case 2501: + { + parser.yyVAL.statement = &ast.UnlockStatsStmt{ + Tables: yyS[yypt-0].item.([]*ast.TableName), + } + } + case 2502: { parser.yyVAL.statement = &ast.DropPlacementPolicyStmt{ IfExists: yyS[yypt-1].item.(bool), PolicyName: model.NewCIStr(yyS[yypt-0].ident), } } - case 2483: + case 2503: { parser.yyVAL.statement = &ast.CreatePlacementPolicyStmt{ OrReplace: yyS[yypt-5].item.(bool), @@ -21705,7 +21860,7 @@ yynewstate: PlacementOptions: yyS[yypt-0].item.([]*ast.PlacementOption), } } - case 2484: + case 2504: { parser.yyVAL.statement = &ast.AlterPlacementPolicyStmt{ IfExists: yyS[yypt-2].item.(bool), @@ -21713,7 +21868,7 @@ yynewstate: PlacementOptions: yyS[yypt-0].item.([]*ast.PlacementOption), } } - case 2485: + case 2505: { parser.yyVAL.statement = &ast.CreateSequenceStmt{ IfNotExists: yyS[yypt-3].item.(bool), @@ -21722,87 +21877,87 @@ yynewstate: TblOptions: yyS[yypt-0].item.([]*ast.TableOption), } } - case 2486: + case 2506: { parser.yyVAL.item = []*ast.SequenceOption{} } - case 2488: + case 2508: { parser.yyVAL.item = []*ast.SequenceOption{yyS[yypt-0].item.(*ast.SequenceOption)} } - case 2489: + case 2509: { parser.yyVAL.item = append(yyS[yypt-1].item.([]*ast.SequenceOption), yyS[yypt-0].item.(*ast.SequenceOption)) } - case 2490: + case 2510: { parser.yyVAL.item = &ast.SequenceOption{Tp: ast.SequenceOptionIncrementBy, IntValue: yyS[yypt-0].item.(int64)} } - case 2491: + case 2511: { parser.yyVAL.item = &ast.SequenceOption{Tp: ast.SequenceOptionIncrementBy, IntValue: yyS[yypt-0].item.(int64)} } - case 2492: + case 2512: { parser.yyVAL.item = &ast.SequenceOption{Tp: ast.SequenceStartWith, IntValue: yyS[yypt-0].item.(int64)} } - case 2493: + case 2513: { parser.yyVAL.item = &ast.SequenceOption{Tp: ast.SequenceStartWith, IntValue: yyS[yypt-0].item.(int64)} } - case 2494: + case 2514: { parser.yyVAL.item = &ast.SequenceOption{Tp: ast.SequenceMinValue, IntValue: yyS[yypt-0].item.(int64)} } - case 2495: + case 2515: { parser.yyVAL.item = &ast.SequenceOption{Tp: ast.SequenceNoMinValue} } - case 2496: + case 2516: { parser.yyVAL.item = &ast.SequenceOption{Tp: ast.SequenceNoMinValue} } - case 2497: + case 2517: { parser.yyVAL.item = &ast.SequenceOption{Tp: ast.SequenceMaxValue, IntValue: yyS[yypt-0].item.(int64)} } - case 2498: + case 2518: { parser.yyVAL.item = &ast.SequenceOption{Tp: ast.SequenceNoMaxValue} } - case 2499: + case 2519: { parser.yyVAL.item = &ast.SequenceOption{Tp: ast.SequenceNoMaxValue} } - case 2500: + case 2520: { parser.yyVAL.item = &ast.SequenceOption{Tp: ast.SequenceCache, IntValue: yyS[yypt-0].item.(int64)} } - case 2501: + case 2521: { parser.yyVAL.item = &ast.SequenceOption{Tp: ast.SequenceNoCache} } - case 2502: + case 2522: { parser.yyVAL.item = &ast.SequenceOption{Tp: ast.SequenceNoCache} } - case 2503: + case 2523: { parser.yyVAL.item = &ast.SequenceOption{Tp: ast.SequenceCycle} } - case 2504: + case 2524: { parser.yyVAL.item = &ast.SequenceOption{Tp: ast.SequenceNoCycle} } - case 2505: + case 2525: { parser.yyVAL.item = &ast.SequenceOption{Tp: ast.SequenceNoCycle} } - case 2507: + case 2527: { parser.yyVAL.item = yyS[yypt-0].item } - case 2508: + case 2528: { unsigned_num := getUint64FromNUM(yyS[yypt-0].item) if unsigned_num > 9223372036854775808 { @@ -21815,14 +21970,14 @@ yynewstate: parser.yyVAL.item = -int64(unsigned_num) } } - case 2509: + case 2529: { parser.yyVAL.statement = &ast.DropSequenceStmt{ IfExists: yyS[yypt-1].item.(bool), Sequences: yyS[yypt-0].item.([]*ast.TableName), } } - case 2510: + case 2530: { parser.yyVAL.statement = &ast.AlterSequenceStmt{ IfExists: yyS[yypt-2].item.(bool), @@ -21830,27 +21985,27 @@ yynewstate: SeqOptions: yyS[yypt-0].item.([]*ast.SequenceOption), } } - case 2511: + case 2531: { parser.yyVAL.item = []*ast.SequenceOption{yyS[yypt-0].item.(*ast.SequenceOption)} } - case 2512: + case 2532: { parser.yyVAL.item = append(yyS[yypt-1].item.([]*ast.SequenceOption), yyS[yypt-0].item.(*ast.SequenceOption)) } - case 2514: + case 2534: { parser.yyVAL.item = &ast.SequenceOption{Tp: ast.SequenceRestart} } - case 2515: + case 2535: { parser.yyVAL.item = &ast.SequenceOption{Tp: ast.SequenceRestartWith, IntValue: yyS[yypt-0].item.(int64)} } - case 2516: + case 2536: { parser.yyVAL.item = &ast.SequenceOption{Tp: ast.SequenceRestartWith, IntValue: yyS[yypt-0].item.(int64)} } - case 2517: + case 2537: { x := &ast.IndexAdviseStmt{ Path: yyS[yypt-3].ident, @@ -21867,42 +22022,42 @@ yynewstate: } parser.yyVAL.statement = x } - case 2518: + case 2538: { parser.yyVAL.item = uint64(ast.UnspecifiedSize) } - case 2519: + case 2539: { parser.yyVAL.item = getUint64FromNUM(yyS[yypt-0].item) } - case 2520: + case 2540: { parser.yyVAL.item = nil } - case 2521: + case 2541: { parser.yyVAL.item = &ast.MaxIndexNumClause{ PerTable: yyS[yypt-1].item.(uint64), PerDB: yyS[yypt-0].item.(uint64), } } - case 2522: + case 2542: { parser.yyVAL.item = uint64(ast.UnspecifiedSize) } - case 2523: + case 2543: { parser.yyVAL.item = getUint64FromNUM(yyS[yypt-0].item) } - case 2524: + case 2544: { parser.yyVAL.item = uint64(ast.UnspecifiedSize) } - case 2525: + case 2545: { parser.yyVAL.item = getUint64FromNUM(yyS[yypt-0].item) } - case 2526: + case 2546: { // Parse it but will ignore it switch yyS[yypt-0].ident { @@ -21917,19 +22072,19 @@ yynewstate: } parser.yyVAL.ident = yyS[yypt-0].ident } - case 2527: + case 2547: { parser.yyVAL.item = append([]*ast.RowExpr{}, yyS[yypt-0].item.(*ast.RowExpr)) } - case 2528: + case 2548: { parser.yyVAL.item = append(yyS[yypt-2].item.([]*ast.RowExpr), yyS[yypt-0].item.(*ast.RowExpr)) } - case 2529: + case 2549: { parser.yyVAL.item = &ast.RowExpr{Values: yyS[yypt-0].item.([]ast.ExprNode)} } - case 2530: + case 2550: { x := &ast.PlanReplayerStmt{ Stmt: yyS[yypt-0].statement, @@ -21945,7 +22100,7 @@ yynewstate: parser.yyVAL.statement = x } - case 2531: + case 2551: { x := &ast.PlanReplayerStmt{ Stmt: yyS[yypt-0].statement, @@ -21961,7 +22116,7 @@ yynewstate: parser.yyVAL.statement = x } - case 2532: + case 2552: { x := &ast.PlanReplayerStmt{ Stmt: nil, @@ -21981,7 +22136,7 @@ yynewstate: parser.yyVAL.statement = x } - case 2533: + case 2553: { x := &ast.PlanReplayerStmt{ Stmt: nil, @@ -22001,7 +22156,7 @@ yynewstate: parser.yyVAL.statement = x } - case 2534: + case 2554: { x := &ast.PlanReplayerStmt{ Stmt: nil, @@ -22011,7 +22166,7 @@ yynewstate: } parser.yyVAL.statement = x } - case 2535: + case 2555: { x := &ast.PlanReplayerStmt{ Stmt: nil, @@ -22021,7 +22176,7 @@ yynewstate: } parser.yyVAL.statement = x } - case 2536: + case 2556: { x := &ast.PlanReplayerStmt{ Stmt: nil, diff --git a/parser/parser.y b/parser/parser.y index b988926d4ebee..55ee369aa41e4 100644 --- a/parser/parser.y +++ b/parser/parser.y @@ -50,8 +50,9 @@ import ( %token /*yy:token "%c" */ - identifier "identifier" - asof "AS OF" + identifier "identifier" + asof "AS OF" + toTimestamp "TO TIMESTAMP" /*yy:token "_%c" */ underscoreCS "UNDERSCORE_CHARSET" @@ -298,6 +299,7 @@ import ( always "ALWAYS" any "ANY" ascii "ASCII" + attribute "ATTRIBUTE" attributes "ATTRIBUTES" statsOptions "STATS_OPTIONS" statsSampleRate "STATS_SAMPLE_RATE" @@ -604,6 +606,7 @@ import ( tikvImporter "TIKV_IMPORTER" timestampType "TIMESTAMP" timeType "TIME" + tokenIssuer "TOKEN_ISSUER" tp "TYPE" trace "TRACE" traditional "TRADITIONAL" @@ -749,6 +752,7 @@ import ( statsBuckets "STATS_BUCKETS" statsHealthy "STATS_HEALTHY" statsTopN "STATS_TOPN" + statsLocked "STATS_LOCKED" histogramsInFlight "HISTOGRAMS_IN_FLIGHT" telemetry "TELEMETRY" telemetryID "TELEMETRY_ID" @@ -900,7 +904,8 @@ import ( ExplainableStmt "explainable statement" FlushStmt "Flush statement" FlashbackTableStmt "Flashback table statement" - FlashbackClusterStmt "Flashback cluster statement" + FlashbackToTimestampStmt "Flashback cluster statement" + FlashbackDatabaseStmt "Flashback Database statement" GrantStmt "Grant statement" GrantProxyStmt "Grant proxy statement" GrantRoleStmt "Grant role statement" @@ -910,8 +915,10 @@ import ( KillStmt "Kill statement" LoadDataStmt "Load data statement" LoadStatsStmt "Load statistic statement" + LockStatsStmt "Lock statistic statement" + UnlockStatsStmt "Unlock statistic statement" LockTablesStmt "Lock tables statement" - NonTransactionalDeleteStmt "Non-transactional delete statement" + NonTransactionalDMLStmt "Non-transactional DML statement" PlanReplayerStmt "Plan replayer statement" PreparedStmt "PreparedStmt" PurgeImportStmt "PURGE IMPORT statement that removes a IMPORT task record" @@ -952,6 +959,7 @@ import ( BindableStmt "Statement that can be created binding on" UpdateStmtNoWith "Update statement without CTE clause" HelpStmt "HELP statement" + ShardableStmt "Shardable statement that can be used in non-transactional DMLs" %type AdminShowSlow "Admin Show Slow statement" @@ -1129,6 +1137,7 @@ import ( PasswordOrLockOption "Single password or lock option for create user statement" PasswordOrLockOptionList "Password or lock options for create user statement" PasswordOrLockOptions "Optional password or lock options for create user statement" + CommentOrAttributeOption "Optional comment or attribute option for CREATE/ALTER USER statements" ColumnPosition "Column position [First|After ColumnName]" PrepareSQL "Prepare statement sql string" Priority "Statement priority" @@ -1143,8 +1152,8 @@ import ( OptGConcatSeparator "optional GROUP_CONCAT SEPARATOR" ReferOpt "reference option" ReorganizePartitionRuleOpt "optional reorganize partition partition list and definitions" - RequireList "require list" - RequireListElement "require list element" + RequireList "require list for tls options" + RequireListElement "require list element for tls option" Rolename "Rolename" RolenameComposed "Rolename that composed with more than 1 symbol" RolenameList "RolenameList" @@ -2584,15 +2593,29 @@ RecoverTableStmt: /******************************************************************* * - * Flush Back Cluster Statement + * FLASHBACK [CLUSTER | DATABASE | TABLE] TO TIMESTAMP * * Example: * *******************************************************************/ -FlashbackClusterStmt: - "FLASHBACK" "CLUSTER" "TO" "TIMESTAMP" stringLit +FlashbackToTimestampStmt: + "FLASHBACK" "CLUSTER" toTimestamp stringLit { - $$ = &ast.FlashBackClusterStmt{ + $$ = &ast.FlashBackToTimestampStmt{ + FlashbackTS: ast.NewValueExpr($4, "", ""), + } + } +| "FLASHBACK" "TABLE" TableNameList toTimestamp stringLit + { + $$ = &ast.FlashBackToTimestampStmt{ + Tables: $3.([]*ast.TableName), + FlashbackTS: ast.NewValueExpr($5, "", ""), + } + } +| "FLASHBACK" DatabaseSym DBName toTimestamp stringLit + { + $$ = &ast.FlashBackToTimestampStmt{ + DBName: model.NewCIStr($3), FlashbackTS: ast.NewValueExpr($5, "", ""), } } @@ -2622,6 +2645,23 @@ FlashbackToNewName: $$ = $2 } +/******************************************************************* + * + * Flush Back Database Statement + * + * Example: + * FLASHBACK DATABASE/SCHEMA DBName TO newDBName + * + *******************************************************************/ +FlashbackDatabaseStmt: + "FLASHBACK" DatabaseSym DBName FlashbackToNewName + { + $$ = &ast.FlashBackDatabaseStmt{ + DBName: model.NewCIStr($3), + NewName: $4, + } + } + /******************************************************************* * * Split index region statement @@ -4739,21 +4779,25 @@ DropRoleStmt: } DropStatsStmt: - "DROP" "STATS" TableName + "DROP" "STATS" TableNameList { - $$ = &ast.DropStatsStmt{Table: $3.(*ast.TableName)} + $$ = &ast.DropStatsStmt{Tables: $3.([]*ast.TableName)} } | "DROP" "STATS" TableName "PARTITION" PartitionNameList { + yylex.AppendError(ErrWarnDeprecatedSyntaxNoReplacement.FastGenByArgs("DROP STATS ... PARTITION ...")) + parser.lastErrorAsWarn() $$ = &ast.DropStatsStmt{ - Table: $3.(*ast.TableName), + Tables: []*ast.TableName{$3.(*ast.TableName)}, PartitionNames: $5.([]model.CIStr), } } | "DROP" "STATS" TableName "GLOBAL" { + yylex.AppendError(ErrWarnDeprecatedSyntax.FastGenByArgs("DROP STATS ... GLOBAL", "DROP STATS ...")) + parser.lastErrorAsWarn() $$ = &ast.DropStatsStmt{ - Table: $3.(*ast.TableName), + Tables: []*ast.TableName{$3.(*ast.TableName)}, IsGlobalStats: true, } } @@ -6009,6 +6053,7 @@ UnReservedKeyword: "ACTION" | "ADVISE" | "ASCII" +| "ATTRIBUTE" | "ATTRIBUTES" | "BINDING_CACHE" | "STATS_OPTIONS" @@ -6345,6 +6390,7 @@ UnReservedKeyword: | "CLUSTERED" | "NONCLUSTERED" | "PRESERVE" +| "TOKEN_ISSUER" TiDBKeyword: "ADMIN" @@ -6375,6 +6421,7 @@ TiDBKeyword: | "STATS_TOPN" | "STATS_BUCKETS" | "STATS_HEALTHY" +| "STATS_LOCKED" | "HISTOGRAMS_IN_FLIGHT" | "TELEMETRY" | "TELEMETRY_ID" @@ -11051,6 +11098,10 @@ ShowTargetFilterable: { $$ = &ast.ShowStmt{Tp: ast.ShowStatsHealthy} } +| "STATS_LOCKED" + { + $$ = &ast.ShowStmt{Tp: ast.ShowStatsLocked, Table: &ast.TableName{Name: model.NewCIStr("STATS_TABLE_LOCKED"), Schema: model.NewCIStr(mysql.SystemDB)}} + } | "HISTOGRAMS_IN_FLIGHT" { $$ = &ast.ShowStmt{Tp: ast.ShowHistogramsInFlight} @@ -11331,8 +11382,9 @@ Statement: | DropStatsStmt | DropBindingStmt | FlushStmt -| FlashbackClusterStmt | FlashbackTableStmt +| FlashbackToTimestampStmt +| FlashbackDatabaseStmt | GrantStmt | GrantProxyStmt | GrantRoleStmt @@ -11342,6 +11394,8 @@ Statement: | KillStmt | LoadDataStmt | LoadStatsStmt +| LockStatsStmt +| UnlockStatsStmt | PlanReplayerStmt | PreparedStmt | PurgeImportStmt @@ -11388,7 +11442,7 @@ Statement: | ShutdownStmt | RestartStmt | HelpStmt -| NonTransactionalDeleteStmt +| NonTransactionalDMLStmt TraceableStmt: DeleteFromStmt @@ -12580,17 +12634,21 @@ CommaOpt: * https://dev.mysql.com/doc/refman/5.7/en/account-management-sql.html ************************************************************************************/ CreateUserStmt: - "CREATE" "USER" IfNotExists UserSpecList RequireClauseOpt ConnectionOptions PasswordOrLockOptions + "CREATE" "USER" IfNotExists UserSpecList RequireClauseOpt ConnectionOptions PasswordOrLockOptions CommentOrAttributeOption { - // See https://dev.mysql.com/doc/refman/5.7/en/create-user.html - $$ = &ast.CreateUserStmt{ + // See https://dev.mysql.com/doc/refman/8.0/en/create-user.html + ret := &ast.CreateUserStmt{ IsCreateRole: false, IfNotExists: $3.(bool), Specs: $4.([]*ast.UserSpec), - TLSOptions: $5.([]*ast.TLSOption), + AuthTokenOrTLSOptions: $5.([]*ast.AuthTokenOrTLSOption), ResourceOptions: $6.([]*ast.ResourceOption), PasswordOrLockOptions: $7.([]*ast.PasswordOrLockOption), } + if $8 != nil { + ret.CommentOrAttributeOption = $8.(*ast.CommentOrAttributeOption) + } + $$ = ret } CreateRoleStmt: @@ -12604,17 +12662,21 @@ CreateRoleStmt: } } -/* See http://dev.mysql.com/doc/refman/5.7/en/alter-user.html */ +/* See http://dev.mysql.com/doc/refman/8.0/en/alter-user.html */ AlterUserStmt: - "ALTER" "USER" IfExists UserSpecList RequireClauseOpt ConnectionOptions PasswordOrLockOptions + "ALTER" "USER" IfExists UserSpecList RequireClauseOpt ConnectionOptions PasswordOrLockOptions CommentOrAttributeOption { - $$ = &ast.AlterUserStmt{ + ret := &ast.AlterUserStmt{ IfExists: $3.(bool), Specs: $4.([]*ast.UserSpec), - TLSOptions: $5.([]*ast.TLSOption), + AuthTokenOrTLSOptions: $5.([]*ast.AuthTokenOrTLSOption), ResourceOptions: $6.([]*ast.ResourceOption), PasswordOrLockOptions: $7.([]*ast.PasswordOrLockOption), } + if $8 != nil { + ret.CommentOrAttributeOption = $8.(*ast.CommentOrAttributeOption) + } + $$ = ret } | "ALTER" "USER" IfExists "USER" '(' ')' "IDENTIFIED" "BY" AuthString { @@ -12728,31 +12790,31 @@ ConnectionOption: RequireClauseOpt: { - $$ = []*ast.TLSOption{} + $$ = []*ast.AuthTokenOrTLSOption{} } | RequireClause RequireClause: "REQUIRE" "NONE" { - t := &ast.TLSOption{ + t := &ast.AuthTokenOrTLSOption{ Type: ast.TlsNone, } - $$ = []*ast.TLSOption{t} + $$ = []*ast.AuthTokenOrTLSOption{t} } | "REQUIRE" "SSL" { - t := &ast.TLSOption{ + t := &ast.AuthTokenOrTLSOption{ Type: ast.Ssl, } - $$ = []*ast.TLSOption{t} + $$ = []*ast.AuthTokenOrTLSOption{t} } | "REQUIRE" "X509" { - t := &ast.TLSOption{ + t := &ast.AuthTokenOrTLSOption{ Type: ast.X509, } - $$ = []*ast.TLSOption{t} + $$ = []*ast.AuthTokenOrTLSOption{t} } | "REQUIRE" RequireList { @@ -12762,50 +12824,70 @@ RequireClause: RequireList: RequireListElement { - $$ = []*ast.TLSOption{$1.(*ast.TLSOption)} + $$ = []*ast.AuthTokenOrTLSOption{$1.(*ast.AuthTokenOrTLSOption)} } | RequireList "AND" RequireListElement { - l := $1.([]*ast.TLSOption) - l = append(l, $3.(*ast.TLSOption)) + l := $1.([]*ast.AuthTokenOrTLSOption) + l = append(l, $3.(*ast.AuthTokenOrTLSOption)) $$ = l } | RequireList RequireListElement { - l := $1.([]*ast.TLSOption) - l = append(l, $2.(*ast.TLSOption)) + l := $1.([]*ast.AuthTokenOrTLSOption) + l = append(l, $2.(*ast.AuthTokenOrTLSOption)) $$ = l } RequireListElement: "ISSUER" stringLit { - $$ = &ast.TLSOption{ + $$ = &ast.AuthTokenOrTLSOption{ Type: ast.Issuer, Value: $2, } } | "SUBJECT" stringLit { - $$ = &ast.TLSOption{ + $$ = &ast.AuthTokenOrTLSOption{ Type: ast.Subject, Value: $2, } } | "CIPHER" stringLit { - $$ = &ast.TLSOption{ + $$ = &ast.AuthTokenOrTLSOption{ Type: ast.Cipher, Value: $2, } } | "SAN" stringLit { - $$ = &ast.TLSOption{ + $$ = &ast.AuthTokenOrTLSOption{ Type: ast.SAN, Value: $2, } } +| "TOKEN_ISSUER" stringLit + { + $$ = &ast.AuthTokenOrTLSOption{ + Type: ast.TokenIssuer, + Value: $2, + } + } + +CommentOrAttributeOption: + { + $$ = nil + } +| "COMMENT" stringLit + { + $$ = &ast.CommentOrAttributeOption{Type: ast.UserCommentType, Value: $2} + } +| "ATTRIBUTE" stringLit + { + $$ = &ast.CommentOrAttributeOption{Type: ast.UserAttributeType, Value: $2} + } PasswordOrLockOptions: { @@ -13098,12 +13180,12 @@ GrantStmt: return 1 } $$ = &ast.GrantStmt{ - Privs: p, - ObjectType: $4.(ast.ObjectTypeType), - Level: $5.(*ast.GrantLevel), - Users: $7.([]*ast.UserSpec), - TLSOptions: $8.([]*ast.TLSOption), - WithGrant: $9.(bool), + Privs: p, + ObjectType: $4.(ast.ObjectTypeType), + Level: $5.(*ast.GrantLevel), + Users: $7.([]*ast.UserSpec), + AuthTokenOrTLSOptions: $8.([]*ast.AuthTokenOrTLSOption), + WithGrant: $9.(bool), } } @@ -13768,17 +13850,22 @@ TableLockList: * Non-transactional Delete Statement * Split a SQL on a column. Used for bulk delete that doesn't need ACID. *******************************************************************/ -NonTransactionalDeleteStmt: - "BATCH" OptionalShardColumn "LIMIT" NUM DryRunOptions DeleteFromStmt +NonTransactionalDMLStmt: + "BATCH" OptionalShardColumn "LIMIT" NUM DryRunOptions ShardableStmt { - $$ = &ast.NonTransactionalDeleteStmt{ + $$ = &ast.NonTransactionalDMLStmt{ DryRun: $5.(int), ShardColumn: $2.(*ast.ColumnName), Limit: getUint64FromNUM($4), - DeleteStmt: $6.(*ast.DeleteStmt), + DMLStmt: $6.(ast.ShardableDMLStmt), } } +ShardableStmt: + DeleteFromStmt +| UpdateStmt +| InsertIntoStmt + DryRunOptions: { $$ = ast.NoDryRun @@ -13828,6 +13915,13 @@ KillStmt: TiDBExtension: $1.(bool), } } +| KillOrKillTiDB BuiltinFunction + { + $$ = &ast.KillStmt{ + TiDBExtension: $1.(bool), + Expr: $2, + } + } KillOrKillTiDB: "KILL" @@ -13849,6 +13943,22 @@ LoadStatsStmt: } } +LockStatsStmt: + "LOCK" "STATS" TableNameList + { + $$ = &ast.LockStatsStmt{ + Tables: $3.([]*ast.TableName), + } + } + +UnlockStatsStmt: + "UNLOCK" "STATS" TableNameList + { + $$ = &ast.UnlockStatsStmt{ + Tables: $3.([]*ast.TableName), + } + } + DropPolicyStmt: "DROP" "PLACEMENT" "POLICY" IfExists PolicyName { diff --git a/parser/parser_test.go b/parser/parser_test.go index 21147a8040c45..971adc6b25f8e 100644 --- a/parser/parser_test.go +++ b/parser/parser_test.go @@ -60,7 +60,7 @@ func TestSimple(t *testing.T) { "delayed", "high_priority", "low_priority", "cumeDist", "denseRank", "firstValue", "lag", "lastValue", "lead", "nthValue", "ntile", "over", "percentRank", "rank", "row", "rows", "rowNumber", "window", "linear", - "match", "until", "placement", "tablesample", "attributes", + "match", "until", "placement", "tablesample", // TODO: support the following keywords // "with", } @@ -98,7 +98,7 @@ func TestSimple(t *testing.T) { "max_connections_per_hour", "max_queries_per_hour", "max_updates_per_hour", "max_user_connections", "event", "reload", "routine", "temporary", "following", "preceding", "unbounded", "respect", "nulls", "current", "last", "against", "expansion", "chain", "error", "general", "nvarchar", "pack_keys", "p", "shard_row_id_bits", "pre_split_regions", - "constraints", "role", "replicas", "policy", "s3", "strict", "running", "stop", "preserve", "placement", + "constraints", "role", "replicas", "policy", "s3", "strict", "running", "stop", "preserve", "placement", "attributes", "attribute", } for _, kw := range unreservedKws { src := fmt.Sprintf("SELECT %s FROM tbl;", kw) @@ -364,10 +364,10 @@ func RunTest(t *testing.T, table []testCase, enableWindowFunc bool) { for _, tbl := range table { _, _, err := p.Parse(tbl.src, "", "") if !tbl.ok { - require.Errorf(t, err, "source %v", tbl.src) + require.Errorf(t, err, "source %v", tbl.src, errors.Trace(err)) continue } - require.NoErrorf(t, err, "source %v", tbl.src) + require.NoErrorf(t, err, "source %v", tbl.src, errors.Trace(err)) // restore correctness test if tbl.ok { RunRestoreTest(t, tbl.src, tbl.restore, enableWindowFunc) @@ -1135,6 +1135,9 @@ func TestDBAStmt(t *testing.T) { // for show stats_meta. {"show stats_meta", true, "SHOW STATS_META"}, {"show stats_meta where table_name = 't'", true, "SHOW STATS_META WHERE `table_name`=_UTF8MB4't'"}, + // for show stats_locked. + {"show stats_locked", true, "SHOW STATS_LOCKED"}, + {"show stats_locked where table_name = 't'", true, "SHOW STATS_LOCKED WHERE `table_name`=_UTF8MB4't'"}, // for show stats_histograms {"show stats_histograms", true, "SHOW STATS_HISTOGRAMS"}, {"show stats_histograms where col_name = 'a'", true, "SHOW STATS_HISTOGRAMS WHERE `col_name`=_UTF8MB4'a'"}, @@ -1174,6 +1177,12 @@ func TestDBAStmt(t *testing.T) { // for load stats {"load stats '/tmp/stats.json'", true, "LOAD STATS '/tmp/stats.json'"}, + // for lock stats + {"lock stats test.t", true, "LOCK STATS `test`.`t`"}, + {"lock stats t, t2", true, "LOCK STATS `t`, `t2`"}, + // for unlock stats + {"unlock stats test.t", true, "UNLOCK STATS `test`.`t`"}, + {"unlock stats t, t2", true, "UNLOCK STATS `t`, `t2`"}, // set // user defined {"SET @ = 1", true, "SET @``=1"}, @@ -2651,9 +2660,10 @@ func TestDDL(t *testing.T) { {"drop view if exists xxx", true, "DROP VIEW IF EXISTS `xxx`"}, {"drop view if exists xxx, yyy", true, "DROP VIEW IF EXISTS `xxx`, `yyy`"}, {"drop stats t", true, "DROP STATS `t`"}, + {"drop stats t1, t2, t3", true, "DROP STATS `t1`, `t2`, `t3`"}, + {"drop stats t global", true, "DROP STATS `t` GLOBAL"}, {"drop stats t partition p0", true, "DROP STATS `t` PARTITION `p0`"}, {"drop stats t partition p0, p1, p2", true, "DROP STATS `t` PARTITION `p0`,`p1`,`p2`"}, - {"drop stats t global", true, "DROP STATS `t` GLOBAL"}, // for issue 974 {`CREATE TABLE address ( id bigint(20) NOT NULL AUTO_INCREMENT, @@ -3246,11 +3256,24 @@ func TestDDL(t *testing.T) { // for flashback table. {"flashback table t", true, "FLASHBACK TABLE `t`"}, {"flashback table t TO t1", true, "FLASHBACK TABLE `t` TO `t1`"}, + {"flashback table t TO timestamp", true, "FLASHBACK TABLE `t` TO `timestamp`"}, + + // for flashback database. + {"flashback database db1", true, "FLASHBACK DATABASE `db1`"}, + {"flashback schema db1", true, "FLASHBACK DATABASE `db1`"}, + {"flashback database db1 to db2", true, "FLASHBACK DATABASE `db1` TO `db2`"}, + {"flashback schema db1 to db2", true, "FLASHBACK DATABASE `db1` TO `db2`"}, - // for flashback cluster + // for flashback to timestamp {"flashback cluster to timestamp '2021-05-26 16:45:26'", true, "FLASHBACK CLUSTER TO TIMESTAMP '2021-05-26 16:45:26'"}, + {"flashback table t to timestamp '2021-05-26 16:45:26'", true, "FLASHBACK TABLE `t` TO TIMESTAMP '2021-05-26 16:45:26'"}, + {"flashback table t,t1 to timestamp '2021-05-26 16:45:26'", true, "FLASHBACK TABLE `t`, `t1` TO TIMESTAMP '2021-05-26 16:45:26'"}, + {"flashback database test to timestamp '2021-05-26 16:45:26'", true, "FLASHBACK DATABASE `test` TO TIMESTAMP '2021-05-26 16:45:26'"}, + {"flashback schema test to timestamp '2021-05-26 16:45:26'", true, "FLASHBACK DATABASE `test` TO TIMESTAMP '2021-05-26 16:45:26'"}, {"flashback cluster to timestamp TIDB_BOUNDED_STALENESS(DATE_SUB(NOW(), INTERVAL 3 SECOND), NOW())", false, ""}, {"flashback cluster to timestamp DATE_SUB(NOW(), INTERVAL 3 SECOND)", false, ""}, + {"flashback table to timestamp '2021-05-26 16:45:26'", false, ""}, + {"flashback database to timestamp '2021-05-26 16:45:26'", false, ""}, // for remove partitioning {"alter table t remove partitioning", true, "ALTER TABLE `t` REMOVE PARTITIONING"}, @@ -4203,6 +4226,35 @@ func TestOptimizerHints(t *testing.T) { require.Equal(t, "hash_agg", hints[0].HintName.L) require.Equal(t, "hash_agg", hints[1].HintName.L) + // Test MPPAgg + stmt, _, err = p.Parse("select /*+ MPP_1PHASE_AGG(), mpp_1phase_agg() */ c1, c2 from t1, t2 where t1.c1 = t2.c1", "", "") + require.NoError(t, err) + selectStmt = stmt[0].(*ast.SelectStmt) + + hints = selectStmt.TableHints + require.Len(t, hints, 2) + require.Equal(t, "mpp_1phase_agg", hints[0].HintName.L) + require.Equal(t, "mpp_1phase_agg", hints[1].HintName.L) + + stmt, _, err = p.Parse("select /*+ MPP_2PHASE_AGG(), mpp_2phase_agg() */ c1, c2 from t1, t2 where t1.c1 = t2.c1", "", "") + require.NoError(t, err) + selectStmt = stmt[0].(*ast.SelectStmt) + + hints = selectStmt.TableHints + require.Len(t, hints, 2) + require.Equal(t, "mpp_2phase_agg", hints[0].HintName.L) + require.Equal(t, "mpp_2phase_agg", hints[1].HintName.L) + + // Test ShuffleJoin + stmt, _, err = p.Parse("select /*+ SHUFFLE_JOIN(t1, t2), shuffle_join(t1, t2) */ * from t1, t2 where t1.c1 = t2.c1", "", "") + require.NoError(t, err) + selectStmt = stmt[0].(*ast.SelectStmt) + + hints = selectStmt.TableHints + require.Len(t, hints, 2) + require.Equal(t, "shuffle_join", hints[0].HintName.L) + require.Equal(t, "shuffle_join", hints[1].HintName.L) + // Test STREAM_AGG stmt, _, err = p.Parse("select /*+ STREAM_AGG(), stream_agg() */ c1, c2 from t1, t2 where t1.c1 = t2.c1", "", "") require.NoError(t, err) @@ -4377,6 +4429,7 @@ func TestPrivilege(t *testing.T) { {"CREATE USER 'sha_test'@'localhost' IDENTIFIED WITH 'caching_sha2_password' BY 'sha_test'", true, "CREATE USER `sha_test`@`localhost` IDENTIFIED WITH 'caching_sha2_password' BY 'sha_test'"}, {"CREATE USER 'sha_test3'@'localhost' IDENTIFIED WITH 'caching_sha2_password' AS 0x24412430303524255B03496C662C1055127B3B654A2F04207D01485276703644704B76303247474564416A516662346C5868646D32764C6B514F43585A473779565947514F34", true, "CREATE USER `sha_test3`@`localhost` IDENTIFIED WITH 'caching_sha2_password' AS '$A$005$%[\x03Ilf,\x10U\x12{;eJ/\x04 }\x01HRvp6DpKv02GGEdAjQfb4lXhdm2vLkQOCXZG7yVYGQO4'"}, {"CREATE USER 'sha_test4'@'localhost' IDENTIFIED WITH 'caching_sha2_password' AS '$A$005$%[\x03Ilf,\x10U\x12{;eJ/\x04 }\x01HRvp6DpKv02GGEdAjQfb4lXhdm2vLkQOCXZG7yVYGQO4'", true, "CREATE USER `sha_test4`@`localhost` IDENTIFIED WITH 'caching_sha2_password' AS '$A$005$%[\x03Ilf,\x10U\x12{;eJ/\x04 }\x01HRvp6DpKv02GGEdAjQfb4lXhdm2vLkQOCXZG7yVYGQO4'"}, + {"CREATE USER `user@pingcap.com`@'localhost' IDENTIFIED WITH 'tidb_auth_token' REQUIRE token_issuer 'issuer-abc' ATTRIBUTE '{\"email\": \"user@pingcap.com\"}'", true, "CREATE USER `user@pingcap.com`@`localhost` IDENTIFIED WITH 'tidb_auth_token' REQUIRE TOKEN_ISSUER 'issuer-abc' ATTRIBUTE '{\"email\": \"user@pingcap.com\"}'"}, {"CREATE USER 'nopwd_native'@'localhost' IDENTIFIED WITH 'mysql_native_password'", true, "CREATE USER `nopwd_native`@`localhost` IDENTIFIED WITH 'mysql_native_password'"}, {"CREATE USER 'nopwd_sha'@'localhost' IDENTIFIED WITH 'caching_sha2_password'", true, "CREATE USER `nopwd_sha`@`localhost` IDENTIFIED WITH 'caching_sha2_password'"}, {"CREATE ROLE `test-role`, `role1`@'localhost'", true, "CREATE ROLE `test-role`@`%`, `role1`@`localhost`"}, @@ -4501,6 +4554,14 @@ func TestComment(t *testing.T) { {"create table t (never int)", true, "CREATE TABLE `t` (`never` INT)"}, {"create table t (subject int)", true, "CREATE TABLE `t` (`subject` INT)"}, {"create table t (x509 int)", true, "CREATE TABLE `t` (`x509` INT)"}, + + // COMMENT/ATTRIBUTE in CREATE/ALTER USER + {"create user commentUser COMMENT '123456' '{\"name\": \"Tom\", \"age\", 19}", false, ""}, + {"alter user commentUser COMMENT '123456' '{\"name\": \"Tom\", \"age\", 19}", false, ""}, + {"create user commentUser COMMENT '123456'", true, "CREATE USER `commentUser`@`%` COMMENT '123456'"}, + {"alter user commentUser COMMENT '123456'", true, "ALTER USER `commentUser`@`%` COMMENT '123456'"}, + {"create user commentUser ATTRIBUTE '{\"name\": \"Tom\", \"age\", 19}'", true, "CREATE USER `commentUser`@`%` ATTRIBUTE '{\"name\": \"Tom\", \"age\", 19}'"}, + {"alter user commentUser ATTRIBUTE '{\"name\": \"Tom\", \"age\", 19}'", true, "ALTER USER `commentUser`@`%` ATTRIBUTE '{\"name\": \"Tom\", \"age\", 19}'"}, } RunTest(t, table, false) } @@ -5231,6 +5292,7 @@ func TestSessionManage(t *testing.T) { // Kill statement. // See https://dev.mysql.com/doc/refman/5.7/en/kill.html {"kill 23123", true, "KILL 23123"}, + {"kill CONNECTION_ID()", true, "KILL CONNECTION_ID()"}, {"kill connection 23123", true, "KILL 23123"}, {"kill query 23123", true, "KILL QUERY 23123"}, {"kill tidb 23123", true, "KILL TIDB 23123"}, @@ -6866,8 +6928,9 @@ func TestCharsetIntroducer(t *testing.T) { require.EqualError(t, err, "[ddl:1115]Unsupported character introducer: 'gbk'") } -func TestNonTransactionalDelete(t *testing.T) { +func TestNonTransactionalDML(t *testing.T) { cases := []testCase{ + // deletes {"batch on c limit 10 delete from t where c = 10", true, "BATCH ON `c` LIMIT 10 DELETE FROM `t` WHERE `c`=10"}, {"batch on c limit 10 dry run delete from t where c = 10", true, @@ -6880,6 +6943,45 @@ func TestNonTransactionalDelete(t *testing.T) { "BATCH LIMIT 10 DRY RUN DELETE FROM `t` WHERE `c`=10"}, {"batch limit 10 dry run query delete from t where c = 10", true, "BATCH LIMIT 10 DRY RUN QUERY DELETE FROM `t` WHERE `c`=10"}, + // updates + {"batch on c limit 10 update t set c = 10", true, + "BATCH ON `c` LIMIT 10 UPDATE `t` SET `c`=10"}, + {"batch on c limit 10 dry run update t set c = 10", true, + "BATCH ON `c` LIMIT 10 DRY RUN UPDATE `t` SET `c`=10"}, + {"batch on c limit 10 dry run query update t set c = 10", true, + "BATCH ON `c` LIMIT 10 DRY RUN QUERY UPDATE `t` SET `c`=10"}, + {"batch limit 10 update t set c = 10", true, + "BATCH LIMIT 10 UPDATE `t` SET `c`=10"}, + {"batch limit 10 dry run update t set c = 10", true, + "BATCH LIMIT 10 DRY RUN UPDATE `t` SET `c`=10"}, + {"batch limit 10 dry run query update t set c = 10", true, + "BATCH LIMIT 10 DRY RUN QUERY UPDATE `t` SET `c`=10"}, + // inserts + {"batch on c limit 10 insert into t1 select * from t2 where c = 10", true, + "BATCH ON `c` LIMIT 10 INSERT INTO `t1` SELECT * FROM `t2` WHERE `c`=10"}, + {"batch on c limit 10 dry run insert into t1 select * from t2 where c = 10", true, + "BATCH ON `c` LIMIT 10 DRY RUN INSERT INTO `t1` SELECT * FROM `t2` WHERE `c`=10"}, + {"batch on c limit 10 dry run query insert into t1 select * from t2 where c = 10", true, + "BATCH ON `c` LIMIT 10 DRY RUN QUERY INSERT INTO `t1` SELECT * FROM `t2` WHERE `c`=10"}, + {"batch limit 10 insert into t1 select * from t2 where c = 10", true, + "BATCH LIMIT 10 INSERT INTO `t1` SELECT * FROM `t2` WHERE `c`=10"}, + {"batch limit 10 dry run insert into t1 select * from t2 where c = 10", true, + "BATCH LIMIT 10 DRY RUN INSERT INTO `t1` SELECT * FROM `t2` WHERE `c`=10"}, + {"batch limit 10 dry run query insert into t1 select * from t2 where c = 10", true, + "BATCH LIMIT 10 DRY RUN QUERY INSERT INTO `t1` SELECT * FROM `t2` WHERE `c`=10"}, + // inserts on duplicate key update + {"batch on c limit 10 insert into t1 select * from t2 where c = 10 on duplicate key update t1.val = t2.val", true, + "BATCH ON `c` LIMIT 10 INSERT INTO `t1` SELECT * FROM `t2` WHERE `c`=10 ON DUPLICATE KEY UPDATE `t1`.`val`=`t2`.`val`"}, + {"batch on c limit 10 dry run insert into t1 select * from t2 where c = 10 on duplicate key update t1.val = t2.val", true, + "BATCH ON `c` LIMIT 10 DRY RUN INSERT INTO `t1` SELECT * FROM `t2` WHERE `c`=10 ON DUPLICATE KEY UPDATE `t1`.`val`=`t2`.`val`"}, + {"batch on c limit 10 dry run query insert into t1 select * from t2 where c = 10 on duplicate key update t1.val = t2.val", true, + "BATCH ON `c` LIMIT 10 DRY RUN QUERY INSERT INTO `t1` SELECT * FROM `t2` WHERE `c`=10 ON DUPLICATE KEY UPDATE `t1`.`val`=`t2`.`val`"}, + {"batch limit 10 insert into t1 select * from t2 where c = 10 on duplicate key update t1.val = t2.val", true, + "BATCH LIMIT 10 INSERT INTO `t1` SELECT * FROM `t2` WHERE `c`=10 ON DUPLICATE KEY UPDATE `t1`.`val`=`t2`.`val`"}, + {"batch limit 10 dry run insert into t1 select * from t2 where c = 10 on duplicate key update t1.val = t2.val", true, + "BATCH LIMIT 10 DRY RUN INSERT INTO `t1` SELECT * FROM `t2` WHERE `c`=10 ON DUPLICATE KEY UPDATE `t1`.`val`=`t2`.`val`"}, + {"batch limit 10 dry run query insert into t1 select * from t2 where c = 10 on duplicate key update t1.val = t2.val", true, + "BATCH LIMIT 10 DRY RUN QUERY INSERT INTO `t1` SELECT * FROM `t2` WHERE `c`=10 ON DUPLICATE KEY UPDATE `t1`.`val`=`t2`.`val`"}, } RunTest(t, cases, false) diff --git a/parser/types/field_type.go b/parser/types/field_type.go index 0436d088dd121..6afc445b30c6e 100644 --- a/parser/types/field_type.go +++ b/parser/types/field_type.go @@ -632,12 +632,11 @@ func (ft *FieldType) MemoryUsage() (sum int64) { if ft == nil { return } - sum = emptyFieldTypeSize + int64(len(ft.charset)+len(ft.collate)) + sum = emptyFieldTypeSize + int64(len(ft.charset)+len(ft.collate)) + int64(cap(ft.elems))*int64(unsafe.Sizeof(*new(string))) + + int64(cap(ft.elemsIsBinaryLit))*int64(unsafe.Sizeof(*new(bool))) for _, s := range ft.elems { sum += int64(len(s)) } - sum += int64(cap(ft.elems)) * int64(unsafe.Sizeof(*new(string))) - sum += int64(cap(ft.elemsIsBinaryLit)) * int64(unsafe.Sizeof(*new(bool))) return } diff --git a/parser/yy_parser.go b/parser/yy_parser.go index 7ab66a19937d1..48409d81085a7 100644 --- a/parser/yy_parser.go +++ b/parser/yy_parser.go @@ -52,6 +52,8 @@ var ( ErrUnknownAlterAlgorithm = terror.ClassParser.NewStd(mysql.ErrUnknownAlterAlgorithm) // ErrWrongValue returns for wrong value ErrWrongValue = terror.ClassParser.NewStd(mysql.ErrWrongValue) + // ErrWarnDeprecatedSyntax return when the syntax was deprecated + ErrWarnDeprecatedSyntax = terror.ClassParser.NewStd(mysql.ErrWarnDeprecatedSyntax) // ErrWarnDeprecatedSyntaxNoReplacement return when the syntax was deprecated and there is no replacement. ErrWarnDeprecatedSyntaxNoReplacement = terror.ClassParser.NewStd(mysql.ErrWarnDeprecatedSyntaxNoReplacement) // ErrWarnDeprecatedIntegerDisplayWidth share the same code 1681, and it will be returned when length is specified in integer. diff --git a/planner/cascades/main_test.go b/planner/cascades/main_test.go index 5ebbbc50eebfb..8e3fb1f656b17 100644 --- a/planner/cascades/main_test.go +++ b/planner/cascades/main_test.go @@ -48,7 +48,9 @@ func TestMain(m *testing.M) { opts := []goleak.Option{ goleak.IgnoreTopFunction("github.com/golang/glog.(*loggingT).flushDaemon"), + goleak.IgnoreTopFunction("github.com/lestrrat-go/httprc.runFetchWorker"), goleak.IgnoreTopFunction("go.etcd.io/etcd/client/pkg/v3/logutil.(*MergeLogger).outputLoop"), + goleak.IgnoreTopFunction("go.opencensus.io/stats/view.(*worker).start"), } if err := goleak.Find(opts...); err != nil { diff --git a/planner/cascades/transformation_rules.go b/planner/cascades/transformation_rules.go index 0991379df468b..3dd85fbaa5120 100644 --- a/planner/cascades/transformation_rules.go +++ b/planner/cascades/transformation_rules.go @@ -550,8 +550,8 @@ func (*PushSelDownProjection) OnTransform(old *memo.ExprIter) (newExprs []*memo. canBePushed := make([]expression.Expression, 0, len(sel.Conditions)) canNotBePushed := make([]expression.Expression, 0, len(sel.Conditions)) for _, cond := range sel.Conditions { - substituted, newFilter := expression.ColumnSubstitute4PPD(cond, projSchema, proj.Exprs) - if substituted && !expression.HasGetSetVarFunc(newFilter) { + substituted, hasFailed, newFilter := expression.ColumnSubstituteImpl(cond, projSchema, proj.Exprs, true) + if substituted && !hasFailed && !expression.HasGetSetVarFunc(newFilter) { canBePushed = append(canBePushed, newFilter) } else { canNotBePushed = append(canNotBePushed, cond) diff --git a/planner/core/BUILD.bazel b/planner/core/BUILD.bazel index 21996f693918e..9db73e6d5fcb8 100644 --- a/planner/core/BUILD.bazel +++ b/planner/core/BUILD.bazel @@ -188,6 +188,7 @@ go_test( "plan_cost_detail_test.go", "plan_cost_ver1_test.go", "plan_cost_ver2_test.go", + "plan_replayer_capture_test.go", "plan_stats_test.go", "plan_test.go", "plan_to_pb_test.go", @@ -236,9 +237,12 @@ go_test( "//sessiontxn", "//statistics", "//statistics/handle", + "//store/mockstore", + "//store/mockstore/unistore", "//table", "//testkit", "//testkit/ddlhelper", + "//testkit/external", "//testkit/testdata", "//testkit/testmain", "//testkit/testsetup", @@ -263,10 +267,12 @@ go_test( "@com_github_golang_snappy//:snappy", "@com_github_pingcap_errors//:errors", "@com_github_pingcap_failpoint//:failpoint", + "@com_github_pingcap_kvproto//pkg/metapb", "@com_github_pingcap_tipb//go-tipb", "@com_github_prometheus_client_golang//prometheus", "@com_github_prometheus_client_model//go", "@com_github_stretchr_testify//require", + "@com_github_tikv_client_go_v2//testutils", "@org_golang_x_exp//slices", "@org_uber_go_goleak//:goleak", ], diff --git a/planner/core/binary_plan_test.go b/planner/core/binary_plan_test.go index b7c047253c6db..78022acb63166 100644 --- a/planner/core/binary_plan_test.go +++ b/planner/core/binary_plan_test.go @@ -80,6 +80,7 @@ func TestBinaryPlanInExplainAndSlowLog(t *testing.T) { store := testkit.CreateMockStore(t) tk := testkit.NewTestKit(t, store) tk.MustExec("use test") + tk.MustExec("set tidb_cost_model_version=2") // If we don't set this, it will be false sometimes and the cost in the result will be different. tk.MustExec("set @@tidb_enable_chunk_rpc=true") diff --git a/planner/core/cbo_test.go b/planner/core/cbo_test.go index 31ba6bfeb3e07..af4aa836d335a 100644 --- a/planner/core/cbo_test.go +++ b/planner/core/cbo_test.go @@ -167,6 +167,7 @@ func TestEstimation(t *testing.T) { statistics.RatioOfPseudoEstimate.Store(10.0) defer statistics.RatioOfPseudoEstimate.Store(0.7) testKit.MustExec("use test") + testKit.MustExec("set tidb_cost_model_version=2") testKit.MustExec("create table t (a int)") testKit.MustExec("insert into t values (1), (2), (3), (4), (5), (6), (7), (8), (9), (10)") testKit.MustExec("insert into t select * from t") @@ -211,6 +212,7 @@ func constructInsertSQL(i, n int) string { func TestIndexRead(t *testing.T) { store, dom := testkit.CreateMockStoreAndDomain(t) testKit := testkit.NewTestKit(t, store) + testKit.MustExec("set tidb_cost_model_version=2") testKit.MustExec("set @@session.tidb_executor_concurrency = 4;") testKit.MustExec("set @@session.tidb_hash_join_concurrency = 5;") testKit.MustExec("set @@session.tidb_distsql_scan_concurrency = 15;") @@ -246,7 +248,7 @@ func TestIndexRead(t *testing.T) { require.Len(t, stmts, 1) stmt := stmts[0] ret := &core.PreprocessorReturn{} - err = core.Preprocess(ctx, stmt, core.WithPreprocessorReturn(ret)) + err = core.Preprocess(context.Background(), ctx, stmt, core.WithPreprocessorReturn(ret)) require.NoError(t, err) p, _, err := planner.Optimize(context.TODO(), ctx, stmt, ret.InfoSchema) require.NoError(t, err) @@ -262,6 +264,7 @@ func TestEmptyTable(t *testing.T) { store := testkit.CreateMockStore(t) testKit := testkit.NewTestKit(t, store) testKit.MustExec("use test") + testKit.MustExec("set tidb_cost_model_version=2") testKit.MustExec("drop table if exists t, t1") testKit.MustExec("create table t (c1 int)") testKit.MustExec("create table t1 (c1 int)") @@ -276,7 +279,7 @@ func TestEmptyTable(t *testing.T) { require.Len(t, stmts, 1) stmt := stmts[0] ret := &core.PreprocessorReturn{} - err = core.Preprocess(ctx, stmt, core.WithPreprocessorReturn(ret)) + err = core.Preprocess(context.Background(), ctx, stmt, core.WithPreprocessorReturn(ret)) require.NoError(t, err) p, _, err := planner.Optimize(context.TODO(), ctx, stmt, ret.InfoSchema) require.NoError(t, err) @@ -343,7 +346,7 @@ func TestAnalyze(t *testing.T) { err = executor.ResetContextOfStmt(ctx, stmt) require.NoError(t, err) ret := &core.PreprocessorReturn{} - err = core.Preprocess(ctx, stmt, core.WithPreprocessorReturn(ret)) + err = core.Preprocess(context.Background(), ctx, stmt, core.WithPreprocessorReturn(ret)) require.NoError(t, err) p, _, err := planner.Optimize(context.TODO(), ctx, stmt, ret.InfoSchema) require.NoError(t, err) @@ -432,6 +435,7 @@ func TestCorrelatedEstimation(t *testing.T) { store := testkit.CreateMockStore(t) tk := testkit.NewTestKit(t, store) tk.MustExec("use test") + tk.MustExec("set tidb_cost_model_version=2") tk.MustExec("set sql_mode='STRICT_TRANS_TABLES'") // disable only full group by tk.MustExec("create table t(a int, b int, c int, index idx(c,b,a))") tk.MustExec("insert into t values(1,1,1), (2,2,2), (3,3,3), (4,4,4), (5,5,5), (6,6,6), (7,7,7), (8,8,8), (9,9,9),(10,10,10)") @@ -586,7 +590,7 @@ func BenchmarkOptimize(b *testing.B) { require.Len(b, stmts, 1) stmt := stmts[0] ret := &core.PreprocessorReturn{} - err = core.Preprocess(ctx, stmt, core.WithPreprocessorReturn(ret)) + err = core.Preprocess(context.Background(), ctx, stmt, core.WithPreprocessorReturn(ret)) require.NoError(b, err) b.Run(tt.sql, func(b *testing.B) { @@ -605,6 +609,7 @@ func TestIssue9562(t *testing.T) { tk := testkit.NewTestKit(t, store) tk.MustExec("use test") + tk.MustExec("set tidb_cost_model_version=2") var input [][]string var output []struct { SQL []string @@ -662,6 +667,7 @@ func TestLimitCrossEstimation(t *testing.T) { store := testkit.CreateMockStore(t) tk := testkit.NewTestKit(t, store) + tk.MustExec("set tidb_cost_model_version=2") tk.MustExec("set @@session.tidb_executor_concurrency = 4;") tk.MustExec("set @@session.tidb_hash_join_concurrency = 5;") tk.MustExec("set @@session.tidb_distsql_scan_concurrency = 15;") @@ -697,6 +703,7 @@ func TestLowSelIndexGreedySearch(t *testing.T) { store, dom := testkit.CreateMockStoreAndDomain(t) testKit := testkit.NewTestKit(t, store) testKit.MustExec("use test") + testKit.MustExec("set tidb_cost_model_version=2") testKit.MustExec(`set tidb_opt_limit_push_down_threshold=0`) testKit.MustExec("drop table if exists t") testKit.MustExec("create table t (a varchar(32) default null, b varchar(10) default null, c varchar(12) default null, d varchar(32) default null, e bigint(10) default null, key idx1 (d,a), key idx2 (a,c), key idx3 (c,b), key idx4 (e))") @@ -796,6 +803,7 @@ func TestLimitIndexEstimation(t *testing.T) { tk := testkit.NewTestKit(t, store) tk.MustExec("use test") + tk.MustExec("set tidb_cost_model_version=2") tk.MustExec("drop table if exists t") tk.MustExec("create table t(a int, b int, key idx_a(a), key idx_b(b))") tk.MustExec("set session tidb_enable_extended_stats = on") @@ -827,7 +835,7 @@ func TestBatchPointGetTablePartition(t *testing.T) { testKit.MustExec("use test") testKit.MustExec("drop table if exists t1,t2,t3,t4,t5,t6") - testKit.MustExec("create table t1(a int, b int, primary key(a,b)) partition by hash(b) partitions 2") + testKit.MustExec("create table t1(a int, b int, primary key(a,b) nonclustered) partition by hash(b) partitions 2") testKit.MustExec("insert into t1 values(1,1),(1,2),(2,1),(2,2)") testKit.MustExec("set @@tidb_partition_prune_mode = 'static'") testKit.MustQuery("explain format = 'brief' select * from t1 where a in (1,2) and b = 1").Check(testkit.Rows( @@ -864,7 +872,7 @@ func TestBatchPointGetTablePartition(t *testing.T) { "1 2", )) - testKit.MustExec("create table t2(a int, b int, primary key(a,b)) partition by range(b) (partition p0 values less than (2), partition p1 values less than maxvalue)") + testKit.MustExec("create table t2(a int, b int, primary key(a,b) nonclustered) partition by range(b) (partition p0 values less than (2), partition p1 values less than maxvalue)") testKit.MustExec("insert into t2 values(1,1),(1,2),(2,1),(2,2)") testKit.MustExec("set @@tidb_partition_prune_mode = 'static'") testKit.MustQuery("explain format = 'brief' select * from t2 where a in (1,2) and b = 1").Check(testkit.Rows( diff --git a/planner/core/collect_column_stats_usage.go b/planner/core/collect_column_stats_usage.go index 49f5cfdfd7011..49fffb149b85d 100644 --- a/planner/core/collect_column_stats_usage.go +++ b/planner/core/collect_column_stats_usage.go @@ -17,6 +17,7 @@ package core import ( "github.com/pingcap/tidb/expression" "github.com/pingcap/tidb/parser/model" + "github.com/pingcap/tidb/sessionctx/variable" ) const ( @@ -43,6 +44,11 @@ type columnStatsUsageCollector struct { histNeededCols map[model.TableItemID]struct{} // cols is used to store columns collected from expressions and saves some allocation. cols []*expression.Column + + // collectVisitedTable indicates whether to collect visited table + collectVisitedTable bool + // visitedtbls indicates the visited table + visitedtbls map[int64]struct{} } func newColumnStatsUsageCollector(collectMode uint64) *columnStatsUsageCollector { @@ -58,6 +64,10 @@ func newColumnStatsUsageCollector(collectMode uint64) *columnStatsUsageCollector if collectMode&collectHistNeededColumns != 0 { collector.histNeededCols = make(map[model.TableItemID]struct{}) } + if variable.EnablePlanReplayerCapture.Load() { + collector.collectVisitedTable = true + collector.visitedtbls = map[int64]struct{}{} + } return collector } @@ -103,6 +113,9 @@ func (c *columnStatsUsageCollector) collectPredicateColumnsForDataSource(ds *Dat // For partition tables, no matter whether it is static or dynamic pruning mode, we use table ID rather than partition ID to // set TableColumnID.TableID. In this way, we keep the set of predicate columns consistent between different partitions and global table. tblID := ds.TableInfo().ID + if c.collectVisitedTable { + c.visitedtbls[tblID] = struct{}{} + } for _, col := range ds.Schema().Columns { tblColID := model.TableItemID{TableID: tblID, ID: col.ID, IsIndex: false} c.colMap[col.UniqueID] = map[model.TableItemID]struct{}{tblColID: {}} @@ -147,6 +160,10 @@ func (c *columnStatsUsageCollector) collectPredicateColumnsForUnionAll(p *Logica } func (c *columnStatsUsageCollector) addHistNeededColumns(ds *DataSource) { + if c.collectVisitedTable { + tblID := ds.TableInfo().ID + c.visitedtbls[tblID] = struct{}{} + } columns := expression.ExtractColumnsFromExpressions(c.cols[:0], ds.pushedDownConds, nil) for _, col := range columns { tblColID := model.TableItemID{TableID: ds.physicalTableID, ID: col.ID, IsIndex: false} @@ -285,6 +302,9 @@ func CollectColumnStatsUsage(lp LogicalPlan, predicate, histNeeded bool) ([]mode } collector := newColumnStatsUsageCollector(mode) collector.collectFromPlan(lp) + if collector.collectVisitedTable { + recordTableRuntimeStats(lp.SCtx(), collector.visitedtbls) + } set2slice := func(set map[model.TableItemID]struct{}) []model.TableItemID { ret := make([]model.TableItemID, 0, len(set)) for tblColID := range set { diff --git a/planner/core/collect_column_stats_usage_test.go b/planner/core/collect_column_stats_usage_test.go index 38d246ff8bfd7..c6f8cd6933f59 100644 --- a/planner/core/collect_column_stats_usage_test.go +++ b/planner/core/collect_column_stats_usage_test.go @@ -256,7 +256,7 @@ func TestCollectPredicateColumns(t *testing.T) { } stmt, err := s.p.ParseOneStmt(tt.sql, "", "") require.NoError(t, err, comment) - err = Preprocess(s.ctx, stmt, WithPreprocessorReturn(&PreprocessorReturn{InfoSchema: s.is})) + err = Preprocess(context.Background(), s.ctx, stmt, WithPreprocessorReturn(&PreprocessorReturn{InfoSchema: s.is})) require.NoError(t, err, comment) builder, _ := NewPlanBuilder().Init(s.ctx, s.is, &hint.BlockHintProcessor{}) p, err := builder.Build(ctx, stmt) @@ -333,7 +333,7 @@ func TestCollectHistNeededColumns(t *testing.T) { } stmt, err := s.p.ParseOneStmt(tt.sql, "", "") require.NoError(t, err, comment) - err = Preprocess(s.ctx, stmt, WithPreprocessorReturn(&PreprocessorReturn{InfoSchema: s.is})) + err = Preprocess(context.Background(), s.ctx, stmt, WithPreprocessorReturn(&PreprocessorReturn{InfoSchema: s.is})) require.NoError(t, err, comment) builder, _ := NewPlanBuilder().Init(s.ctx, s.is, &hint.BlockHintProcessor{}) p, err := builder.Build(ctx, stmt) diff --git a/planner/core/common_plans.go b/planner/core/common_plans.go index 7816b9deaec02..688e9e6531e18 100644 --- a/planner/core/common_plans.go +++ b/planner/core/common_plans.go @@ -362,7 +362,8 @@ type Insert struct { RowLen int - FKChecks []*FKCheck + FKChecks []*FKCheck + FKCascades []*FKCascade } // MemoryUsage return the memory usage of Insert @@ -429,7 +430,8 @@ type Update struct { tblID2Table map[int64]table.Table - FKChecks map[int64][]*FKCheck + FKChecks map[int64][]*FKCheck + FKCascades map[int64][]*FKCascade } // MemoryUsage return the memory usage of Update @@ -470,7 +472,8 @@ type Delete struct { TblColPosInfos TblColPosInfoSlice - FKChecks map[int64][]*FKCheck + FKChecks map[int64][]*FKCheck + FKCascades map[int64][]*FKCascade } // MemoryUsage return the memory usage of Delete @@ -563,6 +566,20 @@ type LoadStats struct { Path string } +// LockStats represents a lock stats for table +type LockStats struct { + baseSchemaProducer + + Tables []*ast.TableName +} + +// UnlockStats represents a unlock stats for table +type UnlockStats struct { + baseSchemaProducer + + Tables []*ast.TableName +} + // PlanReplayer represents a plan replayer plan. type PlanReplayer struct { baseSchemaProducer @@ -717,6 +734,7 @@ func (e *Explain) RenderResult() error { } if e.Analyze && strings.ToLower(e.Format) == types.ExplainFormatTrueCardCost { + // true_card_cost mode is used to calibrate the cost model. pp, ok := e.TargetPlan.(PhysicalPlan) if ok { if _, err := getPlanCost(pp, property.RootTaskType, @@ -732,6 +750,20 @@ func (e *Explain) RenderResult() error { pp.SCtx().GetSessionVars().StmtCtx.AppendWarning(errors.Errorf("marshal factor costs error %v", err)) } pp.SCtx().GetSessionVars().StmtCtx.AppendWarning(errors.Errorf("factor costs: %v", string(data))) + + // output cost factor weights for cost calibration + factors := defaultVer2Factors.tolist() + weights := make(map[string]float64) + for _, factor := range factors { + if factorCost, ok := trace.factorCosts[factor.Name]; ok && factor.Value > 0 { + weights[factor.Name] = factorCost / factor.Value // cost = [factors] * [weights] + } + } + if wstr, err := json.Marshal(weights); err != nil { + pp.SCtx().GetSessionVars().StmtCtx.AppendWarning(errors.Errorf("marshal weights error %v", err)) + } else { + pp.SCtx().GetSessionVars().StmtCtx.AppendWarning(errors.Errorf("factor weights: %v", string(wstr))) + } } } else { e.SCtx().GetSessionVars().StmtCtx.AppendWarning(errors.Errorf("'explain format=true_card_cost' cannot support this plan")) @@ -747,7 +779,7 @@ func (e *Explain) RenderResult() error { e.SCtx().GetSessionVars().MemoryDebugModeMinHeapInUse != 0 && e.SCtx().GetSessionVars().MemoryDebugModeAlarmRatio > 0 { row := e.Rows[0] - tracker := e.SCtx().GetSessionVars().StmtCtx.MemTracker + tracker := e.SCtx().GetSessionVars().MemTracker row[7] = row[7] + "(Total: " + tracker.FormatBytes(tracker.MaxConsumed()) + ")" } } @@ -896,13 +928,13 @@ func (e *Explain) getOperatorInfo(p Plan, id string) (string, string, string, st return row[1], "N/A", "N/A", row[3], row[4] } } + + pp, isPhysicalPlan := p.(PhysicalPlan) estRows := "N/A" - if si := p.statsInfo(); si != nil { - estRows = strconv.FormatFloat(si.RowCount, 'f', 2, 64) - } estCost := "N/A" costFormula := "N/A" - if pp, ok := p.(PhysicalPlan); ok { + if isPhysicalPlan { + estRows = strconv.FormatFloat(pp.getEstRowCountForDisplay(), 'f', 2, 64) if e.ctx != nil && e.ctx.GetSessionVars().CostModelVersion == modelVer2 { costVer2, _ := pp.getPlanCostVer2(property.RootTaskType, NewDefaultPlanCostOption()) estCost = strconv.FormatFloat(costVer2.cost, 'f', 2, 64) @@ -911,7 +943,10 @@ func (e *Explain) getOperatorInfo(p Plan, id string) (string, string, string, st planCost, _ := getPlanCost(pp, property.RootTaskType, NewDefaultPlanCostOption()) estCost = strconv.FormatFloat(planCost, 'f', 2, 64) } + } else if si := p.statsInfo(); si != nil { + estRows = strconv.FormatFloat(si.RowCount, 'f', 2, 64) } + var accessObject, operatorInfo string if plan, ok := p.(dataAccesser); ok { accessObject = plan.AccessObject().String() @@ -1008,15 +1043,16 @@ func binaryOpFromFlatOp(explainCtx sessionctx.Context, op *FlatOperator, out *ti } } - // Runtime info - rootStats, copStats, memTracker, diskTracker := getRuntimeInfo(explainCtx, op.Origin, nil) - if statsInfo := op.Origin.statsInfo(); statsInfo != nil { - out.EstRows = statsInfo.RowCount - } if op.IsPhysicalPlan { p := op.Origin.(PhysicalPlan) out.Cost, _ = getPlanCost(p, property.RootTaskType, NewDefaultPlanCostOption()) + out.EstRows = p.getEstRowCountForDisplay() + } else if statsInfo := op.Origin.statsInfo(); statsInfo != nil { + out.EstRows = statsInfo.RowCount } + + // Runtime info + rootStats, copStats, memTracker, diskTracker := getRuntimeInfo(explainCtx, op.Origin, nil) if rootStats != nil { basic, groups := rootStats.MergeStats() out.RootBasicExecInfo = basic.String() diff --git a/planner/core/encode.go b/planner/core/encode.go index 686e6ef965475..4345c80c39fc1 100644 --- a/planner/core/encode.go +++ b/planner/core/encode.go @@ -69,7 +69,9 @@ func EncodeFlatPlan(flat *FlatPhysicalPlan) string { p := op.Origin actRows, analyzeInfo, memoryInfo, diskInfo := getRuntimeInfoStr(p.SCtx(), p, nil) var estRows float64 - if statsInfo := p.statsInfo(); statsInfo != nil { + if op.IsPhysicalPlan { + estRows = op.Origin.(PhysicalPlan).getEstRowCountForDisplay() + } else if statsInfo := p.statsInfo(); statsInfo != nil { estRows = statsInfo.RowCount } plancodec.EncodePlanNode( @@ -98,7 +100,9 @@ func encodeFlatPlanTree(flatTree FlatPlanTree, offset int, buf *bytes.Buffer) { p := op.Origin actRows, analyzeInfo, memoryInfo, diskInfo := getRuntimeInfoStr(p.SCtx(), p, nil) var estRows float64 - if statsInfo := p.statsInfo(); statsInfo != nil { + if op.IsPhysicalPlan { + estRows = op.Origin.(PhysicalPlan).getEstRowCountForDisplay() + } else if statsInfo := p.statsInfo(); statsInfo != nil { estRows = statsInfo.RowCount } plancodec.EncodePlanNode( @@ -199,8 +203,10 @@ func (pn *planEncoder) encodePlan(p Plan, isRoot bool, store kv.StoreType, depth taskTypeInfo := plancodec.EncodeTaskType(isRoot, store) actRows, analyzeInfo, memoryInfo, diskInfo := getRuntimeInfoStr(p.SCtx(), p, nil) rowCount := 0.0 - if statsInfo := p.statsInfo(); statsInfo != nil { - rowCount = p.statsInfo().RowCount + if pp, ok := p.(PhysicalPlan); ok { + rowCount = pp.getEstRowCountForDisplay() + } else if statsInfo := p.statsInfo(); statsInfo != nil { + rowCount = statsInfo.RowCount } plancodec.EncodePlanNode(depth, strconv.Itoa(p.ID()), p.TP(), rowCount, taskTypeInfo, p.ExplainInfo(), actRows, analyzeInfo, memoryInfo, diskInfo, &pn.buf) pn.encodedPlans[p.ID()] = true diff --git a/planner/core/enforce_mpp_test.go b/planner/core/enforce_mpp_test.go index 8b0582ee54492..dfd0a4fadbe3a 100644 --- a/planner/core/enforce_mpp_test.go +++ b/planner/core/enforce_mpp_test.go @@ -35,6 +35,7 @@ func TestSetVariables(t *testing.T) { tk := testkit.NewTestKit(t, store) // test value limit of tidb_opt_tiflash_concurrency_factor + tk.MustExec("set tidb_cost_model_version=2") tk.MustExec("set @@tidb_opt_tiflash_concurrency_factor = 0") tk.MustQuery("SHOW WARNINGS").Check(testkit.Rows("Warning 1292 Truncated incorrect tidb_opt_tiflash_concurrency_factor value: '0'")) tk.MustQuery(`select @@tidb_opt_tiflash_concurrency_factor`).Check(testkit.Rows("1")) @@ -52,6 +53,7 @@ func TestRowSizeInMPP(t *testing.T) { store := testkit.CreateMockStore(t) tk := testkit.NewTestKit(t, store) tk.MustExec("use test") + tk.MustExec("set tidb_cost_model_version=2") tk.MustExec("drop table if exists t") tk.MustExec("create table t(a varchar(10), b varchar(20), c varchar(256))") tk.MustExec("insert into t values (space(10), space(20), space(256))") @@ -89,6 +91,7 @@ func TestEnforceMPP(t *testing.T) { // test query tk.MustExec("use test") + tk.MustExec("set tidb_cost_model_version=2") tk.MustExec("drop table if exists t") tk.MustExec("create table t(a int, b int)") tk.MustExec("create index idx on t(a)") @@ -154,6 +157,7 @@ func TestEnforceMPPWarning1(t *testing.T) { // test query tk.MustExec("use test") + tk.MustExec("set tidb_cost_model_version=2") tk.MustExec("drop table if exists t") tk.MustExec("create table t(a int, b int as (a+1), c enum('xx', 'yy'), d bit(1))") tk.MustExec("create index idx on t(a)") @@ -224,6 +228,7 @@ func TestEnforceMPPWarning2(t *testing.T) { // test query tk.MustExec("use test") + tk.MustExec("set tidb_cost_model_version=2") tk.MustExec("drop table if exists t") tk.MustExec("CREATE TABLE t (a int, b char(20)) PARTITION BY HASH(a)") @@ -275,6 +280,7 @@ func TestEnforceMPPWarning3(t *testing.T) { // test query tk.MustExec("use test") + tk.MustExec("set tidb_cost_model_version=2") tk.MustExec("drop table if exists t") tk.MustExec("CREATE TABLE t (a int, b char(20))") @@ -335,6 +341,7 @@ func TestEnforceMPPWarning4(t *testing.T) { // test table tk.MustExec("use test") + tk.MustExec("set tidb_cost_model_version=2") tk.MustExec("drop table if exists t") tk.MustExec("CREATE TABLE t(a int primary key)") tk.MustExec("drop table if exists s") @@ -388,6 +395,7 @@ func TestMPP2PhaseAggPushDown(t *testing.T) { // test table tk.MustExec("use test") + tk.MustExec("set tidb_cost_model_version=2") tk.MustExec("drop table if exists c") tk.MustExec("drop table if exists o") tk.MustExec("create table c(c_id bigint)") @@ -441,6 +449,7 @@ func TestMPPSkewedGroupDistinctRewrite(t *testing.T) { // test table tk.MustExec("use test") + tk.MustExec("set tidb_cost_model_version=2") tk.MustExec("drop table if exists t") tk.MustExec("create table t(a int, b bigint not null, c bigint, d date, e varchar(20))") @@ -492,6 +501,7 @@ func TestMPPSingleDistinct3Stage(t *testing.T) { // test table tk.MustExec("use test") + tk.MustExec("set tidb_cost_model_version=2") tk.MustExec("drop table if exists t") tk.MustExec("create table t(a int, b bigint not null, c bigint, d date, e varchar(20) collate utf8mb4_general_ci)") diff --git a/planner/core/exhaust_physical_plans.go b/planner/core/exhaust_physical_plans.go index e726996268831..768a8c20fc0b5 100644 --- a/planner/core/exhaust_physical_plans.go +++ b/planner/core/exhaust_physical_plans.go @@ -1148,7 +1148,7 @@ func (p *LogicalJoin) constructInnerIndexScanTask( cop.commonHandleCols = ds.commonHandleCols } is.initSchema(append(path.FullIdxCols, ds.commonHandleCols...), cop.tablePlan != nil) - indexConds, tblConds := ds.splitIndexFilterConditions(filterConds, path.FullIdxCols, path.FullIdxColLens, ds.tableInfo) + indexConds, tblConds := ds.splitIndexFilterConditions(filterConds, path.FullIdxCols, path.FullIdxColLens) if maxOneRow { // Theoretically, this line is unnecessary because row count estimation of join should guarantee rowCount is not larger // than 1.0; however, there may be rowCount larger than 1.0 in reality, e.g, pseudo statistics cases, which does not reflect @@ -1940,11 +1940,18 @@ func (p *LogicalJoin) exhaustPhysicalPlans(prop *property.PhysicalProperty) ([]P joins := make([]PhysicalPlan, 0, 8) canPushToTiFlash := p.canPushToCop(kv.TiFlash) if p.ctx.GetSessionVars().IsMPPAllowed() && canPushToTiFlash { + if (p.preferJoinType & preferShuffleJoin) > 0 { + if shuffleJoins := p.tryToGetMppHashJoin(prop, false); len(shuffleJoins) > 0 { + return shuffleJoins, true, nil + } + } + if (p.preferJoinType & preferBCJoin) > 0 { + if bcastJoins := p.tryToGetMppHashJoin(prop, true); len(bcastJoins) > 0 { + return bcastJoins, true, nil + } + } if p.shouldUseMPPBCJ() { mppJoins := p.tryToGetMppHashJoin(prop, true) - if (p.preferJoinType & preferBCJoin) > 0 { - return mppJoins, true, nil - } joins = append(joins, mppJoins...) } else { mppJoins := p.tryToGetMppHashJoin(prop, false) @@ -2803,6 +2810,24 @@ func (la *LogicalAggregation) tryToGetMppHashAggs(prop *property.PhysicalPropert } hashAggs = append(hashAggs, agg) } + + // handle MPP Agg hints + var preferMode AggMppRunMode + var prefer bool + if la.aggHints.preferAggType&preferMPP1PhaseAgg > 0 { + preferMode, prefer = Mpp1Phase, true + } else if la.aggHints.preferAggType&preferMPP2PhaseAgg > 0 { + preferMode, prefer = Mpp2Phase, true + } + if prefer { + var preferPlans []PhysicalPlan + for _, agg := range hashAggs { + if hg, ok := agg.(*PhysicalHashAgg); ok && hg.MppRunMode == preferMode { + preferPlans = append(preferPlans, hg) + } + } + hashAggs = preferPlans + } return } diff --git a/planner/core/expression_rewriter.go b/planner/core/expression_rewriter.go index 73a998197cc0f..2e22a752df310 100644 --- a/planner/core/expression_rewriter.go +++ b/planner/core/expression_rewriter.go @@ -1391,9 +1391,9 @@ func (er *expressionRewriter) rewriteVariable(v *ast.VariableExpr) { if sysVar.HasNoneScope() { val = sysVar.Value } else if v.IsGlobal { - val, err = sessionVars.GetGlobalSystemVar(name) + val, err = sessionVars.GetGlobalSystemVar(er.ctx, name) } else { - val, err = sessionVars.GetSessionOrGlobalSystemVar(name) + val, err = sessionVars.GetSessionOrGlobalSystemVar(er.ctx, name) } if err != nil { er.err = err diff --git a/planner/core/expression_rewriter_test.go b/planner/core/expression_rewriter_test.go index 3de3509c3e093..f7da5cd5a59ea 100644 --- a/planner/core/expression_rewriter_test.go +++ b/planner/core/expression_rewriter_test.go @@ -381,6 +381,7 @@ func TestMultiColInExpression(t *testing.T) { store := testkit.CreateMockStore(t) tk := testkit.NewTestKit(t, store) tk.MustExec("use test;") + tk.MustExec("set tidb_cost_model_version=2") tk.MustExec("drop table if exists t1, t2") tk.MustExec("create table t1(a int, b int)") tk.MustExec("insert into t1 values(1,1),(2,null),(null,3),(4,4)") @@ -416,6 +417,7 @@ func TestBitFuncsReturnType(t *testing.T) { tk := testkit.NewTestKit(t, store) tk.MustExec("use test") tk.MustExec("drop table if exists t") + tk.MustExec("set tidb_cost_model_version=2") tk.MustExec("create table t (a timestamp, b varbinary(32))") tk.MustExec("insert into t values ('2006-08-27 21:57:57', 0x373037343631313230)") tk.MustExec("analyze table t") @@ -427,6 +429,9 @@ func TestBitFuncsReturnType(t *testing.T) { expressionRewriterSuiteData := plannercore.GetExpressionRewriterSuiteData() expressionRewriterSuiteData.LoadTestCases(t, &input, &output) for i, tt := range input { + testdata.OnRecord(func() { + output[i].Plan = testdata.ConvertRowsToStrings(tk.MustQuery("explain format = 'brief' " + tt).Rows()) + }) tk.MustQuery("explain format = 'brief' " + tt).Check(testkit.Rows(output[i].Plan...)) } } diff --git a/planner/core/find_best_task.go b/planner/core/find_best_task.go index c73ce9f3c086d..6f99593514459 100644 --- a/planner/core/find_best_task.go +++ b/planner/core/find_best_task.go @@ -1118,7 +1118,7 @@ func (ds *DataSource) convertToIndexMergeScan(prop *property.PhysicalProperty, c func (ds *DataSource) convertToPartialIndexScan(prop *property.PhysicalProperty, path *util.AccessPath) (indexPlan PhysicalPlan) { is := ds.getOriginalPhysicalIndexScan(prop, path, false, false) - // TODO: Consider using isCoveringIndex() to avoid another TableRead + // TODO: Consider using isIndexCoveringColumns() to avoid another TableRead indexConds := path.IndexFilters if indexConds != nil { var selectivity float64 @@ -1281,33 +1281,80 @@ func extractFiltersForIndexMerge(sc *stmtctx.StatementContext, client kv.Client, return } -func indexCoveringCol(col *expression.Column, indexCols []*expression.Column, idxColLens []int) bool { +func isIndexColsCoveringCol(col *expression.Column, indexCols []*expression.Column, idxColLens []int, ignoreLen bool) bool { for i, indexCol := range indexCols { - isFullLen := idxColLens[i] == types.UnspecifiedLength || idxColLens[i] == col.RetType.GetFlen() - if indexCol != nil && col.EqualByExprAndID(nil, indexCol) && isFullLen { + if indexCol == nil || !col.EqualByExprAndID(nil, indexCol) { + continue + } + if ignoreLen || idxColLens[i] == types.UnspecifiedLength || idxColLens[i] == col.RetType.GetFlen() { return true } } return false } -func (ds *DataSource) isCoveringIndex(columns, indexColumns []*expression.Column, idxColLens []int, tblInfo *model.TableInfo) bool { +func (ds *DataSource) indexCoveringColumn(column *expression.Column, indexColumns []*expression.Column, idxColLens []int, ignoreLen bool) bool { + if ds.tableInfo.PKIsHandle && mysql.HasPriKeyFlag(column.RetType.GetFlag()) { + return true + } + if column.ID == model.ExtraHandleID { + return true + } + coveredByPlainIndex := isIndexColsCoveringCol(column, indexColumns, idxColLens, ignoreLen) + coveredByClusteredIndex := isIndexColsCoveringCol(column, ds.commonHandleCols, ds.commonHandleLens, ignoreLen) + if !coveredByPlainIndex && !coveredByClusteredIndex { + return false + } + isClusteredNewCollationIdx := collate.NewCollationEnabled() && + column.GetType().EvalType() == types.ETString && + !mysql.HasBinaryFlag(column.GetType().GetFlag()) + if !coveredByPlainIndex && coveredByClusteredIndex && isClusteredNewCollationIdx && ds.table.Meta().CommonHandleVersion == 0 { + return false + } + return true +} + +func (ds *DataSource) isIndexCoveringColumns(columns, indexColumns []*expression.Column, idxColLens []int) bool { for _, col := range columns { - if tblInfo.PKIsHandle && mysql.HasPriKeyFlag(col.RetType.GetFlag()) { - continue + if !ds.indexCoveringColumn(col, indexColumns, idxColLens, false) { + return false } - if col.ID == model.ExtraHandleID { - continue + } + return true +} + +func (ds *DataSource) isIndexCoveringCondition(condition expression.Expression, indexColumns []*expression.Column, idxColLens []int) bool { + switch v := condition.(type) { + case *expression.Column: + return ds.indexCoveringColumn(v, indexColumns, idxColLens, false) + case *expression.ScalarFunction: + // Even if the index only contains prefix `col`, the index can cover `col is null`. + if v.FuncName.L == ast.IsNull { + if col, ok := v.GetArgs()[0].(*expression.Column); ok { + return ds.indexCoveringColumn(col, indexColumns, idxColLens, true) + } } - coveredByPlainIndex := indexCoveringCol(col, indexColumns, idxColLens) - coveredByClusteredIndex := indexCoveringCol(col, ds.commonHandleCols, ds.commonHandleLens) - if !coveredByPlainIndex && !coveredByClusteredIndex { - return false + for _, arg := range v.GetArgs() { + if !ds.isIndexCoveringCondition(arg, indexColumns, idxColLens) { + return false + } } - isClusteredNewCollationIdx := collate.NewCollationEnabled() && - col.GetType().EvalType() == types.ETString && - !mysql.HasBinaryFlag(col.GetType().GetFlag()) - if !coveredByPlainIndex && coveredByClusteredIndex && isClusteredNewCollationIdx && ds.table.Meta().CommonHandleVersion == 0 { + return true + } + return true +} + +func (ds *DataSource) isSingleScan(indexColumns []*expression.Column, idxColLens []int) bool { + if !ds.ctx.GetSessionVars().OptPrefixIndexSingleScan || ds.colsRequiringFullLen == nil { + // ds.colsRequiringFullLen is set at (*DataSource).PruneColumns. In some cases we don't reach (*DataSource).PruneColumns + // and ds.colsRequiringFullLen is nil, so we fall back to ds.isIndexCoveringColumns(ds.schema.Columns, indexColumns, idxColLens). + return ds.isIndexCoveringColumns(ds.schema.Columns, indexColumns, idxColLens) + } + if !ds.isIndexCoveringColumns(ds.colsRequiringFullLen, indexColumns, idxColLens) { + return false + } + for _, cond := range ds.allConds { + if !ds.isIndexCoveringCondition(cond, indexColumns, idxColLens) { return false } } @@ -1575,11 +1622,17 @@ func matchIndicesProp(idxCols []*expression.Column, colLens []int, propItems []p return true } -func (ds *DataSource) splitIndexFilterConditions(conditions []expression.Expression, indexColumns []*expression.Column, idxColLens []int, - table *model.TableInfo) (indexConds, tableConds []expression.Expression) { +func (ds *DataSource) splitIndexFilterConditions(conditions []expression.Expression, indexColumns []*expression.Column, + idxColLens []int) (indexConds, tableConds []expression.Expression) { var indexConditions, tableConditions []expression.Expression for _, cond := range conditions { - if ds.isCoveringIndex(expression.ExtractColumns(cond), indexColumns, idxColLens, table) { + var covered bool + if ds.ctx.GetSessionVars().OptPrefixIndexSingleScan { + covered = ds.isIndexCoveringCondition(cond, indexColumns, idxColLens) + } else { + covered = ds.isIndexCoveringColumns(expression.ExtractColumns(cond), indexColumns, idxColLens) + } + if covered { indexConditions = append(indexConditions, cond) } else { tableConditions = append(tableConditions, cond) @@ -1711,9 +1764,10 @@ func (ds *DataSource) crossEstimateRowCount(path *util.AccessPath, conds []expre if len(ranges) == 0 || len(accessConds) == 0 || err != nil { return 0, err == nil, corr } - idxID, idxExists := ds.stats.HistColl.ColID2IdxID[colID] - if !idxExists { - idxID = -1 + idxID := int64(-1) + idxIDs, idxExists := ds.stats.HistColl.ColID2IdxIDs[colID] + if idxExists && len(idxIDs) > 0 { + idxID = idxIDs[0] } rangeCounts, ok := getColumnRangeCounts(ds.ctx, colID, ranges, ds.tableStats.HistColl, idxID) if !ok { diff --git a/planner/core/flat_plan.go b/planner/core/flat_plan.go index 3058f0fd82e92..ed283ee7ece93 100644 --- a/planner/core/flat_plan.go +++ b/planner/core/flat_plan.go @@ -339,7 +339,11 @@ func (f *FlatPhysicalPlan) flattenRecursively(p Plan, info *operatorCtx, target target, childIdx = f.flattenRecursively(plan.DataSource, childCtx, target) childIdxs = append(childIdxs, childIdx) case *PhysicalCTE: - f.ctesToFlatten = append(f.ctesToFlatten, plan) + // We shallow copy the PhysicalCTE here because we don't want the probeParents (see comments in PhysicalPlan + // for details) to affect the row count display of the independent CTE plan tree. + copiedCTE := *plan + copiedCTE.probeParents = nil + f.ctesToFlatten = append(f.ctesToFlatten, &copiedCTE) case *Insert: if plan.SelectPlan != nil { childCtx.isRoot = true diff --git a/planner/core/foreign_key.go b/planner/core/foreign_key.go index 063a823a14e74..6ee715380f8ba 100644 --- a/planner/core/foreign_key.go +++ b/planner/core/foreign_key.go @@ -17,6 +17,7 @@ package core import ( "unsafe" + "github.com/pingcap/errors" "github.com/pingcap/tidb/infoschema" "github.com/pingcap/tidb/parser/model" "github.com/pingcap/tidb/parser/mysql" @@ -39,7 +40,28 @@ type FKCheck struct { FailedErr error } -const emptyFkCheckSize = int64(unsafe.Sizeof(FKCheck{})) +// FKCascade indicates the foreign key constraint cascade behaviour. +type FKCascade struct { + Tp FKCascadeType + ReferredFK *model.ReferredFKInfo + ChildTable table.Table + FK *model.FKInfo + FKCols []*model.ColumnInfo + FKIdx *model.IndexInfo +} + +// FKCascadeType indicates in which (delete/update) statements. +type FKCascadeType int8 + +const ( + // FKCascadeOnDelete indicates in delete statement. + FKCascadeOnDelete FKCascadeType = 1 + // FKCascadeOnUpdate indicates in update statement. + FKCascadeOnUpdate FKCascadeType = 2 + + emptyFkCheckSize = int64(unsafe.Sizeof(FKCheck{})) + emptyFkCascadeSize = int64(unsafe.Sizeof(FKCascade{})) +) // MemoryUsage return the memory usage of FKCheck func (f *FKCheck) MemoryUsage() (sum int64) { @@ -54,21 +76,34 @@ func (f *FKCheck) MemoryUsage() (sum int64) { return } -func (p *Insert) buildOnInsertFKChecks(ctx sessionctx.Context, is infoschema.InfoSchema, dbName string) ([]*FKCheck, error) { +// MemoryUsage return the memory usage of FKCascade +func (f *FKCascade) MemoryUsage() (sum int64) { + if f == nil { + return + } + sum = emptyFkCascadeSize + return +} + +func (p *Insert) buildOnInsertFKTriggers(ctx sessionctx.Context, is infoschema.InfoSchema, dbName string) error { if !ctx.GetSessionVars().ForeignKeyChecks { - return nil, nil + return nil } tblInfo := p.Table.Meta() fkChecks := make([]*FKCheck, 0, len(tblInfo.ForeignKeys)) + fkCascades := make([]*FKCascade, 0, len(tblInfo.ForeignKeys)) updateCols := p.buildOnDuplicateUpdateColumns() if len(updateCols) > 0 { - referredFKChecks, err := buildOnUpdateReferredFKChecks(is, dbName, tblInfo, updateCols) + referredFKChecks, referredFKCascades, err := buildOnUpdateReferredFKTriggers(is, dbName, tblInfo, updateCols) if err != nil { - return nil, err + return err } if len(referredFKChecks) > 0 { fkChecks = append(fkChecks, referredFKChecks...) } + if len(referredFKCascades) > 0 { + fkCascades = append(fkCascades, referredFKCascades...) + } } for _, fk := range tblInfo.ForeignKeys { if fk.Version < 1 { @@ -77,13 +112,15 @@ func (p *Insert) buildOnInsertFKChecks(ctx sessionctx.Context, is infoschema.Inf failedErr := ErrNoReferencedRow2.FastGenByArgs(fk.String(dbName, tblInfo.Name.L)) fkCheck, err := buildFKCheckOnModifyChildTable(is, fk, failedErr) if err != nil { - return nil, err + return err } if fkCheck != nil { fkChecks = append(fkChecks, fkCheck) } } - return fkChecks, nil + p.FKChecks = fkChecks + p.FKCascades = fkCascades + return nil } func (p *Insert) buildOnDuplicateUpdateColumns() map[string]struct{} { @@ -94,12 +131,13 @@ func (p *Insert) buildOnDuplicateUpdateColumns() map[string]struct{} { return m } -func (updt *Update) buildOnUpdateFKChecks(ctx sessionctx.Context, is infoschema.InfoSchema, tblID2table map[int64]table.Table) error { +func (updt *Update) buildOnUpdateFKTriggers(ctx sessionctx.Context, is infoschema.InfoSchema, tblID2table map[int64]table.Table) error { if !ctx.GetSessionVars().ForeignKeyChecks { return nil } tblID2UpdateColumns := updt.buildTbl2UpdateColumns() fkChecks := make(map[int64][]*FKCheck) + fkCascades := make(map[int64][]*FKCascade) for tid, tbl := range tblID2table { tblInfo := tbl.Meta() dbInfo, exist := is.SchemaByTable(tblInfo) @@ -111,13 +149,16 @@ func (updt *Update) buildOnUpdateFKChecks(ctx sessionctx.Context, is infoschema. if len(updateCols) == 0 { continue } - referredFKChecks, err := buildOnUpdateReferredFKChecks(is, dbInfo.Name.L, tblInfo, updateCols) + referredFKChecks, referredFKCascades, err := buildOnUpdateReferredFKTriggers(is, dbInfo.Name.L, tblInfo, updateCols) if err != nil { return err } if len(referredFKChecks) > 0 { fkChecks[tid] = append(fkChecks[tid], referredFKChecks...) } + if len(referredFKCascades) > 0 { + fkCascades[tid] = append(fkCascades[tid], referredFKCascades...) + } childFKChecks, err := buildOnUpdateChildFKChecks(is, dbInfo.Name.L, tblInfo, updateCols) if err != nil { return err @@ -127,14 +168,16 @@ func (updt *Update) buildOnUpdateFKChecks(ctx sessionctx.Context, is infoschema. } } updt.FKChecks = fkChecks + updt.FKCascades = fkCascades return nil } -func (del *Delete) buildOnDeleteFKChecks(ctx sessionctx.Context, is infoschema.InfoSchema, tblID2table map[int64]table.Table) error { +func (del *Delete) buildOnDeleteFKTriggers(ctx sessionctx.Context, is infoschema.InfoSchema, tblID2table map[int64]table.Table) error { if !ctx.GetSessionVars().ForeignKeyChecks { return nil } fkChecks := make(map[int64][]*FKCheck) + fkCascades := make(map[int64][]*FKCascade) for tid, tbl := range tblID2table { tblInfo := tbl.Meta() dbInfo, exist := is.SchemaByTable(tblInfo) @@ -143,35 +186,43 @@ func (del *Delete) buildOnDeleteFKChecks(ctx sessionctx.Context, is infoschema.I } referredFKs := is.GetTableReferredForeignKeys(dbInfo.Name.L, tblInfo.Name.L) for _, referredFK := range referredFKs { - fkCheck, err := buildFKCheckOnModifyReferTable(is, referredFK) + fkCheck, fkCascade, err := buildOnDeleteOrUpdateFKTrigger(is, referredFK, FKCascadeOnDelete) if err != nil { return err } if fkCheck != nil { fkChecks[tid] = append(fkChecks[tid], fkCheck) } + if fkCascade != nil { + fkCascades[tid] = append(fkCascades[tid], fkCascade) + } } } del.FKChecks = fkChecks + del.FKCascades = fkCascades return nil } -func buildOnUpdateReferredFKChecks(is infoschema.InfoSchema, dbName string, tblInfo *model.TableInfo, updateCols map[string]struct{}) ([]*FKCheck, error) { +func buildOnUpdateReferredFKTriggers(is infoschema.InfoSchema, dbName string, tblInfo *model.TableInfo, updateCols map[string]struct{}) ([]*FKCheck, []*FKCascade, error) { referredFKs := is.GetTableReferredForeignKeys(dbName, tblInfo.Name.L) fkChecks := make([]*FKCheck, 0, len(referredFKs)) + fkCascades := make([]*FKCascade, 0, len(referredFKs)) for _, referredFK := range referredFKs { if !isMapContainAnyCols(updateCols, referredFK.Cols...) { continue } - fkCheck, err := buildFKCheckOnModifyReferTable(is, referredFK) + fkCheck, fkCascade, err := buildOnDeleteOrUpdateFKTrigger(is, referredFK, FKCascadeOnUpdate) if err != nil { - return nil, err + return nil, nil, err } if fkCheck != nil { fkChecks = append(fkChecks, fkCheck) } + if fkCascade != nil { + fkCascades = append(fkCascades, fkCascade) + } } - return fkChecks, nil + return fkChecks, fkCascades, nil } func buildOnUpdateChildFKChecks(is infoschema.InfoSchema, dbName string, tblInfo *model.TableInfo, updateCols map[string]struct{}) ([]*FKCheck, error) { @@ -229,6 +280,36 @@ func (updt *Update) buildTbl2UpdateColumns() map[int64]map[string]struct{} { return tblID2UpdateColumns } +func buildOnDeleteOrUpdateFKTrigger(is infoschema.InfoSchema, referredFK *model.ReferredFKInfo, tp FKCascadeType) (*FKCheck, *FKCascade, error) { + childTable, err := is.TableByName(referredFK.ChildSchema, referredFK.ChildTable) + if err != nil { + return nil, nil, nil + } + fk := model.FindFKInfoByName(childTable.Meta().ForeignKeys, referredFK.ChildFKName.L) + if fk == nil || fk.Version < 1 { + return nil, nil, nil + } + var fkReferOption model.ReferOptionType + if fk.State != model.StatePublic { + fkReferOption = model.ReferOptionRestrict + } else { + switch tp { + case FKCascadeOnDelete: + fkReferOption = model.ReferOptionType(fk.OnDelete) + case FKCascadeOnUpdate: + fkReferOption = model.ReferOptionType(fk.OnUpdate) + } + } + switch fkReferOption { + case model.ReferOptionCascade, model.ReferOptionSetNull: + fkCascade, err := buildFKCascade(tp, referredFK, childTable, fk) + return nil, fkCascade, err + default: + fkCheck, err := buildFKCheckForReferredFK(childTable, fk, referredFK) + return fkCheck, nil, err + } +} + func isMapContainAnyCols(colsMap map[string]struct{}, cols ...model.CIStr) bool { for _, col := range cols { _, exist := colsMap[col.L] @@ -262,6 +343,10 @@ func buildFKCheckOnModifyReferTable(is infoschema.InfoSchema, referredFK *model. if fk == nil || fk.Version < 1 { return nil, nil } + return buildFKCheckForReferredFK(childTable, fk, referredFK) +} + +func buildFKCheckForReferredFK(childTable table.Table, fk *model.FKInfo, referredFK *model.ReferredFKInfo) (*FKCheck, error) { failedErr := ErrRowIsReferenced2.GenWithStackByArgs(fk.String(referredFK.ChildSchema.L, referredFK.ChildTable.L)) fkCheck, err := buildFKCheck(childTable, fk.Cols, failedErr) if err != nil { @@ -308,3 +393,34 @@ func buildFKCheck(tbl table.Table, cols []model.CIStr, failedErr error) (*FKChec FailedErr: failedErr, }, nil } + +func buildFKCascade(tp FKCascadeType, referredFK *model.ReferredFKInfo, childTable table.Table, fk *model.FKInfo) (*FKCascade, error) { + cols := make([]*model.ColumnInfo, len(fk.Cols)) + childTableColumns := childTable.Meta().Columns + for i, c := range fk.Cols { + col := model.FindColumnInfo(childTableColumns, c.L) + if col == nil { + return nil, errors.Errorf("foreign key column %s is not found in table %s", c.L, childTable.Meta().Name) + } + cols[i] = col + } + fkCascade := &FKCascade{ + Tp: tp, + ReferredFK: referredFK, + ChildTable: childTable, + FK: fk, + FKCols: cols, + } + if childTable.Meta().PKIsHandle && len(cols) == 1 { + refColInfo := model.FindColumnInfo(childTableColumns, cols[0].Name.L) + if refColInfo != nil && mysql.HasPriKeyFlag(refColInfo.GetFlag()) { + return fkCascade, nil + } + } + indexForFK := model.FindIndexByColumns(childTable.Meta(), fk.Cols...) + if indexForFK == nil { + return nil, errors.Errorf("Missing index for '%s' foreign key columns in the table '%s'", fk.Name, childTable.Meta().Name) + } + fkCascade.FKIdx = indexForFK + return fkCascade, nil +} diff --git a/planner/core/indexmerge_test.go b/planner/core/indexmerge_test.go index f109b85aaee18..8867e5a64c744 100644 --- a/planner/core/indexmerge_test.go +++ b/planner/core/indexmerge_test.go @@ -69,7 +69,7 @@ func TestIndexMergePathGeneration(t *testing.T) { for i, tc := range input { stmt, err := parser.ParseOneStmt(tc, "", "") require.NoErrorf(t, err, "case:%v sql:%s", i, tc) - err = Preprocess(sctx, stmt, WithPreprocessorReturn(&PreprocessorReturn{InfoSchema: is})) + err = Preprocess(context.Background(), sctx, stmt, WithPreprocessorReturn(&PreprocessorReturn{InfoSchema: is})) require.NoError(t, err) builder, _ := NewPlanBuilder().Init(MockContext(), is, &hint.BlockHintProcessor{}) p, err := builder.Build(ctx, stmt) diff --git a/planner/core/integration_partition_test.go b/planner/core/integration_partition_test.go index f3e1dc96195f1..7823f18474ad1 100644 --- a/planner/core/integration_partition_test.go +++ b/planner/core/integration_partition_test.go @@ -39,6 +39,7 @@ func TestListPartitionPushDown(t *testing.T) { tk := testkit.NewTestKit(t, store) tk.MustExec("create database list_push_down") tk.MustExec("use list_push_down") + tk.MustExec("set tidb_cost_model_version=2") tk.MustExec("drop table if exists tlist") tk.MustExec(`set tidb_enable_list_partition = 1`) tk.MustExec(`create table tlist (a int) partition by list (a) ( diff --git a/planner/core/integration_test.go b/planner/core/integration_test.go index e716561b114e1..24b19bad5c3e9 100644 --- a/planner/core/integration_test.go +++ b/planner/core/integration_test.go @@ -50,6 +50,7 @@ func TestShowSubquery(t *testing.T) { store := testkit.CreateMockStore(t) tk := testkit.NewTestKit(t, store) tk.MustExec("use test") + tk.MustExec("set tidb_cost_model_version=2") tk.MustExec("drop table if exists t") tk.MustExec("create table t(a varchar(10), b int, c int)") tk.MustQuery("show columns from t where true").Check(testkit.Rows( @@ -68,7 +69,7 @@ func TestShowSubquery(t *testing.T) { )) tk.MustQuery("show columns from t where field in (select 'b') and false").Check(testkit.Rows()) tk.MustExec("insert into t values('c', 0, 0)") - tk.MustQuery("show columns from t where field < all (select a from t)").Check(testkit.Rows( + tk.MustQuery("show columns from t where field < all (select a from t)").Sort().Check(testkit.Rows( "a varchar(10) YES ", "b int(11) YES ", )) @@ -123,6 +124,7 @@ func TestAggPushDownLeftJoin(t *testing.T) { tk := testkit.NewTestKit(t, store) tk.MustExec("use test") + tk.MustExec("set tidb_cost_model_version=2") tk.MustExec("drop table if exists customer") tk.MustExec("create table customer (C_CUSTKEY bigint(20) NOT NULL, C_NAME varchar(25) NOT NULL, " + "C_ADDRESS varchar(25) NOT NULL, PRIMARY KEY (`C_CUSTKEY`) /*T![clustered_index] CLUSTERED */)") @@ -165,6 +167,7 @@ func TestPushLimitDownIndexLookUpReader(t *testing.T) { store := testkit.CreateMockStore(t) tk := testkit.NewTestKit(t, store) + tk.MustExec("set tidb_cost_model_version=2") tk.MustExec("set @@session.tidb_executor_concurrency = 4;") tk.MustExec("set @@session.tidb_hash_join_concurrency = 5;") tk.MustExec("set @@session.tidb_distsql_scan_concurrency = 15;") @@ -195,6 +198,7 @@ func TestAggColumnPrune(t *testing.T) { tk := testkit.NewTestKit(t, store) tk.MustExec("use test") + tk.MustExec("set tidb_cost_model_version=2") tk.MustExec("drop table if exists t") tk.MustExec("create table t(a int)") tk.MustExec("insert into t values(1),(2)") @@ -219,6 +223,7 @@ func TestIsFromUnixtimeNullRejective(t *testing.T) { store := testkit.CreateMockStore(t) tk := testkit.NewTestKit(t, store) tk.MustExec("use test") + tk.MustExec("set tidb_cost_model_version=2") tk.MustExec(`drop table if exists t;`) tk.MustExec(`create table t(a bigint, b bigint);`) var input []string @@ -376,6 +381,7 @@ func TestSimplifyOuterJoinWithCast(t *testing.T) { store := testkit.CreateMockStore(t) tk := testkit.NewTestKit(t, store) + tk.MustExec("set tidb_cost_model_version=2") tk.MustExec("use test") tk.MustExec("drop table if exists t") tk.MustExec("create table t(a int not null, b datetime default null)") @@ -449,6 +455,7 @@ func TestSelPushDownTiFlash(t *testing.T) { tk.MustExec("set @@session.tidb_isolation_read_engines = 'tiflash'") tk.MustExec("set @@session.tidb_allow_mpp = 0") + tk.MustExec("set tidb_cost_model_version=2") var input []string var output []struct { @@ -471,6 +478,7 @@ func TestVerboseExplain(t *testing.T) { store := testkit.CreateMockStore(t) tk := testkit.NewTestKit(t, store) tk.MustExec("use test") + tk.MustExec("set tidb_cost_model_version=2") tk.MustExec(`set tidb_opt_limit_push_down_threshold=0`) tk.MustExec("drop table if exists t1, t2, t3") tk.MustExec("create table t1(a int, b int)") @@ -544,6 +552,7 @@ func TestPushDownToTiFlashWithKeepOrder(t *testing.T) { } } + tk.MustExec("set tidb_cost_model_version=2") tk.MustExec("set @@session.tidb_isolation_read_engines = 'tiflash'") tk.MustExec("set @@session.tidb_allow_mpp = 0") var input []string @@ -585,6 +594,7 @@ func TestPushDownToTiFlashWithKeepOrderInFastMode(t *testing.T) { } } + tk.MustExec("set tidb_cost_model_version=2") tk.MustExec("set @@session.tidb_isolation_read_engines = 'tiflash'") tk.MustExec("set @@session.tidb_allow_mpp = 0") var input []string @@ -608,6 +618,7 @@ func TestMPPJoin(t *testing.T) { store := testkit.CreateMockStore(t) tk := testkit.NewTestKit(t, store) tk.MustExec("use test") + tk.MustExec("set tidb_cost_model_version=2") tk.MustExec("drop table if exists d1_t") tk.MustExec("create table d1_t(d1_k int, value int)") tk.MustExec("insert into d1_t values(1,2),(2,3)") @@ -713,6 +724,7 @@ func TestMPPOuterJoinBuildSideForBroadcastJoin(t *testing.T) { store := testkit.CreateMockStore(t) tk := testkit.NewTestKit(t, store) tk.MustExec("use test") + tk.MustExec("set tidb_cost_model_version=2") tk.MustExec("drop table if exists a") tk.MustExec("create table a(id int, value int)") tk.MustExec("insert into a values(1,2),(2,3)") @@ -759,6 +771,7 @@ func TestMPPOuterJoinBuildSideForShuffleJoinWithFixedBuildSide(t *testing.T) { store := testkit.CreateMockStore(t) tk := testkit.NewTestKit(t, store) tk.MustExec("use test") + tk.MustExec("set tidb_cost_model_version=2") tk.MustExec("drop table if exists a") tk.MustExec("create table a(id int, value int)") tk.MustExec("insert into a values(1,2),(2,3)") @@ -805,6 +818,7 @@ func TestMPPOuterJoinBuildSideForShuffleJoin(t *testing.T) { store := testkit.CreateMockStore(t) tk := testkit.NewTestKit(t, store) tk.MustExec("use test") + tk.MustExec("set tidb_cost_model_version=2") tk.MustExec("drop table if exists a") tk.MustExec("create table a(id int, value int)") tk.MustExec("insert into a values(1,2),(2,3)") @@ -851,6 +865,7 @@ func TestMPPShuffledJoin(t *testing.T) { store := testkit.CreateMockStore(t) tk := testkit.NewTestKit(t, store) tk.MustExec("use test") + tk.MustExec("set tidb_cost_model_version=2") tk.MustExec("drop table if exists d1_t") tk.MustExec("create table d1_t(d1_k int, value int)") tk.MustExec("insert into d1_t values(1,2),(2,3)") @@ -913,6 +928,7 @@ func TestMPPJoinWithCanNotFoundColumnInSchemaColumnsError(t *testing.T) { store := testkit.CreateMockStore(t) tk := testkit.NewTestKit(t, store) tk.MustExec("use test") + tk.MustExec("set tidb_cost_model_version=2") tk.MustExec("drop table if exists t1") tk.MustExec("create table t1(id int, v1 decimal(20,2), v2 decimal(20,2))") tk.MustExec("create table t2(id int, v1 decimal(10,2), v2 decimal(10,2))") @@ -1194,6 +1210,7 @@ func TestAggPushDownEngine(t *testing.T) { store := testkit.CreateMockStore(t) tk := testkit.NewTestKit(t, store) tk.MustExec("use test") + tk.MustExec("set tidb_cost_model_version=2") tk.MustExec("drop table if exists t") tk.MustExec("create table t(a int primary key, b varchar(20))") @@ -1214,9 +1231,9 @@ func TestAggPushDownEngine(t *testing.T) { tk.MustExec("set @@session.tidb_isolation_read_engines = 'tiflash'") tk.MustQuery("explain format = 'brief' select approx_count_distinct(a) from t").Check(testkit.Rows( - "StreamAgg 1.00 root funcs:approx_count_distinct(Column#5)->Column#3", - "└─TableReader 1.00 root data:StreamAgg", - " └─StreamAgg 1.00 batchCop[tiflash] funcs:approx_count_distinct(test.t.a)->Column#5", + "HashAgg 1.00 root funcs:approx_count_distinct(Column#4)->Column#3", + "└─TableReader 1.00 root data:HashAgg", + " └─HashAgg 1.00 batchCop[tiflash] funcs:approx_count_distinct(test.t.a)->Column#4", " └─TableFullScan 10000.00 batchCop[tiflash] table:t keep order:false, stats:pseudo")) tk.MustExec("set @@session.tidb_isolation_read_engines = 'tikv'") @@ -1268,6 +1285,7 @@ func TestReadFromStorageHint(t *testing.T) { tk := testkit.NewTestKit(t, store) tk.MustExec("use test") + tk.MustExec("set tidb_cost_model_version=2") tk.MustExec("drop table if exists t, tt, ttt") tk.MustExec("set session tidb_allow_mpp=OFF") tk.MustExec("create table t(a int, b int, index ia(a))") @@ -1306,11 +1324,81 @@ func TestReadFromStorageHint(t *testing.T) { } } +func TestViewHint(t *testing.T) { + store := testkit.CreateMockStore(t) + tk := testkit.NewTestKit(t, store) + + tk.MustExec("use test") + tk.MustExec("drop view if exists v, v1") + tk.MustExec("drop table if exists t, t1, t2") + tk.MustExec("create table t(a int, b int);") + tk.MustExec("create table t1(a int, b int);") + tk.MustExec("create table t2(a int, b int);") + tk.MustExec("create definer='root'@'localhost' view v as select t.a, t.b from t join (select count(*) as a from t1 join t2 on t1.b=t2.b group by t2.a) tt on t.a = tt.a;") + tk.MustExec("create definer='root'@'localhost' view v1 as select t.a, t.b from t join (select count(*) as a from t1 join v on t1.b=v.b group by v.a) tt on t.a = tt.a;") + tk.MustExec("create definer='root'@'localhost' view v2 as select t.a, t.b from t join (select count(*) as a from t1 join v1 on t1.b=v1.b group by v1.a) tt on t.a = tt.a;") + + var input []string + var output []struct { + SQL string + Plan []string + Warn []string + } + integrationSuiteData := core.GetIntegrationSuiteData() + integrationSuiteData.LoadTestCases(t, &input, &output) + for i, tt := range input { + testdata.OnRecord(func() { + output[i].SQL = tt + output[i].Plan = testdata.ConvertRowsToStrings(tk.MustQuery(tt).Rows()) + output[i].Warn = testdata.ConvertSQLWarnToStrings(tk.Session().GetSessionVars().StmtCtx.GetWarnings()) + }) + res := tk.MustQuery(tt) + res.Check(testkit.Rows(output[i].Plan...)) + require.Equal(t, output[i].Warn, testdata.ConvertSQLWarnToStrings(tk.Session().GetSessionVars().StmtCtx.GetWarnings())) + } +} + +func TestViewHintScope(t *testing.T) { + store := testkit.CreateMockStore(t) + tk := testkit.NewTestKit(t, store) + + tk.MustExec("use test") + tk.MustExec("drop view if exists v, v1") + tk.MustExec("drop table if exists t, t1, t2") + tk.MustExec("create table t(a int, b int);") + tk.MustExec("create table t1(a int, b int);") + tk.MustExec("create table t2(a int, b int);") + tk.MustExec("create table t3(a int, b int)") + tk.MustExec("create definer='root'@'localhost' view v as select t.a, t.b from t join (select count(*) as a from t1 join t2 join t3 where t1.b=t2.b and t2.a = t3.a group by t2.a) tt on t.a = tt.a;") + tk.MustExec("create definer='root'@'localhost' view v1 as select t.a, t.b from t join (select count(*) as a from t1 join v on t1.b=v.b group by v.a) tt on t.a = tt.a;") + tk.MustExec("create definer='root'@'localhost' view v2 as select t.a, t.b from t join (select count(*) as a from t1 join v1 on t1.b=v1.b group by v1.a) tt on t.a = tt.a;") + + var input []string + var output []struct { + SQL string + Plan []string + Warn []string + } + integrationSuiteData := core.GetIntegrationSuiteData() + integrationSuiteData.LoadTestCases(t, &input, &output) + for i, tt := range input { + testdata.OnRecord(func() { + output[i].SQL = tt + output[i].Plan = testdata.ConvertRowsToStrings(tk.MustQuery(tt).Rows()) + output[i].Warn = testdata.ConvertSQLWarnToStrings(tk.Session().GetSessionVars().StmtCtx.GetWarnings()) + }) + res := tk.MustQuery(tt) + res.Check(testkit.Rows(output[i].Plan...)) + require.Equal(t, output[i].Warn, testdata.ConvertSQLWarnToStrings(tk.Session().GetSessionVars().StmtCtx.GetWarnings())) + } +} + func TestReadFromStorageHintAndIsolationRead(t *testing.T) { store := testkit.CreateMockStore(t) tk := testkit.NewTestKit(t, store) tk.MustExec("use test") + tk.MustExec("set tidb_cost_model_version=2") tk.MustExec("drop table if exists t, tt, ttt") tk.MustExec("create table t(a int, b int, index ia(a))") tk.MustExec("set @@session.tidb_isolation_read_engines=\"tikv\"") @@ -1566,6 +1654,7 @@ func TestMaxMinEliminate(t *testing.T) { store := testkit.CreateMockStore(t) tk := testkit.NewTestKit(t, store) + tk.MustExec("set tidb_cost_model_version=2") tk.MustExec("use test") tk.MustExec("drop table if exists t") tk.MustExec("create table t(a int primary key)") @@ -1605,6 +1694,7 @@ func TestIndexJoinUniqueCompositeIndex(t *testing.T) { store := testkit.CreateMockStore(t) tk := testkit.NewTestKit(t, store) + tk.MustExec("set tidb_cost_model_version=2") tk.MustExec("use test") tk.MustExec("drop table if exists t1, t2") tk.Session().GetSessionVars().EnableClusteredIndex = variable.ClusteredIndexDefModeIntOnly @@ -1763,6 +1853,7 @@ func TestSubqueryWithTopN(t *testing.T) { store := testkit.CreateMockStore(t) tk := testkit.NewTestKit(t, store) + tk.MustExec("set tidb_cost_model_version=2") tk.MustExec("use test") tk.MustExec("drop table if exists t") tk.MustExec("create table t(a int, b int)") @@ -1923,6 +2014,7 @@ func TestIssue17813(t *testing.T) { func TestHintWithRequiredProperty(t *testing.T) { store := testkit.CreateMockStore(t) tk := testkit.NewTestKit(t, store) + tk.MustExec("set tidb_cost_model_version=2") tk.MustExec("set @@session.tidb_executor_concurrency = 4;") tk.MustExec("set @@session.tidb_hash_join_concurrency = 5;") tk.MustExec("set @@session.tidb_distsql_scan_concurrency = 15;") @@ -2126,6 +2218,7 @@ func TestIndexJoinInnerIndexNDV(t *testing.T) { store := testkit.CreateMockStore(t) tk := testkit.NewTestKit(t, store) tk.MustExec("use test") + tk.MustExec("set tidb_cost_model_version=2") tk.MustExec("drop table if exists t1, t2") tk.MustExec("create table t1(a int not null, b int not null, c int not null)") tk.MustExec("create table t2(a int not null, b int not null, c int not null, index idx1(a,b), index idx2(c))") @@ -2668,6 +2761,7 @@ func TestIndexJoinOnClusteredIndex(t *testing.T) { store := testkit.CreateMockStore(t) tk := testkit.NewTestKit(t, store) tk.MustExec("use test") + tk.MustExec("set tidb_cost_model_version=2") tk.Session().GetSessionVars().EnableClusteredIndex = variable.ClusteredIndexDefModeOn tk.MustExec("drop table if exists t1") tk.MustExec("create table t (a int, b varchar(20), c decimal(40,10), d int, primary key(a,b), key(c))") @@ -2786,6 +2880,7 @@ func TestBitColumnPushDown(t *testing.T) { store := testkit.CreateMockStore(t) tk := testkit.NewTestKit(t, store) tk.MustExec("use test") + tk.MustExec("set tidb_cost_model_version=1") tk.MustExec("create table t1(a bit(8), b int)") tk.MustExec("create table t2(a bit(8), b int)") tk.MustExec("insert into t1 values ('1', 1), ('2', 2), ('3', 3), ('4', 4), ('1', 1), ('2', 2), ('3', 3), ('4', 4)") @@ -4256,6 +4351,7 @@ func TestPushDownProjectionForTiKV(t *testing.T) { store := testkit.CreateMockStore(t) tk := testkit.NewTestKit(t, store) tk.MustExec("use test") + tk.MustExec("set tidb_cost_model_version=2") tk.MustExec("drop table if exists t") tk.MustExec("create table t (a int, b real, i int, id int, value decimal(6,3), name char(128), d decimal(6,3), s char(128), t datetime, c bigint as ((a+1)) virtual, e real as ((b+a)))") tk.MustExec("analyze table t") @@ -4282,6 +4378,7 @@ func TestPushDownProjectionForTiFlashCoprocessor(t *testing.T) { store := testkit.CreateMockStore(t) tk := testkit.NewTestKit(t, store) tk.MustExec("use test") + tk.MustExec("set tidb_cost_model_version=2") tk.MustExec("drop table if exists t") tk.MustExec("create table t (a int, b real, i int, id int, value decimal(6,3), name char(128), d decimal(6,3), s char(128), t datetime, c bigint as ((a+1)) virtual, e real as ((b+a)))") tk.MustExec("analyze table t") @@ -4322,6 +4419,7 @@ func TestPushDownProjectionForTiFlash(t *testing.T) { store := testkit.CreateMockStore(t) tk := testkit.NewTestKit(t, store) tk.MustExec("use test") + tk.MustExec("set tidb_cost_model_version=2") tk.MustExec("drop table if exists t") tk.MustExec("create table t (id int, value decimal(6,3), name char(128))") tk.MustExec("analyze table t") @@ -4362,6 +4460,7 @@ func TestPushDownSelectionForMPP(t *testing.T) { store := testkit.CreateMockStore(t) tk := testkit.NewTestKit(t, store) tk.MustExec("use test") + tk.MustExec("set tidb_cost_model_version=2") tk.MustExec("drop table if exists t") tk.MustExec("create table t (id int, value decimal(6,3), name char(128))") tk.MustExec("analyze table t") @@ -4404,6 +4503,7 @@ func TestPushDownProjectionForMPP(t *testing.T) { store := testkit.CreateMockStore(t) tk := testkit.NewTestKit(t, store) tk.MustExec("use test") + tk.MustExec("set tidb_cost_model_version=2") tk.MustExec("drop table if exists t") tk.MustExec("create table t (id int, value decimal(6,3), name char(128))") tk.MustExec("analyze table t") @@ -4446,10 +4546,11 @@ func TestReorderSimplifiedOuterJoins(t *testing.T) { tk := testkit.NewTestKit(t, store) tk.MustExec("use test") + tk.MustExec("set tidb_cost_model_version=2") tk.MustExec("drop table if exists t1,t2,t3") - tk.MustExec("create table t1 (pk char(32) primary key, col1 char(32), col2 varchar(40), col3 char(32), key (col1), key (col3), key (col2,col3), key (col1,col3))") - tk.MustExec("create table t2 (pk char(32) primary key, col1 varchar(100))") - tk.MustExec("create table t3 (pk char(32) primary key, keycol varchar(100), pad1 tinyint(1) default null, pad2 varchar(40), key (keycol,pad1,pad2))") + tk.MustExec("create table t1 (pk char(32) primary key nonclustered, col1 char(32), col2 varchar(40), col3 char(32), key (col1), key (col3), key (col2,col3), key (col1,col3))") + tk.MustExec("create table t2 (pk char(32) primary key nonclustered, col1 varchar(100))") + tk.MustExec("create table t3 (pk char(32) primary key nonclustered, keycol varchar(100), pad1 tinyint(1) default null, pad2 varchar(40), key (keycol,pad1,pad2))") var input []string var output []struct { @@ -4534,6 +4635,7 @@ func TestPushDownAggForMPP(t *testing.T) { store := testkit.CreateMockStore(t) tk := testkit.NewTestKit(t, store) tk.MustExec("use test") + tk.MustExec("set tidb_cost_model_version=2") tk.MustExec("drop table if exists t") tk.MustExec("create table t (id int, value decimal(6,3))") tk.MustExec("analyze table t") @@ -4575,6 +4677,7 @@ func TestMppUnionAll(t *testing.T) { store := testkit.CreateMockStore(t) tk := testkit.NewTestKit(t, store) tk.MustExec("use test") + tk.MustExec("set tidb_cost_model_version=2") tk.MustExec("drop table if exists t") tk.MustExec("drop table if exists t1") tk.MustExec("create table t (a int not null, b int, c varchar(20))") @@ -4615,6 +4718,7 @@ func TestMppJoinDecimal(t *testing.T) { store := testkit.CreateMockStore(t) tk := testkit.NewTestKit(t, store) tk.MustExec("use test") + tk.MustExec("set tidb_cost_model_version=2") tk.MustExec("drop table if exists t") tk.MustExec("drop table if exists tt") tk.MustExec("create table t (c1 decimal(8, 5), c2 decimal(9, 5), c3 decimal(9, 4) NOT NULL, c4 decimal(8, 4) NOT NULL, c5 decimal(40, 20))") @@ -4657,10 +4761,57 @@ func TestMppJoinDecimal(t *testing.T) { } } +func TestMppJoinExchangeColumnPrune(t *testing.T) { + store := testkit.CreateMockStore(t) + tk := testkit.NewTestKit(t, store) + tk.MustExec("use test") + tk.MustExec("drop table if exists t") + tk.MustExec("drop table if exists tt") + tk.MustExec("create table t (c1 int, c2 int, c3 int NOT NULL, c4 int NOT NULL, c5 int)") + tk.MustExec("create table tt (b1 int)") + tk.MustExec("analyze table t") + tk.MustExec("analyze table tt") + + // Create virtual tiflash replica info. + dom := domain.GetDomain(tk.Session()) + is := dom.InfoSchema() + db, exists := is.SchemaByName(model.NewCIStr("test")) + require.True(t, exists) + for _, tblInfo := range db.Tables { + if tblInfo.Name.L == "t" || tblInfo.Name.L == "tt" { + tblInfo.TiFlashReplica = &model.TiFlashReplicaInfo{ + Count: 1, + Available: true, + } + } + } + + tk.MustExec("set @@tidb_allow_mpp=1;") + tk.MustExec("set @@session.tidb_broadcast_join_threshold_size = 1") + tk.MustExec("set @@session.tidb_broadcast_join_threshold_count = 1") + + var input []string + var output []struct { + SQL string + Plan []string + } + integrationSuiteData := core.GetIntegrationSuiteData() + integrationSuiteData.LoadTestCases(t, &input, &output) + for i, tt := range input { + testdata.OnRecord(func() { + output[i].SQL = tt + output[i].Plan = testdata.ConvertRowsToStrings(tk.MustQuery(tt).Rows()) + }) + res := tk.MustQuery(tt) + res.Check(testkit.Rows(output[i].Plan...)) + } +} + func TestMppAggTopNWithJoin(t *testing.T) { store := testkit.CreateMockStore(t) tk := testkit.NewTestKit(t, store) tk.MustExec("use test") + tk.MustExec("set tidb_cost_model_version=2") tk.MustExec("drop table if exists t") tk.MustExec("create table t (id int, value decimal(6,3))") tk.MustExec("analyze table t") @@ -4702,6 +4853,7 @@ func TestLimitIndexLookUpKeepOrder(t *testing.T) { store := testkit.CreateMockStore(t) tk := testkit.NewTestKit(t, store) tk.MustExec("use test") + tk.MustExec("set tidb_cost_model_version=2") tk.MustExec("drop table if exists t;") tk.MustExec("create table t(a int, b int, c int, d int, index idx(a,b,c));") @@ -4920,7 +5072,7 @@ func TestMultiColMaxOneRow(t *testing.T) { tk.MustExec("use test") tk.MustExec("drop table if exists t1,t2") tk.MustExec("create table t1(a int)") - tk.MustExec("create table t2(a int, b int, c int, primary key(a,b))") + tk.MustExec("create table t2(a int, b int, c int, primary key(a,b) nonclustered)") var input []string var output []struct { @@ -5011,6 +5163,7 @@ func TestIssue24095(t *testing.T) { store := testkit.CreateMockStore(t) tk := testkit.NewTestKit(t, store) tk.MustExec("use test;") + tk.MustExec("set tidb_cost_model_version=2") tk.MustExec("drop table if exists t;") tk.MustExec("create table t (id int, value decimal(10,5));") tk.MustExec("desc format = 'brief' select count(*) from t join (select t.id, t.value v1 from t join t t1 on t.id = t1.id order by t.value limit 1) v on v.id = t.id and v.v1 = t.value;") @@ -5140,6 +5293,7 @@ func TestSequenceAsDataSource(t *testing.T) { tk := testkit.NewTestKit(t, store) tk.MustExec("use test") + tk.MustExec("set tidb_cost_model_version=2") tk.MustExec("drop sequence if exists s1, s2") tk.MustExec("create sequence s1") tk.MustExec("create sequence s2") @@ -5540,6 +5694,7 @@ func TestIndexJoinCost(t *testing.T) { store := testkit.CreateMockStore(t) tk := testkit.NewTestKit(t, store) tk.MustExec("use test") + tk.MustExec("set tidb_cost_model_version=2") tk.MustExec(`drop table if exists t_outer, t_inner_pk, t_inner_idx`) tk.MustExec(`create table t_outer (a int)`) tk.MustExec(`create table t_inner_pk (a int primary key)`) @@ -5549,52 +5704,53 @@ func TestIndexJoinCost(t *testing.T) { tk.MustExec("set @@tidb_enable_chunk_rpc = on") tk.MustQuery(`explain format=verbose select /*+ TIDB_INLJ(t_outer, t_inner_pk) */ * from t_outer, t_inner_pk where t_outer.a=t_inner_pk.a`).Check(testkit.Rows( // IndexJoin with inner TableScan - `IndexJoin_11 12487.50 206368.09 root inner join, inner:TableReader_8, outer key:test.t_outer.a, inner key:test.t_inner_pk.a, equal cond:eq(test.t_outer.a, test.t_inner_pk.a)`, - `├─TableReader_18(Build) 9990.00 36412.58 root data:Selection_17`, - `│ └─Selection_17 9990.00 465000.00 cop[tikv] not(isnull(test.t_outer.a))`, - `│ └─TableFullScan_16 10000.00 435000.00 cop[tikv] table:t_outer keep order:false, stats:pseudo`, - `└─TableReader_8(Probe) 1.00 3.88 root data:TableRangeScan_7`, - ` └─TableRangeScan_7 1.00 30.00 cop[tikv] table:t_inner_pk range: decided by [test.t_outer.a], keep order:false, stats:pseudo`)) + `IndexJoin_11 12487.50 11918182.35 root inner join, inner:TableReader_8, outer key:test.t_outer.a, inner key:test.t_inner_pk.a, equal cond:eq(test.t_outer.a, test.t_inner_pk.a)`, + `├─TableReader_18(Build) 9990.00 211131.09 root data:Selection_17`, + `│ └─Selection_17 9990.00 2534000.00 cop[tikv] not(isnull(test.t_outer.a))`, + `│ └─TableFullScan_16 10000.00 2035000.00 cop[tikv] table:t_outer keep order:false, stats:pseudo`, + `└─TableReader_8(Probe) 9990.00 10.25 root data:TableRangeScan_7`, + ` └─TableRangeScan_7 9990.00 122.10 cop[tikv] table:t_inner_pk range: decided by [test.t_outer.a], keep order:false, stats:pseudo`)) tk.MustQuery(`explain format=verbose select /*+ TIDB_INLJ(t_outer, t_inner_idx) */ t_inner_idx.a from t_outer, t_inner_idx where t_outer.a=t_inner_idx.a`).Check(testkit.Rows( // IndexJoin with inner IndexScan - `IndexJoin_10 12487.50 235192.19 root inner join, inner:IndexReader_9, outer key:test.t_outer.a, inner key:test.t_inner_idx.a, equal cond:eq(test.t_outer.a, test.t_inner_idx.a)`, - `├─TableReader_20(Build) 9990.00 36412.58 root data:Selection_19`, - `│ └─Selection_19 9990.00 465000.00 cop[tikv] not(isnull(test.t_outer.a))`, - `│ └─TableFullScan_18 10000.00 435000.00 cop[tikv] table:t_outer keep order:false, stats:pseudo`, - `└─IndexReader_9(Probe) 1.25 5.89 root index:Selection_8`, - ` └─Selection_8 1.25 58.18 cop[tikv] not(isnull(test.t_inner_idx.a))`, - ` └─IndexRangeScan_7 1.25 54.43 cop[tikv] table:t_inner_idx, index:a(a) range: decided by [eq(test.t_inner_idx.a, test.t_outer.a)], keep order:false, stats:pseudo`)) + `IndexJoin_10 12487.50 11918207.26 root inner join, inner:IndexReader_9, outer key:test.t_outer.a, inner key:test.t_inner_idx.a, equal cond:eq(test.t_outer.a, test.t_inner_idx.a)`, + `├─TableReader_20(Build) 9990.00 211131.09 root data:Selection_19`, + `│ └─Selection_19 9990.00 2534000.00 cop[tikv] not(isnull(test.t_outer.a))`, + `│ └─TableFullScan_18 10000.00 2035000.00 cop[tikv] table:t_outer keep order:false, stats:pseudo`, + `└─IndexReader_9(Probe) 12487.50 23.02 root index:Selection_8`, + ` └─Selection_8 12487.50 266.14 cop[tikv] not(isnull(test.t_inner_idx.a))`, + ` └─IndexRangeScan_7 12500.00 203.70 cop[tikv] table:t_inner_idx, index:a(a) range: decided by [eq(test.t_inner_idx.a, test.t_outer.a)], keep order:false, stats:pseudo`)) tk.MustQuery(`explain format=verbose select /*+ TIDB_INLJ(t_outer, t_inner_idx) */ * from t_outer, t_inner_idx where t_outer.a=t_inner_idx.a`).Check(testkit.Rows( // IndexJoin with inner IndexLookup - `IndexJoin_11 12487.50 531469.38 root inner join, inner:IndexLookUp_10, outer key:test.t_outer.a, inner key:test.t_inner_idx.a, equal cond:eq(test.t_outer.a, test.t_inner_idx.a)`, - `├─TableReader_23(Build) 9990.00 36412.58 root data:Selection_22`, - `│ └─Selection_22 9990.00 465000.00 cop[tikv] not(isnull(test.t_outer.a))`, - `│ └─TableFullScan_21 10000.00 435000.00 cop[tikv] table:t_outer keep order:false, stats:pseudo`, - `└─IndexLookUp_10(Probe) 1.25 35.55 root `, - ` ├─Selection_9(Build) 1.25 75.08 cop[tikv] not(isnull(test.t_inner_idx.a))`, - ` │ └─IndexRangeScan_7 1.25 71.32 cop[tikv] table:t_inner_idx, index:a(a) range: decided by [eq(test.t_inner_idx.a, test.t_outer.a)], keep order:false, stats:pseudo`, - ` └─TableRowIDScan_8(Probe) 1.25 71.25 cop[tikv] table:t_inner_idx keep order:false, stats:pseudo`)) + `IndexJoin_11 12487.50 11922930.69 root inner join, inner:IndexLookUp_10, outer key:test.t_outer.a, inner key:test.t_inner_idx.a, equal cond:eq(test.t_outer.a, test.t_inner_idx.a)`, + `├─TableReader_23(Build) 9990.00 211131.09 root data:Selection_22`, + `│ └─Selection_22 9990.00 2534000.00 cop[tikv] not(isnull(test.t_outer.a))`, + `│ └─TableFullScan_21 10000.00 2035000.00 cop[tikv] table:t_outer keep order:false, stats:pseudo`, + `└─IndexLookUp_10(Probe) 12487.50 2443.84 root `, + ` ├─Selection_9(Build) 12487.50 317.07 cop[tikv] not(isnull(test.t_inner_idx.a))`, + ` │ └─IndexRangeScan_7 12500.00 254.63 cop[tikv] table:t_inner_idx, index:a(a) range: decided by [eq(test.t_inner_idx.a, test.t_outer.a)], keep order:false, stats:pseudo`, + ` └─TableRowIDScan_8(Probe) 12487.50 284.13 cop[tikv] table:t_inner_idx keep order:false, stats:pseudo`)) tk.MustQuery("explain format=verbose select /*+ inl_hash_join(t_outer, t_inner_idx) */ t_inner_idx.a from t_outer, t_inner_idx where t_outer.a=t_inner_idx.a").Check(testkit.Rows( - `IndexHashJoin_12 12487.50 235192.19 root inner join, inner:IndexReader_9, outer key:test.t_outer.a, inner key:test.t_inner_idx.a, equal cond:eq(test.t_outer.a, test.t_inner_idx.a)`, - `├─TableReader_20(Build) 9990.00 36412.58 root data:Selection_19`, - `│ └─Selection_19 9990.00 465000.00 cop[tikv] not(isnull(test.t_outer.a))`, - `│ └─TableFullScan_18 10000.00 435000.00 cop[tikv] table:t_outer keep order:false, stats:pseudo`, - `└─IndexReader_9(Probe) 1.25 5.89 root index:Selection_8`, - ` └─Selection_8 1.25 58.18 cop[tikv] not(isnull(test.t_inner_idx.a))`, - ` └─IndexRangeScan_7 1.25 54.43 cop[tikv] table:t_inner_idx, index:a(a) range: decided by [eq(test.t_inner_idx.a, test.t_outer.a)], keep order:false, stats:pseudo`)) + `IndexHashJoin_12 12487.50 11918207.26 root inner join, inner:IndexReader_9, outer key:test.t_outer.a, inner key:test.t_inner_idx.a, equal cond:eq(test.t_outer.a, test.t_inner_idx.a)`, + `├─TableReader_20(Build) 9990.00 211131.09 root data:Selection_19`, + `│ └─Selection_19 9990.00 2534000.00 cop[tikv] not(isnull(test.t_outer.a))`, + `│ └─TableFullScan_18 10000.00 2035000.00 cop[tikv] table:t_outer keep order:false, stats:pseudo`, + `└─IndexReader_9(Probe) 12487.50 23.02 root index:Selection_8`, + ` └─Selection_8 12487.50 266.14 cop[tikv] not(isnull(test.t_inner_idx.a))`, + ` └─IndexRangeScan_7 12500.00 203.70 cop[tikv] table:t_inner_idx, index:a(a) range: decided by [eq(test.t_inner_idx.a, test.t_outer.a)], keep order:false, stats:pseudo`)) tk.MustQuery("explain format=verbose select /*+ inl_merge_join(t_outer, t_inner_idx) */ t_inner_idx.a from t_outer, t_inner_idx where t_outer.a=t_inner_idx.a").Check(testkit.Rows( - `IndexMergeJoin_17 12487.50 229210.68 root inner join, inner:IndexReader_15, outer key:test.t_outer.a, inner key:test.t_inner_idx.a`, - `├─TableReader_20(Build) 9990.00 36412.58 root data:Selection_19`, - `│ └─Selection_19 9990.00 465000.00 cop[tikv] not(isnull(test.t_outer.a))`, - `│ └─TableFullScan_18 10000.00 435000.00 cop[tikv] table:t_outer keep order:false, stats:pseudo`, - `└─IndexReader_15(Probe) 1.25 5.89 root index:Selection_14`, - ` └─Selection_14 1.25 58.18 cop[tikv] not(isnull(test.t_inner_idx.a))`, - ` └─IndexRangeScan_13 1.25 54.43 cop[tikv] table:t_inner_idx, index:a(a) range: decided by [eq(test.t_inner_idx.a, test.t_outer.a)], keep order:true, stats:pseudo`)) + `IndexMergeJoin_17 12487.50 11918207.26 root inner join, inner:IndexReader_15, outer key:test.t_outer.a, inner key:test.t_inner_idx.a`, + `├─TableReader_20(Build) 9990.00 211131.09 root data:Selection_19`, + `│ └─Selection_19 9990.00 2534000.00 cop[tikv] not(isnull(test.t_outer.a))`, + `│ └─TableFullScan_18 10000.00 2035000.00 cop[tikv] table:t_outer keep order:false, stats:pseudo`, + `└─IndexReader_15(Probe) 12487.50 23.02 root index:Selection_14`, + ` └─Selection_14 12487.50 266.14 cop[tikv] not(isnull(test.t_inner_idx.a))`, + ` └─IndexRangeScan_13 12500.00 203.70 cop[tikv] table:t_inner_idx, index:a(a) range: decided by [eq(test.t_inner_idx.a, test.t_outer.a)], keep order:true, stats:pseudo`)) } func TestHeuristicIndexSelection(t *testing.T) { store := testkit.CreateMockStore(t) tk := testkit.NewTestKit(t, store) tk.MustExec("use test") + tk.MustExec("set tidb_cost_model_version=2") tk.MustExec("drop table if exists t1, t2") tk.MustExec("create table t1(a int, b int, c int, d int, e int, f int, g int, primary key (a), unique key c_d_e (c, d, e), unique key f (f), unique key f_g (f, g), key g (g))") tk.MustExec("create table t2(a int, b int, c int, d int, unique index idx_a (a), unique index idx_b_c (b, c), unique index idx_b_c_a_d (b, c, a, d))") @@ -5627,6 +5783,7 @@ func TestOutputSkylinePruningInfo(t *testing.T) { store := testkit.CreateMockStore(t) tk := testkit.NewTestKit(t, store) tk.MustExec("use test") + tk.MustExec("set tidb_cost_model_version=2") tk.MustExec("drop table if exists t") tk.MustExec("create table t(a int, b int, c int, d int, e int, f int, g int, primary key (a), unique key c_d_e (c, d, e), unique key f (f), unique key f_g (f, g), key g (g))") @@ -5656,6 +5813,7 @@ func TestPreferRangeScanForUnsignedIntHandle(t *testing.T) { store := testkit.CreateMockStore(t) tk := testkit.NewTestKit(t, store) tk.MustExec("use test") + tk.MustExec("set tidb_cost_model_version=2") tk.MustExec("drop table if exists t") tk.MustExec("create table t(a int unsigned primary key, b int, c int, index idx_b(b))") tk.MustExec("insert into t values (1,2,3), (4,5,6), (7,8,9), (10,11,12), (13,14,15)") @@ -5725,6 +5883,7 @@ func TestIssues27130(t *testing.T) { tk.MustExec("use test") tk.MustExec("drop table if exists t1") + tk.MustExec("set tidb_cost_model_version=2") tk.MustExec("create table t1( a enum('y','b','Abc','null'),b enum('y','b','Abc','null'),key(a));") tk.MustQuery(`explain format=brief select * from t1 where a like "A%"`).Check(testkit.Rows( "TableReader 8000.00 root data:Selection", @@ -5740,14 +5899,14 @@ func TestIssues27130(t *testing.T) { tk.MustExec("drop table if exists t2") tk.MustExec("create table t2( a enum('y','b','Abc','null'),b enum('y','b','Abc','null'),key(a, b));") tk.MustQuery(`explain format=brief select * from t2 where a like "A%"`).Check(testkit.Rows( - "TableReader 8000.00 root data:Selection", + "IndexReader 8000.00 root index:Selection", "└─Selection 8000.00 cop[tikv] like(test.t2.a, \"A%\", 92)", - " └─TableFullScan 10000.00 cop[tikv] table:t2 keep order:false, stats:pseudo", + " └─IndexFullScan 10000.00 cop[tikv] table:t2, index:a(a, b) keep order:false, stats:pseudo", )) tk.MustQuery(`explain format=brief select * from t2 where a like "A%" and b like "A%"`).Check(testkit.Rows( - "TableReader 8000.00 root data:Selection", + "IndexReader 8000.00 root index:Selection", "└─Selection 8000.00 cop[tikv] like(test.t2.a, \"A%\", 92), like(test.t2.b, \"A%\", 92)", - " └─TableFullScan 10000.00 cop[tikv] table:t2 keep order:false, stats:pseudo", + " └─IndexFullScan 10000.00 cop[tikv] table:t2, index:a(a, b) keep order:false, stats:pseudo", )) tk.MustExec("drop table if exists t3") @@ -6013,6 +6172,7 @@ func TestRejectSortForMPP(t *testing.T) { store := testkit.CreateMockStore(t) tk := testkit.NewTestKit(t, store) tk.MustExec("use test") + tk.MustExec("set tidb_cost_model_version=2") tk.MustExec("drop table if exists t") tk.MustExec("create table t (id int, value decimal(6,3), name char(128))") tk.MustExec("analyze table t") @@ -6286,6 +6446,7 @@ func TestIndexMergeWithCorrelatedColumns(t *testing.T) { tk := testkit.NewTestKit(t, store) tk.MustExec("use test;") + tk.MustExec("set tidb_cost_model_version=2") tk.MustExec("drop table if exists t1, t2;") tk.MustExec("create table t1(c1 int, c2 int, c3 int, primary key(c1), key(c2));") tk.MustExec("insert into t1 values(1, 1, 1);") @@ -6471,6 +6632,7 @@ func TestAggPushToCopForCachedTable(t *testing.T) { tk := testkit.NewTestKit(t, store) tk.MustExec("use test") + tk.MustExec("set tidb_cost_model_version=2") tk.MustExec(`create table t32157( process_code varchar(8) NOT NULL, ctrl_class varchar(2) NOT NULL, @@ -6478,13 +6640,13 @@ func TestAggPushToCopForCachedTable(t *testing.T) { oper_no varchar(12) DEFAULT NULL, modify_date datetime DEFAULT NULL, d_c_flag varchar(2) NOT NULL, - PRIMARY KEY (process_code,ctrl_class,d_c_flag));`) + PRIMARY KEY (process_code,ctrl_class,d_c_flag) NONCLUSTERED);`) tk.MustExec("insert into t32157 values ('GDEP0071', '05', '1', '10000', '2016-06-29 00:00:00', 'C')") tk.MustExec("insert into t32157 values ('GDEP0071', '05', '0', '0000', '2016-06-01 00:00:00', 'D')") tk.MustExec("alter table t32157 cache") tk.MustQuery("explain format = 'brief' select /*+AGG_TO_COP()*/ count(*) from t32157 ignore index(primary) where process_code = 'GDEP0071'").Check(testkit.Rows( - "StreamAgg 1.00 root funcs:count(1)->Column#8]\n" + + "HashAgg 1.00 root funcs:count(1)->Column#8]\n" + "[└─UnionScan 10.00 root eq(test.t32157.process_code, \"GDEP0071\")]\n" + "[ └─TableReader 10.00 root data:Selection]\n" + "[ └─Selection 10.00 cop[tikv] eq(test.t32157.process_code, \"GDEP0071\")]\n" + @@ -6510,6 +6672,7 @@ func TestIssue31240(t *testing.T) { tk.MustExec("use test") tk.MustExec("create table t31240(a int, b int);") tk.MustExec("set @@tidb_allow_mpp = 0") + tk.MustExec("set tidb_cost_model_version=2") tbl, err := dom.InfoSchema().TableByName(model.CIStr{O: "test", L: "test"}, model.CIStr{O: "t31240", L: "t31240"}) require.NoError(t, err) @@ -6639,6 +6802,7 @@ func TestTiFlashFineGrainedShuffle(t *testing.T) { store, dom := testkit.CreateMockStoreAndDomain(t) tk := testkit.NewTestKit(t, store) tk.MustExec("use test") + tk.MustExec("set tidb_cost_model_version=2") tk.MustExec("set @@tidb_isolation_read_engines = 'tiflash'") tk.MustExec("set @@tidb_enforce_mpp = on") tk.MustExec("drop table if exists t1;") @@ -6859,10 +7023,10 @@ func TestIssue29663(t *testing.T) { " └─Apply_20 10000.00 root CARTESIAN left outer join", " ├─TableReader_22(Build) 10000.00 root data:TableFullScan_21", " │ └─TableFullScan_21 10000.00 cop[tikv] table:one keep order:false, stats:pseudo", - " └─MaxOneRow_23(Probe) 1.00 root ", - " └─TableReader_26 2.00 root data:Selection_25", - " └─Selection_25 2.00 cop[tikv] eq(test.t2.c, test.t1.b)", - " └─TableFullScan_24 2000.00 cop[tikv] table:two keep order:false, stats:pseudo")) + " └─MaxOneRow_23(Probe) 10000.00 root ", + " └─TableReader_26 20000.00 root data:Selection_25", + " └─Selection_25 20000.00 cop[tikv] eq(test.t2.c, test.t1.b)", + " └─TableFullScan_24 20000000.00 cop[tikv] table:two keep order:false, stats:pseudo")) } func TestIssue31609(t *testing.T) { @@ -6966,6 +7130,7 @@ func TestIssue36194(t *testing.T) { store, dom := testkit.CreateMockStoreAndDomain(t) tk := testkit.NewTestKit(t, store) tk.MustExec("use test") + tk.MustExec("set tidb_cost_model_version=2") tk.MustExec("drop table if exists t") tk.MustExec("create table t(a int)") // create virtual tiflash replica. @@ -6980,7 +7145,7 @@ func TestIssue36194(t *testing.T) { } } } - tk.MustQuery("explain format = 'brief' select * from t where a + 1 > 20 limit 100;;").Check(testkit.Rows( + tk.MustQuery("explain format = 'brief' select /*+ read_from_storage(tiflash[t]) */ * from t where a + 1 > 20 limit 100;;").Check(testkit.Rows( "Limit 100.00 root offset:0, count:100", "└─TableReader 100.00 root data:ExchangeSender", " └─ExchangeSender 100.00 mpp[tiflash] ExchangeType: PassThrough", @@ -7015,6 +7180,7 @@ func TestAggWithJsonPushDownToTiFlash(t *testing.T) { store := testkit.CreateMockStore(t) tk := testkit.NewTestKit(t, store) tk.MustExec("use test") + tk.MustExec("set tidb_cost_model_version=2") tk.MustExec("drop table if exists t") tk.MustExec("create table t(a json);") tk.MustExec("insert into t values(null);") @@ -7528,6 +7694,10 @@ func TestCorColRangeWithRangeMaxSize(t *testing.T) { tk.MustExec("insert into t3 values (2), (4)") tk.MustExec("insert into mysql.opt_rule_blacklist value(\"decorrelate\")") tk.MustExec("admin reload opt_rule_blacklist") + defer func() { + tk.MustExec("delete from mysql.opt_rule_blacklist where name = \"decorrelate\"") + tk.MustExec("admin reload opt_rule_blacklist") + }() // Correlated column in index range. tk.MustExec("set @@tidb_opt_range_max_size=1000") @@ -7693,3 +7863,70 @@ func TestOuterJoinEliminationForIssue18216(t *testing.T) { tk.MustExec("select group_concat(c order by (select group_concat(c order by a) from t2 where a=t1.a)) from t1; ") tk.MustQuery("select group_concat(c order by (select group_concat(c order by c) from t2 where a=t1.a), c desc) from t1;").Check(testkit.Rows("2,1,4,3")) } + +func TestNullConditionForPrefixIndex(t *testing.T) { + store := testkit.CreateMockStore(t) + tk := testkit.NewTestKit(t, store) + tk.MustExec("use test") + tk.MustExec(`CREATE TABLE t1 ( + id char(1) DEFAULT NULL, + c1 varchar(255) DEFAULT NULL, + c2 text DEFAULT NULL, + KEY idx1 (c1), + KEY idx2 (c1,c2(5)) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin`) + tk.MustExec("set tidb_cost_model_version=2") + tk.MustExec("create table t2(a int, b varchar(10), index idx(b(5)))") + tk.MustExec("create table t3(a int, b varchar(10), c int, primary key (a, b(5)) clustered)") + tk.MustExec("set tidb_opt_prefix_index_single_scan = 1") + tk.MustExec("insert into t1 values ('a', '0xfff', '111111'), ('b', '0xfff', '22 '), ('c', '0xfff', ''), ('d', '0xfff', null)") + tk.MustExec("insert into t2 values (1, 'aaaaaa'), (2, 'bb '), (3, ''), (4, null)") + tk.MustExec("insert into t3 values (1, 'aaaaaa', 2), (1, 'bb ', 3), (1, '', 4)") + + var input []string + var output []struct { + SQL string + Plan []string + Result []string + } + integrationSuiteData := core.GetIntegrationSuiteData() + integrationSuiteData.LoadTestCases(t, &input, &output) + for i, tt := range input { + testdata.OnRecord(func() { + output[i].SQL = tt + output[i].Plan = testdata.ConvertRowsToStrings(tk.MustQuery("explain format='brief' " + tt).Rows()) + output[i].Result = testdata.ConvertRowsToStrings(tk.MustQuery(tt).Sort().Rows()) + }) + tk.MustQuery("explain format='brief' " + tt).Check(testkit.Rows(output[i].Plan...)) + tk.MustQuery(tt).Sort().Check(testkit.Rows(output[i].Result...)) + } + + // test plan cache + tk.MustExec(`set tidb_enable_prepared_plan_cache=1`) + tk.MustExec("set @@tidb_enable_collect_execution_info=0") + tk.MustExec("prepare stmt from 'select count(1) from t1 where c1 = ? and c2 is not null'") + tk.MustExec("set @a = '0xfff'") + tk.MustQuery("execute stmt using @a").Check(testkit.Rows("3")) + tk.MustQuery("execute stmt using @a").Check(testkit.Rows("3")) + tk.MustQuery(`select @@last_plan_from_cache`).Check(testkit.Rows("1")) + tk.MustQuery("execute stmt using @a").Check(testkit.Rows("3")) + tkProcess := tk.Session().ShowProcess() + ps := []*util.ProcessInfo{tkProcess} + tk.Session().SetSessionManager(&testkit.MockSessionManager{PS: ps}) + tk.MustQuery(fmt.Sprintf("explain for connection %d", tkProcess.ID)).Check(testkit.Rows( + "HashAgg_12 1.00 root funcs:count(Column#6)->Column#5", + "└─IndexReader_13 1.00 root index:HashAgg_6", + " └─HashAgg_6 1.00 cop[tikv] funcs:count(1)->Column#6", + " └─IndexRangeScan_11 99.90 cop[tikv] table:t1, index:idx2(c1, c2) range:[\"0xfff\" -inf,\"0xfff\" +inf], keep order:false, stats:pseudo")) +} + +func TestAutoIncrementCheckWithCheckConstraint(t *testing.T) { + store := testkit.CreateMockStore(t) + tk := testkit.NewTestKit(t, store) + tk.MustExec("use test") + tk.MustExec(`CREATE TABLE t ( + id INTEGER NOT NULL AUTO_INCREMENT, + CHECK (id IN (0, 1)), + KEY idx_autoinc_id (id) + )`) +} diff --git a/planner/core/logical_plan_builder.go b/planner/core/logical_plan_builder.go index 4d6e99f8a81fb..18edbd52be994 100644 --- a/planner/core/logical_plan_builder.go +++ b/planner/core/logical_plan_builder.go @@ -59,6 +59,7 @@ import ( "github.com/pingcap/tidb/util/collate" "github.com/pingcap/tidb/util/dbterror" "github.com/pingcap/tidb/util/hack" + "github.com/pingcap/tidb/util/hint" "github.com/pingcap/tidb/util/logutil" "github.com/pingcap/tidb/util/mathutil" "github.com/pingcap/tidb/util/plancodec" @@ -76,6 +77,8 @@ const ( TiDBBroadCastJoin = "tidb_bcj" // HintBCJ indicates applying broadcast join by force. HintBCJ = "broadcast_join" + // HintShuffleJoin indicates applying shuffle join by force. + HintShuffleJoin = "shuffle_join" // HintStraightJoin causes TiDB to join tables in the order in which they appear in the FROM clause. HintStraightJoin = "straight_join" @@ -102,6 +105,10 @@ const ( HintHashAgg = "hash_agg" // HintStreamAgg is hint enforce stream aggregation. HintStreamAgg = "stream_agg" + // HintMPP1PhaseAgg enforces the optimizer to use the mpp-1phase aggregation. + HintMPP1PhaseAgg = "mpp_1phase_agg" + // HintMPP2PhaseAgg enforces the optimizer to use the mpp-2phase aggregation. + HintMPP2PhaseAgg = "mpp_2phase_agg" // HintUseIndex is hint enforce using some indexes. HintUseIndex = "use_index" // HintIgnoreIndex is hint enforce ignoring some indexes. @@ -586,6 +593,9 @@ func (p *LogicalJoin) setPreferredJoinTypeAndOrder(hintInfo *tableHintInfo) { if hintInfo.ifPreferBroadcastJoin(lhsAlias, rhsAlias) { p.preferJoinType |= preferBCJoin } + if hintInfo.ifPreferShuffleJoin(lhsAlias, rhsAlias) { + p.preferJoinType |= preferShuffleJoin + } if hintInfo.ifPreferHashJoin(lhsAlias, rhsAlias) { p.preferJoinType |= preferHashJoin } @@ -3564,6 +3574,7 @@ func (b *PlanBuilder) pushTableHints(hints []*ast.TableOptimizerHint, currentLev hints = b.hintProcessor.GetCurrentStmtHints(hints, currentLevel) var ( sortMergeTables, inljTables, inlhjTables, inlmjTables, hashJoinTables, bcTables []hintTableInfo + shuffleJoinTables []hintTableInfo indexHintList, indexMergeHintList []indexHintInfo tiflashTables, tikvTables []hintTableInfo aggHints aggHintInfo @@ -3590,6 +3601,8 @@ func (b *PlanBuilder) pushTableHints(hints []*ast.TableOptimizerHint, currentLev sortMergeTables = append(sortMergeTables, tableNames2HintTableInfo(b.ctx, hint.HintName.L, hint.Tables, b.hintProcessor, currentLevel)...) case TiDBBroadCastJoin, HintBCJ: bcTables = append(bcTables, tableNames2HintTableInfo(b.ctx, hint.HintName.L, hint.Tables, b.hintProcessor, currentLevel)...) + case HintShuffleJoin: + shuffleJoinTables = append(shuffleJoinTables, tableNames2HintTableInfo(b.ctx, hint.HintName.L, hint.Tables, b.hintProcessor, currentLevel)...) case TiDBIndexNestedLoopJoin, HintINLJ: inljTables = append(inljTables, tableNames2HintTableInfo(b.ctx, hint.HintName.L, hint.Tables, b.hintProcessor, currentLevel)...) case HintINLHJ: @@ -3598,6 +3611,10 @@ func (b *PlanBuilder) pushTableHints(hints []*ast.TableOptimizerHint, currentLev inlmjTables = append(inlmjTables, tableNames2HintTableInfo(b.ctx, hint.HintName.L, hint.Tables, b.hintProcessor, currentLevel)...) case TiDBHashJoin, HintHJ: hashJoinTables = append(hashJoinTables, tableNames2HintTableInfo(b.ctx, hint.HintName.L, hint.Tables, b.hintProcessor, currentLevel)...) + case HintMPP1PhaseAgg: + aggHints.preferAggType |= preferMPP1PhaseAgg + case HintMPP2PhaseAgg: + aggHints.preferAggType |= preferMPP2PhaseAgg case HintHashJoinBuild: hjBuildTables = append(hjBuildTables, tableNames2HintTableInfo(b.ctx, hint.HintName.L, hint.Tables, b.hintProcessor, currentLevel)...) case HintHashJoinProbe: @@ -3718,6 +3735,7 @@ func (b *PlanBuilder) pushTableHints(hints []*ast.TableOptimizerHint, currentLev b.tableHintInfo = append(b.tableHintInfo, tableHintInfo{ sortMergeJoinTables: sortMergeTables, broadcastJoinTables: bcTables, + shuffleJoinTables: shuffleJoinTables, indexNestedLoopJoinTables: indexNestedLoopJoinTables{inljTables, inlhjTables, inlmjTables}, hashJoinTables: hashJoinTables, indexHintList: indexHintList, @@ -3750,6 +3768,7 @@ func (b *PlanBuilder) popTableHints() { b.appendUnmatchedJoinHintWarning(HintINLMJ, "", hintInfo.indexNestedLoopJoinTables.inlmjTables) b.appendUnmatchedJoinHintWarning(HintSMJ, TiDBMergeJoin, hintInfo.sortMergeJoinTables) b.appendUnmatchedJoinHintWarning(HintBCJ, TiDBBroadCastJoin, hintInfo.broadcastJoinTables) + b.appendUnmatchedJoinHintWarning(HintShuffleJoin, HintShuffleJoin, hintInfo.shuffleJoinTables) b.appendUnmatchedJoinHintWarning(HintHJ, TiDBHashJoin, hintInfo.hashJoinTables) b.appendUnmatchedJoinHintWarning(HintHashJoinBuild, "", hintInfo.hjBuildTables) b.appendUnmatchedJoinHintWarning(HintHashJoinProbe, "", hintInfo.hjProbeTables) @@ -4393,7 +4412,36 @@ func (b *PlanBuilder) buildDataSource(ctx context.Context, tn *ast.TableName, as if tn.TableSample != nil { return nil, expression.ErrInvalidTableSample.GenWithStackByArgs("Unsupported TABLESAMPLE in views") } - return b.BuildDataSourceFromView(ctx, dbName, tableInfo) + + // Get the hints belong to the current view. + currentQBNameMap4View := make(map[string][]ast.HintTable) + currentViewHints := make(map[string][]*ast.TableOptimizerHint) + for qbName, viewQBNameHintTable := range b.hintProcessor.QbNameMap4View { + if len(viewQBNameHintTable) == 0 { + continue + } + viewSelectOffset := b.getSelectOffset() + + var viewHintSelectOffset int + if viewQBNameHintTable[0].QBName.L == "" { + // If we do not explicit set the qbName, we will set the empty qb name to @sel_1. + viewHintSelectOffset = 1 + } else { + viewHintSelectOffset = b.hintProcessor.GetHintOffset(viewQBNameHintTable[0].QBName, viewSelectOffset) + } + + // Check whether the current view can match the view name in the hint. + if viewQBNameHintTable[0].TableName.L == tblName.L && viewHintSelectOffset == viewSelectOffset { + // If the view hint can match the current view, we pop the first view table in the query block hint's table list. + // It means the hint belong the current view, the first view name in hint is matched. + // Because of the nested views, so we should check the left table list in hint when build the data source from the view inside the current view. + currentQBNameMap4View[qbName] = viewQBNameHintTable[1:] + currentViewHints[qbName] = b.hintProcessor.QbHints4View[qbName] + delete(b.hintProcessor.QbNameMap4View, qbName) + delete(b.hintProcessor.QbHints4View, qbName) + } + } + return b.BuildDataSourceFromView(ctx, dbName, tableInfo, currentQBNameMap4View, currentViewHints) } if tableInfo.IsSequence() { @@ -4923,7 +4971,10 @@ func (b *PlanBuilder) checkRecursiveView(dbName model.CIStr, tableName model.CIS } // BuildDataSourceFromView is used to build LogicalPlan from view -func (b *PlanBuilder) BuildDataSourceFromView(ctx context.Context, dbName model.CIStr, tableInfo *model.TableInfo) (LogicalPlan, error) { +// qbNameMap4View and viewHints are used for the view's hint. +// qbNameMap4View maps the query block name to the view table lists. +// viewHints group the view hints based on the view's query block name. +func (b *PlanBuilder) BuildDataSourceFromView(ctx context.Context, dbName model.CIStr, tableInfo *model.TableInfo, qbNameMap4View map[string][]ast.HintTable, viewHints map[string][]*ast.TableOptimizerHint) (LogicalPlan, error) { viewDepth := b.ctx.GetSessionVars().StmtCtx.ViewDepth b.ctx.GetSessionVars().StmtCtx.ViewDepth++ deferFunc, err := b.checkRecursiveView(dbName, tableInfo.Name) @@ -4958,6 +5009,50 @@ func (b *PlanBuilder) BuildDataSourceFromView(ctx context.Context, dbName model. b.buildingCTE = o }() + hintProcessor := &hint.BlockHintProcessor{Ctx: b.ctx} + selectNode.Accept(hintProcessor) + currentQbNameMap4View := make(map[string][]ast.HintTable) + currentQbHints4View := make(map[string][]*ast.TableOptimizerHint) + currentQbHints := make(map[int][]*ast.TableOptimizerHint) + currentQbNameMap := make(map[string]int) + + for qbName, viewQbNameHint := range qbNameMap4View { + // Check whether the view hint belong the current view or its nested views. + selectOffset := -1 + qbNameMap4View[qbName] = viewQbNameHint + if len(viewQbNameHint) == 0 { + selectOffset = 1 + } else if len(viewQbNameHint) == 1 && viewQbNameHint[0].TableName.L == "" { + selectOffset = hintProcessor.GetHintOffset(viewQbNameHint[0].QBName, -1) + } else { + currentQbNameMap4View[qbName] = viewQbNameHint + currentQbHints4View[qbName] = viewHints[qbName] + } + + if selectOffset != -1 { + // If the hint belongs to the current view and not belongs to it's nested views, we should convert the view hint to the normal hint. + // After we convert the view hint to the normal hint, it can be reused the origin hint's infrastructure. + currentQbHints[selectOffset] = viewHints[qbName] + currentQbNameMap[qbName] = selectOffset + + delete(qbNameMap4View, qbName) + delete(viewHints, qbName) + } + } + + hintProcessor.QbNameMap4View = qbNameMap4View + hintProcessor.QbHints4View = viewHints + hintProcessor.QbHints = currentQbHints + hintProcessor.QbNameMap = currentQbNameMap + + originHintProcessor := b.hintProcessor + originPlannerSelectBlockAsName := b.ctx.GetSessionVars().PlannerSelectBlockAsName + b.hintProcessor = hintProcessor + b.ctx.GetSessionVars().PlannerSelectBlockAsName = make([]ast.HintTable, hintProcessor.MaxSelectStmtOffset()+1) + defer func() { + b.hintProcessor = originHintProcessor + b.ctx.GetSessionVars().PlannerSelectBlockAsName = originPlannerSelectBlockAsName + }() selectLogicalPlan, err := b.Build(ctx, selectNode) if err != nil { if terror.ErrorNotEqual(err, ErrViewRecursive) && @@ -5398,7 +5493,7 @@ func (b *PlanBuilder) buildUpdate(ctx context.Context, update *ast.UpdateStmt) ( } updt.PartitionedTable = b.partitionedTable updt.tblID2Table = tblID2table - err = updt.buildOnUpdateFKChecks(b.ctx, b.is, tblID2table) + err = updt.buildOnUpdateFKTriggers(b.ctx, b.is, tblID2table) return updt, err } @@ -5874,7 +5969,7 @@ func (b *PlanBuilder) buildDelete(ctx context.Context, ds *ast.DeleteStmt) (Plan if err != nil { return nil, err } - err = del.buildOnDeleteFKChecks(b.ctx, b.is, tblID2table) + err = del.buildOnDeleteFKTriggers(b.ctx, b.is, tblID2table) return del, err } diff --git a/planner/core/logical_plan_test.go b/planner/core/logical_plan_test.go index 4e320c62e2e50..7458c7307c19c 100644 --- a/planner/core/logical_plan_test.go +++ b/planner/core/logical_plan_test.go @@ -502,7 +502,7 @@ func TestSubquery(t *testing.T) { stmt, err := s.p.ParseOneStmt(ca, "", "") require.NoError(t, err, comment) - err = Preprocess(s.ctx, stmt, WithPreprocessorReturn(&PreprocessorReturn{InfoSchema: s.is})) + err = Preprocess(context.Background(), s.ctx, stmt, WithPreprocessorReturn(&PreprocessorReturn{InfoSchema: s.is})) require.NoError(t, err) p, _, err := BuildLogicalPlanForTest(ctx, s.ctx, stmt, s.is) require.NoError(t, err) @@ -530,7 +530,7 @@ func TestPlanBuilder(t *testing.T) { require.NoError(t, err, comment) s.ctx.GetSessionVars().SetHashJoinConcurrency(1) - err = Preprocess(s.ctx, stmt, WithPreprocessorReturn(&PreprocessorReturn{InfoSchema: s.is})) + err = Preprocess(context.Background(), s.ctx, stmt, WithPreprocessorReturn(&PreprocessorReturn{InfoSchema: s.is})) require.NoError(t, err) p, _, err := BuildLogicalPlanForTest(ctx, s.ctx, stmt, s.is) require.NoError(t, err) @@ -927,7 +927,7 @@ func TestValidate(t *testing.T) { comment := fmt.Sprintf("for %s", sql) stmt, err := s.p.ParseOneStmt(sql, "", "") require.NoError(t, err, comment) - err = Preprocess(s.ctx, stmt, WithPreprocessorReturn(&PreprocessorReturn{InfoSchema: s.is})) + err = Preprocess(context.Background(), s.ctx, stmt, WithPreprocessorReturn(&PreprocessorReturn{InfoSchema: s.is})) require.NoError(t, err) _, _, err = BuildLogicalPlanForTest(ctx, s.ctx, stmt, s.is) if tt.err == nil { @@ -1422,7 +1422,7 @@ func TestVisitInfo(t *testing.T) { require.NoError(t, err, comment) // TODO: to fix, Table 'test.ttt' doesn't exist - _ = Preprocess(s.ctx, stmt, WithPreprocessorReturn(&PreprocessorReturn{InfoSchema: s.is})) + _ = Preprocess(context.Background(), s.ctx, stmt, WithPreprocessorReturn(&PreprocessorReturn{InfoSchema: s.is})) sctx := MockContext() builder, _ := NewPlanBuilder().Init(sctx, s.is, &hint.BlockHintProcessor{}) domain.GetDomain(sctx).MockInfoCacheAndLoadInfoSchema(s.is) @@ -1502,7 +1502,7 @@ func TestUnion(t *testing.T) { comment := fmt.Sprintf("case:%v sql:%s", i, tt) stmt, err := s.p.ParseOneStmt(tt, "", "") require.NoError(t, err, comment) - err = Preprocess(s.ctx, stmt, WithPreprocessorReturn(&PreprocessorReturn{InfoSchema: s.is})) + err = Preprocess(context.Background(), s.ctx, stmt, WithPreprocessorReturn(&PreprocessorReturn{InfoSchema: s.is})) require.NoError(t, err) sctx := MockContext() builder, _ := NewPlanBuilder().Init(sctx, s.is, &hint.BlockHintProcessor{}) @@ -1535,7 +1535,7 @@ func TestTopNPushDown(t *testing.T) { comment := fmt.Sprintf("case:%v sql:%s", i, tt) stmt, err := s.p.ParseOneStmt(tt, "", "") require.NoError(t, err, comment) - err = Preprocess(s.ctx, stmt, WithPreprocessorReturn(&PreprocessorReturn{InfoSchema: s.is})) + err = Preprocess(context.Background(), s.ctx, stmt, WithPreprocessorReturn(&PreprocessorReturn{InfoSchema: s.is})) require.NoError(t, err) sctx := MockContext() builder, _ := NewPlanBuilder().Init(sctx, s.is, &hint.BlockHintProcessor{}) @@ -1612,7 +1612,7 @@ func TestOuterJoinEliminator(t *testing.T) { comment := fmt.Sprintf("case:%v sql:%s", i, tt) stmt, err := s.p.ParseOneStmt(tt, "", "") require.NoError(t, err, comment) - err = Preprocess(s.ctx, stmt, WithPreprocessorReturn(&PreprocessorReturn{InfoSchema: s.is})) + err = Preprocess(context.Background(), s.ctx, stmt, WithPreprocessorReturn(&PreprocessorReturn{InfoSchema: s.is})) require.NoError(t, err) sctx := MockContext() builder, _ := NewPlanBuilder().Init(sctx, s.is, &hint.BlockHintProcessor{}) @@ -1649,7 +1649,7 @@ func TestSelectView(t *testing.T) { comment := fmt.Sprintf("case:%v sql:%s", i, tt.sql) stmt, err := s.p.ParseOneStmt(tt.sql, "", "") require.NoError(t, err, comment) - err = Preprocess(s.ctx, stmt, WithPreprocessorReturn(&PreprocessorReturn{InfoSchema: s.is})) + err = Preprocess(context.Background(), s.ctx, stmt, WithPreprocessorReturn(&PreprocessorReturn{InfoSchema: s.is})) require.NoError(t, err) builder, _ := NewPlanBuilder().Init(MockContext(), s.is, &hint.BlockHintProcessor{}) p, err := builder.Build(ctx, stmt) @@ -1732,7 +1732,7 @@ func (s *plannerSuiteWithOptimizeVars) optimize(ctx context.Context, sql string) if err != nil { return nil, nil, err } - err = Preprocess(s.ctx, stmt, WithPreprocessorReturn(&PreprocessorReturn{InfoSchema: s.is})) + err = Preprocess(context.Background(), s.ctx, stmt, WithPreprocessorReturn(&PreprocessorReturn{InfoSchema: s.is})) if err != nil { return nil, nil, err } @@ -1841,7 +1841,7 @@ func TestSkylinePruning(t *testing.T) { comment := fmt.Sprintf("case:%v sql:%s", i, tt.sql) stmt, err := s.p.ParseOneStmt(tt.sql, "", "") require.NoError(t, err, comment) - err = Preprocess(s.ctx, stmt, WithPreprocessorReturn(&PreprocessorReturn{InfoSchema: s.is})) + err = Preprocess(context.Background(), s.ctx, stmt, WithPreprocessorReturn(&PreprocessorReturn{InfoSchema: s.is})) require.NoError(t, err) sctx := MockContext() builder, _ := NewPlanBuilder().Init(sctx, s.is, &hint.BlockHintProcessor{}) @@ -1914,7 +1914,7 @@ func TestFastPlanContextTables(t *testing.T) { for _, tt := range tests { stmt, err := s.p.ParseOneStmt(tt.sql, "", "") require.NoError(t, err) - err = Preprocess(s.ctx, stmt, WithPreprocessorReturn(&PreprocessorReturn{InfoSchema: s.is})) + err = Preprocess(context.Background(), s.ctx, stmt, WithPreprocessorReturn(&PreprocessorReturn{InfoSchema: s.is})) require.NoError(t, err) s.ctx.GetSessionVars().StmtCtx.Tables = nil p := TryFastPlan(s.ctx, stmt) @@ -1946,7 +1946,7 @@ func TestUpdateEQCond(t *testing.T) { comment := fmt.Sprintf("case:%v sql:%s", i, tt.sql) stmt, err := s.p.ParseOneStmt(tt.sql, "", "") require.NoError(t, err, comment) - err = Preprocess(s.ctx, stmt, WithPreprocessorReturn(&PreprocessorReturn{InfoSchema: s.is})) + err = Preprocess(context.Background(), s.ctx, stmt, WithPreprocessorReturn(&PreprocessorReturn{InfoSchema: s.is})) require.NoError(t, err) sctx := MockContext() builder, _ := NewPlanBuilder().Init(sctx, s.is, &hint.BlockHintProcessor{}) @@ -1965,7 +1965,7 @@ func TestConflictedJoinTypeHints(t *testing.T) { ctx := context.TODO() stmt, err := s.p.ParseOneStmt(sql, "", "") require.NoError(t, err) - err = Preprocess(s.ctx, stmt, WithPreprocessorReturn(&PreprocessorReturn{InfoSchema: s.is})) + err = Preprocess(context.Background(), s.ctx, stmt, WithPreprocessorReturn(&PreprocessorReturn{InfoSchema: s.is})) require.NoError(t, err) sctx := MockContext() builder, _ := NewPlanBuilder().Init(sctx, s.is, &hint.BlockHintProcessor{}) @@ -1988,7 +1988,7 @@ func TestSimplyOuterJoinWithOnlyOuterExpr(t *testing.T) { ctx := context.TODO() stmt, err := s.p.ParseOneStmt(sql, "", "") require.NoError(t, err) - err = Preprocess(s.ctx, stmt, WithPreprocessorReturn(&PreprocessorReturn{InfoSchema: s.is})) + err = Preprocess(context.Background(), s.ctx, stmt, WithPreprocessorReturn(&PreprocessorReturn{InfoSchema: s.is})) require.NoError(t, err) sctx := MockContext() builder, _ := NewPlanBuilder().Init(sctx, s.is, &hint.BlockHintProcessor{}) @@ -2042,7 +2042,7 @@ func TestResolvingCorrelatedAggregate(t *testing.T) { comment := fmt.Sprintf("case:%v sql:%s", i, tt.sql) stmt, err := s.p.ParseOneStmt(tt.sql, "", "") require.NoError(t, err, comment) - err = Preprocess(s.ctx, stmt, WithPreprocessorReturn(&PreprocessorReturn{InfoSchema: s.is})) + err = Preprocess(context.Background(), s.ctx, stmt, WithPreprocessorReturn(&PreprocessorReturn{InfoSchema: s.is})) require.NoError(t, err, comment) p, _, err := BuildLogicalPlanForTest(ctx, s.ctx, stmt, s.is) require.NoError(t, err, comment) @@ -2084,7 +2084,7 @@ func TestFastPathInvalidBatchPointGet(t *testing.T) { comment := fmt.Sprintf("case:%v sql:%s", i, tc.sql) stmt, err := s.p.ParseOneStmt(tc.sql, "", "") require.NoError(t, err, comment) - err = Preprocess(s.ctx, stmt, WithPreprocessorReturn(&PreprocessorReturn{InfoSchema: s.is})) + err = Preprocess(context.Background(), s.ctx, stmt, WithPreprocessorReturn(&PreprocessorReturn{InfoSchema: s.is})) require.NoError(t, err, comment) plan := TryFastPlan(s.ctx, stmt) if tc.fastPlan { @@ -2106,7 +2106,7 @@ func TestTraceFastPlan(t *testing.T) { comment := fmt.Sprintf("sql:%s", sql) stmt, err := s.p.ParseOneStmt(sql, "", "") require.NoError(t, err, comment) - err = Preprocess(s.ctx, stmt, WithPreprocessorReturn(&PreprocessorReturn{InfoSchema: s.is})) + err = Preprocess(context.Background(), s.ctx, stmt, WithPreprocessorReturn(&PreprocessorReturn{InfoSchema: s.is})) require.NoError(t, err, comment) plan := TryFastPlan(s.ctx, stmt) require.NotNil(t, plan) diff --git a/planner/core/logical_plan_trace_test.go b/planner/core/logical_plan_trace_test.go index 5bf38b6e18f86..7233b49cb24e1 100644 --- a/planner/core/logical_plan_trace_test.go +++ b/planner/core/logical_plan_trace_test.go @@ -399,7 +399,7 @@ func TestSingleRuleTraceStep(t *testing.T) { comment := fmt.Sprintf("case:%v sql:%s", i, sql) stmt, err := s.p.ParseOneStmt(sql, "", "") require.NoError(t, err, comment) - err = Preprocess(s.ctx, stmt, WithPreprocessorReturn(&PreprocessorReturn{InfoSchema: s.is})) + err = Preprocess(context.Background(), s.ctx, stmt, WithPreprocessorReturn(&PreprocessorReturn{InfoSchema: s.is})) require.NoError(t, err, comment) sctx := MockContext() sctx.GetSessionVars().StmtCtx.EnableOptimizeTrace = true diff --git a/planner/core/logical_plans.go b/planner/core/logical_plans.go index e3c24d2375134..8a9cfcf62e41c 100644 --- a/planner/core/logical_plans.go +++ b/planner/core/logical_plans.go @@ -123,9 +123,12 @@ const ( preferRightAsHJProbe preferMergeJoin preferBCJoin + preferShuffleJoin preferRewriteSemiJoin preferHashAgg preferStreamAgg + preferMPP1PhaseAgg + preferMPP2PhaseAgg ) const ( @@ -1217,6 +1220,10 @@ type DataSource struct { // contain unique index and the first field is tidb_shard(), // such as (tidb_shard(a), a ...), the fields are more than 2 containExprPrefixUk bool + + // colsRequiringFullLen is the columns that must be fetched with full length. + // It is used to decide whether single scan is enough when reading from an index. + colsRequiringFullLen []*expression.Column } // ExtractCorrelatedCols implements LogicalPlan interface. @@ -1340,7 +1347,7 @@ func (ds *DataSource) Convert2Gathers() (gathers []LogicalPlan) { path.FullIdxCols, path.FullIdxColLens = expression.IndexInfo2Cols(ds.Columns, ds.schema.Columns, path.Index) path.IdxCols, path.IdxColLens = expression.IndexInfo2PrefixCols(ds.Columns, ds.schema.Columns, path.Index) // If index columns can cover all of the needed columns, we can use a IndexGather + IndexScan. - if ds.isCoveringIndex(ds.schema.Columns, path.FullIdxCols, path.FullIdxColLens, ds.tableInfo) { + if ds.isSingleScan(path.FullIdxCols, path.FullIdxColLens) { gathers = append(gathers, ds.buildIndexGather(path)) } // TODO: If index columns can not cover the schema, use IndexLookUpGather. @@ -1545,7 +1552,7 @@ func (ds *DataSource) deriveIndexPathStats(path *util.AccessPath, _ []expression } } var indexFilters []expression.Expression - indexFilters, path.TableFilters = ds.splitIndexFilterConditions(path.TableFilters, path.FullIdxCols, path.FullIdxColLens, ds.tableInfo) + indexFilters, path.TableFilters = ds.splitIndexFilterConditions(path.TableFilters, path.FullIdxCols, path.FullIdxColLens) path.IndexFilters = append(path.IndexFilters, indexFilters...) // If the `CountAfterAccess` is less than `stats.RowCount`, there must be some inconsistent stats info. // We prefer the `stats.RowCount` because it could use more stats info to calculate the selectivity. diff --git a/planner/core/main_test.go b/planner/core/main_test.go index 5818baba86199..8bd3264684fb7 100644 --- a/planner/core/main_test.go +++ b/planner/core/main_test.go @@ -56,9 +56,11 @@ func TestMain(m *testing.M) { opts := []goleak.Option{ goleak.IgnoreTopFunction("github.com/golang/glog.(*loggingT).flushDaemon"), + goleak.IgnoreTopFunction("github.com/lestrrat-go/httprc.runFetchWorker"), goleak.IgnoreTopFunction("go.etcd.io/etcd/client/pkg/v3/logutil.(*MergeLogger).outputLoop"), goleak.IgnoreTopFunction("gopkg.in/natefinch/lumberjack%2ev2.(*Logger).millRun"), goleak.IgnoreTopFunction("github.com/tikv/client-go/v2/txnkv/transaction.keepAlive"), + goleak.IgnoreTopFunction("go.opencensus.io/stats/view.(*worker).start"), } callback := func(i int) int { diff --git a/planner/core/optimizer.go b/planner/core/optimizer.go index 09c370dd11f60..fe3219fcdaf21 100644 --- a/planner/core/optimizer.go +++ b/planner/core/optimizer.go @@ -295,7 +295,10 @@ func DoOptimize(ctx context.Context, sctx sessionctx.Context, flag uint64, logic if err != nil { return nil, 0, err } - finalPlan := postOptimize(sctx, physical) + finalPlan, err := postOptimize(sctx, physical) + if err != nil { + return nil, 0, err + } if sctx.GetSessionVars().StmtCtx.EnableOptimizerCETrace { refineCETrace(sctx) @@ -372,9 +375,13 @@ func mergeContinuousSelections(p PhysicalPlan) { } } -func postOptimize(sctx sessionctx.Context, plan PhysicalPlan) PhysicalPlan { +func postOptimize(sctx sessionctx.Context, plan PhysicalPlan) (PhysicalPlan, error) { // some cases from update optimize will require avoiding projection elimination. // see comments ahead of call of DoOptimize in function of buildUpdate(). + err := prunePhysicalColumns(sctx, plan) + if err != nil { + return nil, err + } plan = eliminatePhysicalProjection(plan) plan = InjectExtraProjection(plan) mergeContinuousSelections(plan) @@ -382,7 +389,146 @@ func postOptimize(sctx sessionctx.Context, plan PhysicalPlan) PhysicalPlan { plan = enableParallelApply(sctx, plan) handleFineGrainedShuffle(sctx, plan) checkPlanCacheable(sctx, plan) - return plan + propagateProbeParents(plan, nil) + return plan, nil +} + +// prunePhysicalColumns currently only work for MPP(HashJoin<-Exchange). +// Here add projection instead of pruning columns directly for safety considerations. +// And projection is cheap here for it saves the network cost and work in memory. +func prunePhysicalColumns(sctx sessionctx.Context, plan PhysicalPlan) error { + if tableReader, ok := plan.(*PhysicalTableReader); ok { + if _, isExchangeSender := tableReader.tablePlan.(*PhysicalExchangeSender); isExchangeSender { + err := prunePhysicalColumnsInternal(sctx, tableReader.tablePlan) + if err != nil { + return err + } + } + } else { + for _, child := range plan.Children() { + return prunePhysicalColumns(sctx, child) + } + } + return nil +} + +func (p *PhysicalHashJoin) extractUsedCols(parentUsedCols []*expression.Column) (leftCols []*expression.Column, rightCols []*expression.Column) { + for _, eqCond := range p.EqualConditions { + parentUsedCols = append(parentUsedCols, expression.ExtractColumns(eqCond)...) + } + for _, neCond := range p.NAEqualConditions { + parentUsedCols = append(parentUsedCols, expression.ExtractColumns(neCond)...) + } + for _, leftCond := range p.LeftConditions { + parentUsedCols = append(parentUsedCols, expression.ExtractColumns(leftCond)...) + } + for _, rightCond := range p.RightConditions { + parentUsedCols = append(parentUsedCols, expression.ExtractColumns(rightCond)...) + } + for _, otherCond := range p.OtherConditions { + parentUsedCols = append(parentUsedCols, expression.ExtractColumns(otherCond)...) + } + lChild := p.children[0] + rChild := p.children[1] + for _, col := range parentUsedCols { + if lChild.Schema().Contains(col) { + leftCols = append(leftCols, col) + } else if rChild.Schema().Contains(col) { + rightCols = append(rightCols, col) + } + } + return leftCols, rightCols +} + +func prunePhysicalColumnForHashJoinChild(sctx sessionctx.Context, hashJoin *PhysicalHashJoin, joinUsedCols []*expression.Column, sender *PhysicalExchangeSender) error { + var err error + joinUsed := expression.GetUsedList(joinUsedCols, sender.Schema()) + hashCols := make([]*expression.Column, len(sender.HashCols)) + for i, mppCol := range sender.HashCols { + hashCols[i] = mppCol.Col + } + hashUsed := expression.GetUsedList(hashCols, sender.Schema()) + + needPrune := false + usedExprs := make([]expression.Expression, len(sender.Schema().Columns)) + prunedSchema := sender.Schema().Clone() + for i := len(joinUsed) - 1; i >= 0; i-- { + usedExprs[i] = sender.Schema().Columns[i] + if !joinUsed[i] && !hashUsed[i] { + needPrune = true + usedExprs = append(usedExprs[:i], usedExprs[i+1:]...) + prunedSchema.Columns = append(prunedSchema.Columns[:i], prunedSchema.Columns[i+1:]...) + } + } + + if needPrune && len(sender.children) > 0 { + ch := sender.children[0] + proj := PhysicalProjection{ + Exprs: usedExprs, + }.Init(sctx, ch.statsInfo(), ch.SelectBlockOffset()) + + proj.SetSchema(prunedSchema) + proj.SetChildren(ch) + sender.children[0] = proj + + // Resolve Indices from bottom to up + err = proj.ResolveIndicesItself() + if err != nil { + return err + } + err = sender.ResolveIndicesItself() + if err != nil { + return err + } + err = hashJoin.ResolveIndicesItself() + if err != nil { + return err + } + } + return err +} + +func prunePhysicalColumnsInternal(sctx sessionctx.Context, plan PhysicalPlan) error { + var err error + switch x := plan.(type) { + case *PhysicalHashJoin: + schemaColumns := x.Schema().Clone().Columns + leftCols, rightCols := x.extractUsedCols(schemaColumns) + matchPattern := false + for i := 0; i <= 1; i++ { + // Pattern: HashJoin <- ExchangeReceiver <- ExchangeSender + matchPattern = false + var exchangeSender *PhysicalExchangeSender + if receiver, ok := x.children[i].(*PhysicalExchangeReceiver); ok { + exchangeSender, matchPattern = receiver.children[0].(*PhysicalExchangeSender) + } + + if matchPattern { + if i == 0 { + err = prunePhysicalColumnForHashJoinChild(sctx, x, leftCols, exchangeSender) + } else { + err = prunePhysicalColumnForHashJoinChild(sctx, x, rightCols, exchangeSender) + } + if err != nil { + return nil + } + } + + /// recursively travel the physical plan + err = prunePhysicalColumnsInternal(sctx, x.children[i]) + if err != nil { + return nil + } + } + default: + for _, child := range x.Children() { + err = prunePhysicalColumnsInternal(sctx, child) + if err != nil { + return err + } + } + } + return nil } // Only for MPP(Window<-[Sort]<-ExchangeReceiver<-ExchangeSender). @@ -523,6 +669,42 @@ func checkPlanCacheable(sctx sessionctx.Context, plan PhysicalPlan) { } } +// propagateProbeParents doesn't affect the execution plan, it only sets the probeParents field of a PhysicalPlan. +// It's for handling the inconsistency between row count in the statsInfo and the recorded actual row count. Please +// see comments in PhysicalPlan for details. +func propagateProbeParents(plan PhysicalPlan, probeParents []PhysicalPlan) { + plan.setProbeParents(probeParents) + switch x := plan.(type) { + case *PhysicalApply, *PhysicalIndexJoin, *PhysicalIndexHashJoin, *PhysicalIndexMergeJoin: + if join, ok := plan.(interface{ getInnerChildIdx() int }); ok { + propagateProbeParents(plan.Children()[1-join.getInnerChildIdx()], probeParents) + + // The core logic of this method: + // Record every Apply and Index Join we met, record it in a slice, and set it in their inner children. + newParents := make([]PhysicalPlan, len(probeParents), len(probeParents)+1) + copy(newParents, probeParents) + newParents = append(newParents, plan) + propagateProbeParents(plan.Children()[join.getInnerChildIdx()], newParents) + } + case *PhysicalTableReader: + propagateProbeParents(x.tablePlan, probeParents) + case *PhysicalIndexReader: + propagateProbeParents(x.indexPlan, probeParents) + case *PhysicalIndexLookUpReader: + propagateProbeParents(x.indexPlan, probeParents) + propagateProbeParents(x.tablePlan, probeParents) + case *PhysicalIndexMergeReader: + for _, pchild := range x.partialPlans { + propagateProbeParents(pchild, probeParents) + } + propagateProbeParents(x.tablePlan, probeParents) + default: + for _, child := range plan.Children() { + propagateProbeParents(child, probeParents) + } + } +} + // useTiFlash used to check whether the plan use the TiFlash engine. func useTiFlash(p PhysicalPlan) bool { switch x := p.(type) { diff --git a/planner/core/optimizer_test.go b/planner/core/optimizer_test.go index 6cf80c57fa5ec..0f9dc0a4050c4 100644 --- a/planner/core/optimizer_test.go +++ b/planner/core/optimizer_test.go @@ -18,6 +18,8 @@ import ( "reflect" "testing" + "github.com/pingcap/tidb/expression" + "github.com/pingcap/tidb/parser/ast" "github.com/pingcap/tidb/parser/mysql" "github.com/pingcap/tidb/planner/property" "github.com/pingcap/tidb/types" @@ -288,3 +290,104 @@ func TestHandleFineGrainedShuffle(t *testing.T) { hashSender1.children = []PhysicalPlan{tableScan1} start(partWindow, expStreamCount, 3, 0) } + +// Test for core.prunePhysicalColumns() +func TestPrunePhysicalColumns(t *testing.T) { + sctx := MockContext() + col0 := &expression.Column{ + UniqueID: sctx.GetSessionVars().AllocPlanColumnID(), + RetType: types.NewFieldType(mysql.TypeLonglong), + } + col1 := &expression.Column{ + UniqueID: sctx.GetSessionVars().AllocPlanColumnID(), + RetType: types.NewFieldType(mysql.TypeLonglong), + } + col2 := &expression.Column{ + UniqueID: sctx.GetSessionVars().AllocPlanColumnID(), + RetType: types.NewFieldType(mysql.TypeLonglong), + } + col3 := &expression.Column{ + UniqueID: sctx.GetSessionVars().AllocPlanColumnID(), + RetType: types.NewFieldType(mysql.TypeLonglong), + } + + // Join[col2, col3; col2==col3] <- ExchangeReceiver[col0, col1, col2] <- ExchangeSender[col0, col1, col2] <- Selection[col0, col1, col2; col0 < col1] <- TableScan[col0, col1, col2] + // <- ExchangeReceiver1[col3] <- ExchangeSender1[col3] <- TableScan1[col3] + tableReader := &PhysicalTableReader{} + passSender := &PhysicalExchangeSender{ + ExchangeType: tipb.ExchangeType_PassThrough, + } + hashJoin := &PhysicalHashJoin{} + recv := &PhysicalExchangeReceiver{} + recv1 := &PhysicalExchangeReceiver{} + hashSender := &PhysicalExchangeSender{ + ExchangeType: tipb.ExchangeType_Hash, + } + hashSender1 := &PhysicalExchangeSender{ + ExchangeType: tipb.ExchangeType_Hash, + } + tableScan := &PhysicalTableScan{} + tableScan1 := &PhysicalTableScan{} + + tableReader.tablePlan = passSender + passSender.children = []PhysicalPlan{hashJoin} + hashJoin.children = []PhysicalPlan{recv, recv1} + selection := &PhysicalSelection{} + + cond, err := expression.NewFunction(sctx, ast.EQ, types.NewFieldType(mysql.TypeTiny), col2, col3) + require.True(t, err == nil) + sf, isSF := cond.(*expression.ScalarFunction) + require.True(t, isSF) + hashJoin.EqualConditions = append(hashJoin.EqualConditions, sf) + hashJoin.LeftJoinKeys = append(hashJoin.LeftJoinKeys, col2) + hashJoin.RightJoinKeys = append(hashJoin.RightJoinKeys, col3) + hashJoinSchema := make([]*expression.Column, 0) + hashJoinSchema = append(hashJoinSchema, col3) + hashJoin.SetSchema(expression.NewSchema(hashJoinSchema...)) + + selection.SetChildren(tableScan) + hashSender.SetChildren(selection) + var partitionCols = make([]*property.MPPPartitionColumn, 0, 1) + partitionCols = append(partitionCols, &property.MPPPartitionColumn{ + Col: col2, + CollateID: property.GetCollateIDByNameForPartition(col2.GetType().GetCollate()), + }) + hashSender.HashCols = partitionCols + recv.SetChildren(hashSender) + tableScan.Schema().Columns = append(tableScan.Schema().Columns, col0, col1, col2) + + hashSender1.SetChildren(tableScan1) + recv1.SetChildren(hashSender1) + tableScan1.Schema().Columns = append(tableScan1.Schema().Columns, col3) + + prunePhysicalColumns(sctx, tableReader) + + // Optimized Plan: + // Join[col2, col3; col2==col3] <- ExchangeReceiver[col2] <- ExchangeSender[col2;col2] <- Projection[col2] <- Selection[col0, col1, col2; col0 < col1] <- TableScan[col0, col1, col2] + // <- ExchangeReceiver1[col3] <- ExchangeSender1[col3] <- TableScan1[col3] + require.True(t, len(recv.Schema().Columns) == 1) + require.True(t, recv.Schema().Contains(col2)) + require.False(t, recv.Schema().Contains(col0)) + require.False(t, recv.Schema().Contains(col1)) + require.True(t, len(recv.children[0].Children()) == 1) + physicalProj := recv.children[0].Children()[0] + switch x := physicalProj.(type) { + case *PhysicalProjection: + require.True(t, x.Schema().Contains(col2)) + require.False(t, recv.Schema().Contains(col0)) + require.False(t, recv.Schema().Contains(col1)) + // Check PhysicalProj resolved index + require.True(t, len(x.Exprs) == 1) + require.True(t, x.Exprs[0].(*expression.Column).Index == 2) + default: + require.True(t, false) + } + + // Check resolved indices + require.True(t, hashJoin.LeftJoinKeys[0].Index == 0) + require.True(t, hashSender.HashCols[0].Col.Index == 0) + + // Check recv1,no changes + require.True(t, len(recv1.Schema().Columns) == 1) + require.True(t, recv1.Schema().Contains(col3)) +} diff --git a/planner/core/partition_pruner_test.go b/planner/core/partition_pruner_test.go index fffef54373bd8..803b2adb647ba 100644 --- a/planner/core/partition_pruner_test.go +++ b/planner/core/partition_pruner_test.go @@ -68,6 +68,7 @@ func TestHashPartitionPruner(t *testing.T) { func TestRangeColumnPartitionPruningForIn(t *testing.T) { store := testkit.CreateMockStore(t) tk := testkit.NewTestKit(t, store) + tk.MustExec("set tidb_cost_model_version=2") tk.MustExec("drop database if exists test_range_col_in") tk.MustExec("create database test_range_col_in") tk.MustExec("use test_range_col_in") @@ -78,7 +79,7 @@ func TestRangeColumnPartitionPruningForIn(t *testing.T) { tk.MustExec(`CREATE TABLE t1 ( id bigint(20) NOT NULL AUTO_INCREMENT, dt date, - PRIMARY KEY (id,dt)) + PRIMARY KEY (id,dt) NONCLUSTERED) PARTITION BY RANGE COLUMNS(dt) ( PARTITION p20201125 VALUES LESS THAN ("20201126"), PARTITION p20201126 VALUES LESS THAN ("20201127"), @@ -260,6 +261,7 @@ func TestListPartitionPruner(t *testing.T) { tk.MustExec("drop database if exists test_partition;") tk.MustExec("create database test_partition") tk.MustExec("use test_partition") + tk.MustExec("set tidb_cost_model_version=2") tk.Session().GetSessionVars().EnableClusteredIndex = variable.ClusteredIndexDefModeIntOnly tk.MustExec("set @@session.tidb_enable_list_partition = ON") tk.MustExec(`set @@session.tidb_regard_null_as_point=false`) @@ -330,6 +332,7 @@ func TestListColumnsPartitionPruner(t *testing.T) { defer failpoint.Disable("github.com/pingcap/tidb/planner/core/forceDynamicPrune") store := testkit.CreateMockStore(t) tk := testkit.NewTestKit(t, store) + tk.MustExec("set tidb_cost_model_version=2") tk.MustExec("set @@session.tidb_enable_list_partition = ON") tk.MustExec("drop database if exists test_partition;") tk.MustExec("create database test_partition") diff --git a/planner/core/physical_plan_test.go b/planner/core/physical_plan_test.go index c00fbbaac80de..3e41ae2d182d2 100644 --- a/planner/core/physical_plan_test.go +++ b/planner/core/physical_plan_test.go @@ -22,6 +22,7 @@ import ( "testing" "github.com/pingcap/failpoint" + "github.com/pingcap/kvproto/pkg/metapb" "github.com/pingcap/tidb/domain" "github.com/pingcap/tidb/executor" "github.com/pingcap/tidb/infoschema" @@ -38,10 +39,14 @@ import ( "github.com/pingcap/tidb/sessionctx/stmtctx" "github.com/pingcap/tidb/sessionctx/variable" "github.com/pingcap/tidb/sessiontxn" + "github.com/pingcap/tidb/store/mockstore" + "github.com/pingcap/tidb/store/mockstore/unistore" "github.com/pingcap/tidb/testkit" + "github.com/pingcap/tidb/testkit/external" "github.com/pingcap/tidb/testkit/testdata" "github.com/pingcap/tidb/util/hint" "github.com/stretchr/testify/require" + "github.com/tikv/client-go/v2/testutils" ) func TestDAGPlanBuilderSimpleCase(t *testing.T) { @@ -49,6 +54,7 @@ func TestDAGPlanBuilderSimpleCase(t *testing.T) { tk := testkit.NewTestKit(t, store) tk.MustExec("use test") + tk.MustExec("set tidb_cost_model_version=2") tk.MustExec("set tidb_opt_limit_push_down_threshold=0") var input []string var output []struct { @@ -123,7 +129,7 @@ func TestAnalyzeBuildSucc(t *testing.T) { } else if err != nil { continue } - err = core.Preprocess(tk.Session(), stmt, core.WithPreprocessorReturn(&core.PreprocessorReturn{InfoSchema: is})) + err = core.Preprocess(context.Background(), tk.Session(), stmt, core.WithPreprocessorReturn(&core.PreprocessorReturn{InfoSchema: is})) require.NoError(t, err) _, _, err = planner.Optimize(context.Background(), tk.Session(), stmt, is) if tt.succ { @@ -165,7 +171,7 @@ func TestAnalyzeSetRate(t *testing.T) { stmt, err := p.ParseOneStmt(tt.sql, "", "") require.NoError(t, err, comment) - err = core.Preprocess(tk.Session(), stmt, core.WithPreprocessorReturn(&core.PreprocessorReturn{InfoSchema: is})) + err = core.Preprocess(context.Background(), tk.Session(), stmt, core.WithPreprocessorReturn(&core.PreprocessorReturn{InfoSchema: is})) require.NoError(t, err, comment) p, _, err := planner.Optimize(context.Background(), tk.Session(), stmt, is) require.NoError(t, err, comment) @@ -179,6 +185,7 @@ func TestDAGPlanBuilderJoin(t *testing.T) { tk := testkit.NewTestKit(t, store) tk.MustExec("use test") + tk.MustExec("set tidb_cost_model_version=2") sessionVars := tk.Session().GetSessionVars() sessionVars.ExecutorConcurrency = 4 sessionVars.SetDistSQLScanConcurrency(15) @@ -214,6 +221,7 @@ func TestDAGPlanBuilderSubquery(t *testing.T) { tk := testkit.NewTestKit(t, store) tk.MustExec("use test") + tk.MustExec("set tidb_cost_model_version=2") tk.MustExec("set sql_mode='STRICT_TRANS_TABLES'") // disable only full group by sessionVars := tk.Session().GetSessionVars() sessionVars.SetHashAggFinalConcurrency(1) @@ -310,7 +318,7 @@ func TestDAGPlanBuilderBasePhysicalPlan(t *testing.T) { stmt, err := p.ParseOneStmt(tt, "", "") require.NoError(t, err, comment) - err = core.Preprocess(se, stmt, core.WithPreprocessorReturn(&core.PreprocessorReturn{InfoSchema: is})) + err = core.Preprocess(context.Background(), se, stmt, core.WithPreprocessorReturn(&core.PreprocessorReturn{InfoSchema: is})) require.NoError(t, err) p, _, err := planner.Optimize(context.TODO(), se, stmt, is) require.NoError(t, err) @@ -363,36 +371,37 @@ func TestDAGPlanBuilderUnion(t *testing.T) { func TestDAGPlanBuilderUnionScan(t *testing.T) { store := testkit.CreateMockStore(t) - tk := testkit.NewTestKit(t, store) tk.MustExec("use test") + tk.MustExec("drop table if exists t") + tk.MustExec("create table t(a int, b int, c int)") var input []string var output []struct { SQL string Best string } + planSuiteData := core.GetPlanSuiteData() + planSuiteData.LoadTestCases(t, &input, &output) + p := parser.New() - is := infoschema.MockInfoSchema([]*model.TableInfo{core.MockSignedTable(), core.MockUnsignedTable()}) for i, tt := range input { + tk.MustExec("begin;") + tk.MustExec("insert into t values(2, 2, 2);") + comment := fmt.Sprintf("input: %s", tt) stmt, err := p.ParseOneStmt(tt, "", "") require.NoError(t, err, comment) - require.NoError(t, sessiontxn.NewTxn(context.Background(), tk.Session())) - - // Make txn not read only. - txn, err := tk.Session().Txn(true) - require.NoError(t, err) - err = txn.Set(kv.Key("AAA"), []byte("BBB")) - require.NoError(t, err) - tk.Session().StmtCommit() - p, _, err := planner.Optimize(context.TODO(), tk.Session(), stmt, is) + dom := domain.GetDomain(tk.Session()) + require.NoError(t, dom.Reload()) + plan, _, err := planner.Optimize(context.TODO(), tk.Session(), stmt, dom.InfoSchema()) require.NoError(t, err) testdata.OnRecord(func() { output[i].SQL = tt - output[i].Best = core.ToString(p) + output[i].Best = core.ToString(plan) }) - require.Equal(t, output[i].Best, core.ToString(p), fmt.Sprintf("input: %s", tt)) + require.Equal(t, output[i].Best, core.ToString(plan), fmt.Sprintf("input: %s", tt)) + tk.MustExec("rollback;") } } @@ -400,6 +409,7 @@ func TestDAGPlanBuilderAgg(t *testing.T) { store := testkit.CreateMockStore(t) tk := testkit.NewTestKit(t, store) tk.MustExec("use test") + tk.MustExec("set tidb_cost_model_version=2") tk.MustExec("set sql_mode='STRICT_TRANS_TABLES'") // disable only full group by sessionVars := tk.Session().GetSessionVars() sessionVars.SetHashAggFinalConcurrency(1) @@ -436,6 +446,7 @@ func TestRefine(t *testing.T) { tk := testkit.NewTestKit(t, store) tk.MustExec("use test") + tk.MustExec("set tidb_cost_model_version=2") var input []string var output []struct { @@ -467,6 +478,7 @@ func TestAggEliminator(t *testing.T) { tk := testkit.NewTestKit(t, store) tk.MustExec("use test") + tk.MustExec("set tidb_cost_model_version=2") tk.MustExec("set tidb_opt_limit_push_down_threshold=0") tk.MustExec("set sql_mode='STRICT_TRANS_TABLES'") // disable only full group by var input []string @@ -593,6 +605,7 @@ func TestIndexJoinUnionScan(t *testing.T) { tk := testkit.NewTestKit(t, store) tk.MustExec("use test") + tk.MustExec("set tidb_cost_model_version=2") tk.MustExec("create table t (a int primary key, b int, index idx(a))") tk.MustExec("create table tt (a int primary key) partition by range (a) (partition p0 values less than (100), partition p1 values less than (200))") tk.MustExec(`set @@tidb_partition_prune_mode='` + string(variable.Static) + `'`) @@ -714,6 +727,7 @@ func TestSemiJoinToInner(t *testing.T) { store := testkit.CreateMockStore(t) tk := testkit.NewTestKit(t, store) tk.MustExec("use test") + tk.MustExec("set tidb_cost_model_version=2") var input []string var output []struct { @@ -774,10 +788,61 @@ func TestUnmatchedTableInHint(t *testing.T) { } } +// withMockTiFlash sets the mockStore to have N TiFlash stores (naming as tiflash0, tiflash1, ...). +func withMockTiFlash(nodes int) mockstore.MockTiKVStoreOption { + return mockstore.WithMultipleOptions( + mockstore.WithClusterInspector(func(c testutils.Cluster) { + mockCluster := c.(*unistore.Cluster) + _, _, region1 := mockstore.BootstrapWithSingleStore(c) + tiflashIdx := 0 + for tiflashIdx < nodes { + store2 := c.AllocID() + peer2 := c.AllocID() + addr2 := fmt.Sprintf("tiflash%d", tiflashIdx) + mockCluster.AddStore(store2, addr2, &metapb.StoreLabel{Key: "engine", Value: "tiflash"}) + mockCluster.AddPeer(region1, store2, peer2) + tiflashIdx++ + } + }), + mockstore.WithStoreType(mockstore.EmbedUnistore), + ) +} + +func TestMPPHints(t *testing.T) { + store := testkit.CreateMockStore(t, withMockTiFlash(2)) + tk := testkit.NewTestKit(t, store) + tk.MustExec("use test") + tk.MustExec("set tidb_cost_model_version=2") + tk.MustExec("create table t (a int, b int, c int)") + tk.MustExec("alter table t set tiflash replica 1") + tk.MustExec("set @@session.tidb_allow_mpp=ON") + tb := external.GetTableByName(t, tk, "test", "t") + err := domain.GetDomain(tk.Session()).DDL().UpdateTableReplicaInfo(tk.Session(), tb.Meta().ID, true) + require.NoError(t, err) + + var input []string + var output []struct { + SQL string + Plan []string + } + + planSuiteData := core.GetPlanSuiteData() + planSuiteData.LoadTestCases(t, &input, &output) + + for i, ts := range input { + testdata.OnRecord(func() { + output[i].SQL = ts + output[i].Plan = testdata.ConvertRowsToStrings(tk.MustQuery("explain format = 'brief' " + ts).Rows()) + }) + tk.MustQuery("explain format = 'brief' " + ts).Check(testkit.Rows(output[i].Plan...)) + } +} + func TestHintScope(t *testing.T) { store := testkit.CreateMockStore(t) tk := testkit.NewTestKit(t, store) tk.MustExec("use test") + tk.MustExec("set tidb_cost_model_version=2") var input []string var output []struct { @@ -811,6 +876,7 @@ func TestJoinHints(t *testing.T) { tk := testkit.NewTestKit(t, store) tk.MustExec("use test") + tk.MustExec("set tidb_cost_model_version=2") var input []string var output []struct { @@ -919,6 +985,7 @@ func TestSemiJoinRewriteHints(t *testing.T) { store := testkit.CreateMockStore(t) tk := testkit.NewTestKit(t, store) tk.MustExec("use test") + tk.MustExec("set tidb_cost_model_version=2") tk.MustExec("create table t(a int, b int, c int)") sessionVars := tk.Session().GetSessionVars() @@ -1040,6 +1107,7 @@ func TestLimitToCopHint(t *testing.T) { store := testkit.CreateMockStore(t) tk := testkit.NewTestKit(t, store) tk.MustExec("use test") + tk.MustExec("set tidb_cost_model_version=2") tk.MustExec("drop table if exists tn") tk.MustExec("create table tn(a int, b int, c int, d int, key (a, b, c, d))") tk.MustExec(`set tidb_opt_limit_push_down_threshold=0`) @@ -1160,6 +1228,7 @@ func TestForceInlineCTE(t *testing.T) { store := testkit.CreateMockStore(t) tk := testkit.NewTestKit(t, store) tk.MustExec("use test") + tk.MustExec("set tidb_cost_model_version=2") tk.MustExec("drop table if exists t;") tk.MustExec("CREATE TABLE `t` (`a` int(11));") tk.MustExec("insert into t values (1), (5), (10), (15), (20), (30), (50);") @@ -1260,6 +1329,7 @@ func TestPushdownDistinctEnable(t *testing.T) { vars := []string{ fmt.Sprintf("set @@session.%s = 1", variable.TiDBOptDistinctAggPushDown), "set session tidb_opt_agg_push_down = 1", + "set tidb_cost_model_version = 2", } doTestPushdownDistinct(t, vars, input, output) } @@ -1297,6 +1367,7 @@ func TestPushdownDistinctEnableAggPushDownDisable(t *testing.T) { vars := []string{ fmt.Sprintf("set @@session.%s = 1", variable.TiDBOptDistinctAggPushDown), "set session tidb_opt_agg_push_down = 0", + "set tidb_cost_model_version=2", } doTestPushdownDistinct(t, vars, input, output) } @@ -1494,6 +1565,7 @@ func TestIndexMergeHint(t *testing.T) { tk := testkit.NewTestKit(t, store) tk.MustExec("use test") + tk.MustExec("set tidb_cost_model_version=2") var input []string var output []struct { @@ -1547,6 +1619,7 @@ func TestQueryBlockHint(t *testing.T) { tk := testkit.NewTestKit(t, store) tk.MustExec("use test") + tk.MustExec("set tidb_cost_model_version=2") var input []string var output []struct { @@ -1635,13 +1708,14 @@ func TestDAGPlanBuilderSplitAvg(t *testing.T) { tk := testkit.NewTestKit(t, store) tk.MustExec("use test") + tk.MustExec("set tidb_cost_model_version=2") tests := []struct { sql string plan string }{ { sql: "select avg(a),avg(b),avg(c) from t", - plan: "TableReader(Table(t)->StreamAgg)->StreamAgg", + plan: "TableReader(Table(t)->HashAgg)->HashAgg", }, { sql: "select /*+ HASH_AGG() */ avg(a),avg(b),avg(c) from t", @@ -1657,7 +1731,7 @@ func TestDAGPlanBuilderSplitAvg(t *testing.T) { stmt, err := p.ParseOneStmt(tt.sql, "", "") require.NoError(t, err, comment) - err = core.Preprocess(tk.Session(), stmt, core.WithPreprocessorReturn(&core.PreprocessorReturn{InfoSchema: is})) + err = core.Preprocess(context.Background(), tk.Session(), stmt, core.WithPreprocessorReturn(&core.PreprocessorReturn{InfoSchema: is})) require.NoError(t, err) p, _, err := planner.Optimize(context.TODO(), tk.Session(), stmt, is) require.NoError(t, err, comment) @@ -1702,6 +1776,7 @@ func TestIndexJoinHint(t *testing.T) { tk := testkit.NewTestKit(t, store) tk.MustExec("use test") + tk.MustExec("set tidb_cost_model_version=2") tk.MustExec(`drop table if exists test.t1, test.t2, test.t;`) tk.MustExec(`create table test.t1(a bigint, b bigint, index idx_a(a), index idx_b(b));`) tk.MustExec(`create table test.t2(a bigint, b bigint, index idx_a(a), index idx_b(b));`) @@ -2052,6 +2127,7 @@ func TestSkewDistinctAgg(t *testing.T) { store := testkit.CreateMockStore(t) tk := testkit.NewTestKit(t, store) tk.MustExec("use test") + tk.MustExec("set tidb_cost_model_version=2") tk.MustExec("drop table if exists t") tk.MustExec("CREATE TABLE `t` (`a` int(11), `b` int(11), `c` int(11), `d` date)") tk.MustExec("insert into t (a,b,c,d) value(1,4,5,'2019-06-01')") @@ -2104,6 +2180,7 @@ func TestHJBuildAndProbeHint(t *testing.T) { store := testkit.CreateMockStore(t) tk := testkit.NewTestKit(t, store) tk.MustExec("use test") + tk.MustExec("set tidb_cost_model_version=2") tk.MustExec("drop table if exists t1, t2, t3") tk.MustExec("create table t1(a int primary key, b int not null)") tk.MustExec("create table t2(a int primary key, b int not null)") @@ -2140,6 +2217,7 @@ func TestHJBuildAndProbeHint4StaticPartitionTable(t *testing.T) { store := testkit.CreateMockStore(t) tk := testkit.NewTestKit(t, store) tk.MustExec("use test") + tk.MustExec("set tidb_cost_model_version=2") tk.MustExec("drop table if exists t1, t2, t3") tk.MustExec(`create table t1(a int, b int) partition by hash(a) partitions 4`) tk.MustExec(`create table t2(a int, b int) partition by hash(a) partitions 5`) @@ -2214,6 +2292,7 @@ func TestHJBuildAndProbeHint4TiFlash(t *testing.T) { store := testkit.CreateMockStore(t) tk := testkit.NewTestKit(t, store) tk.MustExec("use test") + tk.MustExec("set tidb_cost_model_version=2") tk.MustExec("drop table if exists t1, t2, t3") tk.MustExec("create table t1(a int primary key, b int not null)") tk.MustExec("create table t2(a int primary key, b int not null)") @@ -2252,6 +2331,7 @@ func TestHJBuildAndProbeHintWithBinding(t *testing.T) { tk := testkit.NewTestKit(t, store) tk.MustExec("use test") + tk.MustExec("set tidb_cost_model_version=2") tk.MustExec("drop table if exists t, t1, t2, t3;") tk.MustExec("create table t(a int, b int, key(a));") tk.MustExec("create table t1(a int, b int, key(a));") @@ -2292,6 +2372,7 @@ func TestMPPSinglePartitionType(t *testing.T) { store, dom := testkit.CreateMockStoreAndDomain(t) tk := testkit.NewTestKit(t, store) tk.MustExec("use test") + tk.MustExec("set tidb_cost_model_version=2") tk.MustExec("drop table if exists employee") tk.MustExec("create table employee(empid int, deptid int, salary decimal(10,2))") tk.MustExec("set tidb_enforce_mpp=0") @@ -2353,6 +2434,7 @@ func TestNoDecorrelateHint(t *testing.T) { store := testkit.CreateMockStore(t) tk := testkit.NewTestKit(t, store) tk.MustExec("use test") + tk.MustExec("set tidb_cost_model_version=2") tk.MustExec("drop table if exists t1, t2") tk.MustExec("create table t1(a int, b int)") tk.MustExec("create table t2(a int primary key, b int)") diff --git a/planner/core/physical_plan_trace_test.go b/planner/core/physical_plan_trace_test.go index b6df1b1869452..ae93043101098 100644 --- a/planner/core/physical_plan_trace_test.go +++ b/planner/core/physical_plan_trace_test.go @@ -38,6 +38,7 @@ func TestPhysicalOptimizeWithTraceEnabled(t *testing.T) { tk.MustExec("use test") tk.MustExec("create table t(a int primary key, b int, c int,d int,key ib (b),key ic (c))") tk.MustExec("SET session tidb_enable_index_merge = ON;") + tk.MustExec("set tidb_cost_model_version=2") testcases := []struct { sql string physicalList []string @@ -90,7 +91,7 @@ func TestPhysicalOptimizeWithTraceEnabled(t *testing.T) { sql := testcase.sql stmt, err := p.ParseOneStmt(sql, "", "") require.NoError(t, err) - err = core.Preprocess(ctx, stmt, core.WithPreprocessorReturn(&core.PreprocessorReturn{InfoSchema: dom.InfoSchema()})) + err = core.Preprocess(context.Background(), ctx, stmt, core.WithPreprocessorReturn(&core.PreprocessorReturn{InfoSchema: dom.InfoSchema()})) require.NoError(t, err) sctx := core.MockContext() sctx.GetSessionVars().StmtCtx.EnableOptimizeTrace = true @@ -144,7 +145,7 @@ func TestPhysicalOptimizerTrace(t *testing.T) { stmt, err := p.ParseOneStmt(sql, "", "") require.NoError(t, err) - err = core.Preprocess(ctx, stmt, core.WithPreprocessorReturn(&core.PreprocessorReturn{InfoSchema: dom.InfoSchema()})) + err = core.Preprocess(context.Background(), ctx, stmt, core.WithPreprocessorReturn(&core.PreprocessorReturn{InfoSchema: dom.InfoSchema()})) require.NoError(t, err) sctx := core.MockContext() sctx.GetSessionVars().StmtCtx.EnableOptimizeTrace = true @@ -207,7 +208,7 @@ func TestPhysicalOptimizerTraceChildrenNotDuplicated(t *testing.T) { sql := "select * from t" stmt, err := p.ParseOneStmt(sql, "", "") require.NoError(t, err) - err = core.Preprocess(ctx, stmt, core.WithPreprocessorReturn(&core.PreprocessorReturn{InfoSchema: dom.InfoSchema()})) + err = core.Preprocess(context.Background(), ctx, stmt, core.WithPreprocessorReturn(&core.PreprocessorReturn{InfoSchema: dom.InfoSchema()})) require.NoError(t, err) sctx := core.MockContext() sctx.GetSessionVars().StmtCtx.EnableOptimizeTrace = true diff --git a/planner/core/physical_plans.go b/planner/core/physical_plans.go index 54180e2ce58fe..bdb08b7438b5a 100644 --- a/planner/core/physical_plans.go +++ b/planner/core/physical_plans.go @@ -75,6 +75,19 @@ type tableScanAndPartitionInfo struct { partitionInfo PartitionInfo } +// MemoryUsage return the memory usage of tableScanAndPartitionInfo +func (t *tableScanAndPartitionInfo) MemoryUsage() (sum int64) { + if t == nil { + return + } + + sum += t.partitionInfo.MemoryUsage() + if t.tableScan != nil { + sum += t.tableScan.MemoryUsage() + } + return +} + // ReadReqType is the read request type of the operator. Currently, only PhysicalTableReader uses this. type ReadReqType uint8 @@ -196,12 +209,9 @@ func (p *PhysicalTableReader) MemoryUsage() (sum int64) { if p.tablePlan != nil { sum += p.tablePlan.MemoryUsage() } - - for _, plan := range p.TablePlans { - sum += plan.MemoryUsage() - } - for _, pInfos := range p.PartitionInfos { - sum += pInfos.tableScan.MemoryUsage() + pInfos.partitionInfo.MemoryUsage() + // since TablePlans is the flats of tablePlan, so we don't count it + for _, pInfo := range p.PartitionInfos { + sum += pInfo.MemoryUsage() } return } @@ -527,12 +537,7 @@ func (p *PhysicalIndexLookUpReader) MemoryUsage() (sum int64) { sum += p.PushedLimit.MemoryUsage() } - for _, plan := range p.IndexPlans { - sum += plan.MemoryUsage() - } - for _, plan := range p.TablePlans { - sum += plan.MemoryUsage() - } + // since IndexPlans and TablePlans are the flats of indexPlan and tablePlan, so we don't count it for _, col := range p.CommonHandleCols { sum += col.MemoryUsage() } @@ -719,7 +724,7 @@ func (p *PhysicalIndexScan) MemoryUsage() (sum int64) { } sum = emptyPhysicalIndexScanSize + p.physicalSchemaProducer.MemoryUsage() + int64(cap(p.IdxColLens))*size.SizeOfInt + - p.DBName.MemoryUsage() + int64(len(p.rangeInfo)) + p.DBName.MemoryUsage() + int64(len(p.rangeInfo)) + int64(len(p.Columns))*model.EmptyColumnInfoSize if p.TableAsName != nil { sum += p.TableAsName.MemoryUsage() } @@ -729,6 +734,9 @@ func (p *PhysicalIndexScan) MemoryUsage() (sum int64) { if p.prop != nil { sum += p.prop.MemoryUsage() } + if p.dataSourceSchema != nil { + sum += p.dataSourceSchema.MemoryUsage() + } // slice memory usage for _, cond := range p.AccessCondition { sum += cond.MemoryUsage() @@ -941,7 +949,7 @@ func (ts *PhysicalTableScan) MemoryUsage() (sum int64) { } sum = emptyPhysicalTableScanSize + ts.physicalSchemaProducer.MemoryUsage() + ts.DBName.MemoryUsage() + - int64(cap(ts.HandleIdx))*size.SizeOfInt + ts.PartitionInfo.MemoryUsage() + int64(cap(ts.HandleIdx))*size.SizeOfInt + ts.PartitionInfo.MemoryUsage() + int64(len(ts.rangeInfo)) if ts.TableAsName != nil { sum += ts.TableAsName.MemoryUsage() } @@ -961,7 +969,6 @@ func (ts *PhysicalTableScan) MemoryUsage() (sum int64) { for _, rang := range ts.Ranges { sum += rang.MemUsage() } - sum += int64(len(ts.rangeInfo)) for _, col := range ts.tblCols { sum += col.MemoryUsage() } @@ -1135,6 +1142,10 @@ type basePhysicalJoin struct { RightNAJoinKeys []*expression.Column } +func (p *basePhysicalJoin) getInnerChildIdx() int { + return p.InnerChildIdx +} + func (p *basePhysicalJoin) cloneWithSelf(newSelf PhysicalPlan) (*basePhysicalJoin, error) { cloned := new(basePhysicalJoin) base, err := p.physicalSchemaProducer.cloneWithSelf(newSelf) @@ -1182,7 +1193,10 @@ func (p *basePhysicalJoin) MemoryUsage() (sum int64) { return } - sum = emptyBasePhysicalJoinSize + p.physicalSchemaProducer.MemoryUsage() + int64(cap(p.IsNullEQ))*size.SizeOfBool + sum = emptyBasePhysicalJoinSize + p.physicalSchemaProducer.MemoryUsage() + int64(cap(p.IsNullEQ))*size.SizeOfBool + + int64(cap(p.LeftConditions)+cap(p.RightConditions)+cap(p.OtherConditions))*size.SizeOfInterface + + int64(cap(p.OuterJoinKeys)+cap(p.InnerJoinKeys)+cap(p.LeftJoinKeys)+cap(p.RightNAJoinKeys)+cap(p.LeftNAJoinKeys)+ + cap(p.RightNAJoinKeys))*size.SizeOfPointer + int64(cap(p.DefaultValues))*types.EmptyDatumSize for _, cond := range p.LeftConditions { sum += cond.MemoryUsage() @@ -1353,6 +1367,9 @@ func (p *PhysicalIndexJoin) MemoryUsage() (sum int64) { sum = p.basePhysicalJoin.MemoryUsage() + size.SizeOfInterface*2 + size.SizeOfSlice*4 + int64(cap(p.KeyOff2IdxOff)+cap(p.IdxColLens))*size.SizeOfInt + size.SizeOfPointer + if p.innerTask != nil { + sum += p.innerTask.MemoryUsage() + } if p.CompareFilters != nil { sum += p.CompareFilters.MemoryUsage() } @@ -1454,8 +1471,6 @@ func (p *PhysicalExchangeReceiver) GetExchangeSender() *PhysicalExchangeSender { return p.children[0].(*PhysicalExchangeSender) } -const emptyMPPTaskSize = int64(unsafe.Sizeof(mppTask{})) - // MemoryUsage return the memory usage of PhysicalExchangeReceiver func (p *PhysicalExchangeReceiver) MemoryUsage() (sum int64) { if p == nil { @@ -1881,7 +1896,10 @@ func (p *PhysicalUnionScan) MemoryUsage() (sum int64) { return } - sum = p.basePhysicalPlan.MemoryUsage() + size.SizeOfSlice + p.HandleCols.MemoryUsage() + sum = p.basePhysicalPlan.MemoryUsage() + size.SizeOfSlice + if p.HandleCols != nil { + sum += p.HandleCols.MemoryUsage() + } for _, cond := range p.Conditions { sum += cond.MemoryUsage() } @@ -2164,7 +2182,10 @@ func (p *PhysicalShuffleReceiverStub) MemoryUsage() (sum int64) { return } - sum = p.physicalSchemaProducer.MemoryUsage() + size.SizeOfPointer + size.SizeOfInterface + p.DataSource.MemoryUsage() + sum = p.physicalSchemaProducer.MemoryUsage() + size.SizeOfPointer + size.SizeOfInterface + if p.DataSource != nil { + sum += p.DataSource.MemoryUsage() + } return } diff --git a/planner/core/plan.go b/planner/core/plan.go index 03e7a0fafa43f..78d18c59ff7f0 100644 --- a/planner/core/plan.go +++ b/planner/core/plan.go @@ -28,6 +28,7 @@ import ( "github.com/pingcap/tidb/planner/util" "github.com/pingcap/tidb/sessionctx" "github.com/pingcap/tidb/types" + "github.com/pingcap/tidb/util/execdetails" "github.com/pingcap/tidb/util/mathutil" "github.com/pingcap/tidb/util/size" "github.com/pingcap/tidb/util/stringutil" @@ -379,6 +380,26 @@ type PhysicalPlan interface { // MemoryUsage return the memory usage of PhysicalPlan MemoryUsage() int64 + + // Below three methods help to handle the inconsistency between row count in the statsInfo and the recorded + // actual row count. + // For the children in the inner side (probe side) of Index Join and Apply, the row count in the statsInfo + // means the estimated row count for a single "probe", but the recorded actual row count is the total row + // count for all "probes". + // To handle this inconsistency without breaking anything else, we added a field `probeParents` of + // type `[]PhysicalPlan` into all PhysicalPlan to record all operators that are (indirect or direct) parents + // of this PhysicalPlan and will cause this inconsistency. + // Using this information, we can convert the row count between the "single probe" row count and "all probes" + // row count freely. + + // setProbeParents sets the above stated `probeParents` field. + setProbeParents([]PhysicalPlan) + // getEstRowCountForDisplay uses the "single probe" row count in statsInfo and the probeParents to calculate + // the "all probe" row count. + // All places that display the row count for a PhysicalPlan are expected to use this method. + getEstRowCountForDisplay() float64 + // getEstRowCountForDisplay uses the runtime stats and the probeParents to calculate the actual "probe" count. + getActualProbeCnt(*execdetails.RuntimeStatsColl) int64 } // NewDefaultPlanCostOption returns PlanCostOption @@ -449,6 +470,42 @@ func (*baseLogicalPlan) ExplainInfo() string { return "" } +func getEstimatedProbeCntFromProbeParents(probeParents []PhysicalPlan) float64 { + res := float64(1) + for _, pp := range probeParents { + switch pp.(type) { + case *PhysicalApply, *PhysicalIndexHashJoin, *PhysicalIndexMergeJoin, *PhysicalIndexJoin: + if join, ok := pp.(interface{ getInnerChildIdx() int }); ok { + outer := pp.Children()[1-join.getInnerChildIdx()] + res *= outer.statsInfo().RowCount + } + } + } + return res +} + +func getActualProbeCntFromProbeParents(pps []PhysicalPlan, statsColl *execdetails.RuntimeStatsColl) int64 { + res := int64(1) + for _, pp := range pps { + switch pp.(type) { + case *PhysicalApply, *PhysicalIndexHashJoin, *PhysicalIndexMergeJoin, *PhysicalIndexJoin: + if join, ok := pp.(interface{ getInnerChildIdx() int }); ok { + outerChildID := pp.Children()[1-join.getInnerChildIdx()].ID() + actRows := int64(1) + if statsColl.ExistsRootStats(outerChildID) { + actRows = statsColl.GetRootStats(outerChildID).GetActRows() + } + if statsColl.ExistsCopStats(outerChildID) { + actRows = statsColl.GetCopStats(outerChildID).GetActRows() + } + // TODO: For PhysicalApply, we need to consider cache hit ratio in JoinRuntimeStats and use actRows/(1-ratio) here. + res *= actRows + } + } + } + return res +} + type basePhysicalPlan struct { basePlan @@ -461,6 +518,10 @@ type basePhysicalPlan struct { planCost float64 planCostVer2 costVer2 + // probeParents records the IndexJoins and Applys with this operator in their inner children. + // Please see comments in PhysicalPlan for details. + probeParents []PhysicalPlan + // Only for MPP. If TiFlashFineGrainedShuffleStreamCount > 0: // 1. For ExchangeSender, means its output will be partitioned by hash key. // 2. For ExchangeReceiver/Window/Sort, means its input is already partitioned. @@ -472,6 +533,7 @@ func (p *basePhysicalPlan) cloneWithSelf(newSelf PhysicalPlan) (*basePhysicalPla basePlan: p.basePlan, self: newSelf, TiFlashFineGrainedShuffleStreamCount: p.TiFlashFineGrainedShuffleStreamCount, + probeParents: p.probeParents, } for _, child := range p.children { cloned, err := child.Clone() @@ -522,9 +584,6 @@ func (p *basePhysicalPlan) MemoryUsage() (sum int64) { sum = p.basePlan.MemoryUsage() + size.SizeOfSlice + int64(cap(p.childrenReqProps))*size.SizeOfPointer + size.SizeOfSlice + int64(cap(p.children)+1)*size.SizeOfInterface + size.SizeOfFloat64 + size.SizeOfUint64 + size.SizeOfBool - if p.self != nil { - sum += p.self.MemoryUsage() - } for _, prop := range p.childrenReqProps { sum += prop.MemoryUsage() @@ -535,6 +594,24 @@ func (p *basePhysicalPlan) MemoryUsage() (sum int64) { return } +func (p *basePhysicalPlan) getEstRowCountForDisplay() float64 { + if p == nil { + return 0 + } + return p.statsInfo().RowCount * getEstimatedProbeCntFromProbeParents(p.probeParents) +} + +func (p *basePhysicalPlan) getActualProbeCnt(statsColl *execdetails.RuntimeStatsColl) int64 { + if p == nil { + return 1 + } + return getActualProbeCntFromProbeParents(p.probeParents, statsColl) +} + +func (p *basePhysicalPlan) setProbeParents(probeParents []PhysicalPlan) { + p.probeParents = probeParents +} + // GetLogicalTS4TaskMap get the logical TimeStamp now to help rollback the TaskMap changes after that. func (p *baseLogicalPlan) GetLogicalTS4TaskMap() uint64 { p.ctx.GetSessionVars().StmtCtx.TaskMapBakTS++ @@ -804,11 +881,6 @@ func (p *basePlan) SCtx() sessionctx.Context { return p.ctx } -// SetSCtx Context implements Plan Set Context interface. -func (p *basePlan) SetSCtx(ctx sessionctx.Context) { - p.ctx = ctx -} - // buildPlanTrace implements Plan func (p *basePhysicalPlan) buildPlanTrace() *tracing.PlanTrace { planTrace := &tracing.PlanTrace{ID: p.ID(), TP: p.self.TP(), ExplainInfo: p.self.ExplainInfo()} diff --git a/planner/core/plan_cache.go b/planner/core/plan_cache.go index e4bf81791e19c..e58e8b6d91708 100644 --- a/planner/core/plan_cache.go +++ b/planner/core/plan_cache.go @@ -42,8 +42,7 @@ import ( "go.uber.org/zap" ) -func planCachePreprocess(sctx sessionctx.Context, isGeneralPlanCache bool, is infoschema.InfoSchema, - stmt *PlanCacheStmt, params []expression.Expression) error { +func planCachePreprocess(ctx context.Context, sctx sessionctx.Context, isGeneralPlanCache bool, is infoschema.InfoSchema, stmt *PlanCacheStmt, params []expression.Expression) error { vars := sctx.GetSessionVars() stmtAst := stmt.PreparedAst vars.StmtCtx.StmtType = stmtAst.StmtType @@ -88,7 +87,7 @@ func planCachePreprocess(sctx sessionctx.Context, isGeneralPlanCache bool, is in // We should reset the tableRefs in the prepared update statements, otherwise, the ast nodes still hold the old // tableRefs columnInfo which will cause chaos in logic of trying point get plan. (should ban non-public column) ret := &PreprocessorReturn{InfoSchema: is} - err := Preprocess(sctx, stmtAst.Stmt, InPrepare, WithPreprocessorReturn(ret)) + err := Preprocess(ctx, sctx, stmtAst.Stmt, InPrepare, WithPreprocessorReturn(ret)) if err != nil { return ErrSchemaChanged.GenWithStack("Schema change caused error: %s", err.Error()) } @@ -116,7 +115,7 @@ func planCachePreprocess(sctx sessionctx.Context, isGeneralPlanCache bool, is in func GetPlanFromSessionPlanCache(ctx context.Context, sctx sessionctx.Context, isGeneralPlanCache bool, is infoschema.InfoSchema, stmt *PlanCacheStmt, params []expression.Expression) (plan Plan, names []*types.FieldName, err error) { - if err := planCachePreprocess(sctx, isGeneralPlanCache, is, stmt, params); err != nil { + if err := planCachePreprocess(ctx, sctx, isGeneralPlanCache, is, stmt, params); err != nil { return nil, nil, err } diff --git a/planner/core/plan_cache_lru.go b/planner/core/plan_cache_lru.go index ed29a1274e97f..413dd37e8f5a2 100644 --- a/planner/core/plan_cache_lru.go +++ b/planner/core/plan_cache_lru.go @@ -18,6 +18,8 @@ import ( "sync" "github.com/pingcap/errors" + "github.com/pingcap/tidb/metrics" + "github.com/pingcap/tidb/sessionctx" "github.com/pingcap/tidb/types" "github.com/pingcap/tidb/util/hack" "github.com/pingcap/tidb/util/kvcache" @@ -31,6 +33,15 @@ type planCacheEntry struct { PlanValue kvcache.Value } +// MemoryUsage return the memory usage of planCacheEntry +func (e *planCacheEntry) MemoryUsage() (sum int64) { + if e == nil { + return + } + + return e.PlanKey.(*planCacheKey).MemoryUsage() + e.PlanValue.(*PlanCacheValue).MemoryUsage() +} + // LRUPlanCache is a dedicated least recently used cache, Only used for plan cache. type LRUPlanCache struct { capacity uint @@ -49,12 +60,15 @@ type LRUPlanCache struct { // 0 indicates no quota quota uint64 guard float64 + + memoryUsageTotal int64 + sctx sessionctx.Context } // NewLRUPlanCache creates a PCLRUCache object, whose capacity is "capacity". // NOTE: "capacity" should be a positive value. func NewLRUPlanCache(capacity uint, guard float64, quota uint64, - pickFromBucket func(map[*list.Element]struct{}, []*types.FieldType) (*list.Element, bool)) *LRUPlanCache { + pickFromBucket func(map[*list.Element]struct{}, []*types.FieldType) (*list.Element, bool), sctx sessionctx.Context) *LRUPlanCache { if capacity < 1 { capacity = 100 logutil.BgLogger().Info("capacity of LRU cache is less than 1, will use default value(100) init cache") @@ -67,6 +81,7 @@ func NewLRUPlanCache(capacity uint, guard float64, quota uint64, pickFromBucket: pickFromBucket, quota: quota, guard: guard, + sctx: sctx, } } @@ -102,6 +117,7 @@ func (l *LRUPlanCache) Put(key kvcache.Key, value kvcache.Value, paramTypes []*t bucket, bucketExist := l.buckets[hash] if bucketExist { if element, exist := l.pickFromBucket(bucket, paramTypes); exist { + l.updateInstanceMetric(&planCacheEntry{PlanKey: key, PlanValue: value}, element.Value.(*planCacheEntry)) element.Value.(*planCacheEntry).PlanValue = value l.lruList.MoveToFront(element) return @@ -117,6 +133,7 @@ func (l *LRUPlanCache) Put(key kvcache.Key, value kvcache.Value, paramTypes []*t element := l.lruList.PushFront(newCacheEntry) l.buckets[hash][element] = struct{}{} l.size++ + l.updateInstanceMetric(newCacheEntry, nil) if l.size > l.capacity { l.removeOldest() } @@ -132,6 +149,7 @@ func (l *LRUPlanCache) Delete(key kvcache.Key) { bucket, bucketExist := l.buckets[hash] if bucketExist { for element := range bucket { + l.updateInstanceMetric(nil, element.Value.(*planCacheEntry)) l.lruList.Remove(element) l.size-- } @@ -145,6 +163,7 @@ func (l *LRUPlanCache) DeleteAll() { defer l.lock.Unlock() for lru := l.lruList.Back(); lru != nil; lru = l.lruList.Back() { + l.updateInstanceMetric(nil, lru.Value.(*planCacheEntry)) l.lruList.Remove(lru) l.size-- } @@ -174,6 +193,25 @@ func (l *LRUPlanCache) SetCapacity(capacity uint) error { return nil } +// MemoryUsage return the memory usage of LRUPlanCache +func (l *LRUPlanCache) MemoryUsage() (sum int64) { + if l == nil { + return + } + return l.memoryUsageTotal +} + +// Close do some clean work for LRUPlanCache when close the session +func (l *LRUPlanCache) Close() { + if l == nil { + return + } + if l.sctx.GetSessionVars().EnablePreparedPlanCacheMemoryMonitor { + metrics.PlanCacheInstanceMemoryUsage.WithLabelValues("instance").Sub(float64(l.memoryUsageTotal)) + } + metrics.PlanCacheInstancePlanNumCounter.WithLabelValues("plan_num").Sub(float64(l.size)) +} + // removeOldest removes the oldest element from the cache. func (l *LRUPlanCache) removeOldest() { lru := l.lruList.Back() @@ -184,6 +222,7 @@ func (l *LRUPlanCache) removeOldest() { l.onEvict(lru.Value.(*planCacheEntry).PlanKey, lru.Value.(*planCacheEntry).PlanValue) } + l.updateInstanceMetric(nil, lru.Value.(*planCacheEntry)) l.lruList.Remove(lru) l.removeFromBucket(lru) l.size-- @@ -222,3 +261,34 @@ func PickPlanFromBucket(bucket map[*list.Element]struct{}, paramTypes []*types.F } return nil, false } + +// updateInstanceMetric update the memory usage and plan num for show in grafana +func (l *LRUPlanCache) updateInstanceMetric(in, out *planCacheEntry) { + updateInstancePlanNum(in, out) + if l == nil || !l.sctx.GetSessionVars().EnablePreparedPlanCacheMemoryMonitor { + return + } + + if in != nil && out != nil { // replace plan + metrics.PlanCacheInstanceMemoryUsage.WithLabelValues("instance").Sub(float64(out.MemoryUsage())) + metrics.PlanCacheInstanceMemoryUsage.WithLabelValues("instance").Add(float64(in.MemoryUsage())) + l.memoryUsageTotal += in.MemoryUsage() - out.MemoryUsage() + } else if in != nil { // put plan + metrics.PlanCacheInstanceMemoryUsage.WithLabelValues("instance").Add(float64(in.MemoryUsage())) + l.memoryUsageTotal += in.MemoryUsage() + } else { // delete plan + metrics.PlanCacheInstanceMemoryUsage.WithLabelValues("instance").Sub(float64(out.MemoryUsage())) + l.memoryUsageTotal -= out.MemoryUsage() + } +} + +// updateInstancePlanNum update the plan num +func updateInstancePlanNum(in, out *planCacheEntry) { + if in != nil && out != nil { // replace plan + return + } else if in != nil { // put plan + metrics.PlanCacheInstancePlanNumCounter.WithLabelValues("plan_num").Add(1) + } else { // delete plan + metrics.PlanCacheInstancePlanNumCounter.WithLabelValues("plan_num").Sub(1) + } +} diff --git a/planner/core/plan_cache_lru_test.go b/planner/core/plan_cache_lru_test.go index 0ec108e35b838..74b6b2c92c3bb 100644 --- a/planner/core/plan_cache_lru_test.go +++ b/planner/core/plan_cache_lru_test.go @@ -14,8 +14,10 @@ package core import ( - "container/list" + "math/rand" + "strconv" "testing" + "time" "github.com/pingcap/tidb/parser/mysql" "github.com/pingcap/tidb/types" @@ -24,64 +26,39 @@ import ( "github.com/stretchr/testify/require" ) -type mockCacheKey struct { - hash []byte - key int64 -} - -func (mk *mockCacheKey) Hash() []byte { - if mk.hash != nil { - return mk.hash +func randomPlanCacheKey() *planCacheKey { + random := rand.New(rand.NewSource(time.Now().UnixNano())) + return &planCacheKey{ + database: strconv.FormatInt(int64(random.Int()), 10), + schemaVersion: time.Now().UnixNano(), } - mk.hash = make([]byte, 8) - for i := uint(0); i < 8; i++ { - mk.hash[i] = byte((mk.key >> ((i - 1) * 8)) & 0xff) - } - return mk.hash } -func newMockHashKey(key int64) *mockCacheKey { - return &mockCacheKey{ - key: key, +func randomPlanCacheValue(types []*types.FieldType) *PlanCacheValue { + plans := []Plan{&Insert{}, &Update{}, &Delete{}, &PhysicalTableScan{}, &PhysicalTableDual{}, &PhysicalTableReader{}, + &PhysicalTableScan{}, &PhysicalIndexJoin{}, &PhysicalIndexHashJoin{}, &PhysicalIndexMergeJoin{}, &PhysicalIndexMergeReader{}, + &PhysicalIndexLookUpReader{}, &PhysicalApply{}, &PhysicalApply{}, &PhysicalLimit{}} + random := rand.New(rand.NewSource(time.Now().UnixNano())) + return &PlanCacheValue{ + Plan: plans[random.Int()%len(plans)], + ParamTypes: types, } } -type fakePlan struct { - plan int64 - tps []*types.FieldType -} - -func pickFromBucket(bucket map[*list.Element]struct{}, ptypes []*types.FieldType) (*list.Element, bool) { - for element := range bucket { - itemsA := element.Value.(*planCacheEntry).PlanValue.(*fakePlan).tps - flag := true - for j := 0; j < len(itemsA); j++ { - if itemsA[j] != ptypes[j] { - flag = false - break - } - } - if flag { - return element, true - } - } - return nil, false -} - func TestLRUPCPut(t *testing.T) { // test initialize - lruA := NewLRUPlanCache(0, 0, 0, pickFromBucket) + lruA := NewLRUPlanCache(0, 0, 0, PickPlanFromBucket, MockContext()) require.Equal(t, lruA.capacity, uint(100)) maxMemDroppedKv := make(map[kvcache.Key]kvcache.Value) - lru := NewLRUPlanCache(3, 0, 0, pickFromBucket) + lru := NewLRUPlanCache(3, 0, 0, PickPlanFromBucket, MockContext()) lru.onEvict = func(key kvcache.Key, value kvcache.Value) { maxMemDroppedKv[key] = value } require.Equal(t, uint(3), lru.capacity) - keys := make([]*mockCacheKey, 5) - vals := make([]*fakePlan, 5) + keys := make([]*planCacheKey, 5) + vals := make([]*PlanCacheValue, 5) pTypes := [][]*types.FieldType{{types.NewFieldType(mysql.TypeFloat), types.NewFieldType(mysql.TypeDouble)}, {types.NewFieldType(mysql.TypeFloat), types.NewFieldType(mysql.TypeEnum)}, {types.NewFieldType(mysql.TypeFloat), types.NewFieldType(mysql.TypeDate)}, @@ -91,10 +68,9 @@ func TestLRUPCPut(t *testing.T) { // one key corresponding to multi values for i := 0; i < 5; i++ { - keys[i] = newMockHashKey(1) - vals[i] = &fakePlan{ - plan: int64(i), - tps: pTypes[i], + keys[i] = &planCacheKey{database: strconv.FormatInt(int64(1), 10)} + vals[i] = &PlanCacheValue{ + ParamTypes: pTypes[i], } lru.Put(keys[i], vals[i], pTypes[i]) } @@ -133,7 +109,7 @@ func TestLRUPCPut(t *testing.T) { require.Equal(t, root, element) // test value - value, ok := entry.PlanValue.(*fakePlan) + value, ok := entry.PlanValue.(*PlanCacheValue) require.True(t, ok) require.Equal(t, vals[i], value) @@ -145,10 +121,10 @@ func TestLRUPCPut(t *testing.T) { } func TestLRUPCGet(t *testing.T) { - lru := NewLRUPlanCache(3, 0, 0, pickFromBucket) + lru := NewLRUPlanCache(3, 0, 0, PickPlanFromBucket, MockContext()) - keys := make([]*mockCacheKey, 5) - vals := make([]*fakePlan, 5) + keys := make([]*planCacheKey, 5) + vals := make([]*PlanCacheValue, 5) pTypes := [][]*types.FieldType{{types.NewFieldType(mysql.TypeFloat), types.NewFieldType(mysql.TypeDouble)}, {types.NewFieldType(mysql.TypeFloat), types.NewFieldType(mysql.TypeEnum)}, {types.NewFieldType(mysql.TypeFloat), types.NewFieldType(mysql.TypeDate)}, @@ -157,11 +133,8 @@ func TestLRUPCGet(t *testing.T) { } // 5 bucket for i := 0; i < 5; i++ { - keys[i] = newMockHashKey(int64(i % 4)) - vals[i] = &fakePlan{ - plan: int64(i), - tps: pTypes[i], - } + keys[i] = &planCacheKey{database: strconv.FormatInt(int64(i%4), 10)} + vals[i] = &PlanCacheValue{ParamTypes: pTypes[i]} lru.Put(keys[i], vals[i], pTypes[i]) } @@ -187,27 +160,24 @@ func TestLRUPCGet(t *testing.T) { require.True(t, ok) require.Equal(t, keys[i], entry.PlanKey) - value, ok = entry.PlanValue.(*fakePlan) + value, ok = entry.PlanValue.(*PlanCacheValue) require.True(t, ok) require.Equal(t, vals[i], value) } } func TestLRUPCDelete(t *testing.T) { - lru := NewLRUPlanCache(3, 0, 0, pickFromBucket) + lru := NewLRUPlanCache(3, 0, 0, PickPlanFromBucket, MockContext()) - keys := make([]*mockCacheKey, 3) - vals := make([]*fakePlan, 3) + keys := make([]*planCacheKey, 3) + vals := make([]*PlanCacheValue, 3) pTypes := [][]*types.FieldType{{types.NewFieldType(mysql.TypeFloat), types.NewFieldType(mysql.TypeDouble)}, {types.NewFieldType(mysql.TypeFloat), types.NewFieldType(mysql.TypeEnum)}, {types.NewFieldType(mysql.TypeFloat), types.NewFieldType(mysql.TypeDate)}, } for i := 0; i < 3; i++ { - keys[i] = newMockHashKey(int64(i)) - vals[i] = &fakePlan{ - plan: int64(i), - tps: pTypes[i], - } + keys[i] = &planCacheKey{database: strconv.FormatInt(int64(i), 10)} + vals[i] = &PlanCacheValue{ParamTypes: pTypes[i]} lru.Put(keys[i], vals[i], pTypes[i]) } require.Equal(t, 3, int(lru.size)) @@ -226,20 +196,17 @@ func TestLRUPCDelete(t *testing.T) { } func TestLRUPCDeleteAll(t *testing.T) { - lru := NewLRUPlanCache(3, 0, 0, pickFromBucket) + lru := NewLRUPlanCache(3, 0, 0, PickPlanFromBucket, MockContext()) - keys := make([]*mockCacheKey, 3) - vals := make([]*fakePlan, 3) + keys := make([]*planCacheKey, 3) + vals := make([]*PlanCacheValue, 3) pTypes := [][]*types.FieldType{{types.NewFieldType(mysql.TypeFloat), types.NewFieldType(mysql.TypeDouble)}, {types.NewFieldType(mysql.TypeFloat), types.NewFieldType(mysql.TypeEnum)}, {types.NewFieldType(mysql.TypeFloat), types.NewFieldType(mysql.TypeDate)}, } for i := 0; i < 3; i++ { - keys[i] = newMockHashKey(int64(i)) - vals[i] = &fakePlan{ - plan: int64(i), - tps: pTypes[i], - } + keys[i] = &planCacheKey{database: strconv.FormatInt(int64(i), 10)} + vals[i] = &PlanCacheValue{ParamTypes: pTypes[i]} lru.Put(keys[i], vals[i], pTypes[i]) } require.Equal(t, 3, int(lru.size)) @@ -256,14 +223,14 @@ func TestLRUPCDeleteAll(t *testing.T) { func TestLRUPCSetCapacity(t *testing.T) { maxMemDroppedKv := make(map[kvcache.Key]kvcache.Value) - lru := NewLRUPlanCache(5, 0, 0, pickFromBucket) + lru := NewLRUPlanCache(5, 0, 0, PickPlanFromBucket, MockContext()) lru.onEvict = func(key kvcache.Key, value kvcache.Value) { maxMemDroppedKv[key] = value } require.Equal(t, uint(5), lru.capacity) - keys := make([]*mockCacheKey, 5) - vals := make([]*fakePlan, 5) + keys := make([]*planCacheKey, 5) + vals := make([]*PlanCacheValue, 5) pTypes := [][]*types.FieldType{{types.NewFieldType(mysql.TypeFloat), types.NewFieldType(mysql.TypeDouble)}, {types.NewFieldType(mysql.TypeFloat), types.NewFieldType(mysql.TypeEnum)}, {types.NewFieldType(mysql.TypeFloat), types.NewFieldType(mysql.TypeDate)}, @@ -273,11 +240,8 @@ func TestLRUPCSetCapacity(t *testing.T) { // one key corresponding to multi values for i := 0; i < 5; i++ { - keys[i] = newMockHashKey(1) - vals[i] = &fakePlan{ - plan: int64(i), - tps: pTypes[i], - } + keys[i] = &planCacheKey{database: strconv.FormatInt(int64(1), 10)} + vals[i] = &PlanCacheValue{ParamTypes: pTypes[i]} lru.Put(keys[i], vals[i], pTypes[i]) } require.Equal(t, lru.size, lru.capacity) @@ -306,7 +270,7 @@ func TestLRUPCSetCapacity(t *testing.T) { require.NotNil(t, entry) // test value - value, ok := entry.PlanValue.(*fakePlan) + value, ok := entry.PlanValue.(*PlanCacheValue) require.True(t, ok) require.Equal(t, vals[i], value) @@ -321,14 +285,11 @@ func TestLRUPCSetCapacity(t *testing.T) { } func TestIssue37914(t *testing.T) { - lru := NewLRUPlanCache(3, 0.1, 1, pickFromBucket) + lru := NewLRUPlanCache(3, 0.1, 1, PickPlanFromBucket, MockContext()) pTypes := []*types.FieldType{types.NewFieldType(mysql.TypeFloat), types.NewFieldType(mysql.TypeDouble)} - key := newMockHashKey(int64(1)) - val := &fakePlan{ - plan: int64(1), - tps: pTypes, - } + key := &planCacheKey{database: strconv.FormatInt(int64(1), 10)} + val := &PlanCacheValue{ParamTypes: pTypes} require.NotPanics(t, func() { lru.Put(key, val, pTypes) @@ -336,11 +297,11 @@ func TestIssue37914(t *testing.T) { } func TestIssue38244(t *testing.T) { - lru := NewLRUPlanCache(3, 0, 0, pickFromBucket) + lru := NewLRUPlanCache(3, 0, 0, PickPlanFromBucket, MockContext()) require.Equal(t, uint(3), lru.capacity) - keys := make([]*mockCacheKey, 5) - vals := make([]*fakePlan, 5) + keys := make([]*planCacheKey, 5) + vals := make([]*PlanCacheValue, 5) pTypes := [][]*types.FieldType{{types.NewFieldType(mysql.TypeFloat), types.NewFieldType(mysql.TypeDouble)}, {types.NewFieldType(mysql.TypeFloat), types.NewFieldType(mysql.TypeEnum)}, {types.NewFieldType(mysql.TypeFloat), types.NewFieldType(mysql.TypeDate)}, @@ -350,14 +311,48 @@ func TestIssue38244(t *testing.T) { // one key corresponding to multi values for i := 0; i < 5; i++ { - keys[i] = newMockHashKey(int64(i)) - vals[i] = &fakePlan{ - plan: int64(i), - tps: pTypes[i], - } + keys[i] = &planCacheKey{database: strconv.FormatInt(int64(i), 10)} + vals[i] = &PlanCacheValue{ParamTypes: pTypes[i]} lru.Put(keys[i], vals[i], pTypes[i]) } require.Equal(t, lru.size, lru.capacity) require.Equal(t, uint(3), lru.size) require.Equal(t, len(lru.buckets), 3) } + +func TestLRUPlanCacheMemoryUsage(t *testing.T) { + pTypes := []*types.FieldType{types.NewFieldType(mysql.TypeFloat), types.NewFieldType(mysql.TypeDouble)} + ctx := MockContext() + ctx.GetSessionVars().EnablePreparedPlanCacheMemoryMonitor = true + lru := NewLRUPlanCache(3, 0, 0, PickPlanFromBucket, ctx) + evict := make(map[kvcache.Key]kvcache.Value) + lru.onEvict = func(key kvcache.Key, value kvcache.Value) { + evict[key] = value + } + var res int64 = 0 + // put + for i := 0; i < 3; i++ { + k := randomPlanCacheKey() + v := randomPlanCacheValue(pTypes) + lru.Put(k, v, pTypes) + res += k.MemoryUsage() + v.MemoryUsage() + require.Equal(t, lru.MemoryUsage(), res) + } + // evict + p := &PhysicalTableScan{} + k := &planCacheKey{database: "3"} + v := &PlanCacheValue{Plan: p} + lru.Put(k, v, pTypes) + res += k.MemoryUsage() + v.MemoryUsage() + for kk, vv := range evict { + res -= kk.(*planCacheKey).MemoryUsage() + vv.(*PlanCacheValue).MemoryUsage() + } + require.Equal(t, lru.MemoryUsage(), res) + // delete + lru.Delete(k) + res -= k.MemoryUsage() + v.MemoryUsage() + require.Equal(t, lru.MemoryUsage(), res) + // delete all + lru.DeleteAll() + require.Equal(t, lru.MemoryUsage(), int64(0)) +} diff --git a/planner/core/plan_cache_test.go b/planner/core/plan_cache_test.go index 15ef06ab4595d..d1f51bc296c07 100644 --- a/planner/core/plan_cache_test.go +++ b/planner/core/plan_cache_test.go @@ -77,7 +77,7 @@ func TestInitLRUWithSystemVar(t *testing.T) { tk.MustQuery("select @@session.tidb_prepared_plan_cache_size").Check(testkit.Rows("1")) sessionVar := tk.Session().GetSessionVars() - lru := plannercore.NewLRUPlanCache(uint(sessionVar.PreparedPlanCacheSize), 0, 0, plannercore.PickPlanFromBucket) + lru := plannercore.NewLRUPlanCache(uint(sessionVar.PreparedPlanCacheSize), 0, 0, plannercore.PickPlanFromBucket, tk.Session()) require.NotNil(t, lru) } @@ -130,3 +130,49 @@ func TestIssue38269(t *testing.T) { rows := tk.MustQuery(fmt.Sprintf("explain for connection %d", tkProcess.ID)).Rows() require.Contains(t, rows[6][4], "range: decided by [eq(test.t2.a, test.t1.a) in(test.t2.b, 40, 50, 60)]") } + +func TestIssue38533(t *testing.T) { + store := testkit.CreateMockStore(t) + tk := testkit.NewTestKit(t, store) + tk.MustExec("use test") + tk.MustExec("create table t (a int, key (a))") + tk.MustExec(`prepare st from "select /*+ use_index(t, a) */ a from t where a=? and a=?"`) + tk.MustExec(`set @a=1`) + tk.MustExec(`execute st using @a, @a`) + tkProcess := tk.Session().ShowProcess() + ps := []*util.ProcessInfo{tkProcess} + tk.Session().SetSessionManager(&testkit.MockSessionManager{PS: ps}) + plan := tk.MustQuery(fmt.Sprintf("explain for connection %d", tkProcess.ID)).Rows() + require.True(t, strings.Contains(plan[1][0].(string), "RangeScan")) // range-scan instead of full-scan + + tk.MustExec(`execute st using @a, @a`) + tk.MustExec(`execute st using @a, @a`) + tk.MustQuery("select @@last_plan_from_cache").Check(testkit.Rows("0")) +} + +func TestIssue38710(t *testing.T) { + store := testkit.CreateMockStore(t) + tk := testkit.NewTestKit(t, store) + tk.MustExec("use test") + tk.MustExec("drop table if exists UK_NO_PRECISION_19392;") + tk.MustExec("CREATE TABLE `UK_NO_PRECISION_19392` (\n `COL1` bit(1) DEFAULT NULL,\n `COL2` varchar(20) COLLATE utf8mb4_bin DEFAULT NULL,\n `COL4` datetime DEFAULT NULL,\n `COL3` bigint DEFAULT NULL,\n `COL5` float DEFAULT NULL,\n UNIQUE KEY `UK_COL1` (`COL1`)\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin;") + tk.MustExec("INSERT INTO `UK_NO_PRECISION_19392` VALUES (0x00,'缎馗惫砲兣肬憵急鳸嫅稩邏蠧鄂艘腯灩專妴粈','9294-12-26 06:50:40',-3088380202191555887,-3.33294e38),(NULL,'仲膩蕦圓猴洠飌镂喵疎偌嫺荂踖Ƕ藨蜿諪軁笞','1746-08-30 18:04:04',-4016793239832666288,-2.52633e38),(0x01,'冑溜畁脊乤纊繳蟥哅稐奺躁悼貘飗昹槐速玃沮','1272-01-19 23:03:27',-8014797887128775012,1.48868e38);\n") + tk.MustExec(`prepare stmt from 'select * from UK_NO_PRECISION_19392 where col1 between ? and ? or col3 = ? or col2 in (?, ?, ?);';`) + tk.MustExec("set @a=0x01, @b=0x01, @c=-3088380202191555887, @d=\"缎馗惫砲兣肬憵急鳸嫅稩邏蠧鄂艘腯灩專妴粈\", @e=\"缎馗惫砲兣肬憵急鳸嫅稩邏蠧鄂艘腯灩專妴粈\", @f=\"缎馗惫砲兣肬憵急鳸嫅稩邏蠧鄂艘腯灩專妴粈\";") + rows := tk.MustQuery(`execute stmt using @a,@b,@c,@d,@e,@f;`) // can not be cached because @a = @b + require.Equal(t, 2, len(rows.Rows())) + + tk.MustExec(`set @a=NULL, @b=NULL, @c=-4016793239832666288, @d="缎馗惫砲兣肬憵急鳸嫅稩邏蠧鄂艘腯灩專妴粈", @e="仲膩蕦圓猴洠飌镂喵疎偌嫺荂踖Ƕ藨蜿諪軁笞", @f="缎馗惫砲兣肬憵急鳸嫅稩邏蠧鄂艘腯灩專妴粈";`) + rows = tk.MustQuery(`execute stmt using @a,@b,@c,@d,@e,@f;`) + require.Equal(t, 2, len(rows.Rows())) + tk.MustQuery("select @@last_plan_from_cache").Check(testkit.Rows("0")) + + rows = tk.MustQuery(`execute stmt using @a,@b,@c,@d,@e,@f;`) + require.Equal(t, 2, len(rows.Rows())) + tk.MustQuery("select @@last_plan_from_cache").Check(testkit.Rows("1")) + + tk.MustExec(`set @a=0x01, @b=0x01, @c=-3088380202191555887, @d="缎馗惫砲兣肬憵急鳸嫅稩邏蠧鄂艘腯灩專妴粈", @e="缎馗惫砲兣肬憵急鳸嫅稩邏蠧鄂艘腯灩專妴粈", @f="缎馗惫砲兣肬憵急鳸嫅稩邏蠧鄂艘腯灩專妴粈";`) + rows = tk.MustQuery(`execute stmt using @a,@b,@c,@d,@e,@f;`) + require.Equal(t, 2, len(rows.Rows())) + tk.MustQuery("select @@last_plan_from_cache").Check(testkit.Rows("0")) // can not use the cache because the types for @a and @b are not equal to the cached plan +} diff --git a/planner/core/plan_cache_utils.go b/planner/core/plan_cache_utils.go index ac73f34e9babb..0abecafaf7ec8 100644 --- a/planner/core/plan_cache_utils.go +++ b/planner/core/plan_cache_utils.go @@ -19,6 +19,7 @@ import ( "math" "strconv" "time" + "unsafe" "github.com/pingcap/errors" "github.com/pingcap/tidb/kv" @@ -34,6 +35,7 @@ import ( "github.com/pingcap/tidb/util/hack" "github.com/pingcap/tidb/util/hint" "github.com/pingcap/tidb/util/kvcache" + "github.com/pingcap/tidb/util/size" atomic2 "go.uber.org/atomic" "golang.org/x/exp/slices" ) @@ -73,7 +75,7 @@ func GeneratePlanCacheStmtWithAST(ctx context.Context, sctx sessionctx.Context, } switch stmt.(type) { - case *ast.LoadDataStmt, *ast.PrepareStmt, *ast.ExecuteStmt, *ast.DeallocateStmt, *ast.NonTransactionalDeleteStmt: + case *ast.LoadDataStmt, *ast.PrepareStmt, *ast.ExecuteStmt, *ast.DeallocateStmt, *ast.NonTransactionalDMLStmt: return nil, nil, 0, ErrUnsupportedPs } @@ -84,7 +86,7 @@ func GeneratePlanCacheStmtWithAST(ctx context.Context, sctx sessionctx.Context, } ret := &PreprocessorReturn{} - err := Preprocess(sctx, stmt, InPrepare, WithPreprocessorReturn(ret)) + err := Preprocess(ctx, sctx, stmt, InPrepare, WithPreprocessorReturn(ret)) if err != nil { return nil, nil, 0, err } @@ -194,7 +196,8 @@ type planCacheKey struct { restrictedReadOnly bool TiDBSuperReadOnly bool - hash []byte + memoryUsage int64 // Do not include in hash + hash []byte } // Hash implements Key interface. @@ -232,6 +235,23 @@ func (key *planCacheKey) Hash() []byte { return key.hash } +const emptyPlanCacheKeySize = int64(unsafe.Sizeof(planCacheKey{})) + +// MemoryUsage return the memory usage of planCacheKey +func (key *planCacheKey) MemoryUsage() (sum int64) { + if key == nil { + return + } + + if key.memoryUsage > 0 { + return key.memoryUsage + } + sum = emptyPlanCacheKeySize + int64(len(key.database)+len(key.stmtText)+len(key.bindSQL)) + + int64(len(key.isolationReadEngines))*size.SizeOfUint8 + int64(cap(key.hash)) + key.memoryUsage = sum + return +} + // SetPstmtIDSchemaVersion implements PstmtCacheKeyMutator interface to change pstmtID and schemaVersion of cacheKey. // so we can reuse Key instead of new every time. func SetPstmtIDSchemaVersion(key kvcache.Key, stmtText string, schemaVersion int64, isolationReadEngines map[kv.StoreType]struct{}) { @@ -302,9 +322,7 @@ func (s FieldSlice) CheckTypesCompatibility4PC(tps []*types.FieldType) bool { // string types will show up here, and (2) we don't need flen and decimal to be matched exactly to use plan cache tpEqual := (s[i].GetType() == tps[i].GetType()) || (s[i].GetType() == mysql.TypeVarchar && tps[i].GetType() == mysql.TypeVarString) || - (s[i].GetType() == mysql.TypeVarString && tps[i].GetType() == mysql.TypeVarchar) || - // TypeNull should be considered the same as other types. - (s[i].GetType() == mysql.TypeNull || tps[i].GetType() == mysql.TypeNull) + (s[i].GetType() == mysql.TypeVarString && tps[i].GetType() == mysql.TypeVarchar) if !tpEqual || s[i].GetCharset() != tps[i].GetCharset() || s[i].GetCollate() != tps[i].GetCollate() || (s[i].EvalType() == types.ETInt && mysql.HasUnsignedFlag(s[i].GetFlag()) != mysql.HasUnsignedFlag(tps[i].GetFlag())) { return false @@ -325,12 +343,52 @@ type PlanCacheValue struct { OutPutNames []*types.FieldName TblInfo2UnionScan map[*model.TableInfo]bool ParamTypes FieldSlice + memoryUsage int64 } func (v *PlanCacheValue) varTypesUnchanged(txtVarTps []*types.FieldType) bool { return v.ParamTypes.CheckTypesCompatibility4PC(txtVarTps) } +// unKnownMemoryUsage represent the memory usage of uncounted structure, maybe need implement later +// 100 KiB is approximate consumption of a plan from our internal tests +const unKnownMemoryUsage = int64(50 * size.KB) + +// MemoryUsage return the memory usage of PlanCacheValue +func (v *PlanCacheValue) MemoryUsage() (sum int64) { + if v == nil { + return + } + + if v.memoryUsage > 0 { + return v.memoryUsage + } + switch x := v.Plan.(type) { + case PhysicalPlan: + sum = x.MemoryUsage() + case *Insert: + sum = x.MemoryUsage() + case *Update: + sum = x.MemoryUsage() + case *Delete: + sum = x.MemoryUsage() + default: + sum = unKnownMemoryUsage + } + + sum += size.SizeOfInterface + size.SizeOfSlice*2 + int64(cap(v.OutPutNames)+cap(v.ParamTypes))*size.SizeOfPointer + + size.SizeOfMap + int64(len(v.TblInfo2UnionScan))*(size.SizeOfPointer+size.SizeOfBool) + size.SizeOfInt64*2 + + for _, name := range v.OutPutNames { + sum += name.MemoryUsage() + } + for _, ft := range v.ParamTypes { + sum += ft.MemoryUsage() + } + v.memoryUsage = sum + return +} + // NewPlanCacheValue creates a SQLCacheValue. func NewPlanCacheValue(plan Plan, names []*types.FieldName, srcMap map[*model.TableInfo]bool, paramTypes []*types.FieldType) *PlanCacheValue { diff --git a/planner/core/plan_cost_detail_test.go b/planner/core/plan_cost_detail_test.go index 34584773aa6e8..0cad1210ec2f4 100644 --- a/planner/core/plan_cost_detail_test.go +++ b/planner/core/plan_cost_detail_test.go @@ -34,6 +34,7 @@ func TestPlanCostDetail(t *testing.T) { store, dom := testkit.CreateMockStoreAndDomain(t) tk := testkit.NewTestKit(t, store) tk.MustExec("use test") + tk.MustExec("set tidb_cost_model_version=1") tk.MustExec(`create table t (a int primary key, b int, c int, d int, k int, key b(b), key cd(c, d), unique key(k))`) testcases := []struct { sql string @@ -133,7 +134,7 @@ func TestPlanCostDetail(t *testing.T) { func optimize(t *testing.T, sql string, p *parser.Parser, ctx sessionctx.Context, dom *domain.Domain) map[int]*tracing.PhysicalPlanCostDetail { stmt, err := p.ParseOneStmt(sql, "", "") require.NoError(t, err) - err = plannercore.Preprocess(ctx, stmt, plannercore.WithPreprocessorReturn(&plannercore.PreprocessorReturn{InfoSchema: dom.InfoSchema()})) + err = plannercore.Preprocess(context.Background(), ctx, stmt, plannercore.WithPreprocessorReturn(&plannercore.PreprocessorReturn{InfoSchema: dom.InfoSchema()})) require.NoError(t, err) sctx := plannercore.MockContext() sctx.GetSessionVars().StmtCtx.EnableOptimizeTrace = true diff --git a/planner/core/plan_cost_ver1.go b/planner/core/plan_cost_ver1.go index 0d78c0dde8fdf..f7459c70fb01a 100644 --- a/planner/core/plan_cost_ver1.go +++ b/planner/core/plan_cost_ver1.go @@ -851,8 +851,8 @@ func (p *PhysicalHashJoin) GetCost(lCnt, rCnt float64, isMPP bool, costFlag uint } sessVars := p.ctx.GetSessionVars() oomUseTmpStorage := variable.EnableTmpStorageOnOOM.Load() - memQuota := sessVars.StmtCtx.MemTracker.GetBytesLimit() // sessVars.MemQuotaQuery && hint - rowSize := getAvgRowSize(build.statsInfo(), build.Schema()) + memQuota := sessVars.MemTracker.GetBytesLimit() // sessVars.MemQuotaQuery && hint + rowSize := getAvgRowSize(build.statsInfo(), build.Schema().Columns) spill := oomUseTmpStorage && memQuota > 0 && rowSize*buildCnt > float64(memQuota) && p.storeTp != kv.TiFlash // Cost of building hash table. cpuFactor := sessVars.GetCPUFactor() @@ -1048,8 +1048,8 @@ func (p *PhysicalSort) GetCost(count float64, schema *expression.Schema) float64 memoryCost := count * sessVars.GetMemoryFactor() oomUseTmpStorage := variable.EnableTmpStorageOnOOM.Load() - memQuota := sessVars.StmtCtx.MemTracker.GetBytesLimit() // sessVars.MemQuotaQuery && hint - rowSize := getAvgRowSize(p.statsInfo(), schema) + memQuota := sessVars.MemTracker.GetBytesLimit() // sessVars.MemQuotaQuery && hint + rowSize := getAvgRowSize(p.statsInfo(), schema.Columns) spill := oomUseTmpStorage && memQuota > 0 && rowSize*count > float64(memQuota) diskCost := count * sessVars.GetDiskFactor() * rowSize if !spill { @@ -1269,9 +1269,15 @@ func getOperatorActRows(operator PhysicalPlan) float64 { func getCardinality(operator PhysicalPlan, costFlag uint64) float64 { if hasCostFlag(costFlag, CostFlagUseTrueCardinality) { - return getOperatorActRows(operator) + actualProbeCnt := operator.getActualProbeCnt(operator.SCtx().GetSessionVars().StmtCtx.RuntimeStatsColl) + return getOperatorActRows(operator) / float64(actualProbeCnt) } - return operator.StatsCount() + rows := operator.StatsCount() + if rows == 0 && operator.SCtx().GetSessionVars().CostModelVersion == modelVer2 { + // 0 est-row can lead to 0 operator cost which makes plan choice unstable. + rows = 1 + } + return rows } // estimateNetSeekCost calculates the net seek cost for the plan. diff --git a/planner/core/plan_cost_ver2.go b/planner/core/plan_cost_ver2.go index 9d1fc4416ac18..81a59e904ed41 100644 --- a/planner/core/plan_cost_ver2.go +++ b/planner/core/plan_cost_ver2.go @@ -24,7 +24,10 @@ import ( "github.com/pingcap/tidb/kv" "github.com/pingcap/tidb/parser/model" "github.com/pingcap/tidb/planner/property" + "github.com/pingcap/tidb/planner/util" "github.com/pingcap/tidb/sessionctx/variable" + "github.com/pingcap/tidb/util/paging" + "github.com/pingcap/tipb/go-tipb" ) func getPlanCost(p PhysicalPlan, taskType property.TaskType, option *PlanCostOption) (float64, error) { @@ -112,8 +115,8 @@ func (p *PhysicalIndexScan) getPlanCostVer2(taskType property.TaskType, option * } rows := getCardinality(p, option.CostFlag) - rowSize := math.Max(p.getScanRowSize(), 2.0) - scanFactor := getTaskScanFactorVer2(p, taskType) + rowSize := math.Max(getAvgRowSize(p.stats, p.schema.Columns), 2.0) // consider all index columns + scanFactor := getTaskScanFactorVer2(p, kv.TiKV, taskType) p.planCostVer2 = scanCostVer2(option, rows, rowSize, scanFactor) p.planCostInit = true @@ -129,8 +132,14 @@ func (p *PhysicalTableScan) getPlanCostVer2(taskType property.TaskType, option * } rows := getCardinality(p, option.CostFlag) - rowSize := math.Max(p.getScanRowSize(), 2.0) - scanFactor := getTaskScanFactorVer2(p, taskType) + var rowSize float64 + if p.StoreType == kv.TiKV { + rowSize = getAvgRowSize(p.stats, p.tblCols) // consider all columns if TiKV + } else { // TiFlash + rowSize = getAvgRowSize(p.stats, p.schema.Columns) + } + rowSize = math.Max(rowSize, 2.0) + scanFactor := getTaskScanFactorVer2(p, p.StoreType, taskType) p.planCostVer2 = scanCostVer2(option, rows, rowSize, scanFactor) @@ -144,62 +153,59 @@ func (p *PhysicalTableScan) getPlanCostVer2(taskType property.TaskType, option * } // getPlanCostVer2 returns the plan-cost of this sub-plan, which is: -// plan-cost = (child-cost + net-cost + seek-cost) / concurrency +// plan-cost = (child-cost + net-cost) / concurrency // net-cost = rows * row-size * net-factor -// seek-cost = num-tasks * seek-factor func (p *PhysicalIndexReader) getPlanCostVer2(taskType property.TaskType, option *PlanCostOption) (costVer2, error) { if p.planCostInit && !hasCostFlag(option.CostFlag, CostFlagRecalculate) { return p.planCostVer2, nil } rows := getCardinality(p.indexPlan, option.CostFlag) - rowSize := getAvgRowSize(p.indexPlan.Stats(), p.indexPlan.Schema()) + rowSize := getAvgRowSize(p.stats, p.schema.Columns) netFactor := getTaskNetFactorVer2(p, taskType) - seekFactor := getTaskSeekFactorVer2(p, taskType) concurrency := float64(p.ctx.GetSessionVars().DistSQLScanConcurrency()) netCost := netCostVer2(option, rows, rowSize, netFactor) - seekCost := seekCostVer2(option, estimateNumTasks(p.indexPlan), seekFactor) childCost, err := p.indexPlan.getPlanCostVer2(property.CopSingleReadTaskType, option) if err != nil { return zeroCostVer2, err } - p.planCostVer2 = divCostVer2(sumCostVer2(childCost, netCost, seekCost), concurrency) + p.planCostVer2 = divCostVer2(sumCostVer2(childCost, netCost), concurrency) p.planCostInit = true return p.planCostVer2.label(p), nil } // getPlanCostVer2 returns the plan-cost of this sub-plan, which is: -// plan-cost = (child-cost + net-cost + seek-cost) / concurrency +// plan-cost = (child-cost + net-cost) / concurrency // net-cost = rows * row-size * net-factor -// seek-cost = num-tasks * seek-factor func (p *PhysicalTableReader) getPlanCostVer2(taskType property.TaskType, option *PlanCostOption) (costVer2, error) { if p.planCostInit && !hasCostFlag(option.CostFlag, CostFlagRecalculate) { return p.planCostVer2, nil } rows := getCardinality(p.tablePlan, option.CostFlag) - rowSize := getAvgRowSize(p.tablePlan.Stats(), p.tablePlan.Schema()) + rowSize := getAvgRowSize(p.stats, p.schema.Columns) netFactor := getTaskNetFactorVer2(p, taskType) - seekFactor := getTaskSeekFactorVer2(p, taskType) concurrency := float64(p.ctx.GetSessionVars().DistSQLScanConcurrency()) + childType := property.CopSingleReadTaskType + if p.StoreType == kv.TiFlash { // mpp protocol + childType = property.MppTaskType + } netCost := netCostVer2(option, rows, rowSize, netFactor) - seekCost := seekCostVer2(option, estimateNumTasks(p.tablePlan), seekFactor) - childCost, err := p.tablePlan.getPlanCostVer2(property.CopSingleReadTaskType, option) + childCost, err := p.tablePlan.getPlanCostVer2(childType, option) if err != nil { return zeroCostVer2, err } - p.planCostVer2 = divCostVer2(sumCostVer2(childCost, netCost, seekCost), concurrency) + p.planCostVer2 = divCostVer2(sumCostVer2(childCost, netCost), concurrency) p.planCostInit = true // consider tidb_enforce_mpp - _, isMPP := p.tablePlan.(*PhysicalExchangeSender) - if isMPP && p.ctx.GetSessionVars().IsMPPEnforced() && + if p.StoreType == kv.TiFlash && p.ctx.GetSessionVars().IsMPPEnforced() && !hasCostFlag(option.CostFlag, CostFlagRecalculate) { // show the real cost in explain-statements p.planCostVer2 = divCostVer2(p.planCostVer2, 1000000000) } @@ -208,10 +214,10 @@ func (p *PhysicalTableReader) getPlanCostVer2(taskType property.TaskType, option // getPlanCostVer2 returns the plan-cost of this sub-plan, which is: // plan-cost = index-side-cost + (table-side-cost + double-read-cost) / double-read-concurrency -// index-side-cost = (index-child-cost + index-net-cost + index-seek-cost) / dist-concurrency # same with IndexReader -// table-side-cost = (table-child-cost + table-net-cost + table-seek-cost) / dist-concurrency # same with TableReader -// double-read-cost = double-read-seek-cost + double-read-cpu-cost -// double-read-seek-cost = double-read-tasks * seek-factor +// index-side-cost = (index-child-cost + index-net-cost) / dist-concurrency # same with IndexReader +// table-side-cost = (table-child-cost + table-net-cost) / dist-concurrency # same with TableReader +// double-read-cost = double-read-request-cost + double-read-cpu-cost +// double-read-request-cost = double-read-tasks * request-factor // double-read-cpu-cost = index-rows * cpu-factor // double-read-tasks = index-rows / batch-size * task-per-batch # task-per-batch is a magic number now func (p *PhysicalIndexLookUpReader) getPlanCostVer2(taskType property.TaskType, option *PlanCostOption) (costVer2, error) { @@ -225,83 +231,86 @@ func (p *PhysicalIndexLookUpReader) getPlanCostVer2(taskType property.TaskType, tableRowSize := getTblStats(p.tablePlan).GetAvgRowSize(p.ctx, p.tablePlan.Schema().Columns, false, false) cpuFactor := getTaskCPUFactorVer2(p, taskType) netFactor := getTaskNetFactorVer2(p, taskType) - seekFactor := getTaskSeekFactorVer2(p, taskType) + requestFactor := getTaskRequestFactorVer2(p, taskType) distConcurrency := float64(p.ctx.GetSessionVars().DistSQLScanConcurrency()) doubleReadConcurrency := float64(p.ctx.GetSessionVars().IndexLookupConcurrency()) // index-side indexNetCost := netCostVer2(option, indexRows, indexRowSize, netFactor) - indexSeekCost := seekCostVer2(option, estimateNetSeekCost(p.indexPlan), seekFactor) indexChildCost, err := p.indexPlan.getPlanCostVer2(property.CopDoubleReadTaskType, option) if err != nil { return zeroCostVer2, err } - indexSideCost := divCostVer2(sumCostVer2(indexNetCost, indexSeekCost, indexChildCost), distConcurrency) + indexSideCost := divCostVer2(sumCostVer2(indexNetCost, indexChildCost), distConcurrency) // table-side tableNetCost := netCostVer2(option, tableRows, tableRowSize, netFactor) - tableSeekCost := seekCostVer2(option, estimateNetSeekCost(p.tablePlan), seekFactor) tableChildCost, err := p.tablePlan.getPlanCostVer2(property.CopDoubleReadTaskType, option) if err != nil { return zeroCostVer2, err } - tableSideCost := divCostVer2(sumCostVer2(tableNetCost, tableSeekCost, tableChildCost), distConcurrency) + tableSideCost := divCostVer2(sumCostVer2(tableNetCost, tableChildCost), distConcurrency) - // double-read + // double-read: assume at least 1 row to double-read to avoid 0 double-read cost. + doubleReadRows := math.Max(indexRows, 1) doubleReadCPUCost := newCostVer2(option, cpuFactor, indexRows*cpuFactor.Value, - "double-read-cpu(%v*%v)", indexRows, cpuFactor) + "double-read-cpu(%v*%v)", doubleReadRows, cpuFactor) batchSize := float64(p.ctx.GetSessionVars().IndexLookupSize) - taskPerBatch := 40.0 // TODO: remove this magic number - doubleReadTasks := indexRows / batchSize * taskPerBatch - doubleReadSeekCost := seekCostVer2(option, doubleReadTasks, seekFactor) - doubleReadCost := sumCostVer2(doubleReadCPUCost, doubleReadSeekCost) + taskPerBatch := 32.0 // TODO: remove this magic number + doubleReadTasks := doubleReadRows / batchSize * taskPerBatch + doubleReadRequestCost := doubleReadCostVer2(option, doubleReadTasks, requestFactor) + doubleReadCost := sumCostVer2(doubleReadCPUCost, doubleReadRequestCost) p.planCostVer2 = sumCostVer2(indexSideCost, divCostVer2(sumCostVer2(tableSideCost, doubleReadCost), doubleReadConcurrency)) + + if p.ctx.GetSessionVars().EnablePaging && p.expectedCnt > 0 && p.expectedCnt <= paging.Threshold { + // if the expectCnt is below the paging threshold, using paging API + p.Paging = true // TODO: move this operation from cost model to physical optimization + p.planCostVer2 = mulCostVer2(p.planCostVer2, 0.6) + } + p.planCostInit = true return p.planCostVer2.label(p), nil } // getPlanCostVer2 returns the plan-cost of this sub-plan, which is: // plan-cost = table-side-cost + sum(index-side-cost) -// index-side-cost = (index-child-cost + index-net-cost + index-seek-cost) / dist-concurrency # same with IndexReader -// table-side-cost = (table-child-cost + table-net-cost + table-seek-cost) / dist-concurrency # same with TableReader +// index-side-cost = (index-child-cost + index-net-cost) / dist-concurrency # same with IndexReader +// table-side-cost = (table-child-cost + table-net-cost) / dist-concurrency # same with TableReader func (p *PhysicalIndexMergeReader) getPlanCostVer2(taskType property.TaskType, option *PlanCostOption) (costVer2, error) { if p.planCostInit && !hasCostFlag(option.CostFlag, CostFlagRecalculate) { return p.planCostVer2, nil } netFactor := getTaskNetFactorVer2(p, taskType) - seekFactor := getTaskSeekFactorVer2(p, taskType) distConcurrency := float64(p.ctx.GetSessionVars().DistSQLScanConcurrency()) var tableSideCost costVer2 if tablePath := p.tablePlan; tablePath != nil { rows := getCardinality(tablePath, option.CostFlag) - rowSize := getAvgRowSize(tablePath.Stats(), tablePath.Schema()) + rowSize := getAvgRowSize(tablePath.Stats(), tablePath.Schema().Columns) tableNetCost := netCostVer2(option, rows, rowSize, netFactor) - tableSeekCost := seekCostVer2(option, estimateNumTasks(tablePath), seekFactor) tableChildCost, err := tablePath.getPlanCostVer2(taskType, option) if err != nil { return zeroCostVer2, err } - tableSideCost = divCostVer2(sumCostVer2(tableNetCost, tableSeekCost, tableChildCost), distConcurrency) + tableSideCost = divCostVer2(sumCostVer2(tableNetCost, tableChildCost), distConcurrency) } indexSideCost := make([]costVer2, 0, len(p.partialPlans)) for _, indexPath := range p.partialPlans { rows := getCardinality(indexPath, option.CostFlag) - rowSize := getAvgRowSize(indexPath.Stats(), indexPath.Schema()) + rowSize := getAvgRowSize(indexPath.Stats(), indexPath.Schema().Columns) indexNetCost := netCostVer2(option, rows, rowSize, netFactor) - indexSeekCost := seekCostVer2(option, estimateNumTasks(indexPath), seekFactor) indexChildCost, err := indexPath.getPlanCostVer2(taskType, option) if err != nil { return zeroCostVer2, err } indexSideCost = append(indexSideCost, - divCostVer2(sumCostVer2(indexNetCost, indexSeekCost, indexChildCost), distConcurrency)) + divCostVer2(sumCostVer2(indexNetCost, indexChildCost), distConcurrency)) } sumIndexSideCost := sumCostVer2(indexSideCost...) @@ -325,20 +334,18 @@ func (p *PhysicalSort) getPlanCostVer2(taskType property.TaskType, option *PlanC } rows := math.Max(getCardinality(p.children[0], option.CostFlag), 1) - rowSize := getAvgRowSize(p.statsInfo(), p.Schema()) + rowSize := getAvgRowSize(p.statsInfo(), p.Schema().Columns) cpuFactor := getTaskCPUFactorVer2(p, taskType) memFactor := getTaskMemFactorVer2(p, taskType) diskFactor := defaultVer2Factors.TiDBDisk oomUseTmpStorage := variable.EnableTmpStorageOnOOM.Load() - memQuota := p.ctx.GetSessionVars().StmtCtx.MemTracker.GetBytesLimit() + memQuota := p.ctx.GetSessionVars().MemTracker.GetBytesLimit() spill := taskType == property.RootTaskType && // only TiDB can spill oomUseTmpStorage && // spill is enabled memQuota > 0 && // mem-quota is set rowSize*rows > float64(memQuota) // exceed the mem-quota - sortCPUCost := newCostVer2(option, cpuFactor, - rows*math.Log2(rows)*float64(len(p.ByItems))*cpuFactor.Value, - "sortCPU(%v*log2(%v)*%v*%v)", rows, rows, len(p.ByItems), cpuFactor) + sortCPUCost := orderCostVer2(option, rows, rows, p.ByItems, cpuFactor) var sortMemCost, sortDiskCost costVer2 if !spill { @@ -376,13 +383,11 @@ func (p *PhysicalTopN) getPlanCostVer2(taskType property.TaskType, option *PlanC rows := getCardinality(p.children[0], option.CostFlag) N := math.Max(1, float64(p.Count+p.Offset)) - rowSize := getAvgRowSize(p.statsInfo(), p.Schema()) + rowSize := getAvgRowSize(p.statsInfo(), p.Schema().Columns) cpuFactor := getTaskCPUFactorVer2(p, taskType) memFactor := getTaskMemFactorVer2(p, taskType) - topNCPUCost := newCostVer2(option, cpuFactor, - rows*math.Log2(N)*float64(len(p.ByItems))*cpuFactor.Value, - "topCPU(%v*%v*%v*%v)", rows, math.Log2(N), len(p.ByItems), cpuFactor) + topNCPUCost := orderCostVer2(option, rows, N, p.ByItems, cpuFactor) topNMemCost := newCostVer2(option, memFactor, N*rowSize*memFactor.Value, "topMem(%v*%v*%v)", N, rowSize, memFactor) @@ -429,10 +434,10 @@ func (p *PhysicalHashAgg) getPlanCostVer2(taskType property.TaskType, option *Pl inputRows := getCardinality(p.children[0], option.CostFlag) outputRows := getCardinality(p, option.CostFlag) - outputRowSize := getAvgRowSize(p.Stats(), p.Schema()) + outputRowSize := getAvgRowSize(p.Stats(), p.Schema().Columns) cpuFactor := getTaskCPUFactorVer2(p, taskType) memFactor := getTaskMemFactorVer2(p, taskType) - concurrency := p.ctx.GetSessionVars().GetConcurrencyFactor() + concurrency := float64(p.ctx.GetSessionVars().HashAggFinalConcurrency()) aggCost := aggCostVer2(option, inputRows, p.AggFuncs, cpuFactor) groupCost := groupCostVer2(option, inputRows, p.GroupByItems, cpuFactor) @@ -497,8 +502,9 @@ func (p *PhysicalHashJoin) getPlanCostVer2(taskType property.TaskType, option *P } buildRows := getCardinality(build, option.CostFlag) probeRows := getCardinality(probe, option.CostFlag) - buildRowSize := getAvgRowSize(build.Stats(), build.Schema()) - concurrency := float64(p.Concurrency) + buildRowSize := getAvgRowSize(build.Stats(), build.Schema().Columns) + tidbConcurrency := float64(p.Concurrency) + mppConcurrency := float64(3) // TODO: remove this empirical value cpuFactor := getTaskCPUFactorVer2(p, taskType) memFactor := getTaskMemFactorVer2(p, taskType) @@ -517,8 +523,13 @@ func (p *PhysicalHashJoin) getPlanCostVer2(taskType property.TaskType, option *P return zeroCostVer2, err } - p.planCostVer2 = sumCostVer2(buildChildCost, probeChildCost, buildHashCost, buildFilterCost, - divCostVer2(sumCostVer2(probeFilterCost, probeHashCost), concurrency)) + if taskType == property.MppTaskType { // BCast or Shuffle Join, use mppConcurrency + p.planCostVer2 = sumCostVer2(buildChildCost, probeChildCost, + divCostVer2(sumCostVer2(buildHashCost, buildFilterCost, probeHashCost, probeFilterCost), mppConcurrency)) + } else { // TiDB HashJoin + p.planCostVer2 = sumCostVer2(buildChildCost, probeChildCost, buildHashCost, buildFilterCost, + divCostVer2(sumCostVer2(probeFilterCost, probeHashCost), tidbConcurrency)) + } p.planCostInit = true return p.planCostVer2.label(p), nil } @@ -539,6 +550,7 @@ func (p *PhysicalIndexJoin) getPlanCostVer2(taskType property.TaskType, option * buildFilters, probeFilters := p.LeftConditions, p.RightConditions probeConcurrency := float64(p.ctx.GetSessionVars().IndexLookupJoinConcurrency()) cpuFactor := getTaskCPUFactorVer2(p, taskType) + requestFactor := getTaskRequestFactorVer2(p, taskType) buildFilterCost := filterCostVer2(option, buildRows, buildFilters, cpuFactor) buildChildCost, err := build.getPlanCostVer2(taskType, option) @@ -555,10 +567,11 @@ func (p *PhysicalIndexJoin) getPlanCostVer2(taskType property.TaskType, option * // `innerCostPerBatch * numberOfBatches` instead of `innerCostPerRow * numberOfOuterRow`. // Use an empirical value batchRatio to handle this now. // TODO: remove this empirical value. - batchRatio := 30.0 + batchRatio := 1024.0 probeCost := divCostVer2(mulCostVer2(probeChildCost, buildRows), batchRatio) + doubleReadCost := doubleReadCostVer2(option, buildRows/batchRatio, requestFactor) - p.planCostVer2 = sumCostVer2(buildChildCost, buildFilterCost, divCostVer2(sumCostVer2(probeCost, probeFilterCost), probeConcurrency)) + p.planCostVer2 = sumCostVer2(buildChildCost, buildFilterCost, divCostVer2(sumCostVer2(probeCost, probeFilterCost, doubleReadCost), probeConcurrency)) p.planCostInit = true return p.planCostVer2.label(p), nil } @@ -611,7 +624,7 @@ func (p *PhysicalUnionAll) getPlanCostVer2(taskType property.TaskType, option *P return p.planCostVer2, nil } - concurrency := p.ctx.GetSessionVars().GetConcurrencyFactor() + concurrency := float64(p.ctx.GetSessionVars().UnionConcurrency()) childCosts := make([]costVer2, 0, len(p.children)) for _, child := range p.children { childCost, err := child.getPlanCostVer2(taskType, option) @@ -633,10 +646,18 @@ func (p *PhysicalExchangeReceiver) getPlanCostVer2(taskType property.TaskType, o } rows := getCardinality(p, option.CostFlag) - rowSize := getAvgRowSize(p.stats, p.Schema()) + rowSize := getAvgRowSize(p.stats, p.Schema().Columns) netFactor := getTaskNetFactorVer2(p, taskType) + isBCast := false + if sender, ok := p.children[0].(*PhysicalExchangeSender); ok { + isBCast = sender.ExchangeType == tipb.ExchangeType_Broadcast + } + numNode := float64(3) // TODO: remove this empirical value netCost := netCostVer2(option, rows, rowSize, netFactor) + if isBCast { + netCost = mulCostVer2(netCost, numNode) + } childCost, err := p.children[0].getPlanCostVer2(taskType, option) if err != nil { return zeroCostVer2, err @@ -648,7 +669,6 @@ func (p *PhysicalExchangeReceiver) getPlanCostVer2(taskType property.TaskType, o } // getPlanCostVer2 returns the plan-cost of this sub-plan, which is: -// plan-cost = seek-cost + net-cost func (p *PointGetPlan) getPlanCostVer2(taskType property.TaskType, option *PlanCostOption) (costVer2, error) { if p.planCostInit && !hasCostFlag(option.CostFlag, CostFlagRecalculate) { return p.planCostVer2, nil @@ -659,20 +679,15 @@ func (p *PointGetPlan) getPlanCostVer2(taskType property.TaskType, option *PlanC p.planCostInit = true return zeroCostVer2, nil } - rowSize := getAvgRowSize(p.stats, p.schema) + rowSize := getAvgRowSize(p.stats, p.schema.Columns) netFactor := getTaskNetFactorVer2(p, taskType) - seekFactor := getTaskSeekFactorVer2(p, taskType) - netCost := netCostVer2(option, 1, rowSize, netFactor) - seekCost := divCostVer2(seekCostVer2(option, 1, seekFactor), 20) // 20 times faster than general request - - p.planCostVer2 = sumCostVer2(netCost, seekCost) + p.planCostVer2 = netCostVer2(option, 1, rowSize, netFactor) p.planCostInit = true return p.planCostVer2.label(p), nil } // getPlanCostVer2 returns the plan-cost of this sub-plan, which is: -// plan-cost = seek-cost + net-cost func (p *BatchPointGetPlan) getPlanCostVer2(taskType property.TaskType, option *PlanCostOption) (costVer2, error) { if p.planCostInit && !hasCostFlag(option.CostFlag, CostFlagRecalculate) { return p.planCostVer2, nil @@ -684,14 +699,10 @@ func (p *BatchPointGetPlan) getPlanCostVer2(taskType property.TaskType, option * return zeroCostVer2, nil } rows := getCardinality(p, option.CostFlag) - rowSize := getAvgRowSize(p.stats, p.schema) + rowSize := getAvgRowSize(p.stats, p.schema.Columns) netFactor := getTaskNetFactorVer2(p, taskType) - seekFactor := getTaskSeekFactorVer2(p, taskType) - - netCost := netCostVer2(option, rows, rowSize, netFactor) - seekCost := divCostVer2(seekCostVer2(option, 1, seekFactor), 20) // in one batch - p.planCostVer2 = sumCostVer2(netCost, seekCost) + p.planCostVer2 = netCostVer2(option, rows, rowSize, netFactor) p.planCostInit = true return p.planCostVer2.label(p), nil } @@ -710,9 +721,10 @@ func netCostVer2(option *PlanCostOption, rows, rowSize float64, netFactor costVe } func filterCostVer2(option *PlanCostOption, rows float64, filters []expression.Expression, cpuFactor costVer2Factor) costVer2 { + numFuncs := numFunctions(filters) return newCostVer2(option, cpuFactor, - rows*float64(len(filters))*cpuFactor.Value, - "cpu(%v*filters(%v)*%v)", rows, len(filters), cpuFactor) + rows*numFuncs*cpuFactor.Value, + "cpu(%v*filters(%v)*%v)", rows, numFuncs, cpuFactor) } func aggCostVer2(option *PlanCostOption, rows float64, aggFuncs []*aggregation.AggFuncDesc, cpuFactor costVer2Factor) costVer2 { @@ -723,9 +735,38 @@ func aggCostVer2(option *PlanCostOption, rows float64, aggFuncs []*aggregation.A } func groupCostVer2(option *PlanCostOption, rows float64, groupItems []expression.Expression, cpuFactor costVer2Factor) costVer2 { + numFuncs := numFunctions(groupItems) return newCostVer2(option, cpuFactor, - rows*float64(len(groupItems))*cpuFactor.Value, - "group(%v*cols(%v)*%v)", rows, len(groupItems), cpuFactor) + rows*numFuncs*cpuFactor.Value, + "group(%v*cols(%v)*%v)", rows, numFuncs, cpuFactor) +} + +func numFunctions(exprs []expression.Expression) float64 { + num := 0.0 + for _, e := range exprs { + if _, ok := e.(*expression.ScalarFunction); ok { + num++ + } else { // Column and Constant + num += 0.01 // an empirical value + } + } + return num +} + +func orderCostVer2(option *PlanCostOption, rows, N float64, byItems []*util.ByItems, cpuFactor costVer2Factor) costVer2 { + numFuncs := 0 + for _, byItem := range byItems { + if _, ok := byItem.Expr.(*expression.ScalarFunction); ok { + numFuncs++ + } + } + exprCost := newCostVer2(option, cpuFactor, + rows*float64(numFuncs)*cpuFactor.Value, + "exprCPU(%v*%v*%v)", rows, numFuncs, cpuFactor) + orderCost := newCostVer2(option, cpuFactor, + rows*math.Log2(N)*cpuFactor.Value, + "orderCPU(%v*log(%v)*%v)", rows, N, cpuFactor) + return sumCostVer2(exprCost, orderCost) } func hashBuildCostVer2(option *PlanCostOption, buildRows, buildRowSize float64, keys []expression.Expression, cpuFactor, memFactor costVer2Factor) costVer2 { @@ -737,8 +778,8 @@ func hashBuildCostVer2(option *PlanCostOption, buildRows, buildRowSize float64, buildRows*buildRowSize*memFactor.Value, "hashmem(%v*%v*%v)", buildRows, buildRowSize, memFactor) hashBuildCost := newCostVer2(option, cpuFactor, - buildRows*float64(len(keys))*cpuFactor.Value, - "hashbuild(%v*%v*%v)", buildRows, len(keys), cpuFactor) + buildRows*cpuFactor.Value, + "hashbuild(%v*%v)", buildRows, cpuFactor) return sumCostVer2(hashKeyCost, hashMemCost, hashBuildCost) } @@ -748,29 +789,16 @@ func hashProbeCostVer2(option *PlanCostOption, probeRows float64, keys []express probeRows*float64(len(keys))*cpuFactor.Value, "hashkey(%v*%v*%v)", probeRows, len(keys), cpuFactor) hashProbeCost := newCostVer2(option, cpuFactor, - probeRows*float64(len(keys))*cpuFactor.Value, - "hashmem(%v*%v*%v)", probeRows, len(keys), cpuFactor) + probeRows*cpuFactor.Value, + "hashprobe(%v*%v)", probeRows, cpuFactor) return sumCostVer2(hashKeyCost, hashProbeCost) } -func seekCostVer2(option *PlanCostOption, numTasks float64, seekFactor costVer2Factor) costVer2 { - return newCostVer2(option, seekFactor, - numTasks*seekFactor.Value, - "seek(tasks(%v)*%v)", numTasks, seekFactor) -} - -func estimateNumTasks(copTaskPlan PhysicalPlan) float64 { - switch x := copTaskPlan.(type) { - case *PhysicalTableScan: - if x.StoreType == kv.TiFlash { // the old TiFlash interface uses cop-task protocol - return float64(len(x.Ranges)) * float64(len(x.Columns)) - } - return float64(len(x.Ranges)) // TiKV - case *PhysicalIndexScan: - return float64(len(x.Ranges)) // TiKV - default: - return estimateNetSeekCost(copTaskPlan.Children()[0]) - } +// For simplicity and robust, only operators that need double-read like IndexLookup and IndexJoin consider this cost. +func doubleReadCostVer2(option *PlanCostOption, numTasks float64, requestFactor costVer2Factor) costVer2 { + return newCostVer2(option, requestFactor, + numTasks*requestFactor.Value, + "doubleRead(tasks(%v)*%v)", numTasks, requestFactor) } type costVer2Factor struct { @@ -801,22 +829,27 @@ type costVer2Factors struct { TiDBRequest costVer2Factor // per net request } +func (c costVer2Factors) tolist() (l []costVer2Factor) { + return append(l, c.TiDBTemp, c.TiKVScan, c.TiKVDescScan, c.TiFlashScan, c.TiDBCPU, c.TiKVCPU, c.TiFlashCPU, + c.TiDB2KVNet, c.TiDB2FlashNet, c.TiFlashMPPNet, c.TiDBMem, c.TiKVMem, c.TiFlashMem, c.TiDBDisk, c.TiDBRequest) +} + var defaultVer2Factors = costVer2Factors{ - TiDBTemp: costVer2Factor{"tidb_temp_table_factor", 0}, - TiKVScan: costVer2Factor{"tikv_scan_factor", 100}, - TiKVDescScan: costVer2Factor{"tikv_desc_scan_factor", 150}, - TiFlashScan: costVer2Factor{"tiflash_scan_factor", 5}, - TiDBCPU: costVer2Factor{"tidb_cpu_factor", 30}, - TiKVCPU: costVer2Factor{"tikv_cpu_factor", 30}, - TiFlashCPU: costVer2Factor{"tiflash_cpu_factor", 5}, - TiDB2KVNet: costVer2Factor{"tidb_kv_net_factor", 8}, - TiDB2FlashNet: costVer2Factor{"tidb_flash_net_factor", 4}, - TiFlashMPPNet: costVer2Factor{"tiflash_mpp_net_factor", 4}, - TiDBMem: costVer2Factor{"tidb_mem_factor", 1}, - TiKVMem: costVer2Factor{"tikv_mem_factor", 1}, - TiFlashMem: costVer2Factor{"tiflash_mem_factor", 1}, - TiDBDisk: costVer2Factor{"tidb_disk_factor", 1000}, - TiDBRequest: costVer2Factor{"tidb_request_factor", 9500000}, + TiDBTemp: costVer2Factor{"tidb_temp_table_factor", 0.00}, + TiKVScan: costVer2Factor{"tikv_scan_factor", 40.70}, + TiKVDescScan: costVer2Factor{"tikv_desc_scan_factor", 61.05}, + TiFlashScan: costVer2Factor{"tiflash_scan_factor", 11.60}, + TiDBCPU: costVer2Factor{"tidb_cpu_factor", 49.90}, + TiKVCPU: costVer2Factor{"tikv_cpu_factor", 49.90}, + TiFlashCPU: costVer2Factor{"tiflash_cpu_factor", 2.40}, + TiDB2KVNet: costVer2Factor{"tidb_kv_net_factor", 3.96}, + TiDB2FlashNet: costVer2Factor{"tidb_flash_net_factor", 2.20}, + TiFlashMPPNet: costVer2Factor{"tiflash_mpp_net_factor", 1.00}, + TiDBMem: costVer2Factor{"tidb_mem_factor", 0.20}, + TiKVMem: costVer2Factor{"tikv_mem_factor", 0.20}, + TiFlashMem: costVer2Factor{"tiflash_mem_factor", 0.05}, + TiDBDisk: costVer2Factor{"tidb_disk_factor", 200.00}, + TiDBRequest: costVer2Factor{"tidb_request_factor", 6000000.00}, } func getTaskCPUFactorVer2(p PhysicalPlan, taskType property.TaskType) costVer2Factor { @@ -841,10 +874,13 @@ func getTaskMemFactorVer2(p PhysicalPlan, taskType property.TaskType) costVer2Fa } } -func getTaskScanFactorVer2(p PhysicalPlan, taskType property.TaskType) costVer2Factor { +func getTaskScanFactorVer2(p PhysicalPlan, storeType kv.StoreType, taskType property.TaskType) costVer2Factor { if isTemporaryTable(getTableInfo(p)) { return defaultVer2Factors.TiDBTemp } + if storeType == kv.TiFlash { + return defaultVer2Factors.TiFlashScan + } switch taskType { case property.MppTaskType: // TiFlash return defaultVer2Factors.TiFlashScan @@ -878,7 +914,7 @@ func getTaskNetFactorVer2(p PhysicalPlan, _ property.TaskType) costVer2Factor { return defaultVer2Factors.TiDB2KVNet } -func getTaskSeekFactorVer2(p PhysicalPlan, _ property.TaskType) costVer2Factor { +func getTaskRequestFactorVer2(p PhysicalPlan, _ property.TaskType) costVer2Factor { if isTemporaryTable(getTableInfo(p)) { return defaultVer2Factors.TiDBTemp } diff --git a/planner/core/plan_cost_ver2_test.go b/planner/core/plan_cost_ver2_test.go index 3a93a90420eaf..27b5b913980e4 100644 --- a/planner/core/plan_cost_ver2_test.go +++ b/planner/core/plan_cost_ver2_test.go @@ -142,15 +142,55 @@ func TestCostModelShowFormula(t *testing.T) { actual := make([][]interface{}, 0, len(plan)) for _, row := range plan { actual = append(actual, []interface{}{row[0], row[3]}) // id,costFormula - fmt.Println(actual) } require.Equal(t, actual, [][]interface{}{ - {"TableReader_7", "((Selection_6) + (net(2*rowsize(16)*tidb_kv_net_factor(8))) + (seek(tasks(20)*tidb_request_factor(9.5e+06))))/15"}, - {"└─Selection_6", "(cpu(3*filters(1)*tikv_cpu_factor(30))) + (TableFullScan_5)"}, - {" └─TableFullScan_5", "scan(3*logrowsize(29)*tikv_scan_factor(100))"}, + {"TableReader_7", "((Selection_6) + (net(2*rowsize(16)*tidb_kv_net_factor(3.96))))/15"}, + {"└─Selection_6", "(cpu(3*filters(1)*tikv_cpu_factor(49.9))) + (TableFullScan_5)"}, + {" └─TableFullScan_5", "scan(3*logrowsize(32)*tikv_scan_factor(40.7))"}, }) } +func TestCostModelVer2ScanRowSize(t *testing.T) { + store := testkit.CreateMockStore(t) + tk := testkit.NewTestKit(t, store) + tk.MustExec("use test") + tk.MustExec(`create table t (pk int, a int, b int, c int, d int, primary key(pk), index ab(a, b), index abc(a, b, c))`) + tk.MustExec("insert into t values (1, 1, 1, 1, 1)") + tk.MustExec(`set @@tidb_cost_model_version=2`) + + cases := []struct { + query string + scanFormula string + }{ + // index scan row-size on idx_ab is always equal to row-size(index_ab) + {"select a from t use index(ab) where a=1", "scan(1*logrowsize(32)*tikv_scan_factor(40.7))"}, + {"select a, b from t use index(ab) where a=1", "scan(1*logrowsize(32)*tikv_scan_factor(40.7))"}, + {"select b from t use index(ab) where a=1 and b=1", "scan(1*logrowsize(32)*tikv_scan_factor(40.7))"}, + // index scan row-size on idx_abc is always equal to row-size(index_abc) + {"select a from t use index(abc) where a=1", "scan(1*logrowsize(48)*tikv_scan_factor(40.7))"}, + {"select a from t use index(abc) where a=1 and b=1", "scan(1*logrowsize(48)*tikv_scan_factor(40.7))"}, + {"select a, b from t use index(abc) where a=1 and b=1", "scan(1*logrowsize(48)*tikv_scan_factor(40.7))"}, + {"select a, b, c from t use index(abc) where a=1 and b=1 and c=1", "scan(1*logrowsize(48)*tikv_scan_factor(40.7))"}, + // table scan row-size is always equal to row-size(*) + {"select a from t use index(primary) where a=1", "scan(1*logrowsize(80)*tikv_scan_factor(40.7))"}, + {"select a, d from t use index(primary) where a=1", "scan(1*logrowsize(80)*tikv_scan_factor(40.7))"}, + {"select * from t use index(primary) where a=1", "scan(1*logrowsize(80)*tikv_scan_factor(40.7))"}, + } + for _, c := range cases { + rs := tk.MustQuery("explain analyze format=true_card_cost " + c.query).Rows() + scan := rs[len(rs)-1] + formula := scan[3] + require.Equal(t, formula, c.scanFormula) + } + + tk.MustQuery("explain select a from t where a=1").Check(testkit.Rows( + `IndexReader_6 10.00 root index:IndexRangeScan_5`, // use idx_ab automatically since it has the smallest row-size in all access paths. + `└─IndexRangeScan_5 10.00 cop[tikv] table:t, index:ab(a, b) range:[1,1], keep order:false, stats:pseudo`)) + tk.MustQuery("explain select a, b, c from t where a=1").Check(testkit.Rows( + `IndexReader_6 10.00 root index:IndexRangeScan_5`, // use idx_abc automatically + `└─IndexRangeScan_5 10.00 cop[tikv] table:t, index:abc(a, b, c) range:[1,1], keep order:false, stats:pseudo`)) +} + func TestCostModelTraceVer2(t *testing.T) { store := testkit.CreateMockStore(t) tk := testkit.NewTestKit(t, store) diff --git a/planner/core/plan_replayer_capture_test.go b/planner/core/plan_replayer_capture_test.go new file mode 100644 index 0000000000000..2e88f090bd784 --- /dev/null +++ b/planner/core/plan_replayer_capture_test.go @@ -0,0 +1,83 @@ +// Copyright 2022 PingCAP, Inc. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +package core_test + +import ( + "context" + "testing" + + "github.com/pingcap/tidb/domain" + "github.com/pingcap/tidb/parser" + "github.com/pingcap/tidb/planner/core" + "github.com/pingcap/tidb/sessionctx" + "github.com/pingcap/tidb/statistics" + "github.com/pingcap/tidb/testkit" + "github.com/pingcap/tidb/util/hint" + "github.com/stretchr/testify/require" +) + +func TestPlanReplayerCaptureRecordJsonStats(t *testing.T) { + store, dom := testkit.CreateMockStoreAndDomain(t) + tk := testkit.NewTestKit(t, store) + ctx := tk.Session().(sessionctx.Context) + tk.MustExec("use test") + tk.MustExec("create table t1(a int)") + tk.MustExec("create table t2(a int)") + tk.MustExec("SET global tidb_enable_plan_replayer_capture = ON;") + tk.MustExec("analyze table t1") + tk.MustExec("analyze table t2") + testcases := []struct { + sql string + count int + }{ + { + sql: "select * from t1", + count: 1, + }, + { + sql: "select * from t2", + count: 1, + }, + { + sql: "select * from t1,t2", + count: 2, + }, + } + for _, tc := range testcases { + tableStats := getTableStats(tc.sql, t, ctx, dom) + require.Equal(t, tc.count, len(tableStats)) + } +} + +func getTableStats(sql string, t *testing.T, ctx sessionctx.Context, dom *domain.Domain) map[int64]*statistics.Table { + p := parser.New() + stmt, err := p.ParseOneStmt(sql, "", "") + require.NoError(t, err) + err = core.Preprocess(context.Background(), ctx, stmt, core.WithPreprocessorReturn(&core.PreprocessorReturn{InfoSchema: dom.InfoSchema()})) + require.NoError(t, err) + sctx := core.MockContext() + builder, _ := core.NewPlanBuilder().Init(sctx, dom.InfoSchema(), &hint.BlockHintProcessor{}) + domain.GetDomain(sctx).MockInfoCacheAndLoadInfoSchema(dom.InfoSchema()) + plan, err := builder.Build(context.TODO(), stmt) + require.NoError(t, err) + _, _, err = core.DoOptimize(context.TODO(), sctx, builder.GetOptFlag(), plan.(core.LogicalPlan)) + require.NoError(t, err) + tableStats := sctx.GetSessionVars().StmtCtx.TableStats + r := make(map[int64]*statistics.Table) + for key, v := range tableStats { + r[key] = v.(*statistics.Table) + } + return r +} diff --git a/planner/core/plan_stats.go b/planner/core/plan_stats.go index 681b5c1e8a78e..9bea8edb8b0ba 100644 --- a/planner/core/plan_stats.go +++ b/planner/core/plan_stats.go @@ -25,6 +25,7 @@ import ( "github.com/pingcap/tidb/sessionctx" "github.com/pingcap/tidb/sessionctx/stmtctx" "github.com/pingcap/tidb/sessionctx/variable" + "github.com/pingcap/tidb/statistics" "github.com/pingcap/tidb/util/logutil" "github.com/pingcap/tidb/util/mathutil" "go.uber.org/zap" @@ -154,7 +155,7 @@ func collectSyncIndices(ctx sessionctx.Context, histNeededColumns []model.TableI continue } idxStats, ok := tblStats.Indices[idx.Meta().ID] - if !ok || idxStats == nil || !idxStats.IsFullLoad() { + if ok && idxStats.IsStatsInitialized() && !idxStats.IsFullLoad() { histNeededIndices[model.TableItemID{TableID: column.TableID, ID: idxID, IsIndex: true}] = struct{}{} } } @@ -170,3 +171,34 @@ func collectHistNeededItems(histNeededColumns []model.TableItemID, histNeededInd histNeededItems = append(histNeededItems, histNeededColumns...) return } + +func recordTableRuntimeStats(sctx sessionctx.Context, tbls map[int64]struct{}) { + tblStats := sctx.GetSessionVars().StmtCtx.TableStats + if tblStats == nil { + tblStats = map[int64]interface{}{} + } + for tblID := range tbls { + tblJSONStats, err := recordSingleTableRuntimeStats(sctx, tblID) + if err != nil { + logutil.BgLogger().Warn("record table json stats failed", zap.Int64("tblID", tblID), zap.Error(err)) + } + if tblJSONStats == nil { + logutil.BgLogger().Warn("record table json stats failed due to empty", zap.Int64("tblID", tblID)) + } + tblStats[tblID] = tblJSONStats + } + sctx.GetSessionVars().StmtCtx.TableStats = tblStats +} + +func recordSingleTableRuntimeStats(sctx sessionctx.Context, tblID int64) (*statistics.Table, error) { + dom := domain.GetDomain(sctx) + is := dom.InfoSchema() + statsHandle := dom.StatsHandle() + tbl, ok := is.TableByID(tblID) + if !ok { + return nil, nil + } + tableInfo := tbl.Meta() + stats := statsHandle.GetTableStats(tableInfo) + return stats, nil +} diff --git a/planner/core/plan_test.go b/planner/core/plan_test.go index ebbb9c7373401..a31844f5fe722 100644 --- a/planner/core/plan_test.go +++ b/planner/core/plan_test.go @@ -314,7 +314,7 @@ func TestNormalizedDigest(t *testing.T) { ol_supply_w_id int(11) DEFAULT NULL, ol_quantity int(11) DEFAULT NULL, ol_dist_info char(24) DEFAULT NULL, - PRIMARY KEY ( ol_w_id , ol_d_id , ol_o_id , ol_number ) + PRIMARY KEY ( ol_w_id , ol_d_id , ol_o_id , ol_number ) NONCLUSTERED );`) tk.MustExec(`CREATE TABLE bmsql_district ( d_w_id int(11) NOT NULL, @@ -328,7 +328,7 @@ func TestNormalizedDigest(t *testing.T) { d_city varchar(20) DEFAULT NULL, d_state char(2) DEFAULT NULL, d_zip char(9) DEFAULT NULL, - PRIMARY KEY ( d_w_id , d_id ) + PRIMARY KEY ( d_w_id , d_id ) NONCLUSTERED );`) tk.MustExec(`CREATE TABLE bmsql_stock ( s_w_id int(11) NOT NULL, @@ -348,7 +348,7 @@ func TestNormalizedDigest(t *testing.T) { s_dist_08 char(24) DEFAULT NULL, s_dist_09 char(24) DEFAULT NULL, s_dist_10 char(24) DEFAULT NULL, - PRIMARY KEY ( s_w_id , s_i_id ) + PRIMARY KEY ( s_w_id , s_i_id ) NONCLUSTERED );`) err := failpoint.Enable("github.com/pingcap/tidb/planner/mockRandomPlanID", "return(true)") @@ -787,6 +787,7 @@ func TestCopPaging(t *testing.T) { tk := testkit.NewTestKit(t, store) tk.MustExec("use test") + tk.MustExec("set tidb_cost_model_version=2") tk.MustExec("drop table if exists t") tk.MustExec("set session tidb_enable_paging = 1") tk.MustExec("create table t(id int, c1 int, c2 int, primary key (id), key i(c1))") @@ -1078,6 +1079,7 @@ func TestNullEQConditionPlan(t *testing.T) { } // https://github.com/pingcap/tidb/issues/38304 +// https://github.com/pingcap/tidb/issues/38654 func TestOuterJoinOnNull(t *testing.T) { store := testkit.CreateMockStore(t) tk := testkit.NewTestKit(t, store) @@ -1091,4 +1093,10 @@ func TestOuterJoinOnNull(t *testing.T) { tk.MustQuery("SELECT * FROM t0 LEFT JOIN t1 ON NULL WHERE NOT '2' =(t1.c0 AND t0.c1 IS NULL); ").Check(testkit.Rows("> 1 ")) tk.MustQuery("SELECT * FROM t0 LEFT JOIN t1 ON NULL WHERE t1.c0 or true; ").Check(testkit.Rows("> 1 ")) tk.MustQuery("SELECT * FROM t0 LEFT JOIN t1 ON NULL WHERE not(t1.c0 and false); ").Check(testkit.Rows("> 1 ")) + + tk.MustExec("CREATE TABLE t2(c0 INT);") + tk.MustExec("CREATE TABLE t3(c0 INT);") + tk.MustExec("INSERT INTO t3 VALUES (1);") + tk.MustQuery("SELECT ((NOT ('i'))AND(t2.c0)) IS NULL FROM t2 RIGHT JOIN t3 ON t3.c0;").Check(testkit.Rows("1")) + tk.MustQuery("SELECT * FROM t2 RIGHT JOIN t3 ON t2.c0 WHERE ((NOT ('i'))AND(t2.c0)) IS NULL;").Check(testkit.Rows(" 1")) } diff --git a/planner/core/plan_to_pb.go b/planner/core/plan_to_pb.go index 5b296acf79a4b..a68fdae38f5de 100644 --- a/planner/core/plan_to_pb.go +++ b/planner/core/plan_to_pb.go @@ -21,12 +21,9 @@ import ( "github.com/pingcap/tidb/kv" "github.com/pingcap/tidb/parser/model" "github.com/pingcap/tidb/sessionctx" - "github.com/pingcap/tidb/table" "github.com/pingcap/tidb/table/tables" - "github.com/pingcap/tidb/tablecodec" "github.com/pingcap/tidb/telemetry" "github.com/pingcap/tidb/util" - "github.com/pingcap/tidb/util/codec" "github.com/pingcap/tidb/util/ranger" "github.com/pingcap/tipb/go-tipb" ) @@ -206,7 +203,7 @@ func (p *PhysicalTableScan) ToPB(ctx sessionctx.Context, storeType kv.StoreType) telemetry.CurrentTiflashTableScanWithFastScanCount.Inc() } } - err := SetPBColumnsDefaultValue(ctx, tsExec.Columns, p.Columns) + err := tables.SetPBColumnsDefaultValue(ctx, tsExec.Columns, p.Columns) return &tipb.Executor{Tp: tipb.ExecType_TypeTableScan, TblScan: tsExec, ExecutorId: &executorID}, err } @@ -218,7 +215,7 @@ func (p *PhysicalTableScan) partitionTableScanToPBForFlash(ctx sessionctx.Contex } ptsExec.Desc = p.Desc executorID := p.ExplainID().String() - err := SetPBColumnsDefaultValue(ctx, ptsExec.Columns, p.Columns) + err := tables.SetPBColumnsDefaultValue(ctx, ptsExec.Columns, p.Columns) return &tipb.Executor{Tp: tipb.ExecType_TypePartitionTableScan, PartitionTableScan: ptsExec, ExecutorId: &executorID}, err } @@ -599,32 +596,3 @@ func (p *PhysicalSort) ToPB(ctx sessionctx.Context, storeType kv.StoreType) (*ti FineGrainedShuffleBatchSize: ctx.GetSessionVars().TiFlashFineGrainedShuffleBatchSize, }, nil } - -// SetPBColumnsDefaultValue sets the default values of tipb.ColumnInfos. -func SetPBColumnsDefaultValue(ctx sessionctx.Context, pbColumns []*tipb.ColumnInfo, columns []*model.ColumnInfo) error { - for i, c := range columns { - // For virtual columns, we set their default values to NULL so that TiKV will return NULL properly, - // They real values will be compute later. - if c.IsGenerated() && !c.GeneratedStored { - pbColumns[i].DefaultVal = []byte{codec.NilFlag} - } - if c.GetOriginDefaultValue() == nil { - continue - } - - sessVars := ctx.GetSessionVars() - originStrict := sessVars.StrictSQLMode - sessVars.StrictSQLMode = false - d, err := table.GetColOriginDefaultValue(ctx, c) - sessVars.StrictSQLMode = originStrict - if err != nil { - return err - } - - pbColumns[i].DefaultVal, err = tablecodec.EncodeValue(sessVars.StmtCtx, nil, d) - if err != nil { - return err - } - } - return nil -} diff --git a/planner/core/planbuilder.go b/planner/core/planbuilder.go index 39bae869f68c5..4036823813bfb 100644 --- a/planner/core/planbuilder.go +++ b/planner/core/planbuilder.go @@ -90,6 +90,7 @@ type tableHintInfo struct { indexNestedLoopJoinTables sortMergeJoinTables []hintTableInfo broadcastJoinTables []hintTableInfo + shuffleJoinTables []hintTableInfo hashJoinTables []hintTableInfo indexHintList []indexHintInfo tiflashTables []hintTableInfo @@ -227,6 +228,10 @@ func (info *tableHintInfo) ifPreferBroadcastJoin(tableNames ...*hintTableInfo) b return info.matchTableName(tableNames, info.broadcastJoinTables) } +func (info *tableHintInfo) ifPreferShuffleJoin(tableNames ...*hintTableInfo) bool { + return info.matchTableName(tableNames, info.shuffleJoinTables) +} + func (info *tableHintInfo) ifPreferHashJoin(tableNames ...*hintTableInfo) bool { return info.matchTableName(tableNames, info.hashJoinTables) } @@ -628,7 +633,7 @@ func (b *PlanBuilder) GetIsForUpdateRead() bool { } // GetDBTableInfo gets the accessed dbs and tables info. -func (b *PlanBuilder) GetDBTableInfo() []stmtctx.TableEntry { +func GetDBTableInfo(visitInfo []visitInfo) []stmtctx.TableEntry { var tables []stmtctx.TableEntry existsFunc := func(tbls []stmtctx.TableEntry, tbl *stmtctx.TableEntry) bool { for _, t := range tbls { @@ -638,7 +643,13 @@ func (b *PlanBuilder) GetDBTableInfo() []stmtctx.TableEntry { } return false } - for _, v := range b.visitInfo { + for _, v := range visitInfo { + if v.db == "" && v.table == "" { + // when v.db == "" and v.table == "", it means this visitInfo is for dynamic privilege, + // so it is not related to any database or table. + continue + } + tbl := &stmtctx.TableEntry{DB: v.db, Table: v.table} if !existsFunc(tables, tbl) { tables = append(tables, *tbl) @@ -775,6 +786,10 @@ func (b *PlanBuilder) Build(ctx context.Context, node ast.Node) (Plan, error) { return b.buildLoadData(ctx, x) case *ast.LoadStatsStmt: return b.buildLoadStats(x), nil + case *ast.LockStatsStmt: + return b.buildLockStats(x), nil + case *ast.UnlockStatsStmt: + return b.buildUnlockStats(x), nil case *ast.IndexAdviseStmt: return b.buildIndexAdvise(x), nil case *ast.PlanReplayerStmt: @@ -804,7 +819,7 @@ func (b *PlanBuilder) Build(ctx context.Context, node ast.Node) (Plan, error) { *ast.BeginStmt, *ast.CommitStmt, *ast.SavepointStmt, *ast.ReleaseSavepointStmt, *ast.RollbackStmt, *ast.CreateUserStmt, *ast.SetPwdStmt, *ast.AlterInstanceStmt, *ast.GrantStmt, *ast.DropUserStmt, *ast.AlterUserStmt, *ast.RevokeStmt, *ast.KillStmt, *ast.DropStatsStmt, *ast.GrantRoleStmt, *ast.RevokeRoleStmt, *ast.SetRoleStmt, *ast.SetDefaultRoleStmt, *ast.ShutdownStmt, - *ast.RenameUserStmt, *ast.NonTransactionalDeleteStmt, *ast.SetSessionStatesStmt: + *ast.RenameUserStmt, *ast.NonTransactionalDMLStmt, *ast.SetSessionStatesStmt: return b.buildSimple(ctx, node.(ast.StmtNode)) case ast.DDLNode: return b.buildDDL(ctx, x) @@ -3109,7 +3124,7 @@ func (b *PlanBuilder) buildShow(ctx context.Context, show *ast.ShowStmt) (Plan, err = ErrDBaccessDenied.GenWithStackByArgs(user.AuthUsername, user.AuthHostname, mysql.SystemDB) } b.visitInfo = appendVisitInfo(b.visitInfo, mysql.SelectPriv, mysql.SystemDB, "", "", err) - case ast.ShowStatsBuckets, ast.ShowStatsHistograms, ast.ShowStatsMeta: + case ast.ShowStatsBuckets, ast.ShowStatsHistograms, ast.ShowStatsMeta, ast.ShowStatsLocked: var err error if user := b.ctx.GetSessionVars().User; user != nil { err = ErrTableaccessDenied.GenWithStackByArgs("SHOW", user.AuthUsername, user.AuthHostname, show.Table.Name.L) @@ -3278,6 +3293,16 @@ func (b *PlanBuilder) buildSimple(ctx context.Context, node ast.StmtNode) (Plan, p.StaleTxnStartTS = readTS // consume read ts here b.ctx.GetSessionVars().TxnReadTS.UseTxnReadTS() + } else if b.ctx.GetSessionVars().EnableExternalTSRead && !b.ctx.GetSessionVars().InRestrictedSQL { + // try to get the stale ts from external timestamp + startTS, err := staleread.GetExternalTimestamp(ctx, b.ctx) + if err != nil { + return nil, err + } + if err := sessionctx.ValidateStaleReadTS(ctx, b.ctx, startTS); err != nil { + return nil, err + } + p.StaleTxnStartTS = startTS } } return p, nil @@ -3616,7 +3641,7 @@ func (b *PlanBuilder) buildInsert(ctx context.Context, insert *ast.InsertStmt) ( if err != nil { return nil, err } - insertPlan.FKChecks, err = insertPlan.buildOnInsertFKChecks(b.ctx, b.is, tn.DBInfo.Name.L) + err = insertPlan.buildOnInsertFKTriggers(b.ctx, b.is, tn.DBInfo.Name.L) return insertPlan, err } @@ -4046,6 +4071,16 @@ func (b *PlanBuilder) buildLoadStats(ld *ast.LoadStatsStmt) Plan { return p } +func (b *PlanBuilder) buildLockStats(ld *ast.LockStatsStmt) Plan { + p := &LockStats{Tables: ld.Tables} + return p +} + +func (b *PlanBuilder) buildUnlockStats(ld *ast.UnlockStatsStmt) Plan { + p := &UnlockStats{Tables: ld.Tables} + return p +} + func (b *PlanBuilder) buildIndexAdvise(node *ast.IndexAdviseStmt) Plan { p := &IndexAdvise{ IsLocal: node.IsLocal, @@ -4457,9 +4492,9 @@ func (b *PlanBuilder) buildDDL(ctx context.Context, node ast.DDLNode) (Plan, err if len(v.Cols) != schema.Len() { return nil, dbterror.ErrViewWrongList } - if b.ctx.GetSessionVars().User != nil { - authErr = ErrTableaccessDenied.GenWithStackByArgs("CREATE VIEW", b.ctx.GetSessionVars().User.AuthUsername, - b.ctx.GetSessionVars().User.AuthHostname, v.ViewName.Name.L) + if user := b.ctx.GetSessionVars().User; user != nil { + authErr = ErrTableaccessDenied.GenWithStackByArgs("CREATE VIEW", user.AuthUsername, + user.AuthHostname, v.ViewName.Name.L) } b.visitInfo = appendVisitInfo(b.visitInfo, mysql.CreateViewPriv, v.ViewName.Schema.L, v.ViewName.Name.L, "", authErr) @@ -4545,9 +4580,12 @@ func (b *PlanBuilder) buildDDL(ctx context.Context, node ast.DDLNode) (Plan, err } b.visitInfo = appendVisitInfo(b.visitInfo, mysql.InsertPriv, v.TableToTables[0].NewTable.Schema.L, v.TableToTables[0].NewTable.Name.L, "", authErr) - case *ast.RecoverTableStmt, *ast.FlashBackTableStmt: + case *ast.RecoverTableStmt, *ast.FlashBackTableStmt, *ast.FlashBackDatabaseStmt: // Recover table command can only be executed by administrator. b.visitInfo = appendVisitInfo(b.visitInfo, mysql.SuperPriv, "", "", "", nil) + case *ast.FlashBackToTimestampStmt: + // Flashback cluster can only be executed by user with `super` privilege. + b.visitInfo = appendVisitInfo(b.visitInfo, mysql.SuperPriv, "", "", "", nil) case *ast.LockTablesStmt: user := b.ctx.GetSessionVars().User for _, lock := range v.TableLocks { @@ -4915,6 +4953,9 @@ func buildShowSchema(s *ast.ShowStmt, isView bool, isSequence bool) (schema *exp case ast.ShowColumnStatsUsage: names = []string{"Db_name", "Table_name", "Partition_name", "Column_name", "Last_used_at", "Last_analyzed_at"} ftypes = []byte{mysql.TypeVarchar, mysql.TypeVarchar, mysql.TypeVarchar, mysql.TypeVarchar, mysql.TypeDatetime, mysql.TypeDatetime} + case ast.ShowStatsLocked: + names = []string{"Db_name", "Table_name", "Partition_name", "Status"} + ftypes = []byte{mysql.TypeVarchar, mysql.TypeVarchar, mysql.TypeVarchar, mysql.TypeVarchar} case ast.ShowProfiles: // ShowProfiles is deprecated. names = []string{"Query_ID", "Duration", "Query"} ftypes = []byte{mysql.TypeLong, mysql.TypeDouble, mysql.TypeVarchar} diff --git a/planner/core/point_get_plan.go b/planner/core/point_get_plan.go index 96e17291e421c..de69438257f4e 100644 --- a/planner/core/point_get_plan.go +++ b/planner/core/point_get_plan.go @@ -44,6 +44,7 @@ import ( tidbutil "github.com/pingcap/tidb/util" "github.com/pingcap/tidb/util/chunk" "github.com/pingcap/tidb/util/collate" + "github.com/pingcap/tidb/util/execdetails" "github.com/pingcap/tidb/util/logutil" "github.com/pingcap/tidb/util/mathutil" "github.com/pingcap/tidb/util/plancodec" @@ -90,6 +91,28 @@ type PointGetPlan struct { planCostVer2 costVer2 // accessCols represents actual columns the PointGet will access, which are used to calculate row-size accessCols []*expression.Column + + // probeParents records the IndexJoins and Applys with this operator in their inner children. + // Please see comments in PhysicalPlan for details. + probeParents []PhysicalPlan +} + +func (p *PointGetPlan) getEstRowCountForDisplay() float64 { + if p == nil { + return 0 + } + return p.statsInfo().RowCount * getEstimatedProbeCntFromProbeParents(p.probeParents) +} + +func (p *PointGetPlan) getActualProbeCnt(statsColl *execdetails.RuntimeStatsColl) int64 { + if p == nil { + return 1 + } + return getActualProbeCntFromProbeParents(p.probeParents, statsColl) +} + +func (p *PointGetPlan) setProbeParents(probeParents []PhysicalPlan) { + p.probeParents = probeParents } type nameValuePair struct { @@ -317,6 +340,27 @@ type BatchPointGetPlan struct { planCostVer2 costVer2 // accessCols represents actual columns the PointGet will access, which are used to calculate row-size accessCols []*expression.Column + + // probeParents records the IndexJoins and Applys with this operator in their inner children. + // Please see comments in PhysicalPlan for details. + probeParents []PhysicalPlan +} + +func (p *BatchPointGetPlan) getEstRowCountForDisplay() float64 { + if p == nil { + return 0 + } + return p.statsInfo().RowCount * getEstimatedProbeCntFromProbeParents(p.probeParents) +} + +func (p *BatchPointGetPlan) getActualProbeCnt(statsColl *execdetails.RuntimeStatsColl) int64 { + if p == nil { + return 1 + } + return getActualProbeCntFromProbeParents(p.probeParents, statsColl) +} +func (p *BatchPointGetPlan) setProbeParents(probeParents []PhysicalPlan) { + p.probeParents = probeParents } // Cost implements PhysicalPlan interface @@ -1549,7 +1593,7 @@ func buildPointUpdatePlan(ctx sessionctx.Context, pointPlan PhysicalPlan, dbName updatePlan.PartitionedTable = append(updatePlan.PartitionedTable, pt) } } - err := updatePlan.buildOnUpdateFKChecks(ctx, is, updatePlan.tblID2Table) + err := updatePlan.buildOnUpdateFKTriggers(ctx, is, updatePlan.tblID2Table) if err != nil { return nil } @@ -1644,7 +1688,7 @@ func buildPointDeletePlan(ctx sessionctx.Context, pointPlan PhysicalPlan, dbName is := sessiontxn.GetTxnManager(ctx).GetTxnInfoSchema() t, _ := is.TableByID(tbl.ID) tblID2Table := map[int64]table.Table{tbl.ID: t} - err = delPlan.buildOnDeleteFKChecks(ctx, is, tblID2Table) + err = delPlan.buildOnDeleteFKTriggers(ctx, is, tblID2Table) if err != nil { return nil } diff --git a/planner/core/point_get_plan_test.go b/planner/core/point_get_plan_test.go index 3a92d25719c09..7801631325f37 100644 --- a/planner/core/point_get_plan_test.go +++ b/planner/core/point_get_plan_test.go @@ -175,6 +175,7 @@ func TestGetExtraColumn(t *testing.T) { store := testkit.CreateMockStore(t) tk := testkit.NewTestKit(t, store) tk.MustExec("use test") + tk.MustExec("set tidb_cost_model_version=2") tk.MustExec(`CREATE TABLE t ( a int(11) DEFAULT NULL, b int(11) DEFAULT NULL, @@ -188,7 +189,7 @@ func TestGetExtraColumn(t *testing.T) { tk.MustQuery(`explain format='brief' select t.*, _tidb_rowid from t where a = 1`).Check(testkit.Rows(`Point_Get 1.00 root table:t, index:idx(a) `)) tk.MustExec(`commit`) tk.MustQuery(`explain format='brief' select count(_tidb_rowid) from t where a=1`).Check(testkit.Rows( - `StreamAgg 1.00 root funcs:count(test.t._tidb_rowid)->Column#4`, + `HashAgg 1.00 root funcs:count(test.t._tidb_rowid)->Column#4`, `└─Point_Get 1.00 root table:t, index:idx(a) `)) tk.MustQuery(`explain format='brief' select *, date_format(b, "") from t where a =1 for update`).Check(testkit.Rows( `Projection 1.00 root test.t.a, test.t.b, date_format(cast(test.t.b, datetime BINARY), )->Column#4`, @@ -328,7 +329,7 @@ func TestPointGetId(t *testing.T) { require.Len(t, stmts, 1) stmt := stmts[0] ret := &core.PreprocessorReturn{} - err = core.Preprocess(ctx, stmt, core.WithPreprocessorReturn(ret)) + err = core.Preprocess(context.Background(), ctx, stmt, core.WithPreprocessorReturn(ret)) require.NoError(t, err) p, _, err := planner.Optimize(context.TODO(), ctx, stmt, ret.InfoSchema) require.NoError(t, err) @@ -959,7 +960,7 @@ func TestIssue26638(t *testing.T) { tk.MustQuery("execute stmt1 using @c;").Check(testkit.Rows()) tk.MustQuery("execute stmt2 using @c, @d;").Check(testkit.Rows()) tk.MustExec("drop table if exists t2;") - tk.MustExec("create table t2(a float, b float, c float, primary key(a, b, c));") + tk.MustExec("create table t2(a float, b float, c float, primary key(a, b, c) nonclustered);") tk.MustExec("insert into t2 values(-1, 0, 1), (-1.1, 0, 1.1), (-1.56018e38, -1.96716e38, 9.46347e37), (0, 1, 2);") tk.MustQuery("explain format='brief' select * from t2 where (a, b, c) in ((-1.1, 0, 1.1), (-1.56018e38, -1.96716e38, 9.46347e37));").Check(testkit.Rows("TableDual 0.00 root rows:0")) tk.MustQuery("select * from t2 where (a, b, c) in ((-1.1, 0, 1.1), (-1.56018e38, -1.96716e38, 9.46347e37), (-1, 0, 1));").Check(testkit.Rows("-1 0 1")) @@ -976,7 +977,7 @@ func TestIssue23511(t *testing.T) { tk := testkit.NewTestKit(t, store) tk.MustExec("use test") tk.MustExec("drop table if exists t1, t2;") - tk.MustExec("CREATE TABLE `t1` (`COL1` bit(11) NOT NULL,PRIMARY KEY (`COL1`));") + tk.MustExec("CREATE TABLE `t1` (`COL1` bit(11) NOT NULL,PRIMARY KEY (`COL1`) NONCLUSTERED);") tk.MustExec("CREATE TABLE `t2` (`COL1` bit(11) NOT NULL);") tk.MustExec("insert into t1 values(b'00000111001'), (b'00000000000');") tk.MustExec("insert into t2 values(b'00000111001');") diff --git a/planner/core/prepare_test.go b/planner/core/prepare_test.go index 8d5cb077ad5c7..2cb5cca6ab4d6 100644 --- a/planner/core/prepare_test.go +++ b/planner/core/prepare_test.go @@ -1339,7 +1339,7 @@ func TestPlanCacheSwitchDB(t *testing.T) { // DB is not specified se2, err := session.CreateSession4TestWithOpt(store, &session.Opt{ - PreparedPlanCache: core.NewLRUPlanCache(100, 0.1, math.MaxUint64, core.PickPlanFromBucket), + PreparedPlanCache: core.NewLRUPlanCache(100, 0.1, math.MaxUint64, core.PickPlanFromBucket, tk.Session()), }) require.NoError(t, err) tk2 := testkit.NewTestKitWithSession(t, store, se2) @@ -1420,7 +1420,7 @@ func TestIssue29303(t *testing.T) { tk.MustQuery(`execute stmt using @a,@b,@c,@d`).Check(testkit.Rows()) tk.MustExec(`set @a="龂", @b="龂", @c="龂", @d="龂"`) tk.MustQuery(`execute stmt using @a,@b,@c,@d`).Check(testkit.Rows("� 龂 � 龂")) - tk.MustQuery(`select @@last_plan_from_cache`).Check(testkit.Rows("0")) + tk.MustQuery(`select @@last_plan_from_cache`).Check(testkit.Rows("1")) } func TestIssue34725(t *testing.T) { @@ -1946,11 +1946,10 @@ func TestPlanCachePointGetAndTableDual(t *testing.T) { tk.MustExec("insert into t1 values('0000','7777',1)") tk.MustExec("prepare s1 from 'select * from t1 where c1=? and c2>=? and c2<=?'") tk.MustExec("set @a1='0000', @b1='9999'") - // IndexLookup plan would be built, we should cache it. tk.MustQuery("execute s1 using @a1, @b1, @b1").Check(testkit.Rows()) tk.MustQuery("select @@last_plan_from_cache").Check(testkit.Rows("0")) tk.MustQuery("execute s1 using @a1, @a1, @b1").Check(testkit.Rows("0000 7777 1")) - tk.MustQuery("select @@last_plan_from_cache").Check(testkit.Rows("1")) + tk.MustQuery("select @@last_plan_from_cache").Check(testkit.Rows("0")) // c2>=9999 and c2<=9999 --> c2=9999 tk.MustExec("create table t2(c1 bigint(20) primary key, c2 varchar(20))") tk.MustExec("insert into t2 values(1,'7777')") @@ -1966,17 +1965,15 @@ func TestPlanCachePointGetAndTableDual(t *testing.T) { tk.MustExec("insert into t3 values(2,1,1)") tk.MustExec("prepare s3 from 'select /*+ use_index_merge(t3) */ * from t3 where (c1 >= ? and c1 <= ?) or c2 > 1'") tk.MustExec("set @a3=1,@b3=3") - // TableReader plan would be built, we should cache it. tk.MustQuery("execute s3 using @a3,@a3").Check(testkit.Rows()) tk.MustQuery("select @@last_plan_from_cache").Check(testkit.Rows("0")) tk.MustQuery("execute s3 using @a3,@b3").Check(testkit.Rows("2 1 1")) - tk.MustQuery("select @@last_plan_from_cache").Check(testkit.Rows("1")) + tk.MustQuery("select @@last_plan_from_cache").Check(testkit.Rows("0")) // c1>=1 and c1<=1 --> c1==1 tk.MustExec("prepare s3 from 'select /*+ use_index_merge(t3) */ * from t3 where (c1 >= ? and c1 <= ?) or c2 > 1'") tk.MustExec("set @a3=1,@b3=3") - // TableReader plan would be built, we should cache it. tk.MustQuery("execute s3 using @b3,@a3").Check(testkit.Rows()) - tk.MustQuery("select @@last_plan_from_cache").Check(testkit.Rows("1")) + tk.MustQuery("select @@last_plan_from_cache").Check(testkit.Rows("0")) tk.MustQuery("execute s3 using @a3,@b3").Check(testkit.Rows("2 1 1")) tk.MustQuery("select @@last_plan_from_cache").Check(testkit.Rows("1")) @@ -1987,7 +1984,7 @@ func TestPlanCachePointGetAndTableDual(t *testing.T) { tk.MustQuery("execute s4 using @a4,@a4").Check(testkit.Rows()) tk.MustQuery("select @@last_plan_from_cache").Check(testkit.Rows("0")) tk.MustQuery("execute s4 using @a4,@b4").Check(testkit.Rows("2 1 1")) - tk.MustQuery("select @@last_plan_from_cache").Check(testkit.Rows("1")) + tk.MustQuery("select @@last_plan_from_cache").Check(testkit.Rows("0")) // c1>=3 and c1<=3 --> c1=3 tk.MustExec("prepare s4 from 'select /*+ use_index_merge(t4) */ * from t4 where (c1 >= ? and c1 <= ?) or c2 > 1'") tk.MustExec("set @a4=1,@b4=3") @@ -2044,7 +2041,7 @@ func TestIssue23671(t *testing.T) { tk.MustQuery("execute s1 using @a, @b, @c").Check(testkit.Rows("1 1")) tk.MustExec("set @a=1, @b=1, @c=10") tk.MustQuery("execute s1 using @a, @b, @c").Check(testkit.Rows("1 1", "2 2")) - tk.MustQuery("select @@last_plan_from_cache").Check(testkit.Rows("1")) + tk.MustQuery("select @@last_plan_from_cache").Check(testkit.Rows("0")) // b>=1 and b<=1 --> b=1 } func TestIssue29296(t *testing.T) { @@ -2550,7 +2547,7 @@ func TestCachedTable(t *testing.T) { // IndexLookup tk.MustQuery("execute indexLookup using @a, @b").Check(testkit.Rows("2")) require.True(t, lastReadFromCache(tk)) - tk.MustQuery("select @@last_plan_from_cache").Check(testkit.Rows("1")) + tk.MustQuery("select @@last_plan_from_cache").Check(testkit.Rows("0")) // b>1 and b<3 --> b=2 // PointGet tk.MustQuery("execute pointGet using @a").Check(testkit.Rows("1")) diff --git a/planner/core/preprocess.go b/planner/core/preprocess.go index da3f60d907bef..51fa3b365af5d 100644 --- a/planner/core/preprocess.go +++ b/planner/core/preprocess.go @@ -24,6 +24,7 @@ import ( "github.com/pingcap/tidb/domain" "github.com/pingcap/tidb/expression" "github.com/pingcap/tidb/infoschema" + "github.com/pingcap/tidb/kv" "github.com/pingcap/tidb/meta/autoid" "github.com/pingcap/tidb/parser" "github.com/pingcap/tidb/parser/ast" @@ -118,12 +119,12 @@ func TryAddExtraLimit(ctx sessionctx.Context, node ast.StmtNode) ast.StmtNode { // Preprocess resolves table names of the node, and checks some statements' validation. // preprocessReturn used to extract the infoschema for the tableName and the timestamp from the asof clause. -func Preprocess(ctx sessionctx.Context, node ast.Node, preprocessOpt ...PreprocessOpt) error { +func Preprocess(ctx context.Context, sctx sessionctx.Context, node ast.Node, preprocessOpt ...PreprocessOpt) error { v := preprocessor{ - ctx: ctx, + sctx: sctx, tableAliasInJoin: make([]map[string]interface{}, 0), preprocessWith: &preprocessWith{cteCanUsed: make([]string, 0), cteBeforeOffset: make([]int, 0)}, - staleReadProcessor: staleread.NewStaleReadProcessor(ctx), + staleReadProcessor: staleread.NewStaleReadProcessor(ctx, sctx), } for _, optFn := range preprocessOpt { optFn(&v) @@ -208,7 +209,7 @@ func (pw *preprocessWith) UpdateCTEConsumerCount(tableName string) { // preprocessor is an ast.Visitor that preprocess // ast Nodes parsed from parser. type preprocessor struct { - ctx sessionctx.Context + sctx sessionctx.Context flag preprocessorFlag stmtTp byte showTp ast.ShowStmtType @@ -299,21 +300,31 @@ func (p *preprocessor) Enter(in ast.Node) (out ast.Node, skipChildren bool) { p.stmtTp = TypeCreate EraseLastSemicolon(node.OriginNode) EraseLastSemicolon(node.HintedNode) - p.checkBindGrammar(node.OriginNode, node.HintedNode, p.ctx.GetSessionVars().CurrentDB) + p.checkBindGrammar(node.OriginNode, node.HintedNode, p.sctx.GetSessionVars().CurrentDB) return in, true case *ast.DropBindingStmt: p.stmtTp = TypeDrop EraseLastSemicolon(node.OriginNode) if node.HintedNode != nil { EraseLastSemicolon(node.HintedNode) - p.checkBindGrammar(node.OriginNode, node.HintedNode, p.ctx.GetSessionVars().CurrentDB) + p.checkBindGrammar(node.OriginNode, node.HintedNode, p.sctx.GetSessionVars().CurrentDB) } return in, true - case *ast.RecoverTableStmt, *ast.FlashBackTableStmt: + case *ast.RecoverTableStmt: // The specified table in recover table statement maybe already been dropped. // So skip check table name here, otherwise, recover table [table_name] syntax will return // table not exists error. But recover table statement is use to recover the dropped table. So skip children here. return in, true + case *ast.FlashBackTableStmt: + if len(node.NewName) > 0 { + p.checkFlashbackTableGrammar(node) + } + return in, true + case *ast.FlashBackDatabaseStmt: + if len(node.NewName) > 0 { + p.checkFlashbackDatabaseGrammar(node) + } + return in, true case *ast.RepairTableStmt: p.stmtTp = TypeRepair // The RepairTable should consist of the logic for creating tables and renaming tables. @@ -339,7 +350,7 @@ func (p *preprocessor) Enter(in ast.Node) (out ast.Node, skipChildren bool) { p.flag |= inCreateOrDropTable } case *ast.TableSource: - isModeOracle := p.ctx.GetSessionVars().SQLMode&mysql.ModeOracle != 0 + isModeOracle := p.sctx.GetSessionVars().SQLMode&mysql.ModeOracle != 0 if _, ok := node.Source.(*ast.SelectStmt); ok && !isModeOracle && len(node.AsName.L) == 0 { p.err = dbterror.ErrDerivedMustHaveAlias.GenWithStackByArgs() } @@ -364,14 +375,14 @@ func (p *preprocessor) Enter(in ast.Node) (out ast.Node, skipChildren bool) { // start transaction read only as of timestamp .... // then we need set StmtCtx.IsStaleness as true in order to avoid take tso in PrepareTSFuture. if node.AsOf != nil { - p.ctx.GetSessionVars().StmtCtx.IsStaleness = true + p.sctx.GetSessionVars().StmtCtx.IsStaleness = true p.IsStaleness = true - } else if p.ctx.GetSessionVars().TxnReadTS.PeakTxnReadTS() > 0 { + } else if p.sctx.GetSessionVars().TxnReadTS.PeakTxnReadTS() > 0 { // If the begin statement was like following: // set transaction read only as of timestamp ... // begin // then we need set StmtCtx.IsStaleness as true in order to avoid take tso in PrepareTSFuture. - p.ctx.GetSessionVars().StmtCtx.IsStaleness = true + p.sctx.GetSessionVars().StmtCtx.IsStaleness = true p.IsStaleness = true } default: @@ -442,7 +453,7 @@ func bindableStmtType(node ast.StmtNode) byte { } func (p *preprocessor) tableByName(tn *ast.TableName) (table.Table, error) { - currentDB := p.ctx.GetSessionVars().CurrentDB + currentDB := p.sctx.GetSessionVars().CurrentDB if tn.Schema.String() != "" { currentDB = tn.Schema.L } @@ -462,8 +473,8 @@ func (p *preprocessor) tableByName(tn *ast.TableName) (table.Table, error) { // We should never leak that the table doesn't exist (i.e. attach ErrTableNotExists) // unless we know that the user has permissions to it, should it exist. // By checking here, this makes all SELECT/SHOW/INSERT/UPDATE/DELETE statements safe. - currentUser, activeRoles := p.ctx.GetSessionVars().User, p.ctx.GetSessionVars().ActiveRoles - if pm := privilege.GetPrivilegeManager(p.ctx); pm != nil { + currentUser, activeRoles := p.sctx.GetSessionVars().User, p.sctx.GetSessionVars().ActiveRoles + if pm := privilege.GetPrivilegeManager(p.sctx); pm != nil { if !pm.RequestVerification(activeRoles, sName.L, tn.Name.O, "", mysql.AllPrivMask) { u := currentUser.Username h := currentUser.Hostname @@ -664,6 +675,10 @@ func checkAutoIncrementOp(colDef *ast.ColumnDef, index int) (bool, error) { func isConstraintKeyTp(constraints []*ast.Constraint, colDef *ast.ColumnDef) bool { for _, c := range constraints { + // ignore constraint check + if c.Tp == ast.ConstraintCheck { + continue + } if c.Keys[0].Expr != nil { continue } @@ -788,6 +803,18 @@ func (p *preprocessor) checkDropDatabaseGrammar(stmt *ast.DropDatabaseStmt) { } } +func (p *preprocessor) checkFlashbackTableGrammar(stmt *ast.FlashBackTableStmt) { + if isIncorrectName(stmt.NewName) { + p.err = dbterror.ErrWrongTableName.GenWithStackByArgs(stmt.NewName) + } +} + +func (p *preprocessor) checkFlashbackDatabaseGrammar(stmt *ast.FlashBackDatabaseStmt) { + if isIncorrectName(stmt.NewName) { + p.err = dbterror.ErrWrongDBName.GenWithStackByArgs(stmt.NewName) + } +} + func (p *preprocessor) checkAdminCheckTableGrammar(stmt *ast.AdminStmt) { for _, table := range stmt.Tables { tableInfo, err := p.tableByName(table) @@ -811,7 +838,7 @@ func (p *preprocessor) checkAdminCheckTableGrammar(stmt *ast.AdminStmt) { func (p *preprocessor) checkCreateTableGrammar(stmt *ast.CreateTableStmt) { if stmt.ReferTable != nil { - schema := model.NewCIStr(p.ctx.GetSessionVars().CurrentDB) + schema := model.NewCIStr(p.sctx.GetSessionVars().CurrentDB) if stmt.ReferTable.Schema.String() != "" { schema = stmt.ReferTable.Schema } @@ -985,7 +1012,7 @@ func (p *preprocessor) checkDropTableGrammar(stmt *ast.DropTableStmt) { } func (p *preprocessor) checkDropTemporaryTableGrammar(stmt *ast.DropTableStmt) { - currentDB := model.NewCIStr(p.ctx.GetSessionVars().CurrentDB) + currentDB := model.NewCIStr(p.sctx.GetSessionVars().CurrentDB) for _, t := range stmt.Tables { if isIncorrectName(t.Name.String()) { p.err = dbterror.ErrWrongTableName.GenWithStackByArgs(t.Name.String()) @@ -1030,7 +1057,7 @@ func (p *preprocessor) checkNonUniqTableAlias(stmt *ast.Join) { p.tableAliasInJoin = append(p.tableAliasInJoin, make(map[string]interface{})) } tableAliases := p.tableAliasInJoin[len(p.tableAliasInJoin)-1] - isOracleMode := p.ctx.GetSessionVars().SQLMode&mysql.ModeOracle != 0 + isOracleMode := p.sctx.GetSessionVars().SQLMode&mysql.ModeOracle != 0 if !isOracleMode { if err := isTableAliasDuplicate(stmt.Left, tableAliases); err != nil { p.err = err @@ -1103,7 +1130,7 @@ func (p *preprocessor) checkCreateIndexGrammar(stmt *ast.CreateIndexStmt) { } func (p *preprocessor) checkGroupBy(stmt *ast.GroupByClause) { - noopFuncsMode := p.ctx.GetSessionVars().NoopFuncsMode + noopFuncsMode := p.sctx.GetSessionVars().NoopFuncsMode for _, item := range stmt.Items { if !item.NullOrder && noopFuncsMode != variable.OnInt { err := expression.ErrFunctionsNoopImpl.GenWithStackByArgs("GROUP BY expr ASC|DESC") @@ -1112,7 +1139,7 @@ func (p *preprocessor) checkGroupBy(stmt *ast.GroupByClause) { return } // NoopFuncsMode is Warn, append an error - p.ctx.GetSessionVars().StmtCtx.AppendWarning(err) + p.sctx.GetSessionVars().StmtCtx.AppendWarning(err) } } } @@ -1495,7 +1522,7 @@ func (p *preprocessor) handleTableName(tn *ast.TableName) { } } - currentDB := p.ctx.GetSessionVars().CurrentDB + currentDB := p.sctx.GetSessionVars().CurrentDB if currentDB == "" { p.err = errors.Trace(ErrNoDB) return @@ -1537,11 +1564,11 @@ func (p *preprocessor) handleTableName(tn *ast.TableName) { p.err = err return } - currentDB := p.ctx.GetSessionVars().CurrentDB + currentDB := p.sctx.GetSessionVars().CurrentDB if tn.Schema.String() != "" { currentDB = tn.Schema.L } - table, err = tryLockMDLAndUpdateSchemaIfNecessary(p.ctx, model.NewCIStr(currentDB), table, p.ensureInfoSchema()) + table, err = tryLockMDLAndUpdateSchemaIfNecessary(p.sctx, model.NewCIStr(currentDB), table, p.ensureInfoSchema()) if err != nil { p.err = err return @@ -1586,8 +1613,8 @@ func (p *preprocessor) handleRepairName(tn *ast.TableName) { p.err = dbterror.ErrRepairTableFail.GenWithStackByArgs("table " + tn.Name.L + " is not in repair") return } - p.ctx.SetValue(domainutil.RepairedTable, tableInfo) - p.ctx.SetValue(domainutil.RepairedDatabase, dbInfo) + p.sctx.SetValue(domainutil.RepairedTable, tableInfo) + p.sctx.SetValue(domainutil.RepairedDatabase, dbInfo) } func (p *preprocessor) resolveShowStmt(node *ast.ShowStmt) { @@ -1595,14 +1622,14 @@ func (p *preprocessor) resolveShowStmt(node *ast.ShowStmt) { if node.Table != nil && node.Table.Schema.L != "" { node.DBName = node.Table.Schema.O } else { - node.DBName = p.ctx.GetSessionVars().CurrentDB + node.DBName = p.sctx.GetSessionVars().CurrentDB } } else if node.Table != nil && node.Table.Schema.L == "" { node.Table.Schema = model.NewCIStr(node.DBName) } if node.User != nil && node.User.CurrentUser { // Fill the Username and Hostname with the current user. - currentUser := p.ctx.GetSessionVars().User + currentUser := p.sctx.GetSessionVars().User if currentUser != nil { node.User.Username = currentUser.Username node.User.Hostname = currentUser.Hostname @@ -1613,7 +1640,7 @@ func (p *preprocessor) resolveShowStmt(node *ast.ShowStmt) { } func (p *preprocessor) resolveExecuteStmt(node *ast.ExecuteStmt) { - prepared, err := GetPreparedStmt(node, p.ctx.GetSessionVars()) + prepared, err := GetPreparedStmt(node, p.sctx.GetSessionVars()) if err != nil { p.err = err return @@ -1704,16 +1731,17 @@ func (p *preprocessor) updateStateFromStaleReadProcessor() error { p.LastSnapshotTS = p.staleReadProcessor.GetStalenessReadTS() p.SnapshotTSEvaluator = p.staleReadProcessor.GetStalenessTSEvaluatorForPrepare() p.InfoSchema = p.staleReadProcessor.GetStalenessInfoSchema() + p.InfoSchema = &infoschema.SessionExtendedInfoSchema{InfoSchema: p.InfoSchema} // If the select statement was like 'select * from t as of timestamp ...' or in a stale read transaction // or is affected by the tidb_read_staleness session variable, then the statement will be makred as isStaleness // in stmtCtx if p.flag&initTxnContextProvider != 0 { - p.ctx.GetSessionVars().StmtCtx.IsStaleness = true - if !p.ctx.GetSessionVars().InTxn() { - txnManager := sessiontxn.GetTxnManager(p.ctx) + p.sctx.GetSessionVars().StmtCtx.IsStaleness = true + if !p.sctx.GetSessionVars().InTxn() { + txnManager := sessiontxn.GetTxnManager(p.sctx) newTxnRequest := &sessiontxn.EnterNewTxnRequest{ Type: sessiontxn.EnterNewTxnWithReplaceProvider, - Provider: staleread.NewStalenessTxnContextProvider(p.ctx, p.LastSnapshotTS, p.InfoSchema), + Provider: staleread.NewStalenessTxnContextProvider(p.sctx, p.LastSnapshotTS, p.InfoSchema), } if err := txnManager.EnterNewTxn(context.TODO(), newTxnRequest); err != nil { return err @@ -1738,12 +1766,12 @@ func (p *preprocessor) ensureInfoSchema() infoschema.InfoSchema { return p.InfoSchema } - p.InfoSchema = sessiontxn.GetTxnManager(p.ctx).GetTxnInfoSchema() + p.InfoSchema = sessiontxn.GetTxnManager(p.sctx).GetTxnInfoSchema() return p.InfoSchema } func (p *preprocessor) hasAutoConvertWarning(colDef *ast.ColumnDef) bool { - sessVars := p.ctx.GetSessionVars() + sessVars := p.sctx.GetSessionVars() if !sessVars.SQLMode.HasStrictMode() && colDef.Tp.GetType() == mysql.TypeVarchar { colDef.Tp.SetType(mysql.TypeBlob) if colDef.Tp.GetCharset() == charset.CharsetBin { @@ -1781,10 +1809,7 @@ func tryLockMDLAndUpdateSchemaIfNecessary(sctx sessionctx.Context, dbName model. } tableInfo := tbl.Meta() if _, ok := sctx.GetSessionVars().GetRelatedTableForMDL().Load(tableInfo.ID); !ok { - if se, ok := is.(*infoschema.SessionExtendedInfoSchema); ok && skipLock { - if se.MdlTables == nil { - return tbl, nil - } + if se, ok := is.(*infoschema.SessionExtendedInfoSchema); ok && skipLock && se.MdlTables != nil { if _, ok := se.MdlTables.TableByID(tableInfo.ID); ok { // Already attach. return tbl, nil @@ -1857,15 +1882,21 @@ func tryLockMDLAndUpdateSchemaIfNecessary(sctx sessionctx.Context, dbName model. se, ok := is.(*infoschema.SessionExtendedInfoSchema) if !ok { - se = infoschema.AttachMDLTableInfoSchema(is).(*infoschema.SessionExtendedInfoSchema) - sessiontxn.GetTxnManager(sctx).SetTxnInfoSchema(se) - sctx.GetSessionVars().TxnCtx.InfoSchema = se + logutil.BgLogger().Error("InfoSchema is not SessionExtendedInfoSchema", zap.Stack("stack")) + return nil, errors.New("InfoSchema is not SessionExtendedInfoSchema") } db, _ := domainSchema.SchemaByTable(tbl.Meta()) err = se.UpdateTableInfo(db, tbl) if err != nil { return nil, err } + curTxn, err := sctx.Txn(false) + if err != nil { + return nil, err + } + if curTxn.Valid() { + curTxn.SetOption(kv.TableToColumnMaps, nil) + } return tbl, nil } return tbl, nil diff --git a/planner/core/preprocess_test.go b/planner/core/preprocess_test.go index 2ff7bb8ce6d6a..6d6ebb1b8bf49 100644 --- a/planner/core/preprocess_test.go +++ b/planner/core/preprocess_test.go @@ -15,6 +15,7 @@ package core_test import ( + "context" "strings" "testing" @@ -45,7 +46,7 @@ func runSQL(t *testing.T, ctx sessionctx.Context, is infoschema.InfoSchema, sql if inPrepare { opts = append(opts, core.InPrepare) } - err = core.Preprocess(ctx, stmt, append(opts, core.WithPreprocessorReturn(&core.PreprocessorReturn{InfoSchema: is}))...) + err = core.Preprocess(context.Background(), ctx, stmt, append(opts, core.WithPreprocessorReturn(&core.PreprocessorReturn{InfoSchema: is}))...) require.Truef(t, terror.ErrorEqual(err, terr), "sql: %s, err:%v", sql, err) } @@ -415,7 +416,7 @@ func TestPreprocessCTE(t *testing.T) { require.NoError(t, err) require.Len(t, stmts, 1) - err = core.Preprocess(tk.Session(), stmts[0]) + err = core.Preprocess(context.Background(), tk.Session(), stmts[0]) require.NoError(t, err) var rs strings.Builder diff --git a/planner/core/resolve_indices.go b/planner/core/resolve_indices.go index 483d0b9f92299..b602c46a78bd2 100644 --- a/planner/core/resolve_indices.go +++ b/planner/core/resolve_indices.go @@ -21,12 +21,8 @@ import ( "github.com/pingcap/tidb/util/disjointset" ) -// ResolveIndices implements Plan interface. -func (p *PhysicalProjection) ResolveIndices() (err error) { - err = p.physicalSchemaProducer.ResolveIndices() - if err != nil { - return err - } +// ResolveIndicesItself resolve indices for PhysicalPlan itself +func (p *PhysicalProjection) ResolveIndicesItself() (err error) { for i, expr := range p.Exprs { p.Exprs[i], err = expr.ResolveIndices(p.children[0].Schema()) if err != nil { @@ -41,6 +37,15 @@ func (p *PhysicalProjection) ResolveIndices() (err error) { return } +// ResolveIndices implements Plan interface. +func (p *PhysicalProjection) ResolveIndices() (err error) { + err = p.physicalSchemaProducer.ResolveIndices() + if err != nil { + return err + } + return p.ResolveIndicesItself() +} + // refine4NeighbourProj refines the index for p.Exprs whose type is *Column when // there is two neighbouring Projections. // This function is introduced because that different childProj.Expr may refer @@ -74,12 +79,8 @@ func refine4NeighbourProj(p, childProj *PhysicalProjection) { } } -// ResolveIndices implements Plan interface. -func (p *PhysicalHashJoin) ResolveIndices() (err error) { - err = p.physicalSchemaProducer.ResolveIndices() - if err != nil { - return err - } +// ResolveIndicesItself resolve indices for PhyicalPlan itself +func (p *PhysicalHashJoin) ResolveIndicesItself() (err error) { lSchema := p.children[0].Schema() rSchema := p.children[1].Schema() for i, fun := range p.EqualConditions { @@ -129,6 +130,15 @@ func (p *PhysicalHashJoin) ResolveIndices() (err error) { return } +// ResolveIndices implements Plan interface. +func (p *PhysicalHashJoin) ResolveIndices() (err error) { + err = p.physicalSchemaProducer.ResolveIndices() + if err != nil { + return err + } + return p.ResolveIndicesItself() +} + // ResolveIndices implements Plan interface. func (p *PhysicalMergeJoin) ResolveIndices() (err error) { err = p.physicalSchemaProducer.ResolveIndices() @@ -380,12 +390,8 @@ func (p *PhysicalSelection) ResolveIndices() (err error) { return nil } -// ResolveIndices implements Plan interface. -func (p *PhysicalExchangeSender) ResolveIndices() (err error) { - err = p.basePhysicalPlan.ResolveIndices() - if err != nil { - return err - } +// ResolveIndicesItself resolve indices for PhyicalPlan itself +func (p *PhysicalExchangeSender) ResolveIndicesItself() (err error) { for i, col := range p.HashCols { colExpr, err1 := col.Col.ResolveIndices(p.children[0].Schema()) if err1 != nil { @@ -393,7 +399,16 @@ func (p *PhysicalExchangeSender) ResolveIndices() (err error) { } p.HashCols[i].Col, _ = colExpr.(*expression.Column) } - return err + return +} + +// ResolveIndices implements Plan interface. +func (p *PhysicalExchangeSender) ResolveIndices() (err error) { + err = p.basePhysicalPlan.ResolveIndices() + if err != nil { + return err + } + return p.ResolveIndicesItself() } // ResolveIndices implements Plan interface. diff --git a/planner/core/rule_column_pruning.go b/planner/core/rule_column_pruning.go index f42d385acc161..5eac4a88e88bd 100644 --- a/planner/core/rule_column_pruning.go +++ b/planner/core/rule_column_pruning.go @@ -312,6 +312,14 @@ func (ds *DataSource) PruneColumns(parentUsedCols []*expression.Column, opt *log originSchemaColumns := ds.schema.Columns originColumns := ds.Columns + + ds.colsRequiringFullLen = make([]*expression.Column, 0, len(used)) + for i, col := range ds.schema.Columns { + if used[i] || (ds.containExprPrefixUk && expression.GcColumnExprIsTidbShard(col.VirtualExpr)) { + ds.colsRequiringFullLen = append(ds.colsRequiringFullLen, col) + } + } + for i := len(used) - 1; i >= 0; i-- { if !used[i] && !exprUsed[i] { // If ds has a shard index, and the column is generated column by `tidb_shard()` diff --git a/planner/core/rule_join_reorder_test.go b/planner/core/rule_join_reorder_test.go index a0c136d8d4a2f..9fb0c7e83ab1f 100644 --- a/planner/core/rule_join_reorder_test.go +++ b/planner/core/rule_join_reorder_test.go @@ -52,6 +52,7 @@ func TestStraightJoinHint(t *testing.T) { tk := testkit.NewTestKit(t, store) tk.MustExec("use test") + tk.MustExec("set tidb_cost_model_version=2") tk.MustExec("drop table if exists t, t1, t2, t3, t4;") tk.MustExec("create table t(a int, b int, key(a));") tk.MustExec("create table t1(a int, b int, key(a));") @@ -66,6 +67,7 @@ func TestLeadingJoinHint(t *testing.T) { tk := testkit.NewTestKit(t, store) tk.MustExec("use test") + tk.MustExec("set tidb_cost_model_version=2") tk.MustExec("drop table if exists t, t1, t2, t3, t4, t5, t6, t7, t8;") tk.MustExec("create table t(a int, b int, key(a));") tk.MustExec("create table t1(a int, b int, key(a));") @@ -219,6 +221,7 @@ func TestJoinOrderHint4StaticPartitionTable(t *testing.T) { tk := testkit.NewTestKit(t, store) tk.MustExec("use test") + tk.MustExec("set tidb_cost_model_version=2") tk.MustExec("drop table if exists t, t1, t2, t3;") tk.MustExec(`create table t(a int, b int) partition by hash(a) partitions 3`) tk.MustExec(`create table t1(a int, b int) partition by hash(a) partitions 4`) @@ -259,6 +262,7 @@ func TestJoinOrderHint4DifferentJoinType(t *testing.T) { tk := testkit.NewTestKit(t, store) tk.MustExec("use test") + tk.MustExec("set tidb_cost_model_version=2") tk.MustExec("drop table if exists t, t1, t2, t3, t4, t5, t6, t7, t8;") tk.MustExec("create table t(a int, b int, key(a));") tk.MustExec("create table t1(a int, b int, key(a));") @@ -312,6 +316,7 @@ func TestJoinOrderHint4Subquery(t *testing.T) { tk := testkit.NewTestKit(t, store) tk.MustExec("use test") + tk.MustExec("set tidb_cost_model_version=2") tk.MustExec("drop table if exists t, t1, t2, t3, t4, t5, t6, t7, t8;") tk.MustExec("create table t(a int, b int, key(a));") tk.MustExec("create table t1(a int, b int, key(a));") @@ -333,6 +338,7 @@ func TestLeadingJoinHint4OuterJoin(t *testing.T) { tk := testkit.NewTestKit(t, store) tk.MustExec("use test") + tk.MustExec("set tidb_cost_model_version=2") tk.MustExec("drop table if exists t, t1, t2, t3, t4, t5, t6, t7, t8;") tk.MustExec("create table t(a int, b int, key(a));") tk.MustExec("create table t1(a int, b int, key(a));") diff --git a/planner/core/rule_predicate_push_down.go b/planner/core/rule_predicate_push_down.go index bebed1cab141a..94f92f780202a 100644 --- a/planner/core/rule_predicate_push_down.go +++ b/planner/core/rule_predicate_push_down.go @@ -474,8 +474,8 @@ func (p *LogicalProjection) PredicatePushDown(predicates []expression.Expression } } for _, cond := range predicates { - substituted, newFilter := expression.ColumnSubstitute4PPD(cond, p.Schema(), p.Exprs) - if substituted && !expression.HasGetSetVarFunc(newFilter) { + substituted, hasFailed, newFilter := expression.ColumnSubstituteImpl(cond, p.Schema(), p.Exprs, true) + if substituted && !hasFailed && !expression.HasGetSetVarFunc(newFilter) { canBePushed = append(canBePushed, newFilter) } else { canNotBePushed = append(canNotBePushed, cond) diff --git a/planner/core/rule_result_reorder_test.go b/planner/core/rule_result_reorder_test.go index e6a248bee4071..1a178cd66bfe7 100644 --- a/planner/core/rule_result_reorder_test.go +++ b/planner/core/rule_result_reorder_test.go @@ -106,6 +106,7 @@ func TestOrderedResultMode(t *testing.T) { tk := testkit.NewTestKit(t, store) tk.MustExec("use test") + tk.MustExec("set tidb_cost_model_version=2") tk.MustExec(`set tidb_opt_limit_push_down_threshold=0`) tk.MustExec("set tidb_enable_ordered_result_mode=1") tk.MustExec("drop table if exists t") @@ -129,6 +130,7 @@ func TestOrderedResultModeOnSubQuery(t *testing.T) { tk := testkit.NewTestKit(t, store) tk.MustExec("use test") + tk.MustExec("set tidb_cost_model_version=2") tk.MustExec("set tidb_enable_ordered_result_mode=1") tk.MustExec("drop table if exists t1") tk.MustExec("drop table if exists t2") @@ -142,6 +144,7 @@ func TestOrderedResultModeOnJoin(t *testing.T) { tk := testkit.NewTestKit(t, store) tk.MustExec("use test") + tk.MustExec("set tidb_cost_model_version=2") tk.MustExec("set tidb_enable_ordered_result_mode=1") tk.MustExec("drop table if exists t1") tk.MustExec("drop table if exists t2") @@ -156,6 +159,7 @@ func TestOrderedResultModeOnOtherOperators(t *testing.T) { tk := testkit.NewTestKit(t, store) tk.MustExec("use test") + tk.MustExec("set tidb_cost_model_version=2") tk.MustExec("set tidb_enable_ordered_result_mode=1") tk.MustExec("drop table if exists t1") tk.MustExec("drop table if exists t2") diff --git a/planner/core/stats.go b/planner/core/stats.go index 4ece8209397cd..6fe03f87d6a80 100644 --- a/planner/core/stats.go +++ b/planner/core/stats.go @@ -277,7 +277,7 @@ func (ds *DataSource) derivePathStatsAndTryHeuristics() error { path.IsSingleScan = true } else { ds.deriveIndexPathStats(path, ds.pushedDownConds, false) - path.IsSingleScan = ds.isCoveringIndex(ds.schema.Columns, path.FullIdxCols, path.FullIdxColLens, ds.tableInfo) + path.IsSingleScan = ds.isSingleScan(path.FullIdxCols, path.FullIdxColLens) } // Try some heuristic rules to select access path. if len(path.Ranges) == 0 { diff --git a/planner/core/stats_test.go b/planner/core/stats_test.go index a301b42f48ff3..2948c90abb4df 100644 --- a/planner/core/stats_test.go +++ b/planner/core/stats_test.go @@ -55,7 +55,7 @@ func TestGroupNDVs(t *testing.T) { stmt, err := p.ParseOneStmt(tt, "", "") require.NoError(t, err, comment) ret := &core.PreprocessorReturn{} - err = core.Preprocess(tk.Session(), stmt, core.WithPreprocessorReturn(ret)) + err = core.Preprocess(context.Background(), tk.Session(), stmt, core.WithPreprocessorReturn(ret)) require.NoError(t, err) tk.Session().GetSessionVars().PlanColumnID = 0 builder, _ := core.NewPlanBuilder().Init(tk.Session(), ret.InfoSchema, &hint.BlockHintProcessor{}) @@ -123,6 +123,7 @@ func TestNDVGroupCols(t *testing.T) { store := testkit.CreateMockStore(t) tk := testkit.NewTestKit(t, store) tk.MustExec("use test") + tk.MustExec("set tidb_cost_model_version=2") tk.MustExec("drop table if exists t1, t2") tk.MustExec("create table t1(a int not null, b int not null, key(a,b))") tk.MustExec("insert into t1 values(1,1),(1,2),(2,1),(2,2)") diff --git a/planner/core/task.go b/planner/core/task.go index 7b35c1bbae19c..11d502568d3ae 100644 --- a/planner/core/task.go +++ b/planner/core/task.go @@ -36,6 +36,7 @@ import ( "github.com/pingcap/tidb/util/mathutil" "github.com/pingcap/tidb/util/paging" "github.com/pingcap/tidb/util/plancodec" + "github.com/pingcap/tidb/util/size" "github.com/pingcap/tipb/go-tipb" "go.uber.org/zap" ) @@ -54,6 +55,7 @@ type task interface { plan() PhysicalPlan invalid() bool convertToRootTask(ctx sessionctx.Context) *rootTask + MemoryUsage() int64 } // copTask is a task that runs in a distributed kv store. @@ -173,6 +175,42 @@ func (t *copTask) getStoreType() kv.StoreType { return kv.TiKV } +// MemoryUsage return the memory usage of copTask +func (t *copTask) MemoryUsage() (sum int64) { + if t == nil { + return + } + + sum = size.SizeOfInterface*(2+int64(cap(t.idxMergePartPlans)+cap(t.rootTaskConds))) + size.SizeOfBool*3 + size.SizeOfUint64 + + size.SizeOfPointer*(3+int64(cap(t.commonHandleCols)+cap(t.tblCols))) + size.SizeOfSlice*4 + t.partitionInfo.MemoryUsage() + if t.indexPlan != nil { + sum += t.indexPlan.MemoryUsage() + } + if t.tablePlan != nil { + sum += t.tablePlan.MemoryUsage() + } + if t.originSchema != nil { + sum += t.originSchema.MemoryUsage() + } + if t.extraHandleCol != nil { + sum += t.extraHandleCol.MemoryUsage() + } + + for _, col := range t.commonHandleCols { + sum += col.MemoryUsage() + } + for _, col := range t.tblCols { + sum += col.MemoryUsage() + } + for _, p := range t.idxMergePartPlans { + sum += p.MemoryUsage() + } + for _, expr := range t.rootTaskConds { + sum += expr.MemoryUsage() + } + return +} + func (p *basePhysicalPlan) attach2Task(tasks ...task) task { t := tasks[0].convertToRootTask(p.ctx) return attachPlan2Task(p.self, t) @@ -259,12 +297,11 @@ func (p *PhysicalIndexJoin) attach2Task(tasks ...task) task { return t } -func getAvgRowSize(stats *property.StatsInfo, schema *expression.Schema) (size float64) { +func getAvgRowSize(stats *property.StatsInfo, cols []*expression.Column) (size float64) { if stats.HistColl != nil { - size = stats.HistColl.GetAvgRowSizeListInDisk(schema.Columns) + size = stats.HistColl.GetAvgRowSizeListInDisk(cols) } else { // Estimate using just the type info. - cols := schema.Columns for _, col := range cols { size += float64(chunk.EstimateTypeWidth(col.GetType())) } @@ -757,6 +794,19 @@ func (t *rootTask) plan() PhysicalPlan { return t.p } +// MemoryUsage return the memory usage of rootTask +func (t *rootTask) MemoryUsage() (sum int64) { + if t == nil { + return + } + + sum = size.SizeOfInterface + size.SizeOfBool + if t.p != nil { + sum += t.p.MemoryUsage() + } + return sum +} + func (p *PhysicalLimit) attach2Task(tasks ...task) task { t := tasks[0].copy() sunk := false @@ -1887,6 +1937,19 @@ func (t *mppTask) convertToRootTask(ctx sessionctx.Context) *rootTask { return t.copy().(*mppTask).convertToRootTaskImpl(ctx) } +// MemoryUsage return the memory usage of mppTask +func (t *mppTask) MemoryUsage() (sum int64) { + if t == nil { + return + } + + sum = size.SizeOfInterface + size.SizeOfInt + size.SizeOfSlice + int64(cap(t.hashCols))*size.SizeOfPointer + if t.p != nil { + sum += t.p.MemoryUsage() + } + return +} + func collectPartitionInfosFromMPPPlan(p *PhysicalTableReader, mppPlan PhysicalPlan) { switch x := mppPlan.(type) { case *PhysicalTableScan: diff --git a/planner/core/testdata/analyze_suite_out.json b/planner/core/testdata/analyze_suite_out.json index 74d7201f50c06..4d902fec467a5 100644 --- a/planner/core/testdata/analyze_suite_out.json +++ b/planner/core/testdata/analyze_suite_out.json @@ -160,13 +160,13 @@ ], "Plan": [ "Limit 1.00 root offset:0, count:1", - "└─IndexJoin 1.00 root left outer semi join, inner:IndexReader, outer key:test.t.a, inner key:test.t.b, equal cond:eq(test.t.a, test.t.b)", - " ├─TopN(Build) 1.00 root test.t.a, offset:0, count:1", - " │ └─IndexReader 1.00 root index:TopN", - " │ └─TopN 1.00 cop[tikv] test.t.a, offset:0, count:1", - " │ └─IndexRangeScan 6.00 cop[tikv] table:t1, index:idx_bc(b, c) range:[-inf,6], keep order:false", - " └─IndexReader(Probe) 1.04 root index:IndexRangeScan", - " └─IndexRangeScan 1.04 cop[tikv] table:t2, index:idx_bc(b, c) range: decided by [eq(test.t.b, test.t.a)], keep order:false" + "└─MergeJoin 1.00 root left outer semi join, left key:test.t.a, right key:test.t.b", + " ├─IndexReader(Build) 25.00 root index:IndexFullScan", + " │ └─IndexFullScan 25.00 cop[tikv] table:t2, index:idx_bc(b, c) keep order:true", + " └─TopN(Probe) 1.00 root test.t.a, offset:0, count:1", + " └─IndexReader 1.00 root index:TopN", + " └─TopN 1.00 cop[tikv] test.t.a, offset:0, count:1", + " └─IndexRangeScan 6.00 cop[tikv] table:t1, index:idx_bc(b, c) range:[-inf,6], keep order:false" ] }, { @@ -259,9 +259,9 @@ "├─TableReader(Build) 9980.01 root data:Selection", "│ └─Selection 9980.01 cop[tikv] not(isnull(test.t1.a)), not(isnull(test.t1.c))", "│ └─TableFullScan 10000.00 cop[tikv] table:t1 keep order:false, stats:pseudo", - "└─IndexReader(Probe) 1.25 root index:Selection", - " └─Selection 1.25 cop[tikv] not(isnull(test.t2.a)), not(isnull(test.t2.c))", - " └─IndexRangeScan 1.25 cop[tikv] table:t2, index:idx(a, b, c) range: decided by [eq(test.t2.a, test.t1.a) gt(test.t2.b, minus(test.t1.b, 1)) lt(test.t2.b, plus(test.t1.b, 1))], keep order:false, stats:pseudo" + "└─IndexReader(Probe) 12475.01 root index:Selection", + " └─Selection 12475.01 cop[tikv] not(isnull(test.t2.a)), not(isnull(test.t2.c))", + " └─IndexRangeScan 12500.00 cop[tikv] table:t2, index:idx(a, b, c) range: decided by [eq(test.t2.a, test.t1.a) gt(test.t2.b, minus(test.t1.b, 1)) lt(test.t2.b, plus(test.t1.b, 1))], keep order:false, stats:pseudo" ] }, { @@ -272,12 +272,12 @@ "Plan": [ "Projection 0.00 root test.t.a, test.t.b, test.t.a, test.t.b", "└─HashJoin 0.00 root inner join, equal:[eq(test.t.b, test.t.b)]", - " ├─TableReader(Build) 0.00 root data:Selection", + " ├─IndexReader(Build) 0.00 root index:Selection", " │ └─Selection 0.00 cop[tikv] isnull(test.t.b), not(isnull(test.t.b))", - " │ └─TableFullScan 10000.00 cop[tikv] table:t2 keep order:false, stats:pseudo", - " └─TableReader(Probe) 9990.00 root data:Selection", + " │ └─IndexFullScan 10000.00 cop[tikv] table:t2, index:idx_ab(a, b) keep order:false, stats:pseudo", + " └─IndexReader(Probe) 9990.00 root index:Selection", " └─Selection 9990.00 cop[tikv] not(isnull(test.t.b))", - " └─TableFullScan 10000.00 cop[tikv] table:t1 keep order:false, stats:pseudo" + " └─IndexFullScan 10000.00 cop[tikv] table:t1, index:idx_ab(a, b) keep order:false, stats:pseudo" ] } ] @@ -381,27 +381,27 @@ [ "Projection 10.00 root Column#22", "└─Apply 10.00 root CARTESIAN left outer semi join, other cond:eq(test.t.c, Column#21)", - " ├─TableReader(Build) 10.00 root data:TableFullScan", - " │ └─TableFullScan 10.00 cop[tikv] table:t keep order:false", - " └─StreamAgg(Probe) 1.00 root funcs:count(1)->Column#21", - " └─HashJoin 1.00 root inner join, equal:[eq(test.t.a, test.t.a)]", - " ├─TableReader(Build) 1.00 root data:Selection", - " │ └─Selection 1.00 cop[tikv] eq(test.t.a, test.t.a), not(isnull(test.t.a))", - " │ └─TableFullScan 10.00 cop[tikv] table:t1 keep order:false", - " └─TableReader(Probe) 1.00 root data:Selection", - " └─Selection 1.00 cop[tikv] eq(test.t.a, test.t.a), not(isnull(test.t.a))", - " └─TableFullScan 10.00 cop[tikv] table:s keep order:false" + " ├─IndexReader(Build) 10.00 root index:IndexFullScan", + " │ └─IndexFullScan 10.00 cop[tikv] table:t, index:idx(c, b, a) keep order:false", + " └─HashAgg(Probe) 10.00 root funcs:count(1)->Column#21", + " └─HashJoin 10.00 root inner join, equal:[eq(test.t.a, test.t.a)]", + " ├─IndexReader(Build) 10.00 root index:Selection", + " │ └─Selection 10.00 cop[tikv] eq(test.t.a, test.t.a), not(isnull(test.t.a))", + " │ └─IndexFullScan 100.00 cop[tikv] table:t1, index:idx(c, b, a) keep order:false", + " └─IndexReader(Probe) 10.00 root index:Selection", + " └─Selection 10.00 cop[tikv] eq(test.t.a, test.t.a), not(isnull(test.t.a))", + " └─IndexFullScan 100.00 cop[tikv] table:s, index:idx(c, b, a) keep order:false" ], [ "Projection 10.00 root Column#13", "└─Apply 10.00 root CARTESIAN left outer join", - " ├─TableReader(Build) 10.00 root data:TableFullScan", - " │ └─TableFullScan 10.00 cop[tikv] table:t keep order:false", - " └─MaxOneRow(Probe) 1.00 root ", - " └─Projection 0.10 root concat(cast(test.t.a, var_string(20)), ,, cast(test.t.b, var_string(20)))->Column#13", - " └─IndexReader 0.10 root index:Selection", - " └─Selection 0.10 cop[tikv] eq(test.t.a, test.t.a)", - " └─IndexRangeScan 1.00 cop[tikv] table:t1, index:idx(c, b, a) range: decided by [eq(test.t.c, test.t.c)], keep order:false" + " ├─IndexReader(Build) 10.00 root index:IndexFullScan", + " │ └─IndexFullScan 10.00 cop[tikv] table:t, index:idx(c, b, a) keep order:false", + " └─MaxOneRow(Probe) 10.00 root ", + " └─Projection 1.00 root concat(cast(test.t.a, var_string(20)), ,, cast(test.t.b, var_string(20)))->Column#13", + " └─IndexReader 1.00 root index:Selection", + " └─Selection 1.00 cop[tikv] eq(test.t.a, test.t.a)", + " └─IndexRangeScan 10.00 cop[tikv] table:t1, index:idx(c, b, a) range: decided by [eq(test.t.c, test.t.c)], keep order:false" ] ] }, @@ -411,12 +411,12 @@ { "SQL": "explain format = 'brief' select max(e) from t where a='T3382' and b='ECO' and c='TOPIC' and d='23660fa1ace9455cb7f3ee831e14a342'", "Plan": [ - "StreamAgg 1.00 root funcs:max(test.t.e)->Column#7", + "HashAgg 1.00 root funcs:max(test.t.e)->Column#7", "└─TopN 0.00 root test.t.e:desc, offset:0, count:1", " └─IndexLookUp 0.00 root ", - " ├─IndexRangeScan(Build) 0.00 cop[tikv] table:t, index:idx2(a, c) range:[\"T3382\" \"TOPIC\",\"T3382\" \"TOPIC\"], keep order:false", - " └─Selection(Probe) 0.00 cop[tikv] eq(test.t.b, \"ECO\"), eq(test.t.d, \"23660fa1ace9455cb7f3ee831e14a342\"), not(isnull(test.t.e))", - " └─TableRowIDScan 0.00 cop[tikv] table:t keep order:false" + " ├─IndexRangeScan(Build) 0.01 cop[tikv] table:t, index:idx1(d, a) range:[\"23660fa1ace9455cb7f3ee831e14a342\" \"T3382\",\"23660fa1ace9455cb7f3ee831e14a342\" \"T3382\"], keep order:false", + " └─Selection(Probe) 0.00 cop[tikv] eq(test.t.b, \"ECO\"), eq(test.t.c, \"TOPIC\"), not(isnull(test.t.e))", + " └─TableRowIDScan 0.01 cop[tikv] table:t keep order:false" ] } ] @@ -425,7 +425,7 @@ "Name": "TestEmptyTable", "Cases": [ "TableReader(Table(t)->Sel([le(test.t.c1, 50)]))", - "LeftHashJoin{TableReader(Table(t)->Sel([not(isnull(test.t.c1))]))->TableReader(Table(t1)->Sel([not(isnull(test.t1.c1))]))->HashAgg}(test.t.c1,test.t1.c1)", + "LeftHashJoin{TableReader(Table(t)->Sel([not(isnull(test.t.c1))]))->TableReader(Table(t1)->Sel([not(isnull(test.t1.c1))])->HashAgg)->HashAgg}(test.t.c1,test.t1.c1)", "LeftHashJoin{TableReader(Table(t)->Sel([not(isnull(test.t.c1))]))->TableReader(Table(t1)->Sel([not(isnull(test.t1.c1))]))}(test.t.c1,test.t1.c1)", "Dual" ] @@ -433,23 +433,23 @@ { "Name": "TestIndexRead", "Cases": [ - "IndexReader(Index(t.e)[[NULL,+inf]])->HashAgg", + "IndexReader(Index(t.e)[[NULL,+inf]]->StreamAgg)->StreamAgg", "IndexReader(Index(t.e)[[-inf,10]]->StreamAgg)->StreamAgg", - "IndexReader(Index(t.e)[[-inf,50]]->StreamAgg)->StreamAgg", - "IndexReader(Index(t.b_c)[[NULL,+inf]]->Sel([gt(test.t.c, 1)])->HashAgg)->HashAgg", + "IndexReader(Index(t.e)[[-inf,50]]->HashAgg)->HashAgg", + "IndexReader(Index(t.b_c)[[NULL,+inf]]->Sel([gt(test.t.c, 1)])->StreamAgg)->StreamAgg", "IndexLookUp(Index(t.e)[[1,1]], Table(t))->HashAgg", "TableReader(Table(t)->Sel([gt(test.t.e, 1)])->HashAgg)->HashAgg", - "IndexLookUp(Index(t.b)[[-inf,20]], Table(t)->HashAgg)->HashAgg", - "TableReader(Table(t)->Sel([le(test.t.b, 30)])->StreamAgg)->StreamAgg", - "TableReader(Table(t)->Sel([le(test.t.b, 40)])->StreamAgg)->StreamAgg", - "TableReader(Table(t)->Sel([le(test.t.b, 50)])->StreamAgg)->StreamAgg", - "TableReader(Table(t)->Sel([le(test.t.b, 100000000000)])->StreamAgg)->StreamAgg", + "TableReader(Table(t)->Sel([le(test.t.b, 20)])->HashAgg)->HashAgg", + "TableReader(Table(t)->Sel([le(test.t.b, 30)])->HashAgg)->HashAgg", + "TableReader(Table(t)->Sel([le(test.t.b, 40)])->HashAgg)->HashAgg", + "TableReader(Table(t)->Sel([le(test.t.b, 50)])->HashAgg)->HashAgg", + "TableReader(Table(t)->Sel([le(test.t.b, 100000000000)])->HashAgg)->HashAgg", "TableReader(Table(t)->Sel([le(test.t.b, 40)]))", "TableReader(Table(t)->Sel([le(test.t.b, 50)]))", "TableReader(Table(t)->Sel([le(test.t.b, 10000000000)]))", "TableReader(Table(t)->Sel([le(test.t.b, 50)]))", "TableReader(Table(t)->Sel([le(test.t.b, 100)])->Limit)->Limit", - "IndexLookUp(Index(t.b)[[-inf,1]]->TopN([test.t.a],0,10), Table(t))->TopN([test.t.a],0,10)", + "TableReader(Table(t)->Sel([le(test.t.b, 1)])->Limit)->Limit", "IndexLookUp(Index(t.b)[[1,1]], Table(t))", "IndexLookUp(Index(t.d)[[-inf,1991-09-05 00:00:00)], Table(t))", "IndexLookUp(Index(t.ts)[[-inf,1991-09-05 00:00:00)], Table(t))", @@ -501,10 +501,10 @@ "SQL": "explain format = 'brief' select * from t where a <= 10000 order by b limit 1", "Plan": [ "TopN 1.00 root test.t.b, offset:0, count:1", - "└─IndexLookUp 1.00 root ", - " ├─IndexRangeScan(Build) 10000.00 cop[tikv] table:t, index:idx_a(a) range:[-inf,10000], keep order:false", - " └─TopN(Probe) 1.00 cop[tikv] test.t.b, offset:0, count:1", - " └─TableRowIDScan 10000.00 cop[tikv] table:t keep order:false" + "└─TableReader 1.00 root data:TopN", + " └─TopN 1.00 cop[tikv] test.t.b, offset:0, count:1", + " └─Selection 10000.00 cop[tikv] le(test.t.a, 10000)", + " └─TableFullScan 1000000.00 cop[tikv] table:t keep order:false" ] }, { diff --git a/planner/core/testdata/binary_plan_suite_out.json b/planner/core/testdata/binary_plan_suite_out.json index 3c702871c50ff..203f11acf364f 100644 --- a/planner/core/testdata/binary_plan_suite_out.json +++ b/planner/core/testdata/binary_plan_suite_out.json @@ -46,7 +46,7 @@ "children": [ { "name": "TableFullScan_4", - "cost": 570000, + "cost": 2273079.737793511, "est_rows": 10000, "act_rows": 2, "task_type": 2, @@ -54,7 +54,7 @@ "operator_info": "keep order:false, stats:pseudo" } ], - "cost": 48834.666666666664, + "cost": 236018.64918623405, "est_rows": 10000, "act_rows": 2, "task_type": 1, @@ -81,7 +81,7 @@ "children": [ { "name": "IndexFullScan_14", - "cost": 435000, + "cost": 1628000, "est_rows": 10000, "act_rows": 2, "task_type": 2, @@ -92,7 +92,7 @@ "labels": [ 2 ], - "cost": 34418, + "cost": 150773.33333333334, "est_rows": 10000, "act_rows": 2, "task_type": 1, @@ -104,7 +104,7 @@ "children": [ { "name": "TableFullScan_16", - "cost": 570000, + "cost": 2273079.737793511, "est_rows": 10000, "act_rows": 4, "task_type": 2, @@ -115,7 +115,7 @@ "labels": [ 1 ], - "cost": 43418, + "cost": 193778.64918623405, "est_rows": 10000, "act_rows": 4, "task_type": 1, @@ -123,7 +123,7 @@ "operator_info": "data:TableFullScan_16" } ], - "cost": 60107864, + "cost": 975351.9825195674, "est_rows": 100000000, "act_rows": 8, "task_type": 1, @@ -131,7 +131,7 @@ "operator_info": "CARTESIAN inner join" } ], - "cost": 120107882, + "cost": 998975351.9825196, "est_rows": 100000000, "act_rows": 8, "task_type": 1, @@ -139,7 +139,7 @@ "operator_info": "cast(test.t.a, decimal(10,0) BINARY)->Column#8" } ], - "cost": 120107897.001, + "cost": 1996975363.5625196, "est_rows": 1, "act_rows": 1, "task_type": 1, @@ -157,14 +157,14 @@ "children": [ { "name": "IndexRangeScan_5", - "cost": 145000, + "cost": 542666.6666666667, "est_rows": 3333.3333333333335, "task_type": 2, "store_type": 2, "operator_info": "range:(100,+inf], keep order:false, stats:pseudo" } ], - "cost": 11473.555555555557, + "cost": 50257.77777777778, "est_rows": 3333.3333333333335, "task_type": 1, "store_type": 1, @@ -184,7 +184,7 @@ "children": [ { "name": "TableFullScan_5", - "cost": 570000, + "cost": 2273079.737793511, "est_rows": 10000, "act_rows": 2, "task_type": 2, @@ -192,14 +192,14 @@ "operator_info": "keep order:false, stats:pseudo" } ], - "cost": 600000, + "cost": 2772079.737793511, "est_rows": 3333.3333333333335, "task_type": 2, "store_type": 2, "operator_info": "gt(test.t.a, 100)" } ], - "cost": 41806.88888888889, + "cost": 198885.3158529007, "est_rows": 3333.3333333333335, "task_type": 1, "store_type": 1, @@ -222,7 +222,7 @@ "children": [ { "name": "TableFullScan_35", - "cost": 570000, + "cost": 2273079.737793511, "est_rows": 10000, "act_rows": 2, "task_type": 2, @@ -230,7 +230,7 @@ "operator_info": "keep order:false, stats:pseudo" } ], - "cost": 600000, + "cost": 2772079.737793511, "est_rows": 9990, "act_rows": 2, "task_type": 2, @@ -241,7 +241,7 @@ "labels": [ 2 ], - "cost": 50823.833333333336, + "cost": 269200.8358529007, "est_rows": 9990, "act_rows": 2, "task_type": 1, @@ -256,7 +256,7 @@ "children": [ { "name": "TableFullScan_32", - "cost": 570000, + "cost": 2273079.737793511, "est_rows": 10000, "act_rows": 4, "task_type": 2, @@ -264,7 +264,7 @@ "operator_info": "keep order:false, stats:pseudo" } ], - "cost": 600000, + "cost": 2772079.737793511, "est_rows": 9990, "act_rows": 4, "task_type": 2, @@ -275,7 +275,7 @@ "labels": [ 1 ], - "cost": 50823.833333333336, + "cost": 269200.8358529007, "est_rows": 9990, "act_rows": 4, "task_type": 1, @@ -283,7 +283,7 @@ "operator_info": "data:Selection_33" } ], - "cost": 139138.15666666668, + "cost": 1798740.0717058014, "est_rows": 12487.5, "task_type": 1, "store_type": 1, @@ -322,7 +322,7 @@ "labels": [ 3 ], - "cost": 18.6, + "cost": 0.0998, "est_rows": 1, "act_rows": 1, "task_type": 1, @@ -344,7 +344,7 @@ "operator_info": "Scan on CTE_0" } ], - "cost": 3, + "cost": 49.9, "est_rows": 0.8, "act_rows": 4, "task_type": 1, @@ -355,7 +355,7 @@ "labels": [ 4 ], - "cost": 21.48, + "cost": 57.884, "est_rows": 0.8, "act_rows": 4, "task_type": 1, @@ -387,7 +387,7 @@ "children": [ { "name": "TableFullScan_6", - "cost": 570000, + "cost": 2273079.737793511, "est_rows": 10000, "act_rows": 4, "task_type": 2, @@ -395,14 +395,14 @@ "operator_info": "keep order:false, stats:pseudo" } ], - "cost": 600000, + "cost": 2772079.737793511, "est_rows": 3333.3333333333335, "task_type": 2, "store_type": 2, "operator_info": "gt(test.t2.b, 10)" } ], - "cost": 45418, + "cost": 227045.3158529007, "est_rows": 3333.3333333333335, "task_type": 1, "store_type": 1, @@ -439,7 +439,7 @@ "children": [ { "name": "TableFullScan_6", - "cost": 570000, + "cost": 2273079.737793511, "est_rows": 10000, "act_rows": 2, "task_type": 2, @@ -447,7 +447,7 @@ "operator_info": "keep order:false, stats:pseudo" } ], - "cost": 48834.666666666664, + "cost": 236018.64918623405, "est_rows": 10000, "act_rows": 2, "task_type": 1, @@ -473,7 +473,7 @@ "children": [ { "name": "TableFullScan_5", - "cost": 570000, + "cost": 2273079.737793511, "est_rows": 10000, "act_rows": 8, "task_type": 2, @@ -481,7 +481,7 @@ "operator_info": "keep order:false, stats:pseudo" } ], - "cost": 54251.333333333336, + "cost": 278258.64918623405, "est_rows": 10000, "act_rows": 8, "task_type": 1, diff --git a/planner/core/testdata/enforce_mpp_suite_out.json b/planner/core/testdata/enforce_mpp_suite_out.json index 146e33f350308..e1e3242fb55b5 100644 --- a/planner/core/testdata/enforce_mpp_suite_out.json +++ b/planner/core/testdata/enforce_mpp_suite_out.json @@ -31,31 +31,30 @@ { "SQL": "explain format='verbose' select count(*) from t where a=1", "Plan": [ - "StreamAgg_24 1.00 35.88 root funcs:count(Column#6)->Column#4", - "└─IndexReader_25 1.00 32.88 root index:StreamAgg_9", - " └─StreamAgg_9 1.00 465.00 cop[tikv] funcs:count(1)->Column#6", - " └─IndexRangeScan_23 10.00 435.00 cop[tikv] table:t, index:idx(a) range:[1,1], keep order:false, stats:pseudo" + "HashAgg_14 1.00 154.90 root funcs:count(Column#5)->Column#4", + "└─IndexReader_15 1.00 124.64 root index:HashAgg_6", + " └─HashAgg_6 1.00 1837.90 cop[tikv] funcs:count(1)->Column#5", + " └─IndexRangeScan_13 10.00 1628.00 cop[tikv] table:t, index:idx(a) range:[1,1], keep order:false, stats:pseudo" ], "Warn": null }, { "SQL": "explain format='verbose' select /*+ read_from_storage(tikv[t]) */ count(*) from t where a=1", "Plan": [ - "StreamAgg_17 1.00 35.88 root funcs:count(Column#6)->Column#4", - "└─IndexReader_18 1.00 32.88 root index:StreamAgg_9", - " └─StreamAgg_9 1.00 465.00 cop[tikv] funcs:count(1)->Column#6", - " └─IndexRangeScan_16 10.00 435.00 cop[tikv] table:t, index:idx(a) range:[1,1], keep order:false, stats:pseudo" + "HashAgg_12 1.00 154.90 root funcs:count(Column#5)->Column#4", + "└─IndexReader_13 1.00 124.64 root index:HashAgg_6", + " └─HashAgg_6 1.00 1837.90 cop[tikv] funcs:count(1)->Column#5", + " └─IndexRangeScan_11 10.00 1628.00 cop[tikv] table:t, index:idx(a) range:[1,1], keep order:false, stats:pseudo" ], "Warn": null }, { "SQL": "explain format='verbose' select /*+ read_from_storage(tiflash[t]) */ count(*) from t where a=1", "Plan": [ - "StreamAgg_20 1.00 19006.88 root funcs:count(Column#6)->Column#4", - "└─TableReader_21 1.00 19003.88 root data:StreamAgg_9", - " └─StreamAgg_9 1.00 285030.00 batchCop[tiflash] funcs:count(1)->Column#6", - " └─Selection_19 10.00 285000.00 batchCop[tiflash] eq(test.t.a, 1)", - " └─TableFullScan_18 10000.00 255000.00 batchCop[tiflash] table:t keep order:false, stats:pseudo" + "HashAgg_8 1.00 63718.81 root funcs:count(1)->Column#4", + "└─TableReader_17 10.00 63508.91 root data:Selection_16", + " └─Selection_16 10.00 952000.00 cop[tiflash] eq(test.t.a, 1)", + " └─TableFullScan_15 10000.00 928000.00 cop[tiflash] table:t keep order:false, stats:pseudo" ], "Warn": null }, @@ -72,32 +71,32 @@ { "SQL": "explain format='verbose' select count(*) from t where a=1", "Plan": [ - "StreamAgg_31 1.00 35.88 root funcs:count(Column#7)->Column#4", - "└─IndexReader_32 1.00 32.88 root index:StreamAgg_11", - " └─StreamAgg_11 1.00 465.00 cop[tikv] funcs:count(1)->Column#7", - " └─IndexRangeScan_30 10.00 435.00 cop[tikv] table:t, index:idx(a) range:[1,1], keep order:false, stats:pseudo" + "HashAgg_16 1.00 154.90 root funcs:count(Column#5)->Column#4", + "└─IndexReader_17 1.00 124.64 root index:HashAgg_7", + " └─HashAgg_7 1.00 1837.90 cop[tikv] funcs:count(1)->Column#5", + " └─IndexRangeScan_15 10.00 1628.00 cop[tikv] table:t, index:idx(a) range:[1,1], keep order:false, stats:pseudo" ], "Warn": null }, { "SQL": "explain format='verbose' select /*+ read_from_storage(tikv[t]) */ count(*) from t where a=1", "Plan": [ - "StreamAgg_19 1.00 35.88 root funcs:count(Column#6)->Column#4", - "└─IndexReader_20 1.00 32.88 root index:StreamAgg_11", - " └─StreamAgg_11 1.00 465.00 cop[tikv] funcs:count(1)->Column#6", - " └─IndexRangeScan_18 10.00 435.00 cop[tikv] table:t, index:idx(a) range:[1,1], keep order:false, stats:pseudo" + "HashAgg_14 1.00 154.90 root funcs:count(Column#5)->Column#4", + "└─IndexReader_15 1.00 124.64 root index:HashAgg_7", + " └─HashAgg_7 1.00 1837.90 cop[tikv] funcs:count(1)->Column#5", + " └─IndexRangeScan_13 10.00 1628.00 cop[tikv] table:t, index:idx(a) range:[1,1], keep order:false, stats:pseudo" ], "Warn": null }, { "SQL": "explain format='verbose' select /*+ read_from_storage(tiflash[t]) */ count(*) from t where a=1", "Plan": [ - "HashAgg_22 1.00 11910.73 root funcs:count(Column#6)->Column#4", - "└─TableReader_24 1.00 11877.13 root data:ExchangeSender_23", - " └─ExchangeSender_23 1.00 285030.00 mpp[tiflash] ExchangeType: PassThrough", - " └─HashAgg_10 1.00 285030.00 mpp[tiflash] funcs:count(1)->Column#6", - " └─Selection_21 10.00 285000.00 mpp[tiflash] eq(test.t.a, 1)", - " └─TableFullScan_20 10000.00 255000.00 mpp[tiflash] table:t keep order:false, stats:pseudo" + "HashAgg_22 1.00 63498.78 root funcs:count(Column#6)->Column#4", + "└─TableReader_24 1.00 63468.52 root data:ExchangeSender_23", + " └─ExchangeSender_23 1.00 952010.16 mpp[tiflash] ExchangeType: PassThrough", + " └─HashAgg_10 1.00 952010.16 mpp[tiflash] funcs:count(1)->Column#6", + " └─Selection_21 10.00 952000.00 mpp[tiflash] eq(test.t.a, 1)", + " └─TableFullScan_20 10000.00 928000.00 mpp[tiflash] table:t keep order:false, stats:pseudo" ], "Warn": null }, @@ -109,34 +108,32 @@ { "SQL": "explain format='verbose' select count(*) from t where a=1", "Plan": [ - "HashAgg_25 1.00 33.89 root funcs:count(Column#6)->Column#4", - "└─TableReader_27 1.00 0.29 root data:ExchangeSender_26", - " └─ExchangeSender_26 1.00 285030.00 mpp[tiflash] ExchangeType: PassThrough", - " └─HashAgg_10 1.00 285030.00 mpp[tiflash] funcs:count(1)->Column#6", - " └─Selection_24 10.00 285000.00 mpp[tiflash] eq(test.t.a, 1)", - " └─TableFullScan_23 10000.00 255000.00 mpp[tiflash] table:t keep order:false, stats:pseudo" + "HashAgg_16 1.00 154.90 root funcs:count(Column#5)->Column#4", + "└─IndexReader_17 1.00 124.64 root index:HashAgg_7", + " └─HashAgg_7 1.00 1837.90 cop[tikv] funcs:count(1)->Column#5", + " └─IndexRangeScan_15 10.00 1628.00 cop[tikv] table:t, index:idx(a) range:[1,1], keep order:false, stats:pseudo" ], "Warn": null }, { "SQL": "explain format='verbose' select /*+ read_from_storage(tikv[t]) */ count(*) from t where a=1", "Plan": [ - "StreamAgg_19 1.00 35.88 root funcs:count(Column#6)->Column#4", - "└─IndexReader_20 1.00 32.88 root index:StreamAgg_11", - " └─StreamAgg_11 1.00 465.00 cop[tikv] funcs:count(1)->Column#6", - " └─IndexRangeScan_18 10.00 435.00 cop[tikv] table:t, index:idx(a) range:[1,1], keep order:false, stats:pseudo" + "HashAgg_14 1.00 154.90 root funcs:count(Column#5)->Column#4", + "└─IndexReader_15 1.00 124.64 root index:HashAgg_7", + " └─HashAgg_7 1.00 1837.90 cop[tikv] funcs:count(1)->Column#5", + " └─IndexRangeScan_13 10.00 1628.00 cop[tikv] table:t, index:idx(a) range:[1,1], keep order:false, stats:pseudo" ], "Warn": null }, { "SQL": "explain format='verbose' select /*+ read_from_storage(tiflash[t]) */ count(*) from t where a=1", "Plan": [ - "HashAgg_22 1.00 33.89 root funcs:count(Column#6)->Column#4", - "└─TableReader_24 1.00 0.29 root data:ExchangeSender_23", - " └─ExchangeSender_23 1.00 285030.00 mpp[tiflash] ExchangeType: PassThrough", - " └─HashAgg_10 1.00 285030.00 mpp[tiflash] funcs:count(1)->Column#6", - " └─Selection_21 10.00 285000.00 mpp[tiflash] eq(test.t.a, 1)", - " └─TableFullScan_20 10000.00 255000.00 mpp[tiflash] table:t keep order:false, stats:pseudo" + "HashAgg_22 1.00 63498.78 root funcs:count(Column#6)->Column#4", + "└─TableReader_24 1.00 63468.52 root data:ExchangeSender_23", + " └─ExchangeSender_23 1.00 952010.16 mpp[tiflash] ExchangeType: PassThrough", + " └─HashAgg_10 1.00 952010.16 mpp[tiflash] funcs:count(1)->Column#6", + " └─Selection_21 10.00 952000.00 mpp[tiflash] eq(test.t.a, 1)", + " └─TableFullScan_20 10000.00 928000.00 mpp[tiflash] table:t keep order:false, stats:pseudo" ], "Warn": null }, @@ -148,22 +145,22 @@ { "SQL": "explain format='verbose' select count(*) from t where a=1", "Plan": [ - "HashAgg_25 1.00 33.60 root funcs:count(Column#6)->Column#4", + "HashAgg_25 1.00 30.26 root funcs:count(Column#6)->Column#4", "└─TableReader_27 1.00 0.00 root data:ExchangeSender_26", - " └─ExchangeSender_26 1.00 285030.00 mpp[tiflash] ExchangeType: PassThrough", - " └─HashAgg_10 1.00 285030.00 mpp[tiflash] funcs:count(1)->Column#6", - " └─Selection_24 10.00 285000.00 mpp[tiflash] eq(test.t.a, 1)", - " └─TableFullScan_23 10000.00 255000.00 mpp[tiflash] table:t keep order:false, stats:pseudo" + " └─ExchangeSender_26 1.00 952010.16 mpp[tiflash] ExchangeType: PassThrough", + " └─HashAgg_10 1.00 952010.16 mpp[tiflash] funcs:count(1)->Column#6", + " └─Selection_24 10.00 952000.00 mpp[tiflash] eq(test.t.a, 1)", + " └─TableFullScan_23 10000.00 928000.00 mpp[tiflash] table:t keep order:false, stats:pseudo" ], "Warn": null }, { "SQL": "explain format='verbose' select /*+ read_from_storage(tikv[t]) */ count(*) from t where a=1", "Plan": [ - "StreamAgg_19 1.00 35.88 root funcs:count(Column#6)->Column#4", - "└─IndexReader_20 1.00 32.88 root index:StreamAgg_11", - " └─StreamAgg_11 1.00 465.00 cop[tikv] funcs:count(1)->Column#6", - " └─IndexRangeScan_18 10.00 435.00 cop[tikv] table:t, index:idx(a) range:[1,1], keep order:false, stats:pseudo" + "HashAgg_14 1.00 154.90 root funcs:count(Column#5)->Column#4", + "└─IndexReader_15 1.00 124.64 root index:HashAgg_7", + " └─HashAgg_7 1.00 1837.90 cop[tikv] funcs:count(1)->Column#5", + " └─IndexRangeScan_13 10.00 1628.00 cop[tikv] table:t, index:idx(a) range:[1,1], keep order:false, stats:pseudo" ], "Warn": [ "MPP mode may be blocked because you have set a hint to read table `t` from TiKV." @@ -172,12 +169,12 @@ { "SQL": "explain format='verbose' select /*+ read_from_storage(tiflash[t]) */ count(*) from t where a=1", "Plan": [ - "HashAgg_22 1.00 33.60 root funcs:count(Column#6)->Column#4", + "HashAgg_22 1.00 30.26 root funcs:count(Column#6)->Column#4", "└─TableReader_24 1.00 0.00 root data:ExchangeSender_23", - " └─ExchangeSender_23 1.00 285030.00 mpp[tiflash] ExchangeType: PassThrough", - " └─HashAgg_10 1.00 285030.00 mpp[tiflash] funcs:count(1)->Column#6", - " └─Selection_21 10.00 285000.00 mpp[tiflash] eq(test.t.a, 1)", - " └─TableFullScan_20 10000.00 255000.00 mpp[tiflash] table:t keep order:false, stats:pseudo" + " └─ExchangeSender_23 1.00 952010.16 mpp[tiflash] ExchangeType: PassThrough", + " └─HashAgg_10 1.00 952010.16 mpp[tiflash] funcs:count(1)->Column#6", + " └─Selection_21 10.00 952000.00 mpp[tiflash] eq(test.t.a, 1)", + " └─TableFullScan_20 10000.00 928000.00 mpp[tiflash] table:t keep order:false, stats:pseudo" ], "Warn": null } @@ -194,9 +191,9 @@ { "SQL": "explain format = 'brief' select count(*) from t where a=1 -- 1. no replica", "Plan": [ - "StreamAgg 1.00 root funcs:count(Column#8)->Column#6", - "└─IndexReader 1.00 root index:StreamAgg", - " └─StreamAgg 1.00 cop[tikv] funcs:count(1)->Column#8", + "HashAgg 1.00 root funcs:count(Column#7)->Column#6", + "└─IndexReader 1.00 root index:HashAgg", + " └─HashAgg 1.00 cop[tikv] funcs:count(1)->Column#7", " └─IndexRangeScan 10.00 cop[tikv] table:t, index:idx(a) range:[1,1], keep order:false, stats:pseudo" ], "Warn": [ @@ -211,10 +208,10 @@ { "SQL": "explain select count(*) from t where a=1 -- 2. replica not ready", "Plan": [ - "StreamAgg_17 1.00 root funcs:count(Column#8)->Column#6", - "└─IndexReader_18 1.00 root index:StreamAgg_9", - " └─StreamAgg_9 1.00 cop[tikv] funcs:count(1)->Column#8", - " └─IndexRangeScan_16 10.00 cop[tikv] table:t, index:idx(a) range:[1,1], keep order:false, stats:pseudo" + "HashAgg_12 1.00 root funcs:count(Column#7)->Column#6", + "└─IndexReader_13 1.00 root index:HashAgg_6", + " └─HashAgg_6 1.00 cop[tikv] funcs:count(1)->Column#7", + " └─IndexRangeScan_11 10.00 cop[tikv] table:t, index:idx(a) range:[1,1], keep order:false, stats:pseudo" ], "Warn": [ "MPP mode may be blocked because tiflash replicas of table `t` not ready." @@ -233,10 +230,10 @@ { "SQL": "explain select count(*) from t where a=1 -- 3. isolation_engine not match", "Plan": [ - "StreamAgg_17 1.00 root funcs:count(Column#8)->Column#6", - "└─IndexReader_18 1.00 root index:StreamAgg_9", - " └─StreamAgg_9 1.00 cop[tikv] funcs:count(1)->Column#8", - " └─IndexRangeScan_16 10.00 cop[tikv] table:t, index:idx(a) range:[1,1], keep order:false, stats:pseudo" + "HashAgg_12 1.00 root funcs:count(Column#7)->Column#6", + "└─IndexReader_13 1.00 root index:HashAgg_6", + " └─HashAgg_6 1.00 cop[tikv] funcs:count(1)->Column#7", + " └─IndexRangeScan_11 10.00 cop[tikv] table:t, index:idx(a) range:[1,1], keep order:false, stats:pseudo" ], "Warn": [ "MPP mode may be blocked because 'tidb_isolation_read_engines'(value: 'tikv') not match, need 'tiflash'." @@ -250,9 +247,9 @@ { "SQL": "explain format = 'brief' select /*+ read_from_storage(tikv[t]) */ count(*) from t where a=1 -- 4. hint use tikv", "Plan": [ - "StreamAgg 1.00 root funcs:count(Column#8)->Column#6", - "└─IndexReader 1.00 root index:StreamAgg", - " └─StreamAgg 1.00 cop[tikv] funcs:count(1)->Column#8", + "HashAgg 1.00 root funcs:count(Column#7)->Column#6", + "└─IndexReader 1.00 root index:HashAgg", + " └─HashAgg 1.00 cop[tikv] funcs:count(1)->Column#7", " └─IndexRangeScan 10.00 cop[tikv] table:t, index:idx(a) range:[1,1], keep order:false, stats:pseudo" ], "Warn": [ @@ -290,10 +287,10 @@ { "SQL": "EXPLAIN format = 'brief' SELECT count(b) from t where a=1; -- 7. agg func has virtual column", "Plan": [ - "StreamAgg 1.00 root funcs:count(test.t.b)->Column#6", - "└─IndexLookUp 10.00 root ", - " ├─IndexRangeScan(Build) 10.00 cop[tikv] table:t, index:idx(a) range:[1,1], keep order:false, stats:pseudo", - " └─TableRowIDScan(Probe) 10.00 cop[tikv] table:t keep order:false, stats:pseudo" + "HashAgg 1.00 root funcs:count(test.t.b)->Column#6", + "└─TableReader 10.00 root data:Selection", + " └─Selection 10.00 cop[tiflash] eq(test.t.a, 1)", + " └─TableFullScan 10000.00 cop[tiflash] table:t keep order:false, stats:pseudo" ], "Warn": [ "Aggregation can not be pushed to tiflash because expressions of AggFunc `count` contain virtual column or correlated column, which is not supported now", @@ -337,10 +334,10 @@ { "SQL": "EXPLAIN format = 'brief' SELECT count(a) from t where c=1; -- 11. type not supported", "Plan": [ - "StreamAgg 1.00 root funcs:count(test.t.a)->Column#6", - "└─Selection 10.00 root eq(test.t.c, 1)", - " └─TableReader 10000.00 root data:TableFullScan", - " └─TableFullScan 10000.00 cop[tiflash] table:t keep order:false, stats:pseudo" + "HashAgg 1.00 root funcs:count(test.t.a)->Column#6", + "└─TableReader 10.00 root data:Selection", + " └─Selection 10.00 cop[tikv] eq(test.t.c, 1)", + " └─TableFullScan 10000.00 cop[tikv] table:t keep order:false, stats:pseudo" ], "Warn": [ "Expression about 'test.t.c' can not be pushed to TiFlash because it contains unsupported calculation of type 'enum'.", @@ -353,10 +350,10 @@ { "SQL": "EXPLAIN format = 'brief' SELECT count(a) from t where d=1; -- 11.1. type not supported", "Plan": [ - "StreamAgg 1.00 root funcs:count(test.t.a)->Column#6", - "└─Selection 10.00 root eq(test.t.d, 1)", - " └─TableReader 10000.00 root data:TableFullScan", - " └─TableFullScan 10000.00 cop[tiflash] table:t keep order:false, stats:pseudo" + "HashAgg 1.00 root funcs:count(test.t.a)->Column#6", + "└─TableReader 10.00 root data:Selection", + " └─Selection 10.00 cop[tikv] eq(test.t.d, 1)", + " └─TableFullScan 10000.00 cop[tikv] table:t keep order:false, stats:pseudo" ], "Warn": [ "Expression about 'test.t.d' can not be pushed to TiFlash because it contains unsupported calculation of type 'bit'.", @@ -384,11 +381,11 @@ { "SQL": "EXPLAIN SELECT count(*) from t where a=1; -- 1. static partition prune", "Plan": [ - "StreamAgg_32 1.00 root funcs:count(Column#6)->Column#4", - "└─TableReader_33 1.00 root data:StreamAgg_13", - " └─StreamAgg_13 1.00 batchCop[tiflash] funcs:count(1)->Column#6", - " └─Selection_31 10.00 batchCop[tiflash] eq(test.t.a, 1)", - " └─TableFullScan_30 10000.00 batchCop[tiflash] table:t, partition:p0 keep order:false, stats:pseudo" + "HashAgg_19 1.00 root funcs:count(Column#5)->Column#4", + "└─TableReader_20 1.00 root data:HashAgg_9", + " └─HashAgg_9 1.00 batchCop[tiflash] funcs:count(1)->Column#5", + " └─Selection_18 10.00 batchCop[tiflash] eq(test.t.a, 1)", + " └─TableFullScan_17 10000.00 batchCop[tiflash] table:t, partition:p0 keep order:false, stats:pseudo" ], "Warn": [ "MPP mode may be blocked because table `t`is a partition table which is not supported when `@@tidb_partition_prune_mode=static`." @@ -474,8 +471,8 @@ "IndexJoin_15 12500.00 root inner join, inner:TableReader_12, outer key:test.t.a, inner key:test.s.a, equal cond:eq(test.t.a, test.s.a)", "├─TableReader_32(Build) 10000.00 root data:TableFullScan_31", "│ └─TableFullScan_31 10000.00 cop[tiflash] table:t keep order:false, stats:pseudo", - "└─TableReader_12(Probe) 1.00 root data:TableRangeScan_11", - " └─TableRangeScan_11 1.00 cop[tikv] table:s range: decided by [test.t.a], keep order:false, stats:pseudo" + "└─TableReader_12(Probe) 10000.00 root data:TableRangeScan_11", + " └─TableRangeScan_11 10000.00 cop[tikv] table:s range: decided by [test.t.a], keep order:false, stats:pseudo" ], "Warn": [ "MPP mode may be blocked because you have used hint to specify a join algorithm which is not supported by mpp now.", @@ -488,8 +485,8 @@ "IndexHashJoin_16 12500.00 root inner join, inner:TableReader_11, outer key:test.t.a, inner key:test.s.a, equal cond:eq(test.t.a, test.s.a)", "├─TableReader_31(Build) 10000.00 root data:TableFullScan_30", "│ └─TableFullScan_30 10000.00 cop[tiflash] table:t keep order:false, stats:pseudo", - "└─TableReader_11(Probe) 1.00 root data:TableRangeScan_10", - " └─TableRangeScan_10 1.00 cop[tikv] table:s range: decided by [test.t.a], keep order:false, stats:pseudo" + "└─TableReader_11(Probe) 10000.00 root data:TableRangeScan_10", + " └─TableRangeScan_10 10000.00 cop[tikv] table:s range: decided by [test.t.a], keep order:false, stats:pseudo" ], "Warn": [ "MPP mode may be blocked because you have used hint to specify a join algorithm which is not supported by mpp now.", @@ -650,13 +647,14 @@ "└─TableReader_35 9990.00 root data:ExchangeSender_34", " └─ExchangeSender_34 9990.00 mpp[tiflash] ExchangeType: PassThrough", " └─HashJoin_14 9990.00 mpp[tiflash] inner join, equal:[eq(test.c.c_id, test.o.c_id)]", - " ├─ExchangeReceiver_26(Build) 8000.00 mpp[tiflash] ", - " │ └─ExchangeSender_25 8000.00 mpp[tiflash] ExchangeType: Broadcast", - " │ └─Projection_24 8000.00 mpp[tiflash] Column#7, test.o.c_id", - " │ └─HashAgg_19 8000.00 mpp[tiflash] group by:test.o.c_id, funcs:count(1)->Column#7, funcs:firstrow(test.o.c_id)->test.o.c_id", - " │ └─ExchangeReceiver_23 10000.00 mpp[tiflash] ", - " │ └─ExchangeSender_22 10000.00 mpp[tiflash] ExchangeType: HashPartition, Hash Cols: [name: test.o.c_id, collate: binary]", - " │ └─TableFullScan_21 10000.00 mpp[tiflash] table:o keep order:false, stats:pseudo", + " ├─ExchangeReceiver_33(Build) 8000.00 mpp[tiflash] ", + " │ └─ExchangeSender_32 8000.00 mpp[tiflash] ExchangeType: Broadcast", + " │ └─Projection_28 8000.00 mpp[tiflash] Column#7, test.o.c_id", + " │ └─HashAgg_29 8000.00 mpp[tiflash] group by:test.o.c_id, funcs:sum(Column#8)->Column#7, funcs:firstrow(test.o.c_id)->test.o.c_id", + " │ └─ExchangeReceiver_31 8000.00 mpp[tiflash] ", + " │ └─ExchangeSender_30 8000.00 mpp[tiflash] ExchangeType: HashPartition, Hash Cols: [name: test.o.c_id, collate: binary]", + " │ └─HashAgg_20 8000.00 mpp[tiflash] group by:test.o.c_id, funcs:count(1)->Column#8", + " │ └─TableFullScan_27 10000.00 mpp[tiflash] table:o keep order:false, stats:pseudo", " └─Selection_18(Probe) 9990.00 mpp[tiflash] not(isnull(test.c.c_id))", " └─TableFullScan_17 10000.00 mpp[tiflash] table:c keep order:false, stats:pseudo" ], @@ -673,13 +671,14 @@ " └─ExchangeReceiver_71 9990.00 mpp[tiflash] ", " └─ExchangeSender_70 9990.00 mpp[tiflash] ExchangeType: HashPartition, Hash Cols: [name: test.o.o_id, collate: binary]", " └─HashJoin_69 9990.00 mpp[tiflash] inner join, equal:[eq(test.c.c_id, test.o.c_id)]", - " ├─ExchangeReceiver_27(Build) 8000.00 mpp[tiflash] ", - " │ └─ExchangeSender_26 8000.00 mpp[tiflash] ExchangeType: Broadcast", - " │ └─Projection_25 8000.00 mpp[tiflash] Column#7, Column#8, test.o.o_id, test.o.c_id", - " │ └─HashAgg_20 8000.00 mpp[tiflash] group by:test.o.c_id, test.o.o_id, funcs:count(1)->Column#7, funcs:firstrow(test.o.o_id)->Column#8, funcs:firstrow(test.o.o_id)->test.o.o_id, funcs:firstrow(test.o.c_id)->test.o.c_id", - " │ └─ExchangeReceiver_24 10000.00 mpp[tiflash] ", - " │ └─ExchangeSender_23 10000.00 mpp[tiflash] ExchangeType: HashPartition, Hash Cols: [name: test.o.o_id, collate: binary], [name: test.o.c_id, collate: binary]", - " │ └─TableFullScan_22 10000.00 mpp[tiflash] table:o keep order:false, stats:pseudo", + " ├─ExchangeReceiver_34(Build) 8000.00 mpp[tiflash] ", + " │ └─ExchangeSender_33 8000.00 mpp[tiflash] ExchangeType: Broadcast", + " │ └─Projection_29 8000.00 mpp[tiflash] Column#7, Column#8, test.o.o_id, test.o.c_id", + " │ └─HashAgg_30 8000.00 mpp[tiflash] group by:test.o.c_id, test.o.o_id, funcs:sum(Column#9)->Column#7, funcs:firstrow(test.o.o_id)->Column#8, funcs:firstrow(test.o.o_id)->test.o.o_id, funcs:firstrow(test.o.c_id)->test.o.c_id", + " │ └─ExchangeReceiver_32 8000.00 mpp[tiflash] ", + " │ └─ExchangeSender_31 8000.00 mpp[tiflash] ExchangeType: HashPartition, Hash Cols: [name: test.o.o_id, collate: binary], [name: test.o.c_id, collate: binary]", + " │ └─HashAgg_21 8000.00 mpp[tiflash] group by:test.o.c_id, test.o.o_id, funcs:count(1)->Column#9", + " │ └─TableFullScan_28 10000.00 mpp[tiflash] table:o keep order:false, stats:pseudo", " └─Selection_19(Probe) 9990.00 mpp[tiflash] not(isnull(test.c.c_id))", " └─TableFullScan_18 10000.00 mpp[tiflash] table:c keep order:false, stats:pseudo" ], @@ -696,13 +695,14 @@ " └─ExchangeReceiver_71 9990.00 mpp[tiflash] ", " └─ExchangeSender_70 9990.00 mpp[tiflash] ExchangeType: HashPartition, Hash Cols: [name: test.o.c_id, collate: binary]", " └─HashJoin_69 9990.00 mpp[tiflash] inner join, equal:[eq(test.c.c_id, test.o.c_id)]", - " ├─ExchangeReceiver_27(Build) 8000.00 mpp[tiflash] ", - " │ └─ExchangeSender_26 8000.00 mpp[tiflash] ExchangeType: Broadcast", - " │ └─Projection_25 8000.00 mpp[tiflash] Column#7, Column#8, test.o.c_id", - " │ └─HashAgg_20 8000.00 mpp[tiflash] group by:test.o.c_id, funcs:count(1)->Column#7, funcs:firstrow(test.o.c_id)->Column#8, funcs:firstrow(test.o.c_id)->test.o.c_id", - " │ └─ExchangeReceiver_24 10000.00 mpp[tiflash] ", - " │ └─ExchangeSender_23 10000.00 mpp[tiflash] ExchangeType: HashPartition, Hash Cols: [name: test.o.c_id, collate: binary]", - " │ └─TableFullScan_22 10000.00 mpp[tiflash] table:o keep order:false, stats:pseudo", + " ├─ExchangeReceiver_34(Build) 8000.00 mpp[tiflash] ", + " │ └─ExchangeSender_33 8000.00 mpp[tiflash] ExchangeType: Broadcast", + " │ └─Projection_29 8000.00 mpp[tiflash] Column#7, Column#8, test.o.c_id", + " │ └─HashAgg_30 8000.00 mpp[tiflash] group by:test.o.c_id, funcs:sum(Column#9)->Column#7, funcs:firstrow(test.o.c_id)->Column#8, funcs:firstrow(test.o.c_id)->test.o.c_id", + " │ └─ExchangeReceiver_32 8000.00 mpp[tiflash] ", + " │ └─ExchangeSender_31 8000.00 mpp[tiflash] ExchangeType: HashPartition, Hash Cols: [name: test.o.c_id, collate: binary]", + " │ └─HashAgg_21 8000.00 mpp[tiflash] group by:test.o.c_id, funcs:count(1)->Column#9", + " │ └─TableFullScan_28 10000.00 mpp[tiflash] table:o keep order:false, stats:pseudo", " └─Selection_19(Probe) 9990.00 mpp[tiflash] not(isnull(test.c.c_id))", " └─TableFullScan_18 10000.00 mpp[tiflash] table:c keep order:false, stats:pseudo" ], @@ -1169,10 +1169,10 @@ { "SQL": "EXPLAIN select count(distinct b), json_objectagg(d,c) from t;", "Plan": [ - "StreamAgg_7 1.00 root funcs:count(distinct Column#9)->Column#7, funcs:json_objectagg(Column#10, Column#11)->Column#8", + "HashAgg_6 1.00 root funcs:count(distinct Column#9)->Column#7, funcs:json_objectagg(Column#10, Column#11)->Column#8", "└─Projection_16 10000.00 root test.t.b, cast(test.t.d, var_string(10))->Column#10, test.t.c", - " └─TableReader_15 10000.00 root data:TableFullScan_14", - " └─TableFullScan_14 10000.00 cop[tiflash] table:t keep order:false, stats:pseudo" + " └─TableReader_11 10000.00 root data:TableFullScan_10", + " └─TableFullScan_10 10000.00 cop[tiflash] table:t keep order:false, stats:pseudo" ], "Warn": [ "Aggregation can not be pushed to tiflash because AggFunc `json_objectagg` is not supported now", diff --git a/planner/core/testdata/expression_rewriter_suite_out.json b/planner/core/testdata/expression_rewriter_suite_out.json index 3c850e434fc9b..b7f5a31f7a46a 100644 --- a/planner/core/testdata/expression_rewriter_suite_out.json +++ b/planner/core/testdata/expression_rewriter_suite_out.json @@ -41,10 +41,11 @@ "│ └─HashAgg 1.69 cop[tikv] group by:test.t2.a, test.t2.b, ", "│ └─Selection 2.25 cop[tikv] not(isnull(test.t2.a)), not(isnull(test.t2.b))", "│ └─TableFullScan 4.00 cop[tikv] table:t2 keep order:false", - "└─HashAgg(Probe) 2.25 root group by:test.t1.a, funcs:count(1)->Column#7, funcs:firstrow(test.t1.a)->test.t1.a", - " └─TableReader 3.00 root data:Selection", - " └─Selection 3.00 cop[tikv] not(isnull(test.t1.a))", - " └─TableFullScan 4.00 cop[tikv] table:t1 keep order:false" + "└─HashAgg(Probe) 2.25 root group by:test.t1.a, funcs:count(Column#14)->Column#7, funcs:firstrow(test.t1.a)->test.t1.a", + " └─TableReader 2.25 root data:HashAgg", + " └─HashAgg 2.25 cop[tikv] group by:test.t1.a, funcs:count(1)->Column#14", + " └─Selection 3.00 cop[tikv] not(isnull(test.t1.a))", + " └─TableFullScan 4.00 cop[tikv] table:t1 keep order:false" ], "Res": [ "1" @@ -56,9 +57,10 @@ "HashJoin 2.40 root CARTESIAN anti semi join, other cond:eq(Column#7, test.t2.b), eq(test.t1.a, test.t2.a)", "├─TableReader(Build) 4.00 root data:TableFullScan", "│ └─TableFullScan 4.00 cop[tikv] table:t2 keep order:false", - "└─HashAgg(Probe) 3.00 root group by:test.t1.a, funcs:count(1)->Column#7, funcs:firstrow(test.t1.a)->test.t1.a", - " └─TableReader 4.00 root data:TableFullScan", - " └─TableFullScan 4.00 cop[tikv] table:t1 keep order:false" + "└─HashAgg(Probe) 3.00 root group by:test.t1.a, funcs:count(Column#12)->Column#7, funcs:firstrow(test.t1.a)->test.t1.a", + " └─TableReader 3.00 root data:HashAgg", + " └─HashAgg 3.00 cop[tikv] group by:test.t1.a, funcs:count(1)->Column#12", + " └─TableFullScan 4.00 cop[tikv] table:t1 keep order:false" ], "Res": [ "4" @@ -71,9 +73,9 @@ "Cases": [ { "Plan": [ - "StreamAgg 1.00 root funcs:bit_or(Column#6)->Column#4", - "└─TableReader 1.00 root data:StreamAgg", - " └─StreamAgg 1.00 cop[tikv] funcs:bit_or(cast(mul(cast(test.t.a, double BINARY), cast(test.t.b, double BINARY)), bigint(20) BINARY))->Column#6", + "HashAgg 1.00 root funcs:bit_or(Column#5)->Column#4", + "└─TableReader 1.00 root data:HashAgg", + " └─HashAgg 1.00 cop[tikv] funcs:bit_or(cast(mul(cast(test.t.a, double BINARY), cast(test.t.b, double BINARY)), bigint(20) BINARY))->Column#5", " └─TableFullScan 1.00 cop[tikv] table:t keep order:false" ] } diff --git a/planner/core/testdata/integration_partition_suite_out.json b/planner/core/testdata/integration_partition_suite_out.json index e9b75469bc21d..e496996969211 100644 --- a/planner/core/testdata/integration_partition_suite_out.json +++ b/planner/core/testdata/integration_partition_suite_out.json @@ -1059,13 +1059,13 @@ "Plan": [ "HashAgg 1.00 root funcs:avg(Column#4, Column#5)->Column#3", "└─PartitionUnion 2.00 root ", - " ├─StreamAgg 1.00 root funcs:count(Column#8)->Column#4, funcs:sum(Column#9)->Column#5", - " │ └─TableReader 1.00 root data:StreamAgg", - " │ └─StreamAgg 1.00 cop[tikv] funcs:count(list_push_down.tlist.a)->Column#8, funcs:sum(list_push_down.tlist.a)->Column#9", + " ├─HashAgg 1.00 root funcs:count(Column#6)->Column#4, funcs:sum(Column#7)->Column#5", + " │ └─TableReader 1.00 root data:HashAgg", + " │ └─HashAgg 1.00 cop[tikv] funcs:count(list_push_down.tlist.a)->Column#6, funcs:sum(list_push_down.tlist.a)->Column#7", " │ └─TableFullScan 10000.00 cop[tikv] table:tlist, partition:p0 keep order:false, stats:pseudo", - " └─StreamAgg 1.00 root funcs:count(Column#12)->Column#4, funcs:sum(Column#13)->Column#5", - " └─TableReader 1.00 root data:StreamAgg", - " └─StreamAgg 1.00 cop[tikv] funcs:count(list_push_down.tlist.a)->Column#12, funcs:sum(list_push_down.tlist.a)->Column#13", + " └─HashAgg 1.00 root funcs:count(Column#10)->Column#4, funcs:sum(Column#11)->Column#5", + " └─TableReader 1.00 root data:HashAgg", + " └─HashAgg 1.00 cop[tikv] funcs:count(list_push_down.tlist.a)->Column#10, funcs:sum(list_push_down.tlist.a)->Column#11", " └─TableFullScan 10000.00 cop[tikv] table:tlist, partition:p1 keep order:false, stats:pseudo" ] }, @@ -1116,13 +1116,13 @@ "Plan": [ "HashAgg 1.00 root funcs:avg(Column#4, Column#5)->Column#3", "└─PartitionUnion 2.00 root ", - " ├─StreamAgg 1.00 root funcs:count(Column#8)->Column#4, funcs:sum(Column#9)->Column#5", - " │ └─TableReader 1.00 root data:StreamAgg", - " │ └─StreamAgg 1.00 cop[tikv] funcs:count(list_push_down.tcollist.a)->Column#8, funcs:sum(list_push_down.tcollist.a)->Column#9", + " ├─HashAgg 1.00 root funcs:count(Column#6)->Column#4, funcs:sum(Column#7)->Column#5", + " │ └─TableReader 1.00 root data:HashAgg", + " │ └─HashAgg 1.00 cop[tikv] funcs:count(list_push_down.tcollist.a)->Column#6, funcs:sum(list_push_down.tcollist.a)->Column#7", " │ └─TableFullScan 10000.00 cop[tikv] table:tcollist, partition:p0 keep order:false, stats:pseudo", - " └─StreamAgg 1.00 root funcs:count(Column#12)->Column#4, funcs:sum(Column#13)->Column#5", - " └─TableReader 1.00 root data:StreamAgg", - " └─StreamAgg 1.00 cop[tikv] funcs:count(list_push_down.tcollist.a)->Column#12, funcs:sum(list_push_down.tcollist.a)->Column#13", + " └─HashAgg 1.00 root funcs:count(Column#10)->Column#4, funcs:sum(Column#11)->Column#5", + " └─TableReader 1.00 root data:HashAgg", + " └─HashAgg 1.00 cop[tikv] funcs:count(list_push_down.tcollist.a)->Column#10, funcs:sum(list_push_down.tcollist.a)->Column#11", " └─TableFullScan 10000.00 cop[tikv] table:tcollist, partition:p1 keep order:false, stats:pseudo" ] }, diff --git a/planner/core/testdata/integration_suite_in.json b/planner/core/testdata/integration_suite_in.json index 940c67c7f0f47..db677ac97d23c 100644 --- a/planner/core/testdata/integration_suite_in.json +++ b/planner/core/testdata/integration_suite_in.json @@ -468,10 +468,10 @@ "explain format = 'verbose' select /*+ use_index(t3, c) */ count(a) from t3 where b = 0", "explain format = 'verbose' select count(*) from t2 where a = 0", "explain format = 'verbose' select count(*) from t3 t join t3 on t.a = t3.b", - "explain format = 'verbose' select count(*) from t1 join t2 on t1.a = t2.a", - "explain format = 'verbose' select count(*) from t1 join t2 on t1.a = t2.a join t3 on t1.b = t3.b", - "explain format = 'verbose' select (2) in (select count(*) from t1) from (select t.b < (select t.b from t2 limit 1 ) from t3 t) t", - "explain format = 'verbose' select /*+ merge_join(t1) */ count(*) from t1 join t2 on t1.a = t2.a" + "explain format = 'verbose' select /*+ read_from_storage(tiflash[t1, t2]) */ count(*) from t1 join t2 on t1.a = t2.a", + "explain format = 'verbose' select /*+ read_from_storage(tiflash[t1, t2]) */ count(*) from t1 join t2 on t1.a = t2.a join t3 on t1.b = t3.b", + "explain format = 'verbose' select (2) in (select /*+ read_from_storage(tiflash[t1]) */ count(*) from t1) from (select t.b < (select /*+ read_from_storage(tiflash[t2]) */ t.b from t2 limit 1 ) from t3 t) t", + "explain format = 'verbose' select /*+ merge_join(t1), read_from_storage(tiflash[t1, t2]) */ count(*) from t1 join t2 on t1.a = t2.a" ] }, @@ -653,6 +653,73 @@ "desc format = 'brief' select /*+ read_from_storage(tiflash[t, ttt], tikv[tt]) */ * from ttt" ] }, + { + "name": "TestViewHint", + "cases": [ + // Hint for view v + "explain format = 'brief' select /*+ qb_name(qb_v_2, v@sel_1 .@sel_2), merge_join(t1@qb_v_2) */ * from v;", + "explain format = 'brief' select /*+ qb_name(qb_v_2, v@sel_1 .@sel_2), merge_join(t1@qb_v_2), stream_agg(@qb_v_2), qb_name(qb_v_1, v@sel_1 .@sel1), merge_join(t@qb_v_1) */ * from v;", + "explain format = 'brief' select /*+ qb_name(qb_v_2, v1@sel_1 . v@sel_2 .@sel_2), merge_join(t1@qb_v_2) */ * from v1;", + "explain format = 'brief' select /*+ qb_name(qb_v_2, v1@sel_1 . v@sel_2 .@sel_2), merge_join(t1@qb_v_2), stream_agg(@qb_v_2), qb_name(qb_v_1, v1@sel_1 . v@sel_2 .@sel_1), merge_join(t@qb_v_1) */ * from v1;", + "explain format = 'brief' select /*+ qb_name(qb_v_2, v2@sel_1 . v1@sel_2 . v@sel_2 .@sel_2), merge_join(t1@qb_v_2) */ * from v2;", + "explain format = 'brief' select /*+ qb_name(qb_v_2, v2@sel_1 . v1@sel_2 . v@sel_2 .@sel_2), merge_join(t1@qb_v_2), stream_agg(@qb_v_2), qb_name(qb_v_1, v2@sel_1 . v1@sel_2 . v@sel_2 .@sel_1), merge_join(t@qb_v_1) */ * from v2;", + + // Hint for view v1 + "explain format = 'brief' select /*+ qb_name(qb_v1_2, v1@sel_1 .@sel_2), merge_join(t1@qb_v1_2) */ * from v1;", + "explain format = 'brief' select /*+ qb_name(qb_v1_2, v1@sel_1 .@sel_2), merge_join(t1@qb_v1_2), stream_agg(@qb_v1_2), qb_name(qb_v1_1, v1@sel_1 .@sel_1), merge_join(t@qb_v1_1) */ * from v1;", + "explain format = 'brief' select /*+ qb_name(qb_v1_2, v2@sel_1 . v1@sel_1 .@sel_2), merge_join(t1@qb_v1_2) */ * from v2;", + "explain format = 'brief' select /*+ qb_name(qb_v1_2, v2@sel_1 . v1@sel_1 .@sel_2), merge_join(t1@qb_v1_2), stream_agg(@qb_v1_2), qb_name(qb_v1_1, v2@sel_1 . v1@sel_1 .@sel_1), merge_join(t@qb_v1_1) */ * from v2;", + + // Hint for view v2 + "explain format = 'brief' select /*+ qb_name(qb_v2_2, v2@sel_1 .@sel_2), merge_join(t1@qb_v2_2) */ * from v2;", + "explain format = 'brief' select /*+ qb_name(qb_v2_2, v2@sel_1 .@sel_2), merge_join(t1@qb_v2_2), stream_agg(@qb_v2_2), qb_name(qb_v2_1, v1@sel_1 .@sel_1), merge_join(t@qb_v2_1) */ * from v2;" + ] + }, + { + "name": "TestViewHintScope", + "cases": [ + // Same qb name in one query + "explain format = 'brief' select /*+ qb_name(qb_v, v@sel_1 .@sel_2), qb_name(qb_v, v@sel_1 .@sel_1), merge_join(t1@qb_v) */ * from v;", + "explain format = 'brief' select /*+ qb_name(qb_v, v1@sel_1 .v@sel_2 .@sel_2), qb_name(qb_v, v1@sel_1 .v@sel_2 .@sel_1), merge_join(t1@qb_v) */ * from v1;", + "explain format = 'brief' select /*+ qb_name(qb_v, v2@sel_1 .v1@sel_2 .v@sel_2 .@sel_2), qb_name(qb_v, v2@sel_1 .v1@sel_2 .v@sel_2 .@sel_1), merge_join(t1@qb_v) */ * from v2;", + + // Set the unappeared view name + // TODO: add the warning for the unused the view hints + "explain format = 'brief' select /*+ qb_name(qb_v1_2, v@sel_1 .@sel_2), merge_join(t1@qb_v1_2) */ * from v1;", + "explain format = 'brief' select /*+ qb_name(qb_v1_2, v2@sel_1 . v@sel_1 .@sel_2), merge_join(t1@qb_v1_2) */ * from v2;", + + // Exist the view alias + "explain format = 'brief' select /*+ qb_name(qb_v2_2, vv@sel_1 .@sel_2), merge_join(t1@qb_v2_2) */ * from v2 vv;", + "explain format = 'brief' select /*+ qb_name(qb_v2_2, v2@sel_1 .@sel_2), merge_join(t1@qb_v2_2) */ * from v2 vv;", + + // Tht view hint isn't set in the first query block. + "explain format = 'brief' select * from (select /*+ qb_name(qb_v_2, v@sel_1 .@sel_2), merge_join(t1@qb_v_2) */ * from v) t;", + "explain format = 'brief' select * from (select /*+ qb_name(qb_v_2, v@sel_1 .@sel_2), merge_join(t1@qb_v_2), stream_agg(@qb_v_2), qb_name(qb_v_1, v@sel_1 .@sel1), merge_join(t@qb_v_1) */ * from v) t;", + "explain format = 'brief' select * from (select /*+ qb_name(qb_v_2, v1@sel_1 . v@sel_2 .@sel_2), merge_join(t1@qb_v_2) */ * from v1) t;", + "explain format = 'brief' select * from (select /*+ qb_name(qb_v_2, v1@sel_1 . v@sel_2 .@sel_2), merge_join(t1@qb_v_2), stream_agg(@qb_v_2), qb_name(qb_v_1, v1@sel_1 . v@sel_2 .@sel_1), merge_join(t@qb_v_1) */ * from v1) t;", + + // TODO: add the warning when the view hints don't set in the first query block + "explain format = 'brief' select /*+ qb_name(qb_v_2, v@sel_1 .@sel_2) */ * from (select /*+ merge_join(t1@qb_v_2) */ * from v) t;", + "explain format = 'brief' select /*+ qb_name(qb_v_2, v@sel_1 .@sel_2), qb_name(qb_v_1, v@sel_1 .@sel1) */ * from (select /*+ merge_join(t1@qb_v_2), stream_agg(@qb_v_2), merge_join(t@qb_v_1) */ * from v) t;", + "explain format = 'brief' select /*+ qb_name(qb_v_2, v1@sel_1 . v@sel_2 .@sel_2) */ * from (select /*+ merge_join(t1@qb_v_2) */ * from v1) t;", + "explain format = 'brief' select /*+ qb_name(qb_v_2, v1@sel_1 . v@sel_2 .@sel_2), qb_name(qb_v_1, v1@sel_1 . v@sel_2 .@sel_1) */ * from (select /*+ merge_join(t1@qb_v_2), stream_agg(@qb_v_2), merge_join(t@qb_v_1) */ * from v1) t;", + + // Define more tables in one view hint + "explain format = 'brief' select /*+ qb_name(qb_v1_2, v2@sel_1 . v1@sel_1 .@sel_2), qb_name(qb_v1_1, v2@sel_1 . v1@sel_1 .@sel_1), merge_join(t1@qb_v1_2, t@qb_v1_1) */ * from v2;", + "explain format = 'brief' select /*+ qb_name(qb_v_2, v2@sel_1 . v1@sel_2 . v@sel_2 .@sel_2), qb_name(qb_v_1, v2@sel_1 . v1@sel_2 . v@sel_2 .@sel_1), merge_join(t1@qb_v_2, t3@qb_v_2) */ * from v2;", + "explain format = 'brief' select /*+ qb_name(qb_v_2, v2@sel_1 . v1@sel_2 . v@sel_2 .@sel_2), qb_name(qb_v_1, v2@sel_1 . v1@sel_2 . v@sel_2 .@sel_1), merge_join(@qb_v_2 t1, t3) */ * from v2;", + + // Ignore the @sel_1 query block + "explain format = 'brief' select /*+ qb_name(qb_v_2, v .@sel_2), merge_join(t1@qb_v_2) */ * from v;", + "explain format = 'brief' select /*+ qb_name(qb_v_1, v@sel_1), merge_join(t@qb_v_1) */ * from v;", + "explain format = 'brief' select /*+ qb_name(qb_v_2, v1 .v@sel_2 .@sel_2), merge_join(t1@qb_v_2) */ * from v1;", + "explain format = 'brief' select /*+ qb_name(qb_v_1, v1 .v@sel_2), merge_join(t@qb_v_1) */ * from v1;", + + // Use the query block before define it + "explain format = 'brief' select /*+ merge_join(t1@qb_v_2), qb_name(qb_v_2, v@sel_1 .@sel_2) */ * from v;", + "explain format = 'brief' select /*+ merge_join(t@qb_v_1), stream_agg(@qb_v_2), qb_name(qb_v_2, v@sel_1 .@sel_2), qb_name(qb_v_1, v@sel_1 .@sel1) */ * from v;" + ] + }, { "name": "TestReadFromStorageHintAndIsolationRead", "cases": [ @@ -745,12 +812,12 @@ { "name": "TestPushDownProjectionForTiFlash", "cases": [ - "desc format = 'brief' select /*+ hash_agg()*/ count(b) from (select id + 1 as b from t)A", - "desc format = 'brief' select /*+ hash_agg()*/ count(*) from (select id + 1 as b from t)A", - "desc format = 'brief' select /*+ hash_agg()*/ sum(b) from (select id + 1 as b from t)A", - "desc format = 'brief' select /*+ stream_agg()*/ count(b) from (select id + 1 as b from t)A", - "desc format = 'brief' select /*+ stream_agg()*/ count(*) from (select id + 1 as b from t)A", - "desc format = 'brief' select /*+ stream_agg()*/ sum(b) from (select id + 1 as b from t)A", + "desc format = 'brief' select /*+ hash_agg()*/ count(b) from (select /*+ read_from_storage(tiflash[t]) */ id + 1 as b from t)A", + "desc format = 'brief' select /*+ hash_agg()*/ count(*) from (select /*+ read_from_storage(tiflash[t]) */ id + 1 as b from t)A", + "desc format = 'brief' select /*+ hash_agg()*/ sum(b) from (select /*+ read_from_storage(tiflash[t]) */ id + 1 as b from t)A", + "desc format = 'brief' select /*+ stream_agg()*/ count(b) from (select /*+ read_from_storage(tiflash[t]) */ id + 1 as b from t)A", + "desc format = 'brief' select /*+ stream_agg()*/ count(*) from (select /*+ read_from_storage(tiflash[t]) */ id + 1 as b from t)A", + "desc format = 'brief' select /*+ stream_agg()*/ sum(b) from (select /*+ read_from_storage(tiflash[t]) */ id + 1 as b from t)A", "desc format = 'brief' select * from (select id-2 as b from t) B join (select id-2 as b from t) A on A.b=B.b", "desc format = 'brief' select * from t join (select id-2 as b from t) A on A.b=t.id", "desc format = 'brief' select * from t left join (select id-2 as b from t) A on A.b=t.id", @@ -811,6 +878,12 @@ "desc format = 'brief' SELECT STRAIGHT_JOIN t1 . col_varchar_64 , t1 . col_char_64_not_null FROM tt AS t1 INNER JOIN( tt AS t2 JOIN tt AS t3 ON(t3 . col_decimal_30_10_key = t2 . col_tinyint)) ON(t3 . col_varchar_64 = t2 . col_varchar_key) WHERE t3 . col_varchar_64 = t1 . col_char_64_not_null GROUP BY 1 , 2" ] }, + { + "name": "TestMppJoinExchangeColumnPrune", + "cases": [ + "desc format = 'brief' select * from tt t1 where exists (select * from t t2 where t1.b1 = t2.c3 and t2.c1 < t2.c2)" + ] + }, { "name": "TestPushDownAggForMPP", "cases": [ @@ -1011,5 +1084,26 @@ "set @@tidb_opt_range_max_size = 300", "explain format='brief' select /*+ inl_join(t1) */ * from t1 join t2 on t1.a = t2.e where t1.b > t2.f and t1.b < t2.f + 10" ] + }, + { + "name": "TestNullConditionForPrefixIndex", + "cases": [ + "select count(1) from t1 where c1 = '0xfff' and c2 is not null", + "select count(1) from t1 where c1 = '0xfff' and c2 is null", + "select count(1) from t1 where c1 >= '0xfff' and c2 is not null", + "select count(1) from t1 where c1 >= '0xfff' and c2 is null", + "select count(1) from t1 where c1 = '0xfff' and (c2 + 1) is not null", + "select count(1) from t1 where c1 = '0xfff' and (c2 + 1) is null", + "select c2 from t1 use index(idx2) where c1 = '0xfff' and c2 is not null", + "select c2 from t1 use index(idx2) where c1 = '0xfff' and c2 is null", + "select c2 from t1 use index(idx2) where c1 >= '0xfff' and c2 is not null", + "select c2 from t1 use index(idx2) where c1 >= '0xfff' and c2 is null", + "select count(1) from t2 use index(idx) where b is not null", + "select count(1) from t2 use index(idx) where b is null", + "select b from t2 use index(idx) where b is not null", + "select b from t2 use index(idx) where b is null", + "select b from t3 where a = 1 and b is not null", + "select b from t3 where a = 1 and b is null" + ] } ] diff --git a/planner/core/testdata/integration_suite_out.json b/planner/core/testdata/integration_suite_out.json index a42fe6c2f03e8..c64c004266ffd 100644 --- a/planner/core/testdata/integration_suite_out.json +++ b/planner/core/testdata/integration_suite_out.json @@ -14,11 +14,12 @@ { "SQL": "explain format = 'brief' select * from tbl use index(idx_b_c) where b > 1 order by b desc limit 2,1", "Plan": [ - "TopN 1.00 root test.tbl.b:desc, offset:2, count:1", - "└─IndexLookUp 3.00 root ", - " ├─TopN(Build) 3.00 cop[tikv] test.tbl.b:desc, offset:0, count:3", - " │ └─IndexRangeScan 4.00 cop[tikv] table:tbl, index:idx_b_c(b, c) range:(1,+inf], keep order:false", - " └─TableRowIDScan(Probe) 3.00 cop[tikv] table:tbl keep order:false" + "Limit 1.00 root offset:2, count:1", + "└─Projection 3.00 root test.tbl.a, test.tbl.b, test.tbl.c", + " └─IndexLookUp 3.00 root ", + " ├─Limit(Build) 3.00 cop[tikv] offset:0, count:3", + " │ └─IndexRangeScan 3.00 cop[tikv] table:tbl, index:idx_b_c(b, c) range:(1,+inf], keep order:true, desc", + " └─TableRowIDScan(Probe) 3.00 cop[tikv] table:tbl keep order:false" ] }, { @@ -143,9 +144,9 @@ "IndexJoin 3.00 root inner join, inner:IndexLookUp, outer key:test.t1.c, inner key:test.t2.c, equal cond:eq(test.t1.a, test.t2.a), eq(test.t1.b, test.t2.b), eq(test.t1.c, test.t2.c)", "├─TableReader(Build) 3.00 root data:TableFullScan", "│ └─TableFullScan 3.00 cop[tikv] table:t1 keep order:false", - "└─IndexLookUp(Probe) 1.00 root ", - " ├─IndexRangeScan(Build) 1.00 cop[tikv] table:t2, index:idx2(c) range: decided by [eq(test.t2.c, test.t1.c)], keep order:false", - " └─TableRowIDScan(Probe) 1.00 cop[tikv] table:t2 keep order:false" + "└─IndexLookUp(Probe) 3.00 root ", + " ├─IndexRangeScan(Build) 3.00 cop[tikv] table:t2, index:idx2(c) range: decided by [eq(test.t2.c, test.t1.c)], keep order:false", + " └─TableRowIDScan(Probe) 3.00 cop[tikv] table:t2 keep order:false" ] } ] @@ -174,12 +175,12 @@ "Plan": [ "HashAgg 2.00 root group by:Column#5, funcs:firstrow(Column#5)->Column#5", "└─Union 2.00 root ", - " ├─StreamAgg 1.00 root funcs:max(test.t.a)->Column#2", + " ├─HashAgg 1.00 root funcs:max(test.t.a)->Column#2", " │ └─Limit 1.00 root offset:0, count:1", " │ └─TableReader 1.00 root data:Limit", " │ └─Limit 1.00 cop[tikv] offset:0, count:1", " │ └─TableFullScan 1.00 cop[tikv] table:t keep order:true, desc, stats:pseudo", - " └─StreamAgg 1.00 root funcs:min(test.t.a)->Column#4", + " └─HashAgg 1.00 root funcs:min(test.t.a)->Column#4", " └─Limit 1.00 root offset:0, count:1", " └─TableReader 1.00 root data:Limit", " └─Limit 1.00 cop[tikv] offset:0, count:1", @@ -190,12 +191,12 @@ "SQL": "explain format = 'brief' select min(a), max(a) from cluster_index_t", "Plan": [ "HashJoin 1.00 root CARTESIAN inner join", - "├─StreamAgg(Build) 1.00 root funcs:max(test.cluster_index_t.a)->Column#5", + "├─HashAgg(Build) 1.00 root funcs:max(test.cluster_index_t.a)->Column#5", "│ └─Limit 1.00 root offset:0, count:1", "│ └─TableReader 1.00 root data:Limit", "│ └─Limit 1.00 cop[tikv] offset:0, count:1", "│ └─TableFullScan 1.00 cop[tikv] table:cluster_index_t keep order:true, desc, stats:pseudo", - "└─StreamAgg(Probe) 1.00 root funcs:min(test.cluster_index_t.a)->Column#4", + "└─HashAgg(Probe) 1.00 root funcs:min(test.cluster_index_t.a)->Column#4", " └─Limit 1.00 root offset:0, count:1", " └─TableReader 1.00 root data:Limit", " └─Limit 1.00 cop[tikv] offset:0, count:1", @@ -206,12 +207,12 @@ "SQL": "explain format = 'brief' select min(b), max(b) from cluster_index_t where a = 1", "Plan": [ "HashJoin 1.00 root CARTESIAN inner join", - "├─StreamAgg(Build) 1.00 root funcs:max(test.cluster_index_t.b)->Column#5", + "├─HashAgg(Build) 1.00 root funcs:max(test.cluster_index_t.b)->Column#5", "│ └─Limit 1.00 root offset:0, count:1", "│ └─TableReader 1.00 root data:Limit", "│ └─Limit 1.00 cop[tikv] offset:0, count:1", "│ └─TableRangeScan 1.00 cop[tikv] table:cluster_index_t range:[1,1], keep order:true, desc, stats:pseudo", - "└─StreamAgg(Probe) 1.00 root funcs:min(test.cluster_index_t.b)->Column#4", + "└─HashAgg(Probe) 1.00 root funcs:min(test.cluster_index_t.b)->Column#4", " └─Limit 1.00 root offset:0, count:1", " └─TableReader 1.00 root data:Limit", " └─Limit 1.00 cop[tikv] offset:0, count:1", @@ -221,9 +222,9 @@ { "SQL": "explain format = 'brief' select min(a), max(a) from cluster_index_t where b = 1", "Plan": [ - "StreamAgg 1.00 root funcs:min(Column#8)->Column#4, funcs:max(Column#9)->Column#5", - "└─TableReader 1.00 root data:StreamAgg", - " └─StreamAgg 1.00 cop[tikv] funcs:min(test.cluster_index_t.a)->Column#8, funcs:max(test.cluster_index_t.a)->Column#9", + "HashAgg 1.00 root funcs:min(Column#6)->Column#4, funcs:max(Column#7)->Column#5", + "└─TableReader 1.00 root data:HashAgg", + " └─HashAgg 1.00 cop[tikv] funcs:min(test.cluster_index_t.a)->Column#6, funcs:max(test.cluster_index_t.a)->Column#7", " └─Selection 10.00 cop[tikv] eq(test.cluster_index_t.b, 1)", " └─TableFullScan 10000.00 cop[tikv] table:cluster_index_t keep order:false, stats:pseudo" ] @@ -231,9 +232,9 @@ { "SQL": "explain format = 'brief' select min(b), max(b) from cluster_index_t where b = 1", "Plan": [ - "StreamAgg 1.00 root funcs:min(Column#8)->Column#4, funcs:max(Column#9)->Column#5", - "└─TableReader 1.00 root data:StreamAgg", - " └─StreamAgg 1.00 cop[tikv] funcs:min(test.cluster_index_t.b)->Column#8, funcs:max(test.cluster_index_t.b)->Column#9", + "HashAgg 1.00 root funcs:min(Column#6)->Column#4, funcs:max(Column#7)->Column#5", + "└─TableReader 1.00 root data:HashAgg", + " └─HashAgg 1.00 cop[tikv] funcs:min(test.cluster_index_t.b)->Column#6, funcs:max(test.cluster_index_t.b)->Column#7", " └─Selection 10.00 cop[tikv] eq(test.cluster_index_t.b, 1)", " └─TableFullScan 10000.00 cop[tikv] table:cluster_index_t keep order:false, stats:pseudo" ] @@ -405,13 +406,13 @@ " ├─TableReader(Build) 9990.00 root data:Selection", " │ └─Selection 9990.00 cop[tikv] not(isnull(test.t.b))", " │ └─TableFullScan 10000.00 cop[tikv] table:t1 keep order:false, stats:pseudo", - " └─Selection(Probe) 0.80 root not(isnull(test.t.a))", - " └─Projection 1.00 root test.t.a", - " └─TopN 1.00 root Column#7, offset:0, count:1", - " └─Projection 1.00 root test.t.a, plus(test.t.a, test.t.a)->Column#7", - " └─TableReader 1.00 root data:TopN", - " └─TopN 1.00 cop[tikv] plus(test.t.a, test.t.a), offset:0, count:1", - " └─TableFullScan 10000.00 cop[tikv] table:t2 keep order:false, stats:pseudo" + " └─Selection(Probe) 7992.00 root not(isnull(test.t.a))", + " └─Projection 9990.00 root test.t.a", + " └─TopN 9990.00 root Column#7, offset:0, count:1", + " └─Projection 9990.00 root test.t.a, plus(test.t.a, test.t.a)->Column#7", + " └─TableReader 9990.00 root data:TopN", + " └─TopN 9990.00 cop[tikv] plus(test.t.a, test.t.a), offset:0, count:1", + " └─TableFullScan 99900000.00 cop[tikv] table:t2 keep order:false, stats:pseudo" ] }, { @@ -454,9 +455,9 @@ "IndexJoin 12487.50 root inner join, inner:TableReader, outer key:test.t1.a, inner key:test.t2.a, equal cond:eq(test.t1.a, test.t2.a), eq(test.t1.b, test.t2.b)", "├─IndexReader(Build) 9990.00 root index:IndexFullScan", "│ └─IndexFullScan 9990.00 cop[tikv] table:t1, index:idx_t1_b(b) keep order:false, stats:pseudo", - "└─TableReader(Probe) 1.00 root data:Selection", - " └─Selection 1.00 cop[tikv] not(isnull(test.t2.b))", - " └─TableRangeScan 1.00 cop[tikv] table:t2 range: decided by [test.t1.a], keep order:false, stats:pseudo" + "└─TableReader(Probe) 9980.01 root data:Selection", + " └─Selection 9980.01 cop[tikv] not(isnull(test.t2.b))", + " └─TableRangeScan 9990.00 cop[tikv] table:t2 range: decided by [test.t1.a], keep order:false, stats:pseudo" ] }, { @@ -465,9 +466,9 @@ "IndexJoin 12487.50 root inner join, inner:TableReader, outer key:test.t1.a, test.t1.b, inner key:test.t2.a, test.t2.a, equal cond:eq(test.t1.a, test.t2.a), eq(test.t1.b, test.t2.a), eq(test.t1.b, test.t2.b)", "├─IndexReader(Build) 9990.00 root index:IndexFullScan", "│ └─IndexFullScan 9990.00 cop[tikv] table:t1, index:idx_t1_b(b) keep order:false, stats:pseudo", - "└─TableReader(Probe) 1.00 root data:Selection", - " └─Selection 1.00 cop[tikv] not(isnull(test.t2.b))", - " └─TableRangeScan 1.00 cop[tikv] table:t2 range: decided by [test.t1.a test.t1.b], keep order:false, stats:pseudo" + "└─TableReader(Probe) 9980.01 root data:Selection", + " └─Selection 9980.01 cop[tikv] not(isnull(test.t2.b))", + " └─TableRangeScan 9990.00 cop[tikv] table:t2 range: decided by [test.t1.a test.t1.b], keep order:false, stats:pseudo" ] }, { @@ -477,9 +478,9 @@ "├─TableReader(Build) 9990.00 root data:Selection", "│ └─Selection 9990.00 cop[tikv] not(isnull(test.t3.a))", "│ └─TableFullScan 10000.00 cop[tikv] table:t3 keep order:false, stats:pseudo", - "└─TableReader(Probe) 0.00 root data:Selection", - " └─Selection 0.00 cop[tikv] eq(test.t4.b, 1)", - " └─TableRangeScan 1.00 cop[tikv] table:t4 range: decided by [eq(test.t4.a, test.t3.a) eq(test.t4.b, 1)], keep order:false, stats:pseudo" + "└─TableReader(Probe) 9.99 root data:Selection", + " └─Selection 9.99 cop[tikv] eq(test.t4.b, 1)", + " └─TableRangeScan 9990.00 cop[tikv] table:t4 range: decided by [eq(test.t4.a, test.t3.a) eq(test.t4.b, 1)], keep order:false, stats:pseudo" ] }, { @@ -489,9 +490,9 @@ "├─TableReader(Build) 9990.00 root data:Selection", "│ └─Selection 9990.00 cop[tikv] not(isnull(test.t3.b))", "│ └─TableFullScan 10000.00 cop[tikv] table:t3 keep order:false, stats:pseudo", - "└─TableReader(Probe) 0.00 root data:Selection", - " └─Selection 0.00 cop[tikv] eq(test.t4.a, 1)", - " └─TableRangeScan 1.00 cop[tikv] table:t4 range: decided by [eq(test.t4.b, test.t3.b) eq(test.t4.a, 1)], keep order:false, stats:pseudo" + "└─TableReader(Probe) 9.99 root data:Selection", + " └─Selection 9.99 cop[tikv] eq(test.t4.a, 1)", + " └─TableRangeScan 9990.00 cop[tikv] table:t4 range: decided by [eq(test.t4.b, test.t3.b) eq(test.t4.a, 1)], keep order:false, stats:pseudo" ] } ] @@ -506,10 +507,10 @@ "└─IndexJoin 12487.50 root inner join, inner:IndexLookUp, outer key:test.t.a, inner key:test.t.b, equal cond:eq(test.t.a, test.t.b)", " ├─TableReader(Build) 10000.00 root data:TableFullScan", " │ └─TableFullScan 10000.00 cop[tikv] table:t1 keep order:false, stats:pseudo", - " └─IndexLookUp(Probe) 1.25 root ", - " ├─Selection(Build) 1.25 cop[tikv] not(isnull(test.t.b))", - " │ └─IndexRangeScan 1.25 cop[tikv] table:t2, index:b(b) range: decided by [eq(test.t.b, test.t.a)], keep order:false, stats:pseudo", - " └─TableRowIDScan(Probe) 1.25 cop[tikv] table:t2 keep order:false, stats:pseudo" + " └─IndexLookUp(Probe) 12487.50 root ", + " ├─Selection(Build) 12487.50 cop[tikv] not(isnull(test.t.b))", + " │ └─IndexRangeScan 12500.00 cop[tikv] table:t2, index:b(b) range: decided by [eq(test.t.b, test.t.a)], keep order:false, stats:pseudo", + " └─TableRowIDScan(Probe) 12487.50 cop[tikv] table:t2 keep order:false, stats:pseudo" ], "Warnings": [] }, @@ -520,10 +521,10 @@ "└─IndexHashJoin 12487.50 root inner join, inner:IndexLookUp, outer key:test.t.a, inner key:test.t.b, equal cond:eq(test.t.a, test.t.b)", " ├─TableReader(Build) 10000.00 root data:TableFullScan", " │ └─TableFullScan 10000.00 cop[tikv] table:t1 keep order:false, stats:pseudo", - " └─IndexLookUp(Probe) 1.25 root ", - " ├─Selection(Build) 1.25 cop[tikv] not(isnull(test.t.b))", - " │ └─IndexRangeScan 1.25 cop[tikv] table:t2, index:b(b) range: decided by [eq(test.t.b, test.t.a)], keep order:false, stats:pseudo", - " └─TableRowIDScan(Probe) 1.25 cop[tikv] table:t2 keep order:false, stats:pseudo" + " └─IndexLookUp(Probe) 12487.50 root ", + " ├─Selection(Build) 12487.50 cop[tikv] not(isnull(test.t.b))", + " │ └─IndexRangeScan 12500.00 cop[tikv] table:t2, index:b(b) range: decided by [eq(test.t.b, test.t.a)], keep order:false, stats:pseudo", + " └─TableRowIDScan(Probe) 12487.50 cop[tikv] table:t2 keep order:false, stats:pseudo" ], "Warnings": [] }, @@ -531,13 +532,13 @@ "SQL": "desc format = 'brief' select /*+ INL_MERGE_JOIN(t2)*/ t1.a, t2.a from t t1, t t2 ,t t3 where t1.a = t2.a and t3.a=t2.a", "Plan": [ "HashJoin 15625.00 root inner join, equal:[eq(test.t.a, test.t.a)]", - "├─TableReader(Build) 10000.00 root data:TableFullScan", - "│ └─TableFullScan 10000.00 cop[tikv] table:t3 keep order:false, stats:pseudo", + "├─IndexReader(Build) 10000.00 root index:IndexFullScan", + "│ └─IndexFullScan 10000.00 cop[tikv] table:t3, index:b(b) keep order:false, stats:pseudo", "└─IndexMergeJoin(Probe) 12500.00 root inner join, inner:TableReader, outer key:test.t.a, inner key:test.t.a", - " ├─TableReader(Build) 10000.00 root data:TableFullScan", - " │ └─TableFullScan 10000.00 cop[tikv] table:t1 keep order:false, stats:pseudo", - " └─TableReader(Probe) 1.00 root data:TableRangeScan", - " └─TableRangeScan 1.00 cop[tikv] table:t2 range: decided by [test.t.a], keep order:true, stats:pseudo" + " ├─IndexReader(Build) 10000.00 root index:IndexFullScan", + " │ └─IndexFullScan 10000.00 cop[tikv] table:t1, index:b(b) keep order:false, stats:pseudo", + " └─TableReader(Probe) 10000.00 root data:TableRangeScan", + " └─TableRangeScan 10000.00 cop[tikv] table:t2 range: decided by [test.t.a], keep order:true, stats:pseudo" ], "Warnings": [] }, @@ -561,10 +562,10 @@ "SQL": "desc format = 'brief' select /*+ INL_HASH_JOIN(t2) */ distinct t2.a from t t1 join t t2 on t1.a = t2.a", "Plan": [ "IndexHashJoin 12500.00 root inner join, inner:TableReader, outer key:test.t.a, inner key:test.t.a, equal cond:eq(test.t.a, test.t.a)", - "├─TableReader(Build) 10000.00 root data:TableFullScan", - "│ └─TableFullScan 10000.00 cop[tikv] table:t1 keep order:false, stats:pseudo", - "└─TableReader(Probe) 1.00 root data:TableRangeScan", - " └─TableRangeScan 1.00 cop[tikv] table:t2 range: decided by [test.t.a], keep order:false, stats:pseudo" + "├─IndexReader(Build) 10000.00 root index:IndexFullScan", + "│ └─IndexFullScan 10000.00 cop[tikv] table:t1, index:b(b) keep order:false, stats:pseudo", + "└─TableReader(Probe) 10000.00 root data:TableRangeScan", + " └─TableRangeScan 10000.00 cop[tikv] table:t2 range: decided by [test.t.a], keep order:false, stats:pseudo" ], "Warnings": [] }, @@ -1128,8 +1129,8 @@ "IndexJoin 3.00 root inner join, inner:TableReader, outer key:test.t.a, inner key:test.t.a, equal cond:eq(test.t.a, test.t.a)", "├─TableReader(Build) 3.00 root data:TableFullScan", "│ └─TableFullScan 3.00 cop[tikv] table:t1 keep order:false", - "└─TableReader(Probe) 1.00 root data:TableRangeScan", - " └─TableRangeScan 1.00 cop[tikv] table:t2 range: decided by [eq(test.t.a, test.t.a)], keep order:false" + "└─TableReader(Probe) 3.00 root data:TableRangeScan", + " └─TableRangeScan 3.00 cop[tikv] table:t2 range: decided by [eq(test.t.a, test.t.a)], keep order:false" ], "Res": [ "1 111 1.1000000000 11 1 111 1.1000000000 11", @@ -1143,8 +1144,8 @@ "IndexMergeJoin 3.00 root inner join, inner:TableReader, outer key:test.t.a, inner key:test.t.a", "├─TableReader(Build) 3.00 root data:TableFullScan", "│ └─TableFullScan 3.00 cop[tikv] table:t1 keep order:false", - "└─TableReader(Probe) 1.00 root data:TableRangeScan", - " └─TableRangeScan 1.00 cop[tikv] table:t2 range: decided by [eq(test.t.a, test.t.a)], keep order:true" + "└─TableReader(Probe) 3.00 root data:TableRangeScan", + " └─TableRangeScan 3.00 cop[tikv] table:t2 range: decided by [eq(test.t.a, test.t.a)], keep order:true" ], "Res": [ "1 111 1.1000000000 11 1 111 1.1000000000 11", @@ -1158,8 +1159,8 @@ "IndexHashJoin 3.00 root inner join, inner:TableReader, outer key:test.t.a, inner key:test.t.a, equal cond:eq(test.t.a, test.t.a)", "├─TableReader(Build) 3.00 root data:TableFullScan", "│ └─TableFullScan 3.00 cop[tikv] table:t1 keep order:false", - "└─TableReader(Probe) 1.00 root data:TableRangeScan", - " └─TableRangeScan 1.00 cop[tikv] table:t2 range: decided by [eq(test.t.a, test.t.a)], keep order:false" + "└─TableReader(Probe) 3.00 root data:TableRangeScan", + " └─TableRangeScan 3.00 cop[tikv] table:t2 range: decided by [eq(test.t.a, test.t.a)], keep order:false" ], "Res": [ "1 111 1.1000000000 11 1 111 1.1000000000 11", @@ -1173,8 +1174,8 @@ "IndexJoin 3.00 root inner join, inner:TableReader, outer key:test.t.a, test.t.b, inner key:test.t.a, test.t.b, equal cond:eq(test.t.a, test.t.a), eq(test.t.b, test.t.b)", "├─TableReader(Build) 3.00 root data:TableFullScan", "│ └─TableFullScan 3.00 cop[tikv] table:t1 keep order:false", - "└─TableReader(Probe) 1.00 root data:TableRangeScan", - " └─TableRangeScan 1.00 cop[tikv] table:t2 range: decided by [eq(test.t.a, test.t.a) eq(test.t.b, test.t.b)], keep order:false" + "└─TableReader(Probe) 3.00 root data:TableRangeScan", + " └─TableRangeScan 3.00 cop[tikv] table:t2 range: decided by [eq(test.t.a, test.t.a) eq(test.t.b, test.t.b)], keep order:false" ], "Res": [ "1 111 1.1000000000 11 1 111 1.1000000000 11", @@ -1189,10 +1190,10 @@ "├─TableReader(Build) 3.00 root data:Selection", "│ └─Selection 3.00 cop[tikv] not(isnull(test.t.c))", "│ └─TableFullScan 3.00 cop[tikv] table:t1 keep order:false", - "└─IndexLookUp(Probe) 1.00 root ", - " ├─Selection(Build) 1.00 cop[tikv] not(isnull(test.t.c))", - " │ └─IndexRangeScan 1.00 cop[tikv] table:t2, index:c(c) range: decided by [eq(test.t.c, test.t.c)], keep order:false", - " └─TableRowIDScan(Probe) 1.00 cop[tikv] table:t2 keep order:false" + "└─IndexLookUp(Probe) 3.00 root ", + " ├─Selection(Build) 3.00 cop[tikv] not(isnull(test.t.c))", + " │ └─IndexRangeScan 3.00 cop[tikv] table:t2, index:c(c) range: decided by [eq(test.t.c, test.t.c)], keep order:false", + " └─TableRowIDScan(Probe) 3.00 cop[tikv] table:t2 keep order:false" ], "Res": [ "1 111 1.1000000000 11 1 111 1.1000000000 11", @@ -1205,12 +1206,12 @@ "Plan": [ "IndexMergeJoin 3.00 root left outer join, inner:Projection, outer key:Column#9, inner key:test.t.c", "├─Projection(Build) 3.00 root cast(test.t.a, decimal(10,0) BINARY)->Column#9", - "│ └─TableReader 3.00 root data:TableFullScan", - "│ └─TableFullScan 3.00 cop[tikv] table:t1 keep order:false", - "└─Projection(Probe) 1.00 root test.t.a, test.t.c, test.t.d", - " └─IndexLookUp 1.00 root ", - " ├─IndexRangeScan(Build) 1.00 cop[tikv] table:t2, index:c(c) range: decided by [eq(test.t.c, Column#9)], keep order:true", - " └─TableRowIDScan(Probe) 1.00 cop[tikv] table:t2 keep order:false" + "│ └─IndexReader 3.00 root index:IndexFullScan", + "│ └─IndexFullScan 3.00 cop[tikv] table:t1, index:c(c) keep order:false", + "└─Projection(Probe) 3.00 root test.t.a, test.t.c, test.t.d", + " └─IndexLookUp 3.00 root ", + " ├─IndexRangeScan(Build) 3.00 cop[tikv] table:t2, index:c(c) range: decided by [eq(test.t.c, Column#9)], keep order:true", + " └─TableRowIDScan(Probe) 3.00 cop[tikv] table:t2 keep order:false" ], "Res": [ " ", @@ -1506,16 +1507,16 @@ "│ ├─IndexLookUp(Build) 10.00 root ", "│ │ ├─IndexRangeScan(Build) 10.00 cop[tikv] table:t3, index:keycol(keycol, pad1, pad2) range:[\"c\",\"c\"], keep order:false, stats:pseudo", "│ │ └─TableRowIDScan(Probe) 10.00 cop[tikv] table:t3 keep order:false, stats:pseudo", - "│ └─IndexLookUp(Probe) 1.25 root ", - "│ ├─Selection(Build) 1.81 cop[tikv] not(isnull(test.t1.col3))", - "│ │ └─IndexRangeScan 1.81 cop[tikv] table:t1, index:col2(col2, col3) range: decided by [eq(test.t1.col3, test.t3.pk) eq(test.t1.col2, a)], keep order:false, stats:pseudo", - "│ └─Selection(Probe) 1.25 cop[tikv] ne(test.t1.col1, \"aaaaaa\"), ne(test.t1.col1, \"abcdef\"), not(isnull(test.t1.col1))", - "│ └─TableRowIDScan 1.81 cop[tikv] table:t1 keep order:false, stats:pseudo", - "└─IndexLookUp(Probe) 1.00 root ", - " ├─Selection(Build) 1.00 cop[tikv] ne(test.t2.pk, \"aaaaaa\"), ne(test.t2.pk, \"abcdef\")", - " │ └─IndexRangeScan 1.00 cop[tikv] table:t2, index:PRIMARY(pk) range: decided by [eq(test.t2.pk, test.t1.col1)], keep order:false, stats:pseudo", - " └─Selection(Probe) 1.00 cop[tikv] in(test.t2.col1, \"a\", \"b\")", - " └─TableRowIDScan 1.00 cop[tikv] table:t2 keep order:false, stats:pseudo" + "│ └─IndexLookUp(Probe) 12.50 root ", + "│ ├─Selection(Build) 18.10 cop[tikv] not(isnull(test.t1.col3))", + "│ │ └─IndexRangeScan 18.12 cop[tikv] table:t1, index:col2(col2, col3) range: decided by [eq(test.t1.col3, test.t3.pk) eq(test.t1.col2, a)], keep order:false, stats:pseudo", + "│ └─Selection(Probe) 12.50 cop[tikv] ne(test.t1.col1, \"aaaaaa\"), ne(test.t1.col1, \"abcdef\"), not(isnull(test.t1.col1))", + "│ └─TableRowIDScan 18.10 cop[tikv] table:t1 keep order:false, stats:pseudo", + "└─IndexLookUp(Probe) 12.50 root ", + " ├─Selection(Build) 12.50 cop[tikv] ne(test.t2.pk, \"aaaaaa\"), ne(test.t2.pk, \"abcdef\")", + " │ └─IndexRangeScan 12.50 cop[tikv] table:t2, index:PRIMARY(pk) range: decided by [eq(test.t2.pk, test.t1.col1)], keep order:false, stats:pseudo", + " └─Selection(Probe) 12.50 cop[tikv] in(test.t2.col1, \"a\", \"b\")", + " └─TableRowIDScan 12.50 cop[tikv] table:t2 keep order:false, stats:pseudo" ] }, { @@ -1526,16 +1527,16 @@ "│ ├─IndexLookUp(Build) 10.00 root ", "│ │ ├─IndexRangeScan(Build) 10.00 cop[tikv] table:t3, index:keycol(keycol, pad1, pad2) range:[\"c\",\"c\"], keep order:false, stats:pseudo", "│ │ └─TableRowIDScan(Probe) 10.00 cop[tikv] table:t3 keep order:false, stats:pseudo", - "│ └─IndexLookUp(Probe) 1.25 root ", - "│ ├─Selection(Build) 1.81 cop[tikv] not(isnull(test.t1.col3))", - "│ │ └─IndexRangeScan 1.81 cop[tikv] table:t1, index:col2(col2, col3) range: decided by [eq(test.t1.col3, test.t3.pk) eq(test.t1.col2, a)], keep order:false, stats:pseudo", - "│ └─Selection(Probe) 1.25 cop[tikv] ne(test.t1.col1, \"aaaaaa\"), ne(test.t1.col1, \"abcdef\"), not(isnull(test.t1.col1))", - "│ └─TableRowIDScan 1.81 cop[tikv] table:t1 keep order:false, stats:pseudo", - "└─IndexLookUp(Probe) 1.00 root ", - " ├─Selection(Build) 1.00 cop[tikv] ne(test.t2.pk, \"aaaaaa\"), ne(test.t2.pk, \"abcdef\")", - " │ └─IndexRangeScan 1.00 cop[tikv] table:t2, index:PRIMARY(pk) range: decided by [eq(test.t2.pk, test.t1.col1)], keep order:false, stats:pseudo", - " └─Selection(Probe) 1.00 cop[tikv] in(test.t2.col1, \"a\", \"b\")", - " └─TableRowIDScan 1.00 cop[tikv] table:t2 keep order:false, stats:pseudo" + "│ └─IndexLookUp(Probe) 12.50 root ", + "│ ├─Selection(Build) 18.10 cop[tikv] not(isnull(test.t1.col3))", + "│ │ └─IndexRangeScan 18.12 cop[tikv] table:t1, index:col2(col2, col3) range: decided by [eq(test.t1.col3, test.t3.pk) eq(test.t1.col2, a)], keep order:false, stats:pseudo", + "│ └─Selection(Probe) 12.50 cop[tikv] ne(test.t1.col1, \"aaaaaa\"), ne(test.t1.col1, \"abcdef\"), not(isnull(test.t1.col1))", + "│ └─TableRowIDScan 18.10 cop[tikv] table:t1 keep order:false, stats:pseudo", + "└─IndexLookUp(Probe) 12.50 root ", + " ├─Selection(Build) 12.50 cop[tikv] ne(test.t2.pk, \"aaaaaa\"), ne(test.t2.pk, \"abcdef\")", + " │ └─IndexRangeScan 12.50 cop[tikv] table:t2, index:PRIMARY(pk) range: decided by [eq(test.t2.pk, test.t1.col1)], keep order:false, stats:pseudo", + " └─Selection(Probe) 12.50 cop[tikv] in(test.t2.col1, \"a\", \"b\")", + " └─TableRowIDScan 12.50 cop[tikv] table:t2 keep order:false, stats:pseudo" ] } ] @@ -1663,11 +1664,11 @@ "└─Apply 10000.00 root CARTESIAN semi join", " ├─TableReader(Build) 10000.00 root data:TableFullScan", " │ └─TableFullScan 10000.00 cop[tikv] table:t1 keep order:false, stats:pseudo", - " └─Limit(Probe) 2.00 root offset:1, count:2", - " └─TableReader 3.00 root data:Limit", - " └─Limit 3.00 cop[tikv] offset:0, count:3", - " └─Selection 3.00 cop[tikv] eq(test.test.id, test.test.id)", - " └─TableFullScan 3000.00 cop[tikv] table:t2 keep order:false, stats:pseudo" + " └─Limit(Probe) 20000.00 root offset:1, count:2", + " └─TableReader 30000.00 root data:Limit", + " └─Limit 30000.00 cop[tikv] offset:0, count:3", + " └─Selection 30000.00 cop[tikv] eq(test.test.id, test.test.id)", + " └─TableFullScan 30000000.00 cop[tikv] table:t2 keep order:false, stats:pseudo" ] }, { @@ -1676,12 +1677,12 @@ "Apply 10000.00 root CARTESIAN semi join", "├─TableReader(Build) 10000.00 root data:TableFullScan", "│ └─TableFullScan 10000.00 cop[tikv] table:t keep order:false, stats:pseudo", - "└─Selection(Probe) 2.40 root eq(9, test.t.c)", - " └─Limit 3.00 root offset:0, count:3", - " └─TableReader 3.00 root data:Limit", - " └─Limit 3.00 cop[tikv] offset:0, count:3", - " └─Selection 3.00 cop[tikv] lt(test.t.c, test.t.c)", - " └─TableFullScan 3.75 cop[tikv] table:s keep order:false, stats:pseudo" + "└─Selection(Probe) 24000.00 root eq(9, test.t.c)", + " └─Limit 30000.00 root offset:0, count:3", + " └─TableReader 30000.00 root data:Limit", + " └─Limit 30000.00 cop[tikv] offset:0, count:3", + " └─Selection 30000.00 cop[tikv] lt(test.t.c, test.t.c)", + " └─TableFullScan 37500.00 cop[tikv] table:s keep order:false, stats:pseudo" ] } ] @@ -1707,11 +1708,11 @@ "└─Apply 10000.00 root CARTESIAN left outer join", " ├─TableReader(Build) 10000.00 root data:TableFullScan", " │ └─TableFullScan 10000.00 cop[tikv] table:t1 keep order:false, stats:pseudo", - " └─MaxOneRow(Probe) 1.00 root ", - " └─IndexLookUp 0.02 root ", - " ├─Selection(Build) 0.02 cop[tikv] or(eq(test.t2.b, 1), eq(test.t2.b, 2))", - " │ └─IndexRangeScan 10.00 cop[tikv] table:t2, index:PRIMARY(a, b) range: decided by [eq(test.t2.a, test.t1.a)], keep order:false, stats:pseudo", - " └─TableRowIDScan(Probe) 0.02 cop[tikv] table:t2 keep order:false, stats:pseudo" + " └─MaxOneRow(Probe) 10000.00 root ", + " └─IndexLookUp 200.00 root ", + " ├─Selection(Build) 200.00 cop[tikv] or(eq(test.t2.b, 1), eq(test.t2.b, 2))", + " │ └─IndexRangeScan 100000.00 cop[tikv] table:t2, index:PRIMARY(a, b) range: decided by [eq(test.t2.a, test.t1.a)], keep order:false, stats:pseudo", + " └─TableRowIDScan(Probe) 200.00 cop[tikv] table:t2 keep order:false, stats:pseudo" ] } ] @@ -1722,7 +1723,7 @@ { "SQL": "select count(*) from t join (select t.id, t.value v1 from t join t t1 on t.id = t1.id order by t.value limit 1) v on v.id = t.id and v.v1 = t.value;", "Plan": [ - "StreamAgg 1.00 root funcs:count(1)->Column#10", + "HashAgg 1.00 root funcs:count(1)->Column#10", "└─HashJoin 1.00 root inner join, equal:[eq(test.t.id, test.t.id) eq(test.t.value, test.t.value)]", " ├─Selection(Build) 0.80 root not(isnull(test.t.id)), not(isnull(test.t.value))", " │ └─TopN 1.00 root test.t.value, offset:0, count:1", @@ -1753,21 +1754,21 @@ { "SQL": "select count(1) from s1", "Plan": [ - "StreamAgg 1.00 root funcs:count(1)->Column#1", + "HashAgg 1.00 root funcs:count(1)->Column#1", "└─TableDual 1.00 root rows:1" ] }, { "SQL": "select count(*) from s1", "Plan": [ - "StreamAgg 1.00 root funcs:count(1)->Column#1", + "HashAgg 1.00 root funcs:count(1)->Column#1", "└─TableDual 1.00 root rows:1" ] }, { "SQL": "select sum(1) from s1", "Plan": [ - "StreamAgg 1.00 root funcs:sum(1)->Column#1", + "HashAgg 1.00 root funcs:sum(1)->Column#1", "└─TableDual 1.00 root rows:1" ] }, @@ -1776,9 +1777,9 @@ "Plan": [ "HashAgg 2.00 root group by:Column#3, funcs:firstrow(Column#3)->Column#3", "└─Union 2.00 root ", - " ├─StreamAgg 1.00 root funcs:count(1)->Column#1", + " ├─HashAgg 1.00 root funcs:count(1)->Column#1", " │ └─TableDual 1.00 root rows:1", - " └─StreamAgg 1.00 root funcs:count(1)->Column#2", + " └─HashAgg 1.00 root funcs:count(1)->Column#2", " └─TableDual 1.00 root rows:1" ] } @@ -1833,7 +1834,7 @@ { "SQL": "select * from t1 where a = 3 or a = 5", "Plan": [ - "Batch_Point_Get_5 2.00 12.53 root table:t1 handle:[3 5], keep order:false, desc:false" + "Batch_Point_Get_5 2.00 887.04 root table:t1 handle:[3 5], keep order:false, desc:false" ], "Warnings": [ "Note 1105 handle of t1 is selected since the path only has point ranges" @@ -1842,7 +1843,7 @@ { "SQL": "select f, g from t1 where f = 2 and g in (3, 4, 5)", "Plan": [ - "Batch_Point_Get_5 3.00 11.40 root table:t1, index:f_g(f, g) keep order:false, desc:false" + "Batch_Point_Get_5 3.00 380.16 root table:t1, index:f_g(f, g) keep order:false, desc:false" ], "Warnings": [ "Note 1105 unique index f_g of t1 is selected since the path only has point ranges with single scan" @@ -1851,7 +1852,7 @@ { "SQL": "select * from t1 where c = 1 and (d = 2 or d = 3) and e in (4, 5)", "Plan": [ - "Batch_Point_Get_5 4.00 27.20 root table:t1, index:c_d_e(c, d, e) keep order:false, desc:false" + "Batch_Point_Get_5 4.00 1774.08 root table:t1, index:c_d_e(c, d, e) keep order:false, desc:false" ], "Warnings": [ "Note 1105 unique index c_d_e of t1 is selected since the path only has point ranges with double scan" @@ -1860,8 +1861,8 @@ { "SQL": "select f, g from t1 where f = 2 and g > 3", "Plan": [ - "IndexReader_6 33.33 160.78 root index:IndexRangeScan_5", - "└─IndexRangeScan_5 33.33 1850.00 cop[tikv] table:t1, index:f_g(f, g) range:(2 3,2 +inf], keep order:false, stats:pseudo" + "IndexReader_6 33.33 733.82 root index:IndexRangeScan_5", + "└─IndexRangeScan_5 33.33 6783.33 cop[tikv] table:t1, index:f_g(f, g) range:(2 3,2 +inf], keep order:false, stats:pseudo" ], "Warnings": [ "Note 1105 unique index f_g of t1 is selected since the path only fetches limited number of rows with single scan" @@ -1870,8 +1871,8 @@ { "SQL": "select a, b, c from t2 where a = 1 and b = 2 and c in (1, 2, 3, 4, 5)", "Plan": [ - "Selection_6 0.01 8.60 root eq(test.t2.b, 2), in(test.t2.c, 1, 2, 3, 4, 5)", - "└─Point_Get_5 1.00 5.60 root table:t2, index:idx_a(a) " + "Selection_6 0.01 289.88 root eq(test.t2.b, 2), in(test.t2.c, 1, 2, 3, 4, 5)", + "└─Point_Get_5 1.00 190.08 root table:t2, index:idx_a(a) " ], "Warnings": [ "Note 1105 unique index idx_a of t2 is selected since the path only has point ranges with double scan" @@ -1880,7 +1881,7 @@ { "SQL": "select * from t3 where (a = 1 or a = 3) and b = 'xx'", "Plan": [ - "Batch_Point_Get_5 2.00 7.60 root table:t3, clustered index:PRIMARY(a, b) keep order:false, desc:false" + "Batch_Point_Get_5 2.00 1449.36 root table:t3, clustered index:PRIMARY(a, b) keep order:false, desc:false" ], "Warnings": [ "Note 1105 handle of t3 is selected since the path only has point ranges" @@ -1889,7 +1890,7 @@ { "SQL": "select * from t4 where (a = 1 or a = 3) and b = 'xx'", "Plan": [ - "Batch_Point_Get_5 2.00 10.00 root table:t4, index:PRIMARY(a, b) keep order:false, desc:false" + "Batch_Point_Get_5 2.00 1449.36 root table:t4, index:PRIMARY(a, b) keep order:false, desc:false" ], "Warnings": [ "Note 1105 unique index PRIMARY of t4 is selected since the path only has point ranges with double scan" @@ -1898,7 +1899,7 @@ { "SQL": "select a, b from t3 where (a = 1 or a = 3) and b = 'xx'", "Plan": [ - "Batch_Point_Get_5 2.00 7.60 root table:t3, clustered index:PRIMARY(a, b) keep order:false, desc:false" + "Batch_Point_Get_5 2.00 1322.64 root table:t3, clustered index:PRIMARY(a, b) keep order:false, desc:false" ], "Warnings": [ "Note 1105 handle of t3 is selected since the path only has point ranges" @@ -1907,7 +1908,7 @@ { "SQL": "select a, b from t4 where (a = 1 or a = 3) and b = 'xx'", "Plan": [ - "Batch_Point_Get_5 2.00 7.60 root table:t4, index:PRIMARY(a, b) keep order:false, desc:false" + "Batch_Point_Get_5 2.00 1322.64 root table:t4, index:PRIMARY(a, b) keep order:false, desc:false" ], "Warnings": [ "Note 1105 unique index PRIMARY of t4 is selected since the path only has point ranges with single scan" @@ -1917,7 +1918,7 @@ "SQL": "update t1 set b = 2 where a = 4 or a = 6", "Plan": [ "Update_4 N/A N/A root N/A", - "└─Batch_Point_Get_6 2.00 12.53 root table:t1 handle:[4 6], keep order:false, desc:false" + "└─Batch_Point_Get_6 2.00 887.04 root table:t1 handle:[4 6], keep order:false, desc:false" ], "Warnings": [ "Note 1105 handle of t1 is selected since the path only has point ranges" @@ -1927,8 +1928,8 @@ "SQL": "delete from t1 where f = 2 and g in (3, 4)", "Plan": [ "Delete_4 N/A N/A root N/A", - "└─Selection_7 2.00 9.80 root in(test.t1.g, 3, 4)", - " └─Point_Get_6 1.00 6.80 root table:t1, index:f(f) " + "└─Selection_7 2.00 493.42 root in(test.t1.g, 3, 4)", + " └─Point_Get_6 1.00 443.52 root table:t1, index:f(f) " ], "Warnings": [ "Note 1105 unique index f of t1 is selected since the path only has point ranges with double scan" @@ -1938,8 +1939,8 @@ "SQL": "insert into t3 select a, b, c from t1 where f = 2", "Plan": [ "Insert_1 N/A N/A root N/A", - "└─Projection_6 1.00 25.40 root test.t1.a, test.t1.b, test.t1.c", - " └─Point_Get_7 1.00 6.80 root table:t1, index:f(f) " + "└─Projection_6 1.00 253.74 root test.t1.a, test.t1.b, test.t1.c", + " └─Point_Get_7 1.00 253.44 root table:t1, index:f(f) " ], "Warnings": [ "Note 1105 unique index f of t1 is selected since the path only has point ranges with double scan" @@ -1949,7 +1950,7 @@ "SQL": "replace into t3 select a, b, c from t1 where a = 3", "Plan": [ "Insert_1 N/A N/A root N/A", - "└─Point_Get_7 1.00 6.27 root table:t1 handle:3" + "└─Point_Get_7 1.00 190.08 root table:t1 handle:3" ], "Warnings": [ "Note 1105 handle of t1 is selected since the path only has point ranges" @@ -1963,21 +1964,20 @@ { "SQL": "select * from t where a > 1 order by f", "Plan": [ - "IndexLookUp_14 3333.33 136747.00 root ", - "├─Selection_13(Build) 3333.33 585000.00 cop[tikv] gt(test.t.a, 1)", - "│ └─IndexFullScan_11 10000.00 555000.00 cop[tikv] table:t, index:f(f) keep order:true, stats:pseudo", - "└─TableRowIDScan_12(Probe) 3333.33 370000.00 cop[tikv] table:t keep order:false, stats:pseudo" + "Sort_5 3333.33 2146348.14 root test.t.f", + "└─TableReader_9 3333.33 160128.74 root data:TableRangeScan_8", + " └─TableRangeScan_8 3333.33 923531.15 cop[tikv] table:t range:(1,+inf], keep order:false, stats:pseudo" ], "Warnings": [ - "Note 1105 [t,f,f_g] remain after pruning paths for t given Prop{SortItems: [{test.t.f asc}], TaskTp: rootTask}" + "Note 1105 [t] remain after pruning paths for t given Prop{SortItems: [], TaskTp: rootTask}" ] }, { "SQL": "select * from t where f > 1", "Plan": [ - "IndexLookUp_10 3333.33 86674.83 root ", - "├─IndexRangeScan_8(Build) 3333.33 185000.00 cop[tikv] table:t, index:f(f) range:(1,+inf], keep order:false, stats:pseudo", - "└─TableRowIDScan_9(Probe) 3333.33 370000.00 cop[tikv] table:t keep order:false, stats:pseudo" + "TableReader_7 3333.33 316532.90 root data:Selection_6", + "└─Selection_6 3333.33 3269593.45 cop[tikv] gt(test.t.f, 1)", + " └─TableFullScan_5 10000.00 2770593.45 cop[tikv] table:t keep order:false, stats:pseudo" ], "Warnings": [ "Note 1105 [t,f,f_g] remain after pruning paths for t given Prop{SortItems: [], TaskTp: rootTask}" @@ -1986,8 +1986,8 @@ { "SQL": "select f from t where f > 1", "Plan": [ - "IndexReader_6 3333.33 11140.22 root index:IndexRangeScan_5", - "└─IndexRangeScan_5 3333.33 140000.00 cop[tikv] table:t, index:f(f) range:(1,+inf], keep order:false, stats:pseudo" + "IndexReader_6 3333.33 50257.78 root index:IndexRangeScan_5", + "└─IndexRangeScan_5 3333.33 542666.67 cop[tikv] table:t, index:f(f) range:(1,+inf], keep order:false, stats:pseudo" ], "Warnings": [ "Note 1105 [f,f_g] remain after pruning paths for t given Prop{SortItems: [], TaskTp: rootTask}" @@ -1996,10 +1996,10 @@ { "SQL": "select * from t where f > 3 and g = 5", "Plan": [ - "IndexLookUp_15 3.33 206.74 root ", - "├─IndexRangeScan_12(Build) 10.00 570.00 cop[tikv] table:t, index:g(g) range:[5,5], keep order:false, stats:pseudo", - "└─Selection_14(Probe) 3.33 1140.00 cop[tikv] gt(test.t.f, 3)", - " └─TableRowIDScan_13 10.00 1110.00 cop[tikv] table:t keep order:false, stats:pseudo" + "IndexLookUp_15 3.33 19551.99 root ", + "├─IndexRangeScan_12(Build) 10.00 2035.00 cop[tikv] table:t, index:g(g) range:[5,5], keep order:false, stats:pseudo", + "└─Selection_14(Probe) 3.33 3269.59 cop[tikv] gt(test.t.f, 3)", + " └─TableRowIDScan_13 10.00 2770.59 cop[tikv] table:t keep order:false, stats:pseudo" ], "Warnings": [ "Note 1105 [t,f_g,g] remain after pruning paths for t given Prop{SortItems: [], TaskTp: rootTask}" @@ -2008,10 +2008,10 @@ { "SQL": "select * from t where g = 5 order by f", "Plan": [ - "Sort_5 10.00 353.68 root test.t.f", - "└─IndexLookUp_13 10.00 230.01 root ", - " ├─IndexRangeScan_11(Build) 10.00 570.00 cop[tikv] table:t, index:g(g) range:[5,5], keep order:false, stats:pseudo", - " └─TableRowIDScan_12(Probe) 10.00 1110.00 cop[tikv] table:t keep order:false, stats:pseudo" + "Sort_5 10.00 21321.97 root test.t.f", + "└─IndexLookUp_13 10.00 19545.34 root ", + " ├─IndexRangeScan_11(Build) 10.00 2035.00 cop[tikv] table:t, index:g(g) range:[5,5], keep order:false, stats:pseudo", + " └─TableRowIDScan_12(Probe) 10.00 2770.59 cop[tikv] table:t keep order:false, stats:pseudo" ], "Warnings": [ "Note 1105 [t,g] remain after pruning paths for t given Prop{SortItems: [], TaskTp: rootTask}" @@ -2020,10 +2020,10 @@ { "SQL": "select * from t where d = 3 order by c, e", "Plan": [ - "IndexLookUp_15 10.00 57222.78 root ", - "├─Selection_14(Build) 10.00 855000.00 cop[tikv] eq(test.t.d, 3)", - "│ └─IndexFullScan_12 10000.00 825000.00 cop[tikv] table:t, index:c_d_e(c, d, e) keep order:true, stats:pseudo", - "└─TableRowIDScan_13(Probe) 10.00 1110.00 cop[tikv] table:t keep order:false, stats:pseudo" + "IndexLookUp_15 10.00 215519.24 root ", + "├─Selection_14(Build) 10.00 2941000.00 cop[tikv] eq(test.t.d, 3)", + "│ └─IndexFullScan_12 10000.00 2442000.00 cop[tikv] table:t, index:c_d_e(c, d, e) keep order:true, stats:pseudo", + "└─TableRowIDScan_13(Probe) 10.00 2770.59 cop[tikv] table:t keep order:false, stats:pseudo" ], "Warnings": [ "Note 1105 [t,c_d_e] remain after pruning paths for t given Prop{SortItems: [{test.t.c asc} {test.t.e asc}], TaskTp: rootTask}" @@ -2042,31 +2042,31 @@ { "SQL": "explain format = 'verbose' select * from t where b > 5", "Plan": [ - "TableReader_7 3.00 19.21 root data:Selection_6", - "└─Selection_6 3.00 195.00 cop[tikv] gt(test.t.b, 5)", - " └─TableFullScan_5 5.00 180.00 cop[tikv] table:t keep order:false" + "TableReader_7 3.00 130.42 root data:Selection_6", + "└─Selection_6 3.00 1386.04 cop[tikv] gt(test.t.b, 5)", + " └─TableFullScan_5 5.00 1136.54 cop[tikv] table:t keep order:false" ], "Warnings": null }, { "SQL": "explain format = 'verbose' select * from t where b = 6 order by a limit 1", "Plan": [ - "Limit_11 0.00 14.33 root offset:0, count:1", - "└─TableReader_24 0.00 14.33 root data:Limit_23", - " └─Limit_23 0.00 195.00 cop[tikv] offset:0, count:1", - " └─Selection_22 0.00 195.00 cop[tikv] eq(test.t.b, 6)", - " └─TableFullScan_21 5.00 180.00 cop[tikv] table:t keep order:true" + "Limit_11 0.00 98.74 root offset:0, count:1", + "└─TableReader_24 0.00 98.74 root data:Limit_23", + " └─Limit_23 0.00 1386.04 cop[tikv] offset:0, count:1", + " └─Selection_22 0.00 1386.04 cop[tikv] eq(test.t.b, 6)", + " └─TableFullScan_21 5.00 1136.54 cop[tikv] table:t keep order:true" ], "Warnings": null }, { "SQL": "explain format = 'verbose' select * from t where b = 6 limit 1", "Plan": [ - "Limit_8 0.00 14.33 root offset:0, count:1", - "└─TableReader_13 0.00 14.33 root data:Limit_12", - " └─Limit_12 0.00 195.00 cop[tikv] offset:0, count:1", - " └─Selection_11 0.00 195.00 cop[tikv] eq(test.t.b, 6)", - " └─TableFullScan_10 5.00 180.00 cop[tikv] table:t keep order:false" + "Limit_8 0.00 98.74 root offset:0, count:1", + "└─TableReader_13 0.00 98.74 root data:Limit_12", + " └─Limit_12 0.00 1386.04 cop[tikv] offset:0, count:1", + " └─Selection_11 0.00 1386.04 cop[tikv] eq(test.t.b, 6)", + " └─TableFullScan_10 5.00 1136.54 cop[tikv] table:t keep order:false" ], "Warnings": null }, @@ -2078,9 +2078,9 @@ { "SQL": "explain format = 'verbose' select * from t where b > 5", "Plan": [ - "IndexLookUp_7 3.00 57.91 root ", - "├─IndexRangeScan_5(Build) 3.00 171.00 cop[tikv] table:t, index:idx_b(b) range:(5,+inf], keep order:false", - "└─TableRowIDScan_6(Probe) 3.00 108.00 cop[tikv] table:t keep order:false" + "IndexLookUp_7 3.00 5856.46 root ", + "├─IndexRangeScan_5(Build) 3.00 610.50 cop[tikv] table:t, index:idx_b(b) range:(5,+inf], keep order:false", + "└─TableRowIDScan_6(Probe) 3.00 681.92 cop[tikv] table:t keep order:false" ], "Warnings": [ "Note 1105 [idx_b] remain after pruning paths for t given Prop{SortItems: [], TaskTp: rootTask}" @@ -2089,11 +2089,11 @@ { "SQL": "explain format = 'verbose' select * from t where b = 6 order by a limit 1", "Plan": [ - "TopN_9 0.00 19.34 root test.t.a, offset:0, count:1", - "└─IndexLookUp_16 0.00 19.33 root ", - " ├─TopN_15(Build) 0.00 0.00 cop[tikv] test.t.a, offset:0, count:1", - " │ └─IndexRangeScan_13 0.00 0.00 cop[tikv] table:t, index:idx_b(b) range:[6,6], keep order:false", - " └─TableRowIDScan_14(Probe) 0.00 0.00 cop[tikv] table:t keep order:false" + "TopN_9 0.00 1956.63 root test.t.a, offset:0, count:1", + "└─IndexLookUp_16 0.00 1951.83 root ", + " ├─TopN_15(Build) 0.00 206.70 cop[tikv] test.t.a, offset:0, count:1", + " │ └─IndexRangeScan_13 0.00 203.50 cop[tikv] table:t, index:idx_b(b) range:[6,6], keep order:false", + " └─TableRowIDScan_14(Probe) 0.00 186.61 cop[tikv] table:t keep order:false" ], "Warnings": [ "Note 1105 [idx_b] remain after pruning paths for t given Prop{SortItems: [], TaskTp: copDoubleReadTask}" @@ -2102,10 +2102,10 @@ { "SQL": "explain format = 'verbose' select * from t where b = 6 limit 1", "Plan": [ - "IndexLookUp_13 0.00 19.33 root limit embedded(offset:0, count:1)", - "├─Limit_12(Build) 0.00 0.00 cop[tikv] offset:0, count:1", - "│ └─IndexRangeScan_10 0.00 0.00 cop[tikv] table:t, index:idx_b(b) range:[6,6], keep order:false", - "└─TableRowIDScan_11(Probe) 0.00 0.00 cop[tikv] table:t keep order:false" + "IndexLookUp_13 0.00 1170.97 root limit embedded(offset:0, count:1)", + "├─Limit_12(Build) 0.00 203.50 cop[tikv] offset:0, count:1", + "│ └─IndexRangeScan_10 0.00 203.50 cop[tikv] table:t, index:idx_b(b) range:[6,6], keep order:false", + "└─TableRowIDScan_11(Probe) 0.00 186.61 cop[tikv] table:t keep order:false" ], "Warnings": [ "Note 1105 [idx_b] remain after pruning paths for t given Prop{SortItems: [], TaskTp: copDoubleReadTask}" @@ -2301,14 +2301,14 @@ " └─Apply 10000.00 root CARTESIAN inner join, other cond:or(and(lt(test.t2.c1, Column#8), if(ne(Column#9, 0), NULL, 1)), or(eq(Column#10, 0), if(isnull(test.t2.c1), NULL, 0)))", " ├─TableReader(Build) 10000.00 root data:TableFullScan", " │ └─TableFullScan 10000.00 cop[tikv] table:t2 keep order:false, stats:pseudo", - " └─StreamAgg(Probe) 1.00 root funcs:min(test.t1.c1)->Column#8, funcs:sum(0)->Column#9, funcs:count(1)->Column#10", - " └─IndexMerge 0.01 root ", - " ├─Selection(Build) 1.00 cop[tikv] eq(10, test.t2.c3)", - " │ └─TableRangeScan 1.00 cop[tikv] table:t1 range:[10,10], keep order:false, stats:pseudo", - " ├─Selection(Build) 8.00 cop[tikv] eq(1, test.t2.c3)", - " │ └─IndexRangeScan 10.00 cop[tikv] table:t1, index:c2(c2) range:[1,1], keep order:false, stats:pseudo", - " └─Selection(Probe) 0.01 cop[tikv] or(and(eq(test.t1.c1, 10), eq(10, test.t2.c3)), and(eq(test.t1.c2, 1), eq(1, test.t2.c3))), substring(cast(test.t1.c3, var_string(20)), 10)", - " └─TableRowIDScan 9.00 cop[tikv] table:t1 keep order:false, stats:pseudo" + " └─StreamAgg(Probe) 10000.00 root funcs:min(test.t1.c1)->Column#8, funcs:sum(0)->Column#9, funcs:count(1)->Column#10", + " └─IndexMerge 63.35 root ", + " ├─Selection(Build) 10000.00 cop[tikv] eq(10, test.t2.c3)", + " │ └─TableRangeScan 10000.00 cop[tikv] table:t1 range:[10,10], keep order:false, stats:pseudo", + " ├─Selection(Build) 80000.00 cop[tikv] eq(1, test.t2.c3)", + " │ └─IndexRangeScan 100000.00 cop[tikv] table:t1, index:c2(c2) range:[1,1], keep order:false, stats:pseudo", + " └─Selection(Probe) 63.35 cop[tikv] or(and(eq(test.t1.c1, 10), eq(10, test.t2.c3)), and(eq(test.t1.c2, 1), eq(1, test.t2.c3))), substring(cast(test.t1.c3, var_string(20)), 10)", + " └─TableRowIDScan 89992.00 cop[tikv] table:t1 keep order:false, stats:pseudo" ], "Res": [ "1 1 1", @@ -2323,14 +2323,14 @@ " └─Apply 10000.00 root CARTESIAN inner join, other cond:or(and(lt(test.t2.c1, Column#8), if(ne(Column#9, 0), NULL, 1)), or(eq(Column#10, 0), if(isnull(test.t2.c1), NULL, 0)))", " ├─TableReader(Build) 10000.00 root data:TableFullScan", " │ └─TableFullScan 10000.00 cop[tikv] table:t2 keep order:false, stats:pseudo", - " └─StreamAgg(Probe) 1.00 root funcs:min(test.t1.c1)->Column#8, funcs:sum(0)->Column#9, funcs:count(1)->Column#10", - " └─IndexMerge 0.01 root ", - " ├─Selection(Build) 1.00 cop[tikv] eq(10, test.t2.c3)", - " │ └─TableRangeScan 1.00 cop[tikv] table:t1 range:[10,10], keep order:false, stats:pseudo", - " ├─Selection(Build) 8.00 cop[tikv] eq(1, test.t2.c3)", - " │ └─IndexRangeScan 10.00 cop[tikv] table:t1, index:c2(c2) range:[1,1], keep order:false, stats:pseudo", - " └─Selection(Probe) 0.01 cop[tikv] or(and(eq(test.t1.c1, 10), eq(10, test.t2.c3)), and(eq(test.t1.c2, 1), eq(1, test.t2.c3))), reverse(cast(test.t1.c3, var_string(20)))", - " └─TableRowIDScan 9.00 cop[tikv] table:t1 keep order:false, stats:pseudo" + " └─StreamAgg(Probe) 10000.00 root funcs:min(test.t1.c1)->Column#8, funcs:sum(0)->Column#9, funcs:count(1)->Column#10", + " └─IndexMerge 63.35 root ", + " ├─Selection(Build) 10000.00 cop[tikv] eq(10, test.t2.c3)", + " │ └─TableRangeScan 10000.00 cop[tikv] table:t1 range:[10,10], keep order:false, stats:pseudo", + " ├─Selection(Build) 80000.00 cop[tikv] eq(1, test.t2.c3)", + " │ └─IndexRangeScan 100000.00 cop[tikv] table:t1, index:c2(c2) range:[1,1], keep order:false, stats:pseudo", + " └─Selection(Probe) 63.35 cop[tikv] or(and(eq(test.t1.c1, 10), eq(10, test.t2.c3)), and(eq(test.t1.c2, 1), eq(1, test.t2.c3))), reverse(cast(test.t1.c3, var_string(20)))", + " └─TableRowIDScan 89992.00 cop[tikv] table:t1 keep order:false, stats:pseudo" ], "Res": [ "2 2 2" @@ -2344,14 +2344,14 @@ " └─Apply 10000.00 root CARTESIAN inner join, other cond:or(and(lt(test.t2.c1, Column#8), if(ne(Column#9, 0), NULL, 1)), or(eq(Column#10, 0), if(isnull(test.t2.c1), NULL, 0)))", " ├─TableReader(Build) 10000.00 root data:TableFullScan", " │ └─TableFullScan 10000.00 cop[tikv] table:t2 keep order:false, stats:pseudo", - " └─StreamAgg(Probe) 1.00 root funcs:min(test.t1.c1)->Column#8, funcs:sum(0)->Column#9, funcs:count(1)->Column#10", - " └─IndexMerge 3.03 root ", - " ├─Selection(Build) 3.33 cop[tikv] eq(test.t1.c1, test.t2.c3)", - " │ └─TableRangeScan 3333.33 cop[tikv] table:t1 range:[10,+inf], keep order:false, stats:pseudo", - " ├─Selection(Build) 8.00 cop[tikv] eq(1, test.t2.c3)", - " │ └─IndexRangeScan 10.00 cop[tikv] table:t1, index:c2(c2) range:[1,1], keep order:false, stats:pseudo", - " └─Selection(Probe) 3.03 cop[tikv] or(and(ge(test.t1.c1, 10), eq(test.t1.c1, test.t2.c3)), and(eq(test.t1.c2, 1), eq(1, test.t2.c3))), substring(cast(test.t1.c3, var_string(20)), 10)", - " └─TableRowIDScan 3338.67 cop[tikv] table:t1 keep order:false, stats:pseudo" + " └─HashAgg(Probe) 10000.00 root funcs:min(test.t1.c1)->Column#8, funcs:sum(0)->Column#9, funcs:count(1)->Column#10", + " └─IndexMerge 30263.46 root ", + " ├─Selection(Build) 33333.33 cop[tikv] eq(test.t1.c1, test.t2.c3)", + " │ └─TableRangeScan 33333333.33 cop[tikv] table:t1 range:[10,+inf], keep order:false, stats:pseudo", + " ├─Selection(Build) 80000.00 cop[tikv] eq(1, test.t2.c3)", + " │ └─IndexRangeScan 100000.00 cop[tikv] table:t1, index:c2(c2) range:[1,1], keep order:false, stats:pseudo", + " └─Selection(Probe) 30263.46 cop[tikv] or(and(ge(test.t1.c1, 10), eq(test.t1.c1, test.t2.c3)), and(eq(test.t1.c2, 1), eq(1, test.t2.c3))), substring(cast(test.t1.c3, var_string(20)), 10)", + " └─TableRowIDScan 33386666.67 cop[tikv] table:t1 keep order:false, stats:pseudo" ], "Res": [ "1 1 1", @@ -2365,15 +2365,15 @@ "└─Apply 10000.00 root CARTESIAN inner join, other cond:or(and(lt(test.tt1.c_decimal, Column#9), if(ne(Column#10, 0), NULL, 1)), or(eq(Column#11, 0), if(isnull(test.tt1.c_decimal), NULL, 0)))", " ├─TableReader(Build) 10000.00 root data:TableFullScan", " │ └─TableFullScan 10000.00 cop[tikv] table:tt1 keep order:true, stats:pseudo", - " └─StreamAgg(Probe) 1.00 root funcs:min(Column#14)->Column#9, funcs:sum(Column#15)->Column#10, funcs:count(1)->Column#11", - " └─Projection 0.00 root test.tt2.c_decimal, cast(isnull(test.tt2.c_decimal), decimal(20,0) BINARY)->Column#15", - " └─IndexMerge 0.00 root ", - " ├─Selection(Build) 0.00 cop[tikv] eq(test.tt1.c_int, test.tt2.c_int)", - " │ └─IndexRangeScan 1.00 cop[tikv] table:tt2, index:c_decimal(c_decimal) range:[9.060000,9.060000], keep order:false, stats:pseudo", - " ├─Selection(Build) 3.32 cop[tikv] eq(test.tt1.c_int, test.tt2.c_int)", - " │ └─IndexRangeScan 3323.33 cop[tikv] table:tt2, index:c_str(c_str) range:[-inf,\"interesting shtern\"], keep order:false, stats:pseudo", - " └─Selection(Probe) 0.00 cop[tikv] or(and(eq(test.tt1.c_int, test.tt2.c_int), and(gt(test.tt1.c_datetime, test.tt2.c_datetime), eq(test.tt2.c_decimal, 9.060))), and(le(test.tt2.c_str, \"interesting shtern\"), eq(test.tt1.c_int, test.tt2.c_int)))", - " └─TableRowIDScan 3.32 cop[tikv] table:tt2 keep order:false, stats:pseudo" + " └─StreamAgg(Probe) 10000.00 root funcs:min(Column#14)->Column#9, funcs:sum(Column#15)->Column#10, funcs:count(1)->Column#11", + " └─Projection 11.05 root test.tt2.c_decimal, cast(isnull(test.tt2.c_decimal), decimal(20,0) BINARY)->Column#15", + " └─IndexMerge 11.05 root ", + " ├─Selection(Build) 10.00 cop[tikv] eq(test.tt1.c_int, test.tt2.c_int)", + " │ └─IndexRangeScan 10000.00 cop[tikv] table:tt2, index:c_decimal(c_decimal) range:[9.060000,9.060000], keep order:false, stats:pseudo", + " ├─Selection(Build) 33233.33 cop[tikv] eq(test.tt1.c_int, test.tt2.c_int)", + " │ └─IndexRangeScan 33233333.33 cop[tikv] table:tt2, index:c_str(c_str) range:[-inf,\"interesting shtern\"], keep order:false, stats:pseudo", + " └─Selection(Probe) 11.05 cop[tikv] or(and(eq(test.tt1.c_int, test.tt2.c_int), and(gt(test.tt1.c_datetime, test.tt2.c_datetime), eq(test.tt2.c_decimal, 9.060))), and(le(test.tt2.c_str, \"interesting shtern\"), eq(test.tt1.c_int, test.tt2.c_int)))", + " └─TableRowIDScan 33243.33 cop[tikv] table:tt2 keep order:false, stats:pseudo" ], "Res": [ "7", @@ -2388,15 +2388,15 @@ "└─Apply 10000.00 root CARTESIAN inner join, other cond:or(and(gt(test.tt1.c_decimal, Column#9), if(ne(Column#10, 0), NULL, 1)), or(eq(Column#11, 0), if(isnull(test.tt1.c_decimal), NULL, 0)))", " ├─TableReader(Build) 10000.00 root data:TableFullScan", " │ └─TableFullScan 10000.00 cop[tikv] table:tt1 keep order:true, stats:pseudo", - " └─StreamAgg(Probe) 1.00 root funcs:max(Column#14)->Column#9, funcs:sum(Column#15)->Column#10, funcs:count(1)->Column#11", - " └─Projection 0.00 root test.tt2.c_decimal, cast(isnull(test.tt2.c_decimal), decimal(20,0) BINARY)->Column#15", - " └─IndexMerge 0.00 root ", - " ├─Selection(Build) 1.00 cop[tikv] lt(7, test.tt1.c_decimal)", - " │ └─TableRangeScan 1.00 cop[tikv] table:tt2 range:[7,7], keep order:false, stats:pseudo", - " ├─Selection(Build) 3.33 cop[tikv] eq(test.tt1.c_int, test.tt2.c_int)", - " │ └─IndexRangeScan 3333.33 cop[tikv] table:tt2, index:c_str(c_str) range:[\"zzzzzzzzzzzzzzzzzzz\",+inf], keep order:false, stats:pseudo", - " └─Selection(Probe) 0.00 cop[tikv] or(and(eq(test.tt2.c_int, 7), lt(7, test.tt1.c_decimal)), and(ge(test.tt2.c_str, \"zzzzzzzzzzzzzzzzzzz\"), eq(test.tt1.c_int, test.tt2.c_int)))", - " └─TableRowIDScan 4.33 cop[tikv] table:tt2 keep order:false, stats:pseudo" + " └─StreamAgg(Probe) 10000.00 root funcs:max(Column#14)->Column#9, funcs:sum(Column#15)->Column#10, funcs:count(1)->Column#11", + " └─Projection 17.91 root test.tt2.c_decimal, cast(isnull(test.tt2.c_decimal), decimal(20,0) BINARY)->Column#15", + " └─IndexMerge 17.91 root ", + " ├─Selection(Build) 10000.00 cop[tikv] lt(7, test.tt1.c_decimal)", + " │ └─TableRangeScan 10000.00 cop[tikv] table:tt2 range:[7,7], keep order:false, stats:pseudo", + " ├─Selection(Build) 33333.33 cop[tikv] eq(test.tt1.c_int, test.tt2.c_int)", + " │ └─IndexRangeScan 33333333.33 cop[tikv] table:tt2, index:c_str(c_str) range:[\"zzzzzzzzzzzzzzzzzzz\",+inf], keep order:false, stats:pseudo", + " └─Selection(Probe) 17.91 cop[tikv] or(and(eq(test.tt2.c_int, 7), lt(7, test.tt1.c_decimal)), and(ge(test.tt2.c_str, \"zzzzzzzzzzzzzzzzzzz\"), eq(test.tt1.c_int, test.tt2.c_int)))", + " └─TableRowIDScan 43330.00 cop[tikv] table:tt2 keep order:false, stats:pseudo" ], "Res": [ "6", @@ -2413,9 +2413,9 @@ { "SQL": "explain format = 'brief' select count(*) from t31240;", "Plan": [ - "StreamAgg 1.00 root funcs:count(Column#6)->Column#4", - "└─TableReader 1.00 root data:StreamAgg", - " └─StreamAgg 1.00 batchCop[tiflash] funcs:count(1)->Column#6", + "HashAgg 1.00 root funcs:count(Column#5)->Column#4", + "└─TableReader 1.00 root data:HashAgg", + " └─HashAgg 1.00 batchCop[tiflash] funcs:count(1)->Column#5", " └─TableFullScan 10000.00 batchCop[tiflash] table:t31240 keep order:false, stats:pseudo" ] }, @@ -2426,9 +2426,9 @@ { "SQL": "explain format = 'brief' select count(*) from t31240;", "Plan": [ - "StreamAgg 1.00 root funcs:count(Column#6)->Column#4", - "└─TableReader 1.00 root data:StreamAgg", - " └─StreamAgg 1.00 batchCop[tiflash] funcs:count(1)->Column#6", + "HashAgg 1.00 root funcs:count(Column#5)->Column#4", + "└─TableReader 1.00 root data:HashAgg", + " └─HashAgg 1.00 batchCop[tiflash] funcs:count(1)->Column#5", " └─TableFullScan 10000.00 batchCop[tiflash] table:t31240 keep order:false, stats:pseudo" ] } @@ -2485,172 +2485,173 @@ { "SQL": "explain format = 'verbose' select count(*) from t3", "Plan": [ - "StreamAgg_20 1.00 12.68 root funcs:count(Column#9)->Column#4", - "└─TableReader_21 1.00 9.68 root data:StreamAgg_8", - " └─StreamAgg_8 1.00 117.00 cop[tikv] funcs:count(1)->Column#9", - " └─TableFullScan_18 3.00 108.00 cop[tikv] table:t3 keep order:false" + "HashAgg_12 1.00 77.75 root funcs:count(Column#6)->Column#4", + "└─IndexReader_13 1.00 47.49 root index:HashAgg_5", + " └─HashAgg_5 1.00 680.68 cop[tikv] funcs:count(1)->Column#6", + " └─IndexFullScan_11 3.00 610.50 cop[tikv] table:t3, index:c(b) keep order:false" ] }, { "SQL": "explain format = 'verbose' select count(*) from t2", "Plan": [ - "StreamAgg_26 1.00 8.18 root funcs:count(Column#7)->Column#4", - "└─TableReader_27 1.00 5.17 root data:StreamAgg_10", - " └─StreamAgg_10 1.00 49.50 batchCop[tiflash] funcs:count(1)->Column#7", - " └─TableFullScan_25 3.00 40.50 batchCop[tiflash] table:t2 keep order:false" + "HashAgg_14 1.00 82.51 root funcs:count(Column#5)->Column#4", + "└─TableReader_15 1.00 52.25 root data:HashAgg_6", + " └─HashAgg_6 1.00 752.10 cop[tikv] funcs:count(1)->Column#5", + " └─TableFullScan_12 3.00 681.92 cop[tikv] table:t2 keep order:false" ] }, { "SQL": "explain format = 'verbose' select * from t3 order by a", "Plan": [ - "Sort_4 3.00 45.85 root test.t3.a", - "└─TableReader_8 3.00 11.78 root data:TableFullScan_7", - " └─TableFullScan_7 3.00 108.00 cop[tikv] table:t3 keep order:false" + "Sort_4 3.00 318.27 root test.t3.a", + "└─TableReader_8 3.00 70.81 root data:TableFullScan_7", + " └─TableFullScan_7 3.00 681.92 cop[tikv] table:t3 keep order:false" ] }, { "SQL": "explain format = 'verbose' select * from t3 order by b", "Plan": [ - "Sort_4 3.00 45.85 root test.t3.b", - "└─TableReader_8 3.00 11.78 root data:TableFullScan_7", - " └─TableFullScan_7 3.00 108.00 cop[tikv] table:t3 keep order:false" + "Sort_4 3.00 318.27 root test.t3.b", + "└─TableReader_8 3.00 70.81 root data:TableFullScan_7", + " └─TableFullScan_7 3.00 681.92 cop[tikv] table:t3 keep order:false" ] }, { "SQL": "explain format = 'verbose' select * from t3 order by a limit 1", "Plan": [ - "TopN_7 1.00 13.22 root test.t3.a, offset:0, count:1", - "└─TableReader_16 1.00 10.22 root data:TopN_15", - " └─TopN_15 1.00 117.00 cop[tikv] test.t3.a, offset:0, count:1", - " └─TableFullScan_14 3.00 108.00 cop[tikv] table:t3 keep order:false" + "TopN_7 1.00 53.10 root test.t3.a, offset:0, count:1", + "└─TableReader_16 1.00 49.90 root data:TopN_15", + " └─TopN_15 1.00 685.12 cop[tikv] test.t3.a, offset:0, count:1", + " └─TableFullScan_14 3.00 681.92 cop[tikv] table:t3 keep order:false" ] }, { "SQL": "explain format = 'verbose' select * from t3 order by b limit 1", "Plan": [ - "TopN_7 1.00 13.22 root test.t3.b, offset:0, count:1", - "└─TableReader_16 1.00 10.22 root data:TopN_15", - " └─TopN_15 1.00 117.00 cop[tikv] test.t3.b, offset:0, count:1", - " └─TableFullScan_14 3.00 108.00 cop[tikv] table:t3 keep order:false" + "TopN_7 1.00 53.10 root test.t3.b, offset:0, count:1", + "└─TableReader_16 1.00 49.90 root data:TopN_15", + " └─TopN_15 1.00 685.12 cop[tikv] test.t3.b, offset:0, count:1", + " └─TableFullScan_14 3.00 681.92 cop[tikv] table:t3 keep order:false" ] }, { "SQL": "explain format = 'verbose' select count(*) from t2 group by a", "Plan": [ - "TableReader_44 3.00 4.98 root data:ExchangeSender_43", - "└─ExchangeSender_43 3.00 96.60 mpp[tiflash] ExchangeType: PassThrough", - " └─Projection_38 3.00 76.80 mpp[tiflash] Column#4", - " └─HashAgg_36 3.00 57.00 mpp[tiflash] group by:test.t2.a, funcs:count(1)->Column#4", - " └─ExchangeReceiver_22 3.00 48.00 mpp[tiflash] ", - " └─ExchangeSender_21 3.00 45.00 mpp[tiflash] ExchangeType: HashPartition, Hash Cols: [name: test.t2.a, collate: binary]", - " └─TableFullScan_20 3.00 45.00 mpp[tiflash] table:t2 keep order:false" + "HashAgg_8 3.00 209.09 root group by:test.t2.a, funcs:count(1)->Column#4", + "└─TableReader_17 3.00 58.13 root data:TableFullScan_16", + " └─TableFullScan_16 3.00 681.92 cop[tikv] table:t2 keep order:false" ] }, { "SQL": "explain format = 'verbose' select count(*) from t3 where b = 0", "Plan": [ - "StreamAgg_10 1.00 1.33 root funcs:count(1)->Column#4", - "└─IndexReader_15 0.00 1.33 root index:IndexRangeScan_14", - " └─IndexRangeScan_14 0.00 0.00 cop[tikv] table:t3, index:c(b) range:[0,0], keep order:false" + "HashAgg_12 1.00 45.24 root funcs:count(Column#5)->Column#4", + "└─IndexReader_13 1.00 14.98 root index:HashAgg_6", + " └─HashAgg_6 1.00 193.06 cop[tikv] funcs:count(1)->Column#5", + " └─IndexRangeScan_11 0.00 162.80 cop[tikv] table:t3, index:c(b) range:[0,0], keep order:false" ] }, { "SQL": "explain format = 'verbose' select /*+ use_index(t3, c) */ count(a) from t3 where b = 0", "Plan": [ - "StreamAgg_10 1.00 19.33 root funcs:count(test.t3.a)->Column#4", - "└─IndexLookUp_17 0.00 19.33 root ", - " ├─IndexRangeScan_15(Build) 0.00 0.00 cop[tikv] table:t3, index:c(b) range:[0,0], keep order:false", - " └─TableRowIDScan_16(Probe) 0.00 0.00 cop[tikv] table:t3 keep order:false" + "HashAgg_13 1.00 1981.96 root funcs:count(Column#6)->Column#4", + "└─IndexLookUp_14 1.00 1951.70 root ", + " ├─IndexRangeScan_11(Build) 0.00 203.50 cop[tikv] table:t3, index:c(b) range:[0,0], keep order:false", + " └─HashAgg_7(Probe) 1.00 257.57 cop[tikv] funcs:count(test.t3.a)->Column#6", + " └─TableRowIDScan_12 0.00 227.31 cop[tikv] table:t3 keep order:false" ] }, { "SQL": "explain format = 'verbose' select count(*) from t2 where a = 0", "Plan": [ - "StreamAgg_12 1.00 4.93 root funcs:count(1)->Column#4", - "└─TableReader_24 0.00 4.93 root data:Selection_23", - " └─Selection_23 0.00 54.00 cop[tiflash] eq(test.t2.a, 0)", - " └─TableFullScan_22 3.00 45.00 cop[tiflash] table:t2 keep order:false" + "HashAgg_17 1.00 89.83 root funcs:count(Column#5)->Column#4", + "└─TableReader_18 1.00 59.57 root data:HashAgg_7", + " └─HashAgg_7 1.00 861.88 cop[tikv] funcs:count(1)->Column#5", + " └─Selection_14 0.00 831.62 cop[tikv] eq(test.t2.a, 0)", + " └─TableFullScan_13 3.00 681.92 cop[tikv] table:t2 keep order:false" ] }, { "SQL": "explain format = 'verbose' select count(*) from t3 t join t3 on t.a = t3.b", "Plan": [ - "StreamAgg_10 1.00 60.22 root funcs:count(1)->Column#7", - "└─HashJoin_40 3.00 51.22 root inner join, equal:[eq(test.t3.a, test.t3.b)]", - " ├─IndexReader_28(Build) 3.00 11.66 root index:IndexFullScan_27", - " │ └─IndexFullScan_27 3.00 130.50 cop[tikv] table:t3, index:c(b) keep order:false", - " └─TableReader_26(Probe) 3.00 10.76 root data:Selection_25", - " └─Selection_25 3.00 117.00 cop[tikv] not(isnull(test.t3.a))", - " └─TableFullScan_24 3.00 108.00 cop[tikv] table:t keep order:false" - ] - }, - { - "SQL": "explain format = 'verbose' select count(*) from t1 join t2 on t1.a = t2.a", - "Plan": [ - "StreamAgg_15 1.00 18.93 root funcs:count(1)->Column#7", - "└─TableReader_47 3.00 9.93 root data:ExchangeSender_46", - " └─ExchangeSender_46 3.00 195.38 mpp[tiflash] ExchangeType: PassThrough", - " └─HashJoin_43 3.00 195.38 mpp[tiflash] inner join, equal:[eq(test.t1.a, test.t2.a)]", - " ├─ExchangeReceiver_22(Build) 3.00 57.00 mpp[tiflash] ", - " │ └─ExchangeSender_21 3.00 54.00 mpp[tiflash] ExchangeType: Broadcast", - " │ └─Selection_20 3.00 54.00 mpp[tiflash] not(isnull(test.t1.a))", - " │ └─TableFullScan_19 3.00 45.00 mpp[tiflash] table:t1 keep order:false", - " └─Selection_24(Probe) 3.00 54.00 mpp[tiflash] not(isnull(test.t2.a))", - " └─TableFullScan_23 3.00 45.00 mpp[tiflash] table:t2 keep order:false" - ] - }, - { - "SQL": "explain format = 'verbose' select count(*) from t1 join t2 on t1.a = t2.a join t3 on t1.b = t3.b", - "Plan": [ - "StreamAgg_15 1.00 60.60 root funcs:count(1)->Column#10", - "└─HashJoin_65 3.00 51.60 root inner join, equal:[eq(test.t1.b, test.t3.b)]", - " ├─IndexReader_53(Build) 3.00 11.66 root index:IndexFullScan_52", - " │ └─IndexFullScan_52 3.00 130.50 cop[tikv] table:t3, index:c(b) keep order:false", - " └─TableReader_39(Probe) 3.00 11.14 root data:ExchangeSender_38", - " └─ExchangeSender_38 3.00 204.38 mpp[tiflash] ExchangeType: PassThrough", - " └─HashJoin_29 3.00 204.38 mpp[tiflash] inner join, equal:[eq(test.t1.a, test.t2.a)]", - " ├─ExchangeReceiver_35(Build) 3.00 66.00 mpp[tiflash] ", - " │ └─ExchangeSender_34 3.00 63.00 mpp[tiflash] ExchangeType: Broadcast", - " │ └─Selection_33 3.00 63.00 mpp[tiflash] not(isnull(test.t1.a)), not(isnull(test.t1.b))", - " │ └─TableFullScan_32 3.00 54.00 mpp[tiflash] table:t1 keep order:false", - " └─Selection_37(Probe) 3.00 54.00 mpp[tiflash] not(isnull(test.t2.a))", - " └─TableFullScan_36 3.00 45.00 mpp[tiflash] table:t2 keep order:false" - ] - }, - { - "SQL": "explain format = 'verbose' select (2) in (select count(*) from t1) from (select t.b < (select t.b from t2 limit 1 ) from t3 t) t", - "Plan": [ - "HashJoin_19 3.00 127.40 root CARTESIAN left outer semi join", - "├─Selection_39(Build) 0.80 11.18 root eq(2, Column#18)", - "│ └─StreamAgg_61 1.00 8.18 root funcs:count(Column#32)->Column#18", - "│ └─TableReader_62 1.00 5.17 root data:StreamAgg_45", - "│ └─StreamAgg_45 1.00 49.50 batchCop[tiflash] funcs:count(1)->Column#32", - "│ └─TableFullScan_60 3.00 40.50 batchCop[tiflash] table:t1 keep order:false", - "└─Projection_20(Probe) 3.00 95.82 root 1->Column#28", - " └─Apply_22 3.00 76.02 root CARTESIAN left outer join", - " ├─TableReader_24(Build) 3.00 10.16 root data:TableFullScan_23", - " │ └─TableFullScan_23 3.00 108.00 cop[tikv] table:t keep order:false", - " └─Projection_27(Probe) 1.00 21.95 root 1->Column#26", - " └─Limit_30 1.00 3.35 root offset:0, count:1", - " └─TableReader_38 1.00 3.35 root data:ExchangeSender_37", - " └─ExchangeSender_37 1.00 19.50 mpp[tiflash] ExchangeType: PassThrough", - " └─Limit_36 1.00 19.50 mpp[tiflash] offset:0, count:1", - " └─TableFullScan_35 1.00 19.50 mpp[tiflash] table:t2 keep order:false" - ] - }, - { - "SQL": "explain format = 'verbose' select /*+ merge_join(t1) */ count(*) from t1 join t2 on t1.a = t2.a", - "Plan": [ - "StreamAgg_14 1.00 59.65 root funcs:count(1)->Column#7", - "└─MergeJoin_32 3.00 50.65 root inner join, left key:test.t1.a, right key:test.t2.a", - " ├─Sort_30(Build) 3.00 20.83 root test.t2.a", - " │ └─TableReader_29 3.00 6.56 root data:Selection_28", - " │ └─Selection_28 3.00 54.00 cop[tiflash] not(isnull(test.t2.a))", - " │ └─TableFullScan_27 3.00 45.00 cop[tiflash] table:t2 keep order:false", - " └─Sort_23(Probe) 3.00 20.83 root test.t1.a", - " └─TableReader_22 3.00 6.56 root data:Selection_21", - " └─Selection_21 3.00 54.00 cop[tiflash] not(isnull(test.t1.a))", - " └─TableFullScan_20 3.00 45.00 cop[tiflash] table:t1 keep order:false" + "HashAgg_9 1.00 552.41 root funcs:count(1)->Column#7", + "└─HashJoin_22 3.00 482.23 root inner join, equal:[eq(test.t3.a, test.t3.b)]", + " ├─IndexReader_28(Build) 3.00 45.23 root index:IndexFullScan_27", + " │ └─IndexFullScan_27 3.00 488.40 cop[tikv] table:t3, index:c(b) keep order:false", + " └─TableReader_26(Probe) 3.00 68.11 root data:Selection_25", + " └─Selection_25 3.00 831.62 cop[tikv] not(isnull(test.t3.a))", + " └─TableFullScan_24 3.00 681.92 cop[tikv] table:t keep order:false" + ] + }, + { + "SQL": "explain format = 'verbose' select /*+ read_from_storage(tiflash[t1, t2]) */ count(*) from t1 join t2 on t1.a = t2.a", + "Plan": [ + "HashAgg_34 1.00 61928.14 root funcs:count(Column#8)->Column#7", + "└─TableReader_36 1.00 61897.88 root data:ExchangeSender_35", + " └─ExchangeSender_35 1.00 928450.64 mpp[tiflash] ExchangeType: PassThrough", + " └─HashAgg_13 1.00 928450.64 mpp[tiflash] funcs:count(1)->Column#8", + " └─HashJoin_33 3.00 928447.20 mpp[tiflash] inner join, equal:[eq(test.t1.a, test.t2.a)]", + " ├─ExchangeReceiver_22(Build) 3.00 464290.40 mpp[tiflash] ", + " │ └─ExchangeSender_21 3.00 464146.40 mpp[tiflash] ExchangeType: Broadcast", + " │ └─Selection_20 3.00 464146.40 mpp[tiflash] not(isnull(test.t1.a))", + " │ └─TableFullScan_19 3.00 464139.20 mpp[tiflash] table:t1 keep order:false", + " └─Selection_24(Probe) 3.00 464146.40 mpp[tiflash] not(isnull(test.t2.a))", + " └─TableFullScan_23 3.00 464139.20 mpp[tiflash] table:t2 keep order:false" + ] + }, + { + "SQL": "explain format = 'verbose' select /*+ read_from_storage(tiflash[t1, t2]) */ count(*) from t1 join t2 on t1.a = t2.a join t3 on t1.b = t3.b", + "Plan": [ + "HashAgg_14 1.00 70137.12 root funcs:count(1)->Column#10", + "└─HashJoin_27 3.00 70066.94 root inner join, equal:[eq(test.t1.b, test.t3.b)]", + " ├─IndexReader_47(Build) 3.00 45.23 root index:IndexFullScan_46", + " │ └─IndexFullScan_46 3.00 488.40 cop[tikv] table:t3, index:c(b) keep order:false", + " └─TableReader_39(Probe) 3.00 69652.83 root data:ExchangeSender_38", + " └─ExchangeSender_38 3.00 1044634.00 mpp[tiflash] ExchangeType: PassThrough", + " └─HashJoin_29 3.00 1044634.00 mpp[tiflash] inner join, equal:[eq(test.t1.a, test.t2.a)]", + " ├─ExchangeReceiver_35(Build) 3.00 580476.40 mpp[tiflash] ", + " │ └─ExchangeSender_34 3.00 580188.40 mpp[tiflash] ExchangeType: Broadcast", + " │ └─Selection_33 3.00 580188.40 mpp[tiflash] not(isnull(test.t1.a)), not(isnull(test.t1.b))", + " │ └─TableFullScan_32 3.00 580174.00 mpp[tiflash] table:t1 keep order:false", + " └─Selection_37(Probe) 3.00 464146.40 mpp[tiflash] not(isnull(test.t2.a))", + " └─TableFullScan_36 3.00 464139.20 mpp[tiflash] table:t2 keep order:false" + ] + }, + { + "SQL": "explain format = 'verbose' select (2) in (select /*+ read_from_storage(tiflash[t1]) */ count(*) from t1) from (select t.b < (select /*+ read_from_storage(tiflash[t2]) */ t.b from t2 limit 1 ) from t3 t) t", + "Plan": [ + "HashJoin_19 3.00 160743.93 root CARTESIAN left outer semi join", + "├─Selection_38(Build) 0.80 31024.18 root eq(2, Column#18)", + "│ └─HashAgg_52 1.00 30974.28 root funcs:count(Column#31)->Column#18", + "│ └─TableReader_54 1.00 30944.02 root data:ExchangeSender_53", + "│ └─ExchangeSender_53 1.00 464142.64 mpp[tiflash] ExchangeType: PassThrough", + "│ └─HashAgg_43 1.00 464142.64 mpp[tiflash] funcs:count(1)->Column#31", + "│ └─TableFullScan_51 3.00 464139.20 mpp[tiflash] table:t1 keep order:false", + "└─Projection_20(Probe) 3.00 129648.62 root 1->Column#28", + " └─Apply_22 3.00 129648.32 root CARTESIAN left outer join", + " ├─IndexReader_26(Build) 3.00 53.37 root index:IndexFullScan_25", + " │ └─IndexFullScan_25 3.00 610.50 cop[tikv] table:t, index:c(b) keep order:false", + " └─Projection_27(Probe) 3.00 43198.32 root 1->Column#26", + " └─Limit_30 3.00 43198.22 root offset:0, count:1", + " └─TableReader_37 3.00 43198.22 root data:ExchangeSender_36", + " └─ExchangeSender_36 3.00 647920.44 mpp[tiflash] ExchangeType: PassThrough", + " └─Limit_35 3.00 647920.44 mpp[tiflash] offset:0, count:1", + " └─TableFullScan_34 3.00 647920.44 mpp[tiflash] table:t2 keep order:false" + ] + }, + { + "SQL": "explain format = 'verbose' select /*+ merge_join(t1), read_from_storage(tiflash[t1, t2]) */ count(*) from t1 join t2 on t1.a = t2.a", + "Plan": [ + "HashAgg_11 1.00 62478.44 root funcs:count(1)->Column#7", + "└─MergeJoin_16 3.00 62408.26 root inner join, left key:test.t1.a, right key:test.t2.a", + " ├─Sort_24(Build) 3.00 31202.63 root test.t2.a", + " │ └─TableReader_23 3.00 30955.77 root data:Selection_22", + " │ └─Selection_22 3.00 464146.40 cop[tiflash] not(isnull(test.t2.a))", + " │ └─TableFullScan_21 3.00 464139.20 cop[tiflash] table:t2 keep order:false", + " └─Sort_20(Probe) 3.00 31202.63 root test.t1.a", + " └─TableReader_19 3.00 30955.77 root data:Selection_18", + " └─Selection_18 3.00 464146.40 cop[tiflash] not(isnull(test.t1.a))", + " └─TableFullScan_17 3.00 464139.20 cop[tiflash] table:t1 keep order:false" ] } ] @@ -2902,7 +2903,7 @@ { "SQL": "explain format = 'brief' select max(a) from t", "Plan": [ - "StreamAgg 1.00 root funcs:max(test.t.a)->Column#3", + "HashAgg 1.00 root funcs:max(test.t.a)->Column#3", "└─TopN 1.00 root test.t.a:desc, offset:0, count:1", " └─TableReader 1.00 root data:TopN", " └─TopN 1.00 batchCop[tiflash] test.t.a:desc, offset:0, count:1", @@ -2912,7 +2913,7 @@ { "SQL": "explain format = 'brief' select min(a) from t", "Plan": [ - "StreamAgg 1.00 root funcs:min(test.t.a)->Column#3", + "HashAgg 1.00 root funcs:min(test.t.a)->Column#3", "└─Limit 1.00 root offset:0, count:1", " └─TableReader 1.00 root data:Limit", " └─Limit 1.00 cop[tiflash] offset:0, count:1", @@ -2927,7 +2928,7 @@ { "SQL": "explain format = 'brief' select max(a) from t", "Plan": [ - "StreamAgg 1.00 root funcs:max(test.t.a)->Column#3", + "HashAgg 1.00 root funcs:max(test.t.a)->Column#3", "└─TopN 1.00 root test.t.a:desc, offset:0, count:1", " └─TableReader 1.00 root data:TopN", " └─TopN 1.00 batchCop[tiflash] test.t.a:desc, offset:0, count:1", @@ -2937,7 +2938,7 @@ { "SQL": "explain format = 'brief' select min(a) from t", "Plan": [ - "StreamAgg 1.00 root funcs:min(test.t.a)->Column#3", + "HashAgg 1.00 root funcs:min(test.t.a)->Column#3", "└─TopN 1.00 root test.t.a, offset:0, count:1", " └─TableReader 1.00 root data:TopN", " └─TopN 1.00 batchCop[tiflash] test.t.a, offset:0, count:1", @@ -2952,245 +2953,262 @@ { "SQL": "explain format = 'brief' select count(*) from fact_t, d1_t where fact_t.d1_k = d1_t.d1_k", "Plan": [ - "StreamAgg 1.00 root funcs:count(1)->Column#11", - "└─TableReader 8.00 root data:ExchangeSender", - " └─ExchangeSender 8.00 mpp[tiflash] ExchangeType: PassThrough", - " └─HashJoin 8.00 mpp[tiflash] inner join, equal:[eq(test.d1_t.d1_k, test.fact_t.d1_k)]", - " ├─ExchangeReceiver(Build) 2.00 mpp[tiflash] ", - " │ └─ExchangeSender 2.00 mpp[tiflash] ExchangeType: Broadcast", - " │ └─Selection 2.00 mpp[tiflash] not(isnull(test.d1_t.d1_k))", - " │ └─TableFullScan 2.00 mpp[tiflash] table:d1_t keep order:false", - " └─Selection(Probe) 8.00 mpp[tiflash] not(isnull(test.fact_t.d1_k))", - " └─TableFullScan 8.00 mpp[tiflash] table:fact_t keep order:false" + "HashAgg 1.00 root funcs:count(Column#12)->Column#11", + "└─TableReader 1.00 root data:ExchangeSender", + " └─ExchangeSender 1.00 mpp[tiflash] ExchangeType: PassThrough", + " └─HashAgg 1.00 mpp[tiflash] funcs:count(1)->Column#12", + " └─HashJoin 8.00 mpp[tiflash] inner join, equal:[eq(test.d1_t.d1_k, test.fact_t.d1_k)]", + " ├─ExchangeReceiver(Build) 2.00 mpp[tiflash] ", + " │ └─ExchangeSender 2.00 mpp[tiflash] ExchangeType: Broadcast", + " │ └─Selection 2.00 mpp[tiflash] not(isnull(test.d1_t.d1_k))", + " │ └─TableFullScan 2.00 mpp[tiflash] table:d1_t keep order:false", + " └─Selection(Probe) 8.00 mpp[tiflash] not(isnull(test.fact_t.d1_k))", + " └─TableFullScan 8.00 mpp[tiflash] table:fact_t keep order:false" ] }, { "SQL": "explain format = 'brief' select count(*) from fact_t, d1_t, d2_t, d3_t where fact_t.d1_k = d1_t.d1_k and fact_t.d2_k = d2_t.d2_k and fact_t.d3_k = d3_t.d3_k", "Plan": [ - "StreamAgg 1.00 root funcs:count(1)->Column#17", - "└─TableReader 8.00 root data:ExchangeSender", - " └─ExchangeSender 8.00 mpp[tiflash] ExchangeType: PassThrough", - " └─HashJoin 8.00 mpp[tiflash] inner join, equal:[eq(test.fact_t.d3_k, test.d3_t.d3_k)]", - " ├─ExchangeReceiver(Build) 2.00 mpp[tiflash] ", - " │ └─ExchangeSender 2.00 mpp[tiflash] ExchangeType: Broadcast", - " │ └─Selection 2.00 mpp[tiflash] not(isnull(test.d3_t.d3_k))", - " │ └─TableFullScan 2.00 mpp[tiflash] table:d3_t keep order:false", - " └─HashJoin(Probe) 8.00 mpp[tiflash] inner join, equal:[eq(test.fact_t.d2_k, test.d2_t.d2_k)]", + "HashAgg 1.00 root funcs:count(Column#18)->Column#17", + "└─TableReader 1.00 root data:ExchangeSender", + " └─ExchangeSender 1.00 mpp[tiflash] ExchangeType: PassThrough", + " └─HashAgg 1.00 mpp[tiflash] funcs:count(1)->Column#18", + " └─HashJoin 8.00 mpp[tiflash] inner join, equal:[eq(test.fact_t.d3_k, test.d3_t.d3_k)]", " ├─ExchangeReceiver(Build) 2.00 mpp[tiflash] ", " │ └─ExchangeSender 2.00 mpp[tiflash] ExchangeType: Broadcast", - " │ └─Selection 2.00 mpp[tiflash] not(isnull(test.d2_t.d2_k))", - " │ └─TableFullScan 2.00 mpp[tiflash] table:d2_t keep order:false", - " └─HashJoin(Probe) 8.00 mpp[tiflash] inner join, equal:[eq(test.d1_t.d1_k, test.fact_t.d1_k)]", + " │ └─Selection 2.00 mpp[tiflash] not(isnull(test.d3_t.d3_k))", + " │ └─TableFullScan 2.00 mpp[tiflash] table:d3_t keep order:false", + " └─HashJoin(Probe) 8.00 mpp[tiflash] inner join, equal:[eq(test.fact_t.d2_k, test.d2_t.d2_k)]", " ├─ExchangeReceiver(Build) 2.00 mpp[tiflash] ", " │ └─ExchangeSender 2.00 mpp[tiflash] ExchangeType: Broadcast", - " │ └─Selection 2.00 mpp[tiflash] not(isnull(test.d1_t.d1_k))", - " │ └─TableFullScan 2.00 mpp[tiflash] table:d1_t keep order:false", - " └─Selection(Probe) 8.00 mpp[tiflash] not(isnull(test.fact_t.d1_k)), not(isnull(test.fact_t.d2_k)), not(isnull(test.fact_t.d3_k))", - " └─TableFullScan 8.00 mpp[tiflash] table:fact_t keep order:false" + " │ └─Selection 2.00 mpp[tiflash] not(isnull(test.d2_t.d2_k))", + " │ └─TableFullScan 2.00 mpp[tiflash] table:d2_t keep order:false", + " └─HashJoin(Probe) 8.00 mpp[tiflash] inner join, equal:[eq(test.d1_t.d1_k, test.fact_t.d1_k)]", + " ├─ExchangeReceiver(Build) 2.00 mpp[tiflash] ", + " │ └─ExchangeSender 2.00 mpp[tiflash] ExchangeType: Broadcast", + " │ └─Selection 2.00 mpp[tiflash] not(isnull(test.d1_t.d1_k))", + " │ └─TableFullScan 2.00 mpp[tiflash] table:d1_t keep order:false", + " └─Selection(Probe) 8.00 mpp[tiflash] not(isnull(test.fact_t.d1_k)), not(isnull(test.fact_t.d2_k)), not(isnull(test.fact_t.d3_k))", + " └─TableFullScan 8.00 mpp[tiflash] table:fact_t keep order:false" ] }, { "SQL": "explain format = 'brief' select count(*) from fact_t, d1_t where fact_t.d1_k = d1_t.d1_k", "Plan": [ - "StreamAgg 1.00 root funcs:count(1)->Column#11", - "└─TableReader 8.00 root data:ExchangeSender", - " └─ExchangeSender 8.00 mpp[tiflash] ExchangeType: PassThrough", - " └─HashJoin 8.00 mpp[tiflash] inner join, equal:[eq(test.d1_t.d1_k, test.fact_t.d1_k)]", - " ├─ExchangeReceiver(Build) 2.00 mpp[tiflash] ", - " │ └─ExchangeSender 2.00 mpp[tiflash] ExchangeType: Broadcast", - " │ └─Selection 2.00 mpp[tiflash] not(isnull(test.d1_t.d1_k))", - " │ └─TableFullScan 2.00 mpp[tiflash] table:d1_t keep order:false", - " └─Selection(Probe) 8.00 mpp[tiflash] not(isnull(test.fact_t.d1_k))", - " └─TableFullScan 8.00 mpp[tiflash] table:fact_t keep order:false" + "HashAgg 1.00 root funcs:count(Column#12)->Column#11", + "└─TableReader 1.00 root data:ExchangeSender", + " └─ExchangeSender 1.00 mpp[tiflash] ExchangeType: PassThrough", + " └─HashAgg 1.00 mpp[tiflash] funcs:count(1)->Column#12", + " └─HashJoin 8.00 mpp[tiflash] inner join, equal:[eq(test.d1_t.d1_k, test.fact_t.d1_k)]", + " ├─ExchangeReceiver(Build) 2.00 mpp[tiflash] ", + " │ └─ExchangeSender 2.00 mpp[tiflash] ExchangeType: Broadcast", + " │ └─Selection 2.00 mpp[tiflash] not(isnull(test.d1_t.d1_k))", + " │ └─TableFullScan 2.00 mpp[tiflash] table:d1_t keep order:false", + " └─Selection(Probe) 8.00 mpp[tiflash] not(isnull(test.fact_t.d1_k))", + " └─TableFullScan 8.00 mpp[tiflash] table:fact_t keep order:false" ] }, { "SQL": "explain format = 'brief' select count(*) from fact_t left join d1_t on fact_t.d1_k = d1_t.d1_k", "Plan": [ - "StreamAgg 1.00 root funcs:count(1)->Column#11", - "└─TableReader 8.00 root data:ExchangeSender", - " └─ExchangeSender 8.00 mpp[tiflash] ExchangeType: PassThrough", - " └─HashJoin 8.00 mpp[tiflash] left outer join, equal:[eq(test.fact_t.d1_k, test.d1_t.d1_k)]", - " ├─ExchangeReceiver(Build) 2.00 mpp[tiflash] ", - " │ └─ExchangeSender 2.00 mpp[tiflash] ExchangeType: Broadcast", - " │ └─Selection 2.00 mpp[tiflash] not(isnull(test.d1_t.d1_k))", - " │ └─TableFullScan 2.00 mpp[tiflash] table:d1_t keep order:false", - " └─TableFullScan(Probe) 8.00 mpp[tiflash] table:fact_t keep order:false" + "HashAgg 1.00 root funcs:count(Column#12)->Column#11", + "└─TableReader 1.00 root data:ExchangeSender", + " └─ExchangeSender 1.00 mpp[tiflash] ExchangeType: PassThrough", + " └─HashAgg 1.00 mpp[tiflash] funcs:count(1)->Column#12", + " └─HashJoin 8.00 mpp[tiflash] left outer join, equal:[eq(test.fact_t.d1_k, test.d1_t.d1_k)]", + " ├─ExchangeReceiver(Build) 2.00 mpp[tiflash] ", + " │ └─ExchangeSender 2.00 mpp[tiflash] ExchangeType: Broadcast", + " │ └─Selection 2.00 mpp[tiflash] not(isnull(test.d1_t.d1_k))", + " │ └─TableFullScan 2.00 mpp[tiflash] table:d1_t keep order:false", + " └─TableFullScan(Probe) 8.00 mpp[tiflash] table:fact_t keep order:false" ] }, { "SQL": "explain format = 'brief' select count(*) from fact_t right join d1_t on fact_t.d1_k = d1_t.d1_k", "Plan": [ - "StreamAgg 1.00 root funcs:count(1)->Column#11", - "└─TableReader 8.00 root data:ExchangeSender", - " └─ExchangeSender 8.00 mpp[tiflash] ExchangeType: PassThrough", - " └─HashJoin 8.00 mpp[tiflash] right outer join, equal:[eq(test.fact_t.d1_k, test.d1_t.d1_k)]", - " ├─ExchangeReceiver(Build) 8.00 mpp[tiflash] ", - " │ └─ExchangeSender 8.00 mpp[tiflash] ExchangeType: Broadcast", - " │ └─Selection 8.00 mpp[tiflash] not(isnull(test.fact_t.d1_k))", - " │ └─TableFullScan 8.00 mpp[tiflash] table:fact_t keep order:false", - " └─TableFullScan(Probe) 2.00 mpp[tiflash] table:d1_t keep order:false" + "HashAgg 1.00 root funcs:count(Column#12)->Column#11", + "└─TableReader 1.00 root data:ExchangeSender", + " └─ExchangeSender 1.00 mpp[tiflash] ExchangeType: PassThrough", + " └─HashAgg 1.00 mpp[tiflash] funcs:count(1)->Column#12", + " └─HashJoin 8.00 mpp[tiflash] right outer join, equal:[eq(test.fact_t.d1_k, test.d1_t.d1_k)]", + " ├─ExchangeReceiver(Build) 8.00 mpp[tiflash] ", + " │ └─ExchangeSender 8.00 mpp[tiflash] ExchangeType: Broadcast", + " │ └─Selection 8.00 mpp[tiflash] not(isnull(test.fact_t.d1_k))", + " │ └─TableFullScan 8.00 mpp[tiflash] table:fact_t keep order:false", + " └─TableFullScan(Probe) 2.00 mpp[tiflash] table:d1_t keep order:false" ] }, { "SQL": "explain format = 'brief' select count(*) from fact_t join d1_t on fact_t.d1_k = d1_t.d1_k and fact_t.col1 > d1_t.value", "Plan": [ - "StreamAgg 1.00 root funcs:count(1)->Column#11", - "└─TableReader 8.00 root data:ExchangeSender", - " └─ExchangeSender 8.00 mpp[tiflash] ExchangeType: PassThrough", - " └─HashJoin 8.00 mpp[tiflash] inner join, equal:[eq(test.d1_t.d1_k, test.fact_t.d1_k)], other cond:gt(test.fact_t.col1, test.d1_t.value)", - " ├─ExchangeReceiver(Build) 2.00 mpp[tiflash] ", - " │ └─ExchangeSender 2.00 mpp[tiflash] ExchangeType: Broadcast", - " │ └─Selection 2.00 mpp[tiflash] not(isnull(test.d1_t.d1_k)), not(isnull(test.d1_t.value))", - " │ └─TableFullScan 2.00 mpp[tiflash] table:d1_t keep order:false", - " └─Selection(Probe) 8.00 mpp[tiflash] not(isnull(test.fact_t.col1)), not(isnull(test.fact_t.d1_k))", - " └─TableFullScan 8.00 mpp[tiflash] table:fact_t keep order:false" + "HashAgg 1.00 root funcs:count(Column#12)->Column#11", + "└─TableReader 1.00 root data:ExchangeSender", + " └─ExchangeSender 1.00 mpp[tiflash] ExchangeType: PassThrough", + " └─HashAgg 1.00 mpp[tiflash] funcs:count(1)->Column#12", + " └─HashJoin 8.00 mpp[tiflash] inner join, equal:[eq(test.d1_t.d1_k, test.fact_t.d1_k)], other cond:gt(test.fact_t.col1, test.d1_t.value)", + " ├─ExchangeReceiver(Build) 2.00 mpp[tiflash] ", + " │ └─ExchangeSender 2.00 mpp[tiflash] ExchangeType: Broadcast", + " │ └─Selection 2.00 mpp[tiflash] not(isnull(test.d1_t.d1_k)), not(isnull(test.d1_t.value))", + " │ └─TableFullScan 2.00 mpp[tiflash] table:d1_t keep order:false", + " └─Selection(Probe) 8.00 mpp[tiflash] not(isnull(test.fact_t.col1)), not(isnull(test.fact_t.d1_k))", + " └─TableFullScan 8.00 mpp[tiflash] table:fact_t keep order:false" ] }, { "SQL": "explain format = 'brief' select count(*) from fact_t left join d1_t on fact_t.d1_k = d1_t.d1_k and fact_t.col1 > 10", "Plan": [ - "StreamAgg 1.00 root funcs:count(1)->Column#11", - "└─TableReader 8.00 root data:ExchangeSender", - " └─ExchangeSender 8.00 mpp[tiflash] ExchangeType: PassThrough", - " └─HashJoin 8.00 mpp[tiflash] left outer join, equal:[eq(test.fact_t.d1_k, test.d1_t.d1_k)], left cond:[gt(test.fact_t.col1, 10)]", - " ├─ExchangeReceiver(Build) 2.00 mpp[tiflash] ", - " │ └─ExchangeSender 2.00 mpp[tiflash] ExchangeType: Broadcast", - " │ └─Selection 2.00 mpp[tiflash] not(isnull(test.d1_t.d1_k))", - " │ └─TableFullScan 2.00 mpp[tiflash] table:d1_t keep order:false", - " └─TableFullScan(Probe) 8.00 mpp[tiflash] table:fact_t keep order:false" + "HashAgg 1.00 root funcs:count(Column#12)->Column#11", + "└─TableReader 1.00 root data:ExchangeSender", + " └─ExchangeSender 1.00 mpp[tiflash] ExchangeType: PassThrough", + " └─HashAgg 1.00 mpp[tiflash] funcs:count(1)->Column#12", + " └─HashJoin 8.00 mpp[tiflash] left outer join, equal:[eq(test.fact_t.d1_k, test.d1_t.d1_k)], left cond:[gt(test.fact_t.col1, 10)]", + " ├─ExchangeReceiver(Build) 2.00 mpp[tiflash] ", + " │ └─ExchangeSender 2.00 mpp[tiflash] ExchangeType: Broadcast", + " │ └─Selection 2.00 mpp[tiflash] not(isnull(test.d1_t.d1_k))", + " │ └─TableFullScan 2.00 mpp[tiflash] table:d1_t keep order:false", + " └─TableFullScan(Probe) 8.00 mpp[tiflash] table:fact_t keep order:false" ] }, { "SQL": "explain format = 'brief' select count(*) from fact_t left join d1_t on fact_t.d1_k = d1_t.d1_k and fact_t.col2 > 10 and fact_t.col1 > d1_t.value", "Plan": [ - "StreamAgg 1.00 root funcs:count(1)->Column#11", - "└─TableReader 8.00 root data:ExchangeSender", - " └─ExchangeSender 8.00 mpp[tiflash] ExchangeType: PassThrough", - " └─HashJoin 8.00 mpp[tiflash] left outer join, equal:[eq(test.fact_t.d1_k, test.d1_t.d1_k)], left cond:[gt(test.fact_t.col2, 10)], other cond:gt(test.fact_t.col1, test.d1_t.value)", - " ├─ExchangeReceiver(Build) 2.00 mpp[tiflash] ", - " │ └─ExchangeSender 2.00 mpp[tiflash] ExchangeType: Broadcast", - " │ └─Selection 2.00 mpp[tiflash] not(isnull(test.d1_t.d1_k)), not(isnull(test.d1_t.value))", - " │ └─TableFullScan 2.00 mpp[tiflash] table:d1_t keep order:false", - " └─TableFullScan(Probe) 8.00 mpp[tiflash] table:fact_t keep order:false" + "HashAgg 1.00 root funcs:count(Column#12)->Column#11", + "└─TableReader 1.00 root data:ExchangeSender", + " └─ExchangeSender 1.00 mpp[tiflash] ExchangeType: PassThrough", + " └─HashAgg 1.00 mpp[tiflash] funcs:count(1)->Column#12", + " └─HashJoin 8.00 mpp[tiflash] left outer join, equal:[eq(test.fact_t.d1_k, test.d1_t.d1_k)], left cond:[gt(test.fact_t.col2, 10)], other cond:gt(test.fact_t.col1, test.d1_t.value)", + " ├─ExchangeReceiver(Build) 2.00 mpp[tiflash] ", + " │ └─ExchangeSender 2.00 mpp[tiflash] ExchangeType: Broadcast", + " │ └─Selection 2.00 mpp[tiflash] not(isnull(test.d1_t.d1_k)), not(isnull(test.d1_t.value))", + " │ └─TableFullScan 2.00 mpp[tiflash] table:d1_t keep order:false", + " └─TableFullScan(Probe) 8.00 mpp[tiflash] table:fact_t keep order:false" ] }, { "SQL": "explain format = 'brief' select count(*) from fact_t right join d1_t on fact_t.d1_k = d1_t.d1_k and d1_t.value > 10", "Plan": [ - "StreamAgg 1.00 root funcs:count(1)->Column#11", - "└─TableReader 8.00 root data:ExchangeSender", - " └─ExchangeSender 8.00 mpp[tiflash] ExchangeType: PassThrough", - " └─HashJoin 8.00 mpp[tiflash] right outer join, equal:[eq(test.fact_t.d1_k, test.d1_t.d1_k)], right cond:gt(test.d1_t.value, 10)", - " ├─ExchangeReceiver(Build) 8.00 mpp[tiflash] ", - " │ └─ExchangeSender 8.00 mpp[tiflash] ExchangeType: Broadcast", - " │ └─Selection 8.00 mpp[tiflash] not(isnull(test.fact_t.d1_k))", - " │ └─TableFullScan 8.00 mpp[tiflash] table:fact_t keep order:false", - " └─TableFullScan(Probe) 2.00 mpp[tiflash] table:d1_t keep order:false" + "HashAgg 1.00 root funcs:count(Column#12)->Column#11", + "└─TableReader 1.00 root data:ExchangeSender", + " └─ExchangeSender 1.00 mpp[tiflash] ExchangeType: PassThrough", + " └─HashAgg 1.00 mpp[tiflash] funcs:count(1)->Column#12", + " └─HashJoin 8.00 mpp[tiflash] right outer join, equal:[eq(test.fact_t.d1_k, test.d1_t.d1_k)], right cond:gt(test.d1_t.value, 10)", + " ├─ExchangeReceiver(Build) 8.00 mpp[tiflash] ", + " │ └─ExchangeSender 8.00 mpp[tiflash] ExchangeType: Broadcast", + " │ └─Selection 8.00 mpp[tiflash] not(isnull(test.fact_t.d1_k))", + " │ └─TableFullScan 8.00 mpp[tiflash] table:fact_t keep order:false", + " └─TableFullScan(Probe) 2.00 mpp[tiflash] table:d1_t keep order:false" ] }, { "SQL": "explain format = 'brief' select count(*) from fact_t right join d1_t on fact_t.d1_k = d1_t.d1_k and d1_t.value > 10 and fact_t.col1 > d1_t.value", "Plan": [ - "StreamAgg 1.00 root funcs:count(1)->Column#11", - "└─TableReader 8.00 root data:ExchangeSender", - " └─ExchangeSender 8.00 mpp[tiflash] ExchangeType: PassThrough", - " └─HashJoin 8.00 mpp[tiflash] right outer join, equal:[eq(test.fact_t.d1_k, test.d1_t.d1_k)], right cond:gt(test.d1_t.value, 10), other cond:gt(test.fact_t.col1, test.d1_t.value)", - " ├─ExchangeReceiver(Build) 8.00 mpp[tiflash] ", - " │ └─ExchangeSender 8.00 mpp[tiflash] ExchangeType: Broadcast", - " │ └─Selection 8.00 mpp[tiflash] not(isnull(test.fact_t.col1)), not(isnull(test.fact_t.d1_k))", - " │ └─TableFullScan 8.00 mpp[tiflash] table:fact_t keep order:false", - " └─TableFullScan(Probe) 2.00 mpp[tiflash] table:d1_t keep order:false" + "HashAgg 1.00 root funcs:count(Column#12)->Column#11", + "└─TableReader 1.00 root data:ExchangeSender", + " └─ExchangeSender 1.00 mpp[tiflash] ExchangeType: PassThrough", + " └─HashAgg 1.00 mpp[tiflash] funcs:count(1)->Column#12", + " └─HashJoin 8.00 mpp[tiflash] right outer join, equal:[eq(test.fact_t.d1_k, test.d1_t.d1_k)], right cond:gt(test.d1_t.value, 10), other cond:gt(test.fact_t.col1, test.d1_t.value)", + " ├─ExchangeReceiver(Build) 8.00 mpp[tiflash] ", + " │ └─ExchangeSender 8.00 mpp[tiflash] ExchangeType: Broadcast", + " │ └─Selection 8.00 mpp[tiflash] not(isnull(test.fact_t.col1)), not(isnull(test.fact_t.d1_k))", + " │ └─TableFullScan 8.00 mpp[tiflash] table:fact_t keep order:false", + " └─TableFullScan(Probe) 2.00 mpp[tiflash] table:d1_t keep order:false" ] }, { "SQL": "explain format = 'brief' select count(*) from fact_t where exists (select 1 from d1_t where d1_k = fact_t.d1_k)", "Plan": [ - "StreamAgg 1.00 root funcs:count(1)->Column#12", - "└─TableReader 6.40 root data:ExchangeSender", - " └─ExchangeSender 6.40 mpp[tiflash] ExchangeType: PassThrough", - " └─HashJoin 6.40 mpp[tiflash] semi join, equal:[eq(test.fact_t.d1_k, test.d1_t.d1_k)]", - " ├─ExchangeReceiver(Build) 2.00 mpp[tiflash] ", - " │ └─ExchangeSender 2.00 mpp[tiflash] ExchangeType: Broadcast", - " │ └─Selection 2.00 mpp[tiflash] not(isnull(test.d1_t.d1_k))", - " │ └─TableFullScan 2.00 mpp[tiflash] table:d1_t keep order:false", - " └─Selection(Probe) 8.00 mpp[tiflash] not(isnull(test.fact_t.d1_k))", - " └─TableFullScan 8.00 mpp[tiflash] table:fact_t keep order:false" + "HashAgg 1.00 root funcs:count(Column#13)->Column#12", + "└─TableReader 1.00 root data:ExchangeSender", + " └─ExchangeSender 1.00 mpp[tiflash] ExchangeType: PassThrough", + " └─HashAgg 1.00 mpp[tiflash] funcs:count(1)->Column#13", + " └─HashJoin 6.40 mpp[tiflash] semi join, equal:[eq(test.fact_t.d1_k, test.d1_t.d1_k)]", + " ├─ExchangeReceiver(Build) 2.00 mpp[tiflash] ", + " │ └─ExchangeSender 2.00 mpp[tiflash] ExchangeType: Broadcast", + " │ └─Selection 2.00 mpp[tiflash] not(isnull(test.d1_t.d1_k))", + " │ └─TableFullScan 2.00 mpp[tiflash] table:d1_t keep order:false", + " └─Selection(Probe) 8.00 mpp[tiflash] not(isnull(test.fact_t.d1_k))", + " └─TableFullScan 8.00 mpp[tiflash] table:fact_t keep order:false" ] }, { "SQL": "explain format = 'brief' select count(*) from fact_t where exists (select 1 from d1_t where d1_k = fact_t.d1_k and value > fact_t.col1)", "Plan": [ - "StreamAgg 1.00 root funcs:count(1)->Column#12", - "└─TableReader 6.40 root data:ExchangeSender", - " └─ExchangeSender 6.40 mpp[tiflash] ExchangeType: PassThrough", - " └─HashJoin 6.40 mpp[tiflash] semi join, equal:[eq(test.fact_t.d1_k, test.d1_t.d1_k)], other cond:gt(test.d1_t.value, test.fact_t.col1)", - " ├─ExchangeReceiver(Build) 2.00 mpp[tiflash] ", - " │ └─ExchangeSender 2.00 mpp[tiflash] ExchangeType: Broadcast", - " │ └─Selection 2.00 mpp[tiflash] not(isnull(test.d1_t.d1_k)), not(isnull(test.d1_t.value))", - " │ └─TableFullScan 2.00 mpp[tiflash] table:d1_t keep order:false", - " └─Selection(Probe) 8.00 mpp[tiflash] not(isnull(test.fact_t.col1)), not(isnull(test.fact_t.d1_k))", - " └─TableFullScan 8.00 mpp[tiflash] table:fact_t keep order:false" + "HashAgg 1.00 root funcs:count(Column#13)->Column#12", + "└─TableReader 1.00 root data:ExchangeSender", + " └─ExchangeSender 1.00 mpp[tiflash] ExchangeType: PassThrough", + " └─HashAgg 1.00 mpp[tiflash] funcs:count(1)->Column#13", + " └─HashJoin 6.40 mpp[tiflash] semi join, equal:[eq(test.fact_t.d1_k, test.d1_t.d1_k)], other cond:gt(test.d1_t.value, test.fact_t.col1)", + " ├─ExchangeReceiver(Build) 2.00 mpp[tiflash] ", + " │ └─ExchangeSender 2.00 mpp[tiflash] ExchangeType: Broadcast", + " │ └─Selection 2.00 mpp[tiflash] not(isnull(test.d1_t.d1_k)), not(isnull(test.d1_t.value))", + " │ └─TableFullScan 2.00 mpp[tiflash] table:d1_t keep order:false", + " └─Selection(Probe) 8.00 mpp[tiflash] not(isnull(test.fact_t.col1)), not(isnull(test.fact_t.d1_k))", + " └─TableFullScan 8.00 mpp[tiflash] table:fact_t keep order:false" ] }, { "SQL": "explain format = 'brief' select count(*) from fact_t where exists (select /*+ SEMI_JOIN_REWRITE() */ 1 from d1_t where d1_k = fact_t.d1_k)", "Plan": [ - "StreamAgg 1.00 root funcs:count(1)->Column#12", - "└─TableReader 8.00 root data:ExchangeSender", - " └─ExchangeSender 8.00 mpp[tiflash] ExchangeType: PassThrough", - " └─HashJoin 8.00 mpp[tiflash] inner join, equal:[eq(test.fact_t.d1_k, test.d1_t.d1_k)]", - " ├─ExchangeReceiver(Build) 2.00 mpp[tiflash] ", - " │ └─ExchangeSender 2.00 mpp[tiflash] ExchangeType: Broadcast", - " │ └─Projection 2.00 mpp[tiflash] test.d1_t.d1_k", - " │ └─HashAgg 2.00 mpp[tiflash] group by:test.d1_t.d1_k, funcs:firstrow(test.d1_t.d1_k)->test.d1_t.d1_k", - " │ └─ExchangeReceiver 2.00 mpp[tiflash] ", - " │ └─ExchangeSender 2.00 mpp[tiflash] ExchangeType: HashPartition, Hash Cols: [name: test.d1_t.d1_k, collate: binary]", - " │ └─Selection 2.00 mpp[tiflash] not(isnull(test.d1_t.d1_k))", - " │ └─TableFullScan 2.00 mpp[tiflash] table:d1_t keep order:false", - " └─Selection(Probe) 8.00 mpp[tiflash] not(isnull(test.fact_t.d1_k))", - " └─TableFullScan 8.00 mpp[tiflash] table:fact_t keep order:false" + "HashAgg 1.00 root funcs:count(Column#17)->Column#12", + "└─TableReader 1.00 root data:ExchangeSender", + " └─ExchangeSender 1.00 mpp[tiflash] ExchangeType: PassThrough", + " └─HashAgg 1.00 mpp[tiflash] funcs:count(1)->Column#17", + " └─HashJoin 8.00 mpp[tiflash] inner join, equal:[eq(test.fact_t.d1_k, test.d1_t.d1_k)]", + " ├─ExchangeReceiver(Build) 2.00 mpp[tiflash] ", + " │ └─ExchangeSender 2.00 mpp[tiflash] ExchangeType: Broadcast", + " │ └─Projection 2.00 mpp[tiflash] test.d1_t.d1_k", + " │ └─HashAgg 2.00 mpp[tiflash] group by:test.d1_t.d1_k, funcs:firstrow(test.d1_t.d1_k)->test.d1_t.d1_k", + " │ └─ExchangeReceiver 2.00 mpp[tiflash] ", + " │ └─ExchangeSender 2.00 mpp[tiflash] ExchangeType: HashPartition, Hash Cols: [name: test.d1_t.d1_k, collate: binary]", + " │ └─HashAgg 2.00 mpp[tiflash] group by:test.d1_t.d1_k, ", + " │ └─Selection 2.00 mpp[tiflash] not(isnull(test.d1_t.d1_k))", + " │ └─TableFullScan 2.00 mpp[tiflash] table:d1_t keep order:false", + " └─Selection(Probe) 8.00 mpp[tiflash] not(isnull(test.fact_t.d1_k))", + " └─TableFullScan 8.00 mpp[tiflash] table:fact_t keep order:false" ] }, { "SQL": "explain format = 'brief' select count(*) from fact_t where exists (select /*+ SEMI_JOIN_REWRITE() */ 1 from d1_t where d1_k = fact_t.d1_k and value > fact_t.col1)", "Plan": [ - "StreamAgg 1.00 root funcs:count(1)->Column#12", - "└─TableReader 6.40 root data:ExchangeSender", - " └─ExchangeSender 6.40 mpp[tiflash] ExchangeType: PassThrough", - " └─HashJoin 6.40 mpp[tiflash] semi join, equal:[eq(test.fact_t.d1_k, test.d1_t.d1_k)], other cond:gt(test.d1_t.value, test.fact_t.col1)", - " ├─ExchangeReceiver(Build) 2.00 mpp[tiflash] ", - " │ └─ExchangeSender 2.00 mpp[tiflash] ExchangeType: Broadcast", - " │ └─Selection 2.00 mpp[tiflash] not(isnull(test.d1_t.d1_k)), not(isnull(test.d1_t.value))", - " │ └─TableFullScan 2.00 mpp[tiflash] table:d1_t keep order:false", - " └─Selection(Probe) 8.00 mpp[tiflash] not(isnull(test.fact_t.col1)), not(isnull(test.fact_t.d1_k))", - " └─TableFullScan 8.00 mpp[tiflash] table:fact_t keep order:false" + "HashAgg 1.00 root funcs:count(Column#13)->Column#12", + "└─TableReader 1.00 root data:ExchangeSender", + " └─ExchangeSender 1.00 mpp[tiflash] ExchangeType: PassThrough", + " └─HashAgg 1.00 mpp[tiflash] funcs:count(1)->Column#13", + " └─HashJoin 6.40 mpp[tiflash] semi join, equal:[eq(test.fact_t.d1_k, test.d1_t.d1_k)], other cond:gt(test.d1_t.value, test.fact_t.col1)", + " ├─ExchangeReceiver(Build) 2.00 mpp[tiflash] ", + " │ └─ExchangeSender 2.00 mpp[tiflash] ExchangeType: Broadcast", + " │ └─Selection 2.00 mpp[tiflash] not(isnull(test.d1_t.d1_k)), not(isnull(test.d1_t.value))", + " │ └─TableFullScan 2.00 mpp[tiflash] table:d1_t keep order:false", + " └─Selection(Probe) 8.00 mpp[tiflash] not(isnull(test.fact_t.col1)), not(isnull(test.fact_t.d1_k))", + " └─TableFullScan 8.00 mpp[tiflash] table:fact_t keep order:false" ] }, { "SQL": "explain format = 'brief' select count(*) from fact_t where not exists (select 1 from d1_t where d1_k = fact_t.d1_k)", "Plan": [ - "StreamAgg 1.00 root funcs:count(1)->Column#12", - "└─TableReader 6.40 root data:ExchangeSender", - " └─ExchangeSender 6.40 mpp[tiflash] ExchangeType: PassThrough", - " └─HashJoin 6.40 mpp[tiflash] anti semi join, equal:[eq(test.fact_t.d1_k, test.d1_t.d1_k)]", - " ├─ExchangeReceiver(Build) 2.00 mpp[tiflash] ", - " │ └─ExchangeSender 2.00 mpp[tiflash] ExchangeType: Broadcast", - " │ └─TableFullScan 2.00 mpp[tiflash] table:d1_t keep order:false", - " └─TableFullScan(Probe) 8.00 mpp[tiflash] table:fact_t keep order:false" + "HashAgg 1.00 root funcs:count(Column#13)->Column#12", + "└─TableReader 1.00 root data:ExchangeSender", + " └─ExchangeSender 1.00 mpp[tiflash] ExchangeType: PassThrough", + " └─HashAgg 1.00 mpp[tiflash] funcs:count(1)->Column#13", + " └─HashJoin 6.40 mpp[tiflash] anti semi join, equal:[eq(test.fact_t.d1_k, test.d1_t.d1_k)]", + " ├─ExchangeReceiver(Build) 2.00 mpp[tiflash] ", + " │ └─ExchangeSender 2.00 mpp[tiflash] ExchangeType: Broadcast", + " │ └─TableFullScan 2.00 mpp[tiflash] table:d1_t keep order:false", + " └─TableFullScan(Probe) 8.00 mpp[tiflash] table:fact_t keep order:false" ] }, { "SQL": "explain format = 'brief' select count(*) from fact_t where not exists (select 1 from d1_t where d1_k = fact_t.d1_k and value > fact_t.col1)", "Plan": [ - "StreamAgg 1.00 root funcs:count(1)->Column#12", - "└─TableReader 6.40 root data:ExchangeSender", - " └─ExchangeSender 6.40 mpp[tiflash] ExchangeType: PassThrough", - " └─HashJoin 6.40 mpp[tiflash] anti semi join, equal:[eq(test.fact_t.d1_k, test.d1_t.d1_k)], other cond:gt(test.d1_t.value, test.fact_t.col1)", - " ├─ExchangeReceiver(Build) 2.00 mpp[tiflash] ", - " │ └─ExchangeSender 2.00 mpp[tiflash] ExchangeType: Broadcast", - " │ └─TableFullScan 2.00 mpp[tiflash] table:d1_t keep order:false", - " └─TableFullScan(Probe) 8.00 mpp[tiflash] table:fact_t keep order:false" + "HashAgg 1.00 root funcs:count(Column#13)->Column#12", + "└─TableReader 1.00 root data:ExchangeSender", + " └─ExchangeSender 1.00 mpp[tiflash] ExchangeType: PassThrough", + " └─HashAgg 1.00 mpp[tiflash] funcs:count(1)->Column#13", + " └─HashJoin 6.40 mpp[tiflash] anti semi join, equal:[eq(test.fact_t.d1_k, test.d1_t.d1_k)], other cond:gt(test.d1_t.value, test.fact_t.col1)", + " ├─ExchangeReceiver(Build) 2.00 mpp[tiflash] ", + " │ └─ExchangeSender 2.00 mpp[tiflash] ExchangeType: Broadcast", + " │ └─TableFullScan 2.00 mpp[tiflash] table:d1_t keep order:false", + " └─TableFullScan(Probe) 8.00 mpp[tiflash] table:fact_t keep order:false" ] }, { @@ -3242,14 +3260,15 @@ { "SQL": "explain format = 'brief' select count(*) from fact_t where d1_k not in (select d1_k from d1_t)", "Plan": [ - "StreamAgg 1.00 root funcs:count(1)->Column#11", - "└─TableReader 6.40 root data:ExchangeSender", - " └─ExchangeSender 6.40 mpp[tiflash] ExchangeType: PassThrough", - " └─HashJoin 6.40 mpp[tiflash] CARTESIAN anti semi join, other cond:eq(test.fact_t.d1_k, test.d1_t.d1_k)", - " ├─ExchangeReceiver(Build) 2.00 mpp[tiflash] ", - " │ └─ExchangeSender 2.00 mpp[tiflash] ExchangeType: Broadcast", - " │ └─TableFullScan 2.00 mpp[tiflash] table:d1_t keep order:false", - " └─TableFullScan(Probe) 8.00 mpp[tiflash] table:fact_t keep order:false" + "HashAgg 1.00 root funcs:count(Column#12)->Column#11", + "└─TableReader 1.00 root data:ExchangeSender", + " └─ExchangeSender 1.00 mpp[tiflash] ExchangeType: PassThrough", + " └─HashAgg 1.00 mpp[tiflash] funcs:count(1)->Column#12", + " └─HashJoin 6.40 mpp[tiflash] CARTESIAN anti semi join, other cond:eq(test.fact_t.d1_k, test.d1_t.d1_k)", + " ├─ExchangeReceiver(Build) 2.00 mpp[tiflash] ", + " │ └─ExchangeSender 2.00 mpp[tiflash] ExchangeType: Broadcast", + " │ └─TableFullScan 2.00 mpp[tiflash] table:d1_t keep order:false", + " └─TableFullScan(Probe) 8.00 mpp[tiflash] table:fact_t keep order:false" ] } ] @@ -3498,29 +3517,31 @@ { "SQL": "explain format = 'brief' select count(*) from a left join b on a.id = b.id", "Plan": [ - "StreamAgg 1.00 root funcs:count(1)->Column#7", - "└─TableReader 2.00 root data:ExchangeSender", - " └─ExchangeSender 2.00 mpp[tiflash] ExchangeType: PassThrough", - " └─HashJoin 2.00 mpp[tiflash] left outer join, equal:[eq(test.a.id, test.b.id)]", - " ├─ExchangeReceiver(Build) 3.00 mpp[tiflash] ", - " │ └─ExchangeSender 3.00 mpp[tiflash] ExchangeType: Broadcast", - " │ └─Selection 3.00 mpp[tiflash] not(isnull(test.b.id))", - " │ └─TableFullScan 3.00 mpp[tiflash] table:b keep order:false", - " └─TableFullScan(Probe) 2.00 mpp[tiflash] table:a keep order:false" + "HashAgg 1.00 root funcs:count(Column#8)->Column#7", + "└─TableReader 1.00 root data:ExchangeSender", + " └─ExchangeSender 1.00 mpp[tiflash] ExchangeType: PassThrough", + " └─HashAgg 1.00 mpp[tiflash] funcs:count(1)->Column#8", + " └─HashJoin 2.00 mpp[tiflash] left outer join, equal:[eq(test.a.id, test.b.id)]", + " ├─ExchangeReceiver(Build) 3.00 mpp[tiflash] ", + " │ └─ExchangeSender 3.00 mpp[tiflash] ExchangeType: Broadcast", + " │ └─Selection 3.00 mpp[tiflash] not(isnull(test.b.id))", + " │ └─TableFullScan 3.00 mpp[tiflash] table:b keep order:false", + " └─TableFullScan(Probe) 2.00 mpp[tiflash] table:a keep order:false" ] }, { "SQL": "explain format = 'brief' select count(*) from b right join a on a.id = b.id", "Plan": [ - "StreamAgg 1.00 root funcs:count(1)->Column#7", - "└─TableReader 2.00 root data:ExchangeSender", - " └─ExchangeSender 2.00 mpp[tiflash] ExchangeType: PassThrough", - " └─HashJoin 2.00 mpp[tiflash] right outer join, equal:[eq(test.b.id, test.a.id)]", - " ├─ExchangeReceiver(Build) 3.00 mpp[tiflash] ", - " │ └─ExchangeSender 3.00 mpp[tiflash] ExchangeType: Broadcast", - " │ └─Selection 3.00 mpp[tiflash] not(isnull(test.b.id))", - " │ └─TableFullScan 3.00 mpp[tiflash] table:b keep order:false", - " └─TableFullScan(Probe) 2.00 mpp[tiflash] table:a keep order:false" + "HashAgg 1.00 root funcs:count(Column#8)->Column#7", + "└─TableReader 1.00 root data:ExchangeSender", + " └─ExchangeSender 1.00 mpp[tiflash] ExchangeType: PassThrough", + " └─HashAgg 1.00 mpp[tiflash] funcs:count(1)->Column#8", + " └─HashJoin 2.00 mpp[tiflash] right outer join, equal:[eq(test.b.id, test.a.id)]", + " ├─ExchangeReceiver(Build) 3.00 mpp[tiflash] ", + " │ └─ExchangeSender 3.00 mpp[tiflash] ExchangeType: Broadcast", + " │ └─Selection 3.00 mpp[tiflash] not(isnull(test.b.id))", + " │ └─TableFullScan 3.00 mpp[tiflash] table:b keep order:false", + " └─TableFullScan(Probe) 2.00 mpp[tiflash] table:a keep order:false" ] } ] @@ -3531,33 +3552,35 @@ { "SQL": "explain format = 'brief' select count(*) from a left join b on a.id = b.id", "Plan": [ - "StreamAgg 1.00 root funcs:count(1)->Column#7", - "└─TableReader 2.00 root data:ExchangeSender", - " └─ExchangeSender 2.00 mpp[tiflash] ExchangeType: PassThrough", - " └─HashJoin 2.00 mpp[tiflash] left outer join, equal:[eq(test.a.id, test.b.id)]", - " ├─ExchangeReceiver(Build) 3.00 mpp[tiflash] ", - " │ └─ExchangeSender 3.00 mpp[tiflash] ExchangeType: HashPartition, Hash Cols: [name: test.b.id, collate: binary]", - " │ └─Selection 3.00 mpp[tiflash] not(isnull(test.b.id))", - " │ └─TableFullScan 3.00 mpp[tiflash] table:b keep order:false", - " └─ExchangeReceiver(Probe) 2.00 mpp[tiflash] ", - " └─ExchangeSender 2.00 mpp[tiflash] ExchangeType: HashPartition, Hash Cols: [name: test.a.id, collate: binary]", - " └─TableFullScan 2.00 mpp[tiflash] table:a keep order:false" + "HashAgg 1.00 root funcs:count(Column#8)->Column#7", + "└─TableReader 1.00 root data:ExchangeSender", + " └─ExchangeSender 1.00 mpp[tiflash] ExchangeType: PassThrough", + " └─HashAgg 1.00 mpp[tiflash] funcs:count(1)->Column#8", + " └─HashJoin 2.00 mpp[tiflash] left outer join, equal:[eq(test.a.id, test.b.id)]", + " ├─ExchangeReceiver(Build) 3.00 mpp[tiflash] ", + " │ └─ExchangeSender 3.00 mpp[tiflash] ExchangeType: HashPartition, Hash Cols: [name: test.b.id, collate: binary]", + " │ └─Selection 3.00 mpp[tiflash] not(isnull(test.b.id))", + " │ └─TableFullScan 3.00 mpp[tiflash] table:b keep order:false", + " └─ExchangeReceiver(Probe) 2.00 mpp[tiflash] ", + " └─ExchangeSender 2.00 mpp[tiflash] ExchangeType: HashPartition, Hash Cols: [name: test.a.id, collate: binary]", + " └─TableFullScan 2.00 mpp[tiflash] table:a keep order:false" ] }, { "SQL": "explain format = 'brief' select count(*) from b right join a on a.id = b.id", "Plan": [ - "StreamAgg 1.00 root funcs:count(1)->Column#7", - "└─TableReader 2.00 root data:ExchangeSender", - " └─ExchangeSender 2.00 mpp[tiflash] ExchangeType: PassThrough", - " └─HashJoin 2.00 mpp[tiflash] right outer join, equal:[eq(test.b.id, test.a.id)]", - " ├─ExchangeReceiver(Build) 3.00 mpp[tiflash] ", - " │ └─ExchangeSender 3.00 mpp[tiflash] ExchangeType: HashPartition, Hash Cols: [name: test.b.id, collate: binary]", - " │ └─Selection 3.00 mpp[tiflash] not(isnull(test.b.id))", - " │ └─TableFullScan 3.00 mpp[tiflash] table:b keep order:false", - " └─ExchangeReceiver(Probe) 2.00 mpp[tiflash] ", - " └─ExchangeSender 2.00 mpp[tiflash] ExchangeType: HashPartition, Hash Cols: [name: test.a.id, collate: binary]", - " └─TableFullScan 2.00 mpp[tiflash] table:a keep order:false" + "HashAgg 1.00 root funcs:count(Column#8)->Column#7", + "└─TableReader 1.00 root data:ExchangeSender", + " └─ExchangeSender 1.00 mpp[tiflash] ExchangeType: PassThrough", + " └─HashAgg 1.00 mpp[tiflash] funcs:count(1)->Column#8", + " └─HashJoin 2.00 mpp[tiflash] right outer join, equal:[eq(test.b.id, test.a.id)]", + " ├─ExchangeReceiver(Build) 3.00 mpp[tiflash] ", + " │ └─ExchangeSender 3.00 mpp[tiflash] ExchangeType: HashPartition, Hash Cols: [name: test.b.id, collate: binary]", + " │ └─Selection 3.00 mpp[tiflash] not(isnull(test.b.id))", + " │ └─TableFullScan 3.00 mpp[tiflash] table:b keep order:false", + " └─ExchangeReceiver(Probe) 2.00 mpp[tiflash] ", + " └─ExchangeSender 2.00 mpp[tiflash] ExchangeType: HashPartition, Hash Cols: [name: test.a.id, collate: binary]", + " └─TableFullScan 2.00 mpp[tiflash] table:a keep order:false" ] } ] @@ -3568,33 +3591,35 @@ { "SQL": "explain format = 'brief' select count(*) from a left join b on a.id = b.id", "Plan": [ - "StreamAgg 1.00 root funcs:count(1)->Column#7", - "└─TableReader 2.00 root data:ExchangeSender", - " └─ExchangeSender 2.00 mpp[tiflash] ExchangeType: PassThrough", - " └─HashJoin 2.00 mpp[tiflash] left outer join, equal:[eq(test.a.id, test.b.id)]", - " ├─ExchangeReceiver(Build) 2.00 mpp[tiflash] ", - " │ └─ExchangeSender 2.00 mpp[tiflash] ExchangeType: HashPartition, Hash Cols: [name: test.a.id, collate: binary]", - " │ └─TableFullScan 2.00 mpp[tiflash] table:a keep order:false", - " └─ExchangeReceiver(Probe) 3.00 mpp[tiflash] ", - " └─ExchangeSender 3.00 mpp[tiflash] ExchangeType: HashPartition, Hash Cols: [name: test.b.id, collate: binary]", - " └─Selection 3.00 mpp[tiflash] not(isnull(test.b.id))", - " └─TableFullScan 3.00 mpp[tiflash] table:b keep order:false" + "HashAgg 1.00 root funcs:count(Column#8)->Column#7", + "└─TableReader 1.00 root data:ExchangeSender", + " └─ExchangeSender 1.00 mpp[tiflash] ExchangeType: PassThrough", + " └─HashAgg 1.00 mpp[tiflash] funcs:count(1)->Column#8", + " └─HashJoin 2.00 mpp[tiflash] left outer join, equal:[eq(test.a.id, test.b.id)]", + " ├─ExchangeReceiver(Build) 2.00 mpp[tiflash] ", + " │ └─ExchangeSender 2.00 mpp[tiflash] ExchangeType: HashPartition, Hash Cols: [name: test.a.id, collate: binary]", + " │ └─TableFullScan 2.00 mpp[tiflash] table:a keep order:false", + " └─ExchangeReceiver(Probe) 3.00 mpp[tiflash] ", + " └─ExchangeSender 3.00 mpp[tiflash] ExchangeType: HashPartition, Hash Cols: [name: test.b.id, collate: binary]", + " └─Selection 3.00 mpp[tiflash] not(isnull(test.b.id))", + " └─TableFullScan 3.00 mpp[tiflash] table:b keep order:false" ] }, { "SQL": "explain format = 'brief' select count(*) from b right join a on a.id = b.id", "Plan": [ - "StreamAgg 1.00 root funcs:count(1)->Column#7", - "└─TableReader 2.00 root data:ExchangeSender", - " └─ExchangeSender 2.00 mpp[tiflash] ExchangeType: PassThrough", - " └─HashJoin 2.00 mpp[tiflash] right outer join, equal:[eq(test.b.id, test.a.id)]", - " ├─ExchangeReceiver(Build) 2.00 mpp[tiflash] ", - " │ └─ExchangeSender 2.00 mpp[tiflash] ExchangeType: HashPartition, Hash Cols: [name: test.a.id, collate: binary]", - " │ └─TableFullScan 2.00 mpp[tiflash] table:a keep order:false", - " └─ExchangeReceiver(Probe) 3.00 mpp[tiflash] ", - " └─ExchangeSender 3.00 mpp[tiflash] ExchangeType: HashPartition, Hash Cols: [name: test.b.id, collate: binary]", - " └─Selection 3.00 mpp[tiflash] not(isnull(test.b.id))", - " └─TableFullScan 3.00 mpp[tiflash] table:b keep order:false" + "HashAgg 1.00 root funcs:count(Column#8)->Column#7", + "└─TableReader 1.00 root data:ExchangeSender", + " └─ExchangeSender 1.00 mpp[tiflash] ExchangeType: PassThrough", + " └─HashAgg 1.00 mpp[tiflash] funcs:count(1)->Column#8", + " └─HashJoin 2.00 mpp[tiflash] right outer join, equal:[eq(test.b.id, test.a.id)]", + " ├─ExchangeReceiver(Build) 2.00 mpp[tiflash] ", + " │ └─ExchangeSender 2.00 mpp[tiflash] ExchangeType: HashPartition, Hash Cols: [name: test.a.id, collate: binary]", + " │ └─TableFullScan 2.00 mpp[tiflash] table:a keep order:false", + " └─ExchangeReceiver(Probe) 3.00 mpp[tiflash] ", + " └─ExchangeSender 3.00 mpp[tiflash] ExchangeType: HashPartition, Hash Cols: [name: test.b.id, collate: binary]", + " └─Selection 3.00 mpp[tiflash] not(isnull(test.b.id))", + " └─TableFullScan 3.00 mpp[tiflash] table:b keep order:false" ] } ] @@ -3946,18 +3971,19 @@ "TableReader 2.00 root data:ExchangeSender", "└─ExchangeSender 2.00 mpp[tiflash] ExchangeType: PassThrough", " └─Projection 2.00 mpp[tiflash] Column#9, test.t2.v1, test.t2.v2", - " └─HashAgg 2.00 mpp[tiflash] group by:test.t2.v1, test.t2.v2, funcs:count(1)->Column#9, funcs:firstrow(test.t2.v1)->test.t2.v1, funcs:firstrow(test.t2.v2)->test.t2.v2", + " └─HashAgg 2.00 mpp[tiflash] group by:test.t2.v1, test.t2.v2, funcs:sum(Column#22)->Column#9, funcs:firstrow(test.t2.v1)->test.t2.v1, funcs:firstrow(test.t2.v2)->test.t2.v2", " └─ExchangeReceiver 2.00 mpp[tiflash] ", " └─ExchangeSender 2.00 mpp[tiflash] ExchangeType: HashPartition, Hash Cols: [name: test.t2.v1, collate: binary], [name: test.t2.v2, collate: binary]", - " └─HashJoin 2.00 mpp[tiflash] left outer join, equal:[eq(test.t1.v1, test.t2.v1) eq(test.t1.v2, test.t2.v2)]", - " ├─ExchangeReceiver(Build) 2.00 mpp[tiflash] ", - " │ └─ExchangeSender 2.00 mpp[tiflash] ExchangeType: HashPartition, Hash Cols: [name: test.t1.v1, collate: binary], [name: test.t1.v2, collate: binary]", - " │ └─TableFullScan 2.00 mpp[tiflash] table:t1 keep order:false", - " └─ExchangeReceiver(Probe) 8.00 mpp[tiflash] ", - " └─ExchangeSender 8.00 mpp[tiflash] ExchangeType: HashPartition, Hash Cols: [name: Column#12, collate: binary], [name: Column#13, collate: binary]", - " └─Projection 8.00 mpp[tiflash] test.t2.v1, test.t2.v2, cast(test.t2.v1, decimal(20,2))->Column#12, cast(test.t2.v2, decimal(20,2))->Column#13", - " └─Selection 8.00 mpp[tiflash] not(isnull(test.t2.v1)), not(isnull(test.t2.v2))", - " └─TableFullScan 8.00 mpp[tiflash] table:t2 keep order:false" + " └─HashAgg 2.00 mpp[tiflash] group by:test.t2.v1, test.t2.v2, funcs:count(1)->Column#22", + " └─HashJoin 2.00 mpp[tiflash] left outer join, equal:[eq(test.t1.v1, test.t2.v1) eq(test.t1.v2, test.t2.v2)]", + " ├─ExchangeReceiver(Build) 2.00 mpp[tiflash] ", + " │ └─ExchangeSender 2.00 mpp[tiflash] ExchangeType: HashPartition, Hash Cols: [name: test.t1.v1, collate: binary], [name: test.t1.v2, collate: binary]", + " │ └─TableFullScan 2.00 mpp[tiflash] table:t1 keep order:false", + " └─ExchangeReceiver(Probe) 8.00 mpp[tiflash] ", + " └─ExchangeSender 8.00 mpp[tiflash] ExchangeType: HashPartition, Hash Cols: [name: Column#14, collate: binary], [name: Column#15, collate: binary]", + " └─Projection 8.00 mpp[tiflash] test.t2.v1, test.t2.v2, cast(test.t2.v1, decimal(20,2))->Column#14, cast(test.t2.v2, decimal(20,2))->Column#15", + " └─Selection 8.00 mpp[tiflash] not(isnull(test.t2.v1)), not(isnull(test.t2.v2))", + " └─TableFullScan 8.00 mpp[tiflash] table:t2 keep order:false" ] }, { @@ -3966,17 +3992,18 @@ "TableReader 1.00 root data:ExchangeSender", "└─ExchangeSender 1.00 mpp[tiflash] ExchangeType: PassThrough", " └─Projection 1.00 mpp[tiflash] Column#9, test.t2.v1, test.t2.v2", - " └─HashAgg 1.00 mpp[tiflash] group by:test.t2.v1, test.t2.v2, funcs:count(1)->Column#9, funcs:firstrow(test.t2.v1)->test.t2.v1, funcs:firstrow(test.t2.v2)->test.t2.v2", + " └─HashAgg 1.00 mpp[tiflash] group by:test.t2.v1, test.t2.v2, funcs:sum(Column#16)->Column#9, funcs:firstrow(test.t2.v1)->test.t2.v1, funcs:firstrow(test.t2.v2)->test.t2.v2", " └─ExchangeReceiver 1.00 mpp[tiflash] ", " └─ExchangeSender 1.00 mpp[tiflash] ExchangeType: HashPartition, Hash Cols: [name: test.t2.v1, collate: binary], [name: test.t2.v2, collate: binary]", - " └─HashJoin 1.00 mpp[tiflash] left outer join, equal:[eq(test.t3.v1, test.t2.v1) eq(test.t3.v2, test.t2.v2)]", - " ├─ExchangeReceiver(Build) 1.00 mpp[tiflash] ", - " │ └─ExchangeSender 1.00 mpp[tiflash] ExchangeType: HashPartition, Hash Cols: [name: test.t3.v1, collate: binary], [name: test.t3.v2, collate: binary]", - " │ └─TableFullScan 1.00 mpp[tiflash] table:t3 keep order:false", - " └─ExchangeReceiver(Probe) 8.00 mpp[tiflash] ", - " └─ExchangeSender 8.00 mpp[tiflash] ExchangeType: HashPartition, Hash Cols: [name: test.t2.v1, collate: binary], [name: test.t2.v2, collate: binary]", - " └─Selection 8.00 mpp[tiflash] not(isnull(test.t2.v1)), not(isnull(test.t2.v2))", - " └─TableFullScan 8.00 mpp[tiflash] table:t2 keep order:false" + " └─HashAgg 1.00 mpp[tiflash] group by:test.t2.v1, test.t2.v2, funcs:count(1)->Column#16", + " └─HashJoin 1.00 mpp[tiflash] left outer join, equal:[eq(test.t3.v1, test.t2.v1) eq(test.t3.v2, test.t2.v2)]", + " ├─ExchangeReceiver(Build) 1.00 mpp[tiflash] ", + " │ └─ExchangeSender 1.00 mpp[tiflash] ExchangeType: HashPartition, Hash Cols: [name: test.t3.v1, collate: binary], [name: test.t3.v2, collate: binary]", + " │ └─TableFullScan 1.00 mpp[tiflash] table:t3 keep order:false", + " └─ExchangeReceiver(Probe) 8.00 mpp[tiflash] ", + " └─ExchangeSender 8.00 mpp[tiflash] ExchangeType: HashPartition, Hash Cols: [name: test.t2.v1, collate: binary], [name: test.t2.v2, collate: binary]", + " └─Selection 8.00 mpp[tiflash] not(isnull(test.t2.v1)), not(isnull(test.t2.v2))", + " └─TableFullScan 8.00 mpp[tiflash] table:t2 keep order:false" ] } ] @@ -4187,9 +4214,9 @@ { "SQL": "desc format = 'brief' select avg(a) from t", "Plan": [ - "StreamAgg 1.00 root funcs:avg(Column#7, Column#8)->Column#4", - "└─TableReader 1.00 root data:StreamAgg", - " └─StreamAgg 1.00 batchCop[tiflash] funcs:count(Column#9)->Column#7, funcs:sum(Column#10)->Column#8", + "HashAgg 1.00 root funcs:avg(Column#5, Column#6)->Column#4", + "└─TableReader 1.00 root data:HashAgg", + " └─HashAgg 1.00 batchCop[tiflash] funcs:count(Column#9)->Column#5, funcs:sum(Column#10)->Column#6", " └─Projection 10000.00 batchCop[tiflash] test.t.a, cast(test.t.a, decimal(10,0) BINARY)->Column#10", " └─TableFullScan 10000.00 batchCop[tiflash] table:t keep order:false, stats:pseudo" ], @@ -4198,9 +4225,9 @@ { "SQL": "desc format = 'brief' select /*+ read_from_storage(tiflash[t]) */ avg(a) from t", "Plan": [ - "StreamAgg 1.00 root funcs:avg(Column#7, Column#8)->Column#4", - "└─TableReader 1.00 root data:StreamAgg", - " └─StreamAgg 1.00 batchCop[tiflash] funcs:count(Column#9)->Column#7, funcs:sum(Column#10)->Column#8", + "HashAgg 1.00 root funcs:avg(Column#5, Column#6)->Column#4", + "└─TableReader 1.00 root data:HashAgg", + " └─HashAgg 1.00 batchCop[tiflash] funcs:count(Column#9)->Column#5, funcs:sum(Column#10)->Column#6", " └─Projection 10000.00 batchCop[tiflash] test.t.a, cast(test.t.a, decimal(10,0) BINARY)->Column#10", " └─TableFullScan 10000.00 batchCop[tiflash] table:t keep order:false, stats:pseudo" ], @@ -4209,9 +4236,9 @@ { "SQL": "desc format = 'brief' select /*+ read_from_storage(tiflash[t]) */ sum(a) from t", "Plan": [ - "StreamAgg 1.00 root funcs:sum(Column#6)->Column#4", - "└─TableReader 1.00 root data:StreamAgg", - " └─StreamAgg 1.00 batchCop[tiflash] funcs:sum(Column#7)->Column#6", + "HashAgg 1.00 root funcs:sum(Column#5)->Column#4", + "└─TableReader 1.00 root data:HashAgg", + " └─HashAgg 1.00 batchCop[tiflash] funcs:sum(Column#7)->Column#5", " └─Projection 10000.00 batchCop[tiflash] cast(test.t.a, decimal(10,0) BINARY)->Column#7", " └─TableFullScan 10000.00 batchCop[tiflash] table:t keep order:false, stats:pseudo" ], @@ -4220,9 +4247,9 @@ { "SQL": "desc format = 'brief' select /*+ read_from_storage(tiflash[t]) */ sum(a+1) from t", "Plan": [ - "StreamAgg 1.00 root funcs:sum(Column#6)->Column#4", - "└─TableReader 1.00 root data:StreamAgg", - " └─StreamAgg 1.00 batchCop[tiflash] funcs:sum(Column#7)->Column#6", + "HashAgg 1.00 root funcs:sum(Column#5)->Column#4", + "└─TableReader 1.00 root data:HashAgg", + " └─HashAgg 1.00 batchCop[tiflash] funcs:sum(Column#7)->Column#5", " └─Projection 10000.00 batchCop[tiflash] cast(plus(test.t.a, 1), decimal(20,0) BINARY)->Column#7", " └─TableFullScan 10000.00 batchCop[tiflash] table:t keep order:false, stats:pseudo" ], @@ -4231,9 +4258,9 @@ { "SQL": "desc format = 'brief' select /*+ read_from_storage(tiflash[t]) */ sum(isnull(a)) from t", "Plan": [ - "StreamAgg 1.00 root funcs:sum(Column#6)->Column#4", - "└─TableReader 1.00 root data:StreamAgg", - " └─StreamAgg 1.00 batchCop[tiflash] funcs:sum(Column#7)->Column#6", + "HashAgg 1.00 root funcs:sum(Column#5)->Column#4", + "└─TableReader 1.00 root data:HashAgg", + " └─HashAgg 1.00 batchCop[tiflash] funcs:sum(Column#7)->Column#5", " └─Projection 10000.00 batchCop[tiflash] cast(isnull(test.t.a), decimal(20,0) BINARY)->Column#7", " └─TableFullScan 10000.00 batchCop[tiflash] table:t keep order:false, stats:pseudo" ], @@ -4269,7 +4296,7 @@ "SQL": "desc format = 'brief' select * from tt where (tt.a > 1 and tt.a < 20) or (tt.a >= 30 and tt.a < 55)", "Plan": [ "TableReader 44.00 root data:TableRangeScan", - "└─TableRangeScan 44.00 cop[tiflash] table:tt range:(1,20), [30,55), keep order:false, stats:pseudo" + "└─TableRangeScan 44.00 cop[tikv] table:tt range:(1,20), [30,55), keep order:false, stats:pseudo" ], "Warn": null }, @@ -4329,63 +4356,1255 @@ ] }, { - "Name": "TestReadFromStorageHintAndIsolationRead", + "Name": "TestViewHint", "Cases": [ { - "SQL": "desc format = 'brief' select /*+ read_from_storage(tikv[t], tiflash[t]) */ avg(a) from t", - "Plan": [ - "StreamAgg 1.00 root funcs:avg(Column#7, Column#8)->Column#4", - "└─IndexReader 1.00 root index:StreamAgg", - " └─StreamAgg 1.00 cop[tikv] funcs:count(test.t.a)->Column#7, funcs:sum(test.t.a)->Column#8", - " └─IndexFullScan 10000.00 cop[tikv] table:t, index:ia(a) keep order:false, stats:pseudo" + "SQL": "explain format = 'brief' select /*+ qb_name(qb_v_2, v@sel_1 .@sel_2), merge_join(t1@qb_v_2) */ * from v;", + "Plan": [ + "HashJoin 9990.00 root inner join, equal:[eq(test.t.a, Column#10)]", + "├─HashAgg(Build) 7992.00 root group by:test.t2.a, funcs:count(1)->Column#10", + "│ └─MergeJoin 12487.50 root inner join, left key:test.t1.b, right key:test.t2.b", + "│ ├─Sort(Build) 9990.00 root test.t2.b", + "│ │ └─TableReader 9990.00 root data:Selection", + "│ │ └─Selection 9990.00 cop[tikv] not(isnull(test.t2.b))", + "│ │ └─TableFullScan 10000.00 cop[tikv] table:t2 keep order:false, stats:pseudo", + "│ └─Sort(Probe) 9990.00 root test.t1.b", + "│ └─TableReader 9990.00 root data:Selection", + "│ └─Selection 9990.00 cop[tikv] not(isnull(test.t1.b))", + "│ └─TableFullScan 10000.00 cop[tikv] table:t1 keep order:false, stats:pseudo", + "└─TableReader(Probe) 9990.00 root data:Selection", + " └─Selection 9990.00 cop[tikv] not(isnull(test.t.a))", + " └─TableFullScan 10000.00 cop[tikv] table:t keep order:false, stats:pseudo" ], - "Warn": [ - "[planner:1815]Storage hints are conflict, you can only specify one storage type of table test.t" - ] + "Warn": null }, { - "SQL": "desc format = 'brief' select /*+ read_from_storage(tikv[t]) */ avg(a) from t", - "Plan": [ - "StreamAgg 1.00 root funcs:avg(Column#7, Column#8)->Column#4", - "└─IndexReader 1.00 root index:StreamAgg", - " └─StreamAgg 1.00 cop[tikv] funcs:count(test.t.a)->Column#7, funcs:sum(test.t.a)->Column#8", - " └─IndexFullScan 10000.00 cop[tikv] table:t, index:ia(a) keep order:false, stats:pseudo" + "SQL": "explain format = 'brief' select /*+ qb_name(qb_v_2, v@sel_1 .@sel_2), merge_join(t1@qb_v_2), stream_agg(@qb_v_2), qb_name(qb_v_1, v@sel_1 .@sel1), merge_join(t@qb_v_1) */ * from v;", + "Plan": [ + "HashJoin 9990.00 root inner join, equal:[eq(test.t.a, Column#10)]", + "├─StreamAgg(Build) 7992.00 root group by:test.t2.a, funcs:count(1)->Column#10", + "│ └─Sort 12487.50 root test.t2.a", + "│ └─MergeJoin 12487.50 root inner join, left key:test.t1.b, right key:test.t2.b", + "│ ├─Sort(Build) 9990.00 root test.t2.b", + "│ │ └─TableReader 9990.00 root data:Selection", + "│ │ └─Selection 9990.00 cop[tikv] not(isnull(test.t2.b))", + "│ │ └─TableFullScan 10000.00 cop[tikv] table:t2 keep order:false, stats:pseudo", + "│ └─Sort(Probe) 9990.00 root test.t1.b", + "│ └─TableReader 9990.00 root data:Selection", + "│ └─Selection 9990.00 cop[tikv] not(isnull(test.t1.b))", + "│ └─TableFullScan 10000.00 cop[tikv] table:t1 keep order:false, stats:pseudo", + "└─TableReader(Probe) 9990.00 root data:Selection", + " └─Selection 9990.00 cop[tikv] not(isnull(test.t.a))", + " └─TableFullScan 10000.00 cop[tikv] table:t keep order:false, stats:pseudo" ], "Warn": null }, { - "SQL": "desc format = 'brief' select /*+ read_from_storage(tiflash[t]) */ avg(a) from t", - "Plan": [ - "StreamAgg 1.00 root funcs:avg(Column#7, Column#8)->Column#4", - "└─IndexReader 1.00 root index:StreamAgg", - " └─StreamAgg 1.00 cop[tikv] funcs:count(test.t.a)->Column#7, funcs:sum(test.t.a)->Column#8", - " └─IndexFullScan 10000.00 cop[tikv] table:t, index:ia(a) keep order:false, stats:pseudo" + "SQL": "explain format = 'brief' select /*+ qb_name(qb_v_2, v1@sel_1 . v@sel_2 .@sel_2), merge_join(t1@qb_v_2) */ * from v1;", + "Plan": [ + "HashJoin 9980.01 root inner join, equal:[eq(test.t.a, Column#17)]", + "├─HashAgg(Build) 7984.01 root group by:test.t.a, funcs:count(1)->Column#17", + "│ └─HashJoin 12475.01 root inner join, equal:[eq(test.t.a, Column#16)]", + "│ ├─HashAgg(Build) 7992.00 root group by:test.t2.a, funcs:count(1)->Column#16", + "│ │ └─MergeJoin 12487.50 root inner join, left key:test.t1.b, right key:test.t2.b", + "│ │ ├─Sort(Build) 9990.00 root test.t2.b", + "│ │ │ └─TableReader 9990.00 root data:Selection", + "│ │ │ └─Selection 9990.00 cop[tikv] not(isnull(test.t2.b))", + "│ │ │ └─TableFullScan 10000.00 cop[tikv] table:t2 keep order:false, stats:pseudo", + "│ │ └─Sort(Probe) 9990.00 root test.t1.b", + "│ │ └─TableReader 9990.00 root data:Selection", + "│ │ └─Selection 9990.00 cop[tikv] not(isnull(test.t1.b))", + "│ │ └─TableFullScan 10000.00 cop[tikv] table:t1 keep order:false, stats:pseudo", + "│ └─HashJoin(Probe) 12475.01 root inner join, equal:[eq(test.t.b, test.t1.b)]", + "│ ├─TableReader(Build) 9980.01 root data:Selection", + "│ │ └─Selection 9980.01 cop[tikv] not(isnull(test.t.a)), not(isnull(test.t.b))", + "│ │ └─TableFullScan 10000.00 cop[tikv] table:t keep order:false, stats:pseudo", + "│ └─TableReader(Probe) 9990.00 root data:Selection", + "│ └─Selection 9990.00 cop[tikv] not(isnull(test.t1.b))", + "│ └─TableFullScan 10000.00 cop[tikv] table:t1 keep order:false, stats:pseudo", + "└─TableReader(Probe) 9990.00 root data:Selection", + " └─Selection 9990.00 cop[tikv] not(isnull(test.t.a))", + " └─TableFullScan 10000.00 cop[tikv] table:t keep order:false, stats:pseudo" ], - "Warn": [ - "[planner:1815]No available path for table test.t with the store type tiflash of the hint /*+ read_from_storage */, please check the status of the table replica and variable value of tidb_isolation_read_engines(map[0:{}])" - ] - } - ] - }, - { - "Name": "TestIsolationReadDoNotFilterSystemDB", - "Cases": [ + "Warn": null + }, { - "SQL": "desc format = 'brief' select * from metrics_schema.tidb_query_duration where time >= '2019-12-23 16:10:13' and time <= '2019-12-23 16:30:13'", - "Plan": [ - "MemTableScan 10000.00 root table:tidb_query_duration PromQL:histogram_quantile(0.9, sum(rate(tidb_server_handle_query_duration_seconds_bucket{}[60s])) by (le,sql_type,instance)), start_time:2019-12-23 16:10:13, end_time:2019-12-23 16:30:13, step:1m0s" - ] + "SQL": "explain format = 'brief' select /*+ qb_name(qb_v_2, v1@sel_1 . v@sel_2 .@sel_2), merge_join(t1@qb_v_2), stream_agg(@qb_v_2), qb_name(qb_v_1, v1@sel_1 . v@sel_2 .@sel_1), merge_join(t@qb_v_1) */ * from v1;", + "Plan": [ + "HashJoin 9980.01 root inner join, equal:[eq(test.t.a, Column#17)]", + "├─HashAgg(Build) 7984.01 root group by:test.t.a, funcs:count(1)->Column#17", + "│ └─HashJoin 12475.01 root inner join, equal:[eq(test.t1.b, test.t.b)]", + "│ ├─MergeJoin(Build) 9980.01 root inner join, left key:test.t.a, right key:Column#16", + "│ │ ├─Sort(Build) 7992.00 root Column#16", + "│ │ │ └─StreamAgg 7992.00 root group by:test.t2.a, funcs:count(1)->Column#16", + "│ │ │ └─Sort 12487.50 root test.t2.a", + "│ │ │ └─MergeJoin 12487.50 root inner join, left key:test.t1.b, right key:test.t2.b", + "│ │ │ ├─Sort(Build) 9990.00 root test.t2.b", + "│ │ │ │ └─TableReader 9990.00 root data:Selection", + "│ │ │ │ └─Selection 9990.00 cop[tikv] not(isnull(test.t2.b))", + "│ │ │ │ └─TableFullScan 10000.00 cop[tikv] table:t2 keep order:false, stats:pseudo", + "│ │ │ └─Sort(Probe) 9990.00 root test.t1.b", + "│ │ │ └─TableReader 9990.00 root data:Selection", + "│ │ │ └─Selection 9990.00 cop[tikv] not(isnull(test.t1.b))", + "│ │ │ └─TableFullScan 10000.00 cop[tikv] table:t1 keep order:false, stats:pseudo", + "│ │ └─Sort(Probe) 9980.01 root test.t.a", + "│ │ └─TableReader 9980.01 root data:Selection", + "│ │ └─Selection 9980.01 cop[tikv] not(isnull(test.t.a)), not(isnull(test.t.b))", + "│ │ └─TableFullScan 10000.00 cop[tikv] table:t keep order:false, stats:pseudo", + "│ └─TableReader(Probe) 9990.00 root data:Selection", + "│ └─Selection 9990.00 cop[tikv] not(isnull(test.t1.b))", + "│ └─TableFullScan 10000.00 cop[tikv] table:t1 keep order:false, stats:pseudo", + "└─TableReader(Probe) 9990.00 root data:Selection", + " └─Selection 9990.00 cop[tikv] not(isnull(test.t.a))", + " └─TableFullScan 10000.00 cop[tikv] table:t keep order:false, stats:pseudo" + ], + "Warn": null }, { - "SQL": "desc format = 'brief' select * from information_schema.tables", - "Plan": [ - "MemTableScan 10000.00 root table:TABLES " - ] + "SQL": "explain format = 'brief' select /*+ qb_name(qb_v_2, v2@sel_1 . v1@sel_2 . v@sel_2 .@sel_2), merge_join(t1@qb_v_2) */ * from v2;", + "Plan": [ + "HashJoin 9980.01 root inner join, equal:[eq(test.t.a, Column#24)]", + "├─HashAgg(Build) 7984.01 root group by:test.t.a, funcs:count(1)->Column#24", + "│ └─HashJoin 12475.01 root inner join, equal:[eq(test.t.a, Column#23)]", + "│ ├─HashAgg(Build) 7984.01 root group by:test.t.a, funcs:count(1)->Column#23", + "│ │ └─HashJoin 12475.01 root inner join, equal:[eq(test.t.a, Column#22)]", + "│ │ ├─HashAgg(Build) 7992.00 root group by:test.t2.a, funcs:count(1)->Column#22", + "│ │ │ └─MergeJoin 12487.50 root inner join, left key:test.t1.b, right key:test.t2.b", + "│ │ │ ├─Sort(Build) 9990.00 root test.t2.b", + "│ │ │ │ └─TableReader 9990.00 root data:Selection", + "│ │ │ │ └─Selection 9990.00 cop[tikv] not(isnull(test.t2.b))", + "│ │ │ │ └─TableFullScan 10000.00 cop[tikv] table:t2 keep order:false, stats:pseudo", + "│ │ │ └─Sort(Probe) 9990.00 root test.t1.b", + "│ │ │ └─TableReader 9990.00 root data:Selection", + "│ │ │ └─Selection 9990.00 cop[tikv] not(isnull(test.t1.b))", + "│ │ │ └─TableFullScan 10000.00 cop[tikv] table:t1 keep order:false, stats:pseudo", + "│ │ └─HashJoin(Probe) 12475.01 root inner join, equal:[eq(test.t.b, test.t1.b)]", + "│ │ ├─TableReader(Build) 9980.01 root data:Selection", + "│ │ │ └─Selection 9980.01 cop[tikv] not(isnull(test.t.a)), not(isnull(test.t.b))", + "│ │ │ └─TableFullScan 10000.00 cop[tikv] table:t keep order:false, stats:pseudo", + "│ │ └─TableReader(Probe) 9990.00 root data:Selection", + "│ │ └─Selection 9990.00 cop[tikv] not(isnull(test.t1.b))", + "│ │ └─TableFullScan 10000.00 cop[tikv] table:t1 keep order:false, stats:pseudo", + "│ └─HashJoin(Probe) 12475.01 root inner join, equal:[eq(test.t.b, test.t1.b)]", + "│ ├─TableReader(Build) 9980.01 root data:Selection", + "│ │ └─Selection 9980.01 cop[tikv] not(isnull(test.t.a)), not(isnull(test.t.b))", + "│ │ └─TableFullScan 10000.00 cop[tikv] table:t keep order:false, stats:pseudo", + "│ └─TableReader(Probe) 9990.00 root data:Selection", + "│ └─Selection 9990.00 cop[tikv] not(isnull(test.t1.b))", + "│ └─TableFullScan 10000.00 cop[tikv] table:t1 keep order:false, stats:pseudo", + "└─TableReader(Probe) 9990.00 root data:Selection", + " └─Selection 9990.00 cop[tikv] not(isnull(test.t.a))", + " └─TableFullScan 10000.00 cop[tikv] table:t keep order:false, stats:pseudo" + ], + "Warn": null }, { - "SQL": "desc format = 'brief' select * from mysql.stats_meta", - "Plan": [ - "TableReader 10000.00 root data:TableFullScan", + "SQL": "explain format = 'brief' select /*+ qb_name(qb_v_2, v2@sel_1 . v1@sel_2 . v@sel_2 .@sel_2), merge_join(t1@qb_v_2), stream_agg(@qb_v_2), qb_name(qb_v_1, v2@sel_1 . v1@sel_2 . v@sel_2 .@sel_1), merge_join(t@qb_v_1) */ * from v2;", + "Plan": [ + "HashJoin 9980.01 root inner join, equal:[eq(test.t.a, Column#24)]", + "├─HashAgg(Build) 7984.01 root group by:test.t.a, funcs:count(1)->Column#24", + "│ └─HashJoin 12475.01 root inner join, equal:[eq(test.t.a, Column#23)]", + "│ ├─HashAgg(Build) 7984.01 root group by:test.t.a, funcs:count(1)->Column#23", + "│ │ └─HashJoin 12475.01 root inner join, equal:[eq(test.t1.b, test.t.b)]", + "│ │ ├─MergeJoin(Build) 9980.01 root inner join, left key:test.t.a, right key:Column#22", + "│ │ │ ├─Sort(Build) 7992.00 root Column#22", + "│ │ │ │ └─StreamAgg 7992.00 root group by:test.t2.a, funcs:count(1)->Column#22", + "│ │ │ │ └─Sort 12487.50 root test.t2.a", + "│ │ │ │ └─MergeJoin 12487.50 root inner join, left key:test.t1.b, right key:test.t2.b", + "│ │ │ │ ├─Sort(Build) 9990.00 root test.t2.b", + "│ │ │ │ │ └─TableReader 9990.00 root data:Selection", + "│ │ │ │ │ └─Selection 9990.00 cop[tikv] not(isnull(test.t2.b))", + "│ │ │ │ │ └─TableFullScan 10000.00 cop[tikv] table:t2 keep order:false, stats:pseudo", + "│ │ │ │ └─Sort(Probe) 9990.00 root test.t1.b", + "│ │ │ │ └─TableReader 9990.00 root data:Selection", + "│ │ │ │ └─Selection 9990.00 cop[tikv] not(isnull(test.t1.b))", + "│ │ │ │ └─TableFullScan 10000.00 cop[tikv] table:t1 keep order:false, stats:pseudo", + "│ │ │ └─Sort(Probe) 9980.01 root test.t.a", + "│ │ │ └─TableReader 9980.01 root data:Selection", + "│ │ │ └─Selection 9980.01 cop[tikv] not(isnull(test.t.a)), not(isnull(test.t.b))", + "│ │ │ └─TableFullScan 10000.00 cop[tikv] table:t keep order:false, stats:pseudo", + "│ │ └─TableReader(Probe) 9990.00 root data:Selection", + "│ │ └─Selection 9990.00 cop[tikv] not(isnull(test.t1.b))", + "│ │ └─TableFullScan 10000.00 cop[tikv] table:t1 keep order:false, stats:pseudo", + "│ └─HashJoin(Probe) 12475.01 root inner join, equal:[eq(test.t.b, test.t1.b)]", + "│ ├─TableReader(Build) 9980.01 root data:Selection", + "│ │ └─Selection 9980.01 cop[tikv] not(isnull(test.t.a)), not(isnull(test.t.b))", + "│ │ └─TableFullScan 10000.00 cop[tikv] table:t keep order:false, stats:pseudo", + "│ └─TableReader(Probe) 9990.00 root data:Selection", + "│ └─Selection 9990.00 cop[tikv] not(isnull(test.t1.b))", + "│ └─TableFullScan 10000.00 cop[tikv] table:t1 keep order:false, stats:pseudo", + "└─TableReader(Probe) 9990.00 root data:Selection", + " └─Selection 9990.00 cop[tikv] not(isnull(test.t.a))", + " └─TableFullScan 10000.00 cop[tikv] table:t keep order:false, stats:pseudo" + ], + "Warn": null + }, + { + "SQL": "explain format = 'brief' select /*+ qb_name(qb_v1_2, v1@sel_1 .@sel_2), merge_join(t1@qb_v1_2) */ * from v1;", + "Plan": [ + "HashJoin 9980.01 root inner join, equal:[eq(test.t.a, Column#17)]", + "├─HashAgg(Build) 7984.01 root group by:test.t.a, funcs:count(1)->Column#17", + "│ └─MergeJoin 12475.01 root inner join, left key:test.t1.b, right key:test.t.b", + "│ ├─Sort(Build) 9980.01 root test.t.b", + "│ │ └─HashJoin 9980.01 root inner join, equal:[eq(test.t.a, Column#16)]", + "│ │ ├─HashAgg(Build) 7992.00 root group by:test.t2.a, funcs:count(1)->Column#16", + "│ │ │ └─HashJoin 12487.50 root inner join, equal:[eq(test.t1.b, test.t2.b)]", + "│ │ │ ├─TableReader(Build) 9990.00 root data:Selection", + "│ │ │ │ └─Selection 9990.00 cop[tikv] not(isnull(test.t2.b))", + "│ │ │ │ └─TableFullScan 10000.00 cop[tikv] table:t2 keep order:false, stats:pseudo", + "│ │ │ └─TableReader(Probe) 9990.00 root data:Selection", + "│ │ │ └─Selection 9990.00 cop[tikv] not(isnull(test.t1.b))", + "│ │ │ └─TableFullScan 10000.00 cop[tikv] table:t1 keep order:false, stats:pseudo", + "│ │ └─TableReader(Probe) 9980.01 root data:Selection", + "│ │ └─Selection 9980.01 cop[tikv] not(isnull(test.t.a)), not(isnull(test.t.b))", + "│ │ └─TableFullScan 10000.00 cop[tikv] table:t keep order:false, stats:pseudo", + "│ └─Sort(Probe) 9990.00 root test.t1.b", + "│ └─TableReader 9990.00 root data:Selection", + "│ └─Selection 9990.00 cop[tikv] not(isnull(test.t1.b))", + "│ └─TableFullScan 10000.00 cop[tikv] table:t1 keep order:false, stats:pseudo", + "└─TableReader(Probe) 9990.00 root data:Selection", + " └─Selection 9990.00 cop[tikv] not(isnull(test.t.a))", + " └─TableFullScan 10000.00 cop[tikv] table:t keep order:false, stats:pseudo" + ], + "Warn": null + }, + { + "SQL": "explain format = 'brief' select /*+ qb_name(qb_v1_2, v1@sel_1 .@sel_2), merge_join(t1@qb_v1_2), stream_agg(@qb_v1_2), qb_name(qb_v1_1, v1@sel_1 .@sel_1), merge_join(t@qb_v1_1) */ * from v1;", + "Plan": [ + "MergeJoin 9980.01 root inner join, left key:test.t.a, right key:Column#17", + "├─Sort(Build) 7984.01 root Column#17", + "│ └─StreamAgg 7984.01 root group by:test.t.a, funcs:count(1)->Column#17", + "│ └─Sort 12475.01 root test.t.a", + "│ └─MergeJoin 12475.01 root inner join, left key:test.t1.b, right key:test.t.b", + "│ ├─Sort(Build) 9980.01 root test.t.b", + "│ │ └─HashJoin 9980.01 root inner join, equal:[eq(test.t.a, Column#16)]", + "│ │ ├─HashAgg(Build) 7992.00 root group by:test.t2.a, funcs:count(1)->Column#16", + "│ │ │ └─HashJoin 12487.50 root inner join, equal:[eq(test.t1.b, test.t2.b)]", + "│ │ │ ├─TableReader(Build) 9990.00 root data:Selection", + "│ │ │ │ └─Selection 9990.00 cop[tikv] not(isnull(test.t2.b))", + "│ │ │ │ └─TableFullScan 10000.00 cop[tikv] table:t2 keep order:false, stats:pseudo", + "│ │ │ └─TableReader(Probe) 9990.00 root data:Selection", + "│ │ │ └─Selection 9990.00 cop[tikv] not(isnull(test.t1.b))", + "│ │ │ └─TableFullScan 10000.00 cop[tikv] table:t1 keep order:false, stats:pseudo", + "│ │ └─TableReader(Probe) 9980.01 root data:Selection", + "│ │ └─Selection 9980.01 cop[tikv] not(isnull(test.t.a)), not(isnull(test.t.b))", + "│ │ └─TableFullScan 10000.00 cop[tikv] table:t keep order:false, stats:pseudo", + "│ └─Sort(Probe) 9990.00 root test.t1.b", + "│ └─TableReader 9990.00 root data:Selection", + "│ └─Selection 9990.00 cop[tikv] not(isnull(test.t1.b))", + "│ └─TableFullScan 10000.00 cop[tikv] table:t1 keep order:false, stats:pseudo", + "└─Sort(Probe) 9990.00 root test.t.a", + " └─TableReader 9990.00 root data:Selection", + " └─Selection 9990.00 cop[tikv] not(isnull(test.t.a))", + " └─TableFullScan 10000.00 cop[tikv] table:t keep order:false, stats:pseudo" + ], + "Warn": null + }, + { + "SQL": "explain format = 'brief' select /*+ qb_name(qb_v1_2, v2@sel_1 . v1@sel_1 .@sel_2), merge_join(t1@qb_v1_2) */ * from v2;", + "Plan": [ + "HashJoin 9980.01 root inner join, equal:[eq(test.t.a, Column#24)]", + "├─HashAgg(Build) 7984.01 root group by:test.t.a, funcs:count(1)->Column#24", + "│ └─HashJoin 12475.01 root inner join, equal:[eq(test.t.a, Column#23)]", + "│ ├─HashAgg(Build) 7984.01 root group by:test.t.a, funcs:count(1)->Column#23", + "│ │ └─HashJoin 12475.01 root inner join, equal:[eq(test.t.a, Column#22)]", + "│ │ ├─HashAgg(Build) 7992.00 root group by:test.t2.a, funcs:count(1)->Column#22", + "│ │ │ └─HashJoin 12487.50 root inner join, equal:[eq(test.t1.b, test.t2.b)]", + "│ │ │ ├─TableReader(Build) 9990.00 root data:Selection", + "│ │ │ │ └─Selection 9990.00 cop[tikv] not(isnull(test.t2.b))", + "│ │ │ │ └─TableFullScan 10000.00 cop[tikv] table:t2 keep order:false, stats:pseudo", + "│ │ │ └─TableReader(Probe) 9990.00 root data:Selection", + "│ │ │ └─Selection 9990.00 cop[tikv] not(isnull(test.t1.b))", + "│ │ │ └─TableFullScan 10000.00 cop[tikv] table:t1 keep order:false, stats:pseudo", + "│ │ └─HashJoin(Probe) 12475.01 root inner join, equal:[eq(test.t.b, test.t1.b)]", + "│ │ ├─TableReader(Build) 9980.01 root data:Selection", + "│ │ │ └─Selection 9980.01 cop[tikv] not(isnull(test.t.a)), not(isnull(test.t.b))", + "│ │ │ └─TableFullScan 10000.00 cop[tikv] table:t keep order:false, stats:pseudo", + "│ │ └─TableReader(Probe) 9990.00 root data:Selection", + "│ │ └─Selection 9990.00 cop[tikv] not(isnull(test.t1.b))", + "│ │ └─TableFullScan 10000.00 cop[tikv] table:t1 keep order:false, stats:pseudo", + "│ └─HashJoin(Probe) 12475.01 root inner join, equal:[eq(test.t.b, test.t1.b)]", + "│ ├─TableReader(Build) 9980.01 root data:Selection", + "│ │ └─Selection 9980.01 cop[tikv] not(isnull(test.t.a)), not(isnull(test.t.b))", + "│ │ └─TableFullScan 10000.00 cop[tikv] table:t keep order:false, stats:pseudo", + "│ └─TableReader(Probe) 9990.00 root data:Selection", + "│ └─Selection 9990.00 cop[tikv] not(isnull(test.t1.b))", + "│ └─TableFullScan 10000.00 cop[tikv] table:t1 keep order:false, stats:pseudo", + "└─TableReader(Probe) 9990.00 root data:Selection", + " └─Selection 9990.00 cop[tikv] not(isnull(test.t.a))", + " └─TableFullScan 10000.00 cop[tikv] table:t keep order:false, stats:pseudo" + ], + "Warn": null + }, + { + "SQL": "explain format = 'brief' select /*+ qb_name(qb_v1_2, v2@sel_1 . v1@sel_1 .@sel_2), merge_join(t1@qb_v1_2), stream_agg(@qb_v1_2), qb_name(qb_v1_1, v2@sel_1 . v1@sel_1 .@sel_1), merge_join(t@qb_v1_1) */ * from v2;", + "Plan": [ + "HashJoin 9980.01 root inner join, equal:[eq(test.t.a, Column#24)]", + "├─HashAgg(Build) 7984.01 root group by:test.t.a, funcs:count(1)->Column#24", + "│ └─HashJoin 12475.01 root inner join, equal:[eq(test.t.a, Column#23)]", + "│ ├─HashAgg(Build) 7984.01 root group by:test.t.a, funcs:count(1)->Column#23", + "│ │ └─HashJoin 12475.01 root inner join, equal:[eq(test.t.a, Column#22)]", + "│ │ ├─HashAgg(Build) 7992.00 root group by:test.t2.a, funcs:count(1)->Column#22", + "│ │ │ └─HashJoin 12487.50 root inner join, equal:[eq(test.t1.b, test.t2.b)]", + "│ │ │ ├─TableReader(Build) 9990.00 root data:Selection", + "│ │ │ │ └─Selection 9990.00 cop[tikv] not(isnull(test.t2.b))", + "│ │ │ │ └─TableFullScan 10000.00 cop[tikv] table:t2 keep order:false, stats:pseudo", + "│ │ │ └─TableReader(Probe) 9990.00 root data:Selection", + "│ │ │ └─Selection 9990.00 cop[tikv] not(isnull(test.t1.b))", + "│ │ │ └─TableFullScan 10000.00 cop[tikv] table:t1 keep order:false, stats:pseudo", + "│ │ └─HashJoin(Probe) 12475.01 root inner join, equal:[eq(test.t.b, test.t1.b)]", + "│ │ ├─TableReader(Build) 9980.01 root data:Selection", + "│ │ │ └─Selection 9980.01 cop[tikv] not(isnull(test.t.a)), not(isnull(test.t.b))", + "│ │ │ └─TableFullScan 10000.00 cop[tikv] table:t keep order:false, stats:pseudo", + "│ │ └─TableReader(Probe) 9990.00 root data:Selection", + "│ │ └─Selection 9990.00 cop[tikv] not(isnull(test.t1.b))", + "│ │ └─TableFullScan 10000.00 cop[tikv] table:t1 keep order:false, stats:pseudo", + "│ └─HashJoin(Probe) 12475.01 root inner join, equal:[eq(test.t.b, test.t1.b)]", + "│ ├─TableReader(Build) 9980.01 root data:Selection", + "│ │ └─Selection 9980.01 cop[tikv] not(isnull(test.t.a)), not(isnull(test.t.b))", + "│ │ └─TableFullScan 10000.00 cop[tikv] table:t keep order:false, stats:pseudo", + "│ └─TableReader(Probe) 9990.00 root data:Selection", + "│ └─Selection 9990.00 cop[tikv] not(isnull(test.t1.b))", + "│ └─TableFullScan 10000.00 cop[tikv] table:t1 keep order:false, stats:pseudo", + "└─TableReader(Probe) 9990.00 root data:Selection", + " └─Selection 9990.00 cop[tikv] not(isnull(test.t.a))", + " └─TableFullScan 10000.00 cop[tikv] table:t keep order:false, stats:pseudo" + ], + "Warn": null + }, + { + "SQL": "explain format = 'brief' select /*+ qb_name(qb_v2_2, v2@sel_1 .@sel_2), merge_join(t1@qb_v2_2) */ * from v2;", + "Plan": [ + "HashJoin 9980.01 root inner join, equal:[eq(test.t.a, Column#24)]", + "├─HashAgg(Build) 7984.01 root group by:test.t.a, funcs:count(1)->Column#24", + "│ └─MergeJoin 12475.01 root inner join, left key:test.t1.b, right key:test.t.b", + "│ ├─Sort(Build) 9980.01 root test.t.b", + "│ │ └─HashJoin 9980.01 root inner join, equal:[eq(test.t.a, Column#23)]", + "│ │ ├─HashAgg(Build) 7984.01 root group by:test.t.a, funcs:count(1)->Column#23", + "│ │ │ └─HashJoin 12475.01 root inner join, equal:[eq(test.t.a, Column#22)]", + "│ │ │ ├─HashAgg(Build) 7992.00 root group by:test.t2.a, funcs:count(1)->Column#22", + "│ │ │ │ └─HashJoin 12487.50 root inner join, equal:[eq(test.t1.b, test.t2.b)]", + "│ │ │ │ ├─TableReader(Build) 9990.00 root data:Selection", + "│ │ │ │ │ └─Selection 9990.00 cop[tikv] not(isnull(test.t2.b))", + "│ │ │ │ │ └─TableFullScan 10000.00 cop[tikv] table:t2 keep order:false, stats:pseudo", + "│ │ │ │ └─TableReader(Probe) 9990.00 root data:Selection", + "│ │ │ │ └─Selection 9990.00 cop[tikv] not(isnull(test.t1.b))", + "│ │ │ │ └─TableFullScan 10000.00 cop[tikv] table:t1 keep order:false, stats:pseudo", + "│ │ │ └─HashJoin(Probe) 12475.01 root inner join, equal:[eq(test.t.b, test.t1.b)]", + "│ │ │ ├─TableReader(Build) 9980.01 root data:Selection", + "│ │ │ │ └─Selection 9980.01 cop[tikv] not(isnull(test.t.a)), not(isnull(test.t.b))", + "│ │ │ │ └─TableFullScan 10000.00 cop[tikv] table:t keep order:false, stats:pseudo", + "│ │ │ └─TableReader(Probe) 9990.00 root data:Selection", + "│ │ │ └─Selection 9990.00 cop[tikv] not(isnull(test.t1.b))", + "│ │ │ └─TableFullScan 10000.00 cop[tikv] table:t1 keep order:false, stats:pseudo", + "│ │ └─TableReader(Probe) 9980.01 root data:Selection", + "│ │ └─Selection 9980.01 cop[tikv] not(isnull(test.t.a)), not(isnull(test.t.b))", + "│ │ └─TableFullScan 10000.00 cop[tikv] table:t keep order:false, stats:pseudo", + "│ └─Sort(Probe) 9990.00 root test.t1.b", + "│ └─TableReader 9990.00 root data:Selection", + "│ └─Selection 9990.00 cop[tikv] not(isnull(test.t1.b))", + "│ └─TableFullScan 10000.00 cop[tikv] table:t1 keep order:false, stats:pseudo", + "└─TableReader(Probe) 9990.00 root data:Selection", + " └─Selection 9990.00 cop[tikv] not(isnull(test.t.a))", + " └─TableFullScan 10000.00 cop[tikv] table:t keep order:false, stats:pseudo" + ], + "Warn": null + }, + { + "SQL": "explain format = 'brief' select /*+ qb_name(qb_v2_2, v2@sel_1 .@sel_2), merge_join(t1@qb_v2_2), stream_agg(@qb_v2_2), qb_name(qb_v2_1, v1@sel_1 .@sel_1), merge_join(t@qb_v2_1) */ * from v2;", + "Plan": [ + "HashJoin 9980.01 root inner join, equal:[eq(test.t.a, Column#24)]", + "├─StreamAgg(Build) 7984.01 root group by:test.t.a, funcs:count(1)->Column#24", + "│ └─Sort 12475.01 root test.t.a", + "│ └─MergeJoin 12475.01 root inner join, left key:test.t1.b, right key:test.t.b", + "│ ├─Sort(Build) 9980.01 root test.t.b", + "│ │ └─HashJoin 9980.01 root inner join, equal:[eq(test.t.a, Column#23)]", + "│ │ ├─HashAgg(Build) 7984.01 root group by:test.t.a, funcs:count(1)->Column#23", + "│ │ │ └─HashJoin 12475.01 root inner join, equal:[eq(test.t.a, Column#22)]", + "│ │ │ ├─HashAgg(Build) 7992.00 root group by:test.t2.a, funcs:count(1)->Column#22", + "│ │ │ │ └─HashJoin 12487.50 root inner join, equal:[eq(test.t1.b, test.t2.b)]", + "│ │ │ │ ├─TableReader(Build) 9990.00 root data:Selection", + "│ │ │ │ │ └─Selection 9990.00 cop[tikv] not(isnull(test.t2.b))", + "│ │ │ │ │ └─TableFullScan 10000.00 cop[tikv] table:t2 keep order:false, stats:pseudo", + "│ │ │ │ └─TableReader(Probe) 9990.00 root data:Selection", + "│ │ │ │ └─Selection 9990.00 cop[tikv] not(isnull(test.t1.b))", + "│ │ │ │ └─TableFullScan 10000.00 cop[tikv] table:t1 keep order:false, stats:pseudo", + "│ │ │ └─HashJoin(Probe) 12475.01 root inner join, equal:[eq(test.t.b, test.t1.b)]", + "│ │ │ ├─TableReader(Build) 9980.01 root data:Selection", + "│ │ │ │ └─Selection 9980.01 cop[tikv] not(isnull(test.t.a)), not(isnull(test.t.b))", + "│ │ │ │ └─TableFullScan 10000.00 cop[tikv] table:t keep order:false, stats:pseudo", + "│ │ │ └─TableReader(Probe) 9990.00 root data:Selection", + "│ │ │ └─Selection 9990.00 cop[tikv] not(isnull(test.t1.b))", + "│ │ │ └─TableFullScan 10000.00 cop[tikv] table:t1 keep order:false, stats:pseudo", + "│ │ └─TableReader(Probe) 9980.01 root data:Selection", + "│ │ └─Selection 9980.01 cop[tikv] not(isnull(test.t.a)), not(isnull(test.t.b))", + "│ │ └─TableFullScan 10000.00 cop[tikv] table:t keep order:false, stats:pseudo", + "│ └─Sort(Probe) 9990.00 root test.t1.b", + "│ └─TableReader 9990.00 root data:Selection", + "│ └─Selection 9990.00 cop[tikv] not(isnull(test.t1.b))", + "│ └─TableFullScan 10000.00 cop[tikv] table:t1 keep order:false, stats:pseudo", + "└─TableReader(Probe) 9990.00 root data:Selection", + " └─Selection 9990.00 cop[tikv] not(isnull(test.t.a))", + " └─TableFullScan 10000.00 cop[tikv] table:t keep order:false, stats:pseudo" + ], + "Warn": null + } + ] + }, + { + "Name": "TestViewHintScope", + "Cases": [ + { + "SQL": "explain format = 'brief' select /*+ qb_name(qb_v, v@sel_1 .@sel_2), qb_name(qb_v, v@sel_1 .@sel_1), merge_join(t1@qb_v) */ * from v;", + "Plan": [ + "HashJoin 9980.01 root inner join, equal:[eq(test.t.a, Column#13)]", + "├─HashAgg(Build) 7984.01 root group by:test.t2.a, funcs:count(1)->Column#13", + "│ └─HashJoin 15593.77 root inner join, equal:[eq(test.t3.a, test.t2.a)]", + "│ ├─TableReader(Build) 9990.00 root data:Selection", + "│ │ └─Selection 9990.00 cop[tikv] not(isnull(test.t3.a))", + "│ │ └─TableFullScan 10000.00 cop[tikv] table:t3 keep order:false, stats:pseudo", + "│ └─MergeJoin(Probe) 12475.01 root inner join, left key:test.t1.b, right key:test.t2.b", + "│ ├─Sort(Build) 9980.01 root test.t2.b", + "│ │ └─TableReader 9980.01 root data:Selection", + "│ │ └─Selection 9980.01 cop[tikv] not(isnull(test.t2.a)), not(isnull(test.t2.b))", + "│ │ └─TableFullScan 10000.00 cop[tikv] table:t2 keep order:false, stats:pseudo", + "│ └─Sort(Probe) 9990.00 root test.t1.b", + "│ └─TableReader 9990.00 root data:Selection", + "│ └─Selection 9990.00 cop[tikv] not(isnull(test.t1.b))", + "│ └─TableFullScan 10000.00 cop[tikv] table:t1 keep order:false, stats:pseudo", + "└─TableReader(Probe) 9990.00 root data:Selection", + " └─Selection 9990.00 cop[tikv] not(isnull(test.t.a))", + " └─TableFullScan 10000.00 cop[tikv] table:t keep order:false, stats:pseudo" + ], + "Warn": [ + "Duplicate query block name qb_v for view's query block hint, only the first one is effective" + ] + }, + { + "SQL": "explain format = 'brief' select /*+ qb_name(qb_v, v1@sel_1 .v@sel_2 .@sel_2), qb_name(qb_v, v1@sel_1 .v@sel_2 .@sel_1), merge_join(t1@qb_v) */ * from v1;", + "Plan": [ + "HashJoin 9980.01 root inner join, equal:[eq(test.t.a, Column#20)]", + "├─HashAgg(Build) 7984.01 root group by:test.t.a, funcs:count(1)->Column#20", + "│ └─HashJoin 12475.01 root inner join, equal:[eq(test.t.a, Column#19)]", + "│ ├─HashAgg(Build) 7984.01 root group by:test.t2.a, funcs:count(1)->Column#19", + "│ │ └─HashJoin 15593.77 root inner join, equal:[eq(test.t3.a, test.t2.a)]", + "│ │ ├─TableReader(Build) 9990.00 root data:Selection", + "│ │ │ └─Selection 9990.00 cop[tikv] not(isnull(test.t3.a))", + "│ │ │ └─TableFullScan 10000.00 cop[tikv] table:t3 keep order:false, stats:pseudo", + "│ │ └─MergeJoin(Probe) 12475.01 root inner join, left key:test.t1.b, right key:test.t2.b", + "│ │ ├─Sort(Build) 9980.01 root test.t2.b", + "│ │ │ └─TableReader 9980.01 root data:Selection", + "│ │ │ └─Selection 9980.01 cop[tikv] not(isnull(test.t2.a)), not(isnull(test.t2.b))", + "│ │ │ └─TableFullScan 10000.00 cop[tikv] table:t2 keep order:false, stats:pseudo", + "│ │ └─Sort(Probe) 9990.00 root test.t1.b", + "│ │ └─TableReader 9990.00 root data:Selection", + "│ │ └─Selection 9990.00 cop[tikv] not(isnull(test.t1.b))", + "│ │ └─TableFullScan 10000.00 cop[tikv] table:t1 keep order:false, stats:pseudo", + "│ └─HashJoin(Probe) 12475.01 root inner join, equal:[eq(test.t.b, test.t1.b)]", + "│ ├─TableReader(Build) 9980.01 root data:Selection", + "│ │ └─Selection 9980.01 cop[tikv] not(isnull(test.t.a)), not(isnull(test.t.b))", + "│ │ └─TableFullScan 10000.00 cop[tikv] table:t keep order:false, stats:pseudo", + "│ └─TableReader(Probe) 9990.00 root data:Selection", + "│ └─Selection 9990.00 cop[tikv] not(isnull(test.t1.b))", + "│ └─TableFullScan 10000.00 cop[tikv] table:t1 keep order:false, stats:pseudo", + "└─TableReader(Probe) 9990.00 root data:Selection", + " └─Selection 9990.00 cop[tikv] not(isnull(test.t.a))", + " └─TableFullScan 10000.00 cop[tikv] table:t keep order:false, stats:pseudo" + ], + "Warn": [ + "Duplicate query block name qb_v for view's query block hint, only the first one is effective" + ] + }, + { + "SQL": "explain format = 'brief' select /*+ qb_name(qb_v, v2@sel_1 .v1@sel_2 .v@sel_2 .@sel_2), qb_name(qb_v, v2@sel_1 .v1@sel_2 .v@sel_2 .@sel_1), merge_join(t1@qb_v) */ * from v2;", + "Plan": [ + "HashJoin 9980.01 root inner join, equal:[eq(test.t.a, Column#27)]", + "├─HashAgg(Build) 7984.01 root group by:test.t.a, funcs:count(1)->Column#27", + "│ └─HashJoin 12475.01 root inner join, equal:[eq(test.t.a, Column#26)]", + "│ ├─HashAgg(Build) 7984.01 root group by:test.t.a, funcs:count(1)->Column#26", + "│ │ └─HashJoin 12475.01 root inner join, equal:[eq(test.t.a, Column#25)]", + "│ │ ├─HashAgg(Build) 7984.01 root group by:test.t2.a, funcs:count(1)->Column#25", + "│ │ │ └─HashJoin 15593.77 root inner join, equal:[eq(test.t3.a, test.t2.a)]", + "│ │ │ ├─TableReader(Build) 9990.00 root data:Selection", + "│ │ │ │ └─Selection 9990.00 cop[tikv] not(isnull(test.t3.a))", + "│ │ │ │ └─TableFullScan 10000.00 cop[tikv] table:t3 keep order:false, stats:pseudo", + "│ │ │ └─MergeJoin(Probe) 12475.01 root inner join, left key:test.t1.b, right key:test.t2.b", + "│ │ │ ├─Sort(Build) 9980.01 root test.t2.b", + "│ │ │ │ └─TableReader 9980.01 root data:Selection", + "│ │ │ │ └─Selection 9980.01 cop[tikv] not(isnull(test.t2.a)), not(isnull(test.t2.b))", + "│ │ │ │ └─TableFullScan 10000.00 cop[tikv] table:t2 keep order:false, stats:pseudo", + "│ │ │ └─Sort(Probe) 9990.00 root test.t1.b", + "│ │ │ └─TableReader 9990.00 root data:Selection", + "│ │ │ └─Selection 9990.00 cop[tikv] not(isnull(test.t1.b))", + "│ │ │ └─TableFullScan 10000.00 cop[tikv] table:t1 keep order:false, stats:pseudo", + "│ │ └─HashJoin(Probe) 12475.01 root inner join, equal:[eq(test.t.b, test.t1.b)]", + "│ │ ├─TableReader(Build) 9980.01 root data:Selection", + "│ │ │ └─Selection 9980.01 cop[tikv] not(isnull(test.t.a)), not(isnull(test.t.b))", + "│ │ │ └─TableFullScan 10000.00 cop[tikv] table:t keep order:false, stats:pseudo", + "│ │ └─TableReader(Probe) 9990.00 root data:Selection", + "│ │ └─Selection 9990.00 cop[tikv] not(isnull(test.t1.b))", + "│ │ └─TableFullScan 10000.00 cop[tikv] table:t1 keep order:false, stats:pseudo", + "│ └─HashJoin(Probe) 12475.01 root inner join, equal:[eq(test.t.b, test.t1.b)]", + "│ ├─TableReader(Build) 9980.01 root data:Selection", + "│ │ └─Selection 9980.01 cop[tikv] not(isnull(test.t.a)), not(isnull(test.t.b))", + "│ │ └─TableFullScan 10000.00 cop[tikv] table:t keep order:false, stats:pseudo", + "│ └─TableReader(Probe) 9990.00 root data:Selection", + "│ └─Selection 9990.00 cop[tikv] not(isnull(test.t1.b))", + "│ └─TableFullScan 10000.00 cop[tikv] table:t1 keep order:false, stats:pseudo", + "└─TableReader(Probe) 9990.00 root data:Selection", + " └─Selection 9990.00 cop[tikv] not(isnull(test.t.a))", + " └─TableFullScan 10000.00 cop[tikv] table:t keep order:false, stats:pseudo" + ], + "Warn": [ + "Duplicate query block name qb_v for view's query block hint, only the first one is effective" + ] + }, + { + "SQL": "explain format = 'brief' select /*+ qb_name(qb_v1_2, v@sel_1 .@sel_2), merge_join(t1@qb_v1_2) */ * from v1;", + "Plan": [ + "HashJoin 9980.01 root inner join, equal:[eq(test.t.a, Column#20)]", + "├─HashAgg(Build) 7984.01 root group by:test.t.a, funcs:count(1)->Column#20", + "│ └─HashJoin 12475.01 root inner join, equal:[eq(test.t.a, Column#19)]", + "│ ├─HashAgg(Build) 7984.01 root group by:test.t2.a, funcs:count(1)->Column#19", + "│ │ └─HashJoin 15593.77 root inner join, equal:[eq(test.t2.a, test.t3.a)]", + "│ │ ├─TableReader(Build) 9990.00 root data:Selection", + "│ │ │ └─Selection 9990.00 cop[tikv] not(isnull(test.t3.a))", + "│ │ │ └─TableFullScan 10000.00 cop[tikv] table:t3 keep order:false, stats:pseudo", + "│ │ └─HashJoin(Probe) 12475.01 root inner join, equal:[eq(test.t2.b, test.t1.b)]", + "│ │ ├─TableReader(Build) 9980.01 root data:Selection", + "│ │ │ └─Selection 9980.01 cop[tikv] not(isnull(test.t2.a)), not(isnull(test.t2.b))", + "│ │ │ └─TableFullScan 10000.00 cop[tikv] table:t2 keep order:false, stats:pseudo", + "│ │ └─TableReader(Probe) 9990.00 root data:Selection", + "│ │ └─Selection 9990.00 cop[tikv] not(isnull(test.t1.b))", + "│ │ └─TableFullScan 10000.00 cop[tikv] table:t1 keep order:false, stats:pseudo", + "│ └─HashJoin(Probe) 12475.01 root inner join, equal:[eq(test.t.b, test.t1.b)]", + "│ ├─TableReader(Build) 9980.01 root data:Selection", + "│ │ └─Selection 9980.01 cop[tikv] not(isnull(test.t.a)), not(isnull(test.t.b))", + "│ │ └─TableFullScan 10000.00 cop[tikv] table:t keep order:false, stats:pseudo", + "│ └─TableReader(Probe) 9990.00 root data:Selection", + "│ └─Selection 9990.00 cop[tikv] not(isnull(test.t1.b))", + "│ └─TableFullScan 10000.00 cop[tikv] table:t1 keep order:false, stats:pseudo", + "└─TableReader(Probe) 9990.00 root data:Selection", + " └─Selection 9990.00 cop[tikv] not(isnull(test.t.a))", + " └─TableFullScan 10000.00 cop[tikv] table:t keep order:false, stats:pseudo" + ], + "Warn": null + }, + { + "SQL": "explain format = 'brief' select /*+ qb_name(qb_v1_2, v2@sel_1 . v@sel_1 .@sel_2), merge_join(t1@qb_v1_2) */ * from v2;", + "Plan": [ + "HashJoin 9980.01 root inner join, equal:[eq(test.t.a, Column#27)]", + "├─HashAgg(Build) 7984.01 root group by:test.t.a, funcs:count(1)->Column#27", + "│ └─HashJoin 12475.01 root inner join, equal:[eq(test.t.a, Column#26)]", + "│ ├─HashAgg(Build) 7984.01 root group by:test.t.a, funcs:count(1)->Column#26", + "│ │ └─HashJoin 12475.01 root inner join, equal:[eq(test.t.a, Column#25)]", + "│ │ ├─HashAgg(Build) 7984.01 root group by:test.t2.a, funcs:count(1)->Column#25", + "│ │ │ └─HashJoin 15593.77 root inner join, equal:[eq(test.t2.a, test.t3.a)]", + "│ │ │ ├─TableReader(Build) 9990.00 root data:Selection", + "│ │ │ │ └─Selection 9990.00 cop[tikv] not(isnull(test.t3.a))", + "│ │ │ │ └─TableFullScan 10000.00 cop[tikv] table:t3 keep order:false, stats:pseudo", + "│ │ │ └─HashJoin(Probe) 12475.01 root inner join, equal:[eq(test.t2.b, test.t1.b)]", + "│ │ │ ├─TableReader(Build) 9980.01 root data:Selection", + "│ │ │ │ └─Selection 9980.01 cop[tikv] not(isnull(test.t2.a)), not(isnull(test.t2.b))", + "│ │ │ │ └─TableFullScan 10000.00 cop[tikv] table:t2 keep order:false, stats:pseudo", + "│ │ │ └─TableReader(Probe) 9990.00 root data:Selection", + "│ │ │ └─Selection 9990.00 cop[tikv] not(isnull(test.t1.b))", + "│ │ │ └─TableFullScan 10000.00 cop[tikv] table:t1 keep order:false, stats:pseudo", + "│ │ └─HashJoin(Probe) 12475.01 root inner join, equal:[eq(test.t.b, test.t1.b)]", + "│ │ ├─TableReader(Build) 9980.01 root data:Selection", + "│ │ │ └─Selection 9980.01 cop[tikv] not(isnull(test.t.a)), not(isnull(test.t.b))", + "│ │ │ └─TableFullScan 10000.00 cop[tikv] table:t keep order:false, stats:pseudo", + "│ │ └─TableReader(Probe) 9990.00 root data:Selection", + "│ │ └─Selection 9990.00 cop[tikv] not(isnull(test.t1.b))", + "│ │ └─TableFullScan 10000.00 cop[tikv] table:t1 keep order:false, stats:pseudo", + "│ └─HashJoin(Probe) 12475.01 root inner join, equal:[eq(test.t.b, test.t1.b)]", + "│ ├─TableReader(Build) 9980.01 root data:Selection", + "│ │ └─Selection 9980.01 cop[tikv] not(isnull(test.t.a)), not(isnull(test.t.b))", + "│ │ └─TableFullScan 10000.00 cop[tikv] table:t keep order:false, stats:pseudo", + "│ └─TableReader(Probe) 9990.00 root data:Selection", + "│ └─Selection 9990.00 cop[tikv] not(isnull(test.t1.b))", + "│ └─TableFullScan 10000.00 cop[tikv] table:t1 keep order:false, stats:pseudo", + "└─TableReader(Probe) 9990.00 root data:Selection", + " └─Selection 9990.00 cop[tikv] not(isnull(test.t.a))", + " └─TableFullScan 10000.00 cop[tikv] table:t keep order:false, stats:pseudo" + ], + "Warn": null + }, + { + "SQL": "explain format = 'brief' select /*+ qb_name(qb_v2_2, vv@sel_1 .@sel_2), merge_join(t1@qb_v2_2) */ * from v2 vv;", + "Plan": [ + "HashJoin 9980.01 root inner join, equal:[eq(test.t.a, Column#27)]", + "├─HashAgg(Build) 7984.01 root group by:test.t.a, funcs:count(1)->Column#27", + "│ └─MergeJoin 12475.01 root inner join, left key:test.t1.b, right key:test.t.b", + "│ ├─Sort(Build) 9980.01 root test.t.b", + "│ │ └─HashJoin 9980.01 root inner join, equal:[eq(test.t.a, Column#26)]", + "│ │ ├─HashAgg(Build) 7984.01 root group by:test.t.a, funcs:count(1)->Column#26", + "│ │ │ └─HashJoin 12475.01 root inner join, equal:[eq(test.t.a, Column#25)]", + "│ │ │ ├─HashAgg(Build) 7984.01 root group by:test.t2.a, funcs:count(1)->Column#25", + "│ │ │ │ └─HashJoin 15593.77 root inner join, equal:[eq(test.t2.a, test.t3.a)]", + "│ │ │ │ ├─TableReader(Build) 9990.00 root data:Selection", + "│ │ │ │ │ └─Selection 9990.00 cop[tikv] not(isnull(test.t3.a))", + "│ │ │ │ │ └─TableFullScan 10000.00 cop[tikv] table:t3 keep order:false, stats:pseudo", + "│ │ │ │ └─HashJoin(Probe) 12475.01 root inner join, equal:[eq(test.t2.b, test.t1.b)]", + "│ │ │ │ ├─TableReader(Build) 9980.01 root data:Selection", + "│ │ │ │ │ └─Selection 9980.01 cop[tikv] not(isnull(test.t2.a)), not(isnull(test.t2.b))", + "│ │ │ │ │ └─TableFullScan 10000.00 cop[tikv] table:t2 keep order:false, stats:pseudo", + "│ │ │ │ └─TableReader(Probe) 9990.00 root data:Selection", + "│ │ │ │ └─Selection 9990.00 cop[tikv] not(isnull(test.t1.b))", + "│ │ │ │ └─TableFullScan 10000.00 cop[tikv] table:t1 keep order:false, stats:pseudo", + "│ │ │ └─HashJoin(Probe) 12475.01 root inner join, equal:[eq(test.t.b, test.t1.b)]", + "│ │ │ ├─TableReader(Build) 9980.01 root data:Selection", + "│ │ │ │ └─Selection 9980.01 cop[tikv] not(isnull(test.t.a)), not(isnull(test.t.b))", + "│ │ │ │ └─TableFullScan 10000.00 cop[tikv] table:t keep order:false, stats:pseudo", + "│ │ │ └─TableReader(Probe) 9990.00 root data:Selection", + "│ │ │ └─Selection 9990.00 cop[tikv] not(isnull(test.t1.b))", + "│ │ │ └─TableFullScan 10000.00 cop[tikv] table:t1 keep order:false, stats:pseudo", + "│ │ └─TableReader(Probe) 9980.01 root data:Selection", + "│ │ └─Selection 9980.01 cop[tikv] not(isnull(test.t.a)), not(isnull(test.t.b))", + "│ │ └─TableFullScan 10000.00 cop[tikv] table:t keep order:false, stats:pseudo", + "│ └─Sort(Probe) 9990.00 root test.t1.b", + "│ └─TableReader 9990.00 root data:Selection", + "│ └─Selection 9990.00 cop[tikv] not(isnull(test.t1.b))", + "│ └─TableFullScan 10000.00 cop[tikv] table:t1 keep order:false, stats:pseudo", + "└─TableReader(Probe) 9990.00 root data:Selection", + " └─Selection 9990.00 cop[tikv] not(isnull(test.t.a))", + " └─TableFullScan 10000.00 cop[tikv] table:t keep order:false, stats:pseudo" + ], + "Warn": null + }, + { + "SQL": "explain format = 'brief' select /*+ qb_name(qb_v2_2, v2@sel_1 .@sel_2), merge_join(t1@qb_v2_2) */ * from v2 vv;", + "Plan": [ + "HashJoin 9980.01 root inner join, equal:[eq(test.t.a, Column#27)]", + "├─HashAgg(Build) 7984.01 root group by:test.t.a, funcs:count(1)->Column#27", + "│ └─HashJoin 12475.01 root inner join, equal:[eq(test.t.a, Column#26)]", + "│ ├─HashAgg(Build) 7984.01 root group by:test.t.a, funcs:count(1)->Column#26", + "│ │ └─HashJoin 12475.01 root inner join, equal:[eq(test.t.a, Column#25)]", + "│ │ ├─HashAgg(Build) 7984.01 root group by:test.t2.a, funcs:count(1)->Column#25", + "│ │ │ └─HashJoin 15593.77 root inner join, equal:[eq(test.t2.a, test.t3.a)]", + "│ │ │ ├─TableReader(Build) 9990.00 root data:Selection", + "│ │ │ │ └─Selection 9990.00 cop[tikv] not(isnull(test.t3.a))", + "│ │ │ │ └─TableFullScan 10000.00 cop[tikv] table:t3 keep order:false, stats:pseudo", + "│ │ │ └─HashJoin(Probe) 12475.01 root inner join, equal:[eq(test.t2.b, test.t1.b)]", + "│ │ │ ├─TableReader(Build) 9980.01 root data:Selection", + "│ │ │ │ └─Selection 9980.01 cop[tikv] not(isnull(test.t2.a)), not(isnull(test.t2.b))", + "│ │ │ │ └─TableFullScan 10000.00 cop[tikv] table:t2 keep order:false, stats:pseudo", + "│ │ │ └─TableReader(Probe) 9990.00 root data:Selection", + "│ │ │ └─Selection 9990.00 cop[tikv] not(isnull(test.t1.b))", + "│ │ │ └─TableFullScan 10000.00 cop[tikv] table:t1 keep order:false, stats:pseudo", + "│ │ └─HashJoin(Probe) 12475.01 root inner join, equal:[eq(test.t.b, test.t1.b)]", + "│ │ ├─TableReader(Build) 9980.01 root data:Selection", + "│ │ │ └─Selection 9980.01 cop[tikv] not(isnull(test.t.a)), not(isnull(test.t.b))", + "│ │ │ └─TableFullScan 10000.00 cop[tikv] table:t keep order:false, stats:pseudo", + "│ │ └─TableReader(Probe) 9990.00 root data:Selection", + "│ │ └─Selection 9990.00 cop[tikv] not(isnull(test.t1.b))", + "│ │ └─TableFullScan 10000.00 cop[tikv] table:t1 keep order:false, stats:pseudo", + "│ └─HashJoin(Probe) 12475.01 root inner join, equal:[eq(test.t.b, test.t1.b)]", + "│ ├─TableReader(Build) 9980.01 root data:Selection", + "│ │ └─Selection 9980.01 cop[tikv] not(isnull(test.t.a)), not(isnull(test.t.b))", + "│ │ └─TableFullScan 10000.00 cop[tikv] table:t keep order:false, stats:pseudo", + "│ └─TableReader(Probe) 9990.00 root data:Selection", + "│ └─Selection 9990.00 cop[tikv] not(isnull(test.t1.b))", + "│ └─TableFullScan 10000.00 cop[tikv] table:t1 keep order:false, stats:pseudo", + "└─TableReader(Probe) 9990.00 root data:Selection", + " └─Selection 9990.00 cop[tikv] not(isnull(test.t.a))", + " └─TableFullScan 10000.00 cop[tikv] table:t keep order:false, stats:pseudo" + ], + "Warn": null + }, + { + "SQL": "explain format = 'brief' select * from (select /*+ qb_name(qb_v_2, v@sel_1 .@sel_2), merge_join(t1@qb_v_2) */ * from v) t;", + "Plan": [ + "HashJoin 9980.01 root inner join, equal:[eq(test.t.a, Column#13)]", + "├─HashAgg(Build) 7984.01 root group by:test.t2.a, funcs:count(1)->Column#13", + "│ └─HashJoin 15593.77 root inner join, equal:[eq(test.t2.a, test.t3.a)]", + "│ ├─TableReader(Build) 9990.00 root data:Selection", + "│ │ └─Selection 9990.00 cop[tikv] not(isnull(test.t3.a))", + "│ │ └─TableFullScan 10000.00 cop[tikv] table:t3 keep order:false, stats:pseudo", + "│ └─HashJoin(Probe) 12475.01 root inner join, equal:[eq(test.t2.b, test.t1.b)]", + "│ ├─TableReader(Build) 9980.01 root data:Selection", + "│ │ └─Selection 9980.01 cop[tikv] not(isnull(test.t2.a)), not(isnull(test.t2.b))", + "│ │ └─TableFullScan 10000.00 cop[tikv] table:t2 keep order:false, stats:pseudo", + "│ └─TableReader(Probe) 9990.00 root data:Selection", + "│ └─Selection 9990.00 cop[tikv] not(isnull(test.t1.b))", + "│ └─TableFullScan 10000.00 cop[tikv] table:t1 keep order:false, stats:pseudo", + "└─TableReader(Probe) 9990.00 root data:Selection", + " └─Selection 9990.00 cop[tikv] not(isnull(test.t.a))", + " └─TableFullScan 10000.00 cop[tikv] table:t keep order:false, stats:pseudo" + ], + "Warn": [ + "The qb_name hint for view only supports to be defined in the first query block", + "Hint merge_join(`t1`@`qb_v_2`) is ignored due to unknown query block name" + ] + }, + { + "SQL": "explain format = 'brief' select * from (select /*+ qb_name(qb_v_2, v@sel_1 .@sel_2), merge_join(t1@qb_v_2), stream_agg(@qb_v_2), qb_name(qb_v_1, v@sel_1 .@sel1), merge_join(t@qb_v_1) */ * from v) t;", + "Plan": [ + "HashJoin 9980.01 root inner join, equal:[eq(test.t.a, Column#13)]", + "├─HashAgg(Build) 7984.01 root group by:test.t2.a, funcs:count(1)->Column#13", + "│ └─HashJoin 15593.77 root inner join, equal:[eq(test.t2.a, test.t3.a)]", + "│ ├─TableReader(Build) 9990.00 root data:Selection", + "│ │ └─Selection 9990.00 cop[tikv] not(isnull(test.t3.a))", + "│ │ └─TableFullScan 10000.00 cop[tikv] table:t3 keep order:false, stats:pseudo", + "│ └─HashJoin(Probe) 12475.01 root inner join, equal:[eq(test.t2.b, test.t1.b)]", + "│ ├─TableReader(Build) 9980.01 root data:Selection", + "│ │ └─Selection 9980.01 cop[tikv] not(isnull(test.t2.a)), not(isnull(test.t2.b))", + "│ │ └─TableFullScan 10000.00 cop[tikv] table:t2 keep order:false, stats:pseudo", + "│ └─TableReader(Probe) 9990.00 root data:Selection", + "│ └─Selection 9990.00 cop[tikv] not(isnull(test.t1.b))", + "│ └─TableFullScan 10000.00 cop[tikv] table:t1 keep order:false, stats:pseudo", + "└─TableReader(Probe) 9990.00 root data:Selection", + " └─Selection 9990.00 cop[tikv] not(isnull(test.t.a))", + " └─TableFullScan 10000.00 cop[tikv] table:t keep order:false, stats:pseudo" + ], + "Warn": [ + "The qb_name hint for view only supports to be defined in the first query block", + "The qb_name hint for view only supports to be defined in the first query block", + "Hint merge_join(`t1`@`qb_v_2`) is ignored due to unknown query block name", + "Hint stream_agg(@`qb_v_2`) is ignored due to unknown query block name", + "Hint merge_join(`t`@`qb_v_1`) is ignored due to unknown query block name" + ] + }, + { + "SQL": "explain format = 'brief' select * from (select /*+ qb_name(qb_v_2, v1@sel_1 . v@sel_2 .@sel_2), merge_join(t1@qb_v_2) */ * from v1) t;", + "Plan": [ + "HashJoin 9980.01 root inner join, equal:[eq(test.t.a, Column#20)]", + "├─HashAgg(Build) 7984.01 root group by:test.t.a, funcs:count(1)->Column#20", + "│ └─HashJoin 12475.01 root inner join, equal:[eq(test.t.a, Column#19)]", + "│ ├─HashAgg(Build) 7984.01 root group by:test.t2.a, funcs:count(1)->Column#19", + "│ │ └─HashJoin 15593.77 root inner join, equal:[eq(test.t2.a, test.t3.a)]", + "│ │ ├─TableReader(Build) 9990.00 root data:Selection", + "│ │ │ └─Selection 9990.00 cop[tikv] not(isnull(test.t3.a))", + "│ │ │ └─TableFullScan 10000.00 cop[tikv] table:t3 keep order:false, stats:pseudo", + "│ │ └─HashJoin(Probe) 12475.01 root inner join, equal:[eq(test.t2.b, test.t1.b)]", + "│ │ ├─TableReader(Build) 9980.01 root data:Selection", + "│ │ │ └─Selection 9980.01 cop[tikv] not(isnull(test.t2.a)), not(isnull(test.t2.b))", + "│ │ │ └─TableFullScan 10000.00 cop[tikv] table:t2 keep order:false, stats:pseudo", + "│ │ └─TableReader(Probe) 9990.00 root data:Selection", + "│ │ └─Selection 9990.00 cop[tikv] not(isnull(test.t1.b))", + "│ │ └─TableFullScan 10000.00 cop[tikv] table:t1 keep order:false, stats:pseudo", + "│ └─HashJoin(Probe) 12475.01 root inner join, equal:[eq(test.t.b, test.t1.b)]", + "│ ├─TableReader(Build) 9980.01 root data:Selection", + "│ │ └─Selection 9980.01 cop[tikv] not(isnull(test.t.a)), not(isnull(test.t.b))", + "│ │ └─TableFullScan 10000.00 cop[tikv] table:t keep order:false, stats:pseudo", + "│ └─TableReader(Probe) 9990.00 root data:Selection", + "│ └─Selection 9990.00 cop[tikv] not(isnull(test.t1.b))", + "│ └─TableFullScan 10000.00 cop[tikv] table:t1 keep order:false, stats:pseudo", + "└─TableReader(Probe) 9990.00 root data:Selection", + " └─Selection 9990.00 cop[tikv] not(isnull(test.t.a))", + " └─TableFullScan 10000.00 cop[tikv] table:t keep order:false, stats:pseudo" + ], + "Warn": [ + "The qb_name hint for view only supports to be defined in the first query block", + "Hint merge_join(`t1`@`qb_v_2`) is ignored due to unknown query block name" + ] + }, + { + "SQL": "explain format = 'brief' select * from (select /*+ qb_name(qb_v_2, v1@sel_1 . v@sel_2 .@sel_2), merge_join(t1@qb_v_2), stream_agg(@qb_v_2), qb_name(qb_v_1, v1@sel_1 . v@sel_2 .@sel_1), merge_join(t@qb_v_1) */ * from v1) t;", + "Plan": [ + "HashJoin 9980.01 root inner join, equal:[eq(test.t.a, Column#20)]", + "├─HashAgg(Build) 7984.01 root group by:test.t.a, funcs:count(1)->Column#20", + "│ └─HashJoin 12475.01 root inner join, equal:[eq(test.t.a, Column#19)]", + "│ ├─HashAgg(Build) 7984.01 root group by:test.t2.a, funcs:count(1)->Column#19", + "│ │ └─HashJoin 15593.77 root inner join, equal:[eq(test.t2.a, test.t3.a)]", + "│ │ ├─TableReader(Build) 9990.00 root data:Selection", + "│ │ │ └─Selection 9990.00 cop[tikv] not(isnull(test.t3.a))", + "│ │ │ └─TableFullScan 10000.00 cop[tikv] table:t3 keep order:false, stats:pseudo", + "│ │ └─HashJoin(Probe) 12475.01 root inner join, equal:[eq(test.t2.b, test.t1.b)]", + "│ │ ├─TableReader(Build) 9980.01 root data:Selection", + "│ │ │ └─Selection 9980.01 cop[tikv] not(isnull(test.t2.a)), not(isnull(test.t2.b))", + "│ │ │ └─TableFullScan 10000.00 cop[tikv] table:t2 keep order:false, stats:pseudo", + "│ │ └─TableReader(Probe) 9990.00 root data:Selection", + "│ │ └─Selection 9990.00 cop[tikv] not(isnull(test.t1.b))", + "│ │ └─TableFullScan 10000.00 cop[tikv] table:t1 keep order:false, stats:pseudo", + "│ └─HashJoin(Probe) 12475.01 root inner join, equal:[eq(test.t.b, test.t1.b)]", + "│ ├─TableReader(Build) 9980.01 root data:Selection", + "│ │ └─Selection 9980.01 cop[tikv] not(isnull(test.t.a)), not(isnull(test.t.b))", + "│ │ └─TableFullScan 10000.00 cop[tikv] table:t keep order:false, stats:pseudo", + "│ └─TableReader(Probe) 9990.00 root data:Selection", + "│ └─Selection 9990.00 cop[tikv] not(isnull(test.t1.b))", + "│ └─TableFullScan 10000.00 cop[tikv] table:t1 keep order:false, stats:pseudo", + "└─TableReader(Probe) 9990.00 root data:Selection", + " └─Selection 9990.00 cop[tikv] not(isnull(test.t.a))", + " └─TableFullScan 10000.00 cop[tikv] table:t keep order:false, stats:pseudo" + ], + "Warn": [ + "The qb_name hint for view only supports to be defined in the first query block", + "The qb_name hint for view only supports to be defined in the first query block", + "Hint merge_join(`t1`@`qb_v_2`) is ignored due to unknown query block name", + "Hint stream_agg(@`qb_v_2`) is ignored due to unknown query block name", + "Hint merge_join(`t`@`qb_v_1`) is ignored due to unknown query block name" + ] + }, + { + "SQL": "explain format = 'brief' select /*+ qb_name(qb_v_2, v@sel_1 .@sel_2) */ * from (select /*+ merge_join(t1@qb_v_2) */ * from v) t;", + "Plan": [ + "HashJoin 9980.01 root inner join, equal:[eq(test.t.a, Column#13)]", + "├─HashAgg(Build) 7984.01 root group by:test.t2.a, funcs:count(1)->Column#13", + "│ └─HashJoin 15593.77 root inner join, equal:[eq(test.t2.a, test.t3.a)]", + "│ ├─TableReader(Build) 9990.00 root data:Selection", + "│ │ └─Selection 9990.00 cop[tikv] not(isnull(test.t3.a))", + "│ │ └─TableFullScan 10000.00 cop[tikv] table:t3 keep order:false, stats:pseudo", + "│ └─HashJoin(Probe) 12475.01 root inner join, equal:[eq(test.t2.b, test.t1.b)]", + "│ ├─TableReader(Build) 9980.01 root data:Selection", + "│ │ └─Selection 9980.01 cop[tikv] not(isnull(test.t2.a)), not(isnull(test.t2.b))", + "│ │ └─TableFullScan 10000.00 cop[tikv] table:t2 keep order:false, stats:pseudo", + "│ └─TableReader(Probe) 9990.00 root data:Selection", + "│ └─Selection 9990.00 cop[tikv] not(isnull(test.t1.b))", + "│ └─TableFullScan 10000.00 cop[tikv] table:t1 keep order:false, stats:pseudo", + "└─TableReader(Probe) 9990.00 root data:Selection", + " └─Selection 9990.00 cop[tikv] not(isnull(test.t.a))", + " └─TableFullScan 10000.00 cop[tikv] table:t keep order:false, stats:pseudo" + ], + "Warn": [ + "Hint merge_join(`t1`@`qb_v_2`) is ignored due to unknown query block name" + ] + }, + { + "SQL": "explain format = 'brief' select /*+ qb_name(qb_v_2, v@sel_1 .@sel_2), qb_name(qb_v_1, v@sel_1 .@sel1) */ * from (select /*+ merge_join(t1@qb_v_2), stream_agg(@qb_v_2), merge_join(t@qb_v_1) */ * from v) t;", + "Plan": [ + "HashJoin 9980.01 root inner join, equal:[eq(test.t.a, Column#13)]", + "├─HashAgg(Build) 7984.01 root group by:test.t2.a, funcs:count(1)->Column#13", + "│ └─HashJoin 15593.77 root inner join, equal:[eq(test.t2.a, test.t3.a)]", + "│ ├─TableReader(Build) 9990.00 root data:Selection", + "│ │ └─Selection 9990.00 cop[tikv] not(isnull(test.t3.a))", + "│ │ └─TableFullScan 10000.00 cop[tikv] table:t3 keep order:false, stats:pseudo", + "│ └─HashJoin(Probe) 12475.01 root inner join, equal:[eq(test.t2.b, test.t1.b)]", + "│ ├─TableReader(Build) 9980.01 root data:Selection", + "│ │ └─Selection 9980.01 cop[tikv] not(isnull(test.t2.a)), not(isnull(test.t2.b))", + "│ │ └─TableFullScan 10000.00 cop[tikv] table:t2 keep order:false, stats:pseudo", + "│ └─TableReader(Probe) 9990.00 root data:Selection", + "│ └─Selection 9990.00 cop[tikv] not(isnull(test.t1.b))", + "│ └─TableFullScan 10000.00 cop[tikv] table:t1 keep order:false, stats:pseudo", + "└─TableReader(Probe) 9990.00 root data:Selection", + " └─Selection 9990.00 cop[tikv] not(isnull(test.t.a))", + " └─TableFullScan 10000.00 cop[tikv] table:t keep order:false, stats:pseudo" + ], + "Warn": [ + "Hint merge_join(`t1`@`qb_v_2`) is ignored due to unknown query block name", + "Hint stream_agg(@`qb_v_2`) is ignored due to unknown query block name", + "Hint merge_join(`t`@`qb_v_1`) is ignored due to unknown query block name" + ] + }, + { + "SQL": "explain format = 'brief' select /*+ qb_name(qb_v_2, v1@sel_1 . v@sel_2 .@sel_2) */ * from (select /*+ merge_join(t1@qb_v_2) */ * from v1) t;", + "Plan": [ + "HashJoin 9980.01 root inner join, equal:[eq(test.t.a, Column#20)]", + "├─HashAgg(Build) 7984.01 root group by:test.t.a, funcs:count(1)->Column#20", + "│ └─HashJoin 12475.01 root inner join, equal:[eq(test.t.a, Column#19)]", + "│ ├─HashAgg(Build) 7984.01 root group by:test.t2.a, funcs:count(1)->Column#19", + "│ │ └─HashJoin 15593.77 root inner join, equal:[eq(test.t2.a, test.t3.a)]", + "│ │ ├─TableReader(Build) 9990.00 root data:Selection", + "│ │ │ └─Selection 9990.00 cop[tikv] not(isnull(test.t3.a))", + "│ │ │ └─TableFullScan 10000.00 cop[tikv] table:t3 keep order:false, stats:pseudo", + "│ │ └─HashJoin(Probe) 12475.01 root inner join, equal:[eq(test.t2.b, test.t1.b)]", + "│ │ ├─TableReader(Build) 9980.01 root data:Selection", + "│ │ │ └─Selection 9980.01 cop[tikv] not(isnull(test.t2.a)), not(isnull(test.t2.b))", + "│ │ │ └─TableFullScan 10000.00 cop[tikv] table:t2 keep order:false, stats:pseudo", + "│ │ └─TableReader(Probe) 9990.00 root data:Selection", + "│ │ └─Selection 9990.00 cop[tikv] not(isnull(test.t1.b))", + "│ │ └─TableFullScan 10000.00 cop[tikv] table:t1 keep order:false, stats:pseudo", + "│ └─HashJoin(Probe) 12475.01 root inner join, equal:[eq(test.t.b, test.t1.b)]", + "│ ├─TableReader(Build) 9980.01 root data:Selection", + "│ │ └─Selection 9980.01 cop[tikv] not(isnull(test.t.a)), not(isnull(test.t.b))", + "│ │ └─TableFullScan 10000.00 cop[tikv] table:t keep order:false, stats:pseudo", + "│ └─TableReader(Probe) 9990.00 root data:Selection", + "│ └─Selection 9990.00 cop[tikv] not(isnull(test.t1.b))", + "│ └─TableFullScan 10000.00 cop[tikv] table:t1 keep order:false, stats:pseudo", + "└─TableReader(Probe) 9990.00 root data:Selection", + " └─Selection 9990.00 cop[tikv] not(isnull(test.t.a))", + " └─TableFullScan 10000.00 cop[tikv] table:t keep order:false, stats:pseudo" + ], + "Warn": [ + "Hint merge_join(`t1`@`qb_v_2`) is ignored due to unknown query block name" + ] + }, + { + "SQL": "explain format = 'brief' select /*+ qb_name(qb_v_2, v1@sel_1 . v@sel_2 .@sel_2), qb_name(qb_v_1, v1@sel_1 . v@sel_2 .@sel_1) */ * from (select /*+ merge_join(t1@qb_v_2), stream_agg(@qb_v_2), merge_join(t@qb_v_1) */ * from v1) t;", + "Plan": [ + "HashJoin 9980.01 root inner join, equal:[eq(test.t.a, Column#20)]", + "├─HashAgg(Build) 7984.01 root group by:test.t.a, funcs:count(1)->Column#20", + "│ └─HashJoin 12475.01 root inner join, equal:[eq(test.t.a, Column#19)]", + "│ ├─HashAgg(Build) 7984.01 root group by:test.t2.a, funcs:count(1)->Column#19", + "│ │ └─HashJoin 15593.77 root inner join, equal:[eq(test.t2.a, test.t3.a)]", + "│ │ ├─TableReader(Build) 9990.00 root data:Selection", + "│ │ │ └─Selection 9990.00 cop[tikv] not(isnull(test.t3.a))", + "│ │ │ └─TableFullScan 10000.00 cop[tikv] table:t3 keep order:false, stats:pseudo", + "│ │ └─HashJoin(Probe) 12475.01 root inner join, equal:[eq(test.t2.b, test.t1.b)]", + "│ │ ├─TableReader(Build) 9980.01 root data:Selection", + "│ │ │ └─Selection 9980.01 cop[tikv] not(isnull(test.t2.a)), not(isnull(test.t2.b))", + "│ │ │ └─TableFullScan 10000.00 cop[tikv] table:t2 keep order:false, stats:pseudo", + "│ │ └─TableReader(Probe) 9990.00 root data:Selection", + "│ │ └─Selection 9990.00 cop[tikv] not(isnull(test.t1.b))", + "│ │ └─TableFullScan 10000.00 cop[tikv] table:t1 keep order:false, stats:pseudo", + "│ └─HashJoin(Probe) 12475.01 root inner join, equal:[eq(test.t.b, test.t1.b)]", + "│ ├─TableReader(Build) 9980.01 root data:Selection", + "│ │ └─Selection 9980.01 cop[tikv] not(isnull(test.t.a)), not(isnull(test.t.b))", + "│ │ └─TableFullScan 10000.00 cop[tikv] table:t keep order:false, stats:pseudo", + "│ └─TableReader(Probe) 9990.00 root data:Selection", + "│ └─Selection 9990.00 cop[tikv] not(isnull(test.t1.b))", + "│ └─TableFullScan 10000.00 cop[tikv] table:t1 keep order:false, stats:pseudo", + "└─TableReader(Probe) 9990.00 root data:Selection", + " └─Selection 9990.00 cop[tikv] not(isnull(test.t.a))", + " └─TableFullScan 10000.00 cop[tikv] table:t keep order:false, stats:pseudo" + ], + "Warn": [ + "Hint merge_join(`t1`@`qb_v_2`) is ignored due to unknown query block name", + "Hint stream_agg(@`qb_v_2`) is ignored due to unknown query block name", + "Hint merge_join(`t`@`qb_v_1`) is ignored due to unknown query block name" + ] + }, + { + "SQL": "explain format = 'brief' select /*+ qb_name(qb_v1_2, v2@sel_1 . v1@sel_1 .@sel_2), qb_name(qb_v1_1, v2@sel_1 . v1@sel_1 .@sel_1), merge_join(t1@qb_v1_2, t@qb_v1_1) */ * from v2;", + "Plan": [ + "HashJoin 9980.01 root inner join, equal:[eq(test.t.a, Column#27)]", + "├─HashAgg(Build) 7984.01 root group by:test.t.a, funcs:count(1)->Column#27", + "│ └─HashJoin 12475.01 root inner join, equal:[eq(test.t.a, Column#26)]", + "│ ├─HashAgg(Build) 7984.01 root group by:test.t.a, funcs:count(1)->Column#26", + "│ │ └─HashJoin 12475.01 root inner join, equal:[eq(test.t.a, Column#25)]", + "│ │ ├─HashAgg(Build) 7984.01 root group by:test.t2.a, funcs:count(1)->Column#25", + "│ │ │ └─HashJoin 15593.77 root inner join, equal:[eq(test.t2.a, test.t3.a)]", + "│ │ │ ├─TableReader(Build) 9990.00 root data:Selection", + "│ │ │ │ └─Selection 9990.00 cop[tikv] not(isnull(test.t3.a))", + "│ │ │ │ └─TableFullScan 10000.00 cop[tikv] table:t3 keep order:false, stats:pseudo", + "│ │ │ └─HashJoin(Probe) 12475.01 root inner join, equal:[eq(test.t2.b, test.t1.b)]", + "│ │ │ ├─TableReader(Build) 9980.01 root data:Selection", + "│ │ │ │ └─Selection 9980.01 cop[tikv] not(isnull(test.t2.a)), not(isnull(test.t2.b))", + "│ │ │ │ └─TableFullScan 10000.00 cop[tikv] table:t2 keep order:false, stats:pseudo", + "│ │ │ └─TableReader(Probe) 9990.00 root data:Selection", + "│ │ │ └─Selection 9990.00 cop[tikv] not(isnull(test.t1.b))", + "│ │ │ └─TableFullScan 10000.00 cop[tikv] table:t1 keep order:false, stats:pseudo", + "│ │ └─HashJoin(Probe) 12475.01 root inner join, equal:[eq(test.t.b, test.t1.b)]", + "│ │ ├─TableReader(Build) 9980.01 root data:Selection", + "│ │ │ └─Selection 9980.01 cop[tikv] not(isnull(test.t.a)), not(isnull(test.t.b))", + "│ │ │ └─TableFullScan 10000.00 cop[tikv] table:t keep order:false, stats:pseudo", + "│ │ └─TableReader(Probe) 9990.00 root data:Selection", + "│ │ └─Selection 9990.00 cop[tikv] not(isnull(test.t1.b))", + "│ │ └─TableFullScan 10000.00 cop[tikv] table:t1 keep order:false, stats:pseudo", + "│ └─HashJoin(Probe) 12475.01 root inner join, equal:[eq(test.t.b, test.t1.b)]", + "│ ├─TableReader(Build) 9980.01 root data:Selection", + "│ │ └─Selection 9980.01 cop[tikv] not(isnull(test.t.a)), not(isnull(test.t.b))", + "│ │ └─TableFullScan 10000.00 cop[tikv] table:t keep order:false, stats:pseudo", + "│ └─TableReader(Probe) 9990.00 root data:Selection", + "│ └─Selection 9990.00 cop[tikv] not(isnull(test.t1.b))", + "│ └─TableFullScan 10000.00 cop[tikv] table:t1 keep order:false, stats:pseudo", + "└─TableReader(Probe) 9990.00 root data:Selection", + " └─Selection 9990.00 cop[tikv] not(isnull(test.t.a))", + " └─TableFullScan 10000.00 cop[tikv] table:t keep order:false, stats:pseudo" + ], + "Warn": [ + "Hint merge_join(`t1`@`qb_v1_2`, `t`@`qb_v1_1`) is ignored due to unknown query block name" + ] + }, + { + "SQL": "explain format = 'brief' select /*+ qb_name(qb_v_2, v2@sel_1 . v1@sel_2 . v@sel_2 .@sel_2), qb_name(qb_v_1, v2@sel_1 . v1@sel_2 . v@sel_2 .@sel_1), merge_join(t1@qb_v_2, t3@qb_v_2) */ * from v2;", + "Plan": [ + "HashJoin 9980.01 root inner join, equal:[eq(test.t.a, Column#27)]", + "├─HashAgg(Build) 7984.01 root group by:test.t.a, funcs:count(1)->Column#27", + "│ └─HashJoin 12475.01 root inner join, equal:[eq(test.t.a, Column#26)]", + "│ ├─HashAgg(Build) 7984.01 root group by:test.t.a, funcs:count(1)->Column#26", + "│ │ └─HashJoin 12475.01 root inner join, equal:[eq(test.t.a, Column#25)]", + "│ │ ├─HashAgg(Build) 7984.01 root group by:test.t2.a, funcs:count(1)->Column#25", + "│ │ │ └─MergeJoin 15593.77 root inner join, left key:test.t2.a, right key:test.t3.a", + "│ │ │ ├─Sort(Build) 9990.00 root test.t3.a", + "│ │ │ │ └─TableReader 9990.00 root data:Selection", + "│ │ │ │ └─Selection 9990.00 cop[tikv] not(isnull(test.t3.a))", + "│ │ │ │ └─TableFullScan 10000.00 cop[tikv] table:t3 keep order:false, stats:pseudo", + "│ │ │ └─Sort(Probe) 12475.01 root test.t2.a", + "│ │ │ └─MergeJoin 12475.01 root inner join, left key:test.t1.b, right key:test.t2.b", + "│ │ │ ├─Sort(Build) 9980.01 root test.t2.b", + "│ │ │ │ └─TableReader 9980.01 root data:Selection", + "│ │ │ │ └─Selection 9980.01 cop[tikv] not(isnull(test.t2.a)), not(isnull(test.t2.b))", + "│ │ │ │ └─TableFullScan 10000.00 cop[tikv] table:t2 keep order:false, stats:pseudo", + "│ │ │ └─Sort(Probe) 9990.00 root test.t1.b", + "│ │ │ └─TableReader 9990.00 root data:Selection", + "│ │ │ └─Selection 9990.00 cop[tikv] not(isnull(test.t1.b))", + "│ │ │ └─TableFullScan 10000.00 cop[tikv] table:t1 keep order:false, stats:pseudo", + "│ │ └─HashJoin(Probe) 12475.01 root inner join, equal:[eq(test.t.b, test.t1.b)]", + "│ │ ├─TableReader(Build) 9980.01 root data:Selection", + "│ │ │ └─Selection 9980.01 cop[tikv] not(isnull(test.t.a)), not(isnull(test.t.b))", + "│ │ │ └─TableFullScan 10000.00 cop[tikv] table:t keep order:false, stats:pseudo", + "│ │ └─TableReader(Probe) 9990.00 root data:Selection", + "│ │ └─Selection 9990.00 cop[tikv] not(isnull(test.t1.b))", + "│ │ └─TableFullScan 10000.00 cop[tikv] table:t1 keep order:false, stats:pseudo", + "│ └─HashJoin(Probe) 12475.01 root inner join, equal:[eq(test.t.b, test.t1.b)]", + "│ ├─TableReader(Build) 9980.01 root data:Selection", + "│ │ └─Selection 9980.01 cop[tikv] not(isnull(test.t.a)), not(isnull(test.t.b))", + "│ │ └─TableFullScan 10000.00 cop[tikv] table:t keep order:false, stats:pseudo", + "│ └─TableReader(Probe) 9990.00 root data:Selection", + "│ └─Selection 9990.00 cop[tikv] not(isnull(test.t1.b))", + "│ └─TableFullScan 10000.00 cop[tikv] table:t1 keep order:false, stats:pseudo", + "└─TableReader(Probe) 9990.00 root data:Selection", + " └─Selection 9990.00 cop[tikv] not(isnull(test.t.a))", + " └─TableFullScan 10000.00 cop[tikv] table:t keep order:false, stats:pseudo" + ], + "Warn": null + }, + { + "SQL": "explain format = 'brief' select /*+ qb_name(qb_v_2, v2@sel_1 . v1@sel_2 . v@sel_2 .@sel_2), qb_name(qb_v_1, v2@sel_1 . v1@sel_2 . v@sel_2 .@sel_1), merge_join(@qb_v_2 t1, t3) */ * from v2;", + "Plan": [ + "HashJoin 9980.01 root inner join, equal:[eq(test.t.a, Column#27)]", + "├─HashAgg(Build) 7984.01 root group by:test.t.a, funcs:count(1)->Column#27", + "│ └─HashJoin 12475.01 root inner join, equal:[eq(test.t.a, Column#26)]", + "│ ├─HashAgg(Build) 7984.01 root group by:test.t.a, funcs:count(1)->Column#26", + "│ │ └─HashJoin 12475.01 root inner join, equal:[eq(test.t.a, Column#25)]", + "│ │ ├─HashAgg(Build) 7984.01 root group by:test.t2.a, funcs:count(1)->Column#25", + "│ │ │ └─MergeJoin 15593.77 root inner join, left key:test.t2.a, right key:test.t3.a", + "│ │ │ ├─Sort(Build) 9990.00 root test.t3.a", + "│ │ │ │ └─TableReader 9990.00 root data:Selection", + "│ │ │ │ └─Selection 9990.00 cop[tikv] not(isnull(test.t3.a))", + "│ │ │ │ └─TableFullScan 10000.00 cop[tikv] table:t3 keep order:false, stats:pseudo", + "│ │ │ └─Sort(Probe) 12475.01 root test.t2.a", + "│ │ │ └─MergeJoin 12475.01 root inner join, left key:test.t1.b, right key:test.t2.b", + "│ │ │ ├─Sort(Build) 9980.01 root test.t2.b", + "│ │ │ │ └─TableReader 9980.01 root data:Selection", + "│ │ │ │ └─Selection 9980.01 cop[tikv] not(isnull(test.t2.a)), not(isnull(test.t2.b))", + "│ │ │ │ └─TableFullScan 10000.00 cop[tikv] table:t2 keep order:false, stats:pseudo", + "│ │ │ └─Sort(Probe) 9990.00 root test.t1.b", + "│ │ │ └─TableReader 9990.00 root data:Selection", + "│ │ │ └─Selection 9990.00 cop[tikv] not(isnull(test.t1.b))", + "│ │ │ └─TableFullScan 10000.00 cop[tikv] table:t1 keep order:false, stats:pseudo", + "│ │ └─HashJoin(Probe) 12475.01 root inner join, equal:[eq(test.t.b, test.t1.b)]", + "│ │ ├─TableReader(Build) 9980.01 root data:Selection", + "│ │ │ └─Selection 9980.01 cop[tikv] not(isnull(test.t.a)), not(isnull(test.t.b))", + "│ │ │ └─TableFullScan 10000.00 cop[tikv] table:t keep order:false, stats:pseudo", + "│ │ └─TableReader(Probe) 9990.00 root data:Selection", + "│ │ └─Selection 9990.00 cop[tikv] not(isnull(test.t1.b))", + "│ │ └─TableFullScan 10000.00 cop[tikv] table:t1 keep order:false, stats:pseudo", + "│ └─HashJoin(Probe) 12475.01 root inner join, equal:[eq(test.t.b, test.t1.b)]", + "│ ├─TableReader(Build) 9980.01 root data:Selection", + "│ │ └─Selection 9980.01 cop[tikv] not(isnull(test.t.a)), not(isnull(test.t.b))", + "│ │ └─TableFullScan 10000.00 cop[tikv] table:t keep order:false, stats:pseudo", + "│ └─TableReader(Probe) 9990.00 root data:Selection", + "│ └─Selection 9990.00 cop[tikv] not(isnull(test.t1.b))", + "│ └─TableFullScan 10000.00 cop[tikv] table:t1 keep order:false, stats:pseudo", + "└─TableReader(Probe) 9990.00 root data:Selection", + " └─Selection 9990.00 cop[tikv] not(isnull(test.t.a))", + " └─TableFullScan 10000.00 cop[tikv] table:t keep order:false, stats:pseudo" + ], + "Warn": null + }, + { + "SQL": "explain format = 'brief' select /*+ qb_name(qb_v_2, v .@sel_2), merge_join(t1@qb_v_2) */ * from v;", + "Plan": [ + "HashJoin 9980.01 root inner join, equal:[eq(test.t.a, Column#13)]", + "├─HashAgg(Build) 7984.01 root group by:test.t2.a, funcs:count(1)->Column#13", + "│ └─HashJoin 15593.77 root inner join, equal:[eq(test.t3.a, test.t2.a)]", + "│ ├─TableReader(Build) 9990.00 root data:Selection", + "│ │ └─Selection 9990.00 cop[tikv] not(isnull(test.t3.a))", + "│ │ └─TableFullScan 10000.00 cop[tikv] table:t3 keep order:false, stats:pseudo", + "│ └─MergeJoin(Probe) 12475.01 root inner join, left key:test.t1.b, right key:test.t2.b", + "│ ├─Sort(Build) 9980.01 root test.t2.b", + "│ │ └─TableReader 9980.01 root data:Selection", + "│ │ └─Selection 9980.01 cop[tikv] not(isnull(test.t2.a)), not(isnull(test.t2.b))", + "│ │ └─TableFullScan 10000.00 cop[tikv] table:t2 keep order:false, stats:pseudo", + "│ └─Sort(Probe) 9990.00 root test.t1.b", + "│ └─TableReader 9990.00 root data:Selection", + "│ └─Selection 9990.00 cop[tikv] not(isnull(test.t1.b))", + "│ └─TableFullScan 10000.00 cop[tikv] table:t1 keep order:false, stats:pseudo", + "└─TableReader(Probe) 9990.00 root data:Selection", + " └─Selection 9990.00 cop[tikv] not(isnull(test.t.a))", + " └─TableFullScan 10000.00 cop[tikv] table:t keep order:false, stats:pseudo" + ], + "Warn": null + }, + { + "SQL": "explain format = 'brief' select /*+ qb_name(qb_v_1, v@sel_1), merge_join(t@qb_v_1) */ * from v;", + "Plan": [ + "MergeJoin 9980.01 root inner join, left key:test.t.a, right key:Column#13", + "├─Sort(Build) 7984.01 root Column#13", + "│ └─HashAgg 7984.01 root group by:test.t2.a, funcs:count(1)->Column#13", + "│ └─HashJoin 15593.77 root inner join, equal:[eq(test.t2.a, test.t3.a)]", + "│ ├─TableReader(Build) 9990.00 root data:Selection", + "│ │ └─Selection 9990.00 cop[tikv] not(isnull(test.t3.a))", + "│ │ └─TableFullScan 10000.00 cop[tikv] table:t3 keep order:false, stats:pseudo", + "│ └─HashJoin(Probe) 12475.01 root inner join, equal:[eq(test.t2.b, test.t1.b)]", + "│ ├─TableReader(Build) 9980.01 root data:Selection", + "│ │ └─Selection 9980.01 cop[tikv] not(isnull(test.t2.a)), not(isnull(test.t2.b))", + "│ │ └─TableFullScan 10000.00 cop[tikv] table:t2 keep order:false, stats:pseudo", + "│ └─TableReader(Probe) 9990.00 root data:Selection", + "│ └─Selection 9990.00 cop[tikv] not(isnull(test.t1.b))", + "│ └─TableFullScan 10000.00 cop[tikv] table:t1 keep order:false, stats:pseudo", + "└─Sort(Probe) 9990.00 root test.t.a", + " └─TableReader 9990.00 root data:Selection", + " └─Selection 9990.00 cop[tikv] not(isnull(test.t.a))", + " └─TableFullScan 10000.00 cop[tikv] table:t keep order:false, stats:pseudo" + ], + "Warn": null + }, + { + "SQL": "explain format = 'brief' select /*+ qb_name(qb_v_2, v1 .v@sel_2 .@sel_2), merge_join(t1@qb_v_2) */ * from v1;", + "Plan": [ + "HashJoin 9980.01 root inner join, equal:[eq(test.t.a, Column#20)]", + "├─HashAgg(Build) 7984.01 root group by:test.t.a, funcs:count(1)->Column#20", + "│ └─HashJoin 12475.01 root inner join, equal:[eq(test.t.a, Column#19)]", + "│ ├─HashAgg(Build) 7984.01 root group by:test.t2.a, funcs:count(1)->Column#19", + "│ │ └─HashJoin 15593.77 root inner join, equal:[eq(test.t3.a, test.t2.a)]", + "│ │ ├─TableReader(Build) 9990.00 root data:Selection", + "│ │ │ └─Selection 9990.00 cop[tikv] not(isnull(test.t3.a))", + "│ │ │ └─TableFullScan 10000.00 cop[tikv] table:t3 keep order:false, stats:pseudo", + "│ │ └─MergeJoin(Probe) 12475.01 root inner join, left key:test.t1.b, right key:test.t2.b", + "│ │ ├─Sort(Build) 9980.01 root test.t2.b", + "│ │ │ └─TableReader 9980.01 root data:Selection", + "│ │ │ └─Selection 9980.01 cop[tikv] not(isnull(test.t2.a)), not(isnull(test.t2.b))", + "│ │ │ └─TableFullScan 10000.00 cop[tikv] table:t2 keep order:false, stats:pseudo", + "│ │ └─Sort(Probe) 9990.00 root test.t1.b", + "│ │ └─TableReader 9990.00 root data:Selection", + "│ │ └─Selection 9990.00 cop[tikv] not(isnull(test.t1.b))", + "│ │ └─TableFullScan 10000.00 cop[tikv] table:t1 keep order:false, stats:pseudo", + "│ └─HashJoin(Probe) 12475.01 root inner join, equal:[eq(test.t.b, test.t1.b)]", + "│ ├─TableReader(Build) 9980.01 root data:Selection", + "│ │ └─Selection 9980.01 cop[tikv] not(isnull(test.t.a)), not(isnull(test.t.b))", + "│ │ └─TableFullScan 10000.00 cop[tikv] table:t keep order:false, stats:pseudo", + "│ └─TableReader(Probe) 9990.00 root data:Selection", + "│ └─Selection 9990.00 cop[tikv] not(isnull(test.t1.b))", + "│ └─TableFullScan 10000.00 cop[tikv] table:t1 keep order:false, stats:pseudo", + "└─TableReader(Probe) 9990.00 root data:Selection", + " └─Selection 9990.00 cop[tikv] not(isnull(test.t.a))", + " └─TableFullScan 10000.00 cop[tikv] table:t keep order:false, stats:pseudo" + ], + "Warn": null + }, + { + "SQL": "explain format = 'brief' select /*+ qb_name(qb_v_1, v1 .v@sel_2), merge_join(t@qb_v_1) */ * from v1;", + "Plan": [ + "HashJoin 9980.01 root inner join, equal:[eq(test.t.a, Column#20)]", + "├─HashAgg(Build) 7984.01 root group by:test.t.a, funcs:count(1)->Column#20", + "│ └─HashJoin 12475.01 root inner join, equal:[eq(test.t1.b, test.t.b)]", + "│ ├─MergeJoin(Build) 9980.01 root inner join, left key:test.t.a, right key:Column#19", + "│ │ ├─Sort(Build) 7984.01 root Column#19", + "│ │ │ └─HashAgg 7984.01 root group by:test.t2.a, funcs:count(1)->Column#19", + "│ │ │ └─HashJoin 15593.77 root inner join, equal:[eq(test.t2.a, test.t3.a)]", + "│ │ │ ├─TableReader(Build) 9990.00 root data:Selection", + "│ │ │ │ └─Selection 9990.00 cop[tikv] not(isnull(test.t3.a))", + "│ │ │ │ └─TableFullScan 10000.00 cop[tikv] table:t3 keep order:false, stats:pseudo", + "│ │ │ └─HashJoin(Probe) 12475.01 root inner join, equal:[eq(test.t2.b, test.t1.b)]", + "│ │ │ ├─TableReader(Build) 9980.01 root data:Selection", + "│ │ │ │ └─Selection 9980.01 cop[tikv] not(isnull(test.t2.a)), not(isnull(test.t2.b))", + "│ │ │ │ └─TableFullScan 10000.00 cop[tikv] table:t2 keep order:false, stats:pseudo", + "│ │ │ └─TableReader(Probe) 9990.00 root data:Selection", + "│ │ │ └─Selection 9990.00 cop[tikv] not(isnull(test.t1.b))", + "│ │ │ └─TableFullScan 10000.00 cop[tikv] table:t1 keep order:false, stats:pseudo", + "│ │ └─Sort(Probe) 9980.01 root test.t.a", + "│ │ └─TableReader 9980.01 root data:Selection", + "│ │ └─Selection 9980.01 cop[tikv] not(isnull(test.t.a)), not(isnull(test.t.b))", + "│ │ └─TableFullScan 10000.00 cop[tikv] table:t keep order:false, stats:pseudo", + "│ └─TableReader(Probe) 9990.00 root data:Selection", + "│ └─Selection 9990.00 cop[tikv] not(isnull(test.t1.b))", + "│ └─TableFullScan 10000.00 cop[tikv] table:t1 keep order:false, stats:pseudo", + "└─TableReader(Probe) 9990.00 root data:Selection", + " └─Selection 9990.00 cop[tikv] not(isnull(test.t.a))", + " └─TableFullScan 10000.00 cop[tikv] table:t keep order:false, stats:pseudo" + ], + "Warn": null + }, + { + "SQL": "explain format = 'brief' select /*+ merge_join(t1@qb_v_2), qb_name(qb_v_2, v@sel_1 .@sel_2) */ * from v;", + "Plan": [ + "HashJoin 9980.01 root inner join, equal:[eq(test.t.a, Column#13)]", + "├─HashAgg(Build) 7984.01 root group by:test.t2.a, funcs:count(1)->Column#13", + "│ └─HashJoin 15593.77 root inner join, equal:[eq(test.t3.a, test.t2.a)]", + "│ ├─TableReader(Build) 9990.00 root data:Selection", + "│ │ └─Selection 9990.00 cop[tikv] not(isnull(test.t3.a))", + "│ │ └─TableFullScan 10000.00 cop[tikv] table:t3 keep order:false, stats:pseudo", + "│ └─MergeJoin(Probe) 12475.01 root inner join, left key:test.t1.b, right key:test.t2.b", + "│ ├─Sort(Build) 9980.01 root test.t2.b", + "│ │ └─TableReader 9980.01 root data:Selection", + "│ │ └─Selection 9980.01 cop[tikv] not(isnull(test.t2.a)), not(isnull(test.t2.b))", + "│ │ └─TableFullScan 10000.00 cop[tikv] table:t2 keep order:false, stats:pseudo", + "│ └─Sort(Probe) 9990.00 root test.t1.b", + "│ └─TableReader 9990.00 root data:Selection", + "│ └─Selection 9990.00 cop[tikv] not(isnull(test.t1.b))", + "│ └─TableFullScan 10000.00 cop[tikv] table:t1 keep order:false, stats:pseudo", + "└─TableReader(Probe) 9990.00 root data:Selection", + " └─Selection 9990.00 cop[tikv] not(isnull(test.t.a))", + " └─TableFullScan 10000.00 cop[tikv] table:t keep order:false, stats:pseudo" + ], + "Warn": null + }, + { + "SQL": "explain format = 'brief' select /*+ merge_join(t@qb_v_1), stream_agg(@qb_v_2), qb_name(qb_v_2, v@sel_1 .@sel_2), qb_name(qb_v_1, v@sel_1 .@sel1) */ * from v;", + "Plan": [ + "HashJoin 9980.01 root inner join, equal:[eq(test.t.a, Column#13)]", + "├─StreamAgg(Build) 7984.01 root group by:test.t2.a, funcs:count(1)->Column#13", + "│ └─Sort 15593.77 root test.t2.a", + "│ └─HashJoin 15593.77 root inner join, equal:[eq(test.t2.a, test.t3.a)]", + "│ ├─TableReader(Build) 9990.00 root data:Selection", + "│ │ └─Selection 9990.00 cop[tikv] not(isnull(test.t3.a))", + "│ │ └─TableFullScan 10000.00 cop[tikv] table:t3 keep order:false, stats:pseudo", + "│ └─HashJoin(Probe) 12475.01 root inner join, equal:[eq(test.t2.b, test.t1.b)]", + "│ ├─TableReader(Build) 9980.01 root data:Selection", + "│ │ └─Selection 9980.01 cop[tikv] not(isnull(test.t2.a)), not(isnull(test.t2.b))", + "│ │ └─TableFullScan 10000.00 cop[tikv] table:t2 keep order:false, stats:pseudo", + "│ └─TableReader(Probe) 9990.00 root data:Selection", + "│ └─Selection 9990.00 cop[tikv] not(isnull(test.t1.b))", + "│ └─TableFullScan 10000.00 cop[tikv] table:t1 keep order:false, stats:pseudo", + "└─TableReader(Probe) 9990.00 root data:Selection", + " └─Selection 9990.00 cop[tikv] not(isnull(test.t.a))", + " └─TableFullScan 10000.00 cop[tikv] table:t keep order:false, stats:pseudo" + ], + "Warn": null + } + ] + }, + { + "Name": "TestReadFromStorageHintAndIsolationRead", + "Cases": [ + { + "SQL": "desc format = 'brief' select /*+ read_from_storage(tikv[t], tiflash[t]) */ avg(a) from t", + "Plan": [ + "HashAgg 1.00 root funcs:avg(Column#5, Column#6)->Column#4", + "└─IndexReader 1.00 root index:HashAgg", + " └─HashAgg 1.00 cop[tikv] funcs:count(test.t.a)->Column#5, funcs:sum(test.t.a)->Column#6", + " └─IndexFullScan 10000.00 cop[tikv] table:t, index:ia(a) keep order:false, stats:pseudo" + ], + "Warn": [ + "[planner:1815]Storage hints are conflict, you can only specify one storage type of table test.t" + ] + }, + { + "SQL": "desc format = 'brief' select /*+ read_from_storage(tikv[t]) */ avg(a) from t", + "Plan": [ + "HashAgg 1.00 root funcs:avg(Column#5, Column#6)->Column#4", + "└─IndexReader 1.00 root index:HashAgg", + " └─HashAgg 1.00 cop[tikv] funcs:count(test.t.a)->Column#5, funcs:sum(test.t.a)->Column#6", + " └─IndexFullScan 10000.00 cop[tikv] table:t, index:ia(a) keep order:false, stats:pseudo" + ], + "Warn": null + }, + { + "SQL": "desc format = 'brief' select /*+ read_from_storage(tiflash[t]) */ avg(a) from t", + "Plan": [ + "HashAgg 1.00 root funcs:avg(Column#5, Column#6)->Column#4", + "└─IndexReader 1.00 root index:HashAgg", + " └─HashAgg 1.00 cop[tikv] funcs:count(test.t.a)->Column#5, funcs:sum(test.t.a)->Column#6", + " └─IndexFullScan 10000.00 cop[tikv] table:t, index:ia(a) keep order:false, stats:pseudo" + ], + "Warn": [ + "[planner:1815]No available path for table test.t with the store type tiflash of the hint /*+ read_from_storage */, please check the status of the table replica and variable value of tidb_isolation_read_engines(map[0:{}])" + ] + } + ] + }, + { + "Name": "TestIsolationReadDoNotFilterSystemDB", + "Cases": [ + { + "SQL": "desc format = 'brief' select * from metrics_schema.tidb_query_duration where time >= '2019-12-23 16:10:13' and time <= '2019-12-23 16:30:13'", + "Plan": [ + "MemTableScan 10000.00 root table:tidb_query_duration PromQL:histogram_quantile(0.9, sum(rate(tidb_server_handle_query_duration_seconds_bucket{}[60s])) by (le,sql_type,instance)), start_time:2019-12-23 16:10:13, end_time:2019-12-23 16:30:13, step:1m0s" + ] + }, + { + "SQL": "desc format = 'brief' select * from information_schema.tables", + "Plan": [ + "MemTableScan 10000.00 root table:TABLES " + ] + }, + { + "SQL": "desc format = 'brief' select * from mysql.stats_meta", + "Plan": [ + "TableReader 10000.00 root data:TableFullScan", "└─TableFullScan 10000.00 cop[tikv] table:stats_meta keep order:false, stats:pseudo" ] } @@ -4465,11 +5684,11 @@ "├─TableReader(Build) 9980.01 root data:Selection", "│ └─Selection 9980.01 cop[tikv] not(isnull(test.t.a)), not(isnull(test.t.b))", "│ └─TableFullScan 10000.00 cop[tikv] table:t keep order:false, stats:pseudo", - "└─IndexLookUp(Probe) 1.25 root ", - " ├─Selection(Build) 1.25 cop[tikv] not(isnull(test.s.a))", - " │ └─IndexRangeScan 1.25 cop[tikv] table:s, index:a(a) range: decided by [eq(test.s.a, test.t.a)], keep order:false, stats:pseudo", - " └─Selection(Probe) 1.25 cop[tikv] not(isnull(test.s.b))", - " └─TableRowIDScan 1.25 cop[tikv] table:s keep order:false, stats:pseudo" + "└─IndexLookUp(Probe) 12475.01 root ", + " ├─Selection(Build) 12487.50 cop[tikv] not(isnull(test.s.a))", + " │ └─IndexRangeScan 12500.00 cop[tikv] table:s, index:a(a) range: decided by [eq(test.s.a, test.t.a)], keep order:false, stats:pseudo", + " └─Selection(Probe) 12475.01 cop[tikv] not(isnull(test.s.b))", + " └─TableRowIDScan 12487.50 cop[tikv] table:s keep order:false, stats:pseudo" ] }, { @@ -4479,10 +5698,10 @@ "├─TableReader(Build) 9980.01 root data:Selection", "│ └─Selection 9980.01 cop[tikv] not(isnull(test.t.a)), not(isnull(test.t.b))", "│ └─TableFullScan 10000.00 cop[tikv] table:t keep order:false, stats:pseudo", - "└─IndexLookUp(Probe) 1.25 root ", - " ├─Selection(Build) 1.25 cop[tikv] not(isnull(test.s.a))", - " │ └─IndexRangeScan 1.25 cop[tikv] table:s, index:a(a) range: decided by [eq(test.s.a, test.t.a)], keep order:false, stats:pseudo", - " └─TableRowIDScan(Probe) 1.25 cop[tikv] table:s keep order:false, stats:pseudo" + "└─IndexLookUp(Probe) 12475.01 root ", + " ├─Selection(Build) 12475.01 cop[tikv] not(isnull(test.s.a))", + " │ └─IndexRangeScan 12487.50 cop[tikv] table:s, index:a(a) range: decided by [eq(test.s.a, test.t.a)], keep order:false, stats:pseudo", + " └─TableRowIDScan(Probe) 12475.01 cop[tikv] table:s keep order:false, stats:pseudo" ] }, { @@ -4492,11 +5711,11 @@ "├─TableReader(Build) 9990.00 root data:Selection", "│ └─Selection 9990.00 cop[tikv] not(isnull(test.t.a))", "│ └─TableFullScan 10000.00 cop[tikv] table:t keep order:false, stats:pseudo", - "└─IndexLookUp(Probe) 1.25 root ", - " ├─Selection(Build) 1.25 cop[tikv] not(isnull(test.s.a))", - " │ └─IndexRangeScan 1.25 cop[tikv] table:s, index:a(a) range: decided by [eq(test.s.a, test.t.a)], keep order:false, stats:pseudo", - " └─Selection(Probe) 1.25 cop[tikv] not(isnull(test.s.b))", - " └─TableRowIDScan 1.25 cop[tikv] table:s keep order:false, stats:pseudo" + "└─IndexLookUp(Probe) 12475.01 root ", + " ├─Selection(Build) 12487.50 cop[tikv] not(isnull(test.s.a))", + " │ └─IndexRangeScan 12500.00 cop[tikv] table:s, index:a(a) range: decided by [eq(test.s.a, test.t.a)], keep order:false, stats:pseudo", + " └─Selection(Probe) 12475.01 cop[tikv] not(isnull(test.s.b))", + " └─TableRowIDScan 12487.50 cop[tikv] table:s keep order:false, stats:pseudo" ] }, { @@ -4506,11 +5725,11 @@ "├─TableReader(Build) 9980.01 root data:Selection", "│ └─Selection 9980.01 cop[tikv] not(isnull(test.t.a)), not(isnull(test.t.b))", "│ └─TableFullScan 10000.00 cop[tikv] table:t keep order:false, stats:pseudo", - "└─IndexLookUp(Probe) 1.25 root ", - " ├─Selection(Build) 1.25 cop[tikv] not(isnull(test.s.a))", - " │ └─IndexRangeScan 1.25 cop[tikv] table:s, index:a(a) range: decided by [eq(test.s.a, test.t.a)], keep order:false, stats:pseudo", - " └─Selection(Probe) 1.25 cop[tikv] not(isnull(test.s.b))", - " └─TableRowIDScan 1.25 cop[tikv] table:s keep order:false, stats:pseudo" + "└─IndexLookUp(Probe) 12475.01 root ", + " ├─Selection(Build) 12487.50 cop[tikv] not(isnull(test.s.a))", + " │ └─IndexRangeScan 12500.00 cop[tikv] table:s, index:a(a) range: decided by [eq(test.s.a, test.t.a)], keep order:false, stats:pseudo", + " └─Selection(Probe) 12475.01 cop[tikv] not(isnull(test.s.b))", + " └─TableRowIDScan 12487.50 cop[tikv] table:s keep order:false, stats:pseudo" ] }, { @@ -4520,10 +5739,10 @@ "├─TableReader(Build) 9980.01 root data:Selection", "│ └─Selection 9980.01 cop[tikv] not(isnull(test.t.a)), not(isnull(test.t.b))", "│ └─TableFullScan 10000.00 cop[tikv] table:t keep order:false, stats:pseudo", - "└─IndexLookUp(Probe) 1.25 root ", - " ├─Selection(Build) 1.25 cop[tikv] not(isnull(test.s.a))", - " │ └─IndexRangeScan 1.25 cop[tikv] table:s, index:a(a) range: decided by [eq(test.s.a, test.t.a)], keep order:false, stats:pseudo", - " └─TableRowIDScan(Probe) 1.25 cop[tikv] table:s keep order:false, stats:pseudo" + "└─IndexLookUp(Probe) 12475.01 root ", + " ├─Selection(Build) 12475.01 cop[tikv] not(isnull(test.s.a))", + " │ └─IndexRangeScan 12487.50 cop[tikv] table:s, index:a(a) range: decided by [eq(test.s.a, test.t.a)], keep order:false, stats:pseudo", + " └─TableRowIDScan(Probe) 12475.01 cop[tikv] table:s keep order:false, stats:pseudo" ] }, { @@ -4533,11 +5752,11 @@ "├─TableReader(Build) 9990.00 root data:Selection", "│ └─Selection 9990.00 cop[tikv] not(isnull(test.t.a))", "│ └─TableFullScan 10000.00 cop[tikv] table:t keep order:false, stats:pseudo", - "└─IndexLookUp(Probe) 1.25 root ", - " ├─Selection(Build) 1.25 cop[tikv] not(isnull(test.s.a))", - " │ └─IndexRangeScan 1.25 cop[tikv] table:s, index:a(a) range: decided by [eq(test.s.a, test.t.a)], keep order:false, stats:pseudo", - " └─Selection(Probe) 1.25 cop[tikv] not(isnull(test.s.b))", - " └─TableRowIDScan 1.25 cop[tikv] table:s keep order:false, stats:pseudo" + "└─IndexLookUp(Probe) 12475.01 root ", + " ├─Selection(Build) 12487.50 cop[tikv] not(isnull(test.s.a))", + " │ └─IndexRangeScan 12500.00 cop[tikv] table:s, index:a(a) range: decided by [eq(test.s.a, test.t.a)], keep order:false, stats:pseudo", + " └─Selection(Probe) 12475.01 cop[tikv] not(isnull(test.s.b))", + " └─TableRowIDScan 12487.50 cop[tikv] table:s keep order:false, stats:pseudo" ] } ] @@ -4675,11 +5894,11 @@ "SQL": "desc format = 'brief' select * from t right join (select id-2 as b from t) A on A.b=t.id", "Plan": [ "HashJoin 12487.50 root right outer join, equal:[eq(test.t.id, Column#25)]", - "├─TableReader(Build) 9990.00 root data:Selection", - "│ └─Selection 9990.00 cop[tikv] not(isnull(test.t.id))", + "├─TableReader(Build) 10000.00 root data:Projection", + "│ └─Projection 10000.00 cop[tikv] minus(test.t.id, 2)->Column#25", "│ └─TableFullScan 10000.00 cop[tikv] table:t keep order:false, stats:pseudo", - "└─TableReader(Probe) 10000.00 root data:Projection", - " └─Projection 10000.00 cop[tikv] minus(test.t.id, 2)->Column#25", + "└─TableReader(Probe) 9990.00 root data:Selection", + " └─Selection 9990.00 cop[tikv] not(isnull(test.t.id))", " └─TableFullScan 10000.00 cop[tikv] table:t keep order:false, stats:pseudo" ] }, @@ -4879,13 +6098,13 @@ "SQL": "desc format = 'brief' select * from t right join (select id-2 as b from t) A on A.b=t.id", "Plan": [ "HashJoin 12487.50 root right outer join, equal:[eq(test.t.id, Column#25)]", - "├─TableReader(Build) 9990.00 root data:Selection", - "│ └─Selection 9990.00 cop[tiflash] not(isnull(test.t.id))", - "│ └─TableFullScan 10000.00 cop[tiflash] table:t keep order:false, stats:pseudo", - "└─TableReader(Probe) 10000.00 root data:ExchangeSender", - " └─ExchangeSender 10000.00 mpp[tiflash] ExchangeType: PassThrough", - " └─Projection 10000.00 mpp[tiflash] minus(test.t.id, 2)->Column#25", - " └─TableFullScan 10000.00 mpp[tiflash] table:t keep order:false, stats:pseudo" + "├─TableReader(Build) 10000.00 root data:ExchangeSender", + "│ └─ExchangeSender 10000.00 mpp[tiflash] ExchangeType: PassThrough", + "│ └─Projection 10000.00 mpp[tiflash] minus(test.t.id, 2)->Column#25", + "│ └─TableFullScan 10000.00 mpp[tiflash] table:t keep order:false, stats:pseudo", + "└─TableReader(Probe) 9990.00 root data:Selection", + " └─Selection 9990.00 cop[tiflash] not(isnull(test.t.id))", + " └─TableFullScan 10000.00 cop[tiflash] table:t keep order:false, stats:pseudo" ] }, { @@ -4946,7 +6165,7 @@ "Name": "TestPushDownProjectionForTiFlash", "Cases": [ { - "SQL": "desc format = 'brief' select /*+ hash_agg()*/ count(b) from (select id + 1 as b from t)A", + "SQL": "desc format = 'brief' select /*+ hash_agg()*/ count(b) from (select /*+ read_from_storage(tiflash[t]) */ id + 1 as b from t)A", "Plan": [ "HashAgg 1.00 root funcs:count(Column#8)->Column#6", "└─TableReader 1.00 root data:HashAgg", @@ -4956,7 +6175,7 @@ ] }, { - "SQL": "desc format = 'brief' select /*+ hash_agg()*/ count(*) from (select id + 1 as b from t)A", + "SQL": "desc format = 'brief' select /*+ hash_agg()*/ count(*) from (select /*+ read_from_storage(tiflash[t]) */ id + 1 as b from t)A", "Plan": [ "HashAgg 1.00 root funcs:count(Column#7)->Column#6", "└─TableReader 1.00 root data:HashAgg", @@ -4965,7 +6184,7 @@ ] }, { - "SQL": "desc format = 'brief' select /*+ hash_agg()*/ sum(b) from (select id + 1 as b from t)A", + "SQL": "desc format = 'brief' select /*+ hash_agg()*/ sum(b) from (select /*+ read_from_storage(tiflash[t]) */ id + 1 as b from t)A", "Plan": [ "HashAgg 1.00 root funcs:sum(Column#8)->Column#6", "└─TableReader 1.00 root data:HashAgg", @@ -4975,7 +6194,7 @@ ] }, { - "SQL": "desc format = 'brief' select /*+ stream_agg()*/ count(b) from (select id + 1 as b from t)A", + "SQL": "desc format = 'brief' select /*+ stream_agg()*/ count(b) from (select /*+ read_from_storage(tiflash[t]) */ id + 1 as b from t)A", "Plan": [ "StreamAgg 1.00 root funcs:count(Column#8)->Column#6", "└─TableReader 1.00 root data:StreamAgg", @@ -4985,7 +6204,7 @@ ] }, { - "SQL": "desc format = 'brief' select /*+ stream_agg()*/ count(*) from (select id + 1 as b from t)A", + "SQL": "desc format = 'brief' select /*+ stream_agg()*/ count(*) from (select /*+ read_from_storage(tiflash[t]) */ id + 1 as b from t)A", "Plan": [ "StreamAgg 1.00 root funcs:count(Column#7)->Column#6", "└─TableReader 1.00 root data:StreamAgg", @@ -4994,7 +6213,7 @@ ] }, { - "SQL": "desc format = 'brief' select /*+ stream_agg()*/ sum(b) from (select id + 1 as b from t)A", + "SQL": "desc format = 'brief' select /*+ stream_agg()*/ sum(b) from (select /*+ read_from_storage(tiflash[t]) */ id + 1 as b from t)A", "Plan": [ "StreamAgg 1.00 root funcs:sum(Column#8)->Column#6", "└─TableReader 1.00 root data:StreamAgg", @@ -5046,11 +6265,11 @@ "SQL": "desc format = 'brief' select * from t right join (select id-2 as b from t) A on A.b=t.id", "Plan": [ "HashJoin 12487.50 root right outer join, equal:[eq(test.t.id, Column#9)]", - "├─TableReader(Build) 9990.00 root data:Selection", - "│ └─Selection 9990.00 cop[tiflash] not(isnull(test.t.id))", + "├─Projection(Build) 10000.00 root minus(test.t.id, 2)->Column#9", + "│ └─TableReader 10000.00 root data:TableFullScan", "│ └─TableFullScan 10000.00 cop[tiflash] table:t keep order:false, stats:pseudo", - "└─Projection(Probe) 10000.00 root minus(test.t.id, 2)->Column#9", - " └─TableReader 10000.00 root data:TableFullScan", + "└─TableReader(Probe) 9990.00 root data:Selection", + " └─Selection 9990.00 cop[tiflash] not(isnull(test.t.id))", " └─TableFullScan 10000.00 cop[tiflash] table:t keep order:false, stats:pseudo" ] }, @@ -5278,12 +6497,13 @@ "└─TableReader 8000.00 root data:ExchangeSender", " └─ExchangeSender 8000.00 mpp[tiflash] ExchangeType: PassThrough", " └─Projection 8000.00 mpp[tiflash] mul(Column#5, 2)->Column#6, test.t.id", - " └─Projection 8000.00 mpp[tiflash] div(Column#5, cast(case(eq(Column#19, 0), 1, Column#19), decimal(20,0) BINARY))->Column#5, test.t.id", - " └─HashAgg 8000.00 mpp[tiflash] group by:Column#27, funcs:count(Column#24)->Column#19, funcs:sum(Column#25)->Column#5, funcs:firstrow(Column#26)->test.t.id", - " └─Projection 10000.00 mpp[tiflash] plus(test.t.value, 2)->Column#24, plus(test.t.value, 2)->Column#25, test.t.id, test.t.id", - " └─ExchangeReceiver 10000.00 mpp[tiflash] ", - " └─ExchangeSender 10000.00 mpp[tiflash] ExchangeType: HashPartition, Hash Cols: [name: test.t.id, collate: binary]", - " └─TableFullScan 10000.00 mpp[tiflash] table:t keep order:false, stats:pseudo" + " └─Projection 8000.00 mpp[tiflash] div(Column#5, cast(case(eq(Column#20, 0), 1, Column#20), decimal(20,0) BINARY))->Column#5, test.t.id", + " └─HashAgg 8000.00 mpp[tiflash] group by:test.t.id, funcs:sum(Column#21)->Column#20, funcs:sum(Column#22)->Column#5, funcs:firstrow(test.t.id)->test.t.id", + " └─ExchangeReceiver 8000.00 mpp[tiflash] ", + " └─ExchangeSender 8000.00 mpp[tiflash] ExchangeType: HashPartition, Hash Cols: [name: test.t.id, collate: binary]", + " └─HashAgg 8000.00 mpp[tiflash] group by:Column#26, funcs:count(Column#24)->Column#21, funcs:sum(Column#25)->Column#22", + " └─Projection 10000.00 mpp[tiflash] plus(test.t.value, 2)->Column#24, plus(test.t.value, 2)->Column#25, test.t.id", + " └─TableFullScan 10000.00 mpp[tiflash] table:t keep order:false, stats:pseudo" ] }, { @@ -5307,10 +6527,11 @@ "└─ExchangeSender 6400.00 mpp[tiflash] ExchangeType: PassThrough", " └─Selection 6400.00 mpp[tiflash] gt(test.t.id, Column#5)", " └─Projection 8000.00 mpp[tiflash] Column#5, test.t.id", - " └─HashAgg 8000.00 mpp[tiflash] group by:test.t.id, funcs:count(1)->Column#5, funcs:firstrow(test.t.id)->test.t.id", - " └─ExchangeReceiver 10000.00 mpp[tiflash] ", - " └─ExchangeSender 10000.00 mpp[tiflash] ExchangeType: HashPartition, Hash Cols: [name: test.t.id, collate: binary]", - " └─TableFullScan 10000.00 mpp[tiflash] table:t keep order:false, stats:pseudo" + " └─HashAgg 8000.00 mpp[tiflash] group by:test.t.id, funcs:sum(Column#12)->Column#5, funcs:firstrow(test.t.id)->test.t.id", + " └─ExchangeReceiver 8000.00 mpp[tiflash] ", + " └─ExchangeSender 8000.00 mpp[tiflash] ExchangeType: HashPartition, Hash Cols: [name: test.t.id, collate: binary]", + " └─HashAgg 8000.00 mpp[tiflash] group by:test.t.id, funcs:count(1)->Column#12", + " └─TableFullScan 10000.00 mpp[tiflash] table:t keep order:false, stats:pseudo" ] }, { @@ -5386,7 +6607,7 @@ { "SQL": "explain format = 'brief' select count(*) from (select a , b from t where false union all select a , c from t1 where false) tt", "Plan": [ - "StreamAgg 1.00 root funcs:count(1)->Column#11", + "HashAgg 1.00 root funcs:count(1)->Column#11", "└─Union 0.00 root ", " ├─Projection 0.00 root test.t.a, cast(test.t.b, double BINARY)->Column#10", " │ └─TableDual 0.00 root rows:0", @@ -5428,20 +6649,22 @@ " │ └─ExchangeSender 7976.02 mpp[tiflash] ExchangeType: HashPartition, Hash Cols: [name: test.t.c1, collate: binary], [name: Column#58, collate: binary], [name: test.t.c5, collate: binary]", " │ └─Projection 7976.02 mpp[tiflash] Column#7, test.t.c1, test.t.c2, test.t.c5, cast(test.t.c2, decimal(10,5))->Column#58", " │ └─Projection 7976.02 mpp[tiflash] Column#7, test.t.c1, test.t.c2, test.t.c5", - " │ └─HashAgg 7976.02 mpp[tiflash] group by:test.t.c1, test.t.c2, test.t.c5, funcs:count(1)->Column#7, funcs:firstrow(test.t.c1)->test.t.c1, funcs:firstrow(test.t.c2)->test.t.c2, funcs:firstrow(test.t.c5)->test.t.c5", - " │ └─ExchangeReceiver 9970.03 mpp[tiflash] ", - " │ └─ExchangeSender 9970.03 mpp[tiflash] ExchangeType: HashPartition, Hash Cols: [name: test.t.c1, collate: binary], [name: test.t.c2, collate: binary], [name: test.t.c5, collate: binary]", - " │ └─Selection 9970.03 mpp[tiflash] not(isnull(test.t.c1)), not(isnull(test.t.c2)), not(isnull(test.t.c5))", - " │ └─TableFullScan 10000.00 mpp[tiflash] table:t keep order:false, stats:pseudo", + " │ └─HashAgg 7976.02 mpp[tiflash] group by:test.t.c1, test.t.c2, test.t.c5, funcs:sum(Column#15)->Column#7, funcs:firstrow(test.t.c1)->test.t.c1, funcs:firstrow(test.t.c2)->test.t.c2, funcs:firstrow(test.t.c5)->test.t.c5", + " │ └─ExchangeReceiver 7976.02 mpp[tiflash] ", + " │ └─ExchangeSender 7976.02 mpp[tiflash] ExchangeType: HashPartition, Hash Cols: [name: test.t.c1, collate: binary], [name: test.t.c2, collate: binary], [name: test.t.c5, collate: binary]", + " │ └─HashAgg 7976.02 mpp[tiflash] group by:test.t.c1, test.t.c2, test.t.c5, funcs:count(1)->Column#15", + " │ └─Selection 9970.03 mpp[tiflash] not(isnull(test.t.c1)), not(isnull(test.t.c2)), not(isnull(test.t.c5))", + " │ └─TableFullScan 10000.00 mpp[tiflash] table:t keep order:false, stats:pseudo", " └─ExchangeReceiver(Probe) 7984.01 mpp[tiflash] ", " └─ExchangeSender 7984.01 mpp[tiflash] ExchangeType: HashPartition, Hash Cols: [name: test.t.c2, collate: binary], [name: Column#59, collate: binary], [name: Column#60, collate: binary]", " └─Projection 7984.01 mpp[tiflash] Column#14, test.t.c1, test.t.c2, test.t.c3, cast(test.t.c3, decimal(10,5))->Column#59, cast(test.t.c1, decimal(40,20))->Column#60", " └─Projection 7984.01 mpp[tiflash] Column#14, test.t.c1, test.t.c2, test.t.c3", - " └─HashAgg 7984.01 mpp[tiflash] group by:test.t.c1, test.t.c2, test.t.c3, funcs:count(1)->Column#14, funcs:firstrow(test.t.c1)->test.t.c1, funcs:firstrow(test.t.c2)->test.t.c2, funcs:firstrow(test.t.c3)->test.t.c3", - " └─ExchangeReceiver 9980.01 mpp[tiflash] ", - " └─ExchangeSender 9980.01 mpp[tiflash] ExchangeType: HashPartition, Hash Cols: [name: test.t.c2, collate: binary], [name: test.t.c3, collate: binary], [name: test.t.c1, collate: binary]", - " └─Selection 9980.01 mpp[tiflash] not(isnull(test.t.c1)), not(isnull(test.t.c2))", - " └─TableFullScan 10000.00 mpp[tiflash] table:t keep order:false, stats:pseudo" + " └─HashAgg 7984.01 mpp[tiflash] group by:test.t.c1, test.t.c2, test.t.c3, funcs:sum(Column#23)->Column#14, funcs:firstrow(test.t.c1)->test.t.c1, funcs:firstrow(test.t.c2)->test.t.c2, funcs:firstrow(test.t.c3)->test.t.c3", + " └─ExchangeReceiver 7984.01 mpp[tiflash] ", + " └─ExchangeSender 7984.01 mpp[tiflash] ExchangeType: HashPartition, Hash Cols: [name: test.t.c2, collate: binary], [name: test.t.c3, collate: binary], [name: test.t.c1, collate: binary]", + " └─HashAgg 7984.01 mpp[tiflash] group by:test.t.c1, test.t.c2, test.t.c3, funcs:count(1)->Column#23", + " └─Selection 9980.01 mpp[tiflash] not(isnull(test.t.c1)), not(isnull(test.t.c2))", + " └─TableFullScan 10000.00 mpp[tiflash] table:t keep order:false, stats:pseudo" ] }, { @@ -5574,6 +6797,28 @@ } ] }, + { + "Name": "TestMppJoinExchangeColumnPrune", + "Cases": [ + { + "SQL": "desc format = 'brief' select * from tt t1 where exists (select * from t t2 where t1.b1 = t2.c3 and t2.c1 < t2.c2)", + "Plan": [ + "TableReader 7992.00 root data:ExchangeSender", + "└─ExchangeSender 7992.00 mpp[tiflash] ExchangeType: PassThrough", + " └─HashJoin 7992.00 mpp[tiflash] semi join, equal:[eq(test.tt.b1, test.t.c3)]", + " ├─ExchangeReceiver(Build) 8000.00 mpp[tiflash] ", + " │ └─ExchangeSender 8000.00 mpp[tiflash] ExchangeType: HashPartition, Hash Cols: [name: test.t.c3, collate: binary]", + " │ └─Projection 8000.00 mpp[tiflash] test.t.c3", + " │ └─Selection 8000.00 mpp[tiflash] lt(test.t.c1, test.t.c2)", + " │ └─TableFullScan 10000.00 mpp[tiflash] table:t2 keep order:false, stats:pseudo", + " └─ExchangeReceiver(Probe) 9990.00 mpp[tiflash] ", + " └─ExchangeSender 9990.00 mpp[tiflash] ExchangeType: HashPartition, Hash Cols: [name: test.tt.b1, collate: binary]", + " └─Selection 9990.00 mpp[tiflash] not(isnull(test.tt.b1))", + " └─TableFullScan 10000.00 mpp[tiflash] table:t1 keep order:false, stats:pseudo" + ] + } + ] + }, { "Name": "TestPushDownAggForMPP", "Cases": [ @@ -5625,10 +6870,11 @@ "TableReader 8000.00 root data:ExchangeSender", "└─ExchangeSender 8000.00 mpp[tiflash] ExchangeType: PassThrough", " └─Projection 8000.00 mpp[tiflash] Column#4, test.t.id", - " └─HashAgg 8000.00 mpp[tiflash] group by:test.t.id, funcs:count(1)->Column#4, funcs:firstrow(test.t.id)->test.t.id", - " └─ExchangeReceiver 10000.00 mpp[tiflash] ", - " └─ExchangeSender 10000.00 mpp[tiflash] ExchangeType: HashPartition, Hash Cols: [name: test.t.id, collate: binary]", - " └─TableFullScan 10000.00 mpp[tiflash] table:t keep order:false, stats:pseudo" + " └─HashAgg 8000.00 mpp[tiflash] group by:test.t.id, funcs:sum(Column#11)->Column#4, funcs:firstrow(test.t.id)->test.t.id", + " └─ExchangeReceiver 8000.00 mpp[tiflash] ", + " └─ExchangeSender 8000.00 mpp[tiflash] ExchangeType: HashPartition, Hash Cols: [name: test.t.id, collate: binary]", + " └─HashAgg 8000.00 mpp[tiflash] group by:test.t.id, funcs:count(1)->Column#11", + " └─TableFullScan 10000.00 mpp[tiflash] table:t keep order:false, stats:pseudo" ] }, { @@ -5653,11 +6899,12 @@ "└─ExchangeSender 9990.00 mpp[tiflash] ExchangeType: PassThrough", " └─HashJoin 9990.00 mpp[tiflash] inner join, equal:[eq(test.t.id, test.t.id)]", " ├─Projection(Build) 7992.00 mpp[tiflash] Column#7, test.t.id", - " │ └─HashAgg 7992.00 mpp[tiflash] group by:test.t.id, funcs:count(1)->Column#7, funcs:firstrow(test.t.id)->test.t.id", - " │ └─ExchangeReceiver 9990.00 mpp[tiflash] ", - " │ └─ExchangeSender 9990.00 mpp[tiflash] ExchangeType: HashPartition, Hash Cols: [name: test.t.id, collate: binary]", - " │ └─Selection 9990.00 mpp[tiflash] not(isnull(test.t.id))", - " │ └─TableFullScan 10000.00 mpp[tiflash] table:t keep order:false, stats:pseudo", + " │ └─HashAgg 7992.00 mpp[tiflash] group by:test.t.id, funcs:sum(Column#8)->Column#7, funcs:firstrow(test.t.id)->test.t.id", + " │ └─ExchangeReceiver 7992.00 mpp[tiflash] ", + " │ └─ExchangeSender 7992.00 mpp[tiflash] ExchangeType: HashPartition, Hash Cols: [name: test.t.id, collate: binary]", + " │ └─HashAgg 7992.00 mpp[tiflash] group by:test.t.id, funcs:count(1)->Column#8", + " │ └─Selection 9990.00 mpp[tiflash] not(isnull(test.t.id))", + " │ └─TableFullScan 10000.00 mpp[tiflash] table:t keep order:false, stats:pseudo", " └─ExchangeReceiver(Probe) 9990.00 mpp[tiflash] ", " └─ExchangeSender 9990.00 mpp[tiflash] ExchangeType: HashPartition, Hash Cols: [name: test.t.id, collate: binary]", " └─Selection 9990.00 mpp[tiflash] not(isnull(test.t.id))", @@ -5683,11 +6930,12 @@ "Plan": [ "TableReader 8000.00 root data:ExchangeSender", "└─ExchangeSender 8000.00 mpp[tiflash] ExchangeType: PassThrough", - " └─Projection 8000.00 mpp[tiflash] div(Column#4, cast(case(eq(Column#16, 0), 1, Column#16), decimal(20,0) BINARY))->Column#4, test.t.id", - " └─HashAgg 8000.00 mpp[tiflash] group by:test.t.id, funcs:count(test.t.value)->Column#16, funcs:sum(test.t.value)->Column#4, funcs:firstrow(test.t.id)->test.t.id", - " └─ExchangeReceiver 10000.00 mpp[tiflash] ", - " └─ExchangeSender 10000.00 mpp[tiflash] ExchangeType: HashPartition, Hash Cols: [name: test.t.id, collate: binary]", - " └─TableFullScan 10000.00 mpp[tiflash] table:t keep order:false, stats:pseudo" + " └─Projection 8000.00 mpp[tiflash] div(Column#4, cast(case(eq(Column#17, 0), 1, Column#17), decimal(20,0) BINARY))->Column#4, test.t.id", + " └─HashAgg 8000.00 mpp[tiflash] group by:test.t.id, funcs:sum(Column#18)->Column#17, funcs:sum(Column#19)->Column#4, funcs:firstrow(test.t.id)->test.t.id", + " └─ExchangeReceiver 8000.00 mpp[tiflash] ", + " └─ExchangeSender 8000.00 mpp[tiflash] ExchangeType: HashPartition, Hash Cols: [name: test.t.id, collate: binary]", + " └─HashAgg 8000.00 mpp[tiflash] group by:test.t.id, funcs:count(test.t.value)->Column#18, funcs:sum(test.t.value)->Column#19", + " └─TableFullScan 10000.00 mpp[tiflash] table:t keep order:false, stats:pseudo" ] }, { @@ -5697,11 +6945,12 @@ "└─TableReader 1.00 root data:ExchangeSender", " └─ExchangeSender 1.00 mpp[tiflash] ExchangeType: PassThrough", " └─HashAgg 1.00 mpp[tiflash] funcs:sum(Column#4)->Column#18", - " └─Projection 8000.00 mpp[tiflash] div(Column#4, cast(case(eq(Column#14, 0), 1, Column#14), decimal(20,0) BINARY))->Column#4", - " └─HashAgg 8000.00 mpp[tiflash] group by:test.t.id, funcs:count(test.t.value)->Column#14, funcs:sum(test.t.value)->Column#4", - " └─ExchangeReceiver 10000.00 mpp[tiflash] ", - " └─ExchangeSender 10000.00 mpp[tiflash] ExchangeType: HashPartition, Hash Cols: [name: test.t.id, collate: binary]", - " └─TableFullScan 10000.00 mpp[tiflash] table:t keep order:false, stats:pseudo" + " └─Projection 8000.00 mpp[tiflash] div(Column#4, cast(case(eq(Column#15, 0), 1, Column#15), decimal(20,0) BINARY))->Column#4", + " └─HashAgg 8000.00 mpp[tiflash] group by:test.t.id, funcs:sum(Column#16)->Column#15, funcs:sum(Column#17)->Column#4", + " └─ExchangeReceiver 8000.00 mpp[tiflash] ", + " └─ExchangeSender 8000.00 mpp[tiflash] ExchangeType: HashPartition, Hash Cols: [name: test.t.id, collate: binary]", + " └─HashAgg 8000.00 mpp[tiflash] group by:test.t.id, funcs:count(test.t.value)->Column#16, funcs:sum(test.t.value)->Column#17", + " └─TableFullScan 10000.00 mpp[tiflash] table:t keep order:false, stats:pseudo" ] }, { @@ -5711,11 +6960,12 @@ "└─ExchangeSender 6400.00 mpp[tiflash] ExchangeType: PassThrough", " └─Projection 6400.00 mpp[tiflash] test.t.id", " └─Selection 6400.00 mpp[tiflash] gt(Column#4, 0)", - " └─Projection 8000.00 mpp[tiflash] div(Column#4, cast(case(eq(Column#17, 0), 1, Column#17), decimal(20,0) BINARY))->Column#4, test.t.id", - " └─HashAgg 8000.00 mpp[tiflash] group by:test.t.id, funcs:count(test.t.value)->Column#17, funcs:sum(test.t.value)->Column#4, funcs:firstrow(test.t.id)->test.t.id", - " └─ExchangeReceiver 10000.00 mpp[tiflash] ", - " └─ExchangeSender 10000.00 mpp[tiflash] ExchangeType: HashPartition, Hash Cols: [name: test.t.id, collate: binary]", - " └─TableFullScan 10000.00 mpp[tiflash] table:t keep order:false, stats:pseudo" + " └─Projection 8000.00 mpp[tiflash] div(Column#4, cast(case(eq(Column#18, 0), 1, Column#18), decimal(20,0) BINARY))->Column#4, test.t.id", + " └─HashAgg 8000.00 mpp[tiflash] group by:test.t.id, funcs:sum(Column#19)->Column#18, funcs:sum(Column#20)->Column#4, funcs:firstrow(test.t.id)->test.t.id", + " └─ExchangeReceiver 8000.00 mpp[tiflash] ", + " └─ExchangeSender 8000.00 mpp[tiflash] ExchangeType: HashPartition, Hash Cols: [name: test.t.id, collate: binary]", + " └─HashAgg 8000.00 mpp[tiflash] group by:test.t.id, funcs:count(test.t.value)->Column#19, funcs:sum(test.t.value)->Column#20", + " └─TableFullScan 10000.00 mpp[tiflash] table:t keep order:false, stats:pseudo" ] }, { @@ -5724,11 +6974,12 @@ "TableReader 6400.00 root data:ExchangeSender", "└─ExchangeSender 6400.00 mpp[tiflash] ExchangeType: PassThrough", " └─Selection 6400.00 mpp[tiflash] gt(Column#4, 0)", - " └─Projection 8000.00 mpp[tiflash] div(Column#4, cast(case(eq(Column#18, 0), 1, Column#18), decimal(20,0) BINARY))->Column#4, test.t.id", - " └─HashAgg 8000.00 mpp[tiflash] group by:test.t.id, funcs:count(test.t.value)->Column#18, funcs:sum(test.t.value)->Column#4, funcs:firstrow(test.t.id)->test.t.id", - " └─ExchangeReceiver 10000.00 mpp[tiflash] ", - " └─ExchangeSender 10000.00 mpp[tiflash] ExchangeType: HashPartition, Hash Cols: [name: test.t.id, collate: binary]", - " └─TableFullScan 10000.00 mpp[tiflash] table:t keep order:false, stats:pseudo" + " └─Projection 8000.00 mpp[tiflash] div(Column#4, cast(case(eq(Column#19, 0), 1, Column#19), decimal(20,0) BINARY))->Column#4, test.t.id", + " └─HashAgg 8000.00 mpp[tiflash] group by:test.t.id, funcs:sum(Column#20)->Column#19, funcs:sum(Column#21)->Column#4, funcs:firstrow(test.t.id)->test.t.id", + " └─ExchangeReceiver 8000.00 mpp[tiflash] ", + " └─ExchangeSender 8000.00 mpp[tiflash] ExchangeType: HashPartition, Hash Cols: [name: test.t.id, collate: binary]", + " └─HashAgg 8000.00 mpp[tiflash] group by:test.t.id, funcs:count(test.t.value)->Column#20, funcs:sum(test.t.value)->Column#21", + " └─TableFullScan 10000.00 mpp[tiflash] table:t keep order:false, stats:pseudo" ] }, { @@ -5737,11 +6988,12 @@ "TableReader 8000.00 root data:ExchangeSender", "└─ExchangeSender 8000.00 mpp[tiflash] ExchangeType: PassThrough", " └─Projection 8000.00 mpp[tiflash] plus(Column#4, 1)->Column#5, test.t.id", - " └─Projection 8000.00 mpp[tiflash] div(Column#4, cast(case(eq(Column#18, 0), 1, Column#18), decimal(20,0) BINARY))->Column#4, test.t.id", - " └─HashAgg 8000.00 mpp[tiflash] group by:test.t.id, funcs:count(test.t.value)->Column#18, funcs:sum(test.t.value)->Column#4, funcs:firstrow(test.t.id)->test.t.id", - " └─ExchangeReceiver 10000.00 mpp[tiflash] ", - " └─ExchangeSender 10000.00 mpp[tiflash] ExchangeType: HashPartition, Hash Cols: [name: test.t.id, collate: binary]", - " └─TableFullScan 10000.00 mpp[tiflash] table:t keep order:false, stats:pseudo" + " └─Projection 8000.00 mpp[tiflash] div(Column#4, cast(case(eq(Column#19, 0), 1, Column#19), decimal(20,0) BINARY))->Column#4, test.t.id", + " └─HashAgg 8000.00 mpp[tiflash] group by:test.t.id, funcs:sum(Column#20)->Column#19, funcs:sum(Column#21)->Column#4, funcs:firstrow(test.t.id)->test.t.id", + " └─ExchangeReceiver 8000.00 mpp[tiflash] ", + " └─ExchangeSender 8000.00 mpp[tiflash] ExchangeType: HashPartition, Hash Cols: [name: test.t.id, collate: binary]", + " └─HashAgg 8000.00 mpp[tiflash] group by:test.t.id, funcs:count(test.t.value)->Column#20, funcs:sum(test.t.value)->Column#21", + " └─TableFullScan 10000.00 mpp[tiflash] table:t keep order:false, stats:pseudo" ] }, { @@ -5771,20 +7023,22 @@ " └─HashJoin 7992.00 mpp[tiflash] inner join, equal:[eq(test.t.id, test.t.id)]", " ├─Projection(Build) 7992.00 mpp[tiflash] test.t.id", " │ └─HashAgg 7992.00 mpp[tiflash] group by:test.t.id, funcs:firstrow(test.t.id)->test.t.id", - " │ └─ExchangeReceiver 9990.00 mpp[tiflash] ", - " │ └─ExchangeSender 9990.00 mpp[tiflash] ExchangeType: HashPartition, Hash Cols: [name: test.t.id, collate: binary]", - " │ └─Selection 9990.00 mpp[tiflash] not(isnull(test.t.id))", - " │ └─TableFullScan 10000.00 mpp[tiflash] table:t keep order:false, stats:pseudo", + " │ └─ExchangeReceiver 7992.00 mpp[tiflash] ", + " │ └─ExchangeSender 7992.00 mpp[tiflash] ExchangeType: HashPartition, Hash Cols: [name: test.t.id, collate: binary]", + " │ └─HashAgg 7992.00 mpp[tiflash] group by:test.t.id, ", + " │ └─Selection 9990.00 mpp[tiflash] not(isnull(test.t.id))", + " │ └─TableFullScan 10000.00 mpp[tiflash] table:t keep order:false, stats:pseudo", " └─Projection(Probe) 7992.00 mpp[tiflash] Column#11, test.t.id", " └─HashAgg 7992.00 mpp[tiflash] group by:Column#39, funcs:sum(Column#37)->Column#11, funcs:firstrow(Column#38)->test.t.id", " └─Projection 9990.00 mpp[tiflash] cast(test.t.id, decimal(10,0) BINARY)->Column#37, test.t.id, test.t.id", " └─HashJoin 9990.00 mpp[tiflash] inner join, equal:[eq(test.t.id, test.t.id)]", " ├─Projection(Build) 7992.00 mpp[tiflash] test.t.id, Column#13", - " │ └─HashAgg 7992.00 mpp[tiflash] group by:test.t.id, funcs:firstrow(test.t.id)->test.t.id, funcs:count(1)->Column#13", - " │ └─ExchangeReceiver 9990.00 mpp[tiflash] ", - " │ └─ExchangeSender 9990.00 mpp[tiflash] ExchangeType: HashPartition, Hash Cols: [name: test.t.id, collate: binary]", - " │ └─Selection 9990.00 mpp[tiflash] not(isnull(test.t.id))", - " │ └─TableFullScan 10000.00 mpp[tiflash] table:t keep order:false, stats:pseudo", + " │ └─HashAgg 7992.00 mpp[tiflash] group by:test.t.id, funcs:firstrow(test.t.id)->test.t.id, funcs:sum(Column#17)->Column#13", + " │ └─ExchangeReceiver 7992.00 mpp[tiflash] ", + " │ └─ExchangeSender 7992.00 mpp[tiflash] ExchangeType: HashPartition, Hash Cols: [name: test.t.id, collate: binary]", + " │ └─HashAgg 7992.00 mpp[tiflash] group by:test.t.id, funcs:count(1)->Column#17", + " │ └─Selection 9990.00 mpp[tiflash] not(isnull(test.t.id))", + " │ └─TableFullScan 10000.00 mpp[tiflash] table:t keep order:false, stats:pseudo", " └─ExchangeReceiver(Probe) 9990.00 mpp[tiflash] ", " └─ExchangeSender 9990.00 mpp[tiflash] ExchangeType: HashPartition, Hash Cols: [name: test.t.id, collate: binary]", " └─Selection 9990.00 mpp[tiflash] not(isnull(test.t.id))", @@ -5838,12 +7092,13 @@ "└─ExchangeSender 9990.00 mpp[tiflash] ExchangeType: PassThrough", " └─HashJoin 9990.00 mpp[tiflash] inner join, equal:[eq(test.t.id, test.t.id)]", " ├─Projection(Build) 7992.00 mpp[tiflash] Column#7, test.t.id", - " │ └─HashAgg 7992.00 mpp[tiflash] group by:Column#20, funcs:count(Column#18)->Column#7, funcs:firstrow(Column#19)->test.t.id", - " │ └─Projection 9990.00 mpp[tiflash] div(1, test.t.value)->Column#18, test.t.id, test.t.id", - " │ └─ExchangeReceiver 9990.00 mpp[tiflash] ", - " │ └─ExchangeSender 9990.00 mpp[tiflash] ExchangeType: HashPartition, Hash Cols: [name: test.t.id, collate: binary]", - " │ └─Selection 9990.00 mpp[tiflash] not(isnull(test.t.id))", - " │ └─TableFullScan 10000.00 mpp[tiflash] table:t keep order:false, stats:pseudo", + " │ └─HashAgg 7992.00 mpp[tiflash] group by:test.t.id, funcs:sum(Column#8)->Column#7, funcs:firstrow(test.t.id)->test.t.id", + " │ └─ExchangeReceiver 7992.00 mpp[tiflash] ", + " │ └─ExchangeSender 7992.00 mpp[tiflash] ExchangeType: HashPartition, Hash Cols: [name: test.t.id, collate: binary]", + " │ └─HashAgg 7992.00 mpp[tiflash] group by:Column#19, funcs:count(Column#18)->Column#8", + " │ └─Projection 9990.00 mpp[tiflash] div(1, test.t.value)->Column#18, test.t.id", + " │ └─Selection 9990.00 mpp[tiflash] not(isnull(test.t.id))", + " │ └─TableFullScan 10000.00 mpp[tiflash] table:t keep order:false, stats:pseudo", " └─ExchangeReceiver(Probe) 9990.00 mpp[tiflash] ", " └─ExchangeSender 9990.00 mpp[tiflash] ExchangeType: HashPartition, Hash Cols: [name: test.t.id, collate: binary]", " └─Selection 9990.00 mpp[tiflash] not(isnull(test.t.id))", @@ -5877,11 +7132,12 @@ " └─Selection 8000.00 mpp[tiflash] gt(plus(test.t.id, 1), ifnull(Column#7, 0))", " └─HashJoin 10000.00 mpp[tiflash] left outer join, equal:[eq(test.t.id, test.t.id) eq(test.t.value, test.t.value)]", " ├─Projection(Build) 7984.01 mpp[tiflash] Column#7, test.t.id, test.t.value", - " │ └─HashAgg 7984.01 mpp[tiflash] group by:test.t.id, test.t.value, funcs:count(1)->Column#7, funcs:firstrow(test.t.id)->test.t.id, funcs:firstrow(test.t.value)->test.t.value", - " │ └─ExchangeReceiver 9980.01 mpp[tiflash] ", - " │ └─ExchangeSender 9980.01 mpp[tiflash] ExchangeType: HashPartition, Hash Cols: [name: test.t.id, collate: binary]", - " │ └─Selection 9980.01 mpp[tiflash] not(isnull(test.t.id)), not(isnull(test.t.value))", - " │ └─TableFullScan 10000.00 mpp[tiflash] table:t keep order:false, stats:pseudo", + " │ └─HashAgg 7984.01 mpp[tiflash] group by:test.t.id, test.t.value, funcs:sum(Column#24)->Column#7, funcs:firstrow(test.t.id)->test.t.id, funcs:firstrow(test.t.value)->test.t.value", + " │ └─ExchangeReceiver 7984.01 mpp[tiflash] ", + " │ └─ExchangeSender 7984.01 mpp[tiflash] ExchangeType: HashPartition, Hash Cols: [name: test.t.id, collate: binary]", + " │ └─HashAgg 7984.01 mpp[tiflash] group by:test.t.id, test.t.value, funcs:count(1)->Column#24", + " │ └─Selection 9980.01 mpp[tiflash] not(isnull(test.t.id)), not(isnull(test.t.value))", + " │ └─TableFullScan 10000.00 mpp[tiflash] table:t keep order:false, stats:pseudo", " └─ExchangeReceiver(Probe) 10000.00 mpp[tiflash] ", " └─ExchangeSender 10000.00 mpp[tiflash] ExchangeType: HashPartition, Hash Cols: [name: test.t.id, collate: binary]", " └─TableFullScan 10000.00 mpp[tiflash] table:B keep order:false, stats:pseudo" @@ -5951,11 +7207,12 @@ " ├─ExchangeReceiver(Build) 7992.00 mpp[tiflash] ", " │ └─ExchangeSender 7992.00 mpp[tiflash] ExchangeType: Broadcast", " │ └─Projection 7992.00 mpp[tiflash] Column#7, test.t.id", - " │ └─HashAgg 7992.00 mpp[tiflash] group by:test.t.id, funcs:count(1)->Column#7, funcs:firstrow(test.t.id)->test.t.id", - " │ └─ExchangeReceiver 9990.00 mpp[tiflash] ", - " │ └─ExchangeSender 9990.00 mpp[tiflash] ExchangeType: HashPartition, Hash Cols: [name: test.t.id, collate: binary]", - " │ └─Selection 9990.00 mpp[tiflash] not(isnull(test.t.id))", - " │ └─TableFullScan 10000.00 mpp[tiflash] table:t keep order:false, stats:pseudo", + " │ └─HashAgg 7992.00 mpp[tiflash] group by:test.t.id, funcs:sum(Column#8)->Column#7, funcs:firstrow(test.t.id)->test.t.id", + " │ └─ExchangeReceiver 7992.00 mpp[tiflash] ", + " │ └─ExchangeSender 7992.00 mpp[tiflash] ExchangeType: HashPartition, Hash Cols: [name: test.t.id, collate: binary]", + " │ └─HashAgg 7992.00 mpp[tiflash] group by:test.t.id, funcs:count(1)->Column#8", + " │ └─Selection 9990.00 mpp[tiflash] not(isnull(test.t.id))", + " │ └─TableFullScan 10000.00 mpp[tiflash] table:t keep order:false, stats:pseudo", " └─Selection(Probe) 9990.00 mpp[tiflash] not(isnull(test.t.id))", " └─TableFullScan 10000.00 mpp[tiflash] table:t keep order:false, stats:pseudo" ] @@ -5971,10 +7228,11 @@ " │ └─Projection 6400.00 mpp[tiflash] plus(Column#7, test.t.id)->Column#8", " │ └─Selection 6400.00 mpp[tiflash] not(isnull(plus(Column#7, test.t.id)))", " │ └─Projection 8000.00 mpp[tiflash] Column#7, test.t.id", - " │ └─HashAgg 8000.00 mpp[tiflash] group by:test.t.id, funcs:count(1)->Column#7, funcs:firstrow(test.t.id)->test.t.id", - " │ └─ExchangeReceiver 10000.00 mpp[tiflash] ", - " │ └─ExchangeSender 10000.00 mpp[tiflash] ExchangeType: HashPartition, Hash Cols: [name: test.t.id, collate: binary]", - " │ └─TableFullScan 10000.00 mpp[tiflash] table:t keep order:false, stats:pseudo", + " │ └─HashAgg 8000.00 mpp[tiflash] group by:test.t.id, funcs:sum(Column#11)->Column#7, funcs:firstrow(test.t.id)->test.t.id", + " │ └─ExchangeReceiver 8000.00 mpp[tiflash] ", + " │ └─ExchangeSender 8000.00 mpp[tiflash] ExchangeType: HashPartition, Hash Cols: [name: test.t.id, collate: binary]", + " │ └─HashAgg 8000.00 mpp[tiflash] group by:test.t.id, funcs:count(1)->Column#11", + " │ └─TableFullScan 10000.00 mpp[tiflash] table:t keep order:false, stats:pseudo", " └─Selection(Probe) 9990.00 mpp[tiflash] not(isnull(test.t.id))", " └─TableFullScan 10000.00 mpp[tiflash] table:t keep order:false, stats:pseudo" ] @@ -5990,11 +7248,12 @@ " │ └─ExchangeSender 6393.60 mpp[tiflash] ExchangeType: Broadcast", " │ └─Selection 6393.60 mpp[tiflash] lt(plus(test.t.value, cast(Column#7, decimal(20,0) BINARY)), 10)", " │ └─Projection 7992.00 mpp[tiflash] Column#7, test.t.id, test.t.value", - " │ └─HashAgg 7992.00 mpp[tiflash] group by:test.t.id, test.t.value, funcs:count(1)->Column#7, funcs:firstrow(test.t.id)->test.t.id, funcs:firstrow(test.t.value)->test.t.value", - " │ └─ExchangeReceiver 9990.00 mpp[tiflash] ", - " │ └─ExchangeSender 9990.00 mpp[tiflash] ExchangeType: HashPartition, Hash Cols: [name: test.t.value, collate: binary], [name: test.t.id, collate: binary]", - " │ └─Selection 9990.00 mpp[tiflash] not(isnull(test.t.id))", - " │ └─TableFullScan 10000.00 mpp[tiflash] table:t keep order:false, stats:pseudo", + " │ └─HashAgg 7992.00 mpp[tiflash] group by:test.t.id, test.t.value, funcs:sum(Column#10)->Column#7, funcs:firstrow(test.t.id)->test.t.id, funcs:firstrow(test.t.value)->test.t.value", + " │ └─ExchangeReceiver 7992.00 mpp[tiflash] ", + " │ └─ExchangeSender 7992.00 mpp[tiflash] ExchangeType: HashPartition, Hash Cols: [name: test.t.value, collate: binary], [name: test.t.id, collate: binary]", + " │ └─HashAgg 7992.00 mpp[tiflash] group by:test.t.id, test.t.value, funcs:count(1)->Column#10", + " │ └─Selection 9990.00 mpp[tiflash] not(isnull(test.t.id))", + " │ └─TableFullScan 10000.00 mpp[tiflash] table:t keep order:false, stats:pseudo", " └─Selection(Probe) 9990.00 mpp[tiflash] not(isnull(test.t.id))", " └─TableFullScan 10000.00 mpp[tiflash] table:t keep order:false, stats:pseudo" ] @@ -6042,16 +7301,18 @@ " │ └─ExchangeSender 7992.00 mpp[tiflash] ExchangeType: Broadcast", " │ └─Projection 7992.00 mpp[tiflash] test.t.id", " │ └─HashAgg 7992.00 mpp[tiflash] group by:test.t.id, funcs:firstrow(test.t.id)->test.t.id", - " │ └─ExchangeReceiver 9990.00 mpp[tiflash] ", - " │ └─ExchangeSender 9990.00 mpp[tiflash] ExchangeType: HashPartition, Hash Cols: [name: test.t.id, collate: binary]", - " │ └─Selection 9990.00 mpp[tiflash] not(isnull(test.t.id))", - " │ └─TableFullScan 10000.00 mpp[tiflash] table:t keep order:false, stats:pseudo", + " │ └─ExchangeReceiver 7992.00 mpp[tiflash] ", + " │ └─ExchangeSender 7992.00 mpp[tiflash] ExchangeType: HashPartition, Hash Cols: [name: test.t.id, collate: binary]", + " │ └─HashAgg 7992.00 mpp[tiflash] group by:test.t.id, ", + " │ └─Selection 9990.00 mpp[tiflash] not(isnull(test.t.id))", + " │ └─TableFullScan 10000.00 mpp[tiflash] table:t keep order:false, stats:pseudo", " └─Projection(Probe) 7992.00 mpp[tiflash] Column#7, test.t.id", - " └─HashAgg 7992.00 mpp[tiflash] group by:test.t.id, funcs:sum(test.t.value)->Column#7, funcs:firstrow(test.t.id)->test.t.id", - " └─ExchangeReceiver 9990.00 mpp[tiflash] ", - " └─ExchangeSender 9990.00 mpp[tiflash] ExchangeType: HashPartition, Hash Cols: [name: test.t.id, collate: binary]", - " └─Selection 9990.00 mpp[tiflash] not(isnull(test.t.id))", - " └─TableFullScan 10000.00 mpp[tiflash] table:t keep order:false, stats:pseudo" + " └─HashAgg 7992.00 mpp[tiflash] group by:test.t.id, funcs:sum(Column#9)->Column#7, funcs:firstrow(test.t.id)->test.t.id", + " └─ExchangeReceiver 7992.00 mpp[tiflash] ", + " └─ExchangeSender 7992.00 mpp[tiflash] ExchangeType: HashPartition, Hash Cols: [name: test.t.id, collate: binary]", + " └─HashAgg 7992.00 mpp[tiflash] group by:test.t.id, funcs:sum(test.t.value)->Column#9", + " └─Selection 9990.00 mpp[tiflash] not(isnull(test.t.id))", + " └─TableFullScan 10000.00 mpp[tiflash] table:t keep order:false, stats:pseudo" ] }, { @@ -6064,10 +7325,11 @@ " │ └─ExchangeSender 7992.00 mpp[tiflash] ExchangeType: Broadcast", " │ └─Projection 7992.00 mpp[tiflash] test.t.id", " │ └─HashAgg 7992.00 mpp[tiflash] group by:test.t.id, funcs:firstrow(test.t.id)->test.t.id", - " │ └─ExchangeReceiver 9990.00 mpp[tiflash] ", - " │ └─ExchangeSender 9990.00 mpp[tiflash] ExchangeType: HashPartition, Hash Cols: [name: test.t.id, collate: binary]", - " │ └─Selection 9990.00 mpp[tiflash] not(isnull(test.t.id))", - " │ └─TableFullScan 10000.00 mpp[tiflash] table:t keep order:false, stats:pseudo", + " │ └─ExchangeReceiver 7992.00 mpp[tiflash] ", + " │ └─ExchangeSender 7992.00 mpp[tiflash] ExchangeType: HashPartition, Hash Cols: [name: test.t.id, collate: binary]", + " │ └─HashAgg 7992.00 mpp[tiflash] group by:test.t.id, ", + " │ └─Selection 9990.00 mpp[tiflash] not(isnull(test.t.id))", + " │ └─TableFullScan 10000.00 mpp[tiflash] table:t keep order:false, stats:pseudo", " └─Projection(Probe) 7992.00 mpp[tiflash] Column#11, test.t.id", " └─HashAgg 7992.00 mpp[tiflash] group by:Column#34, funcs:sum(Column#32)->Column#11, funcs:firstrow(Column#33)->test.t.id", " └─Projection 9990.00 mpp[tiflash] cast(test.t.id, decimal(10,0) BINARY)->Column#32, test.t.id, test.t.id", @@ -6077,11 +7339,12 @@ " ├─ExchangeReceiver(Build) 7992.00 mpp[tiflash] ", " │ └─ExchangeSender 7992.00 mpp[tiflash] ExchangeType: Broadcast", " │ └─Projection 7992.00 mpp[tiflash] test.t.id, Column#13", - " │ └─HashAgg 7992.00 mpp[tiflash] group by:test.t.id, funcs:firstrow(test.t.id)->test.t.id, funcs:count(1)->Column#13", - " │ └─ExchangeReceiver 9990.00 mpp[tiflash] ", - " │ └─ExchangeSender 9990.00 mpp[tiflash] ExchangeType: HashPartition, Hash Cols: [name: test.t.id, collate: binary]", - " │ └─Selection 9990.00 mpp[tiflash] not(isnull(test.t.id))", - " │ └─TableFullScan 10000.00 mpp[tiflash] table:t keep order:false, stats:pseudo", + " │ └─HashAgg 7992.00 mpp[tiflash] group by:test.t.id, funcs:firstrow(test.t.id)->test.t.id, funcs:sum(Column#16)->Column#13", + " │ └─ExchangeReceiver 7992.00 mpp[tiflash] ", + " │ └─ExchangeSender 7992.00 mpp[tiflash] ExchangeType: HashPartition, Hash Cols: [name: test.t.id, collate: binary]", + " │ └─HashAgg 7992.00 mpp[tiflash] group by:test.t.id, funcs:count(1)->Column#16", + " │ └─Selection 9990.00 mpp[tiflash] not(isnull(test.t.id))", + " │ └─TableFullScan 10000.00 mpp[tiflash] table:t keep order:false, stats:pseudo", " └─Selection(Probe) 9990.00 mpp[tiflash] not(isnull(test.t.id))", " └─TableFullScan 10000.00 mpp[tiflash] table:t keep order:false, stats:pseudo" ] @@ -6246,22 +7509,22 @@ { "SQL": "desc format = 'brief' select * from t where a = 1 and b > 2 and b < 10 and d = 10 order by b,c limit 10", "Plan": [ - "TopN 0.00 root test.t.b, test.t.c, offset:0, count:10", - "└─IndexLookUp 0.00 root ", - " ├─IndexRangeScan(Build) 2.50 cop[tikv] table:t, index:idx(a, b, c) range:(1 2,1 10), keep order:false, stats:pseudo", - " └─TopN(Probe) 0.00 cop[tikv] test.t.b, test.t.c, offset:0, count:10", - " └─Selection 0.00 cop[tikv] eq(test.t.d, 10)", + "Limit 0.00 root offset:0, count:10", + "└─Projection 0.00 root test.t.a, test.t.b, test.t.c, test.t.d", + " └─IndexLookUp 0.00 root ", + " ├─IndexRangeScan(Build) 2.50 cop[tikv] table:t, index:idx(a, b, c) range:(1 2,1 10), keep order:true, stats:pseudo", + " └─Selection(Probe) 0.00 cop[tikv] eq(test.t.d, 10)", " └─TableRowIDScan 2.50 cop[tikv] table:t keep order:false, stats:pseudo" ] }, { "SQL": "desc format = 'brief' select * from t where a = 1 and b > 2 and b < 10 and d = 10 order by b desc, c desc limit 10", "Plan": [ - "TopN 0.00 root test.t.b:desc, test.t.c:desc, offset:0, count:10", - "└─IndexLookUp 0.00 root ", - " ├─IndexRangeScan(Build) 2.50 cop[tikv] table:t, index:idx(a, b, c) range:(1 2,1 10), keep order:false, stats:pseudo", - " └─TopN(Probe) 0.00 cop[tikv] test.t.b:desc, test.t.c:desc, offset:0, count:10", - " └─Selection 0.00 cop[tikv] eq(test.t.d, 10)", + "Limit 0.00 root offset:0, count:10", + "└─Projection 0.00 root test.t.a, test.t.b, test.t.c, test.t.d", + " └─IndexLookUp 0.00 root ", + " ├─IndexRangeScan(Build) 2.50 cop[tikv] table:t, index:idx(a, b, c) range:(1 2,1 10), keep order:true, desc, stats:pseudo", + " └─Selection(Probe) 0.00 cop[tikv] eq(test.t.d, 10)", " └─TableRowIDScan 2.50 cop[tikv] table:t keep order:false, stats:pseudo" ] } @@ -6280,11 +7543,11 @@ " └─Apply 10000.00 root CARTESIAN left outer join", " ├─TableReader(Build) 10000.00 root data:TableFullScan", " │ └─TableFullScan 10000.00 cop[tikv] table:t keep order:false, stats:pseudo", - " └─Projection(Probe) 1.00 root 1->Column#25", - " └─Limit 1.00 root offset:0, count:1", - " └─TableReader 1.00 root data:Limit", - " └─Limit 1.00 cop[tikv] offset:0, count:1", - " └─TableFullScan 1.00 cop[tikv] table:t1 keep order:false, stats:pseudo" + " └─Projection(Probe) 10000.00 root 1->Column#25", + " └─Limit 10000.00 root offset:0, count:1", + " └─TableReader 10000.00 root data:Limit", + " └─Limit 10000.00 cop[tikv] offset:0, count:1", + " └─TableFullScan 10000.00 cop[tikv] table:t1 keep order:false, stats:pseudo" ], "Res": [ "1", @@ -7054,10 +8317,11 @@ " └─TableReader 8000.00 root data:ExchangeSender", " └─ExchangeSender 8000.00 mpp[tiflash] ExchangeType: PassThrough", " └─Projection 8000.00 mpp[tiflash] Column#5, test.t.id", - " └─HashAgg 8000.00 mpp[tiflash] group by:test.t.id, test.t.name, funcs:count(1)->Column#5, funcs:firstrow(test.t.id)->test.t.id", - " └─ExchangeReceiver 10000.00 mpp[tiflash] ", - " └─ExchangeSender 10000.00 mpp[tiflash] ExchangeType: HashPartition, Hash Cols: [name: test.t.name, collate: utf8mb4_bin], [name: test.t.id, collate: binary]", - " └─TableFullScan 10000.00 mpp[tiflash] table:t keep order:false, stats:pseudo" + " └─HashAgg 8000.00 mpp[tiflash] group by:test.t.id, test.t.name, funcs:sum(Column#7)->Column#5, funcs:firstrow(test.t.id)->test.t.id", + " └─ExchangeReceiver 8000.00 mpp[tiflash] ", + " └─ExchangeSender 8000.00 mpp[tiflash] ExchangeType: HashPartition, Hash Cols: [name: test.t.name, collate: utf8mb4_bin], [name: test.t.id, collate: binary]", + " └─HashAgg 8000.00 mpp[tiflash] group by:test.t.id, test.t.name, funcs:count(1)->Column#7", + " └─TableFullScan 10000.00 mpp[tiflash] table:t keep order:false, stats:pseudo" ] }, { @@ -7067,10 +8331,11 @@ "└─TableReader 8000.00 root data:ExchangeSender", " └─ExchangeSender 8000.00 mpp[tiflash] ExchangeType: PassThrough", " └─Projection 8000.00 mpp[tiflash] Column#5", - " └─HashAgg 8000.00 mpp[tiflash] group by:test.t.name, funcs:count(1)->Column#5", - " └─ExchangeReceiver 10000.00 mpp[tiflash] ", - " └─ExchangeSender 10000.00 mpp[tiflash] ExchangeType: HashPartition, Hash Cols: [name: test.t.name, collate: utf8mb4_bin]", - " └─TableFullScan 10000.00 mpp[tiflash] table:t keep order:false, stats:pseudo" + " └─HashAgg 8000.00 mpp[tiflash] group by:test.t.name, funcs:sum(Column#8)->Column#5", + " └─ExchangeReceiver 8000.00 mpp[tiflash] ", + " └─ExchangeSender 8000.00 mpp[tiflash] ExchangeType: HashPartition, Hash Cols: [name: test.t.name, collate: utf8mb4_bin]", + " └─HashAgg 8000.00 mpp[tiflash] group by:test.t.name, funcs:count(1)->Column#8", + " └─TableFullScan 10000.00 mpp[tiflash] table:t keep order:false, stats:pseudo" ] }, { @@ -7101,10 +8366,11 @@ " │ └─ExchangeSender 7992.00 mpp[tiflash] ExchangeType: Broadcast", " │ └─Projection 7992.00 mpp[tiflash] test.t.id", " │ └─HashAgg 7992.00 mpp[tiflash] group by:test.t.id, funcs:firstrow(test.t.id)->test.t.id", - " │ └─ExchangeReceiver 9990.00 mpp[tiflash] ", - " │ └─ExchangeSender 9990.00 mpp[tiflash] ExchangeType: HashPartition, Hash Cols: [name: test.t.id, collate: binary]", - " │ └─Selection 9990.00 mpp[tiflash] not(isnull(test.t.id))", - " │ └─TableFullScan 10000.00 mpp[tiflash] table:t keep order:false, stats:pseudo", + " │ └─ExchangeReceiver 7992.00 mpp[tiflash] ", + " │ └─ExchangeSender 7992.00 mpp[tiflash] ExchangeType: HashPartition, Hash Cols: [name: test.t.id, collate: binary]", + " │ └─HashAgg 7992.00 mpp[tiflash] group by:test.t.id, ", + " │ └─Selection 9990.00 mpp[tiflash] not(isnull(test.t.id))", + " │ └─TableFullScan 10000.00 mpp[tiflash] table:t keep order:false, stats:pseudo", " └─Selection(Probe) 9990.00 mpp[tiflash] not(isnull(test.t.id))", " └─TableFullScan 10000.00 mpp[tiflash] table:t keep order:false, stats:pseudo" ] @@ -7146,10 +8412,11 @@ " ├─Projection 8000.00 mpp[tiflash] cast(Column#12, bigint(21) BINARY)->Column#12", " │ └─Projection 8000.00 mpp[tiflash] Column#5", " │ └─Projection 8000.00 mpp[tiflash] Column#5, test.t.id", - " │ └─HashAgg 8000.00 mpp[tiflash] group by:test.t.id, test.t.name, funcs:count(1)->Column#5, funcs:firstrow(test.t.id)->test.t.id", - " │ └─ExchangeReceiver 10000.00 mpp[tiflash] ", - " │ └─ExchangeSender 10000.00 mpp[tiflash] ExchangeType: HashPartition, Hash Cols: [name: test.t.name, collate: utf8mb4_bin], [name: test.t.id, collate: binary]", - " │ └─TableFullScan 10000.00 mpp[tiflash] table:t keep order:false, stats:pseudo", + " │ └─HashAgg 8000.00 mpp[tiflash] group by:test.t.id, test.t.name, funcs:sum(Column#19)->Column#5, funcs:firstrow(test.t.id)->test.t.id", + " │ └─ExchangeReceiver 8000.00 mpp[tiflash] ", + " │ └─ExchangeSender 8000.00 mpp[tiflash] ExchangeType: HashPartition, Hash Cols: [name: test.t.name, collate: utf8mb4_bin], [name: test.t.id, collate: binary]", + " │ └─HashAgg 8000.00 mpp[tiflash] group by:test.t.id, test.t.name, funcs:count(1)->Column#19", + " │ └─TableFullScan 10000.00 mpp[tiflash] table:t keep order:false, stats:pseudo", " └─Projection 10000.00 mpp[tiflash] cast(Column#11, bigint(21) BINARY)->Column#12", " └─Projection 10000.00 mpp[tiflash] plus(test.t.id, 1)->Column#11", " └─TableFullScan 10000.00 mpp[tiflash] table:t keep order:false, stats:pseudo" @@ -7294,11 +8561,12 @@ " └─ExchangeReceiver 2666.67 mpp[tiflash] stream_count: 8", " └─ExchangeSender 2666.67 mpp[tiflash] ExchangeType: HashPartition, Hash Cols: [name: test.t1.c2, collate: binary], stream_count: 8", " └─Projection 2666.67 mpp[tiflash] Column#4, test.t1.c2", - " └─HashAgg 2666.67 mpp[tiflash] group by:test.t1.c1, funcs:count(test.t1.c2)->Column#4, funcs:firstrow(test.t1.c2)->test.t1.c2", - " └─ExchangeReceiver 3333.33 mpp[tiflash] ", - " └─ExchangeSender 3333.33 mpp[tiflash] ExchangeType: HashPartition, Hash Cols: [name: test.t1.c1, collate: binary]", - " └─Selection 3333.33 mpp[tiflash] gt(test.t1.c1, 10)", - " └─TableFullScan 10000.00 mpp[tiflash] table:t1 keep order:false, stats:pseudo" + " └─HashAgg 2666.67 mpp[tiflash] group by:test.t1.c1, funcs:sum(Column#9)->Column#4, funcs:firstrow(Column#10)->test.t1.c2", + " └─ExchangeReceiver 2666.67 mpp[tiflash] ", + " └─ExchangeSender 2666.67 mpp[tiflash] ExchangeType: HashPartition, Hash Cols: [name: test.t1.c1, collate: binary]", + " └─HashAgg 2666.67 mpp[tiflash] group by:test.t1.c1, funcs:count(test.t1.c2)->Column#9, funcs:firstrow(test.t1.c2)->Column#10", + " └─Selection 3333.33 mpp[tiflash] gt(test.t1.c1, 10)", + " └─TableFullScan 10000.00 mpp[tiflash] table:t1 keep order:false, stats:pseudo" ] }, { @@ -7312,11 +8580,12 @@ " └─ExchangeReceiver 2666.67 mpp[tiflash] stream_count: 8", " └─ExchangeSender 2666.67 mpp[tiflash] ExchangeType: HashPartition, Hash Cols: [name: test.t1.c1, collate: binary], stream_count: 8", " └─Projection 2666.67 mpp[tiflash] Column#4, test.t1.c1, test.t1.c2", - " └─HashAgg 2666.67 mpp[tiflash] group by:test.t1.c2, funcs:count(test.t1.c1)->Column#4, funcs:firstrow(test.t1.c1)->test.t1.c1, funcs:firstrow(test.t1.c2)->test.t1.c2", - " └─ExchangeReceiver 3333.33 mpp[tiflash] ", - " └─ExchangeSender 3333.33 mpp[tiflash] ExchangeType: HashPartition, Hash Cols: [name: test.t1.c2, collate: binary]", - " └─Selection 3333.33 mpp[tiflash] gt(test.t1.c2, 10)", - " └─TableFullScan 10000.00 mpp[tiflash] table:t1 keep order:false, stats:pseudo" + " └─HashAgg 2666.67 mpp[tiflash] group by:test.t1.c2, funcs:sum(Column#9)->Column#4, funcs:firstrow(Column#10)->test.t1.c1, funcs:firstrow(test.t1.c2)->test.t1.c2", + " └─ExchangeReceiver 2666.67 mpp[tiflash] ", + " └─ExchangeSender 2666.67 mpp[tiflash] ExchangeType: HashPartition, Hash Cols: [name: test.t1.c2, collate: binary]", + " └─HashAgg 2666.67 mpp[tiflash] group by:test.t1.c2, funcs:count(test.t1.c1)->Column#9, funcs:firstrow(test.t1.c1)->Column#10", + " └─Selection 3333.33 mpp[tiflash] gt(test.t1.c2, 10)", + " └─TableFullScan 10000.00 mpp[tiflash] table:t1 keep order:false, stats:pseudo" ] }, { @@ -7382,11 +8651,12 @@ " └─Window 2666.67 mpp[tiflash] row_number()->Column#6 over(partition by test.t1.c1 order by test.t1.c2 rows between current row and current row)", " └─Sort 2666.67 mpp[tiflash] test.t1.c1, test.t1.c2", " └─Projection 2666.67 mpp[tiflash] Column#4, test.t1.c1, test.t1.c2", - " └─HashAgg 2666.67 mpp[tiflash] group by:test.t1.c1, funcs:count(test.t1.c2)->Column#4, funcs:firstrow(test.t1.c1)->test.t1.c1, funcs:firstrow(test.t1.c2)->test.t1.c2", - " └─ExchangeReceiver 3333.33 mpp[tiflash] ", - " └─ExchangeSender 3333.33 mpp[tiflash] ExchangeType: HashPartition, Hash Cols: [name: test.t1.c1, collate: binary]", - " └─Selection 3333.33 mpp[tiflash] gt(test.t1.c1, 10)", - " └─TableFullScan 10000.00 mpp[tiflash] table:t1 keep order:false, stats:pseudo" + " └─HashAgg 2666.67 mpp[tiflash] group by:test.t1.c1, funcs:sum(Column#9)->Column#4, funcs:firstrow(test.t1.c1)->test.t1.c1, funcs:firstrow(Column#11)->test.t1.c2", + " └─ExchangeReceiver 2666.67 mpp[tiflash] ", + " └─ExchangeSender 2666.67 mpp[tiflash] ExchangeType: HashPartition, Hash Cols: [name: test.t1.c1, collate: binary]", + " └─HashAgg 2666.67 mpp[tiflash] group by:test.t1.c1, funcs:count(test.t1.c2)->Column#9, funcs:firstrow(test.t1.c2)->Column#11", + " └─Selection 3333.33 mpp[tiflash] gt(test.t1.c1, 10)", + " └─TableFullScan 10000.00 mpp[tiflash] table:t1 keep order:false, stats:pseudo" ] } ] @@ -7406,11 +8676,11 @@ "├─TableReader(Build) 9980.01 root data:Selection", "│ └─Selection 9980.01 cop[tikv] not(isnull(test.t2.e)), not(isnull(test.t2.g))", "│ └─TableFullScan 10000.00 cop[tikv] table:t2 keep order:false, stats:pseudo", - "└─IndexLookUp(Probe) 0.00 root ", - " ├─Selection(Build) 0.03 cop[tikv] not(isnull(test.t1.b))", - " │ └─IndexRangeScan 0.03 cop[tikv] table:t1, index:idx_a_b_c_d(a, b, c, d) range: decided by [eq(test.t1.b, test.t2.e) eq(test.t1.d, test.t2.g) in(test.t1.a, 1, 3) in(test.t1.c, aaa, bbb)], keep order:false, stats:pseudo", - " └─Selection(Probe) 0.00 cop[tikv] in(test.t1.c, \"aaa\", \"bbb\"), not(isnull(test.t1.d))", - " └─TableRowIDScan 0.03 cop[tikv] table:t1 keep order:false, stats:pseudo" + "└─IndexLookUp(Probe) 0.50 root ", + " ├─Selection(Build) 249.50 cop[tikv] not(isnull(test.t1.b)), not(isnull(test.t1.d))", + " │ └─IndexRangeScan 250.00 cop[tikv] table:t1, index:idx_a_b_c_d(a, b, c, d) range: decided by [eq(test.t1.b, test.t2.e) eq(test.t1.d, test.t2.g) in(test.t1.a, 1, 3) in(test.t1.c, aaa, bbb)], keep order:false, stats:pseudo", + " └─Selection(Probe) 0.50 cop[tikv] in(test.t1.c, \"aaa\", \"bbb\")", + " └─TableRowIDScan 249.50 cop[tikv] table:t1 keep order:false, stats:pseudo" ], "Warn": null }, @@ -7426,11 +8696,11 @@ "├─TableReader(Build) 9980.01 root data:Selection", "│ └─Selection 9980.01 cop[tikv] not(isnull(test.t2.e)), not(isnull(test.t2.g))", "│ └─TableFullScan 10000.00 cop[tikv] table:t2 keep order:false, stats:pseudo", - "└─IndexLookUp(Probe) 0.00 root ", - " ├─Selection(Build) 0.03 cop[tikv] not(isnull(test.t1.b))", - " │ └─IndexRangeScan 0.03 cop[tikv] table:t1, index:idx_a_b_c_d(a, b, c, d) range: decided by [eq(test.t1.b, test.t2.e) in(test.t1.a, 1, 3) in(test.t1.c, aaa, bbb)], keep order:false, stats:pseudo", - " └─Selection(Probe) 0.00 cop[tikv] in(test.t1.c, \"aaa\", \"bbb\"), not(isnull(test.t1.d))", - " └─TableRowIDScan 0.03 cop[tikv] table:t1 keep order:false, stats:pseudo" + "└─IndexLookUp(Probe) 0.50 root ", + " ├─Selection(Build) 249.50 cop[tikv] not(isnull(test.t1.b)), not(isnull(test.t1.d))", + " │ └─IndexRangeScan 250.00 cop[tikv] table:t1, index:idx_a_b_c_d(a, b, c, d) range: decided by [eq(test.t1.b, test.t2.e) in(test.t1.a, 1, 3) in(test.t1.c, aaa, bbb)], keep order:false, stats:pseudo", + " └─Selection(Probe) 0.50 cop[tikv] in(test.t1.c, \"aaa\", \"bbb\")", + " └─TableRowIDScan 249.50 cop[tikv] table:t1 keep order:false, stats:pseudo" ], "Warn": [ "Memory capacity of 2900 bytes for 'tidb_opt_range_max_size' exceeded when building ranges. Less accurate ranges such as full range are chosen" @@ -7448,11 +8718,11 @@ "├─TableReader(Build) 9980.01 root data:Selection", "│ └─Selection 9980.01 cop[tikv] not(isnull(test.t2.e)), not(isnull(test.t2.g))", "│ └─TableFullScan 10000.00 cop[tikv] table:t2 keep order:false, stats:pseudo", - "└─IndexLookUp(Probe) 0.00 root ", - " ├─Selection(Build) 0.03 cop[tikv] not(isnull(test.t1.b))", - " │ └─IndexRangeScan 0.03 cop[tikv] table:t1, index:idx_a_b_c_d(a, b, c, d) range: decided by [eq(test.t1.b, test.t2.e) in(test.t1.a, 1, 3)], keep order:false, stats:pseudo", - " └─Selection(Probe) 0.00 cop[tikv] in(test.t1.c, \"aaa\", \"bbb\"), not(isnull(test.t1.d))", - " └─TableRowIDScan 0.03 cop[tikv] table:t1 keep order:false, stats:pseudo" + "└─IndexLookUp(Probe) 0.50 root ", + " ├─Selection(Build) 249.50 cop[tikv] not(isnull(test.t1.b)), not(isnull(test.t1.d))", + " │ └─IndexRangeScan 250.00 cop[tikv] table:t1, index:idx_a_b_c_d(a, b, c, d) range: decided by [eq(test.t1.b, test.t2.e) in(test.t1.a, 1, 3)], keep order:false, stats:pseudo", + " └─Selection(Probe) 0.50 cop[tikv] in(test.t1.c, \"aaa\", \"bbb\")", + " └─TableRowIDScan 249.50 cop[tikv] table:t1 keep order:false, stats:pseudo" ], "Warn": [ "Memory capacity of 2300 bytes for 'tidb_opt_range_max_size' exceeded when building ranges. Less accurate ranges such as full range are chosen" @@ -7468,10 +8738,10 @@ "Plan": [ "HashJoin 0.05 root inner join, equal:[eq(test.t1.b, test.t2.e) eq(test.t1.d, test.t2.g)]", "├─IndexLookUp(Build) 0.04 root ", - "│ ├─Selection(Build) 19.98 cop[tikv] not(isnull(test.t1.b))", + "│ ├─Selection(Build) 19.96 cop[tikv] not(isnull(test.t1.b)), not(isnull(test.t1.d))", "│ │ └─IndexRangeScan 20.00 cop[tikv] table:t1, index:idx_a_b_c_d(a, b, c, d) range:[1,1], [3,3], keep order:false, stats:pseudo", - "│ └─Selection(Probe) 0.04 cop[tikv] in(test.t1.c, \"aaa\", \"bbb\"), not(isnull(test.t1.d))", - "│ └─TableRowIDScan 19.98 cop[tikv] table:t1 keep order:false, stats:pseudo", + "│ └─Selection(Probe) 0.04 cop[tikv] in(test.t1.c, \"aaa\", \"bbb\")", + "│ └─TableRowIDScan 19.96 cop[tikv] table:t1 keep order:false, stats:pseudo", "└─TableReader(Probe) 9980.01 root data:Selection", " └─Selection 9980.01 cop[tikv] not(isnull(test.t2.e)), not(isnull(test.t2.g))", " └─TableFullScan 10000.00 cop[tikv] table:t2 keep order:false, stats:pseudo" @@ -7493,10 +8763,10 @@ "├─TableReader(Build) 9990.00 root data:Selection", "│ └─Selection 9990.00 cop[tikv] not(isnull(test.t2.e))", "│ └─TableFullScan 10000.00 cop[tikv] table:t2 keep order:false, stats:pseudo", - "└─IndexLookUp(Probe) 0.03 root ", - " ├─Selection(Build) 0.03 cop[tikv] not(isnull(test.t1.a))", - " │ └─IndexRangeScan 0.03 cop[tikv] table:t1, index:idx_a_b_c_d(a, b, c, d) range: decided by [eq(test.t1.a, test.t2.e) gt(test.t1.b, 1) lt(test.t1.b, 10)], keep order:false, stats:pseudo", - " └─TableRowIDScan(Probe) 0.03 cop[tikv] table:t1 keep order:false, stats:pseudo" + "└─IndexLookUp(Probe) 312.19 root ", + " ├─Selection(Build) 312.19 cop[tikv] not(isnull(test.t1.a))", + " │ └─IndexRangeScan 312.50 cop[tikv] table:t1, index:idx_a_b_c_d(a, b, c, d) range: decided by [eq(test.t1.a, test.t2.e) gt(test.t1.b, 1) lt(test.t1.b, 10)], keep order:false, stats:pseudo", + " └─TableRowIDScan(Probe) 312.19 cop[tikv] table:t1 keep order:false, stats:pseudo" ], "Warn": null }, @@ -7512,10 +8782,10 @@ "├─TableReader(Build) 9990.00 root data:Selection", "│ └─Selection 9990.00 cop[tikv] not(isnull(test.t2.e))", "│ └─TableFullScan 10000.00 cop[tikv] table:t2 keep order:false, stats:pseudo", - "└─IndexLookUp(Probe) 0.03 root ", - " ├─Selection(Build) 0.03 cop[tikv] gt(test.t1.b, 1), lt(test.t1.b, 10), not(isnull(test.t1.a))", - " │ └─IndexRangeScan 1.25 cop[tikv] table:t1, index:idx_a_b_c_d(a, b, c, d) range: decided by [eq(test.t1.a, test.t2.e)], keep order:false, stats:pseudo", - " └─TableRowIDScan(Probe) 0.03 cop[tikv] table:t1 keep order:false, stats:pseudo" + "└─IndexLookUp(Probe) 312.19 root ", + " ├─Selection(Build) 312.19 cop[tikv] gt(test.t1.b, 1), lt(test.t1.b, 10), not(isnull(test.t1.a))", + " │ └─IndexRangeScan 12500.00 cop[tikv] table:t1, index:idx_a_b_c_d(a, b, c, d) range: decided by [eq(test.t1.a, test.t2.e)], keep order:false, stats:pseudo", + " └─TableRowIDScan(Probe) 312.19 cop[tikv] table:t1 keep order:false, stats:pseudo" ], "Warn": [ "Memory capacity of 300 bytes for 'tidb_opt_range_max_size' exceeded when building ranges. Less accurate ranges such as full range are chosen" @@ -7533,10 +8803,10 @@ "├─TableReader(Build) 9980.01 root data:Selection", "│ └─Selection 9980.01 cop[tikv] not(isnull(test.t2.e)), not(isnull(test.t2.f))", "│ └─TableFullScan 10000.00 cop[tikv] table:t2 keep order:false, stats:pseudo", - "└─IndexLookUp(Probe) 1.25 root ", - " ├─Selection(Build) 1.25 cop[tikv] not(isnull(test.t1.a)), not(isnull(test.t1.b))", - " │ └─IndexRangeScan 1.25 cop[tikv] table:t1, index:idx_a_b_c_d(a, b, c, d) range: decided by [eq(test.t1.a, test.t2.e) gt(test.t1.b, test.t2.f) lt(test.t1.b, plus(test.t2.f, 10))], keep order:false, stats:pseudo", - " └─TableRowIDScan(Probe) 1.25 cop[tikv] table:t1 keep order:false, stats:pseudo" + "└─IndexLookUp(Probe) 12475.01 root ", + " ├─Selection(Build) 12475.01 cop[tikv] not(isnull(test.t1.a)), not(isnull(test.t1.b))", + " │ └─IndexRangeScan 12500.00 cop[tikv] table:t1, index:idx_a_b_c_d(a, b, c, d) range: decided by [eq(test.t1.a, test.t2.e) gt(test.t1.b, test.t2.f) lt(test.t1.b, plus(test.t2.f, 10))], keep order:false, stats:pseudo", + " └─TableRowIDScan(Probe) 12475.01 cop[tikv] table:t1 keep order:false, stats:pseudo" ], "Warn": null }, @@ -7552,15 +8822,219 @@ "├─TableReader(Build) 9980.01 root data:Selection", "│ └─Selection 9980.01 cop[tikv] not(isnull(test.t2.e)), not(isnull(test.t2.f))", "│ └─TableFullScan 10000.00 cop[tikv] table:t2 keep order:false, stats:pseudo", - "└─IndexLookUp(Probe) 1.25 root ", - " ├─Selection(Build) 1.25 cop[tikv] not(isnull(test.t1.a)), not(isnull(test.t1.b))", - " │ └─IndexRangeScan 1.25 cop[tikv] table:t1, index:idx_a_b_c_d(a, b, c, d) range: decided by [eq(test.t1.a, test.t2.e)], keep order:false, stats:pseudo", - " └─TableRowIDScan(Probe) 1.25 cop[tikv] table:t1 keep order:false, stats:pseudo" + "└─IndexLookUp(Probe) 12475.01 root ", + " ├─Selection(Build) 12475.01 cop[tikv] not(isnull(test.t1.a)), not(isnull(test.t1.b))", + " │ └─IndexRangeScan 12500.00 cop[tikv] table:t1, index:idx_a_b_c_d(a, b, c, d) range: decided by [eq(test.t1.a, test.t2.e)], keep order:false, stats:pseudo", + " └─TableRowIDScan(Probe) 12475.01 cop[tikv] table:t1 keep order:false, stats:pseudo" ], "Warn": [ "Memory capacity of 300 bytes for 'tidb_opt_range_max_size' exceeded when building ranges. Less accurate ranges such as full range are chosen" ] } ] + }, + { + "Name": "TestNullConditionForPrefixIndex", + "Cases": [ + { + "SQL": "select count(1) from t1 where c1 = '0xfff' and c2 is not null", + "Plan": [ + "HashAgg 1.00 root funcs:count(Column#6)->Column#5", + "└─IndexReader 1.00 root index:HashAgg", + " └─HashAgg 1.00 cop[tikv] funcs:count(1)->Column#6", + " └─IndexRangeScan 99.90 cop[tikv] table:t1, index:idx2(c1, c2) range:[\"0xfff\" -inf,\"0xfff\" +inf], keep order:false, stats:pseudo" + ], + "Result": [ + "3" + ] + }, + { + "SQL": "select count(1) from t1 where c1 = '0xfff' and c2 is null", + "Plan": [ + "StreamAgg 1.00 root funcs:count(1)->Column#5", + "└─IndexReader 0.10 root index:IndexRangeScan", + " └─IndexRangeScan 0.10 cop[tikv] table:t1, index:idx2(c1, c2) range:[\"0xfff\" NULL,\"0xfff\" NULL], keep order:false, stats:pseudo" + ], + "Result": [ + "1" + ] + }, + { + "SQL": "select count(1) from t1 where c1 >= '0xfff' and c2 is not null", + "Plan": [ + "HashAgg 1.00 root funcs:count(Column#6)->Column#5", + "└─IndexReader 1.00 root index:HashAgg", + " └─HashAgg 1.00 cop[tikv] funcs:count(1)->Column#6", + " └─Selection 3330.00 cop[tikv] not(isnull(test.t1.c2))", + " └─IndexRangeScan 3333.33 cop[tikv] table:t1, index:idx2(c1, c2) range:[\"0xfff\",+inf], keep order:false, stats:pseudo" + ], + "Result": [ + "3" + ] + }, + { + "SQL": "select count(1) from t1 where c1 >= '0xfff' and c2 is null", + "Plan": [ + "HashAgg 1.00 root funcs:count(Column#6)->Column#5", + "└─IndexReader 1.00 root index:HashAgg", + " └─HashAgg 1.00 cop[tikv] funcs:count(1)->Column#6", + " └─Selection 3.33 cop[tikv] isnull(test.t1.c2)", + " └─IndexRangeScan 3333.33 cop[tikv] table:t1, index:idx2(c1, c2) range:[\"0xfff\",+inf], keep order:false, stats:pseudo" + ], + "Result": [ + "1" + ] + }, + { + "SQL": "select count(1) from t1 where c1 = '0xfff' and (c2 + 1) is not null", + "Plan": [ + "HashAgg 1.00 root funcs:count(Column#9)->Column#5", + "└─IndexLookUp 1.00 root ", + " ├─IndexRangeScan(Build) 10.00 cop[tikv] table:t1, index:idx1(c1) range:[\"0xfff\",\"0xfff\"], keep order:false, stats:pseudo", + " └─HashAgg(Probe) 1.00 cop[tikv] funcs:count(1)->Column#9", + " └─Selection 8.00 cop[tikv] not(isnull(plus(cast(test.t1.c2, double BINARY), 1)))", + " └─TableRowIDScan 10.00 cop[tikv] table:t1 keep order:false, stats:pseudo" + ], + "Result": [ + "3" + ] + }, + { + "SQL": "select count(1) from t1 where c1 = '0xfff' and (c2 + 1) is null", + "Plan": [ + "HashAgg 1.00 root funcs:count(Column#9)->Column#5", + "└─IndexLookUp 1.00 root ", + " ├─IndexRangeScan(Build) 10.00 cop[tikv] table:t1, index:idx1(c1) range:[\"0xfff\",\"0xfff\"], keep order:false, stats:pseudo", + " └─HashAgg(Probe) 1.00 cop[tikv] funcs:count(1)->Column#9", + " └─Selection 8.00 cop[tikv] isnull(plus(cast(test.t1.c2, double BINARY), 1))", + " └─TableRowIDScan 10.00 cop[tikv] table:t1 keep order:false, stats:pseudo" + ], + "Result": [ + "1" + ] + }, + { + "SQL": "select c2 from t1 use index(idx2) where c1 = '0xfff' and c2 is not null", + "Plan": [ + "Projection 99.90 root test.t1.c2", + "└─IndexLookUp 99.90 root ", + " ├─IndexRangeScan(Build) 99.90 cop[tikv] table:t1, index:idx2(c1, c2) range:[\"0xfff\" -inf,\"0xfff\" +inf], keep order:false, stats:pseudo", + " └─TableRowIDScan(Probe) 99.90 cop[tikv] table:t1 keep order:false, stats:pseudo" + ], + "Result": [ + "", + "111111", + "22 " + ] + }, + { + "SQL": "select c2 from t1 use index(idx2) where c1 = '0xfff' and c2 is null", + "Plan": [ + "Projection 0.10 root test.t1.c2", + "└─IndexLookUp 0.10 root ", + " ├─IndexRangeScan(Build) 0.10 cop[tikv] table:t1, index:idx2(c1, c2) range:[\"0xfff\" NULL,\"0xfff\" NULL], keep order:false, stats:pseudo", + " └─TableRowIDScan(Probe) 0.10 cop[tikv] table:t1 keep order:false, stats:pseudo" + ], + "Result": [ + "" + ] + }, + { + "SQL": "select c2 from t1 use index(idx2) where c1 >= '0xfff' and c2 is not null", + "Plan": [ + "Projection 3330.00 root test.t1.c2", + "└─IndexLookUp 3330.00 root ", + " ├─Selection(Build) 3330.00 cop[tikv] not(isnull(test.t1.c2))", + " │ └─IndexRangeScan 3333.33 cop[tikv] table:t1, index:idx2(c1, c2) range:[\"0xfff\",+inf], keep order:false, stats:pseudo", + " └─TableRowIDScan(Probe) 3330.00 cop[tikv] table:t1 keep order:false, stats:pseudo" + ], + "Result": [ + "", + "111111", + "22 " + ] + }, + { + "SQL": "select c2 from t1 use index(idx2) where c1 >= '0xfff' and c2 is null", + "Plan": [ + "Projection 3.33 root test.t1.c2", + "└─IndexLookUp 3.33 root ", + " ├─Selection(Build) 3.33 cop[tikv] isnull(test.t1.c2)", + " │ └─IndexRangeScan 3333.33 cop[tikv] table:t1, index:idx2(c1, c2) range:[\"0xfff\",+inf], keep order:false, stats:pseudo", + " └─TableRowIDScan(Probe) 3.33 cop[tikv] table:t1 keep order:false, stats:pseudo" + ], + "Result": [ + "" + ] + }, + { + "SQL": "select count(1) from t2 use index(idx) where b is not null", + "Plan": [ + "HashAgg 1.00 root funcs:count(Column#5)->Column#4", + "└─IndexReader 1.00 root index:HashAgg", + " └─HashAgg 1.00 cop[tikv] funcs:count(1)->Column#5", + " └─IndexFullScan 9990.00 cop[tikv] table:t2, index:idx(b) keep order:false, stats:pseudo" + ], + "Result": [ + "3" + ] + }, + { + "SQL": "select count(1) from t2 use index(idx) where b is null", + "Plan": [ + "HashAgg 1.00 root funcs:count(Column#5)->Column#4", + "└─IndexReader 1.00 root index:HashAgg", + " └─HashAgg 1.00 cop[tikv] funcs:count(1)->Column#5", + " └─IndexRangeScan 10.00 cop[tikv] table:t2, index:idx(b) range:[NULL,NULL], keep order:false, stats:pseudo" + ], + "Result": [ + "1" + ] + }, + { + "SQL": "select b from t2 use index(idx) where b is not null", + "Plan": [ + "IndexLookUp 9990.00 root ", + "├─IndexFullScan(Build) 9990.00 cop[tikv] table:t2, index:idx(b) keep order:false, stats:pseudo", + "└─TableRowIDScan(Probe) 9990.00 cop[tikv] table:t2 keep order:false, stats:pseudo" + ], + "Result": [ + "", + "aaaaaa", + "bb " + ] + }, + { + "SQL": "select b from t2 use index(idx) where b is null", + "Plan": [ + "IndexLookUp 10.00 root ", + "├─IndexRangeScan(Build) 10.00 cop[tikv] table:t2, index:idx(b) range:[NULL,NULL], keep order:false, stats:pseudo", + "└─TableRowIDScan(Probe) 10.00 cop[tikv] table:t2 keep order:false, stats:pseudo" + ], + "Result": [ + "" + ] + }, + { + "SQL": "select b from t3 where a = 1 and b is not null", + "Plan": [ + "Projection 10.00 root test.t3.b", + "└─TableReader 10.00 root data:TableRangeScan", + " └─TableRangeScan 10.00 cop[tikv] table:t3 range:[1,1], keep order:false, stats:pseudo" + ], + "Result": [ + "", + "aaaaaa", + "bb " + ] + }, + { + "SQL": "select b from t3 where a = 1 and b is null", + "Plan": [ + "TableDual 0.00 root rows:0" + ], + "Result": null + } + ] } ] diff --git a/planner/core/testdata/join_reorder_suite_out.json b/planner/core/testdata/join_reorder_suite_out.json index 41ed45dcb3cd4..7289fbd043d00 100644 --- a/planner/core/testdata/join_reorder_suite_out.json +++ b/planner/core/testdata/join_reorder_suite_out.json @@ -381,11 +381,11 @@ " │ └─Selection 9990.00 cop[tikv] not(isnull(test.t2.b))", " │ └─TableFullScan 10000.00 cop[tikv] table:t2 keep order:false, stats:pseudo", " └─HashJoin(Probe) 12475.01 root inner join, equal:[eq(test.t.a, test.t1.a)]", - " ├─TableReader(Build) 9980.01 root data:Selection", - " │ └─Selection 9980.01 cop[tikv] not(isnull(test.t1.a)), not(isnull(test.t1.b))", - " │ └─TableFullScan 10000.00 cop[tikv] table:t1 keep order:false, stats:pseudo", - " └─IndexReader(Probe) 9990.00 root index:IndexFullScan", - " └─IndexFullScan 9990.00 cop[tikv] table:t, index:a(a) keep order:false, stats:pseudo" + " ├─IndexReader(Build) 9990.00 root index:IndexFullScan", + " │ └─IndexFullScan 9990.00 cop[tikv] table:t, index:a(a) keep order:false, stats:pseudo", + " └─TableReader(Probe) 9980.01 root data:Selection", + " └─Selection 9980.01 cop[tikv] not(isnull(test.t1.a)), not(isnull(test.t1.b))", + " └─TableFullScan 10000.00 cop[tikv] table:t1 keep order:false, stats:pseudo" ], "Warning": null }, @@ -413,11 +413,11 @@ " │ └─Selection 9990.00 cop[tikv] not(isnull(test.t2.b))", " │ └─TableFullScan 10000.00 cop[tikv] table:t2 keep order:false, stats:pseudo", " └─HashJoin(Probe) 12475.01 root inner join, equal:[eq(test.t.a, test.t1.a)]", - " ├─TableReader(Build) 9980.01 root data:Selection", - " │ └─Selection 9980.01 cop[tikv] not(isnull(test.t1.a)), not(isnull(test.t1.b))", - " │ └─TableFullScan 10000.00 cop[tikv] table:t1 keep order:false, stats:pseudo", - " └─IndexReader(Probe) 9990.00 root index:IndexFullScan", - " └─IndexFullScan 9990.00 cop[tikv] table:t, index:a(a) keep order:false, stats:pseudo" + " ├─IndexReader(Build) 9990.00 root index:IndexFullScan", + " │ └─IndexFullScan 9990.00 cop[tikv] table:t, index:a(a) keep order:false, stats:pseudo", + " └─TableReader(Probe) 9980.01 root data:Selection", + " └─Selection 9980.01 cop[tikv] not(isnull(test.t1.a)), not(isnull(test.t1.b))", + " └─TableFullScan 10000.00 cop[tikv] table:t1 keep order:false, stats:pseudo" ], "Warning": null }, @@ -508,12 +508,12 @@ " ├─IndexReader(Build) 9990.00 root index:IndexFullScan", " │ └─IndexFullScan 9990.00 cop[tikv] table:t, index:a(a) keep order:false, stats:pseudo", " └─HashJoin(Probe) 12475.01 root inner join, equal:[eq(test.t1.b, test.t2.b)]", - " ├─TableReader(Build) 9980.01 root data:Selection", - " │ └─Selection 9980.01 cop[tikv] not(isnull(test.t1.a)), not(isnull(test.t1.b))", - " │ └─TableFullScan 10000.00 cop[tikv] table:t1 keep order:false, stats:pseudo", - " └─TableReader(Probe) 9990.00 root data:Selection", - " └─Selection 9990.00 cop[tikv] not(isnull(test.t2.b))", - " └─TableFullScan 10000.00 cop[tikv] table:t2 keep order:false, stats:pseudo" + " ├─TableReader(Build) 9990.00 root data:Selection", + " │ └─Selection 9990.00 cop[tikv] not(isnull(test.t2.b))", + " │ └─TableFullScan 10000.00 cop[tikv] table:t2 keep order:false, stats:pseudo", + " └─TableReader(Probe) 9980.01 root data:Selection", + " └─Selection 9980.01 cop[tikv] not(isnull(test.t1.a)), not(isnull(test.t1.b))", + " └─TableFullScan 10000.00 cop[tikv] table:t1 keep order:false, stats:pseudo" ], "Warning": null }, @@ -540,12 +540,12 @@ " ├─IndexReader(Build) 9990.00 root index:IndexFullScan", " │ └─IndexFullScan 9990.00 cop[tikv] table:t, index:a(a) keep order:false, stats:pseudo", " └─HashJoin(Probe) 12475.01 root inner join, equal:[eq(test.t2.b, test.t1.b)]", - " ├─TableReader(Build) 9980.01 root data:Selection", - " │ └─Selection 9980.01 cop[tikv] not(isnull(test.t1.a)), not(isnull(test.t1.b))", - " │ └─TableFullScan 10000.00 cop[tikv] table:t1 keep order:false, stats:pseudo", - " └─TableReader(Probe) 9990.00 root data:Selection", - " └─Selection 9990.00 cop[tikv] not(isnull(test.t2.b))", - " └─TableFullScan 10000.00 cop[tikv] table:t2 keep order:false, stats:pseudo" + " ├─TableReader(Build) 9990.00 root data:Selection", + " │ └─Selection 9990.00 cop[tikv] not(isnull(test.t2.b))", + " │ └─TableFullScan 10000.00 cop[tikv] table:t2 keep order:false, stats:pseudo", + " └─TableReader(Probe) 9980.01 root data:Selection", + " └─Selection 9980.01 cop[tikv] not(isnull(test.t1.a)), not(isnull(test.t1.b))", + " └─TableFullScan 10000.00 cop[tikv] table:t1 keep order:false, stats:pseudo" ], "Warning": null }, @@ -1561,12 +1561,12 @@ " │ ├─IndexReader(Build) 9990.00 root index:IndexFullScan", " │ │ └─IndexFullScan 9990.00 cop[tikv] table:t5, index:a(a) keep order:false, stats:pseudo", " │ └─HashJoin(Probe) 12475.01 root inner join, equal:[eq(test.t6.b, test.t7.b)]", - " │ ├─TableReader(Build) 9980.01 root data:Selection", - " │ │ └─Selection 9980.01 cop[tikv] not(isnull(test.t6.a)), not(isnull(test.t6.b))", - " │ │ └─TableFullScan 10000.00 cop[tikv] table:t6 keep order:false, stats:pseudo", - " │ └─TableReader(Probe) 9990.00 root data:Selection", - " │ └─Selection 9990.00 cop[tikv] not(isnull(test.t7.b))", - " │ └─TableFullScan 10000.00 cop[tikv] table:t7 keep order:false, stats:pseudo", + " │ ├─TableReader(Build) 9990.00 root data:Selection", + " │ │ └─Selection 9990.00 cop[tikv] not(isnull(test.t7.b))", + " │ │ └─TableFullScan 10000.00 cop[tikv] table:t7 keep order:false, stats:pseudo", + " │ └─TableReader(Probe) 9980.01 root data:Selection", + " │ └─Selection 9980.01 cop[tikv] not(isnull(test.t6.a)), not(isnull(test.t6.b))", + " │ └─TableFullScan 10000.00 cop[tikv] table:t6 keep order:false, stats:pseudo", " └─HashJoin(Probe) 19511.72 root inner join, equal:[eq(test.t1.a, test.t2.a)]", " ├─TableReader(Build) 9990.00 root data:Selection", " │ └─Selection 9990.00 cop[tikv] not(isnull(test.t2.a))", @@ -1594,12 +1594,12 @@ " │ ├─IndexReader(Build) 9990.00 root index:IndexFullScan", " │ │ └─IndexFullScan 9990.00 cop[tikv] table:t5, index:a(a) keep order:false, stats:pseudo", " │ └─HashJoin(Probe) 12475.01 root inner join, equal:[eq(test.t6.b, test.t7.b)]", - " │ ├─TableReader(Build) 9980.01 root data:Selection", - " │ │ └─Selection 9980.01 cop[tikv] not(isnull(test.t6.a)), not(isnull(test.t6.b))", - " │ │ └─TableFullScan 10000.00 cop[tikv] table:t6 keep order:false, stats:pseudo", - " │ └─TableReader(Probe) 9990.00 root data:Selection", - " │ └─Selection 9990.00 cop[tikv] not(isnull(test.t7.b))", - " │ └─TableFullScan 10000.00 cop[tikv] table:t7 keep order:false, stats:pseudo", + " │ ├─TableReader(Build) 9990.00 root data:Selection", + " │ │ └─Selection 9990.00 cop[tikv] not(isnull(test.t7.b))", + " │ │ └─TableFullScan 10000.00 cop[tikv] table:t7 keep order:false, stats:pseudo", + " │ └─TableReader(Probe) 9980.01 root data:Selection", + " │ └─Selection 9980.01 cop[tikv] not(isnull(test.t6.a)), not(isnull(test.t6.b))", + " │ └─TableFullScan 10000.00 cop[tikv] table:t6 keep order:false, stats:pseudo", " └─HashJoin(Probe) 19511.72 root inner join, equal:[eq(test.t4.a, test.t8.a)]", " ├─TableReader(Build) 9990.00 root data:Selection", " │ └─Selection 9990.00 cop[tikv] not(isnull(test.t8.a))", @@ -1626,12 +1626,12 @@ "│ ├─IndexReader(Build) 9990.00 root index:IndexFullScan", "│ │ └─IndexFullScan 9990.00 cop[tikv] table:t5, index:a(a) keep order:false, stats:pseudo", "│ └─HashJoin(Probe) 12475.01 root inner join, equal:[eq(test.t6.b, test.t7.b)]", - "│ ├─TableReader(Build) 9980.01 root data:Selection", - "│ │ └─Selection 9980.01 cop[tikv] not(isnull(test.t6.a)), not(isnull(test.t6.b))", - "│ │ └─TableFullScan 10000.00 cop[tikv] table:t6 keep order:false, stats:pseudo", - "│ └─TableReader(Probe) 9990.00 root data:Selection", - "│ └─Selection 9990.00 cop[tikv] not(isnull(test.t7.b))", - "│ └─TableFullScan 10000.00 cop[tikv] table:t7 keep order:false, stats:pseudo", + "│ ├─TableReader(Build) 9990.00 root data:Selection", + "│ │ └─Selection 9990.00 cop[tikv] not(isnull(test.t7.b))", + "│ │ └─TableFullScan 10000.00 cop[tikv] table:t7 keep order:false, stats:pseudo", + "│ └─TableReader(Probe) 9980.01 root data:Selection", + "│ └─Selection 9980.01 cop[tikv] not(isnull(test.t6.a)), not(isnull(test.t6.b))", + "│ └─TableFullScan 10000.00 cop[tikv] table:t6 keep order:false, stats:pseudo", "└─HashJoin(Probe) 19511.72 root inner join, equal:[eq(test.t1.a, test.t2.a)]", " ├─TableReader(Build) 9990.00 root data:Selection", " │ └─Selection 9990.00 cop[tikv] not(isnull(test.t2.a))", @@ -1661,12 +1661,12 @@ " │ ├─IndexReader(Build) 9990.00 root index:IndexFullScan", " │ │ └─IndexFullScan 9990.00 cop[tikv] table:t5, index:a(a) keep order:false, stats:pseudo", " │ └─HashJoin(Probe) 12475.01 root inner join, equal:[eq(test.t6.b, test.t7.b)]", - " │ ├─TableReader(Build) 9980.01 root data:Selection", - " │ │ └─Selection 9980.01 cop[tikv] not(isnull(test.t6.a)), not(isnull(test.t6.b))", - " │ │ └─TableFullScan 10000.00 cop[tikv] table:t6 keep order:false, stats:pseudo", - " │ └─TableReader(Probe) 9990.00 root data:Selection", - " │ └─Selection 9990.00 cop[tikv] not(isnull(test.t7.b))", - " │ └─TableFullScan 10000.00 cop[tikv] table:t7 keep order:false, stats:pseudo", + " │ ├─TableReader(Build) 9990.00 root data:Selection", + " │ │ └─Selection 9990.00 cop[tikv] not(isnull(test.t7.b))", + " │ │ └─TableFullScan 10000.00 cop[tikv] table:t7 keep order:false, stats:pseudo", + " │ └─TableReader(Probe) 9980.01 root data:Selection", + " │ └─Selection 9980.01 cop[tikv] not(isnull(test.t6.a)), not(isnull(test.t6.b))", + " │ └─TableFullScan 10000.00 cop[tikv] table:t6 keep order:false, stats:pseudo", " └─HashJoin(Probe) 19511.72 root inner join, equal:[eq(test.t1.a, test.t2.a)]", " ├─TableReader(Build) 9990.00 root data:Selection", " │ └─Selection 9990.00 cop[tikv] not(isnull(test.t2.a))", @@ -1694,12 +1694,12 @@ " │ ├─IndexReader(Build) 9990.00 root index:IndexFullScan", " │ │ └─IndexFullScan 9990.00 cop[tikv] table:t5, index:a(a) keep order:false, stats:pseudo", " │ └─HashJoin(Probe) 12475.01 root inner join, equal:[eq(test.t6.b, test.t7.b)]", - " │ ├─TableReader(Build) 9980.01 root data:Selection", - " │ │ └─Selection 9980.01 cop[tikv] not(isnull(test.t6.a)), not(isnull(test.t6.b))", - " │ │ └─TableFullScan 10000.00 cop[tikv] table:t6 keep order:false, stats:pseudo", - " │ └─TableReader(Probe) 9990.00 root data:Selection", - " │ └─Selection 9990.00 cop[tikv] not(isnull(test.t7.b))", - " │ └─TableFullScan 10000.00 cop[tikv] table:t7 keep order:false, stats:pseudo", + " │ ├─TableReader(Build) 9990.00 root data:Selection", + " │ │ └─Selection 9990.00 cop[tikv] not(isnull(test.t7.b))", + " │ │ └─TableFullScan 10000.00 cop[tikv] table:t7 keep order:false, stats:pseudo", + " │ └─TableReader(Probe) 9980.01 root data:Selection", + " │ └─Selection 9980.01 cop[tikv] not(isnull(test.t6.a)), not(isnull(test.t6.b))", + " │ └─TableFullScan 10000.00 cop[tikv] table:t6 keep order:false, stats:pseudo", " └─HashJoin(Probe) 19511.72 root inner join, equal:[eq(test.t4.a, test.t8.a)]", " ├─TableReader(Build) 9990.00 root data:Selection", " │ └─Selection 9990.00 cop[tikv] not(isnull(test.t8.a))", @@ -1726,12 +1726,12 @@ "│ ├─IndexReader(Build) 9990.00 root index:IndexFullScan", "│ │ └─IndexFullScan 9990.00 cop[tikv] table:t5, index:a(a) keep order:false, stats:pseudo", "│ └─HashJoin(Probe) 12475.01 root inner join, equal:[eq(test.t6.b, test.t7.b)]", - "│ ├─TableReader(Build) 9980.01 root data:Selection", - "│ │ └─Selection 9980.01 cop[tikv] not(isnull(test.t6.a)), not(isnull(test.t6.b))", - "│ │ └─TableFullScan 10000.00 cop[tikv] table:t6 keep order:false, stats:pseudo", - "│ └─TableReader(Probe) 9990.00 root data:Selection", - "│ └─Selection 9990.00 cop[tikv] not(isnull(test.t7.b))", - "│ └─TableFullScan 10000.00 cop[tikv] table:t7 keep order:false, stats:pseudo", + "│ ├─TableReader(Build) 9990.00 root data:Selection", + "│ │ └─Selection 9990.00 cop[tikv] not(isnull(test.t7.b))", + "│ │ └─TableFullScan 10000.00 cop[tikv] table:t7 keep order:false, stats:pseudo", + "│ └─TableReader(Probe) 9980.01 root data:Selection", + "│ └─Selection 9980.01 cop[tikv] not(isnull(test.t6.a)), not(isnull(test.t6.b))", + "│ └─TableFullScan 10000.00 cop[tikv] table:t6 keep order:false, stats:pseudo", "└─HashJoin(Probe) 19511.72 root inner join, equal:[eq(test.t1.a, test.t2.a)]", " ├─TableReader(Build) 9990.00 root data:Selection", " │ └─Selection 9990.00 cop[tikv] not(isnull(test.t2.a))", @@ -1761,12 +1761,12 @@ " │ ├─IndexReader(Build) 9990.00 root index:IndexFullScan", " │ │ └─IndexFullScan 9990.00 cop[tikv] table:t5, index:a(a) keep order:false, stats:pseudo", " │ └─HashJoin(Probe) 12475.01 root inner join, equal:[eq(test.t6.b, test.t7.b)]", - " │ ├─TableReader(Build) 9980.01 root data:Selection", - " │ │ └─Selection 9980.01 cop[tikv] not(isnull(test.t6.a)), not(isnull(test.t6.b))", - " │ │ └─TableFullScan 10000.00 cop[tikv] table:t6 keep order:false, stats:pseudo", - " │ └─TableReader(Probe) 9990.00 root data:Selection", - " │ └─Selection 9990.00 cop[tikv] not(isnull(test.t7.b))", - " │ └─TableFullScan 10000.00 cop[tikv] table:t7 keep order:false, stats:pseudo", + " │ ├─TableReader(Build) 9990.00 root data:Selection", + " │ │ └─Selection 9990.00 cop[tikv] not(isnull(test.t7.b))", + " │ │ └─TableFullScan 10000.00 cop[tikv] table:t7 keep order:false, stats:pseudo", + " │ └─TableReader(Probe) 9980.01 root data:Selection", + " │ └─Selection 9980.01 cop[tikv] not(isnull(test.t6.a)), not(isnull(test.t6.b))", + " │ └─TableFullScan 10000.00 cop[tikv] table:t6 keep order:false, stats:pseudo", " └─HashJoin(Probe) 19511.72 root inner join, equal:[eq(test.t1.a, test.t2.a)]", " ├─TableReader(Build) 9990.00 root data:Selection", " │ └─Selection 9990.00 cop[tikv] not(isnull(test.t2.a))", @@ -1793,12 +1793,12 @@ "│ ├─IndexReader(Build) 9990.00 root index:IndexFullScan", "│ │ └─IndexFullScan 9990.00 cop[tikv] table:t5, index:a(a) keep order:false, stats:pseudo", "│ └─HashJoin(Probe) 12475.01 root inner join, equal:[eq(test.t6.b, test.t7.b)]", - "│ ├─TableReader(Build) 9980.01 root data:Selection", - "│ │ └─Selection 9980.01 cop[tikv] not(isnull(test.t6.a)), not(isnull(test.t6.b))", - "│ │ └─TableFullScan 10000.00 cop[tikv] table:t6 keep order:false, stats:pseudo", - "│ └─TableReader(Probe) 9990.00 root data:Selection", - "│ └─Selection 9990.00 cop[tikv] not(isnull(test.t7.b))", - "│ └─TableFullScan 10000.00 cop[tikv] table:t7 keep order:false, stats:pseudo", + "│ ├─TableReader(Build) 9990.00 root data:Selection", + "│ │ └─Selection 9990.00 cop[tikv] not(isnull(test.t7.b))", + "│ │ └─TableFullScan 10000.00 cop[tikv] table:t7 keep order:false, stats:pseudo", + "│ └─TableReader(Probe) 9980.01 root data:Selection", + "│ └─Selection 9980.01 cop[tikv] not(isnull(test.t6.a)), not(isnull(test.t6.b))", + "│ └─TableFullScan 10000.00 cop[tikv] table:t6 keep order:false, stats:pseudo", "└─HashJoin(Probe) 19511.72 root inner join, equal:[eq(test.t1.a, test.t2.a)]", " ├─TableReader(Build) 9990.00 root data:Selection", " │ └─Selection 9990.00 cop[tikv] not(isnull(test.t2.a))", @@ -1828,11 +1828,11 @@ "│ │ └─Selection 9990.00 cop[tikv] not(isnull(test.t7.b))", "│ │ └─TableFullScan 10000.00 cop[tikv] table:t7 keep order:false, stats:pseudo", "│ └─HashJoin(Probe) 12475.01 root inner join, equal:[eq(test.t5.a, test.t6.a)]", - "│ ├─TableReader(Build) 9980.01 root data:Selection", - "│ │ └─Selection 9980.01 cop[tikv] not(isnull(test.t6.a)), not(isnull(test.t6.b))", - "│ │ └─TableFullScan 10000.00 cop[tikv] table:t6 keep order:false, stats:pseudo", - "│ └─IndexReader(Probe) 9990.00 root index:IndexFullScan", - "│ └─IndexFullScan 9990.00 cop[tikv] table:t5, index:a(a) keep order:false, stats:pseudo", + "│ ├─IndexReader(Build) 9990.00 root index:IndexFullScan", + "│ │ └─IndexFullScan 9990.00 cop[tikv] table:t5, index:a(a) keep order:false, stats:pseudo", + "│ └─TableReader(Probe) 9980.01 root data:Selection", + "│ └─Selection 9980.01 cop[tikv] not(isnull(test.t6.a)), not(isnull(test.t6.b))", + "│ └─TableFullScan 10000.00 cop[tikv] table:t6 keep order:false, stats:pseudo", "└─HashJoin(Probe) 19511.72 root inner join, equal:[eq(test.t1.a, test.t2.a)]", " ├─TableReader(Build) 9990.00 root data:Selection", " │ └─Selection 9990.00 cop[tikv] not(isnull(test.t2.a))", @@ -1859,12 +1859,12 @@ "│ ├─IndexReader(Build) 9990.00 root index:IndexFullScan", "│ │ └─IndexFullScan 9990.00 cop[tikv] table:t5, index:a(a) keep order:false, stats:pseudo", "│ └─HashJoin(Probe) 12475.01 root inner join, equal:[eq(test.t6.b, test.t7.b)]", - "│ ├─TableReader(Build) 9980.01 root data:Selection", - "│ │ └─Selection 9980.01 cop[tikv] not(isnull(test.t6.a)), not(isnull(test.t6.b))", - "│ │ └─TableFullScan 10000.00 cop[tikv] table:t6 keep order:false, stats:pseudo", - "│ └─TableReader(Probe) 9990.00 root data:Selection", - "│ └─Selection 9990.00 cop[tikv] not(isnull(test.t7.b))", - "│ └─TableFullScan 10000.00 cop[tikv] table:t7 keep order:false, stats:pseudo", + "│ ├─TableReader(Build) 9990.00 root data:Selection", + "│ │ └─Selection 9990.00 cop[tikv] not(isnull(test.t7.b))", + "│ │ └─TableFullScan 10000.00 cop[tikv] table:t7 keep order:false, stats:pseudo", + "│ └─TableReader(Probe) 9980.01 root data:Selection", + "│ └─Selection 9980.01 cop[tikv] not(isnull(test.t6.a)), not(isnull(test.t6.b))", + "│ └─TableFullScan 10000.00 cop[tikv] table:t6 keep order:false, stats:pseudo", "└─HashJoin(Probe) 19511.72 root inner join, equal:[eq(test.t1.a, test.t2.a)]", " ├─TableReader(Build) 9990.00 root data:Selection", " │ └─Selection 9990.00 cop[tikv] not(isnull(test.t2.a))", @@ -1955,12 +1955,12 @@ "│ ├─IndexReader(Build) 9990.00 root index:IndexFullScan", "│ │ └─IndexFullScan 9990.00 cop[tikv] table:t5, index:a(a) keep order:false, stats:pseudo", "│ └─HashJoin(Probe) 12475.01 root inner join, equal:[eq(test.t6.b, test.t7.b)]", - "│ ├─TableReader(Build) 9980.01 root data:Selection", - "│ │ └─Selection 9980.01 cop[tikv] not(isnull(test.t6.a)), not(isnull(test.t6.b))", - "│ │ └─TableFullScan 10000.00 cop[tikv] table:t6 keep order:false, stats:pseudo", - "│ └─TableReader(Probe) 9990.00 root data:Selection", - "│ └─Selection 9990.00 cop[tikv] not(isnull(test.t7.b))", - "│ └─TableFullScan 10000.00 cop[tikv] table:t7 keep order:false, stats:pseudo", + "│ ├─TableReader(Build) 9990.00 root data:Selection", + "│ │ └─Selection 9990.00 cop[tikv] not(isnull(test.t7.b))", + "│ │ └─TableFullScan 10000.00 cop[tikv] table:t7 keep order:false, stats:pseudo", + "│ └─TableReader(Probe) 9980.01 root data:Selection", + "│ └─Selection 9980.01 cop[tikv] not(isnull(test.t6.a)), not(isnull(test.t6.b))", + "│ └─TableFullScan 10000.00 cop[tikv] table:t6 keep order:false, stats:pseudo", "└─HashJoin(Probe) 19511.72 root inner join, equal:[eq(test.t1.a, test.t2.a)]", " ├─TableReader(Build) 9990.00 root data:Selection", " │ └─Selection 9990.00 cop[tikv] not(isnull(test.t2.a))", @@ -1989,12 +1989,12 @@ "│ ├─IndexReader(Build) 9990.00 root index:IndexFullScan", "│ │ └─IndexFullScan 9990.00 cop[tikv] table:t5, index:a(a) keep order:false, stats:pseudo", "│ └─HashJoin(Probe) 12475.01 root inner join, equal:[eq(test.t6.b, test.t7.b)]", - "│ ├─TableReader(Build) 9980.01 root data:Selection", - "│ │ └─Selection 9980.01 cop[tikv] not(isnull(test.t6.a)), not(isnull(test.t6.b))", - "│ │ └─TableFullScan 10000.00 cop[tikv] table:t6 keep order:false, stats:pseudo", - "│ └─TableReader(Probe) 9990.00 root data:Selection", - "│ └─Selection 9990.00 cop[tikv] not(isnull(test.t7.b))", - "│ └─TableFullScan 10000.00 cop[tikv] table:t7 keep order:false, stats:pseudo", + "│ ├─TableReader(Build) 9990.00 root data:Selection", + "│ │ └─Selection 9990.00 cop[tikv] not(isnull(test.t7.b))", + "│ │ └─TableFullScan 10000.00 cop[tikv] table:t7 keep order:false, stats:pseudo", + "│ └─TableReader(Probe) 9980.01 root data:Selection", + "│ └─Selection 9980.01 cop[tikv] not(isnull(test.t6.a)), not(isnull(test.t6.b))", + "│ └─TableFullScan 10000.00 cop[tikv] table:t6 keep order:false, stats:pseudo", "└─HashJoin(Probe) 19511.72 root inner join, equal:[eq(test.t1.a, test.t2.a)]", " ├─TableReader(Build) 9990.00 root data:Selection", " │ └─Selection 9990.00 cop[tikv] not(isnull(test.t2.a))", @@ -2023,12 +2023,12 @@ "│ ├─IndexReader(Build) 9990.00 root index:IndexFullScan", "│ │ └─IndexFullScan 9990.00 cop[tikv] table:t5, index:a(a) keep order:false, stats:pseudo", "│ └─HashJoin(Probe) 12475.01 root inner join, equal:[eq(test.t6.b, test.t7.b)]", - "│ ├─TableReader(Build) 9980.01 root data:Selection", - "│ │ └─Selection 9980.01 cop[tikv] not(isnull(test.t6.a)), not(isnull(test.t6.b))", - "│ │ └─TableFullScan 10000.00 cop[tikv] table:t6 keep order:false, stats:pseudo", - "│ └─TableReader(Probe) 9990.00 root data:Selection", - "│ └─Selection 9990.00 cop[tikv] not(isnull(test.t7.b))", - "│ └─TableFullScan 10000.00 cop[tikv] table:t7 keep order:false, stats:pseudo", + "│ ├─TableReader(Build) 9990.00 root data:Selection", + "│ │ └─Selection 9990.00 cop[tikv] not(isnull(test.t7.b))", + "│ │ └─TableFullScan 10000.00 cop[tikv] table:t7 keep order:false, stats:pseudo", + "│ └─TableReader(Probe) 9980.01 root data:Selection", + "│ └─Selection 9980.01 cop[tikv] not(isnull(test.t6.a)), not(isnull(test.t6.b))", + "│ └─TableFullScan 10000.00 cop[tikv] table:t6 keep order:false, stats:pseudo", "└─HashJoin(Probe) 19511.72 root inner join, equal:[eq(test.t1.a, test.t2.a)]", " ├─TableReader(Build) 9990.00 root data:Selection", " │ └─Selection 9990.00 cop[tikv] not(isnull(test.t2.a))", @@ -2057,12 +2057,12 @@ "│ ├─IndexReader(Build) 9990.00 root index:IndexFullScan", "│ │ └─IndexFullScan 9990.00 cop[tikv] table:t5, index:a(a) keep order:false, stats:pseudo", "│ └─HashJoin(Probe) 12475.01 root inner join, equal:[eq(test.t6.b, test.t7.b)]", - "│ ├─TableReader(Build) 9980.01 root data:Selection", - "│ │ └─Selection 9980.01 cop[tikv] not(isnull(test.t6.a)), not(isnull(test.t6.b))", - "│ │ └─TableFullScan 10000.00 cop[tikv] table:t6 keep order:false, stats:pseudo", - "│ └─TableReader(Probe) 9990.00 root data:Selection", - "│ └─Selection 9990.00 cop[tikv] not(isnull(test.t7.b))", - "│ └─TableFullScan 10000.00 cop[tikv] table:t7 keep order:false, stats:pseudo", + "│ ├─TableReader(Build) 9990.00 root data:Selection", + "│ │ └─Selection 9990.00 cop[tikv] not(isnull(test.t7.b))", + "│ │ └─TableFullScan 10000.00 cop[tikv] table:t7 keep order:false, stats:pseudo", + "│ └─TableReader(Probe) 9980.01 root data:Selection", + "│ └─Selection 9980.01 cop[tikv] not(isnull(test.t6.a)), not(isnull(test.t6.b))", + "│ └─TableFullScan 10000.00 cop[tikv] table:t6 keep order:false, stats:pseudo", "└─HashJoin(Probe) 19511.72 root inner join, equal:[eq(test.t1.a, test.t2.a)]", " ├─TableReader(Build) 9990.00 root data:Selection", " │ └─Selection 9990.00 cop[tikv] not(isnull(test.t2.a))", @@ -2136,11 +2136,11 @@ " ├─TableReader(Build) 9990.00 root data:Selection", " │ └─Selection 9990.00 cop[tikv] not(isnull(test.t.a))", " │ └─TableFullScan 10000.00 cop[tikv] table:t keep order:false, stats:pseudo", - " └─IndexLookUp(Probe) 1.25 root ", - " ├─Selection(Build) 1.25 cop[tikv] not(isnull(test.t1.a))", - " │ └─IndexRangeScan 1.25 cop[tikv] table:t1, index:a(a) range: decided by [eq(test.t1.a, test.t.a)], keep order:false, stats:pseudo", - " └─Selection(Probe) 1.25 cop[tikv] not(isnull(test.t1.b))", - " └─TableRowIDScan 1.25 cop[tikv] table:t1 keep order:false, stats:pseudo" + " └─IndexLookUp(Probe) 12475.01 root ", + " ├─Selection(Build) 12487.50 cop[tikv] not(isnull(test.t1.a))", + " │ └─IndexRangeScan 12500.00 cop[tikv] table:t1, index:a(a) range: decided by [eq(test.t1.a, test.t.a)], keep order:false, stats:pseudo", + " └─Selection(Probe) 12475.01 cop[tikv] not(isnull(test.t1.b))", + " └─TableRowIDScan 12487.50 cop[tikv] table:t1 keep order:false, stats:pseudo" ], "Warning": null }, @@ -2205,11 +2205,11 @@ " ├─TableReader(Build) 9990.00 root data:Selection", " │ └─Selection 9990.00 cop[tikv] not(isnull(test.t.a))", " │ └─TableFullScan 10000.00 cop[tikv] table:t keep order:false, stats:pseudo", - " └─IndexLookUp(Probe) 1.25 root ", - " ├─Selection(Build) 1.25 cop[tikv] not(isnull(test.t1.a))", - " │ └─IndexRangeScan 1.25 cop[tikv] table:t1, index:a(a) range: decided by [eq(test.t1.a, test.t.a)], keep order:false, stats:pseudo", - " └─Selection(Probe) 1.25 cop[tikv] not(isnull(test.t1.b))", - " └─TableRowIDScan 1.25 cop[tikv] table:t1 keep order:false, stats:pseudo" + " └─IndexLookUp(Probe) 12475.01 root ", + " ├─Selection(Build) 12487.50 cop[tikv] not(isnull(test.t1.a))", + " │ └─IndexRangeScan 12500.00 cop[tikv] table:t1, index:a(a) range: decided by [eq(test.t1.a, test.t.a)], keep order:false, stats:pseudo", + " └─Selection(Probe) 12475.01 cop[tikv] not(isnull(test.t1.b))", + " └─TableRowIDScan 12487.50 cop[tikv] table:t1 keep order:false, stats:pseudo" ], "Warning": null }, @@ -2279,11 +2279,11 @@ " ├─TableReader(Build) 9990.00 root data:Selection", " │ └─Selection 9990.00 cop[tikv] not(isnull(test.t.a))", " │ └─TableFullScan 10000.00 cop[tikv] table:t keep order:false, stats:pseudo", - " └─IndexLookUp(Probe) 1.25 root ", - " ├─Selection(Build) 1.25 cop[tikv] not(isnull(test.t1.a))", - " │ └─IndexRangeScan 1.25 cop[tikv] table:t1, index:a(a) range: decided by [eq(test.t1.a, test.t.a)], keep order:false, stats:pseudo", - " └─Selection(Probe) 1.25 cop[tikv] not(isnull(test.t1.b))", - " └─TableRowIDScan 1.25 cop[tikv] table:t1 keep order:false, stats:pseudo" + " └─IndexLookUp(Probe) 12475.01 root ", + " ├─Selection(Build) 12487.50 cop[tikv] not(isnull(test.t1.a))", + " │ └─IndexRangeScan 12500.00 cop[tikv] table:t1, index:a(a) range: decided by [eq(test.t1.a, test.t.a)], keep order:false, stats:pseudo", + " └─Selection(Probe) 12475.01 cop[tikv] not(isnull(test.t1.b))", + " └─TableRowIDScan 12487.50 cop[tikv] table:t1 keep order:false, stats:pseudo" ], "Warning": null } @@ -2533,60 +2533,60 @@ " │ └─Selection 9990.00 cop[tikv] not(isnull(test.t3.b))", " │ └─TableFullScan 10000.00 cop[tikv] table:t3, partition:p2 keep order:false, stats:pseudo", " └─HashJoin(Probe) 58476.62 root inner join, equal:[eq(test.t.b, test.t2.b)]", - " ├─HashJoin(Build) 46781.30 root left outer join, equal:[eq(test.t.a, test.t1.a)]", - " │ ├─PartitionUnion(Build) 39960.00 root ", - " │ │ ├─TableReader 9990.00 root data:Selection", - " │ │ │ └─Selection 9990.00 cop[tikv] not(isnull(test.t1.a))", - " │ │ │ └─TableFullScan 10000.00 cop[tikv] table:t1, partition:p0 keep order:false, stats:pseudo", - " │ │ ├─TableReader 9990.00 root data:Selection", - " │ │ │ └─Selection 9990.00 cop[tikv] not(isnull(test.t1.a))", - " │ │ │ └─TableFullScan 10000.00 cop[tikv] table:t1, partition:p1 keep order:false, stats:pseudo", - " │ │ ├─TableReader 9990.00 root data:Selection", - " │ │ │ └─Selection 9990.00 cop[tikv] not(isnull(test.t1.a))", - " │ │ │ └─TableFullScan 10000.00 cop[tikv] table:t1, partition:p2 keep order:false, stats:pseudo", - " │ │ └─TableReader 9990.00 root data:Selection", - " │ │ └─Selection 9990.00 cop[tikv] not(isnull(test.t1.a))", - " │ │ └─TableFullScan 10000.00 cop[tikv] table:t1, partition:p3 keep order:false, stats:pseudo", - " │ └─HashJoin(Probe) 37425.04 root inner join, equal:[eq(test.t.a, test.t4.a)]", - " │ ├─PartitionUnion(Build) 29940.03 root ", - " │ │ ├─TableReader 9980.01 root data:Selection", - " │ │ │ └─Selection 9980.01 cop[tikv] not(isnull(test.t.a)), not(isnull(test.t.b))", - " │ │ │ └─TableFullScan 10000.00 cop[tikv] table:t, partition:p0 keep order:false, stats:pseudo", - " │ │ ├─TableReader 9980.01 root data:Selection", - " │ │ │ └─Selection 9980.01 cop[tikv] not(isnull(test.t.a)), not(isnull(test.t.b))", - " │ │ │ └─TableFullScan 10000.00 cop[tikv] table:t, partition:p1 keep order:false, stats:pseudo", - " │ │ └─TableReader 9980.01 root data:Selection", - " │ │ └─Selection 9980.01 cop[tikv] not(isnull(test.t.a)), not(isnull(test.t.b))", - " │ │ └─TableFullScan 10000.00 cop[tikv] table:t, partition:p2 keep order:false, stats:pseudo", - " │ └─PartitionUnion(Probe) 39960.00 root ", - " │ ├─TableReader 9990.00 root data:Selection", - " │ │ └─Selection 9990.00 cop[tikv] not(isnull(test.t4.a))", - " │ │ └─TableFullScan 10000.00 cop[tikv] table:t4, partition:p0 keep order:false, stats:pseudo", - " │ ├─TableReader 9990.00 root data:Selection", - " │ │ └─Selection 9990.00 cop[tikv] not(isnull(test.t4.a))", - " │ │ └─TableFullScan 10000.00 cop[tikv] table:t4, partition:p1 keep order:false, stats:pseudo", - " │ ├─TableReader 9990.00 root data:Selection", - " │ │ └─Selection 9990.00 cop[tikv] not(isnull(test.t4.a))", - " │ │ └─TableFullScan 10000.00 cop[tikv] table:t4, partition:p2 keep order:false, stats:pseudo", - " │ └─TableReader 9990.00 root data:Selection", - " │ └─Selection 9990.00 cop[tikv] not(isnull(test.t4.a))", - " │ └─TableFullScan 10000.00 cop[tikv] table:t4, partition:p3 keep order:false, stats:pseudo", - " └─PartitionUnion(Probe) 49950.00 root ", - " ├─TableReader 9990.00 root data:Selection", - " │ └─Selection 9990.00 cop[tikv] not(isnull(test.t2.b))", - " │ └─TableFullScan 10000.00 cop[tikv] table:t2, partition:p0 keep order:false, stats:pseudo", - " ├─TableReader 9990.00 root data:Selection", - " │ └─Selection 9990.00 cop[tikv] not(isnull(test.t2.b))", - " │ └─TableFullScan 10000.00 cop[tikv] table:t2, partition:p1 keep order:false, stats:pseudo", - " ├─TableReader 9990.00 root data:Selection", - " │ └─Selection 9990.00 cop[tikv] not(isnull(test.t2.b))", - " │ └─TableFullScan 10000.00 cop[tikv] table:t2, partition:p2 keep order:false, stats:pseudo", - " ├─TableReader 9990.00 root data:Selection", - " │ └─Selection 9990.00 cop[tikv] not(isnull(test.t2.b))", - " │ └─TableFullScan 10000.00 cop[tikv] table:t2, partition:p3 keep order:false, stats:pseudo", - " └─TableReader 9990.00 root data:Selection", - " └─Selection 9990.00 cop[tikv] not(isnull(test.t2.b))", - " └─TableFullScan 10000.00 cop[tikv] table:t2, partition:p4 keep order:false, stats:pseudo" + " ├─PartitionUnion(Build) 49950.00 root ", + " │ ├─TableReader 9990.00 root data:Selection", + " │ │ └─Selection 9990.00 cop[tikv] not(isnull(test.t2.b))", + " │ │ └─TableFullScan 10000.00 cop[tikv] table:t2, partition:p0 keep order:false, stats:pseudo", + " │ ├─TableReader 9990.00 root data:Selection", + " │ │ └─Selection 9990.00 cop[tikv] not(isnull(test.t2.b))", + " │ │ └─TableFullScan 10000.00 cop[tikv] table:t2, partition:p1 keep order:false, stats:pseudo", + " │ ├─TableReader 9990.00 root data:Selection", + " │ │ └─Selection 9990.00 cop[tikv] not(isnull(test.t2.b))", + " │ │ └─TableFullScan 10000.00 cop[tikv] table:t2, partition:p2 keep order:false, stats:pseudo", + " │ ├─TableReader 9990.00 root data:Selection", + " │ │ └─Selection 9990.00 cop[tikv] not(isnull(test.t2.b))", + " │ │ └─TableFullScan 10000.00 cop[tikv] table:t2, partition:p3 keep order:false, stats:pseudo", + " │ └─TableReader 9990.00 root data:Selection", + " │ └─Selection 9990.00 cop[tikv] not(isnull(test.t2.b))", + " │ └─TableFullScan 10000.00 cop[tikv] table:t2, partition:p4 keep order:false, stats:pseudo", + " └─HashJoin(Probe) 46781.30 root left outer join, equal:[eq(test.t.a, test.t1.a)]", + " ├─HashJoin(Build) 37425.04 root inner join, equal:[eq(test.t.a, test.t4.a)]", + " │ ├─PartitionUnion(Build) 29940.03 root ", + " │ │ ├─TableReader 9980.01 root data:Selection", + " │ │ │ └─Selection 9980.01 cop[tikv] not(isnull(test.t.a)), not(isnull(test.t.b))", + " │ │ │ └─TableFullScan 10000.00 cop[tikv] table:t, partition:p0 keep order:false, stats:pseudo", + " │ │ ├─TableReader 9980.01 root data:Selection", + " │ │ │ └─Selection 9980.01 cop[tikv] not(isnull(test.t.a)), not(isnull(test.t.b))", + " │ │ │ └─TableFullScan 10000.00 cop[tikv] table:t, partition:p1 keep order:false, stats:pseudo", + " │ │ └─TableReader 9980.01 root data:Selection", + " │ │ └─Selection 9980.01 cop[tikv] not(isnull(test.t.a)), not(isnull(test.t.b))", + " │ │ └─TableFullScan 10000.00 cop[tikv] table:t, partition:p2 keep order:false, stats:pseudo", + " │ └─PartitionUnion(Probe) 39960.00 root ", + " │ ├─TableReader 9990.00 root data:Selection", + " │ │ └─Selection 9990.00 cop[tikv] not(isnull(test.t4.a))", + " │ │ └─TableFullScan 10000.00 cop[tikv] table:t4, partition:p0 keep order:false, stats:pseudo", + " │ ├─TableReader 9990.00 root data:Selection", + " │ │ └─Selection 9990.00 cop[tikv] not(isnull(test.t4.a))", + " │ │ └─TableFullScan 10000.00 cop[tikv] table:t4, partition:p1 keep order:false, stats:pseudo", + " │ ├─TableReader 9990.00 root data:Selection", + " │ │ └─Selection 9990.00 cop[tikv] not(isnull(test.t4.a))", + " │ │ └─TableFullScan 10000.00 cop[tikv] table:t4, partition:p2 keep order:false, stats:pseudo", + " │ └─TableReader 9990.00 root data:Selection", + " │ └─Selection 9990.00 cop[tikv] not(isnull(test.t4.a))", + " │ └─TableFullScan 10000.00 cop[tikv] table:t4, partition:p3 keep order:false, stats:pseudo", + " └─PartitionUnion(Probe) 39960.00 root ", + " ├─TableReader 9990.00 root data:Selection", + " │ └─Selection 9990.00 cop[tikv] not(isnull(test.t1.a))", + " │ └─TableFullScan 10000.00 cop[tikv] table:t1, partition:p0 keep order:false, stats:pseudo", + " ├─TableReader 9990.00 root data:Selection", + " │ └─Selection 9990.00 cop[tikv] not(isnull(test.t1.a))", + " │ └─TableFullScan 10000.00 cop[tikv] table:t1, partition:p1 keep order:false, stats:pseudo", + " ├─TableReader 9990.00 root data:Selection", + " │ └─Selection 9990.00 cop[tikv] not(isnull(test.t1.a))", + " │ └─TableFullScan 10000.00 cop[tikv] table:t1, partition:p2 keep order:false, stats:pseudo", + " └─TableReader 9990.00 root data:Selection", + " └─Selection 9990.00 cop[tikv] not(isnull(test.t1.a))", + " └─TableFullScan 10000.00 cop[tikv] table:t1, partition:p3 keep order:false, stats:pseudo" ], "Warning": [ "Warning 1815 leading hint is inapplicable, check if the leading hint table is valid" @@ -2608,60 +2608,60 @@ " │ └─Selection 9990.00 cop[tikv] not(isnull(test.t3.b))", " │ └─TableFullScan 10000.00 cop[tikv] table:t3, partition:p2 keep order:false, stats:pseudo", " └─HashJoin(Probe) 58476.62 root inner join, equal:[eq(test.t.b, test.t2.b)]", - " ├─HashJoin(Build) 46781.30 root left outer join, equal:[eq(test.t.a, test.t1.a)]", - " │ ├─PartitionUnion(Build) 39960.00 root ", - " │ │ ├─TableReader 9990.00 root data:Selection", - " │ │ │ └─Selection 9990.00 cop[tikv] not(isnull(test.t1.a))", - " │ │ │ └─TableFullScan 10000.00 cop[tikv] table:t1, partition:p0 keep order:false, stats:pseudo", - " │ │ ├─TableReader 9990.00 root data:Selection", - " │ │ │ └─Selection 9990.00 cop[tikv] not(isnull(test.t1.a))", - " │ │ │ └─TableFullScan 10000.00 cop[tikv] table:t1, partition:p1 keep order:false, stats:pseudo", - " │ │ ├─TableReader 9990.00 root data:Selection", - " │ │ │ └─Selection 9990.00 cop[tikv] not(isnull(test.t1.a))", - " │ │ │ └─TableFullScan 10000.00 cop[tikv] table:t1, partition:p2 keep order:false, stats:pseudo", - " │ │ └─TableReader 9990.00 root data:Selection", - " │ │ └─Selection 9990.00 cop[tikv] not(isnull(test.t1.a))", - " │ │ └─TableFullScan 10000.00 cop[tikv] table:t1, partition:p3 keep order:false, stats:pseudo", - " │ └─HashJoin(Probe) 37425.04 root inner join, equal:[eq(test.t.a, test.t4.a)]", - " │ ├─PartitionUnion(Build) 29940.03 root ", - " │ │ ├─TableReader 9980.01 root data:Selection", - " │ │ │ └─Selection 9980.01 cop[tikv] not(isnull(test.t.a)), not(isnull(test.t.b))", - " │ │ │ └─TableFullScan 10000.00 cop[tikv] table:t, partition:p0 keep order:false, stats:pseudo", - " │ │ ├─TableReader 9980.01 root data:Selection", - " │ │ │ └─Selection 9980.01 cop[tikv] not(isnull(test.t.a)), not(isnull(test.t.b))", - " │ │ │ └─TableFullScan 10000.00 cop[tikv] table:t, partition:p1 keep order:false, stats:pseudo", - " │ │ └─TableReader 9980.01 root data:Selection", - " │ │ └─Selection 9980.01 cop[tikv] not(isnull(test.t.a)), not(isnull(test.t.b))", - " │ │ └─TableFullScan 10000.00 cop[tikv] table:t, partition:p2 keep order:false, stats:pseudo", - " │ └─PartitionUnion(Probe) 39960.00 root ", - " │ ├─TableReader 9990.00 root data:Selection", - " │ │ └─Selection 9990.00 cop[tikv] not(isnull(test.t4.a))", - " │ │ └─TableFullScan 10000.00 cop[tikv] table:t4, partition:p0 keep order:false, stats:pseudo", - " │ ├─TableReader 9990.00 root data:Selection", - " │ │ └─Selection 9990.00 cop[tikv] not(isnull(test.t4.a))", - " │ │ └─TableFullScan 10000.00 cop[tikv] table:t4, partition:p1 keep order:false, stats:pseudo", - " │ ├─TableReader 9990.00 root data:Selection", - " │ │ └─Selection 9990.00 cop[tikv] not(isnull(test.t4.a))", - " │ │ └─TableFullScan 10000.00 cop[tikv] table:t4, partition:p2 keep order:false, stats:pseudo", - " │ └─TableReader 9990.00 root data:Selection", - " │ └─Selection 9990.00 cop[tikv] not(isnull(test.t4.a))", - " │ └─TableFullScan 10000.00 cop[tikv] table:t4, partition:p3 keep order:false, stats:pseudo", - " └─PartitionUnion(Probe) 49950.00 root ", - " ├─TableReader 9990.00 root data:Selection", - " │ └─Selection 9990.00 cop[tikv] not(isnull(test.t2.b))", - " │ └─TableFullScan 10000.00 cop[tikv] table:t2, partition:p0 keep order:false, stats:pseudo", - " ├─TableReader 9990.00 root data:Selection", - " │ └─Selection 9990.00 cop[tikv] not(isnull(test.t2.b))", - " │ └─TableFullScan 10000.00 cop[tikv] table:t2, partition:p1 keep order:false, stats:pseudo", - " ├─TableReader 9990.00 root data:Selection", - " │ └─Selection 9990.00 cop[tikv] not(isnull(test.t2.b))", - " │ └─TableFullScan 10000.00 cop[tikv] table:t2, partition:p2 keep order:false, stats:pseudo", - " ├─TableReader 9990.00 root data:Selection", - " │ └─Selection 9990.00 cop[tikv] not(isnull(test.t2.b))", - " │ └─TableFullScan 10000.00 cop[tikv] table:t2, partition:p3 keep order:false, stats:pseudo", - " └─TableReader 9990.00 root data:Selection", - " └─Selection 9990.00 cop[tikv] not(isnull(test.t2.b))", - " └─TableFullScan 10000.00 cop[tikv] table:t2, partition:p4 keep order:false, stats:pseudo" + " ├─PartitionUnion(Build) 49950.00 root ", + " │ ├─TableReader 9990.00 root data:Selection", + " │ │ └─Selection 9990.00 cop[tikv] not(isnull(test.t2.b))", + " │ │ └─TableFullScan 10000.00 cop[tikv] table:t2, partition:p0 keep order:false, stats:pseudo", + " │ ├─TableReader 9990.00 root data:Selection", + " │ │ └─Selection 9990.00 cop[tikv] not(isnull(test.t2.b))", + " │ │ └─TableFullScan 10000.00 cop[tikv] table:t2, partition:p1 keep order:false, stats:pseudo", + " │ ├─TableReader 9990.00 root data:Selection", + " │ │ └─Selection 9990.00 cop[tikv] not(isnull(test.t2.b))", + " │ │ └─TableFullScan 10000.00 cop[tikv] table:t2, partition:p2 keep order:false, stats:pseudo", + " │ ├─TableReader 9990.00 root data:Selection", + " │ │ └─Selection 9990.00 cop[tikv] not(isnull(test.t2.b))", + " │ │ └─TableFullScan 10000.00 cop[tikv] table:t2, partition:p3 keep order:false, stats:pseudo", + " │ └─TableReader 9990.00 root data:Selection", + " │ └─Selection 9990.00 cop[tikv] not(isnull(test.t2.b))", + " │ └─TableFullScan 10000.00 cop[tikv] table:t2, partition:p4 keep order:false, stats:pseudo", + " └─HashJoin(Probe) 46781.30 root left outer join, equal:[eq(test.t.a, test.t1.a)]", + " ├─HashJoin(Build) 37425.04 root inner join, equal:[eq(test.t.a, test.t4.a)]", + " │ ├─PartitionUnion(Build) 29940.03 root ", + " │ │ ├─TableReader 9980.01 root data:Selection", + " │ │ │ └─Selection 9980.01 cop[tikv] not(isnull(test.t.a)), not(isnull(test.t.b))", + " │ │ │ └─TableFullScan 10000.00 cop[tikv] table:t, partition:p0 keep order:false, stats:pseudo", + " │ │ ├─TableReader 9980.01 root data:Selection", + " │ │ │ └─Selection 9980.01 cop[tikv] not(isnull(test.t.a)), not(isnull(test.t.b))", + " │ │ │ └─TableFullScan 10000.00 cop[tikv] table:t, partition:p1 keep order:false, stats:pseudo", + " │ │ └─TableReader 9980.01 root data:Selection", + " │ │ └─Selection 9980.01 cop[tikv] not(isnull(test.t.a)), not(isnull(test.t.b))", + " │ │ └─TableFullScan 10000.00 cop[tikv] table:t, partition:p2 keep order:false, stats:pseudo", + " │ └─PartitionUnion(Probe) 39960.00 root ", + " │ ├─TableReader 9990.00 root data:Selection", + " │ │ └─Selection 9990.00 cop[tikv] not(isnull(test.t4.a))", + " │ │ └─TableFullScan 10000.00 cop[tikv] table:t4, partition:p0 keep order:false, stats:pseudo", + " │ ├─TableReader 9990.00 root data:Selection", + " │ │ └─Selection 9990.00 cop[tikv] not(isnull(test.t4.a))", + " │ │ └─TableFullScan 10000.00 cop[tikv] table:t4, partition:p1 keep order:false, stats:pseudo", + " │ ├─TableReader 9990.00 root data:Selection", + " │ │ └─Selection 9990.00 cop[tikv] not(isnull(test.t4.a))", + " │ │ └─TableFullScan 10000.00 cop[tikv] table:t4, partition:p2 keep order:false, stats:pseudo", + " │ └─TableReader 9990.00 root data:Selection", + " │ └─Selection 9990.00 cop[tikv] not(isnull(test.t4.a))", + " │ └─TableFullScan 10000.00 cop[tikv] table:t4, partition:p3 keep order:false, stats:pseudo", + " └─PartitionUnion(Probe) 39960.00 root ", + " ├─TableReader 9990.00 root data:Selection", + " │ └─Selection 9990.00 cop[tikv] not(isnull(test.t1.a))", + " │ └─TableFullScan 10000.00 cop[tikv] table:t1, partition:p0 keep order:false, stats:pseudo", + " ├─TableReader 9990.00 root data:Selection", + " │ └─Selection 9990.00 cop[tikv] not(isnull(test.t1.a))", + " │ └─TableFullScan 10000.00 cop[tikv] table:t1, partition:p1 keep order:false, stats:pseudo", + " ├─TableReader 9990.00 root data:Selection", + " │ └─Selection 9990.00 cop[tikv] not(isnull(test.t1.a))", + " │ └─TableFullScan 10000.00 cop[tikv] table:t1, partition:p2 keep order:false, stats:pseudo", + " └─TableReader 9990.00 root data:Selection", + " └─Selection 9990.00 cop[tikv] not(isnull(test.t1.a))", + " └─TableFullScan 10000.00 cop[tikv] table:t1, partition:p3 keep order:false, stats:pseudo" ], "Warning": [ "Warning 1815 leading hint is inapplicable, check if the leading hint table is valid" @@ -2683,60 +2683,60 @@ " │ └─Selection 9990.00 cop[tikv] not(isnull(test.t3.b))", " │ └─TableFullScan 10000.00 cop[tikv] table:t3, partition:p2 keep order:false, stats:pseudo", " └─HashJoin(Probe) 58476.62 root inner join, equal:[eq(test.t.b, test.t2.b)]", - " ├─HashJoin(Build) 46781.30 root left outer join, equal:[eq(test.t.a, test.t1.a)]", - " │ ├─PartitionUnion(Build) 39960.00 root ", - " │ │ ├─TableReader 9990.00 root data:Selection", - " │ │ │ └─Selection 9990.00 cop[tikv] not(isnull(test.t1.a))", - " │ │ │ └─TableFullScan 10000.00 cop[tikv] table:t1, partition:p0 keep order:false, stats:pseudo", - " │ │ ├─TableReader 9990.00 root data:Selection", - " │ │ │ └─Selection 9990.00 cop[tikv] not(isnull(test.t1.a))", - " │ │ │ └─TableFullScan 10000.00 cop[tikv] table:t1, partition:p1 keep order:false, stats:pseudo", - " │ │ ├─TableReader 9990.00 root data:Selection", - " │ │ │ └─Selection 9990.00 cop[tikv] not(isnull(test.t1.a))", - " │ │ │ └─TableFullScan 10000.00 cop[tikv] table:t1, partition:p2 keep order:false, stats:pseudo", - " │ │ └─TableReader 9990.00 root data:Selection", - " │ │ └─Selection 9990.00 cop[tikv] not(isnull(test.t1.a))", - " │ │ └─TableFullScan 10000.00 cop[tikv] table:t1, partition:p3 keep order:false, stats:pseudo", - " │ └─HashJoin(Probe) 37425.04 root inner join, equal:[eq(test.t.a, test.t4.a)]", - " │ ├─PartitionUnion(Build) 29940.03 root ", - " │ │ ├─TableReader 9980.01 root data:Selection", - " │ │ │ └─Selection 9980.01 cop[tikv] not(isnull(test.t.a)), not(isnull(test.t.b))", - " │ │ │ └─TableFullScan 10000.00 cop[tikv] table:t, partition:p0 keep order:false, stats:pseudo", - " │ │ ├─TableReader 9980.01 root data:Selection", - " │ │ │ └─Selection 9980.01 cop[tikv] not(isnull(test.t.a)), not(isnull(test.t.b))", - " │ │ │ └─TableFullScan 10000.00 cop[tikv] table:t, partition:p1 keep order:false, stats:pseudo", - " │ │ └─TableReader 9980.01 root data:Selection", - " │ │ └─Selection 9980.01 cop[tikv] not(isnull(test.t.a)), not(isnull(test.t.b))", - " │ │ └─TableFullScan 10000.00 cop[tikv] table:t, partition:p2 keep order:false, stats:pseudo", - " │ └─PartitionUnion(Probe) 39960.00 root ", - " │ ├─TableReader 9990.00 root data:Selection", - " │ │ └─Selection 9990.00 cop[tikv] not(isnull(test.t4.a))", - " │ │ └─TableFullScan 10000.00 cop[tikv] table:t4, partition:p0 keep order:false, stats:pseudo", - " │ ├─TableReader 9990.00 root data:Selection", - " │ │ └─Selection 9990.00 cop[tikv] not(isnull(test.t4.a))", - " │ │ └─TableFullScan 10000.00 cop[tikv] table:t4, partition:p1 keep order:false, stats:pseudo", - " │ ├─TableReader 9990.00 root data:Selection", - " │ │ └─Selection 9990.00 cop[tikv] not(isnull(test.t4.a))", - " │ │ └─TableFullScan 10000.00 cop[tikv] table:t4, partition:p2 keep order:false, stats:pseudo", - " │ └─TableReader 9990.00 root data:Selection", - " │ └─Selection 9990.00 cop[tikv] not(isnull(test.t4.a))", - " │ └─TableFullScan 10000.00 cop[tikv] table:t4, partition:p3 keep order:false, stats:pseudo", - " └─PartitionUnion(Probe) 49950.00 root ", - " ├─TableReader 9990.00 root data:Selection", - " │ └─Selection 9990.00 cop[tikv] not(isnull(test.t2.b))", - " │ └─TableFullScan 10000.00 cop[tikv] table:t2, partition:p0 keep order:false, stats:pseudo", - " ├─TableReader 9990.00 root data:Selection", - " │ └─Selection 9990.00 cop[tikv] not(isnull(test.t2.b))", - " │ └─TableFullScan 10000.00 cop[tikv] table:t2, partition:p1 keep order:false, stats:pseudo", - " ├─TableReader 9990.00 root data:Selection", - " │ └─Selection 9990.00 cop[tikv] not(isnull(test.t2.b))", - " │ └─TableFullScan 10000.00 cop[tikv] table:t2, partition:p2 keep order:false, stats:pseudo", - " ├─TableReader 9990.00 root data:Selection", - " │ └─Selection 9990.00 cop[tikv] not(isnull(test.t2.b))", - " │ └─TableFullScan 10000.00 cop[tikv] table:t2, partition:p3 keep order:false, stats:pseudo", - " └─TableReader 9990.00 root data:Selection", - " └─Selection 9990.00 cop[tikv] not(isnull(test.t2.b))", - " └─TableFullScan 10000.00 cop[tikv] table:t2, partition:p4 keep order:false, stats:pseudo" + " ├─PartitionUnion(Build) 49950.00 root ", + " │ ├─TableReader 9990.00 root data:Selection", + " │ │ └─Selection 9990.00 cop[tikv] not(isnull(test.t2.b))", + " │ │ └─TableFullScan 10000.00 cop[tikv] table:t2, partition:p0 keep order:false, stats:pseudo", + " │ ├─TableReader 9990.00 root data:Selection", + " │ │ └─Selection 9990.00 cop[tikv] not(isnull(test.t2.b))", + " │ │ └─TableFullScan 10000.00 cop[tikv] table:t2, partition:p1 keep order:false, stats:pseudo", + " │ ├─TableReader 9990.00 root data:Selection", + " │ │ └─Selection 9990.00 cop[tikv] not(isnull(test.t2.b))", + " │ │ └─TableFullScan 10000.00 cop[tikv] table:t2, partition:p2 keep order:false, stats:pseudo", + " │ ├─TableReader 9990.00 root data:Selection", + " │ │ └─Selection 9990.00 cop[tikv] not(isnull(test.t2.b))", + " │ │ └─TableFullScan 10000.00 cop[tikv] table:t2, partition:p3 keep order:false, stats:pseudo", + " │ └─TableReader 9990.00 root data:Selection", + " │ └─Selection 9990.00 cop[tikv] not(isnull(test.t2.b))", + " │ └─TableFullScan 10000.00 cop[tikv] table:t2, partition:p4 keep order:false, stats:pseudo", + " └─HashJoin(Probe) 46781.30 root left outer join, equal:[eq(test.t.a, test.t1.a)]", + " ├─HashJoin(Build) 37425.04 root inner join, equal:[eq(test.t.a, test.t4.a)]", + " │ ├─PartitionUnion(Build) 29940.03 root ", + " │ │ ├─TableReader 9980.01 root data:Selection", + " │ │ │ └─Selection 9980.01 cop[tikv] not(isnull(test.t.a)), not(isnull(test.t.b))", + " │ │ │ └─TableFullScan 10000.00 cop[tikv] table:t, partition:p0 keep order:false, stats:pseudo", + " │ │ ├─TableReader 9980.01 root data:Selection", + " │ │ │ └─Selection 9980.01 cop[tikv] not(isnull(test.t.a)), not(isnull(test.t.b))", + " │ │ │ └─TableFullScan 10000.00 cop[tikv] table:t, partition:p1 keep order:false, stats:pseudo", + " │ │ └─TableReader 9980.01 root data:Selection", + " │ │ └─Selection 9980.01 cop[tikv] not(isnull(test.t.a)), not(isnull(test.t.b))", + " │ │ └─TableFullScan 10000.00 cop[tikv] table:t, partition:p2 keep order:false, stats:pseudo", + " │ └─PartitionUnion(Probe) 39960.00 root ", + " │ ├─TableReader 9990.00 root data:Selection", + " │ │ └─Selection 9990.00 cop[tikv] not(isnull(test.t4.a))", + " │ │ └─TableFullScan 10000.00 cop[tikv] table:t4, partition:p0 keep order:false, stats:pseudo", + " │ ├─TableReader 9990.00 root data:Selection", + " │ │ └─Selection 9990.00 cop[tikv] not(isnull(test.t4.a))", + " │ │ └─TableFullScan 10000.00 cop[tikv] table:t4, partition:p1 keep order:false, stats:pseudo", + " │ ├─TableReader 9990.00 root data:Selection", + " │ │ └─Selection 9990.00 cop[tikv] not(isnull(test.t4.a))", + " │ │ └─TableFullScan 10000.00 cop[tikv] table:t4, partition:p2 keep order:false, stats:pseudo", + " │ └─TableReader 9990.00 root data:Selection", + " │ └─Selection 9990.00 cop[tikv] not(isnull(test.t4.a))", + " │ └─TableFullScan 10000.00 cop[tikv] table:t4, partition:p3 keep order:false, stats:pseudo", + " └─PartitionUnion(Probe) 39960.00 root ", + " ├─TableReader 9990.00 root data:Selection", + " │ └─Selection 9990.00 cop[tikv] not(isnull(test.t1.a))", + " │ └─TableFullScan 10000.00 cop[tikv] table:t1, partition:p0 keep order:false, stats:pseudo", + " ├─TableReader 9990.00 root data:Selection", + " │ └─Selection 9990.00 cop[tikv] not(isnull(test.t1.a))", + " │ └─TableFullScan 10000.00 cop[tikv] table:t1, partition:p1 keep order:false, stats:pseudo", + " ├─TableReader 9990.00 root data:Selection", + " │ └─Selection 9990.00 cop[tikv] not(isnull(test.t1.a))", + " │ └─TableFullScan 10000.00 cop[tikv] table:t1, partition:p2 keep order:false, stats:pseudo", + " └─TableReader 9990.00 root data:Selection", + " └─Selection 9990.00 cop[tikv] not(isnull(test.t1.a))", + " └─TableFullScan 10000.00 cop[tikv] table:t1, partition:p3 keep order:false, stats:pseudo" ], "Warning": [ "Warning 1815 leading hint is inapplicable, check if the leading hint table is valid" @@ -2758,60 +2758,60 @@ " │ └─Selection 9990.00 cop[tikv] not(isnull(test.t3.b))", " │ └─TableFullScan 10000.00 cop[tikv] table:t3, partition:p2 keep order:false, stats:pseudo", " └─HashJoin(Probe) 58476.62 root inner join, equal:[eq(test.t.b, test.t2.b)]", - " ├─HashJoin(Build) 46781.30 root left outer join, equal:[eq(test.t.a, test.t1.a)]", - " │ ├─PartitionUnion(Build) 39960.00 root ", - " │ │ ├─TableReader 9990.00 root data:Selection", - " │ │ │ └─Selection 9990.00 cop[tikv] not(isnull(test.t1.a))", - " │ │ │ └─TableFullScan 10000.00 cop[tikv] table:t1, partition:p0 keep order:false, stats:pseudo", - " │ │ ├─TableReader 9990.00 root data:Selection", - " │ │ │ └─Selection 9990.00 cop[tikv] not(isnull(test.t1.a))", - " │ │ │ └─TableFullScan 10000.00 cop[tikv] table:t1, partition:p1 keep order:false, stats:pseudo", - " │ │ ├─TableReader 9990.00 root data:Selection", - " │ │ │ └─Selection 9990.00 cop[tikv] not(isnull(test.t1.a))", - " │ │ │ └─TableFullScan 10000.00 cop[tikv] table:t1, partition:p2 keep order:false, stats:pseudo", - " │ │ └─TableReader 9990.00 root data:Selection", - " │ │ └─Selection 9990.00 cop[tikv] not(isnull(test.t1.a))", - " │ │ └─TableFullScan 10000.00 cop[tikv] table:t1, partition:p3 keep order:false, stats:pseudo", - " │ └─HashJoin(Probe) 37425.04 root inner join, equal:[eq(test.t.a, test.t4.a)]", - " │ ├─PartitionUnion(Build) 29940.03 root ", - " │ │ ├─TableReader 9980.01 root data:Selection", - " │ │ │ └─Selection 9980.01 cop[tikv] not(isnull(test.t.a)), not(isnull(test.t.b))", - " │ │ │ └─TableFullScan 10000.00 cop[tikv] table:t, partition:p0 keep order:false, stats:pseudo", - " │ │ ├─TableReader 9980.01 root data:Selection", - " │ │ │ └─Selection 9980.01 cop[tikv] not(isnull(test.t.a)), not(isnull(test.t.b))", - " │ │ │ └─TableFullScan 10000.00 cop[tikv] table:t, partition:p1 keep order:false, stats:pseudo", - " │ │ └─TableReader 9980.01 root data:Selection", - " │ │ └─Selection 9980.01 cop[tikv] not(isnull(test.t.a)), not(isnull(test.t.b))", - " │ │ └─TableFullScan 10000.00 cop[tikv] table:t, partition:p2 keep order:false, stats:pseudo", - " │ └─PartitionUnion(Probe) 39960.00 root ", - " │ ├─TableReader 9990.00 root data:Selection", - " │ │ └─Selection 9990.00 cop[tikv] not(isnull(test.t4.a))", - " │ │ └─TableFullScan 10000.00 cop[tikv] table:t4, partition:p0 keep order:false, stats:pseudo", - " │ ├─TableReader 9990.00 root data:Selection", - " │ │ └─Selection 9990.00 cop[tikv] not(isnull(test.t4.a))", - " │ │ └─TableFullScan 10000.00 cop[tikv] table:t4, partition:p1 keep order:false, stats:pseudo", - " │ ├─TableReader 9990.00 root data:Selection", - " │ │ └─Selection 9990.00 cop[tikv] not(isnull(test.t4.a))", - " │ │ └─TableFullScan 10000.00 cop[tikv] table:t4, partition:p2 keep order:false, stats:pseudo", - " │ └─TableReader 9990.00 root data:Selection", - " │ └─Selection 9990.00 cop[tikv] not(isnull(test.t4.a))", - " │ └─TableFullScan 10000.00 cop[tikv] table:t4, partition:p3 keep order:false, stats:pseudo", - " └─PartitionUnion(Probe) 49950.00 root ", - " ├─TableReader 9990.00 root data:Selection", - " │ └─Selection 9990.00 cop[tikv] not(isnull(test.t2.b))", - " │ └─TableFullScan 10000.00 cop[tikv] table:t2, partition:p0 keep order:false, stats:pseudo", - " ├─TableReader 9990.00 root data:Selection", - " │ └─Selection 9990.00 cop[tikv] not(isnull(test.t2.b))", - " │ └─TableFullScan 10000.00 cop[tikv] table:t2, partition:p1 keep order:false, stats:pseudo", - " ├─TableReader 9990.00 root data:Selection", - " │ └─Selection 9990.00 cop[tikv] not(isnull(test.t2.b))", - " │ └─TableFullScan 10000.00 cop[tikv] table:t2, partition:p2 keep order:false, stats:pseudo", - " ├─TableReader 9990.00 root data:Selection", - " │ └─Selection 9990.00 cop[tikv] not(isnull(test.t2.b))", - " │ └─TableFullScan 10000.00 cop[tikv] table:t2, partition:p3 keep order:false, stats:pseudo", - " └─TableReader 9990.00 root data:Selection", - " └─Selection 9990.00 cop[tikv] not(isnull(test.t2.b))", - " └─TableFullScan 10000.00 cop[tikv] table:t2, partition:p4 keep order:false, stats:pseudo" + " ├─PartitionUnion(Build) 49950.00 root ", + " │ ├─TableReader 9990.00 root data:Selection", + " │ │ └─Selection 9990.00 cop[tikv] not(isnull(test.t2.b))", + " │ │ └─TableFullScan 10000.00 cop[tikv] table:t2, partition:p0 keep order:false, stats:pseudo", + " │ ├─TableReader 9990.00 root data:Selection", + " │ │ └─Selection 9990.00 cop[tikv] not(isnull(test.t2.b))", + " │ │ └─TableFullScan 10000.00 cop[tikv] table:t2, partition:p1 keep order:false, stats:pseudo", + " │ ├─TableReader 9990.00 root data:Selection", + " │ │ └─Selection 9990.00 cop[tikv] not(isnull(test.t2.b))", + " │ │ └─TableFullScan 10000.00 cop[tikv] table:t2, partition:p2 keep order:false, stats:pseudo", + " │ ├─TableReader 9990.00 root data:Selection", + " │ │ └─Selection 9990.00 cop[tikv] not(isnull(test.t2.b))", + " │ │ └─TableFullScan 10000.00 cop[tikv] table:t2, partition:p3 keep order:false, stats:pseudo", + " │ └─TableReader 9990.00 root data:Selection", + " │ └─Selection 9990.00 cop[tikv] not(isnull(test.t2.b))", + " │ └─TableFullScan 10000.00 cop[tikv] table:t2, partition:p4 keep order:false, stats:pseudo", + " └─HashJoin(Probe) 46781.30 root left outer join, equal:[eq(test.t.a, test.t1.a)]", + " ├─HashJoin(Build) 37425.04 root inner join, equal:[eq(test.t.a, test.t4.a)]", + " │ ├─PartitionUnion(Build) 29940.03 root ", + " │ │ ├─TableReader 9980.01 root data:Selection", + " │ │ │ └─Selection 9980.01 cop[tikv] not(isnull(test.t.a)), not(isnull(test.t.b))", + " │ │ │ └─TableFullScan 10000.00 cop[tikv] table:t, partition:p0 keep order:false, stats:pseudo", + " │ │ ├─TableReader 9980.01 root data:Selection", + " │ │ │ └─Selection 9980.01 cop[tikv] not(isnull(test.t.a)), not(isnull(test.t.b))", + " │ │ │ └─TableFullScan 10000.00 cop[tikv] table:t, partition:p1 keep order:false, stats:pseudo", + " │ │ └─TableReader 9980.01 root data:Selection", + " │ │ └─Selection 9980.01 cop[tikv] not(isnull(test.t.a)), not(isnull(test.t.b))", + " │ │ └─TableFullScan 10000.00 cop[tikv] table:t, partition:p2 keep order:false, stats:pseudo", + " │ └─PartitionUnion(Probe) 39960.00 root ", + " │ ├─TableReader 9990.00 root data:Selection", + " │ │ └─Selection 9990.00 cop[tikv] not(isnull(test.t4.a))", + " │ │ └─TableFullScan 10000.00 cop[tikv] table:t4, partition:p0 keep order:false, stats:pseudo", + " │ ├─TableReader 9990.00 root data:Selection", + " │ │ └─Selection 9990.00 cop[tikv] not(isnull(test.t4.a))", + " │ │ └─TableFullScan 10000.00 cop[tikv] table:t4, partition:p1 keep order:false, stats:pseudo", + " │ ├─TableReader 9990.00 root data:Selection", + " │ │ └─Selection 9990.00 cop[tikv] not(isnull(test.t4.a))", + " │ │ └─TableFullScan 10000.00 cop[tikv] table:t4, partition:p2 keep order:false, stats:pseudo", + " │ └─TableReader 9990.00 root data:Selection", + " │ └─Selection 9990.00 cop[tikv] not(isnull(test.t4.a))", + " │ └─TableFullScan 10000.00 cop[tikv] table:t4, partition:p3 keep order:false, stats:pseudo", + " └─PartitionUnion(Probe) 39960.00 root ", + " ├─TableReader 9990.00 root data:Selection", + " │ └─Selection 9990.00 cop[tikv] not(isnull(test.t1.a))", + " │ └─TableFullScan 10000.00 cop[tikv] table:t1, partition:p0 keep order:false, stats:pseudo", + " ├─TableReader 9990.00 root data:Selection", + " │ └─Selection 9990.00 cop[tikv] not(isnull(test.t1.a))", + " │ └─TableFullScan 10000.00 cop[tikv] table:t1, partition:p1 keep order:false, stats:pseudo", + " ├─TableReader 9990.00 root data:Selection", + " │ └─Selection 9990.00 cop[tikv] not(isnull(test.t1.a))", + " │ └─TableFullScan 10000.00 cop[tikv] table:t1, partition:p2 keep order:false, stats:pseudo", + " └─TableReader 9990.00 root data:Selection", + " └─Selection 9990.00 cop[tikv] not(isnull(test.t1.a))", + " └─TableFullScan 10000.00 cop[tikv] table:t1, partition:p3 keep order:false, stats:pseudo" ], "Warning": [ "Warning 1815 leading hint is inapplicable, check if the leading hint table is valid" @@ -2833,60 +2833,60 @@ " │ └─Selection 9990.00 cop[tikv] not(isnull(test.t3.b))", " │ └─TableFullScan 10000.00 cop[tikv] table:t3, partition:p2 keep order:false, stats:pseudo", " └─HashJoin(Probe) 58476.62 root inner join, equal:[eq(test.t.b, test.t2.b)]", - " ├─HashJoin(Build) 46781.30 root left outer join, equal:[eq(test.t.a, test.t1.a)]", - " │ ├─PartitionUnion(Build) 39960.00 root ", - " │ │ ├─TableReader 9990.00 root data:Selection", - " │ │ │ └─Selection 9990.00 cop[tikv] not(isnull(test.t1.a))", - " │ │ │ └─TableFullScan 10000.00 cop[tikv] table:t1, partition:p0 keep order:false, stats:pseudo", - " │ │ ├─TableReader 9990.00 root data:Selection", - " │ │ │ └─Selection 9990.00 cop[tikv] not(isnull(test.t1.a))", - " │ │ │ └─TableFullScan 10000.00 cop[tikv] table:t1, partition:p1 keep order:false, stats:pseudo", - " │ │ ├─TableReader 9990.00 root data:Selection", - " │ │ │ └─Selection 9990.00 cop[tikv] not(isnull(test.t1.a))", - " │ │ │ └─TableFullScan 10000.00 cop[tikv] table:t1, partition:p2 keep order:false, stats:pseudo", - " │ │ └─TableReader 9990.00 root data:Selection", - " │ │ └─Selection 9990.00 cop[tikv] not(isnull(test.t1.a))", - " │ │ └─TableFullScan 10000.00 cop[tikv] table:t1, partition:p3 keep order:false, stats:pseudo", - " │ └─HashJoin(Probe) 37425.04 root inner join, equal:[eq(test.t.a, test.t4.a)]", - " │ ├─PartitionUnion(Build) 29940.03 root ", - " │ │ ├─TableReader 9980.01 root data:Selection", - " │ │ │ └─Selection 9980.01 cop[tikv] not(isnull(test.t.a)), not(isnull(test.t.b))", - " │ │ │ └─TableFullScan 10000.00 cop[tikv] table:t, partition:p0 keep order:false, stats:pseudo", - " │ │ ├─TableReader 9980.01 root data:Selection", - " │ │ │ └─Selection 9980.01 cop[tikv] not(isnull(test.t.a)), not(isnull(test.t.b))", - " │ │ │ └─TableFullScan 10000.00 cop[tikv] table:t, partition:p1 keep order:false, stats:pseudo", - " │ │ └─TableReader 9980.01 root data:Selection", - " │ │ └─Selection 9980.01 cop[tikv] not(isnull(test.t.a)), not(isnull(test.t.b))", - " │ │ └─TableFullScan 10000.00 cop[tikv] table:t, partition:p2 keep order:false, stats:pseudo", - " │ └─PartitionUnion(Probe) 39960.00 root ", - " │ ├─TableReader 9990.00 root data:Selection", - " │ │ └─Selection 9990.00 cop[tikv] not(isnull(test.t4.a))", - " │ │ └─TableFullScan 10000.00 cop[tikv] table:t4, partition:p0 keep order:false, stats:pseudo", - " │ ├─TableReader 9990.00 root data:Selection", - " │ │ └─Selection 9990.00 cop[tikv] not(isnull(test.t4.a))", - " │ │ └─TableFullScan 10000.00 cop[tikv] table:t4, partition:p1 keep order:false, stats:pseudo", - " │ ├─TableReader 9990.00 root data:Selection", - " │ │ └─Selection 9990.00 cop[tikv] not(isnull(test.t4.a))", - " │ │ └─TableFullScan 10000.00 cop[tikv] table:t4, partition:p2 keep order:false, stats:pseudo", - " │ └─TableReader 9990.00 root data:Selection", - " │ └─Selection 9990.00 cop[tikv] not(isnull(test.t4.a))", - " │ └─TableFullScan 10000.00 cop[tikv] table:t4, partition:p3 keep order:false, stats:pseudo", - " └─PartitionUnion(Probe) 49950.00 root ", - " ├─TableReader 9990.00 root data:Selection", - " │ └─Selection 9990.00 cop[tikv] not(isnull(test.t2.b))", - " │ └─TableFullScan 10000.00 cop[tikv] table:t2, partition:p0 keep order:false, stats:pseudo", - " ├─TableReader 9990.00 root data:Selection", - " │ └─Selection 9990.00 cop[tikv] not(isnull(test.t2.b))", - " │ └─TableFullScan 10000.00 cop[tikv] table:t2, partition:p1 keep order:false, stats:pseudo", - " ├─TableReader 9990.00 root data:Selection", - " │ └─Selection 9990.00 cop[tikv] not(isnull(test.t2.b))", - " │ └─TableFullScan 10000.00 cop[tikv] table:t2, partition:p2 keep order:false, stats:pseudo", - " ├─TableReader 9990.00 root data:Selection", - " │ └─Selection 9990.00 cop[tikv] not(isnull(test.t2.b))", - " │ └─TableFullScan 10000.00 cop[tikv] table:t2, partition:p3 keep order:false, stats:pseudo", - " └─TableReader 9990.00 root data:Selection", - " └─Selection 9990.00 cop[tikv] not(isnull(test.t2.b))", - " └─TableFullScan 10000.00 cop[tikv] table:t2, partition:p4 keep order:false, stats:pseudo" + " ├─PartitionUnion(Build) 49950.00 root ", + " │ ├─TableReader 9990.00 root data:Selection", + " │ │ └─Selection 9990.00 cop[tikv] not(isnull(test.t2.b))", + " │ │ └─TableFullScan 10000.00 cop[tikv] table:t2, partition:p0 keep order:false, stats:pseudo", + " │ ├─TableReader 9990.00 root data:Selection", + " │ │ └─Selection 9990.00 cop[tikv] not(isnull(test.t2.b))", + " │ │ └─TableFullScan 10000.00 cop[tikv] table:t2, partition:p1 keep order:false, stats:pseudo", + " │ ├─TableReader 9990.00 root data:Selection", + " │ │ └─Selection 9990.00 cop[tikv] not(isnull(test.t2.b))", + " │ │ └─TableFullScan 10000.00 cop[tikv] table:t2, partition:p2 keep order:false, stats:pseudo", + " │ ├─TableReader 9990.00 root data:Selection", + " │ │ └─Selection 9990.00 cop[tikv] not(isnull(test.t2.b))", + " │ │ └─TableFullScan 10000.00 cop[tikv] table:t2, partition:p3 keep order:false, stats:pseudo", + " │ └─TableReader 9990.00 root data:Selection", + " │ └─Selection 9990.00 cop[tikv] not(isnull(test.t2.b))", + " │ └─TableFullScan 10000.00 cop[tikv] table:t2, partition:p4 keep order:false, stats:pseudo", + " └─HashJoin(Probe) 46781.30 root left outer join, equal:[eq(test.t.a, test.t1.a)]", + " ├─HashJoin(Build) 37425.04 root inner join, equal:[eq(test.t.a, test.t4.a)]", + " │ ├─PartitionUnion(Build) 29940.03 root ", + " │ │ ├─TableReader 9980.01 root data:Selection", + " │ │ │ └─Selection 9980.01 cop[tikv] not(isnull(test.t.a)), not(isnull(test.t.b))", + " │ │ │ └─TableFullScan 10000.00 cop[tikv] table:t, partition:p0 keep order:false, stats:pseudo", + " │ │ ├─TableReader 9980.01 root data:Selection", + " │ │ │ └─Selection 9980.01 cop[tikv] not(isnull(test.t.a)), not(isnull(test.t.b))", + " │ │ │ └─TableFullScan 10000.00 cop[tikv] table:t, partition:p1 keep order:false, stats:pseudo", + " │ │ └─TableReader 9980.01 root data:Selection", + " │ │ └─Selection 9980.01 cop[tikv] not(isnull(test.t.a)), not(isnull(test.t.b))", + " │ │ └─TableFullScan 10000.00 cop[tikv] table:t, partition:p2 keep order:false, stats:pseudo", + " │ └─PartitionUnion(Probe) 39960.00 root ", + " │ ├─TableReader 9990.00 root data:Selection", + " │ │ └─Selection 9990.00 cop[tikv] not(isnull(test.t4.a))", + " │ │ └─TableFullScan 10000.00 cop[tikv] table:t4, partition:p0 keep order:false, stats:pseudo", + " │ ├─TableReader 9990.00 root data:Selection", + " │ │ └─Selection 9990.00 cop[tikv] not(isnull(test.t4.a))", + " │ │ └─TableFullScan 10000.00 cop[tikv] table:t4, partition:p1 keep order:false, stats:pseudo", + " │ ├─TableReader 9990.00 root data:Selection", + " │ │ └─Selection 9990.00 cop[tikv] not(isnull(test.t4.a))", + " │ │ └─TableFullScan 10000.00 cop[tikv] table:t4, partition:p2 keep order:false, stats:pseudo", + " │ └─TableReader 9990.00 root data:Selection", + " │ └─Selection 9990.00 cop[tikv] not(isnull(test.t4.a))", + " │ └─TableFullScan 10000.00 cop[tikv] table:t4, partition:p3 keep order:false, stats:pseudo", + " └─PartitionUnion(Probe) 39960.00 root ", + " ├─TableReader 9990.00 root data:Selection", + " │ └─Selection 9990.00 cop[tikv] not(isnull(test.t1.a))", + " │ └─TableFullScan 10000.00 cop[tikv] table:t1, partition:p0 keep order:false, stats:pseudo", + " ├─TableReader 9990.00 root data:Selection", + " │ └─Selection 9990.00 cop[tikv] not(isnull(test.t1.a))", + " │ └─TableFullScan 10000.00 cop[tikv] table:t1, partition:p1 keep order:false, stats:pseudo", + " ├─TableReader 9990.00 root data:Selection", + " │ └─Selection 9990.00 cop[tikv] not(isnull(test.t1.a))", + " │ └─TableFullScan 10000.00 cop[tikv] table:t1, partition:p2 keep order:false, stats:pseudo", + " └─TableReader 9990.00 root data:Selection", + " └─Selection 9990.00 cop[tikv] not(isnull(test.t1.a))", + " └─TableFullScan 10000.00 cop[tikv] table:t1, partition:p3 keep order:false, stats:pseudo" ], "Warning": [ "Warning 1815 leading hint is inapplicable, check if the leading hint table is valid" @@ -2985,56 +2985,56 @@ "SQL": "select /*+ leading(t2, t3) */ * from t2 left join (t1 join t3 on t1.a=t3.a join t4 on t3.b = t4.b) on t2.b=t1.b;", "Plan": [ "HashJoin 58476.62 root left outer join, equal:[eq(test.t2.b, test.t1.b)]", - "├─Projection(Build) 46781.30 root test.t1.a, test.t1.b, test.t3.a, test.t3.b, test.t4.a, test.t4.b", - "│ └─HashJoin 46781.30 root inner join, equal:[eq(test.t3.b, test.t4.b)]", - "│ ├─HashJoin(Build) 37425.04 root inner join, equal:[eq(test.t3.a, test.t1.a)]", - "│ │ ├─PartitionUnion(Build) 29940.03 root ", - "│ │ │ ├─TableReader 9980.01 root data:Selection", - "│ │ │ │ └─Selection 9980.01 cop[tikv] not(isnull(test.t3.a)), not(isnull(test.t3.b))", - "│ │ │ │ └─TableFullScan 10000.00 cop[tikv] table:t3, partition:p0 keep order:false, stats:pseudo", - "│ │ │ ├─TableReader 9980.01 root data:Selection", - "│ │ │ │ └─Selection 9980.01 cop[tikv] not(isnull(test.t3.a)), not(isnull(test.t3.b))", - "│ │ │ │ └─TableFullScan 10000.00 cop[tikv] table:t3, partition:p1 keep order:false, stats:pseudo", - "│ │ │ └─TableReader 9980.01 root data:Selection", - "│ │ │ └─Selection 9980.01 cop[tikv] not(isnull(test.t3.a)), not(isnull(test.t3.b))", - "│ │ │ └─TableFullScan 10000.00 cop[tikv] table:t3, partition:p2 keep order:false, stats:pseudo", - "│ │ └─PartitionUnion(Probe) 39920.04 root ", - "│ │ ├─TableReader 9980.01 root data:Selection", - "│ │ │ └─Selection 9980.01 cop[tikv] not(isnull(test.t1.a)), not(isnull(test.t1.b))", - "│ │ │ └─TableFullScan 10000.00 cop[tikv] table:t1, partition:p0 keep order:false, stats:pseudo", - "│ │ ├─TableReader 9980.01 root data:Selection", - "│ │ │ └─Selection 9980.01 cop[tikv] not(isnull(test.t1.a)), not(isnull(test.t1.b))", - "│ │ │ └─TableFullScan 10000.00 cop[tikv] table:t1, partition:p1 keep order:false, stats:pseudo", - "│ │ ├─TableReader 9980.01 root data:Selection", - "│ │ │ └─Selection 9980.01 cop[tikv] not(isnull(test.t1.a)), not(isnull(test.t1.b))", - "│ │ │ └─TableFullScan 10000.00 cop[tikv] table:t1, partition:p2 keep order:false, stats:pseudo", - "│ │ └─TableReader 9980.01 root data:Selection", - "│ │ └─Selection 9980.01 cop[tikv] not(isnull(test.t1.a)), not(isnull(test.t1.b))", - "│ │ └─TableFullScan 10000.00 cop[tikv] table:t1, partition:p3 keep order:false, stats:pseudo", - "│ └─PartitionUnion(Probe) 39960.00 root ", - "│ ├─TableReader 9990.00 root data:Selection", - "│ │ └─Selection 9990.00 cop[tikv] not(isnull(test.t4.b))", - "│ │ └─TableFullScan 10000.00 cop[tikv] table:t4, partition:p0 keep order:false, stats:pseudo", - "│ ├─TableReader 9990.00 root data:Selection", - "│ │ └─Selection 9990.00 cop[tikv] not(isnull(test.t4.b))", - "│ │ └─TableFullScan 10000.00 cop[tikv] table:t4, partition:p1 keep order:false, stats:pseudo", - "│ ├─TableReader 9990.00 root data:Selection", - "│ │ └─Selection 9990.00 cop[tikv] not(isnull(test.t4.b))", - "│ │ └─TableFullScan 10000.00 cop[tikv] table:t4, partition:p2 keep order:false, stats:pseudo", - "│ └─TableReader 9990.00 root data:Selection", - "│ └─Selection 9990.00 cop[tikv] not(isnull(test.t4.b))", - "│ └─TableFullScan 10000.00 cop[tikv] table:t4, partition:p3 keep order:false, stats:pseudo", - "└─PartitionUnion(Probe) 50000.00 root ", - " ├─TableReader 10000.00 root data:TableFullScan", - " │ └─TableFullScan 10000.00 cop[tikv] table:t2, partition:p0 keep order:false, stats:pseudo", - " ├─TableReader 10000.00 root data:TableFullScan", - " │ └─TableFullScan 10000.00 cop[tikv] table:t2, partition:p1 keep order:false, stats:pseudo", - " ├─TableReader 10000.00 root data:TableFullScan", - " │ └─TableFullScan 10000.00 cop[tikv] table:t2, partition:p2 keep order:false, stats:pseudo", - " ├─TableReader 10000.00 root data:TableFullScan", - " │ └─TableFullScan 10000.00 cop[tikv] table:t2, partition:p3 keep order:false, stats:pseudo", - " └─TableReader 10000.00 root data:TableFullScan", - " └─TableFullScan 10000.00 cop[tikv] table:t2, partition:p4 keep order:false, stats:pseudo" + "├─PartitionUnion(Build) 50000.00 root ", + "│ ├─TableReader 10000.00 root data:TableFullScan", + "│ │ └─TableFullScan 10000.00 cop[tikv] table:t2, partition:p0 keep order:false, stats:pseudo", + "│ ├─TableReader 10000.00 root data:TableFullScan", + "│ │ └─TableFullScan 10000.00 cop[tikv] table:t2, partition:p1 keep order:false, stats:pseudo", + "│ ├─TableReader 10000.00 root data:TableFullScan", + "│ │ └─TableFullScan 10000.00 cop[tikv] table:t2, partition:p2 keep order:false, stats:pseudo", + "│ ├─TableReader 10000.00 root data:TableFullScan", + "│ │ └─TableFullScan 10000.00 cop[tikv] table:t2, partition:p3 keep order:false, stats:pseudo", + "│ └─TableReader 10000.00 root data:TableFullScan", + "│ └─TableFullScan 10000.00 cop[tikv] table:t2, partition:p4 keep order:false, stats:pseudo", + "└─Projection(Probe) 46781.30 root test.t1.a, test.t1.b, test.t3.a, test.t3.b, test.t4.a, test.t4.b", + " └─HashJoin 46781.30 root inner join, equal:[eq(test.t3.b, test.t4.b)]", + " ├─HashJoin(Build) 37425.04 root inner join, equal:[eq(test.t3.a, test.t1.a)]", + " │ ├─PartitionUnion(Build) 29940.03 root ", + " │ │ ├─TableReader 9980.01 root data:Selection", + " │ │ │ └─Selection 9980.01 cop[tikv] not(isnull(test.t3.a)), not(isnull(test.t3.b))", + " │ │ │ └─TableFullScan 10000.00 cop[tikv] table:t3, partition:p0 keep order:false, stats:pseudo", + " │ │ ├─TableReader 9980.01 root data:Selection", + " │ │ │ └─Selection 9980.01 cop[tikv] not(isnull(test.t3.a)), not(isnull(test.t3.b))", + " │ │ │ └─TableFullScan 10000.00 cop[tikv] table:t3, partition:p1 keep order:false, stats:pseudo", + " │ │ └─TableReader 9980.01 root data:Selection", + " │ │ └─Selection 9980.01 cop[tikv] not(isnull(test.t3.a)), not(isnull(test.t3.b))", + " │ │ └─TableFullScan 10000.00 cop[tikv] table:t3, partition:p2 keep order:false, stats:pseudo", + " │ └─PartitionUnion(Probe) 39920.04 root ", + " │ ├─TableReader 9980.01 root data:Selection", + " │ │ └─Selection 9980.01 cop[tikv] not(isnull(test.t1.a)), not(isnull(test.t1.b))", + " │ │ └─TableFullScan 10000.00 cop[tikv] table:t1, partition:p0 keep order:false, stats:pseudo", + " │ ├─TableReader 9980.01 root data:Selection", + " │ │ └─Selection 9980.01 cop[tikv] not(isnull(test.t1.a)), not(isnull(test.t1.b))", + " │ │ └─TableFullScan 10000.00 cop[tikv] table:t1, partition:p1 keep order:false, stats:pseudo", + " │ ├─TableReader 9980.01 root data:Selection", + " │ │ └─Selection 9980.01 cop[tikv] not(isnull(test.t1.a)), not(isnull(test.t1.b))", + " │ │ └─TableFullScan 10000.00 cop[tikv] table:t1, partition:p2 keep order:false, stats:pseudo", + " │ └─TableReader 9980.01 root data:Selection", + " │ └─Selection 9980.01 cop[tikv] not(isnull(test.t1.a)), not(isnull(test.t1.b))", + " │ └─TableFullScan 10000.00 cop[tikv] table:t1, partition:p3 keep order:false, stats:pseudo", + " └─PartitionUnion(Probe) 39960.00 root ", + " ├─TableReader 9990.00 root data:Selection", + " │ └─Selection 9990.00 cop[tikv] not(isnull(test.t4.b))", + " │ └─TableFullScan 10000.00 cop[tikv] table:t4, partition:p0 keep order:false, stats:pseudo", + " ├─TableReader 9990.00 root data:Selection", + " │ └─Selection 9990.00 cop[tikv] not(isnull(test.t4.b))", + " │ └─TableFullScan 10000.00 cop[tikv] table:t4, partition:p1 keep order:false, stats:pseudo", + " ├─TableReader 9990.00 root data:Selection", + " │ └─Selection 9990.00 cop[tikv] not(isnull(test.t4.b))", + " │ └─TableFullScan 10000.00 cop[tikv] table:t4, partition:p2 keep order:false, stats:pseudo", + " └─TableReader 9990.00 root data:Selection", + " └─Selection 9990.00 cop[tikv] not(isnull(test.t4.b))", + " └─TableFullScan 10000.00 cop[tikv] table:t4, partition:p3 keep order:false, stats:pseudo" ], "Warning": [ "Warning 1815 leading hint is inapplicable, check if the leading hint table is valid", @@ -3045,56 +3045,56 @@ "SQL": "select /*+ leading(t3, t4) */ * from t2 left join (t1 join t3 on t1.a=t3.a join t4 on t3.b = t4.b) on t2.b=t1.b;", "Plan": [ "HashJoin 58476.62 root left outer join, equal:[eq(test.t2.b, test.t1.b)]", - "├─Projection(Build) 46781.30 root test.t1.a, test.t1.b, test.t3.a, test.t3.b, test.t4.a, test.t4.b", - "│ └─HashJoin 46781.30 root inner join, equal:[eq(test.t3.b, test.t4.b)]", - "│ ├─HashJoin(Build) 37425.04 root inner join, equal:[eq(test.t3.a, test.t1.a)]", - "│ │ ├─PartitionUnion(Build) 29940.03 root ", - "│ │ │ ├─TableReader 9980.01 root data:Selection", - "│ │ │ │ └─Selection 9980.01 cop[tikv] not(isnull(test.t3.a)), not(isnull(test.t3.b))", - "│ │ │ │ └─TableFullScan 10000.00 cop[tikv] table:t3, partition:p0 keep order:false, stats:pseudo", - "│ │ │ ├─TableReader 9980.01 root data:Selection", - "│ │ │ │ └─Selection 9980.01 cop[tikv] not(isnull(test.t3.a)), not(isnull(test.t3.b))", - "│ │ │ │ └─TableFullScan 10000.00 cop[tikv] table:t3, partition:p1 keep order:false, stats:pseudo", - "│ │ │ └─TableReader 9980.01 root data:Selection", - "│ │ │ └─Selection 9980.01 cop[tikv] not(isnull(test.t3.a)), not(isnull(test.t3.b))", - "│ │ │ └─TableFullScan 10000.00 cop[tikv] table:t3, partition:p2 keep order:false, stats:pseudo", - "│ │ └─PartitionUnion(Probe) 39920.04 root ", - "│ │ ├─TableReader 9980.01 root data:Selection", - "│ │ │ └─Selection 9980.01 cop[tikv] not(isnull(test.t1.a)), not(isnull(test.t1.b))", - "│ │ │ └─TableFullScan 10000.00 cop[tikv] table:t1, partition:p0 keep order:false, stats:pseudo", - "│ │ ├─TableReader 9980.01 root data:Selection", - "│ │ │ └─Selection 9980.01 cop[tikv] not(isnull(test.t1.a)), not(isnull(test.t1.b))", - "│ │ │ └─TableFullScan 10000.00 cop[tikv] table:t1, partition:p1 keep order:false, stats:pseudo", - "│ │ ├─TableReader 9980.01 root data:Selection", - "│ │ │ └─Selection 9980.01 cop[tikv] not(isnull(test.t1.a)), not(isnull(test.t1.b))", - "│ │ │ └─TableFullScan 10000.00 cop[tikv] table:t1, partition:p2 keep order:false, stats:pseudo", - "│ │ └─TableReader 9980.01 root data:Selection", - "│ │ └─Selection 9980.01 cop[tikv] not(isnull(test.t1.a)), not(isnull(test.t1.b))", - "│ │ └─TableFullScan 10000.00 cop[tikv] table:t1, partition:p3 keep order:false, stats:pseudo", - "│ └─PartitionUnion(Probe) 39960.00 root ", - "│ ├─TableReader 9990.00 root data:Selection", - "│ │ └─Selection 9990.00 cop[tikv] not(isnull(test.t4.b))", - "│ │ └─TableFullScan 10000.00 cop[tikv] table:t4, partition:p0 keep order:false, stats:pseudo", - "│ ├─TableReader 9990.00 root data:Selection", - "│ │ └─Selection 9990.00 cop[tikv] not(isnull(test.t4.b))", - "│ │ └─TableFullScan 10000.00 cop[tikv] table:t4, partition:p1 keep order:false, stats:pseudo", - "│ ├─TableReader 9990.00 root data:Selection", - "│ │ └─Selection 9990.00 cop[tikv] not(isnull(test.t4.b))", - "│ │ └─TableFullScan 10000.00 cop[tikv] table:t4, partition:p2 keep order:false, stats:pseudo", - "│ └─TableReader 9990.00 root data:Selection", - "│ └─Selection 9990.00 cop[tikv] not(isnull(test.t4.b))", - "│ └─TableFullScan 10000.00 cop[tikv] table:t4, partition:p3 keep order:false, stats:pseudo", - "└─PartitionUnion(Probe) 50000.00 root ", - " ├─TableReader 10000.00 root data:TableFullScan", - " │ └─TableFullScan 10000.00 cop[tikv] table:t2, partition:p0 keep order:false, stats:pseudo", - " ├─TableReader 10000.00 root data:TableFullScan", - " │ └─TableFullScan 10000.00 cop[tikv] table:t2, partition:p1 keep order:false, stats:pseudo", - " ├─TableReader 10000.00 root data:TableFullScan", - " │ └─TableFullScan 10000.00 cop[tikv] table:t2, partition:p2 keep order:false, stats:pseudo", - " ├─TableReader 10000.00 root data:TableFullScan", - " │ └─TableFullScan 10000.00 cop[tikv] table:t2, partition:p3 keep order:false, stats:pseudo", - " └─TableReader 10000.00 root data:TableFullScan", - " └─TableFullScan 10000.00 cop[tikv] table:t2, partition:p4 keep order:false, stats:pseudo" + "├─PartitionUnion(Build) 50000.00 root ", + "│ ├─TableReader 10000.00 root data:TableFullScan", + "│ │ └─TableFullScan 10000.00 cop[tikv] table:t2, partition:p0 keep order:false, stats:pseudo", + "│ ├─TableReader 10000.00 root data:TableFullScan", + "│ │ └─TableFullScan 10000.00 cop[tikv] table:t2, partition:p1 keep order:false, stats:pseudo", + "│ ├─TableReader 10000.00 root data:TableFullScan", + "│ │ └─TableFullScan 10000.00 cop[tikv] table:t2, partition:p2 keep order:false, stats:pseudo", + "│ ├─TableReader 10000.00 root data:TableFullScan", + "│ │ └─TableFullScan 10000.00 cop[tikv] table:t2, partition:p3 keep order:false, stats:pseudo", + "│ └─TableReader 10000.00 root data:TableFullScan", + "│ └─TableFullScan 10000.00 cop[tikv] table:t2, partition:p4 keep order:false, stats:pseudo", + "└─Projection(Probe) 46781.30 root test.t1.a, test.t1.b, test.t3.a, test.t3.b, test.t4.a, test.t4.b", + " └─HashJoin 46781.30 root inner join, equal:[eq(test.t3.b, test.t4.b)]", + " ├─HashJoin(Build) 37425.04 root inner join, equal:[eq(test.t3.a, test.t1.a)]", + " │ ├─PartitionUnion(Build) 29940.03 root ", + " │ │ ├─TableReader 9980.01 root data:Selection", + " │ │ │ └─Selection 9980.01 cop[tikv] not(isnull(test.t3.a)), not(isnull(test.t3.b))", + " │ │ │ └─TableFullScan 10000.00 cop[tikv] table:t3, partition:p0 keep order:false, stats:pseudo", + " │ │ ├─TableReader 9980.01 root data:Selection", + " │ │ │ └─Selection 9980.01 cop[tikv] not(isnull(test.t3.a)), not(isnull(test.t3.b))", + " │ │ │ └─TableFullScan 10000.00 cop[tikv] table:t3, partition:p1 keep order:false, stats:pseudo", + " │ │ └─TableReader 9980.01 root data:Selection", + " │ │ └─Selection 9980.01 cop[tikv] not(isnull(test.t3.a)), not(isnull(test.t3.b))", + " │ │ └─TableFullScan 10000.00 cop[tikv] table:t3, partition:p2 keep order:false, stats:pseudo", + " │ └─PartitionUnion(Probe) 39920.04 root ", + " │ ├─TableReader 9980.01 root data:Selection", + " │ │ └─Selection 9980.01 cop[tikv] not(isnull(test.t1.a)), not(isnull(test.t1.b))", + " │ │ └─TableFullScan 10000.00 cop[tikv] table:t1, partition:p0 keep order:false, stats:pseudo", + " │ ├─TableReader 9980.01 root data:Selection", + " │ │ └─Selection 9980.01 cop[tikv] not(isnull(test.t1.a)), not(isnull(test.t1.b))", + " │ │ └─TableFullScan 10000.00 cop[tikv] table:t1, partition:p1 keep order:false, stats:pseudo", + " │ ├─TableReader 9980.01 root data:Selection", + " │ │ └─Selection 9980.01 cop[tikv] not(isnull(test.t1.a)), not(isnull(test.t1.b))", + " │ │ └─TableFullScan 10000.00 cop[tikv] table:t1, partition:p2 keep order:false, stats:pseudo", + " │ └─TableReader 9980.01 root data:Selection", + " │ └─Selection 9980.01 cop[tikv] not(isnull(test.t1.a)), not(isnull(test.t1.b))", + " │ └─TableFullScan 10000.00 cop[tikv] table:t1, partition:p3 keep order:false, stats:pseudo", + " └─PartitionUnion(Probe) 39960.00 root ", + " ├─TableReader 9990.00 root data:Selection", + " │ └─Selection 9990.00 cop[tikv] not(isnull(test.t4.b))", + " │ └─TableFullScan 10000.00 cop[tikv] table:t4, partition:p0 keep order:false, stats:pseudo", + " ├─TableReader 9990.00 root data:Selection", + " │ └─Selection 9990.00 cop[tikv] not(isnull(test.t4.b))", + " │ └─TableFullScan 10000.00 cop[tikv] table:t4, partition:p1 keep order:false, stats:pseudo", + " ├─TableReader 9990.00 root data:Selection", + " │ └─Selection 9990.00 cop[tikv] not(isnull(test.t4.b))", + " │ └─TableFullScan 10000.00 cop[tikv] table:t4, partition:p2 keep order:false, stats:pseudo", + " └─TableReader 9990.00 root data:Selection", + " └─Selection 9990.00 cop[tikv] not(isnull(test.t4.b))", + " └─TableFullScan 10000.00 cop[tikv] table:t4, partition:p3 keep order:false, stats:pseudo" ], "Warning": [ "Warning 1815 leading hint is inapplicable, check if the leading hint table is valid" @@ -3859,60 +3859,60 @@ " │ └─Selection 9980.01 cop[tikv] not(isnull(test.t5.a)), not(isnull(test.t5.b))", " │ └─TableFullScan 10000.00 cop[tikv] table:t5, partition:p4 keep order:false, stats:pseudo", " └─HashJoin(Probe) 58476.62 root inner join, equal:[eq(test.t1.b, test.t2.b)]", - " ├─HashJoin(Build) 46781.30 root inner join, equal:[eq(test.t3.b, test.t4.b)]", - " │ ├─HashJoin(Build) 37425.04 root inner join, equal:[eq(test.t3.a, test.t1.a)]", - " │ │ ├─PartitionUnion(Build) 29940.03 root ", - " │ │ │ ├─TableReader 9980.01 root data:Selection", - " │ │ │ │ └─Selection 9980.01 cop[tikv] not(isnull(test.t3.a)), not(isnull(test.t3.b))", - " │ │ │ │ └─TableFullScan 10000.00 cop[tikv] table:t3, partition:p0 keep order:false, stats:pseudo", - " │ │ │ ├─TableReader 9980.01 root data:Selection", - " │ │ │ │ └─Selection 9980.01 cop[tikv] not(isnull(test.t3.a)), not(isnull(test.t3.b))", - " │ │ │ │ └─TableFullScan 10000.00 cop[tikv] table:t3, partition:p1 keep order:false, stats:pseudo", - " │ │ │ └─TableReader 9980.01 root data:Selection", - " │ │ │ └─Selection 9980.01 cop[tikv] not(isnull(test.t3.a)), not(isnull(test.t3.b))", - " │ │ │ └─TableFullScan 10000.00 cop[tikv] table:t3, partition:p2 keep order:false, stats:pseudo", - " │ │ └─PartitionUnion(Probe) 39920.04 root ", - " │ │ ├─TableReader 9980.01 root data:Selection", - " │ │ │ └─Selection 9980.01 cop[tikv] not(isnull(test.t1.a)), not(isnull(test.t1.b))", - " │ │ │ └─TableFullScan 10000.00 cop[tikv] table:t1, partition:p0 keep order:false, stats:pseudo", - " │ │ ├─TableReader 9980.01 root data:Selection", - " │ │ │ └─Selection 9980.01 cop[tikv] not(isnull(test.t1.a)), not(isnull(test.t1.b))", - " │ │ │ └─TableFullScan 10000.00 cop[tikv] table:t1, partition:p1 keep order:false, stats:pseudo", - " │ │ ├─TableReader 9980.01 root data:Selection", - " │ │ │ └─Selection 9980.01 cop[tikv] not(isnull(test.t1.a)), not(isnull(test.t1.b))", - " │ │ │ └─TableFullScan 10000.00 cop[tikv] table:t1, partition:p2 keep order:false, stats:pseudo", - " │ │ └─TableReader 9980.01 root data:Selection", - " │ │ └─Selection 9980.01 cop[tikv] not(isnull(test.t1.a)), not(isnull(test.t1.b))", - " │ │ └─TableFullScan 10000.00 cop[tikv] table:t1, partition:p3 keep order:false, stats:pseudo", - " │ └─PartitionUnion(Probe) 39960.00 root ", - " │ ├─TableReader 9990.00 root data:Selection", - " │ │ └─Selection 9990.00 cop[tikv] not(isnull(test.t4.b))", - " │ │ └─TableFullScan 10000.00 cop[tikv] table:t4, partition:p0 keep order:false, stats:pseudo", - " │ ├─TableReader 9990.00 root data:Selection", - " │ │ └─Selection 9990.00 cop[tikv] not(isnull(test.t4.b))", - " │ │ └─TableFullScan 10000.00 cop[tikv] table:t4, partition:p1 keep order:false, stats:pseudo", - " │ ├─TableReader 9990.00 root data:Selection", - " │ │ └─Selection 9990.00 cop[tikv] not(isnull(test.t4.b))", - " │ │ └─TableFullScan 10000.00 cop[tikv] table:t4, partition:p2 keep order:false, stats:pseudo", - " │ └─TableReader 9990.00 root data:Selection", - " │ └─Selection 9990.00 cop[tikv] not(isnull(test.t4.b))", - " │ └─TableFullScan 10000.00 cop[tikv] table:t4, partition:p3 keep order:false, stats:pseudo", - " └─PartitionUnion(Probe) 49900.05 root ", - " ├─TableReader 9980.01 root data:Selection", - " │ └─Selection 9980.01 cop[tikv] not(isnull(test.t2.a)), not(isnull(test.t2.b))", - " │ └─TableFullScan 10000.00 cop[tikv] table:t2, partition:p0 keep order:false, stats:pseudo", - " ├─TableReader 9980.01 root data:Selection", - " │ └─Selection 9980.01 cop[tikv] not(isnull(test.t2.a)), not(isnull(test.t2.b))", - " │ └─TableFullScan 10000.00 cop[tikv] table:t2, partition:p1 keep order:false, stats:pseudo", - " ├─TableReader 9980.01 root data:Selection", - " │ └─Selection 9980.01 cop[tikv] not(isnull(test.t2.a)), not(isnull(test.t2.b))", - " │ └─TableFullScan 10000.00 cop[tikv] table:t2, partition:p2 keep order:false, stats:pseudo", - " ├─TableReader 9980.01 root data:Selection", - " │ └─Selection 9980.01 cop[tikv] not(isnull(test.t2.a)), not(isnull(test.t2.b))", - " │ └─TableFullScan 10000.00 cop[tikv] table:t2, partition:p3 keep order:false, stats:pseudo", - " └─TableReader 9980.01 root data:Selection", - " └─Selection 9980.01 cop[tikv] not(isnull(test.t2.a)), not(isnull(test.t2.b))", - " └─TableFullScan 10000.00 cop[tikv] table:t2, partition:p4 keep order:false, stats:pseudo" + " ├─PartitionUnion(Build) 49900.05 root ", + " │ ├─TableReader 9980.01 root data:Selection", + " │ │ └─Selection 9980.01 cop[tikv] not(isnull(test.t2.a)), not(isnull(test.t2.b))", + " │ │ └─TableFullScan 10000.00 cop[tikv] table:t2, partition:p0 keep order:false, stats:pseudo", + " │ ├─TableReader 9980.01 root data:Selection", + " │ │ └─Selection 9980.01 cop[tikv] not(isnull(test.t2.a)), not(isnull(test.t2.b))", + " │ │ └─TableFullScan 10000.00 cop[tikv] table:t2, partition:p1 keep order:false, stats:pseudo", + " │ ├─TableReader 9980.01 root data:Selection", + " │ │ └─Selection 9980.01 cop[tikv] not(isnull(test.t2.a)), not(isnull(test.t2.b))", + " │ │ └─TableFullScan 10000.00 cop[tikv] table:t2, partition:p2 keep order:false, stats:pseudo", + " │ ├─TableReader 9980.01 root data:Selection", + " │ │ └─Selection 9980.01 cop[tikv] not(isnull(test.t2.a)), not(isnull(test.t2.b))", + " │ │ └─TableFullScan 10000.00 cop[tikv] table:t2, partition:p3 keep order:false, stats:pseudo", + " │ └─TableReader 9980.01 root data:Selection", + " │ └─Selection 9980.01 cop[tikv] not(isnull(test.t2.a)), not(isnull(test.t2.b))", + " │ └─TableFullScan 10000.00 cop[tikv] table:t2, partition:p4 keep order:false, stats:pseudo", + " └─HashJoin(Probe) 46781.30 root inner join, equal:[eq(test.t3.b, test.t4.b)]", + " ├─HashJoin(Build) 37425.04 root inner join, equal:[eq(test.t3.a, test.t1.a)]", + " │ ├─PartitionUnion(Build) 29940.03 root ", + " │ │ ├─TableReader 9980.01 root data:Selection", + " │ │ │ └─Selection 9980.01 cop[tikv] not(isnull(test.t3.a)), not(isnull(test.t3.b))", + " │ │ │ └─TableFullScan 10000.00 cop[tikv] table:t3, partition:p0 keep order:false, stats:pseudo", + " │ │ ├─TableReader 9980.01 root data:Selection", + " │ │ │ └─Selection 9980.01 cop[tikv] not(isnull(test.t3.a)), not(isnull(test.t3.b))", + " │ │ │ └─TableFullScan 10000.00 cop[tikv] table:t3, partition:p1 keep order:false, stats:pseudo", + " │ │ └─TableReader 9980.01 root data:Selection", + " │ │ └─Selection 9980.01 cop[tikv] not(isnull(test.t3.a)), not(isnull(test.t3.b))", + " │ │ └─TableFullScan 10000.00 cop[tikv] table:t3, partition:p2 keep order:false, stats:pseudo", + " │ └─PartitionUnion(Probe) 39920.04 root ", + " │ ├─TableReader 9980.01 root data:Selection", + " │ │ └─Selection 9980.01 cop[tikv] not(isnull(test.t1.a)), not(isnull(test.t1.b))", + " │ │ └─TableFullScan 10000.00 cop[tikv] table:t1, partition:p0 keep order:false, stats:pseudo", + " │ ├─TableReader 9980.01 root data:Selection", + " │ │ └─Selection 9980.01 cop[tikv] not(isnull(test.t1.a)), not(isnull(test.t1.b))", + " │ │ └─TableFullScan 10000.00 cop[tikv] table:t1, partition:p1 keep order:false, stats:pseudo", + " │ ├─TableReader 9980.01 root data:Selection", + " │ │ └─Selection 9980.01 cop[tikv] not(isnull(test.t1.a)), not(isnull(test.t1.b))", + " │ │ └─TableFullScan 10000.00 cop[tikv] table:t1, partition:p2 keep order:false, stats:pseudo", + " │ └─TableReader 9980.01 root data:Selection", + " │ └─Selection 9980.01 cop[tikv] not(isnull(test.t1.a)), not(isnull(test.t1.b))", + " │ └─TableFullScan 10000.00 cop[tikv] table:t1, partition:p3 keep order:false, stats:pseudo", + " └─PartitionUnion(Probe) 39960.00 root ", + " ├─TableReader 9990.00 root data:Selection", + " │ └─Selection 9990.00 cop[tikv] not(isnull(test.t4.b))", + " │ └─TableFullScan 10000.00 cop[tikv] table:t4, partition:p0 keep order:false, stats:pseudo", + " ├─TableReader 9990.00 root data:Selection", + " │ └─Selection 9990.00 cop[tikv] not(isnull(test.t4.b))", + " │ └─TableFullScan 10000.00 cop[tikv] table:t4, partition:p1 keep order:false, stats:pseudo", + " ├─TableReader 9990.00 root data:Selection", + " │ └─Selection 9990.00 cop[tikv] not(isnull(test.t4.b))", + " │ └─TableFullScan 10000.00 cop[tikv] table:t4, partition:p2 keep order:false, stats:pseudo", + " └─TableReader 9990.00 root data:Selection", + " └─Selection 9990.00 cop[tikv] not(isnull(test.t4.b))", + " └─TableFullScan 10000.00 cop[tikv] table:t4, partition:p3 keep order:false, stats:pseudo" ], "Warning": [ "Warning 1815 leading hint is inapplicable, check if the leading hint table is valid" @@ -3951,60 +3951,60 @@ " │ └─Selection 9980.01 cop[tikv] not(isnull(test.t5.a)), not(isnull(test.t5.b))", " │ └─TableFullScan 10000.00 cop[tikv] table:t5, partition:p4 keep order:false, stats:pseudo", " └─HashJoin(Probe) 58476.62 root inner join, equal:[eq(test.t1.b, test.t2.b)]", - " ├─HashJoin(Build) 46781.30 root inner join, equal:[eq(test.t3.b, test.t4.b)]", - " │ ├─HashJoin(Build) 37425.04 root inner join, equal:[eq(test.t3.a, test.t1.a)]", - " │ │ ├─PartitionUnion(Build) 29940.03 root ", - " │ │ │ ├─TableReader 9980.01 root data:Selection", - " │ │ │ │ └─Selection 9980.01 cop[tikv] not(isnull(test.t3.a)), not(isnull(test.t3.b))", - " │ │ │ │ └─TableFullScan 10000.00 cop[tikv] table:t3, partition:p0 keep order:false, stats:pseudo", - " │ │ │ ├─TableReader 9980.01 root data:Selection", - " │ │ │ │ └─Selection 9980.01 cop[tikv] not(isnull(test.t3.a)), not(isnull(test.t3.b))", - " │ │ │ │ └─TableFullScan 10000.00 cop[tikv] table:t3, partition:p1 keep order:false, stats:pseudo", - " │ │ │ └─TableReader 9980.01 root data:Selection", - " │ │ │ └─Selection 9980.01 cop[tikv] not(isnull(test.t3.a)), not(isnull(test.t3.b))", - " │ │ │ └─TableFullScan 10000.00 cop[tikv] table:t3, partition:p2 keep order:false, stats:pseudo", - " │ │ └─PartitionUnion(Probe) 39920.04 root ", - " │ │ ├─TableReader 9980.01 root data:Selection", - " │ │ │ └─Selection 9980.01 cop[tikv] not(isnull(test.t1.a)), not(isnull(test.t1.b))", - " │ │ │ └─TableFullScan 10000.00 cop[tikv] table:t1, partition:p0 keep order:false, stats:pseudo", - " │ │ ├─TableReader 9980.01 root data:Selection", - " │ │ │ └─Selection 9980.01 cop[tikv] not(isnull(test.t1.a)), not(isnull(test.t1.b))", - " │ │ │ └─TableFullScan 10000.00 cop[tikv] table:t1, partition:p1 keep order:false, stats:pseudo", - " │ │ ├─TableReader 9980.01 root data:Selection", - " │ │ │ └─Selection 9980.01 cop[tikv] not(isnull(test.t1.a)), not(isnull(test.t1.b))", - " │ │ │ └─TableFullScan 10000.00 cop[tikv] table:t1, partition:p2 keep order:false, stats:pseudo", - " │ │ └─TableReader 9980.01 root data:Selection", - " │ │ └─Selection 9980.01 cop[tikv] not(isnull(test.t1.a)), not(isnull(test.t1.b))", - " │ │ └─TableFullScan 10000.00 cop[tikv] table:t1, partition:p3 keep order:false, stats:pseudo", - " │ └─PartitionUnion(Probe) 39960.00 root ", - " │ ├─TableReader 9990.00 root data:Selection", - " │ │ └─Selection 9990.00 cop[tikv] not(isnull(test.t4.b))", - " │ │ └─TableFullScan 10000.00 cop[tikv] table:t4, partition:p0 keep order:false, stats:pseudo", - " │ ├─TableReader 9990.00 root data:Selection", - " │ │ └─Selection 9990.00 cop[tikv] not(isnull(test.t4.b))", - " │ │ └─TableFullScan 10000.00 cop[tikv] table:t4, partition:p1 keep order:false, stats:pseudo", - " │ ├─TableReader 9990.00 root data:Selection", - " │ │ └─Selection 9990.00 cop[tikv] not(isnull(test.t4.b))", - " │ │ └─TableFullScan 10000.00 cop[tikv] table:t4, partition:p2 keep order:false, stats:pseudo", - " │ └─TableReader 9990.00 root data:Selection", - " │ └─Selection 9990.00 cop[tikv] not(isnull(test.t4.b))", - " │ └─TableFullScan 10000.00 cop[tikv] table:t4, partition:p3 keep order:false, stats:pseudo", - " └─PartitionUnion(Probe) 49900.05 root ", - " ├─TableReader 9980.01 root data:Selection", - " │ └─Selection 9980.01 cop[tikv] not(isnull(test.t2.a)), not(isnull(test.t2.b))", - " │ └─TableFullScan 10000.00 cop[tikv] table:t2, partition:p0 keep order:false, stats:pseudo", - " ├─TableReader 9980.01 root data:Selection", - " │ └─Selection 9980.01 cop[tikv] not(isnull(test.t2.a)), not(isnull(test.t2.b))", - " │ └─TableFullScan 10000.00 cop[tikv] table:t2, partition:p1 keep order:false, stats:pseudo", - " ├─TableReader 9980.01 root data:Selection", - " │ └─Selection 9980.01 cop[tikv] not(isnull(test.t2.a)), not(isnull(test.t2.b))", - " │ └─TableFullScan 10000.00 cop[tikv] table:t2, partition:p2 keep order:false, stats:pseudo", - " ├─TableReader 9980.01 root data:Selection", - " │ └─Selection 9980.01 cop[tikv] not(isnull(test.t2.a)), not(isnull(test.t2.b))", - " │ └─TableFullScan 10000.00 cop[tikv] table:t2, partition:p3 keep order:false, stats:pseudo", - " └─TableReader 9980.01 root data:Selection", - " └─Selection 9980.01 cop[tikv] not(isnull(test.t2.a)), not(isnull(test.t2.b))", - " └─TableFullScan 10000.00 cop[tikv] table:t2, partition:p4 keep order:false, stats:pseudo" + " ├─PartitionUnion(Build) 49900.05 root ", + " │ ├─TableReader 9980.01 root data:Selection", + " │ │ └─Selection 9980.01 cop[tikv] not(isnull(test.t2.a)), not(isnull(test.t2.b))", + " │ │ └─TableFullScan 10000.00 cop[tikv] table:t2, partition:p0 keep order:false, stats:pseudo", + " │ ├─TableReader 9980.01 root data:Selection", + " │ │ └─Selection 9980.01 cop[tikv] not(isnull(test.t2.a)), not(isnull(test.t2.b))", + " │ │ └─TableFullScan 10000.00 cop[tikv] table:t2, partition:p1 keep order:false, stats:pseudo", + " │ ├─TableReader 9980.01 root data:Selection", + " │ │ └─Selection 9980.01 cop[tikv] not(isnull(test.t2.a)), not(isnull(test.t2.b))", + " │ │ └─TableFullScan 10000.00 cop[tikv] table:t2, partition:p2 keep order:false, stats:pseudo", + " │ ├─TableReader 9980.01 root data:Selection", + " │ │ └─Selection 9980.01 cop[tikv] not(isnull(test.t2.a)), not(isnull(test.t2.b))", + " │ │ └─TableFullScan 10000.00 cop[tikv] table:t2, partition:p3 keep order:false, stats:pseudo", + " │ └─TableReader 9980.01 root data:Selection", + " │ └─Selection 9980.01 cop[tikv] not(isnull(test.t2.a)), not(isnull(test.t2.b))", + " │ └─TableFullScan 10000.00 cop[tikv] table:t2, partition:p4 keep order:false, stats:pseudo", + " └─HashJoin(Probe) 46781.30 root inner join, equal:[eq(test.t3.b, test.t4.b)]", + " ├─HashJoin(Build) 37425.04 root inner join, equal:[eq(test.t3.a, test.t1.a)]", + " │ ├─PartitionUnion(Build) 29940.03 root ", + " │ │ ├─TableReader 9980.01 root data:Selection", + " │ │ │ └─Selection 9980.01 cop[tikv] not(isnull(test.t3.a)), not(isnull(test.t3.b))", + " │ │ │ └─TableFullScan 10000.00 cop[tikv] table:t3, partition:p0 keep order:false, stats:pseudo", + " │ │ ├─TableReader 9980.01 root data:Selection", + " │ │ │ └─Selection 9980.01 cop[tikv] not(isnull(test.t3.a)), not(isnull(test.t3.b))", + " │ │ │ └─TableFullScan 10000.00 cop[tikv] table:t3, partition:p1 keep order:false, stats:pseudo", + " │ │ └─TableReader 9980.01 root data:Selection", + " │ │ └─Selection 9980.01 cop[tikv] not(isnull(test.t3.a)), not(isnull(test.t3.b))", + " │ │ └─TableFullScan 10000.00 cop[tikv] table:t3, partition:p2 keep order:false, stats:pseudo", + " │ └─PartitionUnion(Probe) 39920.04 root ", + " │ ├─TableReader 9980.01 root data:Selection", + " │ │ └─Selection 9980.01 cop[tikv] not(isnull(test.t1.a)), not(isnull(test.t1.b))", + " │ │ └─TableFullScan 10000.00 cop[tikv] table:t1, partition:p0 keep order:false, stats:pseudo", + " │ ├─TableReader 9980.01 root data:Selection", + " │ │ └─Selection 9980.01 cop[tikv] not(isnull(test.t1.a)), not(isnull(test.t1.b))", + " │ │ └─TableFullScan 10000.00 cop[tikv] table:t1, partition:p1 keep order:false, stats:pseudo", + " │ ├─TableReader 9980.01 root data:Selection", + " │ │ └─Selection 9980.01 cop[tikv] not(isnull(test.t1.a)), not(isnull(test.t1.b))", + " │ │ └─TableFullScan 10000.00 cop[tikv] table:t1, partition:p2 keep order:false, stats:pseudo", + " │ └─TableReader 9980.01 root data:Selection", + " │ └─Selection 9980.01 cop[tikv] not(isnull(test.t1.a)), not(isnull(test.t1.b))", + " │ └─TableFullScan 10000.00 cop[tikv] table:t1, partition:p3 keep order:false, stats:pseudo", + " └─PartitionUnion(Probe) 39960.00 root ", + " ├─TableReader 9990.00 root data:Selection", + " │ └─Selection 9990.00 cop[tikv] not(isnull(test.t4.b))", + " │ └─TableFullScan 10000.00 cop[tikv] table:t4, partition:p0 keep order:false, stats:pseudo", + " ├─TableReader 9990.00 root data:Selection", + " │ └─Selection 9990.00 cop[tikv] not(isnull(test.t4.b))", + " │ └─TableFullScan 10000.00 cop[tikv] table:t4, partition:p1 keep order:false, stats:pseudo", + " ├─TableReader 9990.00 root data:Selection", + " │ └─Selection 9990.00 cop[tikv] not(isnull(test.t4.b))", + " │ └─TableFullScan 10000.00 cop[tikv] table:t4, partition:p2 keep order:false, stats:pseudo", + " └─TableReader 9990.00 root data:Selection", + " └─Selection 9990.00 cop[tikv] not(isnull(test.t4.b))", + " └─TableFullScan 10000.00 cop[tikv] table:t4, partition:p3 keep order:false, stats:pseudo" ], "Warning": [ "Warning 1815 We can only use one leading hint at most, when multiple leading hints are used, all leading hints will be invalid" @@ -4043,60 +4043,60 @@ " │ └─Selection 9980.01 cop[tikv] not(isnull(test.t5.a)), not(isnull(test.t5.b))", " │ └─TableFullScan 10000.00 cop[tikv] table:t5, partition:p4 keep order:false, stats:pseudo", " └─HashJoin(Probe) 58476.62 root inner join, equal:[eq(test.t1.b, test.t2.b)]", - " ├─HashJoin(Build) 46781.30 root inner join, equal:[eq(test.t3.b, test.t4.b)]", - " │ ├─HashJoin(Build) 37425.04 root inner join, equal:[eq(test.t3.a, test.t1.a)]", - " │ │ ├─PartitionUnion(Build) 29940.03 root ", - " │ │ │ ├─TableReader 9980.01 root data:Selection", - " │ │ │ │ └─Selection 9980.01 cop[tikv] not(isnull(test.t3.a)), not(isnull(test.t3.b))", - " │ │ │ │ └─TableFullScan 10000.00 cop[tikv] table:t3, partition:p0 keep order:false, stats:pseudo", - " │ │ │ ├─TableReader 9980.01 root data:Selection", - " │ │ │ │ └─Selection 9980.01 cop[tikv] not(isnull(test.t3.a)), not(isnull(test.t3.b))", - " │ │ │ │ └─TableFullScan 10000.00 cop[tikv] table:t3, partition:p1 keep order:false, stats:pseudo", - " │ │ │ └─TableReader 9980.01 root data:Selection", - " │ │ │ └─Selection 9980.01 cop[tikv] not(isnull(test.t3.a)), not(isnull(test.t3.b))", - " │ │ │ └─TableFullScan 10000.00 cop[tikv] table:t3, partition:p2 keep order:false, stats:pseudo", - " │ │ └─PartitionUnion(Probe) 39920.04 root ", - " │ │ ├─TableReader 9980.01 root data:Selection", - " │ │ │ └─Selection 9980.01 cop[tikv] not(isnull(test.t1.a)), not(isnull(test.t1.b))", - " │ │ │ └─TableFullScan 10000.00 cop[tikv] table:t1, partition:p0 keep order:false, stats:pseudo", - " │ │ ├─TableReader 9980.01 root data:Selection", - " │ │ │ └─Selection 9980.01 cop[tikv] not(isnull(test.t1.a)), not(isnull(test.t1.b))", - " │ │ │ └─TableFullScan 10000.00 cop[tikv] table:t1, partition:p1 keep order:false, stats:pseudo", - " │ │ ├─TableReader 9980.01 root data:Selection", - " │ │ │ └─Selection 9980.01 cop[tikv] not(isnull(test.t1.a)), not(isnull(test.t1.b))", - " │ │ │ └─TableFullScan 10000.00 cop[tikv] table:t1, partition:p2 keep order:false, stats:pseudo", - " │ │ └─TableReader 9980.01 root data:Selection", - " │ │ └─Selection 9980.01 cop[tikv] not(isnull(test.t1.a)), not(isnull(test.t1.b))", - " │ │ └─TableFullScan 10000.00 cop[tikv] table:t1, partition:p3 keep order:false, stats:pseudo", - " │ └─PartitionUnion(Probe) 39960.00 root ", - " │ ├─TableReader 9990.00 root data:Selection", - " │ │ └─Selection 9990.00 cop[tikv] not(isnull(test.t4.b))", - " │ │ └─TableFullScan 10000.00 cop[tikv] table:t4, partition:p0 keep order:false, stats:pseudo", - " │ ├─TableReader 9990.00 root data:Selection", - " │ │ └─Selection 9990.00 cop[tikv] not(isnull(test.t4.b))", - " │ │ └─TableFullScan 10000.00 cop[tikv] table:t4, partition:p1 keep order:false, stats:pseudo", - " │ ├─TableReader 9990.00 root data:Selection", - " │ │ └─Selection 9990.00 cop[tikv] not(isnull(test.t4.b))", - " │ │ └─TableFullScan 10000.00 cop[tikv] table:t4, partition:p2 keep order:false, stats:pseudo", - " │ └─TableReader 9990.00 root data:Selection", - " │ └─Selection 9990.00 cop[tikv] not(isnull(test.t4.b))", - " │ └─TableFullScan 10000.00 cop[tikv] table:t4, partition:p3 keep order:false, stats:pseudo", - " └─PartitionUnion(Probe) 49900.05 root ", - " ├─TableReader 9980.01 root data:Selection", - " │ └─Selection 9980.01 cop[tikv] not(isnull(test.t2.a)), not(isnull(test.t2.b))", - " │ └─TableFullScan 10000.00 cop[tikv] table:t2, partition:p0 keep order:false, stats:pseudo", - " ├─TableReader 9980.01 root data:Selection", - " │ └─Selection 9980.01 cop[tikv] not(isnull(test.t2.a)), not(isnull(test.t2.b))", - " │ └─TableFullScan 10000.00 cop[tikv] table:t2, partition:p1 keep order:false, stats:pseudo", - " ├─TableReader 9980.01 root data:Selection", - " │ └─Selection 9980.01 cop[tikv] not(isnull(test.t2.a)), not(isnull(test.t2.b))", - " │ └─TableFullScan 10000.00 cop[tikv] table:t2, partition:p2 keep order:false, stats:pseudo", - " ├─TableReader 9980.01 root data:Selection", - " │ └─Selection 9980.01 cop[tikv] not(isnull(test.t2.a)), not(isnull(test.t2.b))", - " │ └─TableFullScan 10000.00 cop[tikv] table:t2, partition:p3 keep order:false, stats:pseudo", - " └─TableReader 9980.01 root data:Selection", - " └─Selection 9980.01 cop[tikv] not(isnull(test.t2.a)), not(isnull(test.t2.b))", - " └─TableFullScan 10000.00 cop[tikv] table:t2, partition:p4 keep order:false, stats:pseudo" + " ├─PartitionUnion(Build) 49900.05 root ", + " │ ├─TableReader 9980.01 root data:Selection", + " │ │ └─Selection 9980.01 cop[tikv] not(isnull(test.t2.a)), not(isnull(test.t2.b))", + " │ │ └─TableFullScan 10000.00 cop[tikv] table:t2, partition:p0 keep order:false, stats:pseudo", + " │ ├─TableReader 9980.01 root data:Selection", + " │ │ └─Selection 9980.01 cop[tikv] not(isnull(test.t2.a)), not(isnull(test.t2.b))", + " │ │ └─TableFullScan 10000.00 cop[tikv] table:t2, partition:p1 keep order:false, stats:pseudo", + " │ ├─TableReader 9980.01 root data:Selection", + " │ │ └─Selection 9980.01 cop[tikv] not(isnull(test.t2.a)), not(isnull(test.t2.b))", + " │ │ └─TableFullScan 10000.00 cop[tikv] table:t2, partition:p2 keep order:false, stats:pseudo", + " │ ├─TableReader 9980.01 root data:Selection", + " │ │ └─Selection 9980.01 cop[tikv] not(isnull(test.t2.a)), not(isnull(test.t2.b))", + " │ │ └─TableFullScan 10000.00 cop[tikv] table:t2, partition:p3 keep order:false, stats:pseudo", + " │ └─TableReader 9980.01 root data:Selection", + " │ └─Selection 9980.01 cop[tikv] not(isnull(test.t2.a)), not(isnull(test.t2.b))", + " │ └─TableFullScan 10000.00 cop[tikv] table:t2, partition:p4 keep order:false, stats:pseudo", + " └─HashJoin(Probe) 46781.30 root inner join, equal:[eq(test.t3.b, test.t4.b)]", + " ├─HashJoin(Build) 37425.04 root inner join, equal:[eq(test.t3.a, test.t1.a)]", + " │ ├─PartitionUnion(Build) 29940.03 root ", + " │ │ ├─TableReader 9980.01 root data:Selection", + " │ │ │ └─Selection 9980.01 cop[tikv] not(isnull(test.t3.a)), not(isnull(test.t3.b))", + " │ │ │ └─TableFullScan 10000.00 cop[tikv] table:t3, partition:p0 keep order:false, stats:pseudo", + " │ │ ├─TableReader 9980.01 root data:Selection", + " │ │ │ └─Selection 9980.01 cop[tikv] not(isnull(test.t3.a)), not(isnull(test.t3.b))", + " │ │ │ └─TableFullScan 10000.00 cop[tikv] table:t3, partition:p1 keep order:false, stats:pseudo", + " │ │ └─TableReader 9980.01 root data:Selection", + " │ │ └─Selection 9980.01 cop[tikv] not(isnull(test.t3.a)), not(isnull(test.t3.b))", + " │ │ └─TableFullScan 10000.00 cop[tikv] table:t3, partition:p2 keep order:false, stats:pseudo", + " │ └─PartitionUnion(Probe) 39920.04 root ", + " │ ├─TableReader 9980.01 root data:Selection", + " │ │ └─Selection 9980.01 cop[tikv] not(isnull(test.t1.a)), not(isnull(test.t1.b))", + " │ │ └─TableFullScan 10000.00 cop[tikv] table:t1, partition:p0 keep order:false, stats:pseudo", + " │ ├─TableReader 9980.01 root data:Selection", + " │ │ └─Selection 9980.01 cop[tikv] not(isnull(test.t1.a)), not(isnull(test.t1.b))", + " │ │ └─TableFullScan 10000.00 cop[tikv] table:t1, partition:p1 keep order:false, stats:pseudo", + " │ ├─TableReader 9980.01 root data:Selection", + " │ │ └─Selection 9980.01 cop[tikv] not(isnull(test.t1.a)), not(isnull(test.t1.b))", + " │ │ └─TableFullScan 10000.00 cop[tikv] table:t1, partition:p2 keep order:false, stats:pseudo", + " │ └─TableReader 9980.01 root data:Selection", + " │ └─Selection 9980.01 cop[tikv] not(isnull(test.t1.a)), not(isnull(test.t1.b))", + " │ └─TableFullScan 10000.00 cop[tikv] table:t1, partition:p3 keep order:false, stats:pseudo", + " └─PartitionUnion(Probe) 39960.00 root ", + " ├─TableReader 9990.00 root data:Selection", + " │ └─Selection 9990.00 cop[tikv] not(isnull(test.t4.b))", + " │ └─TableFullScan 10000.00 cop[tikv] table:t4, partition:p0 keep order:false, stats:pseudo", + " ├─TableReader 9990.00 root data:Selection", + " │ └─Selection 9990.00 cop[tikv] not(isnull(test.t4.b))", + " │ └─TableFullScan 10000.00 cop[tikv] table:t4, partition:p1 keep order:false, stats:pseudo", + " ├─TableReader 9990.00 root data:Selection", + " │ └─Selection 9990.00 cop[tikv] not(isnull(test.t4.b))", + " │ └─TableFullScan 10000.00 cop[tikv] table:t4, partition:p2 keep order:false, stats:pseudo", + " └─TableReader 9990.00 root data:Selection", + " └─Selection 9990.00 cop[tikv] not(isnull(test.t4.b))", + " └─TableFullScan 10000.00 cop[tikv] table:t4, partition:p3 keep order:false, stats:pseudo" ], "Warning": [ "Warning 1815 leading hint is inapplicable, check if the leading hint table is valid" @@ -5320,11 +5320,11 @@ "│ └─TableFullScan 10000.00 cop[tikv] table:t3 keep order:false, stats:pseudo", "└─HashJoin(Probe) 12487.50 root right outer join, equal:[eq(test.t1.a, test.t2.a)]", " ├─TableReader(Build) 9990.00 root data:Selection", - " │ └─Selection 9990.00 cop[tikv] not(isnull(test.t1.a))", - " │ └─TableFullScan 10000.00 cop[tikv] table:t1 keep order:false, stats:pseudo", + " │ └─Selection 9990.00 cop[tikv] not(isnull(test.t2.b))", + " │ └─TableFullScan 10000.00 cop[tikv] table:t2 keep order:false, stats:pseudo", " └─TableReader(Probe) 9990.00 root data:Selection", - " └─Selection 9990.00 cop[tikv] not(isnull(test.t2.b))", - " └─TableFullScan 10000.00 cop[tikv] table:t2 keep order:false, stats:pseudo" + " └─Selection 9990.00 cop[tikv] not(isnull(test.t1.a))", + " └─TableFullScan 10000.00 cop[tikv] table:t1 keep order:false, stats:pseudo" ], "Warning": [ "Warning 1815 leading hint is inapplicable, check if the leading hint table is valid", @@ -6296,13 +6296,13 @@ "Plan": [ "Projection 1.00 root test.t1.a, Column#14", "└─Apply 1.00 root CARTESIAN left outer join", - " ├─StreamAgg(Build) 1.00 root funcs:min(test.t1.a)->Column#10, funcs:firstrow(test.t1.a)->test.t1.a", + " ├─HashAgg(Build) 1.00 root funcs:min(test.t1.a)->Column#10, funcs:firstrow(test.t1.a)->test.t1.a", " │ └─IndexJoin 3.75 root inner join, inner:IndexReader, outer key:test.t3.a, inner key:test.t1.a, equal cond:eq(test.t3.a, test.t1.a)", " │ ├─IndexReader(Build) 3.00 root index:IndexFullScan", " │ │ └─IndexFullScan 3.00 cop[tikv] table:t3, index:a(a) keep order:false", - " │ └─IndexReader(Probe) 1.25 root index:Selection", - " │ └─Selection 1.25 cop[tikv] not(isnull(test.t1.a))", - " │ └─IndexRangeScan 1.25 cop[tikv] table:t1, index:a(a) range: decided by [eq(test.t1.a, test.t3.a)], keep order:false, stats:pseudo", + " │ └─IndexReader(Probe) 3.75 root index:Selection", + " │ └─Selection 3.75 cop[tikv] not(isnull(test.t1.a))", + " │ └─IndexRangeScan 3.75 cop[tikv] table:t1, index:a(a) range: decided by [eq(test.t1.a, test.t3.a)], keep order:false, stats:pseudo", " └─MaxOneRow(Probe) 1.00 root ", " └─Projection 2.00 root Column#10", " └─IndexReader 2.00 root index:Selection", @@ -6316,8 +6316,9 @@ "Plan": [ "HashJoin 4.69 root inner join, equal:[eq(test.t1.a, test.t3.a)]", "├─StreamAgg(Build) 3.00 root group by:test.t3.a, funcs:firstrow(test.t3.a)->test.t3.a", - "│ └─IndexReader 3.00 root index:IndexFullScan", - "│ └─IndexFullScan 3.00 cop[tikv] table:t3, index:a(a) keep order:true", + "│ └─IndexReader 3.00 root index:StreamAgg", + "│ └─StreamAgg 3.00 cop[tikv] group by:test.t3.a, ", + "│ └─IndexFullScan 3.00 cop[tikv] table:t3, index:a(a) keep order:true", "└─HashJoin(Probe) 12487.50 root inner join, equal:[eq(test.t1.a, test.t2.a)]", " ├─TableReader(Build) 9990.00 root data:Selection", " │ └─Selection 9990.00 cop[tikv] not(isnull(test.t2.a))", @@ -6332,8 +6333,8 @@ "SQL": "select /*+ straight_join() */ * from t1 join t2 on t1.a=t2.a where t1.a not in (select t3.a from t3)", "Plan": [ "HashJoin 9990.00 root CARTESIAN anti semi join, other cond:eq(test.t1.a, test.t3.a)", - "├─TableReader(Build) 3.00 root data:TableFullScan", - "│ └─TableFullScan 3.00 cop[tikv] table:t3 keep order:false", + "├─IndexReader(Build) 3.00 root index:IndexFullScan", + "│ └─IndexFullScan 3.00 cop[tikv] table:t3, index:a(a) keep order:false", "└─HashJoin(Probe) 12487.50 root inner join, equal:[eq(test.t1.a, test.t2.a)]", " ├─TableReader(Build) 9990.00 root data:Selection", " │ └─Selection 9990.00 cop[tikv] not(isnull(test.t2.a))", @@ -6431,9 +6432,9 @@ "└─IndexJoin 3.75 root inner join, inner:IndexReader, outer key:test.t3.a, inner key:test.t1.a, equal cond:eq(test.t3.a, test.t1.a)", " ├─IndexReader(Build) 3.00 root index:IndexFullScan", " │ └─IndexFullScan 3.00 cop[tikv] table:t3, index:a(a) keep order:false", - " └─IndexReader(Probe) 1.25 root index:Selection", - " └─Selection 1.25 cop[tikv] not(isnull(test.t1.a))", - " └─IndexRangeScan 1.25 cop[tikv] table:t1, index:a(a) range: decided by [eq(test.t1.a, test.t3.a)], keep order:false, stats:pseudo" + " └─IndexReader(Probe) 3.75 root index:Selection", + " └─Selection 3.75 cop[tikv] not(isnull(test.t1.a))", + " └─IndexRangeScan 3.75 cop[tikv] table:t1, index:a(a) range: decided by [eq(test.t1.a, test.t3.a)], keep order:false, stats:pseudo" ], "Warning": null }, @@ -6914,13 +6915,13 @@ "Plan": [ "Projection 1.00 root test.t1.a, Column#14", "└─Apply 1.00 root CARTESIAN left outer join", - " ├─StreamAgg(Build) 1.00 root funcs:min(test.t1.a)->Column#10, funcs:firstrow(test.t1.a)->test.t1.a", + " ├─HashAgg(Build) 1.00 root funcs:min(test.t1.a)->Column#10, funcs:firstrow(test.t1.a)->test.t1.a", " │ └─IndexJoin 3.75 root inner join, inner:IndexReader, outer key:test.t3.a, inner key:test.t1.a, equal cond:eq(test.t3.a, test.t1.a)", " │ ├─IndexReader(Build) 3.00 root index:IndexFullScan", " │ │ └─IndexFullScan 3.00 cop[tikv] table:t3, index:a(a) keep order:false", - " │ └─IndexReader(Probe) 1.25 root index:Selection", - " │ └─Selection 1.25 cop[tikv] not(isnull(test.t1.a))", - " │ └─IndexRangeScan 1.25 cop[tikv] table:t1, index:a(a) range: decided by [eq(test.t1.a, test.t3.a)], keep order:false, stats:pseudo", + " │ └─IndexReader(Probe) 3.75 root index:Selection", + " │ └─Selection 3.75 cop[tikv] not(isnull(test.t1.a))", + " │ └─IndexRangeScan 3.75 cop[tikv] table:t1, index:a(a) range: decided by [eq(test.t1.a, test.t3.a)], keep order:false, stats:pseudo", " └─MaxOneRow(Probe) 1.00 root ", " └─Projection 2.00 root Column#10", " └─IndexReader 2.00 root index:Selection", @@ -6934,13 +6935,13 @@ "Plan": [ "Projection 1.00 root test.t1.a, Column#14", "└─Apply 1.00 root CARTESIAN left outer join", - " ├─StreamAgg(Build) 1.00 root funcs:min(test.t1.a)->Column#10, funcs:firstrow(test.t1.a)->test.t1.a", + " ├─HashAgg(Build) 1.00 root funcs:min(test.t1.a)->Column#10, funcs:firstrow(test.t1.a)->test.t1.a", " │ └─IndexJoin 3.75 root inner join, inner:IndexReader, outer key:test.t3.a, inner key:test.t1.a, equal cond:eq(test.t3.a, test.t1.a)", " │ ├─IndexReader(Build) 3.00 root index:IndexFullScan", " │ │ └─IndexFullScan 3.00 cop[tikv] table:t3, index:a(a) keep order:false", - " │ └─IndexReader(Probe) 1.25 root index:Selection", - " │ └─Selection 1.25 cop[tikv] not(isnull(test.t1.a))", - " │ └─IndexRangeScan 1.25 cop[tikv] table:t1, index:a(a) range: decided by [eq(test.t1.a, test.t3.a)], keep order:false, stats:pseudo", + " │ └─IndexReader(Probe) 3.75 root index:Selection", + " │ └─Selection 3.75 cop[tikv] not(isnull(test.t1.a))", + " │ └─IndexRangeScan 3.75 cop[tikv] table:t1, index:a(a) range: decided by [eq(test.t1.a, test.t3.a)], keep order:false, stats:pseudo", " └─MaxOneRow(Probe) 1.00 root ", " └─Projection 2.00 root Column#10", " └─IndexReader 2.00 root index:Selection", @@ -6956,13 +6957,13 @@ "Plan": [ "Projection 1.00 root test.t1.a, Column#14", "└─Apply 1.00 root CARTESIAN left outer join", - " ├─StreamAgg(Build) 1.00 root funcs:min(test.t1.a)->Column#10, funcs:firstrow(test.t1.a)->test.t1.a", + " ├─HashAgg(Build) 1.00 root funcs:min(test.t1.a)->Column#10, funcs:firstrow(test.t1.a)->test.t1.a", " │ └─IndexJoin 3.75 root inner join, inner:IndexReader, outer key:test.t3.a, inner key:test.t1.a, equal cond:eq(test.t3.a, test.t1.a)", " │ ├─IndexReader(Build) 3.00 root index:IndexFullScan", " │ │ └─IndexFullScan 3.00 cop[tikv] table:t3, index:a(a) keep order:false", - " │ └─IndexReader(Probe) 1.25 root index:Selection", - " │ └─Selection 1.25 cop[tikv] not(isnull(test.t1.a))", - " │ └─IndexRangeScan 1.25 cop[tikv] table:t1, index:a(a) range: decided by [eq(test.t1.a, test.t3.a)], keep order:false, stats:pseudo", + " │ └─IndexReader(Probe) 3.75 root index:Selection", + " │ └─Selection 3.75 cop[tikv] not(isnull(test.t1.a))", + " │ └─IndexRangeScan 3.75 cop[tikv] table:t1, index:a(a) range: decided by [eq(test.t1.a, test.t3.a)], keep order:false, stats:pseudo", " └─MaxOneRow(Probe) 1.00 root ", " └─Projection 2.00 root Column#10", " └─IndexReader 2.00 root index:Selection", @@ -6978,13 +6979,13 @@ "Plan": [ "Projection 1.00 root test.t1.a, Column#14", "└─Apply 1.00 root CARTESIAN left outer join", - " ├─StreamAgg(Build) 1.00 root funcs:min(test.t1.a)->Column#10, funcs:firstrow(test.t1.a)->test.t1.a", + " ├─HashAgg(Build) 1.00 root funcs:min(test.t1.a)->Column#10, funcs:firstrow(test.t1.a)->test.t1.a", " │ └─IndexJoin 3.75 root inner join, inner:IndexReader, outer key:test.t3.a, inner key:test.t1.a, equal cond:eq(test.t3.a, test.t1.a)", " │ ├─IndexReader(Build) 3.00 root index:IndexFullScan", " │ │ └─IndexFullScan 3.00 cop[tikv] table:t3, index:a(a) keep order:false", - " │ └─IndexReader(Probe) 1.25 root index:Selection", - " │ └─Selection 1.25 cop[tikv] not(isnull(test.t1.a))", - " │ └─IndexRangeScan 1.25 cop[tikv] table:t1, index:a(a) range: decided by [eq(test.t1.a, test.t3.a)], keep order:false, stats:pseudo", + " │ └─IndexReader(Probe) 3.75 root index:Selection", + " │ └─Selection 3.75 cop[tikv] not(isnull(test.t1.a))", + " │ └─IndexRangeScan 3.75 cop[tikv] table:t1, index:a(a) range: decided by [eq(test.t1.a, test.t3.a)], keep order:false, stats:pseudo", " └─MaxOneRow(Probe) 1.00 root ", " └─Projection 2.00 root Column#10", " └─IndexReader 2.00 root index:Selection", @@ -7001,13 +7002,13 @@ "Plan": [ "Projection 1.00 root test.t1.a, Column#14", "└─Apply 1.00 root CARTESIAN left outer join", - " ├─StreamAgg(Build) 1.00 root funcs:min(test.t1.a)->Column#10, funcs:firstrow(test.t1.a)->test.t1.a", + " ├─HashAgg(Build) 1.00 root funcs:min(test.t1.a)->Column#10, funcs:firstrow(test.t1.a)->test.t1.a", " │ └─IndexJoin 3.75 root inner join, inner:IndexReader, outer key:test.t3.a, inner key:test.t1.a, equal cond:eq(test.t3.a, test.t1.a)", " │ ├─IndexReader(Build) 3.00 root index:IndexFullScan", " │ │ └─IndexFullScan 3.00 cop[tikv] table:t3, index:a(a) keep order:false", - " │ └─IndexReader(Probe) 1.25 root index:Selection", - " │ └─Selection 1.25 cop[tikv] not(isnull(test.t1.a))", - " │ └─IndexRangeScan 1.25 cop[tikv] table:t1, index:a(a) range: decided by [eq(test.t1.a, test.t3.a)], keep order:false, stats:pseudo", + " │ └─IndexReader(Probe) 3.75 root index:Selection", + " │ └─Selection 3.75 cop[tikv] not(isnull(test.t1.a))", + " │ └─IndexRangeScan 3.75 cop[tikv] table:t1, index:a(a) range: decided by [eq(test.t1.a, test.t3.a)], keep order:false, stats:pseudo", " └─MaxOneRow(Probe) 1.00 root ", " └─Projection 2.00 root Column#10", " └─IndexReader 2.00 root index:Selection", @@ -7023,13 +7024,13 @@ "Plan": [ "Projection 1.00 root test.t1.a, Column#14", "└─Apply 1.00 root CARTESIAN left outer join", - " ├─StreamAgg(Build) 1.00 root funcs:min(test.t1.a)->Column#10, funcs:firstrow(test.t1.a)->test.t1.a", + " ├─HashAgg(Build) 1.00 root funcs:min(test.t1.a)->Column#10, funcs:firstrow(test.t1.a)->test.t1.a", " │ └─IndexJoin 3.75 root inner join, inner:IndexReader, outer key:test.t3.a, inner key:test.t1.a, equal cond:eq(test.t3.a, test.t1.a)", " │ ├─IndexReader(Build) 3.00 root index:IndexFullScan", " │ │ └─IndexFullScan 3.00 cop[tikv] table:t3, index:a(a) keep order:false", - " │ └─IndexReader(Probe) 1.25 root index:Selection", - " │ └─Selection 1.25 cop[tikv] not(isnull(test.t1.a))", - " │ └─IndexRangeScan 1.25 cop[tikv] table:t1, index:a(a) range: decided by [eq(test.t1.a, test.t3.a)], keep order:false, stats:pseudo", + " │ └─IndexReader(Probe) 3.75 root index:Selection", + " │ └─Selection 3.75 cop[tikv] not(isnull(test.t1.a))", + " │ └─IndexRangeScan 3.75 cop[tikv] table:t1, index:a(a) range: decided by [eq(test.t1.a, test.t3.a)], keep order:false, stats:pseudo", " └─MaxOneRow(Probe) 1.00 root ", " └─Projection 2.00 root Column#10", " └─IndexReader 2.00 root index:Selection", @@ -7048,19 +7049,20 @@ "├─IndexJoin(Build) 3.75 root inner join, inner:IndexLookUp, outer key:test.t1.a, inner key:test.t2.a, equal cond:eq(test.t1.a, test.t2.a)", "│ ├─IndexJoin(Build) 3.00 root inner join, inner:IndexLookUp, outer key:Column#13, inner key:test.t1.a, equal cond:eq(Column#13, test.t1.a), eq(test.t3.b, test.t1.b)", "│ │ ├─Selection(Build) 2.40 root not(isnull(Column#13))", - "│ │ │ └─HashAgg 3.00 root group by:test.t3.b, funcs:max(test.t3.a)->Column#13, funcs:firstrow(test.t3.b)->test.t3.b", - "│ │ │ └─TableReader 3.00 root data:Selection", - "│ │ │ └─Selection 3.00 cop[tikv] not(isnull(test.t3.b))", - "│ │ │ └─TableFullScan 3.00 cop[tikv] table:t3 keep order:false", - "│ │ └─IndexLookUp(Probe) 1.25 root ", - "│ │ ├─Selection(Build) 1.25 cop[tikv] not(isnull(test.t1.a))", - "│ │ │ └─IndexRangeScan 1.25 cop[tikv] table:t1, index:a(a) range: decided by [eq(test.t1.a, Column#13)], keep order:false, stats:pseudo", - "│ │ └─Selection(Probe) 1.25 cop[tikv] not(isnull(test.t1.b))", - "│ │ └─TableRowIDScan 1.25 cop[tikv] table:t1 keep order:false, stats:pseudo", - "│ └─IndexLookUp(Probe) 1.25 root ", - "│ ├─Selection(Build) 1.25 cop[tikv] not(isnull(test.t2.a))", - "│ │ └─IndexRangeScan 1.25 cop[tikv] table:t2, index:a(a) range: decided by [eq(test.t2.a, test.t1.a)], keep order:false, stats:pseudo", - "│ └─TableRowIDScan(Probe) 1.25 cop[tikv] table:t2 keep order:false, stats:pseudo", + "│ │ │ └─HashAgg 3.00 root group by:test.t3.b, funcs:max(Column#20)->Column#13, funcs:firstrow(test.t3.b)->test.t3.b", + "│ │ │ └─TableReader 3.00 root data:HashAgg", + "│ │ │ └─HashAgg 3.00 cop[tikv] group by:test.t3.b, funcs:max(test.t3.a)->Column#20", + "│ │ │ └─Selection 3.00 cop[tikv] not(isnull(test.t3.b))", + "│ │ │ └─TableFullScan 3.00 cop[tikv] table:t3 keep order:false", + "│ │ └─IndexLookUp(Probe) 3.00 root ", + "│ │ ├─Selection(Build) 3.00 cop[tikv] not(isnull(test.t1.a))", + "│ │ │ └─IndexRangeScan 3.01 cop[tikv] table:t1, index:a(a) range: decided by [eq(test.t1.a, Column#13)], keep order:false, stats:pseudo", + "│ │ └─Selection(Probe) 3.00 cop[tikv] not(isnull(test.t1.b))", + "│ │ └─TableRowIDScan 3.00 cop[tikv] table:t1 keep order:false, stats:pseudo", + "│ └─IndexLookUp(Probe) 3.75 root ", + "│ ├─Selection(Build) 3.75 cop[tikv] not(isnull(test.t2.a))", + "│ │ └─IndexRangeScan 3.75 cop[tikv] table:t2, index:a(a) range: decided by [eq(test.t2.a, test.t1.a)], keep order:false, stats:pseudo", + "│ └─TableRowIDScan(Probe) 3.75 cop[tikv] table:t2 keep order:false, stats:pseudo", "└─TableReader(Probe) 9990.00 root data:Selection", " └─Selection 9990.00 cop[tikv] not(isnull(test.t4.b))", " └─TableFullScan 10000.00 cop[tikv] table:t4 keep order:false, stats:pseudo" @@ -7077,10 +7079,11 @@ "└─IndexJoin 4.69 root inner join, inner:IndexLookUp, outer key:test.t1.a, inner key:test.t2.a, equal cond:eq(test.t1.a, test.t2.a)", " ├─HashJoin(Build) 3.75 root inner join, equal:[eq(test.t1.b, test.t3.b) eq(test.t1.a, Column#13)]", " │ ├─Selection(Build) 2.40 root not(isnull(Column#13))", - " │ │ └─HashAgg 3.00 root group by:test.t3.b, funcs:max(test.t3.a)->Column#13, funcs:firstrow(test.t3.b)->test.t3.b", - " │ │ └─TableReader 3.00 root data:Selection", - " │ │ └─Selection 3.00 cop[tikv] not(isnull(test.t3.b))", - " │ │ └─TableFullScan 3.00 cop[tikv] table:t3 keep order:false", + " │ │ └─HashAgg 3.00 root group by:test.t3.b, funcs:max(Column#18)->Column#13, funcs:firstrow(test.t3.b)->test.t3.b", + " │ │ └─TableReader 3.00 root data:HashAgg", + " │ │ └─HashAgg 3.00 cop[tikv] group by:test.t3.b, funcs:max(test.t3.a)->Column#18", + " │ │ └─Selection 3.00 cop[tikv] not(isnull(test.t3.b))", + " │ │ └─TableFullScan 3.00 cop[tikv] table:t3 keep order:false", " │ └─HashJoin(Probe) 12475.01 root inner join, equal:[eq(test.t4.b, test.t1.b)]", " │ ├─TableReader(Build) 9980.01 root data:Selection", " │ │ └─Selection 9980.01 cop[tikv] not(isnull(test.t1.a)), not(isnull(test.t1.b))", @@ -7088,10 +7091,10 @@ " │ └─TableReader(Probe) 9990.00 root data:Selection", " │ └─Selection 9990.00 cop[tikv] not(isnull(test.t4.b))", " │ └─TableFullScan 10000.00 cop[tikv] table:t4 keep order:false, stats:pseudo", - " └─IndexLookUp(Probe) 1.25 root ", - " ├─Selection(Build) 1.25 cop[tikv] not(isnull(test.t2.a))", - " │ └─IndexRangeScan 1.25 cop[tikv] table:t2, index:a(a) range: decided by [eq(test.t2.a, test.t1.a)], keep order:false, stats:pseudo", - " └─TableRowIDScan(Probe) 1.25 cop[tikv] table:t2 keep order:false, stats:pseudo" + " └─IndexLookUp(Probe) 4.69 root ", + " ├─Selection(Build) 4.69 cop[tikv] not(isnull(test.t2.a))", + " │ └─IndexRangeScan 4.69 cop[tikv] table:t2, index:a(a) range: decided by [eq(test.t2.a, test.t1.a)], keep order:false, stats:pseudo", + " └─TableRowIDScan(Probe) 4.69 cop[tikv] table:t2 keep order:false, stats:pseudo" ], "Warning": null }, @@ -7102,19 +7105,20 @@ "├─IndexJoin(Build) 3.75 root inner join, inner:IndexLookUp, outer key:test.t1.a, inner key:test.t2.a, equal cond:eq(test.t1.a, test.t2.a)", "│ ├─IndexJoin(Build) 3.00 root inner join, inner:IndexLookUp, outer key:Column#13, inner key:test.t1.a, equal cond:eq(Column#13, test.t1.a), eq(test.t3.b, test.t1.b)", "│ │ ├─Selection(Build) 2.40 root not(isnull(Column#13))", - "│ │ │ └─HashAgg 3.00 root group by:test.t3.b, funcs:max(test.t3.a)->Column#13, funcs:firstrow(test.t3.b)->test.t3.b", - "│ │ │ └─TableReader 3.00 root data:Selection", - "│ │ │ └─Selection 3.00 cop[tikv] not(isnull(test.t3.b))", - "│ │ │ └─TableFullScan 3.00 cop[tikv] table:t3 keep order:false", - "│ │ └─IndexLookUp(Probe) 1.25 root ", - "│ │ ├─Selection(Build) 1.25 cop[tikv] not(isnull(test.t1.a))", - "│ │ │ └─IndexRangeScan 1.25 cop[tikv] table:t1, index:a(a) range: decided by [eq(test.t1.a, Column#13)], keep order:false, stats:pseudo", - "│ │ └─Selection(Probe) 1.25 cop[tikv] not(isnull(test.t1.b))", - "│ │ └─TableRowIDScan 1.25 cop[tikv] table:t1 keep order:false, stats:pseudo", - "│ └─IndexLookUp(Probe) 1.25 root ", - "│ ├─Selection(Build) 1.25 cop[tikv] not(isnull(test.t2.a))", - "│ │ └─IndexRangeScan 1.25 cop[tikv] table:t2, index:a(a) range: decided by [eq(test.t2.a, test.t1.a)], keep order:false, stats:pseudo", - "│ └─TableRowIDScan(Probe) 1.25 cop[tikv] table:t2 keep order:false, stats:pseudo", + "│ │ │ └─HashAgg 3.00 root group by:test.t3.b, funcs:max(Column#20)->Column#13, funcs:firstrow(test.t3.b)->test.t3.b", + "│ │ │ └─TableReader 3.00 root data:HashAgg", + "│ │ │ └─HashAgg 3.00 cop[tikv] group by:test.t3.b, funcs:max(test.t3.a)->Column#20", + "│ │ │ └─Selection 3.00 cop[tikv] not(isnull(test.t3.b))", + "│ │ │ └─TableFullScan 3.00 cop[tikv] table:t3 keep order:false", + "│ │ └─IndexLookUp(Probe) 3.00 root ", + "│ │ ├─Selection(Build) 3.00 cop[tikv] not(isnull(test.t1.a))", + "│ │ │ └─IndexRangeScan 3.01 cop[tikv] table:t1, index:a(a) range: decided by [eq(test.t1.a, Column#13)], keep order:false, stats:pseudo", + "│ │ └─Selection(Probe) 3.00 cop[tikv] not(isnull(test.t1.b))", + "│ │ └─TableRowIDScan 3.00 cop[tikv] table:t1 keep order:false, stats:pseudo", + "│ └─IndexLookUp(Probe) 3.75 root ", + "│ ├─Selection(Build) 3.75 cop[tikv] not(isnull(test.t2.a))", + "│ │ └─IndexRangeScan 3.75 cop[tikv] table:t2, index:a(a) range: decided by [eq(test.t2.a, test.t1.a)], keep order:false, stats:pseudo", + "│ └─TableRowIDScan(Probe) 3.75 cop[tikv] table:t2 keep order:false, stats:pseudo", "└─TableReader(Probe) 9990.00 root data:Selection", " └─Selection 9990.00 cop[tikv] not(isnull(test.t4.b))", " └─TableFullScan 10000.00 cop[tikv] table:t4 keep order:false, stats:pseudo" @@ -7130,19 +7134,20 @@ "├─IndexJoin(Build) 3.75 root inner join, inner:IndexLookUp, outer key:test.t1.a, inner key:test.t2.a, equal cond:eq(test.t1.a, test.t2.a)", "│ ├─IndexJoin(Build) 3.00 root inner join, inner:IndexLookUp, outer key:Column#13, inner key:test.t1.a, equal cond:eq(Column#13, test.t1.a), eq(test.t3.b, test.t1.b)", "│ │ ├─Selection(Build) 2.40 root not(isnull(Column#13))", - "│ │ │ └─HashAgg 3.00 root group by:test.t3.b, funcs:max(test.t3.a)->Column#13, funcs:firstrow(test.t3.b)->test.t3.b", - "│ │ │ └─TableReader 3.00 root data:Selection", - "│ │ │ └─Selection 3.00 cop[tikv] not(isnull(test.t3.b))", - "│ │ │ └─TableFullScan 3.00 cop[tikv] table:t3 keep order:false", - "│ │ └─IndexLookUp(Probe) 1.25 root ", - "│ │ ├─Selection(Build) 1.25 cop[tikv] not(isnull(test.t1.a))", - "│ │ │ └─IndexRangeScan 1.25 cop[tikv] table:t1, index:a(a) range: decided by [eq(test.t1.a, Column#13)], keep order:false, stats:pseudo", - "│ │ └─Selection(Probe) 1.25 cop[tikv] not(isnull(test.t1.b))", - "│ │ └─TableRowIDScan 1.25 cop[tikv] table:t1 keep order:false, stats:pseudo", - "│ └─IndexLookUp(Probe) 1.25 root ", - "│ ├─Selection(Build) 1.25 cop[tikv] not(isnull(test.t2.a))", - "│ │ └─IndexRangeScan 1.25 cop[tikv] table:t2, index:a(a) range: decided by [eq(test.t2.a, test.t1.a)], keep order:false, stats:pseudo", - "│ └─TableRowIDScan(Probe) 1.25 cop[tikv] table:t2 keep order:false, stats:pseudo", + "│ │ │ └─HashAgg 3.00 root group by:test.t3.b, funcs:max(Column#20)->Column#13, funcs:firstrow(test.t3.b)->test.t3.b", + "│ │ │ └─TableReader 3.00 root data:HashAgg", + "│ │ │ └─HashAgg 3.00 cop[tikv] group by:test.t3.b, funcs:max(test.t3.a)->Column#20", + "│ │ │ └─Selection 3.00 cop[tikv] not(isnull(test.t3.b))", + "│ │ │ └─TableFullScan 3.00 cop[tikv] table:t3 keep order:false", + "│ │ └─IndexLookUp(Probe) 3.00 root ", + "│ │ ├─Selection(Build) 3.00 cop[tikv] not(isnull(test.t1.a))", + "│ │ │ └─IndexRangeScan 3.01 cop[tikv] table:t1, index:a(a) range: decided by [eq(test.t1.a, Column#13)], keep order:false, stats:pseudo", + "│ │ └─Selection(Probe) 3.00 cop[tikv] not(isnull(test.t1.b))", + "│ │ └─TableRowIDScan 3.00 cop[tikv] table:t1 keep order:false, stats:pseudo", + "│ └─IndexLookUp(Probe) 3.75 root ", + "│ ├─Selection(Build) 3.75 cop[tikv] not(isnull(test.t2.a))", + "│ │ └─IndexRangeScan 3.75 cop[tikv] table:t2, index:a(a) range: decided by [eq(test.t2.a, test.t1.a)], keep order:false, stats:pseudo", + "│ └─TableRowIDScan(Probe) 3.75 cop[tikv] table:t2 keep order:false, stats:pseudo", "└─TableReader(Probe) 9990.00 root data:Selection", " └─Selection 9990.00 cop[tikv] not(isnull(test.t4.b))", " └─TableFullScan 10000.00 cop[tikv] table:t4 keep order:false, stats:pseudo" @@ -7159,17 +7164,18 @@ "├─IndexJoin(Build) 3.75 root inner join, inner:IndexLookUp, outer key:test.t1.a, inner key:test.t2.a, equal cond:eq(test.t1.a, test.t2.a)", "│ ├─HashJoin(Build) 3.00 root inner join, equal:[eq(test.t3.b, test.t1.b)], other cond:gt(test.t1.a, Column#13)", "│ │ ├─Selection(Build) 2.40 root not(isnull(Column#13))", - "│ │ │ └─HashAgg 3.00 root group by:test.t3.b, funcs:min(test.t3.a)->Column#13, funcs:firstrow(test.t3.b)->test.t3.b", - "│ │ │ └─TableReader 3.00 root data:Selection", - "│ │ │ └─Selection 3.00 cop[tikv] not(isnull(test.t3.b))", - "│ │ │ └─TableFullScan 3.00 cop[tikv] table:t3 keep order:false", + "│ │ │ └─HashAgg 3.00 root group by:test.t3.b, funcs:min(Column#17)->Column#13, funcs:firstrow(test.t3.b)->test.t3.b", + "│ │ │ └─TableReader 3.00 root data:HashAgg", + "│ │ │ └─HashAgg 3.00 cop[tikv] group by:test.t3.b, funcs:min(test.t3.a)->Column#17", + "│ │ │ └─Selection 3.00 cop[tikv] not(isnull(test.t3.b))", + "│ │ │ └─TableFullScan 3.00 cop[tikv] table:t3 keep order:false", "│ │ └─TableReader(Probe) 9980.01 root data:Selection", "│ │ └─Selection 9980.01 cop[tikv] not(isnull(test.t1.a)), not(isnull(test.t1.b))", "│ │ └─TableFullScan 10000.00 cop[tikv] table:t1 keep order:false, stats:pseudo", - "│ └─IndexLookUp(Probe) 1.25 root ", - "│ ├─Selection(Build) 1.25 cop[tikv] not(isnull(test.t2.a))", - "│ │ └─IndexRangeScan 1.25 cop[tikv] table:t2, index:a(a) range: decided by [eq(test.t2.a, test.t1.a)], keep order:false, stats:pseudo", - "│ └─TableRowIDScan(Probe) 1.25 cop[tikv] table:t2 keep order:false, stats:pseudo", + "│ └─IndexLookUp(Probe) 3.75 root ", + "│ ├─Selection(Build) 3.75 cop[tikv] not(isnull(test.t2.a))", + "│ │ └─IndexRangeScan 3.75 cop[tikv] table:t2, index:a(a) range: decided by [eq(test.t2.a, test.t1.a)], keep order:false, stats:pseudo", + "│ └─TableRowIDScan(Probe) 3.75 cop[tikv] table:t2 keep order:false, stats:pseudo", "└─TableReader(Probe) 9990.00 root data:Selection", " └─Selection 9990.00 cop[tikv] not(isnull(test.t4.b))", " └─TableFullScan 10000.00 cop[tikv] table:t4 keep order:false, stats:pseudo" @@ -7186,10 +7192,11 @@ "└─IndexJoin 4.69 root inner join, inner:IndexLookUp, outer key:test.t1.a, inner key:test.t2.a, equal cond:eq(test.t1.a, test.t2.a)", " ├─HashJoin(Build) 3.75 root inner join, equal:[eq(test.t1.b, test.t3.b)], other cond:gt(test.t1.a, Column#13)", " │ ├─Selection(Build) 2.40 root not(isnull(Column#13))", - " │ │ └─HashAgg 3.00 root group by:test.t3.b, funcs:min(test.t3.a)->Column#13, funcs:firstrow(test.t3.b)->test.t3.b", - " │ │ └─TableReader 3.00 root data:Selection", - " │ │ └─Selection 3.00 cop[tikv] not(isnull(test.t3.b))", - " │ │ └─TableFullScan 3.00 cop[tikv] table:t3 keep order:false", + " │ │ └─HashAgg 3.00 root group by:test.t3.b, funcs:min(Column#18)->Column#13, funcs:firstrow(test.t3.b)->test.t3.b", + " │ │ └─TableReader 3.00 root data:HashAgg", + " │ │ └─HashAgg 3.00 cop[tikv] group by:test.t3.b, funcs:min(test.t3.a)->Column#18", + " │ │ └─Selection 3.00 cop[tikv] not(isnull(test.t3.b))", + " │ │ └─TableFullScan 3.00 cop[tikv] table:t3 keep order:false", " │ └─HashJoin(Probe) 12475.01 root inner join, equal:[eq(test.t4.b, test.t1.b)]", " │ ├─TableReader(Build) 9980.01 root data:Selection", " │ │ └─Selection 9980.01 cop[tikv] not(isnull(test.t1.a)), not(isnull(test.t1.b))", @@ -7197,10 +7204,10 @@ " │ └─TableReader(Probe) 9990.00 root data:Selection", " │ └─Selection 9990.00 cop[tikv] not(isnull(test.t4.b))", " │ └─TableFullScan 10000.00 cop[tikv] table:t4 keep order:false, stats:pseudo", - " └─IndexLookUp(Probe) 1.25 root ", - " ├─Selection(Build) 1.25 cop[tikv] not(isnull(test.t2.a))", - " │ └─IndexRangeScan 1.25 cop[tikv] table:t2, index:a(a) range: decided by [eq(test.t2.a, test.t1.a)], keep order:false, stats:pseudo", - " └─TableRowIDScan(Probe) 1.25 cop[tikv] table:t2 keep order:false, stats:pseudo" + " └─IndexLookUp(Probe) 4.69 root ", + " ├─Selection(Build) 4.69 cop[tikv] not(isnull(test.t2.a))", + " │ └─IndexRangeScan 4.69 cop[tikv] table:t2, index:a(a) range: decided by [eq(test.t2.a, test.t1.a)], keep order:false, stats:pseudo", + " └─TableRowIDScan(Probe) 4.69 cop[tikv] table:t2 keep order:false, stats:pseudo" ], "Warning": null }, @@ -7211,17 +7218,18 @@ "├─IndexJoin(Build) 3.75 root inner join, inner:IndexLookUp, outer key:test.t1.a, inner key:test.t2.a, equal cond:eq(test.t1.a, test.t2.a)", "│ ├─HashJoin(Build) 3.00 root inner join, equal:[eq(test.t3.b, test.t1.b)], other cond:gt(test.t1.a, Column#13)", "│ │ ├─Selection(Build) 2.40 root not(isnull(Column#13))", - "│ │ │ └─HashAgg 3.00 root group by:test.t3.b, funcs:min(test.t3.a)->Column#13, funcs:firstrow(test.t3.b)->test.t3.b", - "│ │ │ └─TableReader 3.00 root data:Selection", - "│ │ │ └─Selection 3.00 cop[tikv] not(isnull(test.t3.b))", - "│ │ │ └─TableFullScan 3.00 cop[tikv] table:t3 keep order:false", + "│ │ │ └─HashAgg 3.00 root group by:test.t3.b, funcs:min(Column#17)->Column#13, funcs:firstrow(test.t3.b)->test.t3.b", + "│ │ │ └─TableReader 3.00 root data:HashAgg", + "│ │ │ └─HashAgg 3.00 cop[tikv] group by:test.t3.b, funcs:min(test.t3.a)->Column#17", + "│ │ │ └─Selection 3.00 cop[tikv] not(isnull(test.t3.b))", + "│ │ │ └─TableFullScan 3.00 cop[tikv] table:t3 keep order:false", "│ │ └─TableReader(Probe) 9980.01 root data:Selection", "│ │ └─Selection 9980.01 cop[tikv] not(isnull(test.t1.a)), not(isnull(test.t1.b))", "│ │ └─TableFullScan 10000.00 cop[tikv] table:t1 keep order:false, stats:pseudo", - "│ └─IndexLookUp(Probe) 1.25 root ", - "│ ├─Selection(Build) 1.25 cop[tikv] not(isnull(test.t2.a))", - "│ │ └─IndexRangeScan 1.25 cop[tikv] table:t2, index:a(a) range: decided by [eq(test.t2.a, test.t1.a)], keep order:false, stats:pseudo", - "│ └─TableRowIDScan(Probe) 1.25 cop[tikv] table:t2 keep order:false, stats:pseudo", + "│ └─IndexLookUp(Probe) 3.75 root ", + "│ ├─Selection(Build) 3.75 cop[tikv] not(isnull(test.t2.a))", + "│ │ └─IndexRangeScan 3.75 cop[tikv] table:t2, index:a(a) range: decided by [eq(test.t2.a, test.t1.a)], keep order:false, stats:pseudo", + "│ └─TableRowIDScan(Probe) 3.75 cop[tikv] table:t2 keep order:false, stats:pseudo", "└─TableReader(Probe) 9990.00 root data:Selection", " └─Selection 9990.00 cop[tikv] not(isnull(test.t4.b))", " └─TableFullScan 10000.00 cop[tikv] table:t4 keep order:false, stats:pseudo" @@ -7237,17 +7245,18 @@ "├─IndexJoin(Build) 3.75 root inner join, inner:IndexLookUp, outer key:test.t1.a, inner key:test.t2.a, equal cond:eq(test.t1.a, test.t2.a)", "│ ├─HashJoin(Build) 3.00 root inner join, equal:[eq(test.t3.b, test.t1.b)], other cond:gt(test.t1.a, Column#13)", "│ │ ├─Selection(Build) 2.40 root not(isnull(Column#13))", - "│ │ │ └─HashAgg 3.00 root group by:test.t3.b, funcs:min(test.t3.a)->Column#13, funcs:firstrow(test.t3.b)->test.t3.b", - "│ │ │ └─TableReader 3.00 root data:Selection", - "│ │ │ └─Selection 3.00 cop[tikv] not(isnull(test.t3.b))", - "│ │ │ └─TableFullScan 3.00 cop[tikv] table:t3 keep order:false", + "│ │ │ └─HashAgg 3.00 root group by:test.t3.b, funcs:min(Column#17)->Column#13, funcs:firstrow(test.t3.b)->test.t3.b", + "│ │ │ └─TableReader 3.00 root data:HashAgg", + "│ │ │ └─HashAgg 3.00 cop[tikv] group by:test.t3.b, funcs:min(test.t3.a)->Column#17", + "│ │ │ └─Selection 3.00 cop[tikv] not(isnull(test.t3.b))", + "│ │ │ └─TableFullScan 3.00 cop[tikv] table:t3 keep order:false", "│ │ └─TableReader(Probe) 9980.01 root data:Selection", "│ │ └─Selection 9980.01 cop[tikv] not(isnull(test.t1.a)), not(isnull(test.t1.b))", "│ │ └─TableFullScan 10000.00 cop[tikv] table:t1 keep order:false, stats:pseudo", - "│ └─IndexLookUp(Probe) 1.25 root ", - "│ ├─Selection(Build) 1.25 cop[tikv] not(isnull(test.t2.a))", - "│ │ └─IndexRangeScan 1.25 cop[tikv] table:t2, index:a(a) range: decided by [eq(test.t2.a, test.t1.a)], keep order:false, stats:pseudo", - "│ └─TableRowIDScan(Probe) 1.25 cop[tikv] table:t2 keep order:false, stats:pseudo", + "│ └─IndexLookUp(Probe) 3.75 root ", + "│ ├─Selection(Build) 3.75 cop[tikv] not(isnull(test.t2.a))", + "│ │ └─IndexRangeScan 3.75 cop[tikv] table:t2, index:a(a) range: decided by [eq(test.t2.a, test.t1.a)], keep order:false, stats:pseudo", + "│ └─TableRowIDScan(Probe) 3.75 cop[tikv] table:t2 keep order:false, stats:pseudo", "└─TableReader(Probe) 9990.00 root data:Selection", " └─Selection 9990.00 cop[tikv] not(isnull(test.t4.b))", " └─TableFullScan 10000.00 cop[tikv] table:t4 keep order:false, stats:pseudo" @@ -7264,8 +7273,9 @@ "└─IndexJoin 5.86 root inner join, inner:IndexLookUp, outer key:test.t1.a, inner key:test.t2.a, equal cond:eq(test.t1.a, test.t2.a)", " ├─HashJoin(Build) 4.69 root inner join, equal:[eq(test.t1.a, test.t3.a)]", " │ ├─StreamAgg(Build) 3.00 root group by:test.t3.a, funcs:firstrow(test.t3.a)->test.t3.a", - " │ │ └─IndexReader 3.00 root index:IndexFullScan", - " │ │ └─IndexFullScan 3.00 cop[tikv] table:t3, index:a(a) keep order:true", + " │ │ └─IndexReader 3.00 root index:StreamAgg", + " │ │ └─StreamAgg 3.00 cop[tikv] group by:test.t3.a, ", + " │ │ └─IndexFullScan 3.00 cop[tikv] table:t3, index:a(a) keep order:true", " │ └─HashJoin(Probe) 12475.01 root inner join, equal:[eq(test.t4.b, test.t1.b)]", " │ ├─TableReader(Build) 9980.01 root data:Selection", " │ │ └─Selection 9980.01 cop[tikv] not(isnull(test.t1.a)), not(isnull(test.t1.b))", @@ -7273,10 +7283,10 @@ " │ └─TableReader(Probe) 9990.00 root data:Selection", " │ └─Selection 9990.00 cop[tikv] not(isnull(test.t4.b))", " │ └─TableFullScan 10000.00 cop[tikv] table:t4 keep order:false, stats:pseudo", - " └─IndexLookUp(Probe) 1.25 root ", - " ├─Selection(Build) 1.25 cop[tikv] not(isnull(test.t2.a))", - " │ └─IndexRangeScan 1.25 cop[tikv] table:t2, index:a(a) range: decided by [eq(test.t2.a, test.t1.a)], keep order:false, stats:pseudo", - " └─TableRowIDScan(Probe) 1.25 cop[tikv] table:t2 keep order:false, stats:pseudo" + " └─IndexLookUp(Probe) 5.86 root ", + " ├─Selection(Build) 5.86 cop[tikv] not(isnull(test.t2.a))", + " │ └─IndexRangeScan 5.87 cop[tikv] table:t2, index:a(a) range: decided by [eq(test.t2.a, test.t1.a)], keep order:false, stats:pseudo", + " └─TableRowIDScan(Probe) 5.86 cop[tikv] table:t2 keep order:false, stats:pseudo" ], "Warning": null }, @@ -7286,16 +7296,17 @@ "IndexJoin 4.69 root inner join, inner:IndexLookUp, outer key:test.t1.a, inner key:test.t2.a, equal cond:eq(test.t1.a, test.t2.a)", "├─IndexJoin(Build) 3.75 root inner join, inner:IndexLookUp, outer key:test.t3.a, inner key:test.t1.a, equal cond:eq(test.t3.a, test.t1.a)", "│ ├─StreamAgg(Build) 3.00 root group by:test.t3.a, funcs:firstrow(test.t3.a)->test.t3.a", - "│ │ └─IndexReader 3.00 root index:IndexFullScan", - "│ │ └─IndexFullScan 3.00 cop[tikv] table:t3, index:a(a) keep order:true", - "│ └─IndexLookUp(Probe) 1.25 root ", - "│ ├─Selection(Build) 1.25 cop[tikv] not(isnull(test.t1.a))", - "│ │ └─IndexRangeScan 1.25 cop[tikv] table:t1, index:a(a) range: decided by [eq(test.t1.a, test.t3.a)], keep order:false, stats:pseudo", - "│ └─TableRowIDScan(Probe) 1.25 cop[tikv] table:t1 keep order:false, stats:pseudo", - "└─IndexLookUp(Probe) 1.25 root ", - " ├─Selection(Build) 1.25 cop[tikv] not(isnull(test.t2.a))", - " │ └─IndexRangeScan 1.25 cop[tikv] table:t2, index:a(a) range: decided by [eq(test.t2.a, test.t1.a)], keep order:false, stats:pseudo", - " └─TableRowIDScan(Probe) 1.25 cop[tikv] table:t2 keep order:false, stats:pseudo" + "│ │ └─IndexReader 3.00 root index:StreamAgg", + "│ │ └─StreamAgg 3.00 cop[tikv] group by:test.t3.a, ", + "│ │ └─IndexFullScan 3.00 cop[tikv] table:t3, index:a(a) keep order:true", + "│ └─IndexLookUp(Probe) 3.75 root ", + "│ ├─Selection(Build) 3.75 cop[tikv] not(isnull(test.t1.a))", + "│ │ └─IndexRangeScan 3.75 cop[tikv] table:t1, index:a(a) range: decided by [eq(test.t1.a, test.t3.a)], keep order:false, stats:pseudo", + "│ └─TableRowIDScan(Probe) 3.75 cop[tikv] table:t1 keep order:false, stats:pseudo", + "└─IndexLookUp(Probe) 4.69 root ", + " ├─Selection(Build) 4.69 cop[tikv] not(isnull(test.t2.a))", + " │ └─IndexRangeScan 4.69 cop[tikv] table:t2, index:a(a) range: decided by [eq(test.t2.a, test.t1.a)], keep order:false, stats:pseudo", + " └─TableRowIDScan(Probe) 4.69 cop[tikv] table:t2 keep order:false, stats:pseudo" ], "Warning": null }, @@ -7305,16 +7316,17 @@ "IndexJoin 4.69 root inner join, inner:IndexLookUp, outer key:test.t1.a, inner key:test.t2.a, equal cond:eq(test.t1.a, test.t2.a)", "├─IndexJoin(Build) 3.75 root inner join, inner:IndexLookUp, outer key:test.t3.a, inner key:test.t1.a, equal cond:eq(test.t3.a, test.t1.a)", "│ ├─StreamAgg(Build) 3.00 root group by:test.t3.a, funcs:firstrow(test.t3.a)->test.t3.a", - "│ │ └─IndexReader 3.00 root index:IndexFullScan", - "│ │ └─IndexFullScan 3.00 cop[tikv] table:t3, index:a(a) keep order:true", - "│ └─IndexLookUp(Probe) 1.25 root ", - "│ ├─Selection(Build) 1.25 cop[tikv] not(isnull(test.t1.a))", - "│ │ └─IndexRangeScan 1.25 cop[tikv] table:t1, index:a(a) range: decided by [eq(test.t1.a, test.t3.a)], keep order:false, stats:pseudo", - "│ └─TableRowIDScan(Probe) 1.25 cop[tikv] table:t1 keep order:false, stats:pseudo", - "└─IndexLookUp(Probe) 1.25 root ", - " ├─Selection(Build) 1.25 cop[tikv] not(isnull(test.t2.a))", - " │ └─IndexRangeScan 1.25 cop[tikv] table:t2, index:a(a) range: decided by [eq(test.t2.a, test.t1.a)], keep order:false, stats:pseudo", - " └─TableRowIDScan(Probe) 1.25 cop[tikv] table:t2 keep order:false, stats:pseudo" + "│ │ └─IndexReader 3.00 root index:StreamAgg", + "│ │ └─StreamAgg 3.00 cop[tikv] group by:test.t3.a, ", + "│ │ └─IndexFullScan 3.00 cop[tikv] table:t3, index:a(a) keep order:true", + "│ └─IndexLookUp(Probe) 3.75 root ", + "│ ├─Selection(Build) 3.75 cop[tikv] not(isnull(test.t1.a))", + "│ │ └─IndexRangeScan 3.75 cop[tikv] table:t1, index:a(a) range: decided by [eq(test.t1.a, test.t3.a)], keep order:false, stats:pseudo", + "│ └─TableRowIDScan(Probe) 3.75 cop[tikv] table:t1 keep order:false, stats:pseudo", + "└─IndexLookUp(Probe) 4.69 root ", + " ├─Selection(Build) 4.69 cop[tikv] not(isnull(test.t2.a))", + " │ └─IndexRangeScan 4.69 cop[tikv] table:t2, index:a(a) range: decided by [eq(test.t2.a, test.t1.a)], keep order:false, stats:pseudo", + " └─TableRowIDScan(Probe) 4.69 cop[tikv] table:t2 keep order:false, stats:pseudo" ], "Warning": [ "Warning 1815 We can only use one leading hint at most, when multiple leading hints are used, all leading hints will be invalid" @@ -7326,16 +7338,17 @@ "IndexJoin 4.69 root inner join, inner:IndexLookUp, outer key:test.t1.a, inner key:test.t2.a, equal cond:eq(test.t1.a, test.t2.a)", "├─IndexJoin(Build) 3.75 root inner join, inner:IndexLookUp, outer key:test.t3.a, inner key:test.t1.a, equal cond:eq(test.t3.a, test.t1.a)", "│ ├─StreamAgg(Build) 3.00 root group by:test.t3.a, funcs:firstrow(test.t3.a)->test.t3.a", - "│ │ └─IndexReader 3.00 root index:IndexFullScan", - "│ │ └─IndexFullScan 3.00 cop[tikv] table:t3, index:a(a) keep order:true", - "│ └─IndexLookUp(Probe) 1.25 root ", - "│ ├─Selection(Build) 1.25 cop[tikv] not(isnull(test.t1.a))", - "│ │ └─IndexRangeScan 1.25 cop[tikv] table:t1, index:a(a) range: decided by [eq(test.t1.a, test.t3.a)], keep order:false, stats:pseudo", - "│ └─TableRowIDScan(Probe) 1.25 cop[tikv] table:t1 keep order:false, stats:pseudo", - "└─IndexLookUp(Probe) 1.25 root ", - " ├─Selection(Build) 1.25 cop[tikv] not(isnull(test.t2.a))", - " │ └─IndexRangeScan 1.25 cop[tikv] table:t2, index:a(a) range: decided by [eq(test.t2.a, test.t1.a)], keep order:false, stats:pseudo", - " └─TableRowIDScan(Probe) 1.25 cop[tikv] table:t2 keep order:false, stats:pseudo" + "│ │ └─IndexReader 3.00 root index:StreamAgg", + "│ │ └─StreamAgg 3.00 cop[tikv] group by:test.t3.a, ", + "│ │ └─IndexFullScan 3.00 cop[tikv] table:t3, index:a(a) keep order:true", + "│ └─IndexLookUp(Probe) 3.75 root ", + "│ ├─Selection(Build) 3.75 cop[tikv] not(isnull(test.t1.a))", + "│ │ └─IndexRangeScan 3.75 cop[tikv] table:t1, index:a(a) range: decided by [eq(test.t1.a, test.t3.a)], keep order:false, stats:pseudo", + "│ └─TableRowIDScan(Probe) 3.75 cop[tikv] table:t1 keep order:false, stats:pseudo", + "└─IndexLookUp(Probe) 4.69 root ", + " ├─Selection(Build) 4.69 cop[tikv] not(isnull(test.t2.a))", + " │ └─IndexRangeScan 4.69 cop[tikv] table:t2, index:a(a) range: decided by [eq(test.t2.a, test.t1.a)], keep order:false, stats:pseudo", + " └─TableRowIDScan(Probe) 4.69 cop[tikv] table:t2 keep order:false, stats:pseudo" ], "Warning": [ "Warning 1815 We can only use one leading hint at most, when multiple leading hints are used, all leading hints will be invalid" @@ -7347,16 +7360,17 @@ "IndexJoin 4.69 root inner join, inner:IndexLookUp, outer key:test.t1.a, inner key:test.t2.a, equal cond:eq(test.t1.a, test.t2.a)", "├─IndexJoin(Build) 3.75 root inner join, inner:IndexLookUp, outer key:test.t3.a, inner key:test.t1.a, equal cond:eq(test.t3.a, test.t1.a)", "│ ├─StreamAgg(Build) 3.00 root group by:test.t3.a, funcs:firstrow(test.t3.a)->test.t3.a", - "│ │ └─IndexReader 3.00 root index:IndexFullScan", - "│ │ └─IndexFullScan 3.00 cop[tikv] table:t3, index:a(a) keep order:true", - "│ └─IndexLookUp(Probe) 1.25 root ", - "│ ├─Selection(Build) 1.25 cop[tikv] not(isnull(test.t1.a))", - "│ │ └─IndexRangeScan 1.25 cop[tikv] table:t1, index:a(a) range: decided by [eq(test.t1.a, test.t3.a)], keep order:false, stats:pseudo", - "│ └─TableRowIDScan(Probe) 1.25 cop[tikv] table:t1 keep order:false, stats:pseudo", - "└─IndexLookUp(Probe) 1.25 root ", - " ├─Selection(Build) 1.25 cop[tikv] not(isnull(test.t2.a))", - " │ └─IndexRangeScan 1.25 cop[tikv] table:t2, index:a(a) range: decided by [eq(test.t2.a, test.t1.a)], keep order:false, stats:pseudo", - " └─TableRowIDScan(Probe) 1.25 cop[tikv] table:t2 keep order:false, stats:pseudo" + "│ │ └─IndexReader 3.00 root index:StreamAgg", + "│ │ └─StreamAgg 3.00 cop[tikv] group by:test.t3.a, ", + "│ │ └─IndexFullScan 3.00 cop[tikv] table:t3, index:a(a) keep order:true", + "│ └─IndexLookUp(Probe) 3.75 root ", + "│ ├─Selection(Build) 3.75 cop[tikv] not(isnull(test.t1.a))", + "│ │ └─IndexRangeScan 3.75 cop[tikv] table:t1, index:a(a) range: decided by [eq(test.t1.a, test.t3.a)], keep order:false, stats:pseudo", + "│ └─TableRowIDScan(Probe) 3.75 cop[tikv] table:t1 keep order:false, stats:pseudo", + "└─IndexLookUp(Probe) 4.69 root ", + " ├─Selection(Build) 4.69 cop[tikv] not(isnull(test.t2.a))", + " │ └─IndexRangeScan 4.69 cop[tikv] table:t2, index:a(a) range: decided by [eq(test.t2.a, test.t1.a)], keep order:false, stats:pseudo", + " └─TableRowIDScan(Probe) 4.69 cop[tikv] table:t2 keep order:false, stats:pseudo" ], "Warning": [ "Warning 1815 We can only use one leading hint at most, when multiple leading hints are used, all leading hints will be invalid" @@ -7368,16 +7382,17 @@ "IndexJoin 4.69 root inner join, inner:IndexLookUp, outer key:test.t1.a, inner key:test.t2.a, equal cond:eq(test.t1.a, test.t2.a)", "├─IndexJoin(Build) 3.75 root inner join, inner:IndexLookUp, outer key:test.t3.a, inner key:test.t1.a, equal cond:eq(test.t3.a, test.t1.a)", "│ ├─StreamAgg(Build) 3.00 root group by:test.t3.a, funcs:firstrow(test.t3.a)->test.t3.a", - "│ │ └─IndexReader 3.00 root index:IndexFullScan", - "│ │ └─IndexFullScan 3.00 cop[tikv] table:t3, index:a(a) keep order:true", - "│ └─IndexLookUp(Probe) 1.25 root ", - "│ ├─Selection(Build) 1.25 cop[tikv] not(isnull(test.t1.a))", - "│ │ └─IndexRangeScan 1.25 cop[tikv] table:t1, index:a(a) range: decided by [eq(test.t1.a, test.t3.a)], keep order:false, stats:pseudo", - "│ └─TableRowIDScan(Probe) 1.25 cop[tikv] table:t1 keep order:false, stats:pseudo", - "└─IndexLookUp(Probe) 1.25 root ", - " ├─Selection(Build) 1.25 cop[tikv] not(isnull(test.t2.a))", - " │ └─IndexRangeScan 1.25 cop[tikv] table:t2, index:a(a) range: decided by [eq(test.t2.a, test.t1.a)], keep order:false, stats:pseudo", - " └─TableRowIDScan(Probe) 1.25 cop[tikv] table:t2 keep order:false, stats:pseudo" + "│ │ └─IndexReader 3.00 root index:StreamAgg", + "│ │ └─StreamAgg 3.00 cop[tikv] group by:test.t3.a, ", + "│ │ └─IndexFullScan 3.00 cop[tikv] table:t3, index:a(a) keep order:true", + "│ └─IndexLookUp(Probe) 3.75 root ", + "│ ├─Selection(Build) 3.75 cop[tikv] not(isnull(test.t1.a))", + "│ │ └─IndexRangeScan 3.75 cop[tikv] table:t1, index:a(a) range: decided by [eq(test.t1.a, test.t3.a)], keep order:false, stats:pseudo", + "│ └─TableRowIDScan(Probe) 3.75 cop[tikv] table:t1 keep order:false, stats:pseudo", + "└─IndexLookUp(Probe) 4.69 root ", + " ├─Selection(Build) 4.69 cop[tikv] not(isnull(test.t2.a))", + " │ └─IndexRangeScan 4.69 cop[tikv] table:t2, index:a(a) range: decided by [eq(test.t2.a, test.t1.a)], keep order:false, stats:pseudo", + " └─TableRowIDScan(Probe) 4.69 cop[tikv] table:t2 keep order:false, stats:pseudo" ], "Warning": [ "Warning 1815 We can only use one leading hint at most, when multiple leading hints are used, all leading hints will be invalid" @@ -7387,8 +7402,8 @@ "SQL": "select /*+ leading(t4) */ * from t1 join t2 on t1.a=t2.a join t4 on t1.b = t4.b where t1.a not in (select t3.a from t3)", "Plan": [ "HashJoin 12475.01 root CARTESIAN anti semi join, other cond:eq(test.t1.a, test.t3.a)", - "├─TableReader(Build) 3.00 root data:TableFullScan", - "│ └─TableFullScan 3.00 cop[tikv] table:t3 keep order:false", + "├─IndexReader(Build) 3.00 root index:IndexFullScan", + "│ └─IndexFullScan 3.00 cop[tikv] table:t3, index:a(a) keep order:false", "└─Projection(Probe) 15593.77 root test.t1.a, test.t1.b, test.t2.a, test.t2.b, test.t4.a, test.t4.b", " └─HashJoin 15593.77 root inner join, equal:[eq(test.t1.a, test.t2.a)]", " ├─TableReader(Build) 9990.00 root data:Selection", @@ -7408,8 +7423,8 @@ "SQL": "select /*+ leading(t3@sel_2) */ * from t1 join t2 on t1.a=t2.a where t1.a not in (select t3.a from t3)", "Plan": [ "HashJoin 9990.00 root CARTESIAN anti semi join, other cond:eq(test.t1.a, test.t3.a)", - "├─TableReader(Build) 3.00 root data:TableFullScan", - "│ └─TableFullScan 3.00 cop[tikv] table:t3 keep order:false", + "├─IndexReader(Build) 3.00 root index:IndexFullScan", + "│ └─IndexFullScan 3.00 cop[tikv] table:t3, index:a(a) keep order:false", "└─HashJoin(Probe) 12487.50 root inner join, equal:[eq(test.t1.a, test.t2.a)]", " ├─TableReader(Build) 9990.00 root data:Selection", " │ └─Selection 9990.00 cop[tikv] not(isnull(test.t2.a))", @@ -7426,8 +7441,8 @@ "SQL": "select /*+ leading(t2, t3@sel_2) */ * from t1 join t2 on t1.a=t2.a where t1.a not in (select t3.a from t3)", "Plan": [ "HashJoin 9990.00 root CARTESIAN anti semi join, other cond:eq(test.t1.a, test.t3.a)", - "├─TableReader(Build) 3.00 root data:TableFullScan", - "│ └─TableFullScan 3.00 cop[tikv] table:t3 keep order:false", + "├─IndexReader(Build) 3.00 root index:IndexFullScan", + "│ └─IndexFullScan 3.00 cop[tikv] table:t3, index:a(a) keep order:false", "└─HashJoin(Probe) 12487.50 root inner join, equal:[eq(test.t1.a, test.t2.a)]", " ├─TableReader(Build) 9990.00 root data:Selection", " │ └─Selection 9990.00 cop[tikv] not(isnull(test.t2.a))", @@ -7445,8 +7460,8 @@ "SQL": "select /*+ leading(t1, t3@sel_2) */ * from t1 join t2 on t1.a=t2.a where t1.a not in (select t3.a from t3)", "Plan": [ "HashJoin 9990.00 root CARTESIAN anti semi join, other cond:eq(test.t1.a, test.t3.a)", - "├─TableReader(Build) 3.00 root data:TableFullScan", - "│ └─TableFullScan 3.00 cop[tikv] table:t3 keep order:false", + "├─IndexReader(Build) 3.00 root index:IndexFullScan", + "│ └─IndexFullScan 3.00 cop[tikv] table:t3, index:a(a) keep order:false", "└─HashJoin(Probe) 12487.50 root inner join, equal:[eq(test.t1.a, test.t2.a)]", " ├─TableReader(Build) 9990.00 root data:Selection", " │ └─Selection 9990.00 cop[tikv] not(isnull(test.t2.a))", @@ -7464,8 +7479,8 @@ "SQL": "select /*+ leading(t3@sel_2, t2) */ * from t1 join t2 on t1.a=t2.a where t1.a not in (select t3.a from t3)", "Plan": [ "HashJoin 9990.00 root CARTESIAN anti semi join, other cond:eq(test.t1.a, test.t3.a)", - "├─TableReader(Build) 3.00 root data:TableFullScan", - "│ └─TableFullScan 3.00 cop[tikv] table:t3 keep order:false", + "├─IndexReader(Build) 3.00 root index:IndexFullScan", + "│ └─IndexFullScan 3.00 cop[tikv] table:t3, index:a(a) keep order:false", "└─HashJoin(Probe) 12487.50 root inner join, equal:[eq(test.t1.a, test.t2.a)]", " ├─TableReader(Build) 9990.00 root data:Selection", " │ └─Selection 9990.00 cop[tikv] not(isnull(test.t2.a))", @@ -7483,8 +7498,8 @@ "SQL": "select /*+ leading(t3@sel_2, t1) */ * from t1 join t2 on t1.a=t2.a where t1.a not in (select t3.a from t3)", "Plan": [ "HashJoin 9990.00 root CARTESIAN anti semi join, other cond:eq(test.t1.a, test.t3.a)", - "├─TableReader(Build) 3.00 root data:TableFullScan", - "│ └─TableFullScan 3.00 cop[tikv] table:t3 keep order:false", + "├─IndexReader(Build) 3.00 root index:IndexFullScan", + "│ └─IndexFullScan 3.00 cop[tikv] table:t3, index:a(a) keep order:false", "└─HashJoin(Probe) 12487.50 root inner join, equal:[eq(test.t1.a, test.t2.a)]", " ├─TableReader(Build) 9990.00 root data:Selection", " │ └─Selection 9990.00 cop[tikv] not(isnull(test.t2.a))", @@ -7714,9 +7729,9 @@ "└─IndexJoin 3.75 root inner join, inner:IndexReader, outer key:test.t3.a, inner key:test.t1.a, equal cond:eq(test.t3.a, test.t1.a)", " ├─IndexReader(Build) 3.00 root index:IndexFullScan", " │ └─IndexFullScan 3.00 cop[tikv] table:t3, index:a(a) keep order:false", - " └─IndexReader(Probe) 1.25 root index:Selection", - " └─Selection 1.25 cop[tikv] not(isnull(test.t1.a))", - " └─IndexRangeScan 1.25 cop[tikv] table:t1, index:a(a) range: decided by [eq(test.t1.a, test.t3.a)], keep order:false, stats:pseudo" + " └─IndexReader(Probe) 3.75 root index:Selection", + " └─Selection 3.75 cop[tikv] not(isnull(test.t1.a))", + " └─IndexRangeScan 3.75 cop[tikv] table:t1, index:a(a) range: decided by [eq(test.t1.a, test.t3.a)], keep order:false, stats:pseudo" ], "Warning": null }, @@ -7727,9 +7742,9 @@ "└─IndexJoin 3.75 root inner join, inner:IndexReader, outer key:test.t3.a, inner key:test.t1.a, equal cond:eq(test.t3.a, test.t1.a)", " ├─IndexReader(Build) 3.00 root index:IndexFullScan", " │ └─IndexFullScan 3.00 cop[tikv] table:t3, index:a(a) keep order:false", - " └─IndexReader(Probe) 1.25 root index:Selection", - " └─Selection 1.25 cop[tikv] not(isnull(test.t1.a))", - " └─IndexRangeScan 1.25 cop[tikv] table:t1, index:a(a) range: decided by [eq(test.t1.a, test.t3.a)], keep order:false, stats:pseudo" + " └─IndexReader(Probe) 3.75 root index:Selection", + " └─Selection 3.75 cop[tikv] not(isnull(test.t1.a))", + " └─IndexRangeScan 3.75 cop[tikv] table:t1, index:a(a) range: decided by [eq(test.t1.a, test.t3.a)], keep order:false, stats:pseudo" ], "Warning": [ "Warning 1815 There are no matching table names for (t2) in optimizer hint /*+ LEADING(t1, t2) */. Maybe you can use the table alias name", @@ -7743,9 +7758,9 @@ "└─IndexJoin 3.75 root inner join, inner:IndexReader, outer key:test.t3.a, inner key:test.t1.a, equal cond:eq(test.t3.a, test.t1.a)", " ├─IndexReader(Build) 3.00 root index:IndexFullScan", " │ └─IndexFullScan 3.00 cop[tikv] table:t3, index:a(a) keep order:false", - " └─IndexReader(Probe) 1.25 root index:Selection", - " └─Selection 1.25 cop[tikv] not(isnull(test.t1.a))", - " └─IndexRangeScan 1.25 cop[tikv] table:t1, index:a(a) range: decided by [eq(test.t1.a, test.t3.a)], keep order:false, stats:pseudo" + " └─IndexReader(Probe) 3.75 root index:Selection", + " └─Selection 3.75 cop[tikv] not(isnull(test.t1.a))", + " └─IndexRangeScan 3.75 cop[tikv] table:t1, index:a(a) range: decided by [eq(test.t1.a, test.t3.a)], keep order:false, stats:pseudo" ], "Warning": null }, @@ -7756,9 +7771,9 @@ "└─IndexJoin 3.75 root inner join, inner:IndexReader, outer key:test.t3.a, inner key:test.t1.a, equal cond:eq(test.t3.a, test.t1.a)", " ├─IndexReader(Build) 3.00 root index:IndexFullScan", " │ └─IndexFullScan 3.00 cop[tikv] table:t3, index:a(a) keep order:false", - " └─IndexReader(Probe) 1.25 root index:Selection", - " └─Selection 1.25 cop[tikv] not(isnull(test.t1.a))", - " └─IndexRangeScan 1.25 cop[tikv] table:t1, index:a(a) range: decided by [eq(test.t1.a, test.t3.a)], keep order:false, stats:pseudo" + " └─IndexReader(Probe) 3.75 root index:Selection", + " └─Selection 3.75 cop[tikv] not(isnull(test.t1.a))", + " └─IndexRangeScan 3.75 cop[tikv] table:t1, index:a(a) range: decided by [eq(test.t1.a, test.t3.a)], keep order:false, stats:pseudo" ], "Warning": [ "Warning 1815 There are no matching table names for (t2) in optimizer hint /*+ LEADING(t2, t1) */. Maybe you can use the table alias name", @@ -7772,9 +7787,9 @@ "└─IndexJoin 3.75 root inner join, inner:IndexReader, outer key:test.t3.a, inner key:test.t1.a, equal cond:eq(test.t3.a, test.t1.a)", " ├─IndexReader(Build) 3.00 root index:IndexFullScan", " │ └─IndexFullScan 3.00 cop[tikv] table:t3, index:a(a) keep order:false", - " └─IndexReader(Probe) 1.25 root index:Selection", - " └─Selection 1.25 cop[tikv] not(isnull(test.t1.a))", - " └─IndexRangeScan 1.25 cop[tikv] table:t1, index:a(a) range: decided by [eq(test.t1.a, test.t3.a)], keep order:false, stats:pseudo" + " └─IndexReader(Probe) 3.75 root index:Selection", + " └─Selection 3.75 cop[tikv] not(isnull(test.t1.a))", + " └─IndexRangeScan 3.75 cop[tikv] table:t1, index:a(a) range: decided by [eq(test.t1.a, test.t3.a)], keep order:false, stats:pseudo" ], "Warning": [ "Warning 1815 There are no matching table names for (t2) in optimizer hint /*+ LEADING(t2, t3) */. Maybe you can use the table alias name", @@ -7788,9 +7803,9 @@ "└─IndexJoin 3.75 root inner join, inner:IndexReader, outer key:test.t3.a, inner key:test.t1.a, equal cond:eq(test.t3.a, test.t1.a)", " ├─IndexReader(Build) 3.00 root index:IndexFullScan", " │ └─IndexFullScan 3.00 cop[tikv] table:t3, index:a(a) keep order:false", - " └─IndexReader(Probe) 1.25 root index:Selection", - " └─Selection 1.25 cop[tikv] not(isnull(test.t1.a))", - " └─IndexRangeScan 1.25 cop[tikv] table:t1, index:a(a) range: decided by [eq(test.t1.a, test.t3.a)], keep order:false, stats:pseudo" + " └─IndexReader(Probe) 3.75 root index:Selection", + " └─Selection 3.75 cop[tikv] not(isnull(test.t1.a))", + " └─IndexRangeScan 3.75 cop[tikv] table:t1, index:a(a) range: decided by [eq(test.t1.a, test.t3.a)], keep order:false, stats:pseudo" ], "Warning": [ "Warning 1815 There are no matching table names for (t2) in optimizer hint /*+ LEADING(t1, t2) */. Maybe you can use the table alias name", @@ -7804,9 +7819,9 @@ "└─IndexJoin 3.75 root inner join, inner:IndexReader, outer key:test.t3.a, inner key:test.t1.a, equal cond:eq(test.t3.a, test.t1.a)", " ├─IndexReader(Build) 3.00 root index:IndexFullScan", " │ └─IndexFullScan 3.00 cop[tikv] table:t3, index:a(a) keep order:false", - " └─IndexReader(Probe) 1.25 root index:Selection", - " └─Selection 1.25 cop[tikv] not(isnull(test.t1.a))", - " └─IndexRangeScan 1.25 cop[tikv] table:t1, index:a(a) range: decided by [eq(test.t1.a, test.t3.a)], keep order:false, stats:pseudo" + " └─IndexReader(Probe) 3.75 root index:Selection", + " └─Selection 3.75 cop[tikv] not(isnull(test.t1.a))", + " └─IndexRangeScan 3.75 cop[tikv] table:t1, index:a(a) range: decided by [eq(test.t1.a, test.t3.a)], keep order:false, stats:pseudo" ], "Warning": [ "Warning 1815 There are no matching table names for (t2) in optimizer hint /*+ LEADING(t3, t2) */. Maybe you can use the table alias name", @@ -8522,11 +8537,11 @@ "│ ├─TableReader(Build) 9990.00 root data:Selection", "│ │ └─Selection 9990.00 cop[tikv] not(isnull(test.t.a))", "│ │ └─TableFullScan 10000.00 cop[tikv] table:t keep order:false, stats:pseudo", - "│ └─IndexLookUp(Probe) 1.25 root ", - "│ ├─Selection(Build) 1.25 cop[tikv] not(isnull(test.t1.a))", - "│ │ └─IndexRangeScan 1.25 cop[tikv] table:t1, index:a(a) range: decided by [eq(test.t1.a, test.t.a)], keep order:false, stats:pseudo", - "│ └─Selection(Probe) 1.25 cop[tikv] not(isnull(test.t1.b))", - "│ └─TableRowIDScan 1.25 cop[tikv] table:t1 keep order:false, stats:pseudo", + "│ └─IndexLookUp(Probe) 12475.01 root ", + "│ ├─Selection(Build) 12487.50 cop[tikv] not(isnull(test.t1.a))", + "│ │ └─IndexRangeScan 12500.00 cop[tikv] table:t1, index:a(a) range: decided by [eq(test.t1.a, test.t.a)], keep order:false, stats:pseudo", + "│ └─Selection(Probe) 12475.01 cop[tikv] not(isnull(test.t1.b))", + "│ └─TableRowIDScan 12487.50 cop[tikv] table:t1 keep order:false, stats:pseudo", "└─HashJoin(Probe) 12487.50 root inner join, equal:[eq(test.t2.b, test.t3.b)]", " ├─TableReader(Build) 9990.00 root data:Selection", " │ └─Selection 9990.00 cop[tikv] not(isnull(test.t3.b))", @@ -8570,11 +8585,11 @@ " │ ├─TableReader(Build) 9990.00 root data:Selection", " │ │ └─Selection 9990.00 cop[tikv] not(isnull(test.t.a))", " │ │ └─TableFullScan 10000.00 cop[tikv] table:t keep order:false, stats:pseudo", - " │ └─IndexLookUp(Probe) 1.25 root ", - " │ ├─Selection(Build) 1.25 cop[tikv] not(isnull(test.t1.a))", - " │ │ └─IndexRangeScan 1.25 cop[tikv] table:t1, index:a(a) range: decided by [eq(test.t1.a, test.t.a)], keep order:false, stats:pseudo", - " │ └─Selection(Probe) 1.25 cop[tikv] not(isnull(test.t1.b))", - " │ └─TableRowIDScan 1.25 cop[tikv] table:t1 keep order:false, stats:pseudo", + " │ └─IndexLookUp(Probe) 12475.01 root ", + " │ ├─Selection(Build) 12487.50 cop[tikv] not(isnull(test.t1.a))", + " │ │ └─IndexRangeScan 12500.00 cop[tikv] table:t1, index:a(a) range: decided by [eq(test.t1.a, test.t.a)], keep order:false, stats:pseudo", + " │ └─Selection(Probe) 12475.01 cop[tikv] not(isnull(test.t1.b))", + " │ └─TableRowIDScan 12487.50 cop[tikv] table:t1 keep order:false, stats:pseudo", " └─HashJoin(Probe) 12487.50 root inner join, equal:[eq(test.t3.b, test.t2.b)]", " ├─TableReader(Build) 9990.00 root data:Selection", " │ └─Selection 9990.00 cop[tikv] not(isnull(test.t2.b))", @@ -8729,11 +8744,11 @@ " └─Sort(Probe) 12487.50 root test.t1.b", " └─HashJoin 12487.50 root right outer join, equal:[eq(test.t.a, test.t1.a)]", " ├─TableReader(Build) 9990.00 root data:Selection", - " │ └─Selection 9990.00 cop[tikv] not(isnull(test.t.a))", - " │ └─TableFullScan 10000.00 cop[tikv] table:t keep order:false, stats:pseudo", + " │ └─Selection 9990.00 cop[tikv] not(isnull(test.t1.b))", + " │ └─TableFullScan 10000.00 cop[tikv] table:t1 keep order:false, stats:pseudo", " └─TableReader(Probe) 9990.00 root data:Selection", - " └─Selection 9990.00 cop[tikv] not(isnull(test.t1.b))", - " └─TableFullScan 10000.00 cop[tikv] table:t1 keep order:false, stats:pseudo" + " └─Selection 9990.00 cop[tikv] not(isnull(test.t.a))", + " └─TableFullScan 10000.00 cop[tikv] table:t keep order:false, stats:pseudo" ], "Warning": null }, @@ -8753,11 +8768,11 @@ " └─Sort(Probe) 12487.50 root test.t1.b", " └─HashJoin 12487.50 root right outer join, equal:[eq(test.t.a, test.t1.a)]", " ├─TableReader(Build) 9990.00 root data:Selection", - " │ └─Selection 9990.00 cop[tikv] not(isnull(test.t.a))", - " │ └─TableFullScan 10000.00 cop[tikv] table:t keep order:false, stats:pseudo", + " │ └─Selection 9990.00 cop[tikv] not(isnull(test.t1.b))", + " │ └─TableFullScan 10000.00 cop[tikv] table:t1 keep order:false, stats:pseudo", " └─TableReader(Probe) 9990.00 root data:Selection", - " └─Selection 9990.00 cop[tikv] not(isnull(test.t1.b))", - " └─TableFullScan 10000.00 cop[tikv] table:t1 keep order:false, stats:pseudo" + " └─Selection 9990.00 cop[tikv] not(isnull(test.t.a))", + " └─TableFullScan 10000.00 cop[tikv] table:t keep order:false, stats:pseudo" ], "Warning": null }, @@ -8776,11 +8791,11 @@ " │ └─TableFullScan 10000.00 cop[tikv] table:t2 keep order:false, stats:pseudo", " └─HashJoin(Probe) 12487.50 root right outer join, equal:[eq(test.t.a, test.t1.a)]", " ├─TableReader(Build) 9990.00 root data:Selection", - " │ └─Selection 9990.00 cop[tikv] not(isnull(test.t.a))", - " │ └─TableFullScan 10000.00 cop[tikv] table:t keep order:false, stats:pseudo", + " │ └─Selection 9990.00 cop[tikv] not(isnull(test.t1.b))", + " │ └─TableFullScan 10000.00 cop[tikv] table:t1 keep order:false, stats:pseudo", " └─TableReader(Probe) 9990.00 root data:Selection", - " └─Selection 9990.00 cop[tikv] not(isnull(test.t1.b))", - " └─TableFullScan 10000.00 cop[tikv] table:t1 keep order:false, stats:pseudo" + " └─Selection 9990.00 cop[tikv] not(isnull(test.t.a))", + " └─TableFullScan 10000.00 cop[tikv] table:t keep order:false, stats:pseudo" ], "Warning": [ "Warning 1815 leading hint is inapplicable, check the join type or the join algorithm hint" @@ -8821,11 +8836,11 @@ " │ ├─TableReader(Build) 9990.00 root data:Selection", " │ │ └─Selection 9990.00 cop[tikv] not(isnull(test.t.a))", " │ │ └─TableFullScan 10000.00 cop[tikv] table:t keep order:false, stats:pseudo", - " │ └─IndexLookUp(Probe) 1.25 root ", - " │ ├─Selection(Build) 1.25 cop[tikv] not(isnull(test.t1.a))", - " │ │ └─IndexRangeScan 1.25 cop[tikv] table:t1, index:a(a) range: decided by [eq(test.t1.a, test.t.a)], keep order:false, stats:pseudo", - " │ └─Selection(Probe) 1.25 cop[tikv] not(isnull(test.t1.b))", - " │ └─TableRowIDScan 1.25 cop[tikv] table:t1 keep order:false, stats:pseudo", + " │ └─IndexLookUp(Probe) 12475.01 root ", + " │ ├─Selection(Build) 12487.50 cop[tikv] not(isnull(test.t1.a))", + " │ │ └─IndexRangeScan 12500.00 cop[tikv] table:t1, index:a(a) range: decided by [eq(test.t1.a, test.t.a)], keep order:false, stats:pseudo", + " │ └─Selection(Probe) 12475.01 cop[tikv] not(isnull(test.t1.b))", + " │ └─TableRowIDScan 12487.50 cop[tikv] table:t1 keep order:false, stats:pseudo", " └─HashJoin(Probe) 12487.50 root inner join, equal:[eq(test.t2.b, test.t3.b)]", " ├─TableReader(Build) 9990.00 root data:Selection", " │ └─Selection 9990.00 cop[tikv] not(isnull(test.t3.b))", @@ -8866,12 +8881,12 @@ "│ └─Selection 9980.01 cop[tikv] not(isnull(test.t3.a)), not(isnull(test.t3.b))", "│ └─TableFullScan 10000.00 cop[tikv] table:t3 keep order:false, stats:pseudo", "└─HashJoin(Probe) 12475.01 root left outer join, equal:[eq(test.t1.a, test.t2.a)]", - " ├─TableReader(Build) 9990.00 root data:Selection", - " │ └─Selection 9990.00 cop[tikv] not(isnull(test.t2.a))", - " │ └─TableFullScan 10000.00 cop[tikv] table:t2 keep order:false, stats:pseudo", - " └─TableReader(Probe) 9980.01 root data:Selection", - " └─Selection 9980.01 cop[tikv] not(isnull(test.t1.a)), not(isnull(test.t1.b))", - " └─TableFullScan 10000.00 cop[tikv] table:t1 keep order:false, stats:pseudo" + " ├─TableReader(Build) 9980.01 root data:Selection", + " │ └─Selection 9980.01 cop[tikv] not(isnull(test.t1.a)), not(isnull(test.t1.b))", + " │ └─TableFullScan 10000.00 cop[tikv] table:t1 keep order:false, stats:pseudo", + " └─TableReader(Probe) 9990.00 root data:Selection", + " └─Selection 9990.00 cop[tikv] not(isnull(test.t2.a))", + " └─TableFullScan 10000.00 cop[tikv] table:t2 keep order:false, stats:pseudo" ], "Warning": [ "Warning 1815 There are no matching table names for (t3) in optimizer hint /*+ LEADING(t3) */. Maybe you can use the table alias name" @@ -9194,12 +9209,12 @@ " │ └─Selection 9990.00 cop[tikv] not(isnull(test.t4.b))", " │ └─TableFullScan 10000.00 cop[tikv] table:t4 keep order:false, stats:pseudo", " └─HashJoin(Probe) 12475.01 root left outer join, equal:[eq(test.t1.a, test.t2.a)]", - " ├─TableReader(Build) 9990.00 root data:Selection", - " │ └─Selection 9990.00 cop[tikv] not(isnull(test.t2.a))", - " │ └─TableFullScan 10000.00 cop[tikv] table:t2 keep order:false, stats:pseudo", - " └─TableReader(Probe) 9980.01 root data:Selection", - " └─Selection 9980.01 cop[tikv] not(isnull(test.t1.a)), not(isnull(test.t1.b))", - " └─TableFullScan 10000.00 cop[tikv] table:t1 keep order:false, stats:pseudo" + " ├─TableReader(Build) 9980.01 root data:Selection", + " │ └─Selection 9980.01 cop[tikv] not(isnull(test.t1.a)), not(isnull(test.t1.b))", + " │ └─TableFullScan 10000.00 cop[tikv] table:t1 keep order:false, stats:pseudo", + " └─TableReader(Probe) 9990.00 root data:Selection", + " └─Selection 9990.00 cop[tikv] not(isnull(test.t2.a))", + " └─TableFullScan 10000.00 cop[tikv] table:t2 keep order:false, stats:pseudo" ], "Warning": [ "Warning 1815 There are no matching table names for (t3) in optimizer hint /*+ LEADING(t3) */. Maybe you can use the table alias name" @@ -9220,12 +9235,12 @@ " │ └─Selection 9990.00 cop[tikv] not(isnull(test.t4.b))", " │ └─TableFullScan 10000.00 cop[tikv] table:t4 keep order:false, stats:pseudo", " └─HashJoin(Probe) 12475.01 root left outer join, equal:[eq(test.t1.a, test.t2.a)]", - " ├─TableReader(Build) 9990.00 root data:Selection", - " │ └─Selection 9990.00 cop[tikv] not(isnull(test.t2.a))", - " │ └─TableFullScan 10000.00 cop[tikv] table:t2 keep order:false, stats:pseudo", - " └─TableReader(Probe) 9980.01 root data:Selection", - " └─Selection 9980.01 cop[tikv] not(isnull(test.t1.a)), not(isnull(test.t1.b))", - " └─TableFullScan 10000.00 cop[tikv] table:t1 keep order:false, stats:pseudo" + " ├─TableReader(Build) 9980.01 root data:Selection", + " │ └─Selection 9980.01 cop[tikv] not(isnull(test.t1.a)), not(isnull(test.t1.b))", + " │ └─TableFullScan 10000.00 cop[tikv] table:t1 keep order:false, stats:pseudo", + " └─TableReader(Probe) 9990.00 root data:Selection", + " └─Selection 9990.00 cop[tikv] not(isnull(test.t2.a))", + " └─TableFullScan 10000.00 cop[tikv] table:t2 keep order:false, stats:pseudo" ], "Warning": [ "Warning 1815 There are no matching table names for (t3) in optimizer hint /*+ LEADING(t3, t1) */. Maybe you can use the table alias name", @@ -9247,12 +9262,12 @@ " │ └─Selection 9990.00 cop[tikv] not(isnull(test.t4.b))", " │ └─TableFullScan 10000.00 cop[tikv] table:t4 keep order:false, stats:pseudo", " └─HashJoin(Probe) 12475.01 root left outer join, equal:[eq(test.t1.a, test.t2.a)]", - " ├─TableReader(Build) 9990.00 root data:Selection", - " │ └─Selection 9990.00 cop[tikv] not(isnull(test.t2.a))", - " │ └─TableFullScan 10000.00 cop[tikv] table:t2 keep order:false, stats:pseudo", - " └─TableReader(Probe) 9980.01 root data:Selection", - " └─Selection 9980.01 cop[tikv] not(isnull(test.t1.a)), not(isnull(test.t1.b))", - " └─TableFullScan 10000.00 cop[tikv] table:t1 keep order:false, stats:pseudo" + " ├─TableReader(Build) 9980.01 root data:Selection", + " │ └─Selection 9980.01 cop[tikv] not(isnull(test.t1.a)), not(isnull(test.t1.b))", + " │ └─TableFullScan 10000.00 cop[tikv] table:t1 keep order:false, stats:pseudo", + " └─TableReader(Probe) 9990.00 root data:Selection", + " └─Selection 9990.00 cop[tikv] not(isnull(test.t2.a))", + " └─TableFullScan 10000.00 cop[tikv] table:t2 keep order:false, stats:pseudo" ], "Warning": [ "Warning 1815 There are no matching table names for (t3) in optimizer hint /*+ LEADING(t4, t3) */. Maybe you can use the table alias name", @@ -9299,12 +9314,12 @@ " │ └─Selection 9990.00 cop[tikv] not(isnull(test.t4.b))", " │ └─TableFullScan 10000.00 cop[tikv] table:t4 keep order:false, stats:pseudo", " └─HashJoin(Probe) 12475.01 root left outer join, equal:[eq(test.t1.a, test.t2.a)]", - " ├─TableReader(Build) 9990.00 root data:Selection", - " │ └─Selection 9990.00 cop[tikv] not(isnull(test.t2.a))", - " │ └─TableFullScan 10000.00 cop[tikv] table:t2 keep order:false, stats:pseudo", - " └─TableReader(Probe) 9980.01 root data:Selection", - " └─Selection 9980.01 cop[tikv] not(isnull(test.t1.a)), not(isnull(test.t1.b))", - " └─TableFullScan 10000.00 cop[tikv] table:t1 keep order:false, stats:pseudo" + " ├─TableReader(Build) 9980.01 root data:Selection", + " │ └─Selection 9980.01 cop[tikv] not(isnull(test.t1.a)), not(isnull(test.t1.b))", + " │ └─TableFullScan 10000.00 cop[tikv] table:t1 keep order:false, stats:pseudo", + " └─TableReader(Probe) 9990.00 root data:Selection", + " └─Selection 9990.00 cop[tikv] not(isnull(test.t2.a))", + " └─TableFullScan 10000.00 cop[tikv] table:t2 keep order:false, stats:pseudo" ], "Warning": [ "Warning 1815 There are no matching table names for (t3) in optimizer hint /*+ LEADING(t3) */. Maybe you can use the table alias name" @@ -9342,9 +9357,10 @@ "Plan": [ "Projection 15593.77 root test.t1.a, test.t1.b, test.t2.a, test.t2.b, test.t4.a, test.t4.b", "└─HashJoin 15593.77 root inner join, equal:[eq(test.t1.a, test.t3.a)]", - " ├─HashAgg(Build) 7992.00 root group by:test.t3.a, funcs:firstrow(test.t3.a)->test.t3.a", - " │ └─IndexReader 9990.00 root index:IndexFullScan", - " │ └─IndexFullScan 9990.00 cop[tikv] table:t3, index:a(a) keep order:false, stats:pseudo", + " ├─StreamAgg(Build) 7992.00 root group by:test.t3.a, funcs:firstrow(test.t3.a)->test.t3.a", + " │ └─IndexReader 7992.00 root index:StreamAgg", + " │ └─StreamAgg 7992.00 cop[tikv] group by:test.t3.a, ", + " │ └─IndexFullScan 9990.00 cop[tikv] table:t3, index:a(a) keep order:true, stats:pseudo", " └─HashJoin(Probe) 15593.77 root inner join, equal:[eq(test.t1.a, test.t2.a)]", " ├─TableReader(Build) 9990.00 root data:Selection", " │ └─Selection 9990.00 cop[tikv] not(isnull(test.t2.a))", @@ -9363,16 +9379,17 @@ "SQL": "select /*+ leading(t3@sel_2) */ * from t1 left join t2 on t1.a=t2.a where t1.a in (select t3.a from t3)", "Plan": [ "HashJoin 12487.50 root left outer join, equal:[eq(test.t1.a, test.t2.a)]", - "├─TableReader(Build) 9990.00 root data:Selection", - "│ └─Selection 9990.00 cop[tikv] not(isnull(test.t2.a))", - "│ └─TableFullScan 10000.00 cop[tikv] table:t2 keep order:false, stats:pseudo", - "└─HashJoin(Probe) 9990.00 root inner join, equal:[eq(test.t3.a, test.t1.a)]", - " ├─HashAgg(Build) 7992.00 root group by:test.t3.a, funcs:firstrow(test.t3.a)->test.t3.a", - " │ └─IndexReader 9990.00 root index:IndexFullScan", - " │ └─IndexFullScan 9990.00 cop[tikv] table:t3, index:a(a) keep order:false, stats:pseudo", - " └─TableReader(Probe) 9990.00 root data:Selection", - " └─Selection 9990.00 cop[tikv] not(isnull(test.t1.a))", - " └─TableFullScan 10000.00 cop[tikv] table:t1 keep order:false, stats:pseudo" + "├─HashJoin(Build) 9990.00 root inner join, equal:[eq(test.t3.a, test.t1.a)]", + "│ ├─StreamAgg(Build) 7992.00 root group by:test.t3.a, funcs:firstrow(test.t3.a)->test.t3.a", + "│ │ └─IndexReader 7992.00 root index:StreamAgg", + "│ │ └─StreamAgg 7992.00 cop[tikv] group by:test.t3.a, ", + "│ │ └─IndexFullScan 9990.00 cop[tikv] table:t3, index:a(a) keep order:true, stats:pseudo", + "│ └─TableReader(Probe) 9990.00 root data:Selection", + "│ └─Selection 9990.00 cop[tikv] not(isnull(test.t1.a))", + "│ └─TableFullScan 10000.00 cop[tikv] table:t1 keep order:false, stats:pseudo", + "└─TableReader(Probe) 9990.00 root data:Selection", + " └─Selection 9990.00 cop[tikv] not(isnull(test.t2.a))", + " └─TableFullScan 10000.00 cop[tikv] table:t2 keep order:false, stats:pseudo" ], "Warning": null }, @@ -9380,9 +9397,10 @@ "SQL": "select /*+ leading(t2, t3@sel_2) */ * from t1 join t2 on t1.a=t2.a where t1.a in (select t3.a from t3)", "Plan": [ "HashJoin 12487.50 root inner join, equal:[eq(test.t1.a, test.t3.a)]", - "├─HashAgg(Build) 7992.00 root group by:test.t3.a, funcs:firstrow(test.t3.a)->test.t3.a", - "│ └─IndexReader 9990.00 root index:IndexFullScan", - "│ └─IndexFullScan 9990.00 cop[tikv] table:t3, index:a(a) keep order:false, stats:pseudo", + "├─StreamAgg(Build) 7992.00 root group by:test.t3.a, funcs:firstrow(test.t3.a)->test.t3.a", + "│ └─IndexReader 7992.00 root index:StreamAgg", + "│ └─StreamAgg 7992.00 cop[tikv] group by:test.t3.a, ", + "│ └─IndexFullScan 9990.00 cop[tikv] table:t3, index:a(a) keep order:true, stats:pseudo", "└─HashJoin(Probe) 12487.50 root inner join, equal:[eq(test.t1.a, test.t2.a)]", " ├─TableReader(Build) 9990.00 root data:Selection", " │ └─Selection 9990.00 cop[tikv] not(isnull(test.t2.a))", @@ -9550,11 +9568,11 @@ "│ └─TableFullScan 10000.00 cop[tikv] table:t3 keep order:false, stats:pseudo", "└─HashJoin(Probe) 12487.50 root right outer join, equal:[eq(test.t4.a, test.t2.a)]", " ├─TableReader(Build) 9990.00 root data:Selection", - " │ └─Selection 9990.00 cop[tikv] not(isnull(test.t4.a))", - " │ └─TableFullScan 10000.00 cop[tikv] table:t4 keep order:false, stats:pseudo", + " │ └─Selection 9990.00 cop[tikv] not(isnull(test.t2.b))", + " │ └─TableFullScan 10000.00 cop[tikv] table:t2 keep order:false, stats:pseudo", " └─TableReader(Probe) 9990.00 root data:Selection", - " └─Selection 9990.00 cop[tikv] not(isnull(test.t2.b))", - " └─TableFullScan 10000.00 cop[tikv] table:t2 keep order:false, stats:pseudo" + " └─Selection 9990.00 cop[tikv] not(isnull(test.t4.a))", + " └─TableFullScan 10000.00 cop[tikv] table:t4 keep order:false, stats:pseudo" ], "Warning": [ "Warning 1815 There are no matching table names for (t4) in optimizer hint /*+ LEADING(t2, t4) */. Maybe you can use the table alias name" diff --git a/planner/core/testdata/ordered_result_mode_suite_out.json b/planner/core/testdata/ordered_result_mode_suite_out.json index 1d724eae8eca5..f56ac82c7861d 100644 --- a/planner/core/testdata/ordered_result_mode_suite_out.json +++ b/planner/core/testdata/ordered_result_mode_suite_out.json @@ -86,11 +86,11 @@ { "Plan": [ "Sort_9 12500.00 root test.t.a, test.t.a", - "└─HashJoin_30 12500.00 root inner join, equal:[eq(test.t.a, test.t.a)]", - " ├─IndexReader_43(Build) 10000.00 root index:IndexFullScan_42", - " │ └─IndexFullScan_42 10000.00 cop[tikv] table:t2, index:b(b) keep order:false, stats:pseudo", - " └─IndexReader_39(Probe) 10000.00 root index:IndexFullScan_38", - " └─IndexFullScan_38 10000.00 cop[tikv] table:t1, index:b(b) keep order:false, stats:pseudo" + "└─MergeJoin_11 12500.00 root inner join, left key:test.t.a, right key:test.t.a", + " ├─TableReader_35(Build) 10000.00 root data:TableFullScan_34", + " │ └─TableFullScan_34 10000.00 cop[tikv] table:t2 keep order:true, stats:pseudo", + " └─TableReader_33(Probe) 10000.00 root data:TableFullScan_32", + " └─TableFullScan_32 10000.00 cop[tikv] table:t1 keep order:true, stats:pseudo" ] }, { @@ -183,12 +183,13 @@ { "Plan": [ "Sort_11 9990.00 root test.t1.a, test.t1.b, test.t1.c, test.t1.d", - "└─HashJoin_23 9990.00 root inner join, equal:[eq(test.t1.a, test.t2.b)]", - " ├─HashAgg_36(Build) 7992.00 root group by:test.t2.b, funcs:firstrow(test.t2.b)->test.t2.b", - " │ └─IndexReader_43 9990.00 root index:IndexFullScan_42", - " │ └─IndexFullScan_42 9990.00 cop[tikv] table:t2, index:b(b) keep order:false, stats:pseudo", - " └─TableReader_47(Probe) 10000.00 root data:TableFullScan_46", - " └─TableFullScan_46 10000.00 cop[tikv] table:t1 keep order:false, stats:pseudo" + "└─MergeJoin_13 9990.00 root inner join, left key:test.t1.a, right key:test.t2.b", + " ├─StreamAgg_30(Build) 7992.00 root group by:test.t2.b, funcs:firstrow(test.t2.b)->test.t2.b", + " │ └─IndexReader_31 7992.00 root index:StreamAgg_27", + " │ └─StreamAgg_27 7992.00 cop[tikv] group by:test.t2.b, ", + " │ └─IndexFullScan_29 9990.00 cop[tikv] table:t2, index:b(b) keep order:true, stats:pseudo", + " └─TableReader_26(Probe) 10000.00 root data:TableFullScan_25", + " └─TableFullScan_25 10000.00 cop[tikv] table:t1 keep order:true, stats:pseudo" ] }, { @@ -309,11 +310,11 @@ { "Plan": [ "Sort_8 12500.00 root test.t1.a, test.t1.b, test.t1.c, test.t1.d", - "└─HashJoin_20 12500.00 root left outer join, equal:[eq(test.t1.a, test.t2.a)]", - " ├─IndexReader_31(Build) 10000.00 root index:IndexFullScan_30", - " │ └─IndexFullScan_30 10000.00 cop[tikv] table:t2, index:b(b) keep order:false, stats:pseudo", - " └─TableReader_27(Probe) 10000.00 root data:TableFullScan_26", - " └─TableFullScan_26 10000.00 cop[tikv] table:t1 keep order:false, stats:pseudo" + "└─MergeJoin_10 12500.00 root left outer join, left key:test.t1.a, right key:test.t2.a", + " ├─TableReader_25(Build) 10000.00 root data:TableFullScan_24", + " │ └─TableFullScan_24 10000.00 cop[tikv] table:t2 keep order:true, stats:pseudo", + " └─TableReader_23(Probe) 10000.00 root data:TableFullScan_22", + " └─TableFullScan_22 10000.00 cop[tikv] table:t1 keep order:true, stats:pseudo" ] }, { diff --git a/planner/core/testdata/partition_pruner_out.json b/planner/core/testdata/partition_pruner_out.json index 7692aec35cd31..c16109a17bbc2 100644 --- a/planner/core/testdata/partition_pruner_out.json +++ b/planner/core/testdata/partition_pruner_out.json @@ -802,7 +802,7 @@ "1" ], "Plan": [ - "StreamAgg 1.00 root funcs:count(1)->Column#9", + "HashAgg 1.00 root funcs:count(1)->Column#9", "└─HashJoin 4.00 root inner join, equal:[eq(test_partition.t6.b, test_partition.t5.b)]", " ├─IndexReader(Build) 4.00 root partition:p0,p1 index:Selection", " │ └─Selection 4.00 cop[tikv] not(isnull(test_partition.t5.b))", @@ -818,14 +818,14 @@ "1" ], "Plan": [ - "StreamAgg 1.00 root funcs:count(1)->Column#9", + "HashAgg 1.00 root funcs:count(1)->Column#9", "└─IndexJoin 4.00 root inner join, inner:IndexReader, outer key:test_partition.t6.b, inner key:test_partition.t5.b, equal cond:eq(test_partition.t6.b, test_partition.t5.b)", " ├─IndexReader(Build) 4.00 root partition:p0 index:Selection", " │ └─Selection 4.00 cop[tikv] not(isnull(test_partition.t6.b))", " │ └─IndexRangeScan 4.00 cop[tikv] table:t6, index:a(a, b) range:[1 1,1 1], [1 6,1 6], [2 1,2 1], [2 6,2 6], keep order:false, stats:pseudo", - " └─IndexReader(Probe) 1.25 root partition:p0,p1 index:Selection", - " └─Selection 1.25 cop[tikv] in(test_partition.t5.b, 1, 6), not(isnull(test_partition.t5.b))", - " └─IndexRangeScan 625.00 cop[tikv] table:t5, index:a(a, b) range: decided by [eq(test_partition.t5.b, test_partition.t6.b) in(test_partition.t5.a, 1, 6)], keep order:false, stats:pseudo" + " └─IndexReader(Probe) 5.00 root partition:p0,p1 index:Selection", + " └─Selection 5.00 cop[tikv] in(test_partition.t5.b, 1, 6), not(isnull(test_partition.t5.b))", + " └─IndexRangeScan 2497.50 cop[tikv] table:t5, index:a(a, b) range: decided by [eq(test_partition.t5.b, test_partition.t6.b) in(test_partition.t5.a, 1, 6)], keep order:false, stats:pseudo" ] }, { @@ -834,14 +834,14 @@ "1" ], "Plan": [ - "StreamAgg 1.00 root funcs:count(1)->Column#9", + "HashAgg 1.00 root funcs:count(1)->Column#9", "└─IndexHashJoin 4.00 root inner join, inner:IndexReader, outer key:test_partition.t6.b, inner key:test_partition.t5.b, equal cond:eq(test_partition.t6.b, test_partition.t5.b)", " ├─IndexReader(Build) 4.00 root partition:p0 index:Selection", " │ └─Selection 4.00 cop[tikv] not(isnull(test_partition.t6.b))", " │ └─IndexRangeScan 4.00 cop[tikv] table:t6, index:a(a, b) range:[1 1,1 1], [1 6,1 6], [2 1,2 1], [2 6,2 6], keep order:false, stats:pseudo", - " └─IndexReader(Probe) 1.25 root partition:p0,p1 index:Selection", - " └─Selection 1.25 cop[tikv] in(test_partition.t5.b, 1, 6), not(isnull(test_partition.t5.b))", - " └─IndexRangeScan 625.00 cop[tikv] table:t5, index:a(a, b) range: decided by [eq(test_partition.t5.b, test_partition.t6.b) in(test_partition.t5.a, 1, 6)], keep order:false, stats:pseudo" + " └─IndexReader(Probe) 5.00 root partition:p0,p1 index:Selection", + " └─Selection 5.00 cop[tikv] in(test_partition.t5.b, 1, 6), not(isnull(test_partition.t5.b))", + " └─IndexRangeScan 2497.50 cop[tikv] table:t5, index:a(a, b) range: decided by [eq(test_partition.t5.b, test_partition.t6.b) in(test_partition.t5.a, 1, 6)], keep order:false, stats:pseudo" ] }, { @@ -897,9 +897,9 @@ "Plan": [ "Projection 1.00 root Column#5", "└─Sort 1.00 root test_partition.t1.id, test_partition.t1.a", - " └─StreamAgg 1.00 root funcs:count(Column#10)->Column#5, funcs:firstrow(Column#11)->test_partition.t1.id, funcs:firstrow(Column#12)->test_partition.t1.a", - " └─TableReader 1.00 root partition:all data:StreamAgg", - " └─StreamAgg 1.00 cop[tikv] funcs:count(1)->Column#10, funcs:firstrow(test_partition.t1.id)->Column#11, funcs:firstrow(test_partition.t1.a)->Column#12", + " └─HashAgg 1.00 root funcs:count(Column#7)->Column#5, funcs:firstrow(Column#8)->test_partition.t1.id, funcs:firstrow(Column#9)->test_partition.t1.a", + " └─TableReader 1.00 root partition:all data:HashAgg", + " └─HashAgg 1.00 cop[tikv] funcs:count(1)->Column#7, funcs:firstrow(test_partition.t1.id)->Column#8, funcs:firstrow(test_partition.t1.a)->Column#9", " └─TableFullScan 10000.00 cop[tikv] table:t1 keep order:false, stats:pseudo" ], "IndexPlan": [ @@ -934,9 +934,9 @@ "2" ], "Plan": [ - "StreamAgg 1.00 root funcs:count(Column#7)->Column#5", - "└─TableReader 1.00 root partition:p0 data:StreamAgg", - " └─StreamAgg 1.00 cop[tikv] funcs:count(1)->Column#7", + "HashAgg 1.00 root funcs:count(Column#6)->Column#5", + "└─TableReader 1.00 root partition:p0 data:HashAgg", + " └─HashAgg 1.00 cop[tikv] funcs:count(1)->Column#6", " └─Selection 19.99 cop[tikv] or(eq(test_partition.t1.a, 1), eq(test_partition.t1.b, 2))", " └─TableFullScan 10000.00 cop[tikv] table:t1 keep order:false, stats:pseudo" ], @@ -1651,9 +1651,9 @@ " │ └─IndexReader 159.84 root partition:p0 index:HashAgg", " │ └─HashAgg 159.84 cop[tikv] group by:test_partition_1.t2.b, ", " │ └─IndexRangeScan 199.80 cop[tikv] table:t2, index:a(a, b, id) range:[1 -inf,1 +inf], [2 -inf,2 +inf], keep order:false, stats:pseudo", - " └─IndexReader(Probe) 1.25 root partition:p0,p1 index:Selection", - " └─Selection 1.25 cop[tikv] not(isnull(test_partition_1.t1.a))", - " └─IndexRangeScan 1.25 cop[tikv] table:t1, index:a(a, b, id) range: decided by [eq(test_partition_1.t1.a, test_partition_1.t2.b)], keep order:false, stats:pseudo" + " └─IndexReader(Probe) 199.80 root partition:p0,p1 index:Selection", + " └─Selection 199.80 cop[tikv] not(isnull(test_partition_1.t1.a))", + " └─IndexRangeScan 200.00 cop[tikv] table:t1, index:a(a, b, id) range: decided by [eq(test_partition_1.t1.a, test_partition_1.t2.b)], keep order:false, stats:pseudo" ] }, { @@ -1681,9 +1681,9 @@ " │ └─IndexReader 159.84 root partition:p0 index:HashAgg", " │ └─HashAgg 159.84 cop[tikv] group by:test_partition_1.t1.b, ", " │ └─IndexRangeScan 199.80 cop[tikv] table:t1, index:a(a, b, id) range:[1 -inf,1 +inf], [2 -inf,2 +inf], keep order:false, stats:pseudo", - " └─IndexReader(Probe) 1.25 root partition:p0,p1 index:Selection", - " └─Selection 1.25 cop[tikv] not(isnull(test_partition_1.t1.a))", - " └─IndexRangeScan 1.25 cop[tikv] table:t1, index:a(a, b, id) range: decided by [eq(test_partition_1.t1.a, test_partition_1.t1.b)], keep order:false, stats:pseudo" + " └─IndexReader(Probe) 199.80 root partition:p0,p1 index:Selection", + " └─Selection 199.80 cop[tikv] not(isnull(test_partition_1.t1.a))", + " └─IndexRangeScan 200.00 cop[tikv] table:t1, index:a(a, b, id) range: decided by [eq(test_partition_1.t1.a, test_partition_1.t1.b)], keep order:false, stats:pseudo" ] }, { @@ -1804,9 +1804,9 @@ " ├─IndexReader(Build) 0.40 root partition:p0 index:Selection", " │ └─Selection 0.40 cop[tikv] not(isnull(test_partition_1.t2.b))", " │ └─IndexRangeScan 0.40 cop[tikv] table:t2, index:a(a, b, id) range:[1 1,1 1], [1 6,1 6], [2 1,2 1], [2 6,2 6], keep order:false, stats:pseudo", - " └─IndexReader(Probe) 0.32 root partition:p0,p1 index:Selection", - " └─Selection 0.32 cop[tikv] in(test_partition_1.t1.b, 1, 6), not(isnull(test_partition_1.t1.b))", - " └─IndexRangeScan 160.00 cop[tikv] table:t1, index:a(a, b, id) range: decided by [eq(test_partition_1.t1.b, test_partition_1.t2.b) in(test_partition_1.t1.a, 1, 6)], keep order:false, stats:pseudo" + " └─IndexReader(Probe) 0.13 root partition:p0,p1 index:Selection", + " └─Selection 0.13 cop[tikv] in(test_partition_1.t1.b, 1, 6), not(isnull(test_partition_1.t1.b))", + " └─IndexRangeScan 63.94 cop[tikv] table:t1, index:a(a, b, id) range: decided by [eq(test_partition_1.t1.b, test_partition_1.t2.b) in(test_partition_1.t1.a, 1, 6)], keep order:false, stats:pseudo" ] }, { @@ -1830,9 +1830,9 @@ " ├─IndexReader(Build) 0.40 root partition:p0 index:Selection", " │ └─Selection 0.40 cop[tikv] not(isnull(test_partition_1.t2.b))", " │ └─IndexRangeScan 0.40 cop[tikv] table:t2, index:a(a, b, id) range:[1 1,1 1], [1 6,1 6], [2 1,2 1], [2 6,2 6], keep order:false, stats:pseudo", - " └─IndexReader(Probe) 0.32 root partition:p0,p1 index:Selection", - " └─Selection 0.32 cop[tikv] in(test_partition_1.t1.b, 6, 1), not(isnull(test_partition_1.t1.b))", - " └─IndexRangeScan 160.00 cop[tikv] table:t1, index:a(a, b, id) range: decided by [eq(test_partition_1.t1.b, test_partition_1.t2.b) in(test_partition_1.t1.a, 1, 6)], keep order:false, stats:pseudo" + " └─IndexReader(Probe) 0.13 root partition:p0,p1 index:Selection", + " └─Selection 0.13 cop[tikv] in(test_partition_1.t1.b, 6, 1), not(isnull(test_partition_1.t1.b))", + " └─IndexRangeScan 63.94 cop[tikv] table:t1, index:a(a, b, id) range: decided by [eq(test_partition_1.t1.b, test_partition_1.t2.b) in(test_partition_1.t1.a, 1, 6)], keep order:false, stats:pseudo" ] }, { @@ -1856,9 +1856,9 @@ " ├─IndexReader(Build) 0.60 root partition:dual index:Selection", " │ └─Selection 0.60 cop[tikv] not(isnull(test_partition_1.t2.b))", " │ └─IndexRangeScan 0.60 cop[tikv] table:t2, index:a(a, b, id) range:[1 6,1 6], [1 9,1 9], [1 100,1 100], [2 6,2 6], [2 9,2 9], [2 100,2 100], keep order:false, stats:pseudo", - " └─IndexReader(Probe) 0.48 root partition:p1 index:Selection", - " └─Selection 0.48 cop[tikv] in(test_partition_1.t1.b, 100, 9, 6), not(isnull(test_partition_1.t1.b))", - " └─IndexRangeScan 160.00 cop[tikv] table:t1, index:a(a, b, id) range: decided by [eq(test_partition_1.t1.b, test_partition_1.t2.b) in(test_partition_1.t1.a, 1, 6)], keep order:false, stats:pseudo" + " └─IndexReader(Probe) 0.29 root partition:p1 index:Selection", + " └─Selection 0.29 cop[tikv] in(test_partition_1.t1.b, 100, 9, 6), not(isnull(test_partition_1.t1.b))", + " └─IndexRangeScan 95.90 cop[tikv] table:t1, index:a(a, b, id) range: decided by [eq(test_partition_1.t1.b, test_partition_1.t2.b) in(test_partition_1.t1.a, 1, 6)], keep order:false, stats:pseudo" ] }, { @@ -1882,9 +1882,9 @@ " ├─IndexReader(Build) 0.80 root partition:p0 index:Selection", " │ └─Selection 0.80 cop[tikv] not(isnull(test_partition_1.t2.b))", " │ └─IndexRangeScan 0.80 cop[tikv] table:t2, index:a(a, b, id) range:[1 1,1 1], [1 6,1 6], [1 9,1 9], [1 100,1 100], [2 1,2 1], [2 6,2 6], [2 9,2 9], [2 100,2 100], keep order:false, stats:pseudo", - " └─IndexReader(Probe) 0.64 root partition:p0,p1 index:Selection", - " └─Selection 0.64 cop[tikv] in(test_partition_1.t1.b, 100, 9, 6, 1), not(isnull(test_partition_1.t1.b))", - " └─IndexRangeScan 160.00 cop[tikv] table:t1, index:a(a, b, id) range: decided by [eq(test_partition_1.t1.b, test_partition_1.t2.b) in(test_partition_1.t1.a, 1, 6)], keep order:false, stats:pseudo" + " └─IndexReader(Probe) 0.51 root partition:p0,p1 index:Selection", + " └─Selection 0.51 cop[tikv] in(test_partition_1.t1.b, 100, 9, 6, 1), not(isnull(test_partition_1.t1.b))", + " └─IndexRangeScan 127.87 cop[tikv] table:t1, index:a(a, b, id) range: decided by [eq(test_partition_1.t1.b, test_partition_1.t2.b) in(test_partition_1.t1.a, 1, 6)], keep order:false, stats:pseudo" ] }, { @@ -1941,9 +1941,9 @@ "1" ], "Plan": [ - "StreamAgg 1.00 root funcs:count(Column#7)->Column#5", - "└─TableReader 1.00 root partition:p0 data:StreamAgg", - " └─StreamAgg 1.00 cop[tikv] funcs:count(1)->Column#7", + "HashAgg 1.00 root funcs:count(Column#6)->Column#5", + "└─TableReader 1.00 root partition:p0 data:HashAgg", + " └─HashAgg 1.00 cop[tikv] funcs:count(1)->Column#6", " └─Selection 5542.21 cop[tikv] or(lt(test_partition.t1.a, 1), lt(test_partition.t1.b, 2))", " └─TableFullScan 10000.00 cop[tikv] table:t1 keep order:false, stats:pseudo" ], @@ -2670,9 +2670,9 @@ " │ └─HashAgg 199.80 cop[tikv] group by:test_partition_1.t2.b, ", " │ └─Selection 249.75 cop[tikv] not(isnull(test_partition_1.t2.b))", " │ └─IndexRangeScan 250.00 cop[tikv] table:t2, index:a(a, b, id) range:[1,2], keep order:false, stats:pseudo", - " └─IndexReader(Probe) 1.25 root partition:p0,p1 index:Selection", - " └─Selection 1.25 cop[tikv] not(isnull(test_partition_1.t1.a))", - " └─IndexRangeScan 1.25 cop[tikv] table:t1, index:a(a, b, id) range: decided by [eq(test_partition_1.t1.a, test_partition_1.t2.b)], keep order:false, stats:pseudo" + " └─IndexReader(Probe) 249.75 root partition:p0,p1 index:Selection", + " └─Selection 249.75 cop[tikv] not(isnull(test_partition_1.t1.a))", + " └─IndexRangeScan 250.00 cop[tikv] table:t1, index:a(a, b, id) range: decided by [eq(test_partition_1.t1.a, test_partition_1.t2.b)], keep order:false, stats:pseudo" ] }, { @@ -2701,9 +2701,9 @@ " │ └─HashAgg 199.80 cop[tikv] group by:test_partition_1.t1.b, ", " │ └─Selection 249.75 cop[tikv] not(isnull(test_partition_1.t1.b))", " │ └─IndexRangeScan 250.00 cop[tikv] table:t1, index:a(a, b, id) range:[1,2], keep order:false, stats:pseudo", - " └─IndexReader(Probe) 1.25 root partition:p0,p1 index:Selection", - " └─Selection 1.25 cop[tikv] not(isnull(test_partition_1.t1.a))", - " └─IndexRangeScan 1.25 cop[tikv] table:t1, index:a(a, b, id) range: decided by [eq(test_partition_1.t1.a, test_partition_1.t1.b)], keep order:false, stats:pseudo" + " └─IndexReader(Probe) 249.75 root partition:p0,p1 index:Selection", + " └─Selection 249.75 cop[tikv] not(isnull(test_partition_1.t1.a))", + " └─IndexRangeScan 250.00 cop[tikv] table:t1, index:a(a, b, id) range: decided by [eq(test_partition_1.t1.a, test_partition_1.t1.b)], keep order:false, stats:pseudo" ] }, { @@ -2789,7 +2789,7 @@ "2" ], "Plan": [ - "StreamAgg 1.00 root funcs:count(1)->Column#9", + "HashAgg 1.00 root funcs:count(1)->Column#9", "└─HashJoin 7.81 root inner join, equal:[eq(test_partition.t1.b, test_partition.t2.b)]", " ├─TableReader(Build) 6.25 root partition:p0,p1 data:Selection", " │ └─Selection 6.25 cop[tikv] ge(test_partition.t2.a, 1), ge(test_partition.t2.b, 1), le(test_partition.t2.a, 6), le(test_partition.t2.b, 6), not(isnull(test_partition.t2.b))", @@ -2815,7 +2815,7 @@ "2" ], "Plan": [ - "StreamAgg 1.00 root funcs:count(1)->Column#9", + "HashAgg 1.00 root funcs:count(1)->Column#9", "└─HashJoin 7.81 root inner join, equal:[eq(test_partition.t2.b, test_partition.t1.b)]", " ├─TableReader(Build) 6.25 root partition:p0,p1 data:Selection", " │ └─Selection 6.25 cop[tikv] ge(test_partition.t1.a, 1), ge(test_partition.t1.b, 1), le(test_partition.t1.a, 6), le(test_partition.t1.b, 6), not(isnull(test_partition.t1.b))", diff --git a/planner/core/testdata/plan_normalized_suite_out.json b/planner/core/testdata/plan_normalized_suite_out.json index 7acfd3c2858c1..0fc4fba15e766 100644 --- a/planner/core/testdata/plan_normalized_suite_out.json +++ b/planner/core/testdata/plan_normalized_suite_out.json @@ -56,7 +56,7 @@ "Plan": [ " Projection root test.t1.a, test.t1.b, test.t1.c", " └─Apply root semi join, equal:eq(?, ?)", - " ├─Projection root cast(test.t1.a, decimal(20,0) BINARY), test.t1.a, test.t1.b, test.t1.c", + " ├─Projection root cast(test.t1.a, decimal(10,0) BINARY), test.t1.a, test.t1.b, test.t1.c", " │ └─TableReader root ", " │ └─Selection cop gt(test.t1.b, ?)", " │ └─TableFullScan cop table:t1, range:[?,?], keep order:false", diff --git a/planner/core/testdata/plan_suite_in.json b/planner/core/testdata/plan_suite_in.json index ba2755b54837a..d718be8d6dfb4 100644 --- a/planner/core/testdata/plan_suite_in.json +++ b/planner/core/testdata/plan_suite_in.json @@ -1,4 +1,13 @@ [ + { + "name": "TestMPPHints", + "cases": [ + "select /*+ read_from_storage(tiflash[t]), MPP_1PHASE_AGG() */ a, sum(b) from t group by a, c", + "select /*+ read_from_storage(tiflash[t]), MPP_2PHASE_AGG() */ a, sum(b) from t group by a, c", + "select /*+ read_from_storage(tiflash[t1, t2]), shuffle_join(t1, t2) */ * from t t1, t t2 where t1.a=t2.a", + "select /*+ read_from_storage(tiflash[t1, t2]), broadcast_join(t1, t2) */ * from t t1, t t2 where t1.a=t2.a" + ] + }, { "name": "TestHintScope", "cases": [ @@ -359,7 +368,7 @@ ] }, { - "name": "TestRefine", + "name": "TestRefine", "cases": [ "select a from t where c is not null", "select a from t where c >= 4", @@ -808,7 +817,7 @@ { "name": "TestIssue28316", "cases": [ - "select * from t where t.a < 3 and t.a < 3" + "select * from t where t.a < 3 and t.a < 3" ] }, { diff --git a/planner/core/testdata/plan_suite_out.json b/planner/core/testdata/plan_suite_out.json index 18e4396e16de6..b4da9d119f28f 100644 --- a/planner/core/testdata/plan_suite_out.json +++ b/planner/core/testdata/plan_suite_out.json @@ -1,4 +1,68 @@ [ + { + "Name": "TestMPPHints", + "Cases": [ + { + "SQL": "select /*+ read_from_storage(tiflash[t]), MPP_1PHASE_AGG() */ a, sum(b) from t group by a, c", + "Plan": [ + "TableReader 8000.00 root data:ExchangeSender", + "└─ExchangeSender 8000.00 mpp[tiflash] ExchangeType: PassThrough", + " └─Projection 8000.00 mpp[tiflash] test.t.a, Column#5", + " └─Projection 8000.00 mpp[tiflash] Column#5, test.t.a", + " └─HashAgg 8000.00 mpp[tiflash] group by:Column#10, Column#11, funcs:sum(Column#8)->Column#5, funcs:firstrow(Column#9)->test.t.a", + " └─Projection 10000.00 mpp[tiflash] cast(test.t.b, decimal(10,0) BINARY)->Column#8, test.t.a, test.t.a, test.t.c", + " └─ExchangeReceiver 10000.00 mpp[tiflash] ", + " └─ExchangeSender 10000.00 mpp[tiflash] ExchangeType: HashPartition, Hash Cols: [name: test.t.a, collate: binary], [name: test.t.c, collate: binary]", + " └─TableFullScan 10000.00 mpp[tiflash] table:t keep order:false, stats:pseudo" + ] + }, + { + "SQL": "select /*+ read_from_storage(tiflash[t]), MPP_2PHASE_AGG() */ a, sum(b) from t group by a, c", + "Plan": [ + "TableReader 8000.00 root data:ExchangeSender", + "└─ExchangeSender 8000.00 mpp[tiflash] ExchangeType: PassThrough", + " └─Projection 8000.00 mpp[tiflash] test.t.a, Column#5", + " └─Projection 8000.00 mpp[tiflash] Column#5, test.t.a", + " └─HashAgg 8000.00 mpp[tiflash] group by:test.t.a, test.t.c, funcs:sum(Column#10)->Column#5, funcs:firstrow(test.t.a)->test.t.a", + " └─ExchangeReceiver 8000.00 mpp[tiflash] ", + " └─ExchangeSender 8000.00 mpp[tiflash] ExchangeType: HashPartition, Hash Cols: [name: test.t.a, collate: binary], [name: test.t.c, collate: binary]", + " └─HashAgg 8000.00 mpp[tiflash] group by:Column#13, Column#14, funcs:sum(Column#12)->Column#10", + " └─Projection 10000.00 mpp[tiflash] cast(test.t.b, decimal(10,0) BINARY)->Column#12, test.t.a, test.t.c", + " └─TableFullScan 10000.00 mpp[tiflash] table:t keep order:false, stats:pseudo" + ] + }, + { + "SQL": "select /*+ read_from_storage(tiflash[t1, t2]), shuffle_join(t1, t2) */ * from t t1, t t2 where t1.a=t2.a", + "Plan": [ + "TableReader 12487.50 root data:ExchangeSender", + "└─ExchangeSender 12487.50 mpp[tiflash] ExchangeType: PassThrough", + " └─HashJoin 12487.50 mpp[tiflash] inner join, equal:[eq(test.t.a, test.t.a)]", + " ├─ExchangeReceiver(Build) 9990.00 mpp[tiflash] ", + " │ └─ExchangeSender 9990.00 mpp[tiflash] ExchangeType: HashPartition, Hash Cols: [name: test.t.a, collate: binary]", + " │ └─Selection 9990.00 mpp[tiflash] not(isnull(test.t.a))", + " │ └─TableFullScan 10000.00 mpp[tiflash] table:t1 keep order:false, stats:pseudo", + " └─ExchangeReceiver(Probe) 9990.00 mpp[tiflash] ", + " └─ExchangeSender 9990.00 mpp[tiflash] ExchangeType: HashPartition, Hash Cols: [name: test.t.a, collate: binary]", + " └─Selection 9990.00 mpp[tiflash] not(isnull(test.t.a))", + " └─TableFullScan 10000.00 mpp[tiflash] table:t2 keep order:false, stats:pseudo" + ] + }, + { + "SQL": "select /*+ read_from_storage(tiflash[t1, t2]), broadcast_join(t1, t2) */ * from t t1, t t2 where t1.a=t2.a", + "Plan": [ + "TableReader 12487.50 root data:ExchangeSender", + "└─ExchangeSender 12487.50 mpp[tiflash] ExchangeType: PassThrough", + " └─HashJoin 12487.50 mpp[tiflash] inner join, equal:[eq(test.t.a, test.t.a)]", + " ├─ExchangeReceiver(Build) 9990.00 mpp[tiflash] ", + " │ └─ExchangeSender 9990.00 mpp[tiflash] ExchangeType: Broadcast", + " │ └─Selection 9990.00 mpp[tiflash] not(isnull(test.t.a))", + " │ └─TableFullScan 10000.00 mpp[tiflash] table:t1 keep order:false, stats:pseudo", + " └─Selection(Probe) 9990.00 mpp[tiflash] not(isnull(test.t.a))", + " └─TableFullScan 10000.00 mpp[tiflash] table:t2 keep order:false, stats:pseudo" + ] + } + ] + }, { "Name": "TestHintScope", "Cases": [ @@ -44,11 +108,11 @@ }, { "SQL": "select /*+ INL_JOIN(t1) */ t1.a, t1.b from t t1, (select t2.a from t t2, t t3 where t2.a = t3.c) s where t1.a=s.a", - "Best": "IndexJoin{TableReader(Table(t))->LeftHashJoin{IndexReader(Index(t.f)[[NULL,+inf]])->IndexReader(Index(t.c_d_e)[[NULL,+inf]])}(test.t.a,test.t.c)}(test.t.a,test.t.a)" + "Best": "IndexJoin{TableReader(Table(t))->MergeInnerJoin{TableReader(Table(t))->IndexReader(Index(t.c_d_e)[[NULL,+inf]])}(test.t.a,test.t.c)}(test.t.a,test.t.a)" }, { "SQL": "select /*+ HASH_JOIN(t1) */ t1.a, t1.b from t t1, (select t2.a from t t2, t t3 where t2.a = t3.c) s where t1.a=s.a", - "Best": "RightHashJoin{TableReader(Table(t))->LeftHashJoin{IndexReader(Index(t.f)[[NULL,+inf]])->IndexReader(Index(t.c_d_e)[[NULL,+inf]])}(test.t.a,test.t.c)}(test.t.a,test.t.a)" + "Best": "RightHashJoin{TableReader(Table(t))->MergeInnerJoin{TableReader(Table(t))->IndexReader(Index(t.c_d_e)[[NULL,+inf]])}(test.t.a,test.t.c)}(test.t.a,test.t.a)" }, { "SQL": "select /*+ HASH_JOIN(@sel_2 t1@sel_2, t2@sel_2), MERGE_JOIN(@sel_1 t1@sel_1, t2@sel_1) */ * from (select t1.a, t1.b from t t1, t t2 where t1.a = t2.a) t1, t t2 where t1.b = t2.b", @@ -286,9 +350,9 @@ }, { "SQL": "select /*+ USE_INDEX_MERGE(t1, c_d_e, f_g) */ * from t where c < 1 or f > 2", - "Best": "IndexMergeReader(PartialPlans->[Index(t.c_d_e)[[-inf,1)], Index(t.f)[(2,+inf]]], TablePlan->Table(t))", + "Best": "TableReader(Table(t)->Sel([or(lt(test.t.c, 1), gt(test.t.f, 2))]))", "HasWarn": true, - "Hints": "use_index_merge(@`sel_1` `t` `c_d_e`, `f`)" + "Hints": "use_index(@`sel_1` `test`.`t` )" }, { "SQL": "select /*+ NO_INDEX_MERGE(), USE_INDEX_MERGE(t, primary, f_g, c_d_e) */ * from t where a < 1 or f > 2", @@ -304,15 +368,15 @@ }, { "SQL": "select /*+ USE_INDEX_MERGE(db2.t) */ * from t where c < 1 or f > 2", - "Best": "IndexMergeReader(PartialPlans->[Index(t.c_d_e)[[-inf,1)], Index(t.f)[(2,+inf]]], TablePlan->Table(t))", + "Best": "TableReader(Table(t)->Sel([or(lt(test.t.c, 1), gt(test.t.f, 2))]))", "HasWarn": true, - "Hints": "use_index_merge(@`sel_1` `t` `c_d_e`, `f`)" + "Hints": "use_index(@`sel_1` `test`.`t` )" }, { "SQL": "select /*+ USE_INDEX_MERGE(db2.t, c_d_e, f_g) */ * from t where c < 1 or f > 2", - "Best": "IndexMergeReader(PartialPlans->[Index(t.c_d_e)[[-inf,1)], Index(t.f)[(2,+inf]]], TablePlan->Table(t))", + "Best": "TableReader(Table(t)->Sel([or(lt(test.t.c, 1), gt(test.t.f, 2))]))", "HasWarn": true, - "Hints": "use_index_merge(@`sel_1` `t` `c_d_e`, `f`)" + "Hints": "use_index(@`sel_1` `test`.`t` )" } ] }, @@ -333,7 +397,7 @@ }, { "SQL": "select * from t where (t.c > 0 and t.c < 2) or (t.c > 4 and t.c < 6) or (t.c > 8 and t.c < 10) or (t.c > 12 and t.c < 14) or (t.c > 16 and t.c < 18)", - "Best": "IndexLookUp(Index(t.c_d_e)[[1,1] [5,5] [9,9] [13,13] [17,17]], Table(t))" + "Best": "TableReader(Table(t)->Sel([or(or(and(gt(test.t.c, 0), lt(test.t.c, 2)), and(gt(test.t.c, 4), lt(test.t.c, 6))), or(and(gt(test.t.c, 8), lt(test.t.c, 10)), or(and(gt(test.t.c, 12), lt(test.t.c, 14)), and(gt(test.t.c, 16), lt(test.t.c, 18)))))]))" }, { "SQL": "select * from t where (t.c > 0 and t.c < 1) or (t.c > 2 and t.c < 3) or (t.c > 4 and t.c < 5) or (t.c > 6 and t.c < 7) or (t.c > 9 and t.c < 10)", @@ -413,7 +477,7 @@ }, { "SQL": "select c from t where t.c = 1 and t.d = 1 order by t.a limit 1", - "Best": "IndexReader(Index(t.c_d_e)[[1 1,1 1]])->TopN([test.t.a],0,1)->Projection" + "Best": "IndexReader(Index(t.c_d_e)[[1 1,1 1]]->TopN([test.t.a],0,1))->TopN([test.t.a],0,1)->Projection" }, { "SQL": "select * from t where t.c = 1 and t.a > 1 order by t.d limit 1", @@ -474,7 +538,7 @@ }, { "SQL": "select * from t t1 join t t2 on t1.a = t2.a join t t3 on t1.a = t3.a", - "Best": "LeftHashJoin{MergeInnerJoin{TableReader(Table(t))->TableReader(Table(t))}(test.t.a,test.t.a)->TableReader(Table(t))}(test.t.a,test.t.a)" + "Best": "MergeInnerJoin{MergeInnerJoin{TableReader(Table(t))->TableReader(Table(t))}(test.t.a,test.t.a)->TableReader(Table(t))}(test.t.a,test.t.a)" }, { "SQL": "select * from t t1 join t t2 on t1.a = t2.a join t t3 on t1.b = t3.a", @@ -482,7 +546,7 @@ }, { "SQL": "select * from t t1 join t t2 on t1.b = t2.a order by t1.a", - "Best": "IndexJoin{TableReader(Table(t))->TableReader(Table(t))}(test.t.b,test.t.a)" + "Best": "LeftHashJoin{TableReader(Table(t))->TableReader(Table(t))}(test.t.b,test.t.a)->Sort" }, { "SQL": "select * from t t1 join t t2 on t1.b = t2.a order by t1.a limit 1", @@ -510,7 +574,7 @@ }, { "SQL": "select * from t t1 left outer join t t2 on t1.a = t2.a right outer join t t3 on t1.a = t3.a", - "Best": "RightHashJoin{MergeLeftOuterJoin{TableReader(Table(t))->TableReader(Table(t))}(test.t.a,test.t.a)->TableReader(Table(t))}(test.t.a,test.t.a)" + "Best": "MergeRightOuterJoin{MergeLeftOuterJoin{TableReader(Table(t))->TableReader(Table(t))}(test.t.a,test.t.a)->TableReader(Table(t))}(test.t.a,test.t.a)" }, { "SQL": "select * from t t1 join t t2 on t1.a = t2.a join t t3 on t1.a = t3.a and t1.b = 1 and t3.c = 1", @@ -614,7 +678,7 @@ }, { "SQL": "select /*+ TIDB_INLJ(t2) */ * from t t1 where t1.a in (select a from t t2)", - "Best": "LeftHashJoin{TableReader(Table(t))->IndexReader(Index(t.f)[[NULL,+inf]])}(test.t.a,test.t.a)" + "Best": "MergeInnerJoin{TableReader(Table(t))->TableReader(Table(t))}(test.t.a,test.t.a)" }, { "SQL": "select /*+ TIDB_INLJ(t1) */ * from t t1 where t1.a in (select a from t t2)", @@ -679,7 +743,7 @@ }, { "SQL": "select * from t where a in (select a from t) order by b", - "Best": "LeftHashJoin{TableReader(Table(t))->IndexReader(Index(t.f)[[NULL,+inf]])}(test.t.a,test.t.a)->Sort" + "Best": "MergeInnerJoin{TableReader(Table(t))->TableReader(Table(t))}(test.t.a,test.t.a)->Sort" }, { "SQL": "select t.c in (select count(*) from t s, t t1 where s.a = t.a and s.a = t1.a) from t", @@ -687,7 +751,7 @@ }, { "SQL": "select (select count(*) from t s, t t1 where s.a = t.a and s.a = t1.a) from t", - "Best": "LeftHashJoin{IndexReader(Index(t.f)[[NULL,+inf]])->LeftHashJoin{IndexReader(Index(t.f)[[NULL,+inf]])->IndexReader(Index(t.f)[[NULL,+inf]])}(test.t.a,test.t.a)->Projection}(test.t.a,test.t.a)->Projection" + "Best": "MergeLeftOuterJoin{TableReader(Table(t))->MergeInnerJoin{TableReader(Table(t))->TableReader(Table(t))}(test.t.a,test.t.a)->Projection}(test.t.a,test.t.a)->Projection" }, { "SQL": "select (select count(*) from t s, t t1 where s.a = t.a and s.a = t1.a) from t order by t.a", @@ -831,14 +895,47 @@ }, { "Name": "TestDAGPlanBuilderUnionScan", - "Cases": null + "Cases": [ + { + "SQL": "select * from t", + "Best": "TableReader(Table(t))->UnionScan([])->Projection" + }, + { + "SQL": "select * from t where b = 1", + "Best": "TableReader(Table(t)->Sel([eq(test.t.b, 1)]))->UnionScan([eq(test.t.b, 1)])->Projection" + }, + { + "SQL": "select * from t where a = 1", + "Best": "TableReader(Table(t)->Sel([eq(test.t.a, 1)]))->UnionScan([eq(test.t.a, 1)])->Projection" + }, + { + "SQL": "select * from t where a = 1 order by a", + "Best": "TableReader(Table(t)->Sel([eq(test.t.a, 1)]))->UnionScan([eq(test.t.a, 1)])->Projection->Sort" + }, + { + "SQL": "select * from t where a = 1 order by b", + "Best": "TableReader(Table(t)->Sel([eq(test.t.a, 1)]))->UnionScan([eq(test.t.a, 1)])->Projection->Sort" + }, + { + "SQL": "select * from t where a = 1 limit 1", + "Best": "TableReader(Table(t)->Sel([eq(test.t.a, 1)]))->UnionScan([eq(test.t.a, 1)])->Limit" + }, + { + "SQL": "select * from t where c = 1", + "Best": "TableReader(Table(t)->Sel([eq(test.t.c, 1)]))->UnionScan([eq(test.t.c, 1)])->Projection" + }, + { + "SQL": "select c from t where c = 1", + "Best": "TableReader(Table(t)->Sel([eq(test.t.c, 1)]))->UnionScan([eq(test.t.c, 1)])->Projection" + } + ] }, { "Name": "TestDAGPlanBuilderAgg", "Cases": [ { "SQL": "select distinct b from t", - "Best": "TableReader(Table(t))->HashAgg" + "Best": "TableReader(Table(t)->HashAgg)->HashAgg" }, { "SQL": "select count(*) from (select * from t order by b) t group by b", @@ -862,7 +959,7 @@ }, { "SQL": "select sum(e), avg(e + c) from t where c = 1 group by c", - "Best": "IndexReader(Index(t.c_d_e)[[1,1]]->StreamAgg)->StreamAgg" + "Best": "IndexReader(Index(t.c_d_e)[[1,1]])->Projection->StreamAgg" }, { "SQL": "select sum(e), avg(e + c) from t where c = 1 group by e", @@ -870,7 +967,7 @@ }, { "SQL": "select sum(e), avg(b + c) from t where c = 1 and e = 1 group by d", - "Best": "IndexLookUp(Index(t.c_d_e)[[1,1]]->Sel([eq(test.t.e, 1)]), Table(t))->Projection->HashAgg" + "Best": "IndexLookUp(Index(t.c_d_e)[[1,1]]->Sel([eq(test.t.e, 1)]), Table(t))->Projection->Projection->StreamAgg" }, { "SQL": "select sum(e), avg(b + c) from t where c = 1 and b = 1", @@ -878,11 +975,11 @@ }, { "SQL": "select sum(e) as k, avg(b + c) from t where c = 1 and b = 1 and e = 1 group by d order by k", - "Best": "IndexLookUp(Index(t.c_d_e)[[1,1]]->Sel([eq(test.t.e, 1)]), Table(t)->Sel([eq(test.t.b, 1)]))->Projection->HashAgg->Sort" + "Best": "IndexLookUp(Index(t.c_d_e)[[1,1]]->Sel([eq(test.t.e, 1)]), Table(t)->Sel([eq(test.t.b, 1)]))->Projection->Projection->StreamAgg->Sort" }, { "SQL": "select sum(e) as k, avg(b + c) from t where c = 1 and b = 1 and e = 1 group by c order by k", - "Best": "IndexLookUp(Index(t.c_d_e)[[1,1]]->Sel([eq(test.t.e, 1)]), Table(t)->Sel([eq(test.t.b, 1)]))->Projection->HashAgg->Sort" + "Best": "IndexLookUp(Index(t.c_d_e)[[1,1]]->Sel([eq(test.t.e, 1)]), Table(t)->Sel([eq(test.t.b, 1)]))->Projection->Projection->StreamAgg->Sort" }, { "SQL": "select sum(to_base64(e)) from t where c = 1", @@ -890,7 +987,7 @@ }, { "SQL": "select (select count(1) k from t s where s.a = t.a having k != 0) from t", - "Best": "LeftHashJoin{IndexReader(Index(t.f)[[NULL,+inf]])->IndexReader(Index(t.f)[[NULL,+inf]])->Projection}(test.t.a,test.t.a)->Projection" + "Best": "MergeLeftOuterJoin{TableReader(Table(t))->TableReader(Table(t))->Projection}(test.t.a,test.t.a)->Projection" }, { "SQL": "select sum(to_base64(e)) from t group by e,d,c order by c", @@ -1007,7 +1104,7 @@ }, { "SQL": "select b from t where c = 1 or c = 2 or c = 3 or c = 4 or c = 5", - "Best": "IndexLookUp(Index(t.c_d_e)[[1,5]], Table(t))->Projection" + "Best": "TableReader(Table(t)->Sel([or(or(eq(test.t.c, 1), eq(test.t.c, 2)), or(eq(test.t.c, 3), or(eq(test.t.c, 4), eq(test.t.c, 5))))]))->Projection" }, { "SQL": "select a from t where c = 5", @@ -1160,51 +1257,51 @@ "Cases": [ { "SQL": "select max(a) from t;", - "Best": "TableReader(Table(t)->Limit)->Limit->StreamAgg" + "Best": "TableReader(Table(t)->Limit)->Limit->HashAgg" }, { "SQL": "select min(a) from t;", - "Best": "TableReader(Table(t)->Limit)->Limit->StreamAgg" + "Best": "TableReader(Table(t)->Limit)->Limit->HashAgg" }, { "SQL": "select min(c_str) from t;", - "Best": "IndexReader(Index(t.c_d_e_str)[[-inf,+inf]]->Limit)->Limit->StreamAgg" + "Best": "IndexReader(Index(t.c_d_e_str)[[-inf,+inf]]->Limit)->Limit->HashAgg" }, { "SQL": "select max(a), b from t;", - "Best": "TableReader(Table(t)->StreamAgg)->StreamAgg" + "Best": "TableReader(Table(t)->HashAgg)->HashAgg" }, { "SQL": "select max(a+1) from t;", - "Best": "IndexReader(Index(t.f)[[NULL,+inf]]->TopN([plus(test.t.a, 1) true],0,1))->Projection->TopN([Column#40 true],0,1)->Projection->Projection->StreamAgg" + "Best": "IndexReader(Index(t.f)[[NULL,+inf]]->TopN([plus(test.t.a, 1) true],0,1))->Projection->TopN([Column#40 true],0,1)->Projection->Projection->HashAgg" }, { "SQL": "select max(a), min(a) from t;", - "Best": "LeftHashJoin{TableReader(Table(t)->Limit)->Limit->StreamAgg->TableReader(Table(t)->Limit)->Limit->StreamAgg}" + "Best": "LeftHashJoin{TableReader(Table(t)->Limit)->Limit->HashAgg->TableReader(Table(t)->Limit)->Limit->HashAgg}" }, { "SQL": "select max(a), min(a) from t where a > 10", - "Best": "LeftHashJoin{TableReader(Table(t)->Limit)->Limit->StreamAgg->TableReader(Table(t)->Limit)->Limit->StreamAgg}" + "Best": "LeftHashJoin{TableReader(Table(t)->Limit)->Limit->HashAgg->TableReader(Table(t)->Limit)->Limit->HashAgg}" }, { "SQL": "select max(d), min(d) from t where c = 1 and d > 10", - "Best": "LeftHashJoin{IndexReader(Index(t.c_d_e)[(1 10,1 +inf]]->Limit)->Limit->StreamAgg->IndexReader(Index(t.c_d_e)[(1 10,1 +inf]]->Limit)->Limit->StreamAgg}" + "Best": "LeftHashJoin{IndexReader(Index(t.c_d_e)[(1 10,1 +inf]]->Limit)->Limit->HashAgg->IndexReader(Index(t.c_d_e)[(1 10,1 +inf]]->Limit)->Limit->HashAgg}" }, { "SQL": "select max(a), max(c), min(f) from t", - "Best": "LeftHashJoin{LeftHashJoin{TableReader(Table(t)->Limit)->Limit->StreamAgg->IndexReader(Index(t.c_d_e)[[NULL,+inf]]->Limit)->Limit->StreamAgg}->IndexReader(Index(t.f)[[NULL,+inf]]->Limit)->Limit->StreamAgg}" + "Best": "LeftHashJoin{LeftHashJoin{TableReader(Table(t)->Limit)->Limit->HashAgg->IndexReader(Index(t.c_d_e)[[NULL,+inf]]->Limit)->Limit->HashAgg}->IndexReader(Index(t.f)[[NULL,+inf]]->Limit)->Limit->HashAgg}" }, { "SQL": "select max(a), max(b) from t", - "Best": "TableReader(Table(t)->StreamAgg)->StreamAgg" + "Best": "TableReader(Table(t)->HashAgg)->HashAgg" }, { "SQL": "select max(a), max(c) from t where c > 10", - "Best": "IndexReader(Index(t.c_d_e)[(10,+inf]]->StreamAgg)->StreamAgg" + "Best": "IndexReader(Index(t.c_d_e)[(10,+inf]]->HashAgg)->HashAgg" }, { "SQL": "select max(a), min(a) from t where a * 3 + 10 < 100", - "Best": "IndexReader(Index(t.f)[[NULL,+inf]]->Sel([lt(plus(mul(test.t.a, 3), 10), 100)])->StreamAgg)->StreamAgg" + "Best": "IndexReader(Index(t.f)[[NULL,+inf]]->Sel([lt(plus(mul(test.t.a, 3), 10), 100)])->HashAgg)->HashAgg" }, { "SQL": "select max(a) from t group by b;", @@ -1212,7 +1309,7 @@ }, { "SQL": "select max(a) from (select t1.a from t t1 join t t2 on t1.a=t2.a) t", - "Best": "MergeInnerJoin{TableReader(Table(t))->TableReader(Table(t))}(test.t.a,test.t.a)->Limit->StreamAgg" + "Best": "MergeInnerJoin{TableReader(Table(t))->TableReader(Table(t))}(test.t.a,test.t.a)->Limit->HashAgg" } ] }, @@ -1246,15 +1343,15 @@ "Cases": [ { "SQL": "select /*+ TIDB_INLJ(t1) */ t1.a, t2.a, t3.a from t t1, t t2, t t3 where t1.a = t2.a and t2.a = t3.a;", - "Best": "RightHashJoin{IndexReader(Index(t.f)[[NULL,+inf]])->IndexJoin{TableReader(Table(t))->IndexReader(Index(t.f)[[NULL,+inf]])}(test.t.a,test.t.a)}(test.t.a,test.t.a)->Projection", + "Best": "MergeInnerJoin{TableReader(Table(t))->IndexJoin{TableReader(Table(t))->TableReader(Table(t))}(test.t.a,test.t.a)}(test.t.a,test.t.a)->Projection", "Warning": "", - "Hints": "use_index(@`sel_1` `test`.`t3` `f`), use_index(@`sel_1` `test`.`t1` ), use_index(@`sel_1` `test`.`t2` `f`), inl_join(@`sel_1` `test`.`t1`), hash_join(@`sel_1` `test`.`t3`)" + "Hints": "use_index(@`sel_1` `test`.`t3` ), use_index(@`sel_1` `test`.`t1` ), use_index(@`sel_1` `test`.`t2` ), inl_join(@`sel_1` `test`.`t1`), merge_join(@`sel_1` `test`.`t3`)" }, { "SQL": "select /*+ TIDB_INLJ(test.t1) */ t1.a, t2.a, t3.a from t t1, t t2, t t3 where t1.a = t2.a and t2.a = t3.a;", - "Best": "RightHashJoin{IndexReader(Index(t.f)[[NULL,+inf]])->IndexJoin{TableReader(Table(t))->IndexReader(Index(t.f)[[NULL,+inf]])}(test.t.a,test.t.a)}(test.t.a,test.t.a)->Projection", + "Best": "MergeInnerJoin{TableReader(Table(t))->IndexJoin{TableReader(Table(t))->TableReader(Table(t))}(test.t.a,test.t.a)}(test.t.a,test.t.a)->Projection", "Warning": "", - "Hints": "use_index(@`sel_1` `test`.`t3` `f`), use_index(@`sel_1` `test`.`t1` ), use_index(@`sel_1` `test`.`t2` `f`), inl_join(@`sel_1` `test`.`t1`), hash_join(@`sel_1` `test`.`t3`)" + "Hints": "use_index(@`sel_1` `test`.`t3` ), use_index(@`sel_1` `test`.`t1` ), use_index(@`sel_1` `test`.`t2` ), inl_join(@`sel_1` `test`.`t1`), merge_join(@`sel_1` `test`.`t3`)" }, { "SQL": "select /*+ TIDB_INLJ(t1) */ t1.b, t2.a from t t1, t t2 where t1.b = t2.a;", @@ -1403,9 +1500,9 @@ "├─UnionScan(Build) 10000.00 root ", "│ └─TableReader 10000.00 root data:TableFullScan", "│ └─TableFullScan 10000.00 cop[tikv] table:t1 keep order:false, stats:pseudo", - "└─UnionScan(Probe) 1.00 root ", - " └─TableReader 1.00 root data:TableRangeScan", - " └─TableRangeScan 1.00 cop[tikv] table:t2 range: decided by [test.t.a], keep order:false, stats:pseudo" + "└─UnionScan(Probe) 10000.00 root ", + " └─TableReader 10000.00 root data:TableRangeScan", + " └─TableRangeScan 10000.00 cop[tikv] table:t2 range: decided by [test.t.a], keep order:false, stats:pseudo" ] }, { @@ -1431,13 +1528,13 @@ ], "Plan": [ "HashJoin 12487.50 root inner join, equal:[eq(test.t.a, test.t.b)]", - "├─UnionScan(Build) 9990.00 root not(isnull(test.t.b))", - "│ └─TableReader 9990.00 root data:Selection", - "│ └─Selection 9990.00 cop[tikv] not(isnull(test.t.b))", - "│ └─TableFullScan 10000.00 cop[tikv] table:t2 keep order:false, stats:pseudo", - "└─UnionScan(Probe) 10000.00 root ", - " └─TableReader 10000.00 root data:TableFullScan", - " └─TableFullScan 10000.00 cop[tikv] table:t1 keep order:false, stats:pseudo" + "├─UnionScan(Build) 10000.00 root ", + "│ └─TableReader 10000.00 root data:TableFullScan", + "│ └─TableFullScan 10000.00 cop[tikv] table:t1 keep order:false, stats:pseudo", + "└─UnionScan(Probe) 9990.00 root not(isnull(test.t.b))", + " └─TableReader 9990.00 root data:Selection", + " └─Selection 9990.00 cop[tikv] not(isnull(test.t.b))", + " └─TableFullScan 10000.00 cop[tikv] table:t2 keep order:false, stats:pseudo" ] }, { @@ -1491,7 +1588,7 @@ "Cases": [ { "SQL": "select t1.a, (select count(t2.a) from t t2 where t2.g in (select t3.d from t t3 where t3.c = t1.a)) as agg_col from t t1;", - "Best": "Apply{IndexReader(Index(t.f)[[NULL,+inf]])->IndexHashJoin{IndexReader(Index(t.c_d_e)[[NULL,+inf]]->HashAgg)->HashAgg->IndexReader(Index(t.g)[[NULL,NULL]])}(test.t.d,test.t.g)}->HashAgg" + "Best": "Apply{IndexReader(Index(t.f)[[NULL,+inf]])->IndexJoin{IndexReader(Index(t.c_d_e)[[NULL,+inf]]->HashAgg)->HashAgg->IndexReader(Index(t.g)[[NULL,NULL]])}(test.t.d,test.t.g)}->HashAgg" } ] }, @@ -1512,11 +1609,11 @@ }, { "SQL": "select /*+ inl_merge_join(t2) */ t1.a, t2.a from t t1 left join t t2 use index(g_2) on t1.g=t2.g", - "Plan": "IndexMergeJoin{IndexReader(Index(t.g_3)[[NULL,+inf]])->IndexReader(Index(t.g_2)[[NULL,NULL]]->Sel([not(isnull(test.t.g))]))}(test.t.g,test.t.g)" + "Plan": "IndexMergeJoin{IndexReader(Index(t.g_2)[[NULL,+inf]])->IndexReader(Index(t.g_2)[[NULL,NULL]]->Sel([not(isnull(test.t.g))]))}(test.t.g,test.t.g)" }, { "SQL": "select /*+inl_merge_join(t2)*/ t1.a, t2.a from t t1 left join t t2 use index(g_2) on t1.g=t2.g order by t1.a", - "Plan": "IndexMergeJoin{IndexReader(Index(t.g_3)[[NULL,+inf]])->IndexReader(Index(t.g_2)[[NULL,NULL]]->Sel([not(isnull(test.t.g))]))}(test.t.g,test.t.g)->Sort" + "Plan": "IndexMergeJoin{IndexReader(Index(t.g_2)[[NULL,+inf]])->IndexReader(Index(t.g_2)[[NULL,NULL]]->Sel([not(isnull(test.t.g))]))}(test.t.g,test.t.g)->Sort" } ] }, @@ -1563,9 +1660,10 @@ "SQL": "select * from tn where a = 1 and b > 10 and b < 20 and c > 50 order by d limit 1", "Plan": [ "TopN 0.83 root test.tn.d, offset:0, count:1", - "└─IndexReader 0.83 root index:Selection", - " └─Selection 0.83 cop[tikv] gt(test.tn.c, 50)", - " └─IndexRangeScan 2.50 cop[tikv] table:tn, index:a(a, b, c, d) range:(1 10,1 20), keep order:false, stats:pseudo" + "└─IndexReader 0.83 root index:TopN", + " └─TopN 0.83 cop[tikv] test.tn.d, offset:0, count:1", + " └─Selection 0.83 cop[tikv] gt(test.tn.c, 50)", + " └─IndexRangeScan 2.50 cop[tikv] table:tn, index:a(a, b, c, d) range:(1 10,1 20), keep order:false, stats:pseudo" ], "Warning": null }, @@ -1897,8 +1995,9 @@ "Plan": [ "HashJoin 80000000.00 root CARTESIAN inner join", "├─HashAgg(Build) 8000.00 root group by:test.t.a, funcs:firstrow(test.t.a)->test.t.a", - "│ └─TableReader 10000.00 root data:TableFullScan", - "│ └─TableFullScan 10000.00 cop[tikv] table:t keep order:false, stats:pseudo", + "│ └─TableReader 8000.00 root data:HashAgg", + "│ └─HashAgg 8000.00 cop[tikv] group by:test.t.a, ", + "│ └─TableFullScan 10000.00 cop[tikv] table:t keep order:false, stats:pseudo", "└─TableReader(Probe) 10000.00 root data:TableFullScan", " └─TableFullScan 10000.00 cop[tikv] table:t keep order:false, stats:pseudo" ], @@ -2323,13 +2422,13 @@ "HashAgg 16000.00 root group by:Column#5, funcs:firstrow(Column#6)->Column#3", "└─PartitionUnion 16000.00 root ", " ├─HashAgg 8000.00 root group by:Column#7, funcs:firstrow(Column#7)->Column#6, funcs:firstrow(Column#7)->Column#5", - " │ └─TableReader 8000.00 root data:HashAgg", + " │ └─IndexReader 8000.00 root index:HashAgg", " │ └─HashAgg 8000.00 cop[tikv] group by:date_format(test.tc.timestamp, \"%Y-%m-%d %H\"), ", - " │ └─TableFullScan 10000.00 cop[tikv] table:tc, partition:p2020072312 keep order:false, stats:pseudo", + " │ └─IndexFullScan 10000.00 cop[tikv] table:tc, partition:p2020072312, index:idx_timestamp(timestamp) keep order:false, stats:pseudo", " └─HashAgg 8000.00 root group by:Column#10, funcs:firstrow(Column#10)->Column#6, funcs:firstrow(Column#10)->Column#5", - " └─TableReader 8000.00 root data:HashAgg", + " └─IndexReader 8000.00 root index:HashAgg", " └─HashAgg 8000.00 cop[tikv] group by:date_format(test.tc.timestamp, \"%Y-%m-%d %H\"), ", - " └─TableFullScan 10000.00 cop[tikv] table:tc, partition:p2020072313 keep order:false, stats:pseudo" + " └─IndexFullScan 10000.00 cop[tikv] table:tc, partition:p2020072313, index:idx_timestamp(timestamp) keep order:false, stats:pseudo" ], "Result": null } @@ -2506,13 +2605,13 @@ "HashAgg 16000.00 root group by:Column#5, funcs:firstrow(Column#6)->Column#3", "└─PartitionUnion 16000.00 root ", " ├─HashAgg 8000.00 root group by:Column#7, funcs:firstrow(Column#7)->Column#6, funcs:firstrow(Column#7)->Column#5", - " │ └─TableReader 8000.00 root data:HashAgg", + " │ └─IndexReader 8000.00 root index:HashAgg", " │ └─HashAgg 8000.00 cop[tikv] group by:date_format(test.tc.timestamp, \"%Y-%m-%d %H\"), ", - " │ └─TableFullScan 10000.00 cop[tikv] table:tc, partition:p2020072312 keep order:false, stats:pseudo", + " │ └─IndexFullScan 10000.00 cop[tikv] table:tc, partition:p2020072312, index:idx_timestamp(timestamp) keep order:false, stats:pseudo", " └─HashAgg 8000.00 root group by:Column#10, funcs:firstrow(Column#10)->Column#6, funcs:firstrow(Column#10)->Column#5", - " └─TableReader 8000.00 root data:HashAgg", + " └─IndexReader 8000.00 root index:HashAgg", " └─HashAgg 8000.00 cop[tikv] group by:date_format(test.tc.timestamp, \"%Y-%m-%d %H\"), ", - " └─TableFullScan 10000.00 cop[tikv] table:tc, partition:p2020072313 keep order:false, stats:pseudo" + " └─IndexFullScan 10000.00 cop[tikv] table:tc, partition:p2020072313, index:idx_timestamp(timestamp) keep order:false, stats:pseudo" ], "Result": null } @@ -2889,8 +2988,8 @@ "IndexMergeJoin 12500.00 root left outer join, inner:TableReader, outer key:test.t1.a, inner key:test.t2.a, other cond:eq(test.t1.b, test.t2.b)", "├─TableReader(Build) 10000.00 root data:TableFullScan", "│ └─TableFullScan 10000.00 cop[tikv] table:t1 keep order:false, stats:pseudo", - "└─TableReader(Probe) 1.00 root data:TableRangeScan", - " └─TableRangeScan 1.00 cop[tikv] table:t2 range: decided by [test.t1.a], keep order:true, stats:pseudo" + "└─TableReader(Probe) 10000.00 root data:TableRangeScan", + " └─TableRangeScan 10000.00 cop[tikv] table:t2 range: decided by [test.t1.a], keep order:true, stats:pseudo" ], "Result": [ "1 1", @@ -2903,8 +3002,8 @@ "IndexHashJoin 12500.00 root left outer join, inner:TableReader, outer key:test.t1.a, inner key:test.t2.a, equal cond:eq(test.t1.a, test.t2.a), eq(test.t1.b, test.t2.b)", "├─TableReader(Build) 10000.00 root data:TableFullScan", "│ └─TableFullScan 10000.00 cop[tikv] table:t1 keep order:false, stats:pseudo", - "└─TableReader(Probe) 1.00 root data:TableRangeScan", - " └─TableRangeScan 1.00 cop[tikv] table:t2 range: decided by [test.t1.a], keep order:false, stats:pseudo" + "└─TableReader(Probe) 10000.00 root data:TableRangeScan", + " └─TableRangeScan 10000.00 cop[tikv] table:t2 range: decided by [test.t1.a], keep order:false, stats:pseudo" ], "Result": [ "1 1", @@ -2917,8 +3016,8 @@ "IndexJoin 12500.00 root left outer join, inner:TableReader, outer key:test.t1.a, inner key:test.t2.a, equal cond:eq(test.t1.a, test.t2.a), eq(test.t1.b, test.t2.b)", "├─TableReader(Build) 10000.00 root data:TableFullScan", "│ └─TableFullScan 10000.00 cop[tikv] table:t1 keep order:false, stats:pseudo", - "└─TableReader(Probe) 1.00 root data:TableRangeScan", - " └─TableRangeScan 1.00 cop[tikv] table:t2 range: decided by [test.t1.a], keep order:false, stats:pseudo" + "└─TableReader(Probe) 10000.00 root data:TableRangeScan", + " └─TableRangeScan 10000.00 cop[tikv] table:t2 range: decided by [test.t1.a], keep order:false, stats:pseudo" ], "Result": [ "1 1", @@ -2965,12 +3064,12 @@ " ├─TableReader(Build) 9990.00 root data:Selection", " │ └─Selection 9990.00 cop[tikv] not(isnull(test.t2.a))", " │ └─TableFullScan 10000.00 cop[tikv] table:t2 keep order:false, stats:pseudo", - " └─Selection(Probe) 0.80 root not(isnull(test.t1.a))", - " └─MaxOneRow 1.00 root ", - " └─IndexLookUp 0.00 root ", - " ├─IndexRangeScan(Build) 1.00 cop[tikv] table:t1, index:idx_a(a) range:[NULL,NULL], keep order:false, stats:pseudo", - " └─Selection(Probe) 0.00 cop[tikv] eq(test.t1.b, test.t2.b)", - " └─TableRowIDScan 1.00 cop[tikv] table:t1 keep order:false, stats:pseudo" + " └─Selection(Probe) 7992.00 root not(isnull(test.t1.a))", + " └─MaxOneRow 9990.00 root ", + " └─IndexLookUp 9.99 root ", + " ├─IndexRangeScan(Build) 9990.00 cop[tikv] table:t1, index:idx_a(a) range:[NULL,NULL], keep order:false, stats:pseudo", + " └─Selection(Probe) 9.99 cop[tikv] eq(test.t1.b, test.t2.b)", + " └─TableRowIDScan 9990.00 cop[tikv] table:t1 keep order:false, stats:pseudo" ], "Result": null }, @@ -2982,10 +3081,10 @@ " ├─TableReader(Build) 9990.00 root data:Selection", " │ └─Selection 9990.00 cop[tikv] not(isnull(test.t2.a))", " │ └─TableFullScan 10000.00 cop[tikv] table:t2 keep order:false, stats:pseudo", - " └─Selection(Probe) 0.80 root not(isnull(test.t3.a))", - " └─MaxOneRow 1.00 root ", - " └─IndexReader 2.00 root index:IndexRangeScan", - " └─IndexRangeScan 2.00 cop[tikv] table:t3, index:idx_abc(a, b, c) range: decided by [eq(test.t3.a, test.t2.a)], keep order:false, stats:pseudo" + " └─Selection(Probe) 7992.00 root not(isnull(test.t3.a))", + " └─MaxOneRow 9990.00 root ", + " └─IndexReader 19980.00 root index:IndexRangeScan", + " └─IndexRangeScan 19980.00 cop[tikv] table:t3, index:idx_abc(a, b, c) range: decided by [eq(test.t3.a, test.t2.a)], keep order:false, stats:pseudo" ], "Result": null } @@ -3264,11 +3363,11 @@ "SQL": "select date_format(d,'%Y') as df, sum(a), count(b), count(distinct c) from t group by date_format(d,'%Y')", "Plan": [ "Projection 8000.00 root date_format(test.t.d, %Y)->Column#9, Column#6, cast(Column#13, bigint(21) BINARY)->Column#7, Column#8", - "└─HashAgg 8000.00 root group by:Column#29, funcs:sum(Column#25)->Column#6, funcs:sum(Column#26)->Column#13, funcs:count(Column#27)->Column#8, funcs:firstrow(Column#28)->test.t.d", - " └─Projection 8000.00 root Column#11, cast(Column#12, decimal(20,0) BINARY)->Column#26, test.t.c, test.t.d, date_format(test.t.d, %Y)->Column#29", - " └─HashAgg 8000.00 root group by:Column#23, Column#24, funcs:sum(Column#19)->Column#11, funcs:count(Column#20)->Column#12, funcs:firstrow(Column#21)->test.t.c, funcs:firstrow(Column#22)->test.t.d", - " └─Projection 10000.00 root cast(test.t.a, decimal(10,0) BINARY)->Column#19, test.t.b, test.t.c, test.t.d, date_format(test.t.d, %Y)->Column#23, test.t.c", - " └─TableReader 10000.00 root data:TableFullScan", + "└─HashAgg 8000.00 root group by:Column#23, funcs:sum(Column#19)->Column#6, funcs:sum(Column#20)->Column#13, funcs:count(Column#21)->Column#8, funcs:firstrow(Column#22)->test.t.d", + " └─Projection 8000.00 root Column#11, cast(Column#12, decimal(20,0) BINARY)->Column#20, test.t.c, test.t.d, date_format(test.t.d, %Y)->Column#23", + " └─HashAgg 8000.00 root group by:Column#14, test.t.c, funcs:sum(Column#15)->Column#11, funcs:count(Column#16)->Column#12, funcs:firstrow(test.t.c)->test.t.c, funcs:firstrow(Column#18)->test.t.d", + " └─TableReader 8000.00 root data:HashAgg", + " └─HashAgg 8000.00 cop[tikv] group by:date_format(test.t.d, \"%Y\"), test.t.c, funcs:sum(test.t.a)->Column#15, funcs:count(test.t.b)->Column#16, funcs:firstrow(test.t.d)->Column#18", " └─TableFullScan 10000.00 cop[tikv] table:t keep order:false, stats:pseudo" ] }, @@ -3278,9 +3377,10 @@ "Projection 8000.00 root test.t.d, test.t.a, cast(Column#10, bigint(21) BINARY)->Column#6, cast(Column#12, bigint(21) BINARY)->Column#7, Column#8", "└─HashAgg 8000.00 root group by:Column#23, Column#24, funcs:sum(Column#18)->Column#10, funcs:sum(Column#19)->Column#12, funcs:count(Column#20)->Column#8, funcs:firstrow(Column#21)->test.t.a, funcs:firstrow(Column#22)->test.t.d", " └─Projection 8000.00 root cast(Column#9, decimal(20,0) BINARY)->Column#18, cast(Column#11, decimal(20,0) BINARY)->Column#19, test.t.c, test.t.a, test.t.d, test.t.d, test.t.a", - " └─HashAgg 8000.00 root group by:test.t.a, test.t.c, test.t.d, funcs:count(1)->Column#9, funcs:count(test.t.b)->Column#11, funcs:firstrow(test.t.c)->test.t.c, funcs:firstrow(test.t.a)->test.t.a, funcs:firstrow(test.t.d)->test.t.d", - " └─TableReader 10000.00 root data:TableFullScan", - " └─TableFullScan 10000.00 cop[tikv] table:t keep order:false, stats:pseudo" + " └─HashAgg 8000.00 root group by:test.t.a, test.t.c, test.t.d, funcs:count(Column#13)->Column#9, funcs:count(Column#14)->Column#11, funcs:firstrow(test.t.c)->test.t.c, funcs:firstrow(test.t.a)->test.t.a, funcs:firstrow(test.t.d)->test.t.d", + " └─TableReader 8000.00 root data:HashAgg", + " └─HashAgg 8000.00 cop[tikv] group by:test.t.a, test.t.c, test.t.d, funcs:count(1)->Column#13, funcs:count(test.t.b)->Column#14", + " └─TableFullScan 10000.00 cop[tikv] table:t keep order:false, stats:pseudo" ] }, { @@ -3776,9 +3876,10 @@ "Plan": [ "HashJoin 9990.00 root inner join, equal:[eq(test.t.a, test.t.a)]", "├─HashAgg(Build) 7992.00 root group by:test.t.a, funcs:firstrow(test.t.a)->test.t.a", - "│ └─TableReader 9990.00 root data:Selection", - "│ └─Selection 9990.00 cop[tikv] not(isnull(test.t.a))", - "│ └─TableFullScan 10000.00 cop[tikv] table:t1 keep order:false, stats:pseudo", + "│ └─TableReader 7992.00 root data:HashAgg", + "│ └─HashAgg 7992.00 cop[tikv] group by:test.t.a, ", + "│ └─Selection 9990.00 cop[tikv] not(isnull(test.t.a))", + "│ └─TableFullScan 10000.00 cop[tikv] table:t1 keep order:false, stats:pseudo", "└─TableReader(Probe) 9990.00 root data:Selection", " └─Selection 9990.00 cop[tikv] not(isnull(test.t.a))", " └─TableFullScan 10000.00 cop[tikv] table:t keep order:false, stats:pseudo" @@ -3790,9 +3891,10 @@ "Plan": [ "HashJoin 9990.00 root inner join, equal:[eq(test.t.a, test.t.a)]", "├─HashAgg(Build) 7992.00 root group by:test.t.a, funcs:firstrow(test.t.a)->test.t.a", - "│ └─TableReader 9990.00 root data:Selection", - "│ └─Selection 9990.00 cop[tikv] not(isnull(test.t.a))", - "│ └─TableFullScan 10000.00 cop[tikv] table:t1 keep order:false, stats:pseudo", + "│ └─TableReader 7992.00 root data:HashAgg", + "│ └─HashAgg 7992.00 cop[tikv] group by:test.t.a, ", + "│ └─Selection 9990.00 cop[tikv] not(isnull(test.t.a))", + "│ └─TableFullScan 10000.00 cop[tikv] table:t1 keep order:false, stats:pseudo", "└─TableReader(Probe) 9990.00 root data:Selection", " └─Selection 9990.00 cop[tikv] not(isnull(test.t.a))", " └─TableFullScan 10000.00 cop[tikv] table:t keep order:false, stats:pseudo" @@ -5069,9 +5171,10 @@ "SQL": "SELECT /*+ hash_join_probe(t1) */ * FROM t1 WHERE EXISTS (SELECT /*+ SEMI_JOIN_REWRITE() */ 1 FROM t2 WHERE t2.a = t1.a);", "Plan": [ "HashJoin 10000.00 root inner join, equal:[eq(test.t1.a, test.t2.a)]", - "├─HashAgg(Build) 8000.00 root group by:test.t2.a, funcs:firstrow(test.t2.a)->test.t2.a", - "│ └─TableReader 10000.00 root data:TableFullScan", - "│ └─TableFullScan 10000.00 cop[tikv] table:t2 keep order:false, stats:pseudo", + "├─StreamAgg(Build) 8000.00 root group by:test.t2.a, funcs:firstrow(test.t2.a)->test.t2.a", + "│ └─TableReader 8000.00 root data:StreamAgg", + "│ └─StreamAgg 8000.00 cop[tikv] group by:test.t2.a, ", + "│ └─TableFullScan 10000.00 cop[tikv] table:t2 keep order:true, stats:pseudo", "└─TableReader(Probe) 10000.00 root data:TableFullScan", " └─TableFullScan 10000.00 cop[tikv] table:t1 keep order:false, stats:pseudo" ], @@ -5087,9 +5190,10 @@ "HashJoin 10000.00 root inner join, equal:[eq(test.t1.a, test.t2.a)]", "├─TableReader(Build) 10000.00 root data:TableFullScan", "│ └─TableFullScan 10000.00 cop[tikv] table:t1 keep order:false, stats:pseudo", - "└─HashAgg(Probe) 8000.00 root group by:test.t2.a, funcs:firstrow(test.t2.a)->test.t2.a", - " └─TableReader 10000.00 root data:TableFullScan", - " └─TableFullScan 10000.00 cop[tikv] table:t2 keep order:false, stats:pseudo" + "└─StreamAgg(Probe) 8000.00 root group by:test.t2.a, funcs:firstrow(test.t2.a)->test.t2.a", + " └─TableReader 8000.00 root data:StreamAgg", + " └─StreamAgg 8000.00 cop[tikv] group by:test.t2.a, ", + " └─TableFullScan 10000.00 cop[tikv] table:t2 keep order:true, stats:pseudo" ], "Result": [ "1 1", @@ -5137,9 +5241,10 @@ "HashJoin 10000.00 root inner join, equal:[eq(test.t1.a, test.t2.a)]", "├─TableReader(Build) 10000.00 root data:TableFullScan", "│ └─TableFullScan 10000.00 cop[tikv] table:t1 keep order:false, stats:pseudo", - "└─HashAgg(Probe) 8000.00 root group by:test.t2.a, funcs:firstrow(test.t2.a)->test.t2.a", - " └─TableReader 10000.00 root data:TableFullScan", - " └─TableFullScan 10000.00 cop[tikv] table:t2 keep order:false, stats:pseudo" + "└─StreamAgg(Probe) 8000.00 root group by:test.t2.a, funcs:firstrow(test.t2.a)->test.t2.a", + " └─TableReader 8000.00 root data:StreamAgg", + " └─StreamAgg 8000.00 cop[tikv] group by:test.t2.a, ", + " └─TableFullScan 10000.00 cop[tikv] table:t2 keep order:true, stats:pseudo" ], "Result": [ "1 1", @@ -5151,9 +5256,10 @@ "SQL": "SELECT /*+ hash_join_build(t2@sel_2) */ * FROM t1 WHERE EXISTS (SELECT /*+ SEMI_JOIN_REWRITE() */ 1 FROM t2 WHERE t2.a = t1.a);", "Plan": [ "HashJoin 10000.00 root inner join, equal:[eq(test.t1.a, test.t2.a)]", - "├─HashAgg(Build) 8000.00 root group by:test.t2.a, funcs:firstrow(test.t2.a)->test.t2.a", - "│ └─TableReader 10000.00 root data:TableFullScan", - "│ └─TableFullScan 10000.00 cop[tikv] table:t2 keep order:false, stats:pseudo", + "├─StreamAgg(Build) 8000.00 root group by:test.t2.a, funcs:firstrow(test.t2.a)->test.t2.a", + "│ └─TableReader 8000.00 root data:StreamAgg", + "│ └─StreamAgg 8000.00 cop[tikv] group by:test.t2.a, ", + "│ └─TableFullScan 10000.00 cop[tikv] table:t2 keep order:true, stats:pseudo", "└─TableReader(Probe) 10000.00 root data:TableFullScan", " └─TableFullScan 10000.00 cop[tikv] table:t1 keep order:false, stats:pseudo" ], @@ -5781,9 +5887,9 @@ " ├─TableReader(Build) 9990.00 root data:Selection", " │ └─Selection 9990.00 cop[tikv] not(isnull(test.t1.a))", " │ └─TableFullScan 10000.00 cop[tikv] table:t1 keep order:false, stats:pseudo", - " └─TableReader(Probe) 9.99 root data:Selection", - " └─Selection 9.99 cop[tikv] not(isnull(test.t2.b))", - " └─TableRangeScan 1.00 cop[tikv] table:t2 range: decided by [eq(test.t2.a, test.t1.b)], keep order:false, stats:pseudo" + " └─TableReader(Probe) 99800.10 root data:Selection", + " └─Selection 99800.10 cop[tikv] not(isnull(test.t2.b))", + " └─TableRangeScan 9990.00 cop[tikv] table:t2 range: decided by [eq(test.t2.a, test.t1.b)], keep order:false, stats:pseudo" ], "Result": [ "1" @@ -5814,8 +5920,8 @@ " └─Apply 10000.00 root CARTESIAN left outer semi join, other cond:eq(test.t1.a, test.t2.b)", " ├─TableReader(Build) 10000.00 root data:TableFullScan", " │ └─TableFullScan 10000.00 cop[tikv] table:t1 keep order:false, stats:pseudo", - " └─TableReader(Probe) 1.00 root data:TableRangeScan", - " └─TableRangeScan 1.00 cop[tikv] table:t2 range: decided by [eq(test.t2.a, test.t1.b)], keep order:false, stats:pseudo" + " └─TableReader(Probe) 10000.00 root data:TableRangeScan", + " └─TableRangeScan 10000.00 cop[tikv] table:t2 range: decided by [eq(test.t2.a, test.t1.b)], keep order:false, stats:pseudo" ], "Result": [ "1" @@ -5829,10 +5935,10 @@ "└─Apply 10000.00 root CARTESIAN inner join", " ├─TableReader(Build) 10000.00 root data:TableFullScan", " │ └─TableFullScan 10000.00 cop[tikv] table:t1 keep order:false, stats:pseudo", - " └─StreamAgg(Probe) 1.00 root funcs:max(Column#14)->Column#8, funcs:count(distinct Column#15)->Column#9, funcs:sum(Column#16)->Column#10, funcs:count(1)->Column#11", - " └─Projection 1.00 root test.t2.b, test.t2.b, cast(isnull(test.t2.b), decimal(20,0) BINARY)->Column#16", - " └─TableReader 1.00 root data:TableRangeScan", - " └─TableRangeScan 1.00 cop[tikv] table:t2 range: decided by [eq(test.t2.a, test.t1.b)], keep order:false, stats:pseudo" + " └─HashAgg(Probe) 10000.00 root funcs:max(Column#14)->Column#8, funcs:count(distinct Column#15)->Column#9, funcs:sum(Column#16)->Column#10, funcs:count(1)->Column#11", + " └─Projection 10000.00 root test.t2.b, test.t2.b, cast(isnull(test.t2.b), decimal(20,0) BINARY)->Column#16", + " └─TableReader 10000.00 root data:TableRangeScan", + " └─TableRangeScan 10000.00 cop[tikv] table:t2 range: decided by [eq(test.t2.a, test.t1.b)], keep order:false, stats:pseudo" ], "Result": [ "1 0", @@ -5847,10 +5953,10 @@ "└─Apply 10000.00 root CARTESIAN inner join", " ├─TableReader(Build) 10000.00 root data:TableFullScan", " │ └─TableFullScan 10000.00 cop[tikv] table:t1 keep order:false, stats:pseudo", - " └─StreamAgg(Probe) 1.00 root funcs:max(Column#14)->Column#8, funcs:count(distinct Column#15)->Column#9, funcs:sum(Column#16)->Column#10, funcs:count(1)->Column#11", - " └─Projection 1.00 root test.t2.b, test.t2.b, cast(isnull(test.t2.b), decimal(20,0) BINARY)->Column#16", - " └─TableReader 1.00 root data:TableRangeScan", - " └─TableRangeScan 1.00 cop[tikv] table:t2 range: decided by [eq(test.t2.a, test.t1.b)], keep order:false, stats:pseudo" + " └─HashAgg(Probe) 10000.00 root funcs:max(Column#14)->Column#8, funcs:count(distinct Column#15)->Column#9, funcs:sum(Column#16)->Column#10, funcs:count(1)->Column#11", + " └─Projection 10000.00 root test.t2.b, test.t2.b, cast(isnull(test.t2.b), decimal(20,0) BINARY)->Column#16", + " └─TableReader 10000.00 root data:TableRangeScan", + " └─TableRangeScan 10000.00 cop[tikv] table:t2 range: decided by [eq(test.t2.a, test.t1.b)], keep order:false, stats:pseudo" ], "Result": [ "1 0", @@ -5865,10 +5971,10 @@ "└─Apply 10000.00 root CARTESIAN inner join", " ├─TableReader(Build) 10000.00 root data:TableFullScan", " │ └─TableFullScan 10000.00 cop[tikv] table:t1 keep order:false, stats:pseudo", - " └─StreamAgg(Probe) 1.00 root funcs:max(Column#19)->Column#8, funcs:sum(Column#20)->Column#9, funcs:count(1)->Column#10", - " └─Projection 1.00 root test.t2.b, cast(isnull(test.t2.b), decimal(20,0) BINARY)->Column#20", - " └─TableReader 1.00 root data:TableRangeScan", - " └─TableRangeScan 1.00 cop[tikv] table:t2 range: decided by [eq(test.t2.a, test.t1.b)], keep order:false, stats:pseudo" + " └─HashAgg(Probe) 10000.00 root funcs:max(Column#19)->Column#8, funcs:sum(Column#20)->Column#9, funcs:count(1)->Column#10", + " └─Projection 10000.00 root test.t2.b, cast(isnull(test.t2.b), decimal(20,0) BINARY)->Column#20", + " └─TableReader 10000.00 root data:TableRangeScan", + " └─TableRangeScan 10000.00 cop[tikv] table:t2 range: decided by [eq(test.t2.a, test.t1.b)], keep order:false, stats:pseudo" ], "Result": [ "1 0", @@ -5883,10 +5989,10 @@ "└─Apply 10000.00 root CARTESIAN inner join", " ├─TableReader(Build) 10000.00 root data:TableFullScan", " │ └─TableFullScan 10000.00 cop[tikv] table:t1 keep order:false, stats:pseudo", - " └─StreamAgg(Probe) 1.00 root funcs:max(Column#19)->Column#8, funcs:sum(Column#20)->Column#9, funcs:count(1)->Column#10", - " └─Projection 1.00 root test.t2.b, cast(isnull(test.t2.b), decimal(20,0) BINARY)->Column#20", - " └─TableReader 1.00 root data:TableRangeScan", - " └─TableRangeScan 1.00 cop[tikv] table:t2 range: decided by [eq(test.t2.a, test.t1.b)], keep order:false, stats:pseudo" + " └─HashAgg(Probe) 10000.00 root funcs:max(Column#19)->Column#8, funcs:sum(Column#20)->Column#9, funcs:count(1)->Column#10", + " └─Projection 10000.00 root test.t2.b, cast(isnull(test.t2.b), decimal(20,0) BINARY)->Column#20", + " └─TableReader 10000.00 root data:TableRangeScan", + " └─TableRangeScan 10000.00 cop[tikv] table:t2 range: decided by [eq(test.t2.a, test.t1.b)], keep order:false, stats:pseudo" ], "Result": [ "1 0", @@ -5916,9 +6022,9 @@ "└─Apply 10000.00 root CARTESIAN left outer join", " ├─TableReader(Build) 10000.00 root data:TableFullScan", " │ └─TableFullScan 10000.00 cop[tikv] table:t1 keep order:false, stats:pseudo", - " └─MaxOneRow(Probe) 1.00 root ", - " └─TableReader 0.20 root data:TableRangeScan", - " └─TableRangeScan 0.20 cop[tikv] table:t2 range: decided by [eq(test.t2.a, test.t1.b)], keep order:false, stats:pseudo" + " └─MaxOneRow(Probe) 10000.00 root ", + " └─TableReader 2000.00 root data:TableRangeScan", + " └─TableRangeScan 2000.00 cop[tikv] table:t2 range: decided by [eq(test.t2.a, test.t1.b)], keep order:false, stats:pseudo" ], "Result": [ "1 1", @@ -5980,11 +6086,11 @@ "└─Apply 10000.00 root CARTESIAN left outer semi join", " ├─TableReader(Build) 10000.00 root data:TableFullScan", " │ └─TableFullScan 10000.00 cop[tikv] table:t1 keep order:false, stats:pseudo", - " └─Limit(Probe) 2.00 root offset:0, count:2", - " └─TableReader 2.00 root data:Limit", - " └─Limit 2.00 cop[tikv] offset:0, count:2", - " └─Selection 2.00 cop[tikv] eq(test.t3.a, test.t1.b)", - " └─TableFullScan 2000.00 cop[tikv] table:t3 keep order:false, stats:pseudo" + " └─Limit(Probe) 20000.00 root offset:0, count:2", + " └─TableReader 20000.00 root data:Limit", + " └─Limit 20000.00 cop[tikv] offset:0, count:2", + " └─Selection 20000.00 cop[tikv] eq(test.t3.a, test.t1.b)", + " └─TableFullScan 20000000.00 cop[tikv] table:t3 keep order:false, stats:pseudo" ], "Result": [ "1", @@ -5998,9 +6104,9 @@ "Projection 1.00 root test.t1.a, Column#6", "└─HashJoin 1.00 root CARTESIAN left outer join", " ├─Point_Get(Build) 1.00 root table:t2 handle:10", - " └─StreamAgg(Probe) 1.00 root funcs:sum(Column#15)->Column#6, funcs:firstrow(Column#16)->test.t1.a", - " └─TableReader 1.00 root data:StreamAgg", - " └─StreamAgg 1.00 cop[tikv] funcs:sum(test.t1.a)->Column#15, funcs:firstrow(test.t1.a)->Column#16", + " └─HashAgg(Probe) 1.00 root funcs:sum(Column#13)->Column#6, funcs:firstrow(Column#14)->test.t1.a", + " └─TableReader 1.00 root data:HashAgg", + " └─HashAgg 1.00 cop[tikv] funcs:sum(test.t1.a)->Column#13, funcs:firstrow(test.t1.a)->Column#14", " └─TableFullScan 10000.00 cop[tikv] table:t1 keep order:false, stats:pseudo" ], "Result": [ @@ -6052,12 +6158,12 @@ "└─Apply 10000.00 root CARTESIAN left outer join", " ├─TableReader(Build) 10000.00 root data:TableFullScan", " │ └─TableFullScan 10000.00 cop[tikv] table:t1 keep order:false, stats:pseudo", - " └─MaxOneRow(Probe) 1.00 root ", - " └─StreamAgg 1.00 root funcs:count(Column#12)->Column#10", - " └─TableReader 1.00 root data:StreamAgg", - " └─StreamAgg 1.00 cop[tikv] funcs:count(test.t3.a)->Column#12", - " └─Selection 10.00 cop[tikv] eq(test.t3.b, test.t1.b)", - " └─TableFullScan 10000.00 cop[tikv] table:t3 keep order:false, stats:pseudo" + " └─MaxOneRow(Probe) 10000.00 root ", + " └─HashAgg 10000.00 root funcs:count(Column#11)->Column#10", + " └─TableReader 10000.00 root data:HashAgg", + " └─HashAgg 10000.00 cop[tikv] funcs:count(test.t3.a)->Column#11", + " └─Selection 100000.00 cop[tikv] eq(test.t3.b, test.t1.b)", + " └─TableFullScan 100000000.00 cop[tikv] table:t3 keep order:false, stats:pseudo" ], "Result": [ "0", @@ -6069,9 +6175,9 @@ "SQL": "SELECT ta.NAME,(SELECT sum(tb.CODE) FROM tb WHERE ta.id = tb.id) tb_sum_code FROM ta WHERE ta.NAME LIKE 'chad999%'", "Plan": [ "HashJoin 250.00 root left outer join, equal:[eq(test.ta.id, test.tb.id)]", - "├─IndexLookUp(Build) 250.00 root ", - "│ ├─IndexRangeScan(Build) 250.00 cop[tikv] table:ta, index:idx_ta_name(name) range:[\"chad999\",\"chad99:\"), keep order:false, stats:pseudo", - "│ └─TableRowIDScan(Probe) 250.00 cop[tikv] table:ta keep order:false, stats:pseudo", + "├─TableReader(Build) 250.00 root data:Selection", + "│ └─Selection 250.00 cop[tikv] like(test.ta.name, \"chad999%\", 92)", + "│ └─TableFullScan 10000.00 cop[tikv] table:ta keep order:false, stats:pseudo", "└─HashAgg(Probe) 7992.00 root group by:test.tb.id, funcs:sum(Column#19)->Column#13, funcs:firstrow(test.tb.id)->test.tb.id", " └─TableReader 7992.00 root data:HashAgg", " └─HashAgg 7992.00 cop[tikv] group by:test.tb.id, funcs:sum(test.tb.code)->Column#19", @@ -6086,15 +6192,15 @@ "Plan": [ "Projection 250.00 root test.ta.name, Column#13", "└─Apply 250.00 root CARTESIAN left outer join", - " ├─IndexLookUp(Build) 250.00 root ", - " │ ├─IndexRangeScan(Build) 250.00 cop[tikv] table:ta, index:idx_ta_name(name) range:[\"chad999\",\"chad99:\"), keep order:false, stats:pseudo", - " │ └─TableRowIDScan(Probe) 250.00 cop[tikv] table:ta keep order:false, stats:pseudo", - " └─MaxOneRow(Probe) 1.00 root ", - " └─StreamAgg 1.00 root funcs:sum(Column#21)->Column#13", - " └─Projection 10.00 root cast(test.tb.code, decimal(10,0) BINARY)->Column#21", - " └─IndexLookUp 10.00 root ", - " ├─IndexRangeScan(Build) 10.00 cop[tikv] table:tb, index:idx_tb_id(id) range: decided by [eq(test.ta.id, test.tb.id)], keep order:false, stats:pseudo", - " └─TableRowIDScan(Probe) 10.00 cop[tikv] table:tb keep order:false, stats:pseudo" + " ├─TableReader(Build) 250.00 root data:Selection", + " │ └─Selection 250.00 cop[tikv] like(test.ta.name, \"chad999%\", 92)", + " │ └─TableFullScan 10000.00 cop[tikv] table:ta keep order:false, stats:pseudo", + " └─MaxOneRow(Probe) 250.00 root ", + " └─StreamAgg 250.00 root funcs:sum(Column#21)->Column#13", + " └─Projection 2500.00 root cast(test.tb.code, decimal(10,0) BINARY)->Column#21", + " └─IndexLookUp 2500.00 root ", + " ├─IndexRangeScan(Build) 2500.00 cop[tikv] table:tb, index:idx_tb_id(id) range: decided by [eq(test.ta.id, test.tb.id)], keep order:false, stats:pseudo", + " └─TableRowIDScan(Probe) 2500.00 cop[tikv] table:tb keep order:false, stats:pseudo" ], "Result": null, "Warning": null @@ -6103,9 +6209,9 @@ "SQL": "SELECT ta.NAME,(SELECT sum(tb.CODE) FROM tb WHERE ta.id = tb.id and exists (select 1 from tc where tb.name=tc.name and tc.`code` like '999%')) tb_sum_code FROM ta WHERE ta.NAME LIKE 'chad999%'", "Plan": [ "HashJoin 250.00 root left outer join, equal:[eq(test.ta.id, test.tb.id)]", - "├─IndexLookUp(Build) 250.00 root ", - "│ ├─IndexRangeScan(Build) 250.00 cop[tikv] table:ta, index:idx_ta_name(name) range:[\"chad999\",\"chad99:\"), keep order:false, stats:pseudo", - "│ └─TableRowIDScan(Probe) 250.00 cop[tikv] table:ta keep order:false, stats:pseudo", + "├─TableReader(Build) 250.00 root data:Selection", + "│ └─Selection 250.00 cop[tikv] like(test.ta.name, \"chad999%\", 92)", + "│ └─TableFullScan 10000.00 cop[tikv] table:ta keep order:false, stats:pseudo", "└─HashAgg(Probe) 6387.21 root group by:Column#39, funcs:sum(Column#37)->Column#18, funcs:firstrow(Column#38)->test.tb.id", " └─Projection 7984.01 root cast(test.tb.code, decimal(10,0) BINARY)->Column#37, test.tb.id, test.tb.id", " └─HashJoin 7984.01 root semi join, equal:[eq(test.tb.name, test.tc.name)]", @@ -6124,22 +6230,22 @@ "Plan": [ "Projection 250.00 root test.ta.name, Column#18", "└─Apply 250.00 root CARTESIAN left outer join", - " ├─IndexLookUp(Build) 250.00 root ", - " │ ├─IndexRangeScan(Build) 250.00 cop[tikv] table:ta, index:idx_ta_name(name) range:[\"chad999\",\"chad99:\"), keep order:false, stats:pseudo", - " │ └─TableRowIDScan(Probe) 250.00 cop[tikv] table:ta keep order:false, stats:pseudo", - " └─MaxOneRow(Probe) 1.00 root ", - " └─StreamAgg 1.00 root funcs:sum(Column#33)->Column#18", - " └─Projection 7.99 root cast(test.tb.code, decimal(10,0) BINARY)->Column#33", - " └─IndexJoin 7.99 root semi join, inner:IndexLookUp, outer key:test.tb.name, inner key:test.tc.name, equal cond:eq(test.tb.name, test.tc.name)", - " ├─IndexLookUp(Build) 9.99 root ", - " │ ├─IndexRangeScan(Build) 10.00 cop[tikv] table:tb, index:idx_tb_id(id) range: decided by [eq(test.ta.id, test.tb.id)], keep order:false, stats:pseudo", - " │ └─Selection(Probe) 9.99 cop[tikv] not(isnull(test.tb.name))", - " │ └─TableRowIDScan 10.00 cop[tikv] table:tb keep order:false, stats:pseudo", - " └─IndexLookUp(Probe) 1.25 root ", - " ├─Selection(Build) 1.56 cop[tikv] not(isnull(test.tc.name))", - " │ └─IndexRangeScan 1.56 cop[tikv] table:tc, index:idx_tc_name(name) range: decided by [eq(test.tc.name, test.tb.name)], keep order:false, stats:pseudo", - " └─Selection(Probe) 1.25 cop[tikv] like(cast(test.tc.code, var_string(20)), \"999%\", 92)", - " └─TableRowIDScan 1.56 cop[tikv] table:tc keep order:false, stats:pseudo" + " ├─TableReader(Build) 250.00 root data:Selection", + " │ └─Selection 250.00 cop[tikv] like(test.ta.name, \"chad999%\", 92)", + " │ └─TableFullScan 10000.00 cop[tikv] table:ta keep order:false, stats:pseudo", + " └─MaxOneRow(Probe) 250.00 root ", + " └─HashAgg 250.00 root funcs:sum(Column#33)->Column#18", + " └─Projection 1998.00 root cast(test.tb.code, decimal(10,0) BINARY)->Column#33", + " └─IndexJoin 1998.00 root semi join, inner:IndexLookUp, outer key:test.tb.name, inner key:test.tc.name, equal cond:eq(test.tb.name, test.tc.name)", + " ├─IndexLookUp(Build) 2497.50 root ", + " │ ├─IndexRangeScan(Build) 2500.00 cop[tikv] table:tb, index:idx_tb_id(id) range: decided by [eq(test.ta.id, test.tb.id)], keep order:false, stats:pseudo", + " │ └─Selection(Probe) 2497.50 cop[tikv] not(isnull(test.tb.name))", + " │ └─TableRowIDScan 2500.00 cop[tikv] table:tb keep order:false, stats:pseudo", + " └─IndexLookUp(Probe) 3121.87 root ", + " ├─Selection(Build) 3902.34 cop[tikv] not(isnull(test.tc.name))", + " │ └─IndexRangeScan 3906.25 cop[tikv] table:tc, index:idx_tc_name(name) range: decided by [eq(test.tc.name, test.tb.name)], keep order:false, stats:pseudo", + " └─Selection(Probe) 3121.87 cop[tikv] like(cast(test.tc.code, var_string(20)), \"999%\", 92)", + " └─TableRowIDScan 3902.34 cop[tikv] table:tc keep order:false, stats:pseudo" ], "Result": null, "Warning": null @@ -6148,19 +6254,19 @@ "SQL": "SELECT ta.NAME,(SELECT sum(tb.CODE) FROM tb WHERE ta.id = tb.id and exists (select /*+ no_decorrelate() */ 1 from tc where tb.name=tc.name and tc.`code` like '999%')) tb_sum_code FROM ta WHERE ta.NAME LIKE 'chad999%'", "Plan": [ "HashJoin 250.00 root left outer join, equal:[eq(test.ta.id, test.tb.id)]", - "├─IndexLookUp(Build) 250.00 root ", - "│ ├─IndexRangeScan(Build) 250.00 cop[tikv] table:ta, index:idx_ta_name(name) range:[\"chad999\",\"chad99:\"), keep order:false, stats:pseudo", - "│ └─TableRowIDScan(Probe) 250.00 cop[tikv] table:ta keep order:false, stats:pseudo", + "├─TableReader(Build) 250.00 root data:Selection", + "│ └─Selection 250.00 cop[tikv] like(test.ta.name, \"chad999%\", 92)", + "│ └─TableFullScan 10000.00 cop[tikv] table:ta keep order:false, stats:pseudo", "└─HashAgg(Probe) 7992.00 root group by:Column#28, funcs:sum(Column#26)->Column#18, funcs:firstrow(Column#27)->test.tb.id", " └─Projection 9990.00 root cast(test.tb.code, decimal(10,0) BINARY)->Column#26, test.tb.id, test.tb.id", " └─Apply 9990.00 root CARTESIAN semi join", " ├─TableReader(Build) 9990.00 root data:Selection", " │ └─Selection 9990.00 cop[tikv] not(isnull(test.tb.id))", " │ └─TableFullScan 10000.00 cop[tikv] table:tb keep order:false, stats:pseudo", - " └─IndexLookUp(Probe) 8.00 root ", - " ├─IndexRangeScan(Build) 10.00 cop[tikv] table:tc, index:idx_tc_name(name) range: decided by [eq(test.tb.name, test.tc.name)], keep order:false, stats:pseudo", - " └─Selection(Probe) 8.00 cop[tikv] like(cast(test.tc.code, var_string(20)), \"999%\", 92)", - " └─TableRowIDScan 10.00 cop[tikv] table:tc keep order:false, stats:pseudo" + " └─IndexLookUp(Probe) 79920.00 root ", + " ├─IndexRangeScan(Build) 99900.00 cop[tikv] table:tc, index:idx_tc_name(name) range: decided by [eq(test.tb.name, test.tc.name)], keep order:false, stats:pseudo", + " └─Selection(Probe) 79920.00 cop[tikv] like(cast(test.tc.code, var_string(20)), \"999%\", 92)", + " └─TableRowIDScan 99900.00 cop[tikv] table:tc keep order:false, stats:pseudo" ], "Result": null, "Warning": null @@ -6170,20 +6276,20 @@ "Plan": [ "Projection 250.00 root test.ta.name, Column#18", "└─Apply 250.00 root CARTESIAN left outer join", - " ├─IndexLookUp(Build) 250.00 root ", - " │ ├─IndexRangeScan(Build) 250.00 cop[tikv] table:ta, index:idx_ta_name(name) range:[\"chad999\",\"chad99:\"), keep order:false, stats:pseudo", - " │ └─TableRowIDScan(Probe) 250.00 cop[tikv] table:ta keep order:false, stats:pseudo", - " └─MaxOneRow(Probe) 1.00 root ", - " └─StreamAgg 1.00 root funcs:sum(Column#22)->Column#18", - " └─Projection 10.00 root cast(test.tb.code, decimal(10,0) BINARY)->Column#22", - " └─Apply 10.00 root CARTESIAN semi join", - " ├─IndexLookUp(Build) 10.00 root ", - " │ ├─IndexRangeScan(Build) 10.00 cop[tikv] table:tb, index:idx_tb_id(id) range: decided by [eq(test.ta.id, test.tb.id)], keep order:false, stats:pseudo", - " │ └─TableRowIDScan(Probe) 10.00 cop[tikv] table:tb keep order:false, stats:pseudo", - " └─IndexLookUp(Probe) 8.00 root ", - " ├─IndexRangeScan(Build) 10.00 cop[tikv] table:tc, index:idx_tc_name(name) range: decided by [eq(test.tb.name, test.tc.name)], keep order:false, stats:pseudo", - " └─Selection(Probe) 8.00 cop[tikv] like(cast(test.tc.code, var_string(20)), \"999%\", 92)", - " └─TableRowIDScan 10.00 cop[tikv] table:tc keep order:false, stats:pseudo" + " ├─TableReader(Build) 250.00 root data:Selection", + " │ └─Selection 250.00 cop[tikv] like(test.ta.name, \"chad999%\", 92)", + " │ └─TableFullScan 10000.00 cop[tikv] table:ta keep order:false, stats:pseudo", + " └─MaxOneRow(Probe) 250.00 root ", + " └─HashAgg 250.00 root funcs:sum(Column#22)->Column#18", + " └─Projection 2500.00 root cast(test.tb.code, decimal(10,0) BINARY)->Column#22", + " └─Apply 2500.00 root CARTESIAN semi join", + " ├─IndexLookUp(Build) 2500.00 root ", + " │ ├─IndexRangeScan(Build) 2500.00 cop[tikv] table:tb, index:idx_tb_id(id) range: decided by [eq(test.ta.id, test.tb.id)], keep order:false, stats:pseudo", + " │ └─TableRowIDScan(Probe) 2500.00 cop[tikv] table:tb keep order:false, stats:pseudo", + " └─IndexLookUp(Probe) 20000.00 root ", + " ├─IndexRangeScan(Build) 25000.00 cop[tikv] table:tc, index:idx_tc_name(name) range: decided by [eq(test.tb.name, test.tc.name)], keep order:false, stats:pseudo", + " └─Selection(Probe) 20000.00 cop[tikv] like(cast(test.tc.code, var_string(20)), \"999%\", 92)", + " └─TableRowIDScan 25000.00 cop[tikv] table:tc keep order:false, stats:pseudo" ], "Result": null, "Warning": null @@ -6215,15 +6321,15 @@ " ├─IndexLookUp(Build) 10.00 root ", " │ ├─IndexRangeScan(Build) 10.00 cop[tikv] table:ta, index:idx_ta_name(name) range:[\"chad999\",\"chad999\"], keep order:false, stats:pseudo", " │ └─TableRowIDScan(Probe) 10.00 cop[tikv] table:ta keep order:false, stats:pseudo", - " └─Selection(Probe) 0.80 root gt(Column#9, 900)", - " └─MaxOneRow 1.00 root ", - " └─StreamAgg 1.00 root funcs:max(test.tb.code)->Column#9", - " └─TopN 1.00 root test.tb.code:desc, offset:0, count:1", - " └─IndexLookUp 1.00 root ", - " ├─IndexRangeScan(Build) 10.00 cop[tikv] table:tb, index:idx_tb_id(id) range: decided by [eq(test.ta.id, test.tb.id)], keep order:false, stats:pseudo", - " └─TopN(Probe) 1.00 cop[tikv] test.tb.code:desc, offset:0, count:1", - " └─Selection 9.99 cop[tikv] not(isnull(test.tb.code))", - " └─TableRowIDScan 10.00 cop[tikv] table:tb keep order:false, stats:pseudo" + " └─Selection(Probe) 8.00 root gt(Column#9, 900)", + " └─MaxOneRow 10.00 root ", + " └─HashAgg 10.00 root funcs:max(test.tb.code)->Column#9", + " └─TopN 10.00 root test.tb.code:desc, offset:0, count:1", + " └─IndexLookUp 10.00 root ", + " ├─IndexRangeScan(Build) 100.00 cop[tikv] table:tb, index:idx_tb_id(id) range: decided by [eq(test.ta.id, test.tb.id)], keep order:false, stats:pseudo", + " └─TopN(Probe) 10.00 cop[tikv] test.tb.code:desc, offset:0, count:1", + " └─Selection 99.90 cop[tikv] not(isnull(test.tb.code))", + " └─TableRowIDScan 100.00 cop[tikv] table:tb keep order:false, stats:pseudo" ], "Result": null, "Warning": null @@ -6233,24 +6339,22 @@ "Plan": [ "HashJoin 159.84 root inner join, equal:[eq(test.ta.id, test.td.id)]", "├─Selection(Build) 159.84 root gt(Column#19, 100)", - "│ └─HashAgg 199.80 root group by:test.td.id, funcs:max(Column#36)->Column#19, funcs:firstrow(test.td.id)->test.td.id", - "│ └─IndexLookUp 199.80 root ", - "│ ├─IndexRangeScan(Build) 250.00 cop[tikv] table:td, index:idx_tc_name(name) range:[\"chad999\",\"chad99:\"), keep order:false, stats:pseudo", - "│ └─HashAgg(Probe) 199.80 cop[tikv] group by:test.td.id, funcs:max(test.td.id)->Column#36", - "│ └─Selection 249.75 cop[tikv] not(isnull(test.td.id))", - "│ └─TableRowIDScan 250.00 cop[tikv] table:td keep order:false, stats:pseudo", + "│ └─HashAgg 199.80 root group by:test.td.id, funcs:max(Column#32)->Column#19, funcs:firstrow(test.td.id)->test.td.id", + "│ └─TableReader 199.80 root data:HashAgg", + "│ └─HashAgg 199.80 cop[tikv] group by:test.td.id, funcs:max(test.td.id)->Column#32", + "│ └─Selection 249.75 cop[tikv] like(test.td.name, \"chad999%\", 92), not(isnull(test.td.id))", + "│ └─TableFullScan 10000.00 cop[tikv] table:td keep order:false, stats:pseudo", "└─HashJoin(Probe) 200.00 root inner join, equal:[eq(test.ta.name, test.tc.name)]", " ├─Selection(Build) 160.00 root gt(Column#14, 100)", - " │ └─HashAgg 200.00 root group by:test.tc.name, funcs:max(Column#27)->Column#14, funcs:firstrow(test.tc.name)->test.tc.name", - " │ └─IndexLookUp 200.00 root ", - " │ ├─IndexRangeScan(Build) 250.00 cop[tikv] table:tc, index:idx_tc_name(name) range:[\"chad99\",\"chad9:\"), keep order:false, stats:pseudo", - " │ └─HashAgg(Probe) 200.00 cop[tikv] group by:test.tc.name, funcs:max(test.tc.id)->Column#27", - " │ └─TableRowIDScan 250.00 cop[tikv] table:tc keep order:false, stats:pseudo", + " │ └─HashAgg 200.00 root group by:test.tc.name, funcs:max(Column#24)->Column#14, funcs:firstrow(test.tc.name)->test.tc.name", + " │ └─TableReader 200.00 root data:HashAgg", + " │ └─HashAgg 200.00 cop[tikv] group by:test.tc.name, funcs:max(test.tc.id)->Column#24", + " │ └─Selection 250.00 cop[tikv] like(test.tc.name, \"chad99%\", 92), not(isnull(test.tc.name))", + " │ └─TableFullScan 10000.00 cop[tikv] table:tc keep order:false, stats:pseudo", " └─HashJoin(Probe) 7976.02 root semi join, equal:[eq(test.ta.code, test.tb.code)]", - " ├─IndexLookUp(Build) 249.75 root ", - " │ ├─IndexRangeScan(Build) 250.00 cop[tikv] table:tb, index:idx_tb_name(name) range:[\"chad9\",\"chad:\"), keep order:false, stats:pseudo", - " │ └─Selection(Probe) 249.75 cop[tikv] not(isnull(test.tb.code))", - " │ └─TableRowIDScan 250.00 cop[tikv] table:tb keep order:false, stats:pseudo", + " ├─TableReader(Build) 249.75 root data:Selection", + " │ └─Selection 249.75 cop[tikv] like(test.tb.name, \"chad9%\", 92), not(isnull(test.tb.code))", + " │ └─TableFullScan 10000.00 cop[tikv] table:tb keep order:false, stats:pseudo", " └─TableReader(Probe) 9970.03 root data:Selection", " └─Selection 9970.03 cop[tikv] not(isnull(test.ta.code)), not(isnull(test.ta.id)), not(isnull(test.ta.name))", " └─TableFullScan 10000.00 cop[tikv] table:ta keep order:false, stats:pseudo" @@ -6266,34 +6370,33 @@ " ├─Apply(Build) 249.75 root CARTESIAN inner join", " │ ├─IndexJoin(Build) 249.75 root inner join, inner:IndexLookUp, outer key:test.tb.code, inner key:test.ta.code, equal cond:eq(test.tb.code, test.ta.code)", " │ │ ├─HashAgg(Build) 199.80 root group by:test.tb.code, funcs:firstrow(test.tb.code)->test.tb.code", - " │ │ │ └─IndexLookUp 249.75 root ", - " │ │ │ ├─IndexRangeScan(Build) 250.00 cop[tikv] table:tb, index:idx_tb_name(name) range:[\"chad9\",\"chad:\"), keep order:false, stats:pseudo", - " │ │ │ └─Selection(Probe) 249.75 cop[tikv] not(isnull(test.tb.code))", - " │ │ │ └─TableRowIDScan 250.00 cop[tikv] table:tb keep order:false, stats:pseudo", - " │ │ └─IndexLookUp(Probe) 1.25 root ", - " │ │ ├─Selection(Build) 1.25 cop[tikv] not(isnull(test.ta.code))", - " │ │ │ └─IndexRangeScan 1.25 cop[tikv] table:ta, index:idx_ta_code(code) range: decided by [eq(test.ta.code, test.tb.code)], keep order:false, stats:pseudo", - " │ │ └─TableRowIDScan(Probe) 1.25 cop[tikv] table:ta keep order:false, stats:pseudo", - " │ └─Selection(Probe) 0.80 root gt(Column#14, 100)", - " │ └─MaxOneRow 1.00 root ", - " │ └─StreamAgg 1.00 root funcs:max(test.tc.id)->Column#14", - " │ └─TopN 0.25 root test.tc.id:desc, offset:0, count:1", - " │ └─IndexLookUp 0.25 root ", - " │ ├─Selection(Build) 0.25 cop[tikv] eq(test.ta.name, test.tc.name)", - " │ │ └─IndexRangeScan 250.00 cop[tikv] table:tc, index:idx_tc_name(name) range:[\"chad99\",\"chad9:\"), keep order:false, stats:pseudo", - " │ └─TopN(Probe) 0.25 cop[tikv] test.tc.id:desc, offset:0, count:1", - " │ └─Selection 0.25 cop[tikv] not(isnull(test.tc.id))", - " │ └─TableRowIDScan 0.25 cop[tikv] table:tc keep order:false, stats:pseudo", - " └─Selection(Probe) 0.80 root gt(Column#19, 100)", - " └─MaxOneRow 1.00 root ", - " └─StreamAgg 1.00 root funcs:max(test.td.id)->Column#19", - " └─Limit 0.25 root offset:0, count:1", - " └─Projection 0.25 root test.td.id, test.td.name", - " └─IndexLookUp 0.25 root ", - " ├─Selection(Build) 9.99 cop[tikv] eq(test.ta.id, test.td.id)", - " │ └─IndexFullScan 9990.00 cop[tikv] table:td, index:idx_tc_id(id) keep order:true, desc, stats:pseudo", - " └─Selection(Probe) 0.25 cop[tikv] like(test.td.name, \"chad999%\", 92)", - " └─TableRowIDScan 9.99 cop[tikv] table:td keep order:false, stats:pseudo" + " │ │ │ └─TableReader 249.75 root data:Selection", + " │ │ │ └─Selection 249.75 cop[tikv] like(test.tb.name, \"chad9%\", 92), not(isnull(test.tb.code))", + " │ │ │ └─TableFullScan 10000.00 cop[tikv] table:tb keep order:false, stats:pseudo", + " │ │ └─IndexLookUp(Probe) 249.75 root ", + " │ │ ├─Selection(Build) 249.75 cop[tikv] not(isnull(test.ta.code))", + " │ │ │ └─IndexRangeScan 250.00 cop[tikv] table:ta, index:idx_ta_code(code) range: decided by [eq(test.ta.code, test.tb.code)], keep order:false, stats:pseudo", + " │ │ └─TableRowIDScan(Probe) 249.75 cop[tikv] table:ta keep order:false, stats:pseudo", + " │ └─Selection(Probe) 199.80 root gt(Column#14, 100)", + " │ └─MaxOneRow 249.75 root ", + " │ └─StreamAgg 249.75 root funcs:max(test.tc.id)->Column#14", + " │ └─TopN 62.38 root test.tc.id:desc, offset:0, count:1", + " │ └─IndexLookUp 62.38 root ", + " │ ├─Selection(Build) 62.44 cop[tikv] eq(test.ta.name, test.tc.name)", + " │ │ └─IndexRangeScan 62437.50 cop[tikv] table:tc, index:idx_tc_name(name) range:[\"chad99\",\"chad9:\"), keep order:false, stats:pseudo", + " │ └─TopN(Probe) 62.38 cop[tikv] test.tc.id:desc, offset:0, count:1", + " │ └─Selection 62.38 cop[tikv] not(isnull(test.tc.id))", + " │ └─TableRowIDScan 62.44 cop[tikv] table:tc keep order:false, stats:pseudo", + " └─Selection(Probe) 199.80 root gt(Column#19, 100)", + " └─MaxOneRow 249.75 root ", + " └─StreamAgg 249.75 root funcs:max(test.td.id)->Column#19", + " └─Limit 62.38 root offset:0, count:1", + " └─Projection 62.38 root test.td.id, test.td.name", + " └─IndexLookUp 62.38 root ", + " ├─Selection(Build) 2495.00 cop[tikv] eq(test.ta.id, test.td.id)", + " │ └─IndexFullScan 2495002.50 cop[tikv] table:td, index:idx_tc_id(id) keep order:true, desc, stats:pseudo", + " └─Selection(Probe) 62.38 cop[tikv] like(test.td.name, \"chad999%\", 92)", + " └─TableRowIDScan 2495.00 cop[tikv] table:td keep order:false, stats:pseudo" ], "Result": null, "Warning": null @@ -6307,30 +6410,29 @@ " │ ├─Apply(Build) 10000.00 root CARTESIAN semi join", " │ │ ├─TableReader(Build) 10000.00 root data:TableFullScan", " │ │ │ └─TableFullScan 10000.00 cop[tikv] table:ta keep order:false, stats:pseudo", - " │ │ └─IndexLookUp(Probe) 0.25 root ", - " │ │ ├─IndexRangeScan(Build) 250.00 cop[tikv] table:tb, index:idx_tb_name(name) range:[\"chad9\",\"chad:\"), keep order:false, stats:pseudo", - " │ │ └─Selection(Probe) 0.25 cop[tikv] eq(test.ta.code, test.tb.code)", - " │ │ └─TableRowIDScan 250.00 cop[tikv] table:tb keep order:false, stats:pseudo", - " │ └─Selection(Probe) 0.80 root gt(Column#14, 100)", - " │ └─MaxOneRow 1.00 root ", - " │ └─StreamAgg 1.00 root funcs:max(test.tc.id)->Column#14", - " │ └─TopN 0.25 root test.tc.id:desc, offset:0, count:1", - " │ └─IndexLookUp 0.25 root ", - " │ ├─Selection(Build) 0.25 cop[tikv] eq(test.ta.name, test.tc.name)", - " │ │ └─IndexRangeScan 250.00 cop[tikv] table:tc, index:idx_tc_name(name) range:[\"chad99\",\"chad9:\"), keep order:false, stats:pseudo", - " │ └─TopN(Probe) 0.25 cop[tikv] test.tc.id:desc, offset:0, count:1", - " │ └─Selection 0.25 cop[tikv] not(isnull(test.tc.id))", - " │ └─TableRowIDScan 0.25 cop[tikv] table:tc keep order:false, stats:pseudo", - " └─Selection(Probe) 0.80 root gt(Column#19, 100)", - " └─MaxOneRow 1.00 root ", - " └─StreamAgg 1.00 root funcs:max(test.td.id)->Column#19", - " └─Limit 0.25 root offset:0, count:1", - " └─Projection 0.25 root test.td.id, test.td.name", - " └─IndexLookUp 0.25 root ", - " ├─Selection(Build) 9.99 cop[tikv] eq(test.ta.id, test.td.id)", - " │ └─IndexFullScan 9990.00 cop[tikv] table:td, index:idx_tc_id(id) keep order:true, desc, stats:pseudo", - " └─Selection(Probe) 0.25 cop[tikv] like(test.td.name, \"chad999%\", 92)", - " └─TableRowIDScan 9.99 cop[tikv] table:td keep order:false, stats:pseudo" + " │ │ └─TableReader(Probe) 2500.00 root data:Selection", + " │ │ └─Selection 2500.00 cop[tikv] eq(test.ta.code, test.tb.code), like(test.tb.name, \"chad9%\", 92)", + " │ │ └─TableFullScan 100000000.00 cop[tikv] table:tb keep order:false, stats:pseudo", + " │ └─Selection(Probe) 8000.00 root gt(Column#14, 100)", + " │ └─MaxOneRow 10000.00 root ", + " │ └─StreamAgg 10000.00 root funcs:max(test.tc.id)->Column#14", + " │ └─TopN 2497.50 root test.tc.id:desc, offset:0, count:1", + " │ └─IndexLookUp 2497.50 root ", + " │ ├─Selection(Build) 2500.00 cop[tikv] eq(test.ta.name, test.tc.name)", + " │ │ └─IndexRangeScan 2500000.00 cop[tikv] table:tc, index:idx_tc_name(name) range:[\"chad99\",\"chad9:\"), keep order:false, stats:pseudo", + " │ └─TopN(Probe) 2497.50 cop[tikv] test.tc.id:desc, offset:0, count:1", + " │ └─Selection 2497.50 cop[tikv] not(isnull(test.tc.id))", + " │ └─TableRowIDScan 2500.00 cop[tikv] table:tc keep order:false, stats:pseudo", + " └─Selection(Probe) 8000.00 root gt(Column#19, 100)", + " └─MaxOneRow 10000.00 root ", + " └─StreamAgg 10000.00 root funcs:max(test.td.id)->Column#19", + " └─Limit 2497.50 root offset:0, count:1", + " └─Projection 2497.50 root test.td.id, test.td.name", + " └─IndexLookUp 2497.50 root ", + " ├─Selection(Build) 99900.00 cop[tikv] eq(test.ta.id, test.td.id)", + " │ └─IndexFullScan 99900000.00 cop[tikv] table:td, index:idx_tc_id(id) keep order:true, desc, stats:pseudo", + " └─Selection(Probe) 2497.50 cop[tikv] like(test.td.name, \"chad999%\", 92)", + " └─TableRowIDScan 99900.00 cop[tikv] table:td keep order:false, stats:pseudo" ], "Result": null, "Warning": null diff --git a/planner/core/testdata/stats_suite_out.json b/planner/core/testdata/stats_suite_out.json index 26f0f2fe5a193..03af4766d0995 100644 --- a/planner/core/testdata/stats_suite_out.json +++ b/planner/core/testdata/stats_suite_out.json @@ -184,9 +184,9 @@ " └─Apply 4.00 root CARTESIAN left outer join", " ├─IndexReader(Build) 4.00 root index:IndexFullScan", " │ └─IndexFullScan 4.00 cop[tikv] table:t1, index:a(a, b) keep order:true", - " └─MaxOneRow(Probe) 1.00 root ", - " └─IndexReader 2.00 root index:IndexRangeScan", - " └─IndexRangeScan 2.00 cop[tikv] table:t2, index:a(a, b) range: decided by [eq(test.t2.a, test.t1.a)], keep order:false" + " └─MaxOneRow(Probe) 4.00 root ", + " └─IndexReader 8.00 root index:IndexRangeScan", + " └─IndexRangeScan 8.00 cop[tikv] table:t2, index:a(a, b) range: decided by [eq(test.t2.a, test.t1.a)], keep order:false" ] }, { @@ -196,10 +196,10 @@ "└─Apply 4.00 root left outer semi join, equal:[eq(test.t1.b, test.t2.b)]", " ├─IndexReader(Build) 4.00 root index:IndexFullScan", " │ └─IndexFullScan 4.00 cop[tikv] table:t1, index:a(a, b) keep order:true", - " └─Limit(Probe) 3.00 root offset:0, count:3", - " └─IndexReader 3.00 root index:Limit", - " └─Limit 3.00 cop[tikv] offset:0, count:3", - " └─IndexRangeScan 3.00 cop[tikv] table:t2, index:a(a, b) range: decided by [eq(test.t2.a, test.t1.a)], keep order:false" + " └─Limit(Probe) 12.00 root offset:0, count:3", + " └─IndexReader 12.00 root index:Limit", + " └─Limit 12.00 cop[tikv] offset:0, count:3", + " └─IndexRangeScan 12.00 cop[tikv] table:t2, index:a(a, b) range: decided by [eq(test.t2.a, test.t1.a)], keep order:false" ] }, { @@ -209,32 +209,32 @@ "└─Apply 4.00 root anti left outer semi join, equal:[eq(test.t1.b, test.t2.b)]", " ├─IndexReader(Build) 4.00 root index:IndexFullScan", " │ └─IndexFullScan 4.00 cop[tikv] table:t1, index:a(a, b) keep order:true", - " └─Limit(Probe) 3.00 root offset:0, count:3", - " └─IndexReader 3.00 root index:Limit", - " └─Limit 3.00 cop[tikv] offset:0, count:3", - " └─IndexRangeScan 3.00 cop[tikv] table:t2, index:a(a, b) range: decided by [eq(test.t2.a, test.t1.a)], keep order:false" + " └─Limit(Probe) 12.00 root offset:0, count:3", + " └─IndexReader 12.00 root index:Limit", + " └─Limit 12.00 cop[tikv] offset:0, count:3", + " └─IndexRangeScan 12.00 cop[tikv] table:t2, index:a(a, b) range: decided by [eq(test.t2.a, test.t1.a)], keep order:false" ] }, { "SQL": "select count(1) from t1 left join t2 on t1.a = t2.a group by t1.a, t1.b", "Plan": [ "HashAgg 4.00 root group by:test.t1.a, test.t1.b, funcs:count(1)->Column#7", - "└─HashJoin 12.00 root left outer join, equal:[eq(test.t1.a, test.t2.a)]", - " ├─TableReader(Build) 4.00 root data:TableFullScan", - " │ └─TableFullScan 4.00 cop[tikv] table:t1 keep order:false", - " └─TableReader(Probe) 9.00 root data:TableFullScan", - " └─TableFullScan 9.00 cop[tikv] table:t2 keep order:false" + "└─MergeJoin 12.00 root left outer join, left key:test.t1.a, right key:test.t2.a", + " ├─IndexReader(Build) 9.00 root index:IndexFullScan", + " │ └─IndexFullScan 9.00 cop[tikv] table:t2, index:a(a, b) keep order:true", + " └─IndexReader(Probe) 4.00 root index:IndexFullScan", + " └─IndexFullScan 4.00 cop[tikv] table:t1, index:a(a, b) keep order:true" ] }, { "SQL": "select count(1) from t1 right join t2 on t1.a = t2.a group by t2.a, t2.b", "Plan": [ "HashAgg 9.00 root group by:test.t2.a, test.t2.b, funcs:count(1)->Column#7", - "└─HashJoin 12.00 root right outer join, equal:[eq(test.t1.a, test.t2.a)]", - " ├─TableReader(Build) 4.00 root data:TableFullScan", - " │ └─TableFullScan 4.00 cop[tikv] table:t1 keep order:false", - " └─TableReader(Probe) 9.00 root data:TableFullScan", - " └─TableFullScan 9.00 cop[tikv] table:t2 keep order:false" + "└─MergeJoin 12.00 root right outer join, left key:test.t1.a, right key:test.t2.a", + " ├─IndexReader(Build) 4.00 root index:IndexFullScan", + " │ └─IndexFullScan 4.00 cop[tikv] table:t1, index:a(a, b) keep order:true", + " └─IndexReader(Probe) 9.00 root index:IndexFullScan", + " └─IndexFullScan 9.00 cop[tikv] table:t2, index:a(a, b) keep order:true" ] }, { @@ -242,10 +242,10 @@ "Plan": [ "HashAgg 4.00 root group by:test.t1.a, test.t1.b, funcs:count(Column#10)->Column#11", "└─HashJoin 4.00 root left outer semi join, equal:[eq(test.t1.b, test.t2.b)], other cond:gt(test.t2.a, test.t1.a)", - " ├─TableReader(Build) 9.00 root data:TableFullScan", - " │ └─TableFullScan 9.00 cop[tikv] table:t2 keep order:false", - " └─TableReader(Probe) 4.00 root data:TableFullScan", - " └─TableFullScan 4.00 cop[tikv] table:t1 keep order:false" + " ├─IndexReader(Build) 9.00 root index:IndexFullScan", + " │ └─IndexFullScan 9.00 cop[tikv] table:t2, index:a(a, b) keep order:false", + " └─IndexReader(Probe) 4.00 root index:IndexFullScan", + " └─IndexFullScan 4.00 cop[tikv] table:t1, index:a(a, b) keep order:false" ] }, { @@ -253,10 +253,10 @@ "Plan": [ "HashAgg 4.00 root group by:test.t1.a, test.t1.b, funcs:count(Column#10)->Column#11", "└─HashJoin 4.00 root anti left outer semi join, equal:[eq(test.t1.b, test.t2.b)], other cond:gt(test.t2.a, test.t1.a)", - " ├─TableReader(Build) 9.00 root data:TableFullScan", - " │ └─TableFullScan 9.00 cop[tikv] table:t2 keep order:false", - " └─TableReader(Probe) 4.00 root data:TableFullScan", - " └─TableFullScan 4.00 cop[tikv] table:t1 keep order:false" + " ├─IndexReader(Build) 9.00 root index:IndexFullScan", + " │ └─IndexFullScan 9.00 cop[tikv] table:t2, index:a(a, b) keep order:false", + " └─IndexReader(Probe) 4.00 root index:IndexFullScan", + " └─IndexFullScan 4.00 cop[tikv] table:t1, index:a(a, b) keep order:false" ] }, { @@ -276,8 +276,8 @@ "Plan": [ "HashAgg 4.00 root group by:test.t1.a, test.t1.b, funcs:count(Column#5)->Column#6", "└─Window 4.00 root sum(cast(test.t1.a, decimal(10,0) BINARY))->Column#5 over()", - " └─TableReader 4.00 root data:TableFullScan", - " └─TableFullScan 4.00 cop[tikv] table:t1 keep order:false" + " └─IndexReader 4.00 root index:IndexFullScan", + " └─IndexFullScan 4.00 cop[tikv] table:t1, index:a(a, b) keep order:false" ] } ] diff --git a/planner/core/testdata/window_push_down_suite_out.json b/planner/core/testdata/window_push_down_suite_out.json index e4b3aa37c09a6..0b587eb83ce39 100644 --- a/planner/core/testdata/window_push_down_suite_out.json +++ b/planner/core/testdata/window_push_down_suite_out.json @@ -343,11 +343,12 @@ "TableReader_84 8000.00 root data:ExchangeSender_83", "└─ExchangeSender_83 8000.00 mpp[tiflash] ExchangeType: PassThrough", " └─Window_82 8000.00 mpp[tiflash] row_number()->Column#7 over(rows between current row and current row)", - " └─Projection_19 8000.00 mpp[tiflash] Column#5", - " └─HashAgg_12 8000.00 mpp[tiflash] group by:test.employee.deptid, funcs:count(test.employee.empid)->Column#5", - " └─ExchangeReceiver_18 10000.00 mpp[tiflash] ", - " └─ExchangeSender_17 10000.00 mpp[tiflash] ExchangeType: HashPartition, Hash Cols: [name: test.employee.deptid, collate: binary]", - " └─TableFullScan_16 10000.00 mpp[tiflash] table:employee keep order:false, stats:pseudo" + " └─Projection_21 8000.00 mpp[tiflash] Column#5", + " └─HashAgg_22 8000.00 mpp[tiflash] group by:test.employee.deptid, funcs:sum(Column#8)->Column#5", + " └─ExchangeReceiver_24 8000.00 mpp[tiflash] ", + " └─ExchangeSender_23 8000.00 mpp[tiflash] ExchangeType: HashPartition, Hash Cols: [name: test.employee.deptid, collate: binary]", + " └─HashAgg_13 8000.00 mpp[tiflash] group by:test.employee.deptid, funcs:count(test.employee.empid)->Column#8", + " └─TableFullScan_20 10000.00 mpp[tiflash] table:employee keep order:false, stats:pseudo" ], "Warn": null }, @@ -378,12 +379,13 @@ "TableReader_61 8000.00 root data:ExchangeSender_60", "└─ExchangeSender_60 8000.00 mpp[tiflash] ExchangeType: PassThrough", " └─Window_59 8000.00 mpp[tiflash] row_number()->Column#7 over(partition by test.employee.deptid rows between current row and current row)", - " └─Sort_18 8000.00 mpp[tiflash] test.employee.deptid", - " └─Projection_17 8000.00 mpp[tiflash] Column#5, test.employee.deptid", - " └─HashAgg_12 8000.00 mpp[tiflash] group by:test.employee.deptid, funcs:count(test.employee.empid)->Column#5, funcs:firstrow(test.employee.deptid)->test.employee.deptid", - " └─ExchangeReceiver_16 10000.00 mpp[tiflash] ", - " └─ExchangeSender_15 10000.00 mpp[tiflash] ExchangeType: HashPartition, Hash Cols: [name: test.employee.deptid, collate: binary]", - " └─TableFullScan_14 10000.00 mpp[tiflash] table:employee keep order:false, stats:pseudo" + " └─Sort_24 8000.00 mpp[tiflash] test.employee.deptid", + " └─Projection_20 8000.00 mpp[tiflash] Column#5, test.employee.deptid", + " └─HashAgg_21 8000.00 mpp[tiflash] group by:test.employee.deptid, funcs:sum(Column#8)->Column#5, funcs:firstrow(test.employee.deptid)->test.employee.deptid", + " └─ExchangeReceiver_23 8000.00 mpp[tiflash] ", + " └─ExchangeSender_22 8000.00 mpp[tiflash] ExchangeType: HashPartition, Hash Cols: [name: test.employee.deptid, collate: binary]", + " └─HashAgg_13 8000.00 mpp[tiflash] group by:test.employee.deptid, funcs:count(test.employee.empid)->Column#8", + " └─TableFullScan_19 10000.00 mpp[tiflash] table:employee keep order:false, stats:pseudo" ], "Warn": null }, @@ -441,15 +443,16 @@ "Plan": [ "TableReader_54 10000.00 root data:ExchangeSender_53", "└─ExchangeSender_53 10000.00 mpp[tiflash] ExchangeType: PassThrough", - " └─Projection_48 10000.00 mpp[tiflash] Column#7", - " └─HashAgg_46 10000.00 mpp[tiflash] group by:Column#6, funcs:count(test.employee.empid)->Column#7", - " └─ExchangeReceiver_32 10000.00 mpp[tiflash] ", - " └─ExchangeSender_31 10000.00 mpp[tiflash] ExchangeType: HashPartition, Hash Cols: [name: Column#6, collate: binary]", - " └─Window_30 10000.00 mpp[tiflash] row_number()->Column#6 over(partition by test.employee.deptid rows between current row and current row), stream_count: 8", - " └─Sort_21 10000.00 mpp[tiflash] test.employee.deptid, stream_count: 8", - " └─ExchangeReceiver_20 10000.00 mpp[tiflash] stream_count: 8", - " └─ExchangeSender_19 10000.00 mpp[tiflash] ExchangeType: HashPartition, Hash Cols: [name: test.employee.deptid, collate: binary], stream_count: 8", - " └─TableFullScan_18 10000.00 mpp[tiflash] table:employee keep order:false, stats:pseudo" + " └─Projection_49 10000.00 mpp[tiflash] Column#7", + " └─HashAgg_50 10000.00 mpp[tiflash] group by:Column#6, funcs:sum(Column#10)->Column#7", + " └─ExchangeReceiver_52 10000.00 mpp[tiflash] ", + " └─ExchangeSender_51 10000.00 mpp[tiflash] ExchangeType: HashPartition, Hash Cols: [name: Column#6, collate: binary]", + " └─HashAgg_47 10000.00 mpp[tiflash] group by:Column#6, funcs:count(test.employee.empid)->Column#10", + " └─Window_36 10000.00 mpp[tiflash] row_number()->Column#6 over(partition by test.employee.deptid rows between current row and current row), stream_count: 8", + " └─Sort_21 10000.00 mpp[tiflash] test.employee.deptid, stream_count: 8", + " └─ExchangeReceiver_20 10000.00 mpp[tiflash] stream_count: 8", + " └─ExchangeSender_19 10000.00 mpp[tiflash] ExchangeType: HashPartition, Hash Cols: [name: test.employee.deptid, collate: binary], stream_count: 8", + " └─TableFullScan_18 10000.00 mpp[tiflash] table:employee keep order:false, stats:pseudo" ], "Warn": null }, diff --git a/planner/core/util.go b/planner/core/util.go index 845d061047cc8..14b7df23710d6 100644 --- a/planner/core/util.go +++ b/planner/core/util.go @@ -233,6 +233,9 @@ func (s *baseSchemaProducer) MemoryUsage() (sum int64) { if s.schema != nil { sum += s.schema.MemoryUsage() } + for _, name := range s.names { + sum += name.MemoryUsage() + } return } diff --git a/planner/core/window_push_down_test.go b/planner/core/window_push_down_test.go index 599fe113ff1c5..0d8538fa19ca0 100644 --- a/planner/core/window_push_down_test.go +++ b/planner/core/window_push_down_test.go @@ -110,6 +110,7 @@ func TestWindowPlanWithOtherOperators(t *testing.T) { dom := domain.GetDomain(tk.Session()) tk.MustExec("use test") + tk.MustExec("set tidb_cost_model_version=2") tk.MustExec("drop table if exists employee") tk.MustExec("create table employee (empid int, deptid int, salary decimal(10,2))") SetTiFlashReplica(t, dom, "test", "employee") diff --git a/planner/funcdep/extract_fd_test.go b/planner/funcdep/extract_fd_test.go index 92a924df6c0be..b2ca19de369c3 100644 --- a/planner/funcdep/extract_fd_test.go +++ b/planner/funcdep/extract_fd_test.go @@ -210,6 +210,7 @@ func TestFDSet_ExtractFD(t *testing.T) { ctx := context.TODO() is := testGetIS(t, tk.Session()) + is = &infoschema.SessionExtendedInfoSchema{InfoSchema: is} for i, tt := range tests { comment := fmt.Sprintf("case:%v sql:%s", i, tt.sql) require.NoError(t, tk.Session().PrepareTxnCtx(context.TODO())) @@ -218,7 +219,7 @@ func TestFDSet_ExtractFD(t *testing.T) { require.NoError(t, err, comment) tk.Session().GetSessionVars().PlanID = 0 tk.Session().GetSessionVars().PlanColumnID = 0 - err = plannercore.Preprocess(tk.Session(), stmt, plannercore.WithPreprocessorReturn(&plannercore.PreprocessorReturn{InfoSchema: is})) + err = plannercore.Preprocess(context.Background(), tk.Session(), stmt, plannercore.WithPreprocessorReturn(&plannercore.PreprocessorReturn{InfoSchema: is})) require.NoError(t, err) require.NoError(t, sessiontxn.GetTxnManager(tk.Session()).AdviseWarmup()) builder, _ := plannercore.NewPlanBuilder().Init(tk.Session(), is, &hint.BlockHintProcessor{}) @@ -308,6 +309,7 @@ func TestFDSet_ExtractFDForApply(t *testing.T) { ctx := context.TODO() is := testGetIS(t, tk.Session()) + is = &infoschema.SessionExtendedInfoSchema{InfoSchema: is} for i, tt := range tests { require.NoError(t, tk.Session().PrepareTxnCtx(context.TODO())) require.NoError(t, sessiontxn.GetTxnManager(tk.Session()).OnStmtStart(context.TODO(), nil)) @@ -316,7 +318,7 @@ func TestFDSet_ExtractFDForApply(t *testing.T) { require.NoError(t, err, comment) tk.Session().GetSessionVars().PlanID = 0 tk.Session().GetSessionVars().PlanColumnID = 0 - err = plannercore.Preprocess(tk.Session(), stmt, plannercore.WithPreprocessorReturn(&plannercore.PreprocessorReturn{InfoSchema: is})) + err = plannercore.Preprocess(context.Background(), tk.Session(), stmt, plannercore.WithPreprocessorReturn(&plannercore.PreprocessorReturn{InfoSchema: is})) require.NoError(t, err, comment) require.NoError(t, sessiontxn.GetTxnManager(tk.Session()).AdviseWarmup()) builder, _ := plannercore.NewPlanBuilder().Init(tk.Session(), is, &hint.BlockHintProcessor{}) @@ -342,7 +344,7 @@ func TestFDSet_MakeOuterJoin(t *testing.T) { tk.MustExec("set @@session.tidb_enable_new_only_full_group_by_check = 'on';") tk.MustExec("CREATE TABLE X (a INT PRIMARY KEY, b INT, c INT, d INT, e INT)") tk.MustExec("CREATE UNIQUE INDEX uni ON X (b, c)") - tk.MustExec("CREATE TABLE Y (m INT, n INT, p INT, q INT, PRIMARY KEY (m, n))") + tk.MustExec("CREATE TABLE Y (m INT, n INT, p INT, q INT, PRIMARY KEY (m, n) NONCLUSTERED)") tests := []struct { sql string @@ -364,7 +366,7 @@ func TestFDSet_MakeOuterJoin(t *testing.T) { require.NoError(t, err, comment) tk.Session().GetSessionVars().PlanID = 0 tk.Session().GetSessionVars().PlanColumnID = 0 - err = plannercore.Preprocess(tk.Session(), stmt, plannercore.WithPreprocessorReturn(&plannercore.PreprocessorReturn{InfoSchema: is})) + err = plannercore.Preprocess(context.Background(), tk.Session(), stmt, plannercore.WithPreprocessorReturn(&plannercore.PreprocessorReturn{InfoSchema: is})) require.NoError(t, err, comment) require.NoError(t, sessiontxn.GetTxnManager(tk.Session()).AdviseWarmup()) builder, _ := plannercore.NewPlanBuilder().Init(tk.Session(), is, &hint.BlockHintProcessor{}) diff --git a/planner/funcdep/main_test.go b/planner/funcdep/main_test.go index e1e8cd745f387..6d95dd208e1b7 100644 --- a/planner/funcdep/main_test.go +++ b/planner/funcdep/main_test.go @@ -25,7 +25,9 @@ func TestMain(m *testing.M) { testsetup.SetupForCommonTest() opts := []goleak.Option{ goleak.IgnoreTopFunction("github.com/golang/glog.(*loggingT).flushDaemon"), + goleak.IgnoreTopFunction("github.com/lestrrat-go/httprc.runFetchWorker"), goleak.IgnoreTopFunction("go.etcd.io/etcd/client/pkg/v3/logutil.(*MergeLogger).outputLoop"), + goleak.IgnoreTopFunction("go.opencensus.io/stats/view.(*worker).start"), } goleak.VerifyTestMain(m, opts...) } diff --git a/planner/implementation/main_test.go b/planner/implementation/main_test.go index 4c2b1efb962ce..57f40ea9f20ac 100644 --- a/planner/implementation/main_test.go +++ b/planner/implementation/main_test.go @@ -25,6 +25,7 @@ func TestMain(m *testing.M) { testsetup.SetupForCommonTest() opts := []goleak.Option{ goleak.IgnoreTopFunction("github.com/golang/glog.(*loggingT).flushDaemon"), + goleak.IgnoreTopFunction("github.com/lestrrat-go/httprc.runFetchWorker"), goleak.IgnoreTopFunction("go.etcd.io/etcd/client/pkg/v3/logutil.(*MergeLogger).outputLoop"), } goleak.VerifyTestMain(m, opts...) diff --git a/planner/memo/main_test.go b/planner/memo/main_test.go index 0fcbd9568d818..28382d1c818ec 100644 --- a/planner/memo/main_test.go +++ b/planner/memo/main_test.go @@ -25,7 +25,9 @@ func TestMain(m *testing.M) { testsetup.SetupForCommonTest() opts := []goleak.Option{ goleak.IgnoreTopFunction("github.com/golang/glog.(*loggingT).flushDaemon"), + goleak.IgnoreTopFunction("github.com/lestrrat-go/httprc.runFetchWorker"), goleak.IgnoreTopFunction("go.etcd.io/etcd/client/pkg/v3/logutil.(*MergeLogger).outputLoop"), + goleak.IgnoreTopFunction("go.opencensus.io/stats/view.(*worker).start"), } goleak.VerifyTestMain(m, opts...) } diff --git a/planner/optimize.go b/planner/optimize.go index 85a35533ffbf8..747dd5541596a 100644 --- a/planner/optimize.go +++ b/planner/optimize.go @@ -395,6 +395,8 @@ func optimize(ctx context.Context, sctx sessionctx.Context, node ast.Node, is in beginOpt := time.Now() finalPlan, cost, err := core.DoOptimize(ctx, sctx, builder.GetOptFlag(), logic) + // TODO: capture plan replayer here if it matches sql and plan digest + sctx.GetSessionVars().DurationOptimization = time.Since(beginOpt) return finalPlan, names, cost, err } @@ -441,7 +443,11 @@ func buildLogicalPlan(ctx context.Context, sctx sessionctx.Context, node ast.Nod return nil, err } sctx.GetSessionVars().RewritePhaseInfo.DurationRewrite = time.Since(beginRewrite) - sctx.GetSessionVars().StmtCtx.Tables = builder.GetDBTableInfo() + if exec, ok := p.(*core.Execute); ok && exec.PrepStmt != nil { + sctx.GetSessionVars().StmtCtx.Tables = core.GetDBTableInfo(exec.PrepStmt.VisitInfos) + } else { + sctx.GetSessionVars().StmtCtx.Tables = core.GetDBTableInfo(builder.GetVisitInfo()) + } return p, nil } diff --git a/planner/util/main_test.go b/planner/util/main_test.go index 1cb1f40846368..7f62901b5534c 100644 --- a/planner/util/main_test.go +++ b/planner/util/main_test.go @@ -25,6 +25,7 @@ func TestMain(m *testing.M) { testsetup.SetupForCommonTest() opts := []goleak.Option{ goleak.IgnoreTopFunction("github.com/golang/glog.(*loggingT).flushDaemon"), + goleak.IgnoreTopFunction("github.com/lestrrat-go/httprc.runFetchWorker"), goleak.IgnoreTopFunction("go.etcd.io/etcd/client/pkg/v3/logutil.(*MergeLogger).outputLoop"), goleak.IgnoreTopFunction("go.opencensus.io/stats/view.(*worker).start"), } diff --git a/plugin/conn_ip_example/conn_ip_example.go b/plugin/conn_ip_example/conn_ip_example.go index f6d09ffc5c612..082a7b4cdc04b 100644 --- a/plugin/conn_ip_example/conn_ip_example.go +++ b/plugin/conn_ip_example/conn_ip_example.go @@ -66,7 +66,7 @@ func OnInit(ctx context.Context, manifest *plugin.Manifest) error { // (Optional) the SetGlobal function is called when a global variable is changed. // This will only be called on the TiDB server that the change is made on, // and not on the tidb-server peers which will also update their global variable eventually. - SetGlobal: func(vars *variable.SessionVars, value string) error { + SetGlobal: func(_ context.Context, vars *variable.SessionVars, value string) error { fmt.Println("The set global function was called") return nil }, diff --git a/plugin/conn_ip_example/main_test.go b/plugin/conn_ip_example/main_test.go index 4847a1b134245..33e3beaa207d4 100644 --- a/plugin/conn_ip_example/main_test.go +++ b/plugin/conn_ip_example/main_test.go @@ -25,6 +25,7 @@ func TestMain(m *testing.M) { testsetup.SetupForCommonTest() opts := []goleak.Option{ goleak.IgnoreTopFunction("github.com/golang/glog.(*loggingT).flushDaemon"), + goleak.IgnoreTopFunction("github.com/lestrrat-go/httprc.runFetchWorker"), goleak.IgnoreTopFunction("go.etcd.io/etcd/client/pkg/v3/logutil.(*MergeLogger).outputLoop"), goleak.IgnoreTopFunction("go.opencensus.io/stats/view.(*worker).start"), } diff --git a/plugin/main_test.go b/plugin/main_test.go index 6d55a790de4de..9c7fbeda0f42e 100644 --- a/plugin/main_test.go +++ b/plugin/main_test.go @@ -26,6 +26,7 @@ func TestMain(m *testing.M) { opts := []goleak.Option{ goleak.IgnoreTopFunction("github.com/golang/glog.(*loggingT).flushDaemon"), + goleak.IgnoreTopFunction("github.com/lestrrat-go/httprc.runFetchWorker"), goleak.IgnoreTopFunction("go.etcd.io/etcd/client/pkg/v3/logutil.(*MergeLogger).outputLoop"), goleak.IgnoreTopFunction("go.opencensus.io/stats/view.(*worker).start"), goleak.IgnoreTopFunction("time.Sleep"), diff --git a/privilege/privileges/BUILD.bazel b/privilege/privileges/BUILD.bazel index 462e8950e5076..57ed2f9001afb 100644 --- a/privilege/privileges/BUILD.bazel +++ b/privilege/privileges/BUILD.bazel @@ -6,11 +6,13 @@ go_library( "cache.go", "errors.go", "privileges.go", + "tidb_auth_token.go", ], importpath = "github.com/pingcap/tidb/privilege/privileges", visibility = ["//visibility:public"], deps = [ "//errno", + "//extension", "//infoschema", "//kv", "//parser/ast", @@ -29,6 +31,10 @@ go_library( "//util/sem", "//util/sqlexec", "//util/stringutil", + "@com_github_lestrrat_go_jwx_v2//jwk", + "@com_github_lestrrat_go_jwx_v2//jws", + "@com_github_lestrrat_go_jwx_v2//jwt", + "@com_github_lestrrat_go_jwx_v2//jwt/openid", "@com_github_pingcap_errors//:errors", "@org_golang_x_exp//slices", "@org_uber_go_zap//:zap", @@ -42,11 +48,12 @@ go_test( "cache_test.go", "main_test.go", "privileges_test.go", + "tidb_auth_token_test.go", ], + embed = [":privileges"], flaky = True, shard_count = 50, deps = [ - ":privileges", "//config", "//errno", "//executor", @@ -63,8 +70,14 @@ go_test( "//testkit/testsetup", "//testkit/testutil", "//util", + "//util/hack", "//util/sem", "//util/sqlexec", + "@com_github_lestrrat_go_jwx_v2//jwa", + "@com_github_lestrrat_go_jwx_v2//jwk", + "@com_github_lestrrat_go_jwx_v2//jws", + "@com_github_lestrrat_go_jwx_v2//jwt", + "@com_github_lestrrat_go_jwx_v2//jwt/openid", "@com_github_stretchr_testify//require", "@org_uber_go_goleak//:goleak", ], diff --git a/privilege/privileges/cache.go b/privilege/privileges/cache.go index 18eea6e7bf7a5..086231e4773a4 100644 --- a/privilege/privileges/cache.go +++ b/privilege/privileges/cache.go @@ -66,7 +66,7 @@ const ( References_priv,Alter_priv,Execute_priv,Index_priv,Create_view_priv,Show_view_priv, Create_role_priv,Drop_role_priv,Create_tmp_table_priv,Lock_tables_priv,Create_routine_priv, Alter_routine_priv,Event_priv,Shutdown_priv,Reload_priv,File_priv,Config_priv,Repl_client_priv,Repl_slave_priv, - account_locked,plugin FROM mysql.user` + Account_locked,Plugin,Token_issuer,User_attributes FROM mysql.user` sqlLoadGlobalGrantsTable = `SELECT HIGH_PRIORITY Host,User,Priv,With_Grant_Option FROM mysql.global_grants` ) @@ -100,6 +100,8 @@ type UserRecord struct { Privileges mysql.PrivilegeType AccountLocked bool // A role record when this field is true AuthPlugin string + AuthTokenIssuer string + Email string } // NewUserRecord return a UserRecord, only use for unit test. @@ -663,6 +665,24 @@ func (p *MySQLPrivilege) decodeUserTableRow(row chunk.Row, fs []*ast.ResultField return errInvalidPrivilegeType.GenWithStack(f.ColumnAsName.O) } value.Privileges |= priv + case f.ColumnAsName.L == "token_issuer": + value.AuthTokenIssuer = row.GetString(i) + case f.ColumnAsName.L == "user_attributes": + if row.IsNull(i) { + continue + } + bj := row.GetJSON(i) + pathExpr, err := types.ParseJSONPathExpr("$.metadata.email") + if err != nil { + return err + } + if emailBJ, found := bj.Extract([]types.JSONPathExpression{pathExpr}); found { + email, err := emailBJ.Unquote() + if err != nil { + return err + } + value.Email = email + } default: value.assignUserOrHost(row, i, f) } diff --git a/privilege/privileges/cache_test.go b/privilege/privileges/cache_test.go index 4670e5391f791..c611c80d99b16 100644 --- a/privilege/privileges/cache_test.go +++ b/privilege/privileges/cache_test.go @@ -42,6 +42,7 @@ func TestLoadUserTable(t *testing.T) { tk.MustExec(`INSERT INTO mysql.user (Host, User, authentication_string, Insert_priv) VALUES ("%", "root1", "admin", "Y")`) tk.MustExec(`INSERT INTO mysql.user (Host, User, authentication_string, Update_priv, Show_db_priv, References_priv) VALUES ("%", "root11", "", "Y", "Y", "Y")`) tk.MustExec(`INSERT INTO mysql.user (Host, User, authentication_string, Create_user_priv, Index_priv, Execute_priv, Create_view_priv, Show_view_priv, Show_db_priv, Super_priv, Trigger_priv) VALUES ("%", "root111", "", "Y", "Y", "Y", "Y", "Y", "Y", "Y", "Y")`) + tk.MustExec(`INSERT INTO mysql.user (Host, User, user_attributes, token_issuer) VALUES ("%", "root1111", "{\"metadata\": {\"email\": \"user@pingcap.com\"}}", "")`) p = privileges.MySQLPrivilege{} require.NoError(t, p.LoadUserTable(tk.Session())) @@ -53,6 +54,8 @@ func TestLoadUserTable(t *testing.T) { require.Equal(t, mysql.InsertPriv, user[1].Privileges) require.Equal(t, mysql.UpdatePriv|mysql.ShowDBPriv|mysql.ReferencesPriv, user[2].Privileges) require.Equal(t, mysql.CreateUserPriv|mysql.IndexPriv|mysql.ExecutePriv|mysql.CreateViewPriv|mysql.ShowViewPriv|mysql.ShowDBPriv|mysql.SuperPriv|mysql.TriggerPriv, user[3].Privileges) + require.Equal(t, "user@pingcap.com", user[4].Email) + require.Equal(t, "", user[4].AuthTokenIssuer) } func TestLoadGlobalPrivTable(t *testing.T) { @@ -410,9 +413,11 @@ func TestAbnormalMySQLTable(t *testing.T) { plugin char(64) COLLATE utf8_bin DEFAULT 'mysql_native_password', authentication_string text COLLATE utf8_bin, password_expired enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N', + token_issuer varchar(255), + user_attributes json, PRIMARY KEY (Host,User) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin COMMENT='Users and global privileges';`) - tk.MustExec(`INSERT INTO user VALUES ('localhost','root','','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','','','','',0,0,0,0,'mysql_native_password','','N'); + tk.MustExec(`INSERT INTO user VALUES ('localhost','root','','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','','','','',0,0,0,0,'mysql_native_password','','N', '', 'null'); `) var p privileges.MySQLPrivilege require.NoError(t, p.LoadUserTable(tk.Session())) diff --git a/privilege/privileges/main_test.go b/privilege/privileges/main_test.go index efe96d5784161..f591389958fd5 100644 --- a/privilege/privileges/main_test.go +++ b/privilege/privileges/main_test.go @@ -25,10 +25,12 @@ import ( func TestMain(m *testing.M) { opts := []goleak.Option{ goleak.IgnoreTopFunction("github.com/golang/glog.(*loggingT).flushDaemon"), + goleak.IgnoreTopFunction("github.com/lestrrat-go/httprc.runFetchWorker"), goleak.IgnoreTopFunction("go.etcd.io/etcd/client/pkg/v3/logutil.(*MergeLogger).outputLoop"), goleak.IgnoreTopFunction("go.opencensus.io/stats/view.(*worker).start"), goleak.IgnoreTopFunction("net/http.(*persistConn).writeLoop"), goleak.IgnoreTopFunction("internal/poll.runtime_pollWait"), + goleak.IgnoreTopFunction("github.com/pingcap/tidb/privilege/privileges.(*JWKSImpl).LoadJWKS4AuthToken.func1"), } testsetup.SetupForCommonTest() diff --git a/privilege/privileges/privileges.go b/privilege/privileges/privileges.go index 534b31ed77d57..58be6097c2bc0 100644 --- a/privilege/privileges/privileges.go +++ b/privilege/privileges/privileges.go @@ -21,7 +21,11 @@ import ( "fmt" "strings" "sync" + "time" + jwtRepo "github.com/lestrrat-go/jwx/v2/jwt" + "github.com/lestrrat-go/jwx/v2/jwt/openid" + "github.com/pingcap/tidb/extension" "github.com/pingcap/tidb/infoschema" "github.com/pingcap/tidb/parser/auth" "github.com/pingcap/tidb/parser/mysql" @@ -29,6 +33,7 @@ import ( "github.com/pingcap/tidb/sessionctx" "github.com/pingcap/tidb/types" "github.com/pingcap/tidb/util" + "github.com/pingcap/tidb/util/hack" "github.com/pingcap/tidb/util/logutil" "github.com/pingcap/tidb/util/sem" "go.uber.org/zap" @@ -55,6 +60,7 @@ var dynamicPrivs = []string{ "RESTRICTED_REPLICA_WRITER_ADMIN", // Can write to the sever even when tidb_restriced_read_only is turned on. } var dynamicPrivLock sync.Mutex +var defaultTokenLife = 15 * time.Minute // UserPrivileges implements privilege.Manager interface. // This is used to check privilege for the current user. @@ -182,31 +188,28 @@ func (p *UserPrivileges) isValidHash(record *UserRecord) bool { if pwd == "" { return true } - if record.AuthPlugin == mysql.AuthNativePassword { + switch record.AuthPlugin { + case mysql.AuthNativePassword: if len(pwd) == mysql.PWDHashLen+1 { return true } logutil.BgLogger().Error("the password from the mysql.user table does not match the definition of a mysql_native_password", zap.String("user", record.User), zap.String("plugin", record.AuthPlugin), zap.Int("hash_length", len(pwd))) return false - } - - if record.AuthPlugin == mysql.AuthCachingSha2Password { + case mysql.AuthCachingSha2Password: if len(pwd) == mysql.SHAPWDHashLen { return true } logutil.BgLogger().Error("the password from the mysql.user table does not match the definition of a caching_sha2_password", zap.String("user", record.User), zap.String("plugin", record.AuthPlugin), zap.Int("hash_length", len(pwd))) return false - } - - if record.AuthPlugin == mysql.AuthTiDBSM3Password { + case mysql.AuthTiDBSM3Password: if len(pwd) == mysql.SM3PWDHashLen { return true } logutil.BgLogger().Error("the password from the mysql.user table does not match the definition of a tidb_sm3_password", zap.String("user", record.User), zap.String("plugin", record.AuthPlugin), zap.Int("hash_length", len(pwd))) return false - } - - if record.AuthPlugin == mysql.AuthSocket { + case mysql.AuthSocket: + return true + case mysql.AuthTiDBAuthToken: return true } @@ -240,6 +243,9 @@ func (p *UserPrivileges) GetAuthPlugin(user, host string) (string, error) { if record == nil { return "", errors.New("Failed to get user record") } + if record.AuthPlugin == mysql.AuthTiDBAuthToken { + return record.AuthPlugin, nil + } // zero-length auth string means no password for native and caching_sha2 auth. // but for auth_socket it means there should be a 1-to-1 mapping between the TiDB user // and the OS user. @@ -288,6 +294,49 @@ func (p *UserPrivileges) GetAuthWithoutVerification(user, host string) (success return } +func checkAuthTokenClaims(claims map[string]interface{}, record *UserRecord, tokenLife time.Duration) error { + if sub, ok := claims[jwtRepo.SubjectKey]; !ok { + return errors.New("lack 'sub'") + } else if sub != record.User { + return fmt.Errorf("Wrong 'sub': %s", sub) + } + + if email, ok := claims[openid.EmailKey]; !ok { + return errors.New("lack 'email'") + } else if email != record.Email { + return fmt.Errorf("Wrong 'email': %s", email) + } + + now := time.Now() + val, ok := claims[jwtRepo.IssuedAtKey] + if !ok { + return errors.New("lack 'iat'") + } else if iat, ok := val.(time.Time); !ok { + return fmt.Errorf("iat: %v is not a value of time.Time", val) + } else if now.After(iat.Add(tokenLife)) { + return errors.New("the token has been out of its life time") + } else if now.Before(iat) { + return errors.New("the token is issued at a future time") + } + + if val, ok = claims[jwtRepo.ExpirationKey]; !ok { + return errors.New("lack 'exp'") + } else if exp, ok := val.(time.Time); !ok { + return fmt.Errorf("exp: %v is not a value of time.Time", val) + } else if now.After(exp) { + return errors.New("the token has been expired") + } + + // `iss` is not required if `token_issuer` is empty in `mysql.user` + if iss, ok := claims[jwtRepo.IssuerKey]; ok && iss != record.AuthTokenIssuer { + return fmt.Errorf("Wrong 'iss': %s", iss) + } else if !ok && len(record.AuthTokenIssuer) > 0 { + return errors.New("lack 'iss'") + } + + return nil +} + // ConnectionVerification implements the Manager interface. func (p *UserPrivileges) ConnectionVerification(user *auth.UserIdentity, authUser, authHost string, authentication, salt []byte, tlsState *tls.ConnectionState) error { hasPassword := "YES" @@ -322,7 +371,25 @@ func (p *UserPrivileges) ConnectionVerification(user *auth.UserIdentity, authUse return ErrAccessDenied.FastGenByArgs(user.Username, user.Hostname, hasPassword) } - if len(pwd) > 0 && len(authentication) > 0 { + if record.AuthPlugin == mysql.AuthTiDBAuthToken { + if len(authentication) == 0 { + logutil.BgLogger().Error("empty authentication") + return ErrAccessDenied.FastGenByArgs(user.Username, user.Hostname, hasPassword) + } + tokenString := string(hack.String(authentication[:len(authentication)-1])) + var ( + claims map[string]interface{} + err error + ) + if claims, err = GlobalJWKS.checkSigWithRetry(tokenString, 1); err != nil { + logutil.BgLogger().Error("verify JWT failed", zap.Error(err)) + return ErrAccessDenied.FastGenByArgs(user.Username, user.Hostname, hasPassword) + } + if err = checkAuthTokenClaims(claims, record, defaultTokenLife); err != nil { + logutil.BgLogger().Error("check claims failed", zap.Error(err)) + return ErrAccessDenied.FastGenByArgs(user.Username, user.Hostname, hasPassword) + } + } else if len(pwd) > 0 && len(authentication) > 0 { switch record.AuthPlugin { case mysql.AuthNativePassword: hpwd, err := auth.DecodePassword(pwd) @@ -639,6 +706,10 @@ func (p *UserPrivileges) IsDynamicPrivilege(privName string) bool { // RegisterDynamicPrivilege is used by plugins to add new privileges to TiDB func RegisterDynamicPrivilege(privName string) error { + if len(privName) == 0 { + return errors.New("privilege name should not be empty") + } + privNameInUpper := strings.ToUpper(privName) if len(privNameInUpper) > 32 { return errors.New("privilege name is longer than 32 characters") @@ -664,3 +735,22 @@ func GetDynamicPrivileges() []string { copy(privCopy, dynamicPrivs) return privCopy } + +// RemoveDynamicPrivilege is used for test only +func RemoveDynamicPrivilege(privName string) bool { + privNameInUpper := strings.ToUpper(privName) + dynamicPrivLock.Lock() + defer dynamicPrivLock.Unlock() + for idx, priv := range dynamicPrivs { + if privNameInUpper == priv { + dynamicPrivs = append(dynamicPrivs[:idx], dynamicPrivs[idx+1:]...) + return true + } + } + return false +} + +func init() { + extension.RegisterDynamicPrivilege = RegisterDynamicPrivilege + extension.RemoveDynamicPrivilege = RemoveDynamicPrivilege +} diff --git a/privilege/privileges/tidb_auth_token.go b/privilege/privileges/tidb_auth_token.go new file mode 100644 index 0000000000000..db15f469f841c --- /dev/null +++ b/privilege/privileges/tidb_auth_token.go @@ -0,0 +1,117 @@ +// Copyright 2022 PingCAP, Inc. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +package privileges + +import ( + "context" + "encoding/json" + "strings" + "sync" + "sync/atomic" + "time" + "unsafe" + + jwkRepo "github.com/lestrrat-go/jwx/v2/jwk" + jwsRepo "github.com/lestrrat-go/jwx/v2/jws" + jwtRepo "github.com/lestrrat-go/jwx/v2/jwt" + "github.com/pingcap/errors" + "github.com/pingcap/tidb/util/logutil" + "go.uber.org/zap" +) + +// JWKSImpl contains a JSON Web Key Set (JWKS), and a filepath that stores the JWKS +type JWKSImpl struct { + set unsafe.Pointer // *jwkRepo.Set + filepath string +} + +// GlobalJWKS is the global JWKS for tidb-server +var GlobalJWKS JWKSImpl + +func (jwks *JWKSImpl) load() error { + cur, err := jwkRepo.ReadFile(jwks.filepath) + if err == nil { + atomic.StorePointer(&jwks.set, unsafe.Pointer(&cur)) + } + return err +} + +func (jwks *JWKSImpl) verify(tokenBytes []byte) (payload []byte, err error) { + s := (*jwkRepo.Set)(atomic.LoadPointer(&jwks.set)) + if s == nil { + return nil, errors.New("No valid JWKS yet") + } + return jwsRepo.Verify(tokenBytes, jwsRepo.WithKeySet(*s)) +} + +// LoadJWKS4AuthToken reload the jwks every auth-token-refresh-interval. +func (jwks *JWKSImpl) LoadJWKS4AuthToken(ctx context.Context, wg *sync.WaitGroup, jwksPath string, interval time.Duration) error { + jwks.filepath = jwksPath + if ctx != nil && wg != nil { + go func() { + ticker := time.Tick(interval) + wg.Add(1) + for { + select { + case <-ctx.Done(): + wg.Done() + return + case <-ticker: + } + if err := jwks.load(); err != nil { + logutil.BgLogger().Error("Fail to load JWKS", zap.String("path", jwksPath), zap.Duration("interval", interval)) + } + } + }() + } + return jwks.load() +} + +// checkSigWithRetry verifies the signature in the jwt, and returns the claims. +func (jwks *JWKSImpl) checkSigWithRetry(tokenString string, retryTime int) (map[string]interface{}, error) { + var ( + verifiedPayload []byte + err error + ) + parts := strings.Split(tokenString, ".") + if len(parts) != 3 { + err = errors.New("Invalid JWT") + return nil, err + } + for retryTime >= 0 { + retryTime-- + + // verify signature + verifiedPayload, err = jwks.verify(([]byte)(tokenString)) + if err != nil { + if err1 := jwks.load(); err1 != nil { + return nil, err1 + } + continue + } + + jwt := jwtRepo.New() + if err = jwt.(json.Unmarshaler).UnmarshalJSON(verifiedPayload); err != nil { + continue + } + claims, err := jwt.AsMap(context.Background()) + if err != nil { + continue + } + return claims, nil + } + err = errors.Annotate(err, "Retry time has been spent out") + return nil, err +} diff --git a/privilege/privileges/tidb_auth_token_test.go b/privilege/privileges/tidb_auth_token_test.go new file mode 100644 index 0000000000000..a1ee4b2fb33a0 --- /dev/null +++ b/privilege/privileges/tidb_auth_token_test.go @@ -0,0 +1,410 @@ +// Copyright 2022 PingCAP, Inc. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +package privileges + +import ( + "crypto/rsa" + "encoding/json" + "fmt" + "log" + "os" + "strings" + "testing" + "time" + + jwaRepo "github.com/lestrrat-go/jwx/v2/jwa" + jwkRepo "github.com/lestrrat-go/jwx/v2/jwk" + jwsRepo "github.com/lestrrat-go/jwx/v2/jws" + jwtRepo "github.com/lestrrat-go/jwx/v2/jwt" + "github.com/lestrrat-go/jwx/v2/jwt/openid" + "github.com/pingcap/tidb/util/hack" + "github.com/stretchr/testify/require" +) + +var ( + privateKeyStrings = []string{`-----BEGIN RSA PRIVATE KEY----- +MIIEpAIBAAKCAQEAq8G5n9XBidxmBMVJKLOBsmdOHrCqGf17y9+VUXingwDUZxRp +2XbuLZLbJtLgcln1lC0L9BsogrWf7+pDhAzWovO6Ai4Aybu00tJ2u0g4j1aLiDds +y0gyvSb5FBoL08jFIH7t/JzMt4JpF487AjzvITwZZcnsrB9a9sdn2E5B/aZmpDGi +2+Isf5osnlw0zvveTwiMo9ba416VIzjntAVEvqMFHK7vyHqXbfqUPAyhjLO+iee9 +9Tg5AlGfjo1s6FjeML4xX7sAMGEy8FVBWNfpRU7ryTWoSn2adzyA/FVmtBvJNQBC +MrrAhXDTMJ5FNi8zHhvzyBKHU0kBTS1UNUbP9wIDAQABAoIBAFF0sbz82imwje2L +RvP3lfXvClyBulpTHigFJEKcLw1xEkrEoqKQxcp1UFvsPKfexBn+9yFQ0/iRfIWC +m3x/vjdP0ZKBELybudkWGVsemDxadhgm+QC7f9y3I/+FjsBlAiA0MlfQYUJSpdaX +hgu8rEgdwYnFpunGgRRyY2xxSNirEAzA6aTa1PkNU6W7nF5trOUOfdUSNZuPsS4y +rQjZJZDxB4SW+biuTqNAOKPPnnFY3PdntQx9uhcSm+qiDP2yQXoXuDK/TAN4euOK +vR5POnnDNKhFizGnR8xjW8GSmfg9ILxw/BpNFoIkvZo5xLtt7lNM2VPJaLzXEse2 +axOpKckCgYEA2g8GWQOmqH8M4LaOxZcy+4dvoOou4vv+V5Bn4TDtmRaQd40BqfOZ +jyi9sci7iGYVsHdSpLlLFcXedx97QKstJZZ8RKQZv/wBZ7JH6Hn80ipGnJ3a7S9+ +JY99iVDF6hOroR2fbnrqa/Dx8pPdMy9ZOXZvh3Q527j8u4m9zXUXfVUCgYEAyaRG +dSEt/AJxoecZqa450H8rlOQVDC0DcQcxGlEP7L2wQRinnJkfZ6+r7jhfu4SikOZO +MdXDF/ILGxSXw6+0xHwq9XfSlNhgTTcBNZOYfchMi6mvUxe/r4TsMXEcbRPSsuWo +EZJ1oZLHxdw9B96R9blnxk54VvILG60rrwbaOBsCgYEAz8EQ4y4/Urn5ov9L96We +xVa8XCvCkDBWm0bSMhNTzE9bRQvrUejtnR/L297MDaB1ebO14YtIpm3nDsfHvk1Y +rj86FovinK+VBx8ss6nF3ta4f+9F7kUZgt+7U2DJr8Md+lsm0zP4tO7TFbMbRPEP +qVfV2tA5b8ZHxMXvOBkfUCECgYAZbFvx0rAgkRJQrnme2jex4QbWq/c3ZMmFS7nW +LphKahQ58OjZJrk98nlD/NmdI/j3OgJr6B7D+yGJVYxZAONSzrD/6A6l864YrjG5 +1pUobsOv7EINwPXLJIA/L5q86f3rzmblaEjqiT4k5ULQpjBTAgBikWw80iGyaKAU +XlHPNwKBgQDC45gv8aRxJXwSjpCXHnnzoWAJHBOXIpTbQOVdGbuMRr5RAh4CVFsp +6rnNlannpnE8EMkLtAmPLNqmsP0XCRo2TpHU86PRO3OGH/3KEtU/X3ij9sts2OlM +03m9HNt6/h9glwk7NYwbGgOlKhRxr/DUTkumu0tdfYN+tLU83mBeNw== +-----END RSA PRIVATE KEY-----`, `-----BEGIN RSA PRIVATE KEY----- +MIIEpAIBAAKCAQEAywV8/DH1vLyuTOu9MBiAF2DLlZi0SOMEUznXVSRbt0+YVfsr +o67+66B7ATnB2a5BCyOGaFJ9aIwfTWILMTJo91hVk4gHdvsSYeiS3gnSQtKYEdAX +ZgL2apGP1s08XQfluTF57fxVn8RpKieox6Ea68JSGMuh0AEr2MuJzaTcxzQ5UpIi +K2vUuBXNMzZwbZKvssfsyoZ6zIEeco4BCGXXmJUyxFb6MLV8DWKwmUQjhV/EjDem +vE0vrUziY1afo2J9Ngk03mPHqprDZEa8u2wwtm2ghuCaislKh9X7vl31Yj5lcPCU +iacBupV6/bhMjPTAgIAOEcsLVZMK2P+snREDjwIDAQABAoIBACiu/93V8SWSNeeK +Mg5KSpjkt8dRo4cbnwlChQk10P9J/v/z5knVzpXPQfb76QHDLpuZ0dxj82eY9Mjg +Bdgk/u3aEMQQtVY9d/CQ16WRGEZ1xy2Cor25iEHQy59C337RD1LuPD3ZnBr5FA3z +hpoCic+G0EbRv6pcIbo/B21jRS7Rx+w13CNZQD1fL5vEc1CTR+WL/DeCTugGcj8i +wiaUb6eu2Z4YFoJqCWGhTfz1HL4i+y12HfAlezfYae9Lhm0r/mLMos6O7gHWqW24 +EbmeQZy+TGjd7SBw1wsEv7ZO+MFsfvbBvZidmK/FcxUqiyfsvhsTuRbgv6+GiMep +rF+acgkCgYEA6C7dg6GtBydIGq1iE7ty2pUcW4YPL2BVjTK7Fntt1ToVzUKZAulG +Av0+kukeReDLGxrNMhHDzGuLboA2v/PNcMnoJWnzg2+tMByyLWEvIvp9fngbSwRr +JEdDbUDQZbpEkyEC8fDAO3l3EmoHaGBEshZ0tDl0fui36vM1w8lhZDUCgYEA39jW +bsHHny4QUwwsXu/dvg8meYP2rCjBxjM7PIz1FKut+oftUmYCVhRvhZl5ydpO9/2f +VQYqHnDMlmAzjCovKvjFFMXJl2QucUHR+S94sobmTj6tfY9VzAq8uZaMi9jq5uRL +WZvmTPtj3U7KequCqCN7w14o7JkFxOGquFy5eTMCgYANr42BD8uaK1eVsvif/yGS +/s0QHAPTIBOK4h2jAp2Dvwu/8JgCUuu8i17f2/vb1JdEPr0voVpwNzqdxdL0V5OZ +fV1Ar1EaQz/rIRXjlOHpZuh0xvGc52LFXan8y6A9DtCx93Ur+6vpFYzOOg+7uEj0 +UlyIrwZN4LvOjo1xv/IMrQKBgQCfsFAhSUqAa1sn87o/q/zTlnlLHPI/lP/PxkKP +CrvYGDWQUaHjM3SdNgztETUJ5ByL27nr7O7lMnExIcYESx/FFx15mTQcNVLQZzVF +ADGpooTv8tTPiw6Y9lv2RclUBtZlCx4Z+hbMelaezZOy+WHHUzD6idTGHNA5yQeC +aFvEcwKBgQC+QzEkoG7IDqrFL62x+H607juYF4IY4kXo7zsrfY4uWffC7Mf5XaYs +qkX9+ouK/CROAKO+UdMEs8PWHF1CHmgV3t/EF2+xfkGvVr/RlgtMHgQe8lX9a+sK +1xpqDpqmXTST37cy+lQGPXmWrJsTulWQj0F1LV4i4qt7Ph4JK4kzvA== +-----END RSA PRIVATE KEY----- +`, `-----BEGIN RSA PRIVATE KEY----- +MIIEowIBAAKCAQEAoaJsIxrUBKPW/dogPpUxxhiL8cpUt8uWlclOrmUSHFZzY50r +wsCt2ndnZRHE/HD+X7oCo28pdYTySZWnsiY/K2HeyYdsRzUH71Mx0Z+a1uBa0k6B +VHY8vrPObLCPFEmxnqml+Wj74zocsR23/puCz8Vgm+0VF49vu+ab90lc2iLJtElv +eRnLrSkaudCUndmn+aVftwnpDxJ4Z0rRlJkhyeZMN4+EMse5+0hAhg5UiPHE6pG8 +RI3zYnp0EYKvN+M9/cdNntyuKCCCvOCi4b4d4wpGOrDuiA/moh2J9zwPBMiyvIFo +zUMmqAQV3zuUxx+jAAjrc9ReQLnoExhuhfrU5wIDAQABAoIBAC62PgI3MqbUosFi +VIdBnszdMzSBgNJNKAvJzc9grkc6RMa5GXiDLrtAXsU6yW8bSKhpnXGWIqkv7sWN +VpWJsB/dfQFI/eXmUZC8vl0SfzEyTY0R2xaJxSxn0nRe4jq+wXJVHP5jdMhKdxhI +um/+iWN6a10kuz+/2E65asGglhEEHxzm9ux9PGbhOR7NVAiReRfEKN0UgmD9jWHL +nR2uBsS3BsPBURKBERzYOqGmxMgOq9Y07Jf6d4Ln33SfkKsD/ibTPoUyTsvwG0g1 +J7wVmqZRxG7GLGxLjjs+s16LWjRKUCbHOf7VIMKkYj2HBgzMZOG6/f579mejB//D +K5rSwuECgYEA0doT9iTVq9ZbpYKfLH5HzqoTuZeP5Q5acO2ZM2Bat6Xdk/ZgOgh4 +Gvzgfi33kl03Pp2ZhQX9m1k1eicTcDPvNQZ3JeTI7bgO3ZQXt8PkCL/pPCZyfusB +C9sP4zhhmieLuX7SZmkWpJvy1XtjvJsyhnnZz2s51nvCKKAe6JVFatUCgYEAxS3f +yFOBzRAyuPWUF4pGTAVfysM47Zl0alDcZgM30ARhqhsfHOo26xeU6TEWucCh30fS +tehXlQDlygHN1+CxkqH6mv0Nlp1j/1YV9mZIEZ++jIggAgsit29YtoQMIe6/lv0+ ++aivyNJrCtbgm9ZA4+OOie3Cvjf/6qnqnBSFpssCgYBWkfyCIpfzF68fDE/V7xJ4 +czlH6vp1qAIvbBUzWKCT+lz6WT1BM5U4rPF/nD7xpnrP3fwjIGGK4LZq+gvO0d3w +pgYpH8S0LKYVSq6uJKXB5km1grbhHNmFpo1bUzsQeRfvIh5yGRA6QAthflGa0Pt6 +9nGgW7+0d8GVONkHYe0NMQKBgAJU64uL6UIKif8D8G9i1Df77EkSi+7LXMQRFroi +GZvdIWaIkZKe9m1LRxiG2xTxQTjJuaUrDTYW36DG6q892fu47KS+j1WToOYZF4Nl +bD7BG9i/l1lO1mdC6tKltxsDnsJjVkZPh1yhmGB1cAyHuRa4zyu0YxQqx1z4C20z +FO2HAoGBALp9nGqbK6N96LYgef8GpP6o5pz3D1Jtj18iYyn3oz6z9t3dqNbpf2vh +cYnDqCQWSX5rfDRMbuhEJB+GvHYKVY/yVJ2ZWu1cKsB+2gzsITWewfxTS/ns+4Qk +RfViImdNIa19f7cmeC8RjhaSWBmb9JJk+p75e4XpgD1bG9U7DjiH +-----END RSA PRIVATE KEY----- +`} + + publicKeyStrings = []string{`-----BEGIN PUBLIC KEY----- +MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAq8G5n9XBidxmBMVJKLOB +smdOHrCqGf17y9+VUXingwDUZxRp2XbuLZLbJtLgcln1lC0L9BsogrWf7+pDhAzW +ovO6Ai4Aybu00tJ2u0g4j1aLiDdsy0gyvSb5FBoL08jFIH7t/JzMt4JpF487Ajzv +ITwZZcnsrB9a9sdn2E5B/aZmpDGi2+Isf5osnlw0zvveTwiMo9ba416VIzjntAVE +vqMFHK7vyHqXbfqUPAyhjLO+iee99Tg5AlGfjo1s6FjeML4xX7sAMGEy8FVBWNfp +RU7ryTWoSn2adzyA/FVmtBvJNQBCMrrAhXDTMJ5FNi8zHhvzyBKHU0kBTS1UNUbP +9wIDAQAB +-----END PUBLIC KEY-----`, `-----BEGIN PUBLIC KEY----- +MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAywV8/DH1vLyuTOu9MBiA +F2DLlZi0SOMEUznXVSRbt0+YVfsro67+66B7ATnB2a5BCyOGaFJ9aIwfTWILMTJo +91hVk4gHdvsSYeiS3gnSQtKYEdAXZgL2apGP1s08XQfluTF57fxVn8RpKieox6Ea +68JSGMuh0AEr2MuJzaTcxzQ5UpIiK2vUuBXNMzZwbZKvssfsyoZ6zIEeco4BCGXX +mJUyxFb6MLV8DWKwmUQjhV/EjDemvE0vrUziY1afo2J9Ngk03mPHqprDZEa8u2ww +tm2ghuCaislKh9X7vl31Yj5lcPCUiacBupV6/bhMjPTAgIAOEcsLVZMK2P+snRED +jwIDAQAB +-----END PUBLIC KEY-----`, `-----BEGIN PUBLIC KEY----- +MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAoaJsIxrUBKPW/dogPpUx +xhiL8cpUt8uWlclOrmUSHFZzY50rwsCt2ndnZRHE/HD+X7oCo28pdYTySZWnsiY/ +K2HeyYdsRzUH71Mx0Z+a1uBa0k6BVHY8vrPObLCPFEmxnqml+Wj74zocsR23/puC +z8Vgm+0VF49vu+ab90lc2iLJtElveRnLrSkaudCUndmn+aVftwnpDxJ4Z0rRlJkh +yeZMN4+EMse5+0hAhg5UiPHE6pG8RI3zYnp0EYKvN+M9/cdNntyuKCCCvOCi4b4d +4wpGOrDuiA/moh2J9zwPBMiyvIFozUMmqAQV3zuUxx+jAAjrc9ReQLnoExhuhfrU +5wIDAQAB +-----END PUBLIC KEY-----`} + + priKeys []*rsa.PrivateKey + pubKeys []*rsa.PublicKey + jwkArray []jwkRepo.Key + path [3]string // path[0] contains jwkArray[0], path[1] contains jwkArray[0:2], path[2] contains jwkArray[2] + + email1 = "user1@pingcap.com" + email2 = "user2@pingcap.com" + issuer1 = "issuer1" + issuer2 = "issuer2" +) + +type pair struct { + name string + value interface{} +} + +func init() { + for i := range publicKeyStrings { + if v, rest, err := jwkRepo.DecodePEM(([]byte)(privateKeyStrings[i])); err != nil { + log.Println(err.Error()) + log.Fatal("Error in decode private key") + } else if len(rest) > 0 { + log.Fatal("Rest in decode private key") + } else if priKey, ok := v.(*rsa.PrivateKey); !ok { + log.Fatal("Wrong type of private key") + } else { + priKeys = append(priKeys, priKey) + } + if v, rest, err := jwkRepo.DecodePEM(([]byte)(publicKeyStrings[i])); err != nil { + log.Println(err.Error()) + log.Fatal("Error in decode public key") + } else if len(rest) > 0 { + log.Fatal("Rest in decode public key") + } else if pubKey, ok := v.(*rsa.PublicKey); !ok { + log.Fatal("Wrong type of public key") + } else { + pubKeys = append(pubKeys, pubKey) + jwk, err := jwkRepo.FromRaw(pubKey) + if err != nil { + log.Fatal("Error when generate jwk") + } + keyAttributes := []pair{ + {jwkRepo.AlgorithmKey, jwaRepo.RS256}, + {jwkRepo.KeyIDKey, fmt.Sprintf("the-key-id-%d", i)}, + {jwkRepo.KeyUsageKey, "sig"}, + } + for _, keyAttribute := range keyAttributes { + if err = jwk.Set(keyAttribute.name, keyAttribute.value); err != nil { + log.Println(err.Error()) + log.Fatalf("Error when set %s for key %d", keyAttribute.name, i) + } + } + jwkArray = append(jwkArray, jwk) + } + } + + for i := range path { + path[i] = fmt.Sprintf("%s%cjwks%d.json", os.TempDir(), os.PathSeparator, i) + file, err := os.Create(path[i]) + if err != nil { + log.Fatal("Fail to create temp file") + } + jwks := jwkRepo.NewSet() + var rawJSON []byte + if i == 2 { + jwks.AddKey(jwkArray[i]) + } else { + for j := 0; j <= i; j++ { + jwks.AddKey(jwkArray[j]) + } + } + if rawJSON, err = json.MarshalIndent(jwks, "", " "); err != nil { + log.Fatal("Error when marshaler json") + } + if n, err := file.Write(rawJSON); err != nil { + log.Fatal("Error when writing json") + } else if n != len(rawJSON) { + log.Fatal("Lack byte when writing json") + } + } +} + +func getSignedTokenString(priKey *rsa.PrivateKey, pairs map[string]interface{}) (string, error) { + jwt := jwtRepo.New() + header := jwsRepo.NewHeaders() + headerPairs := []pair{ + {jwsRepo.AlgorithmKey, jwaRepo.RS256}, + {jwsRepo.TypeKey, "JWT"}, + } + for _, pair := range headerPairs { + if err := header.Set(pair.name, pair.value); err != nil { + log.Fatal("Error when set header") + } + } + for k, v := range pairs { + switch k { + case jwsRepo.KeyIDKey: + if err := header.Set(k, v); err != nil { + log.Fatal("Error when set header") + } + case jwtRepo.SubjectKey, jwtRepo.IssuedAtKey, jwtRepo.ExpirationKey, jwtRepo.IssuerKey, openid.EmailKey: + if err := jwt.Set(k, v); err != nil { + log.Fatal("Error when set payload") + } + } + } + bytes, err := jwtRepo.Sign(jwt, jwtRepo.WithKey(jwaRepo.RS256, priKey, jwsRepo.WithProtectedHeaders(header))) + if err != nil { + return "", err + } + return string(hack.String(bytes)), nil +} + +func TestAuthTokenClaims(t *testing.T) { + var jwksImpl JWKSImpl + now := time.Now() + require.NoError(t, jwksImpl.LoadJWKS4AuthToken(nil, nil, path[0], time.Hour), path[0]) + claims := map[string]interface{}{ + jwsRepo.KeyIDKey: "the-key-id-0", + jwtRepo.SubjectKey: email1, + openid.EmailKey: email1, + jwtRepo.IssuedAtKey: now.Unix(), + jwtRepo.ExpirationKey: now.Add(100 * time.Hour).Unix(), + jwtRepo.IssuerKey: issuer1, + } + signedTokenString, err := getSignedTokenString(priKeys[0], claims) + require.NoError(t, err) + verifiedClaims, err := jwksImpl.checkSigWithRetry(signedTokenString, 0) + require.NoError(t, err) + for k, v := range claims { + switch k { + case jwtRepo.SubjectKey, openid.EmailKey, jwtRepo.IssuerKey: + require.Equal(t, v, verifiedClaims[k]) + case jwtRepo.IssuedAtKey, jwtRepo.ExpirationKey: + require.Equal(t, v, verifiedClaims[k].(time.Time).Unix()) + } + } + record := &UserRecord{ + baseRecord: baseRecord{ + User: email1, + }, + AuthTokenIssuer: issuer1, + Email: email1, + } + + // Success + err = checkAuthTokenClaims(verifiedClaims, record, defaultTokenLife) + require.NoError(t, err) + + // test 'sub' + verifiedClaims[jwtRepo.SubjectKey] = email2 + err = checkAuthTokenClaims(verifiedClaims, record, defaultTokenLife) + require.ErrorContains(t, err, "Wrong 'sub'") + delete(verifiedClaims, jwtRepo.SubjectKey) + err = checkAuthTokenClaims(verifiedClaims, record, defaultTokenLife) + require.ErrorContains(t, err, "lack 'sub'") + verifiedClaims[jwtRepo.SubjectKey] = email1 + + // test 'email' + verifiedClaims[openid.EmailKey] = email2 + err = checkAuthTokenClaims(verifiedClaims, record, defaultTokenLife) + require.ErrorContains(t, err, "Wrong 'email'") + delete(verifiedClaims, openid.EmailKey) + err = checkAuthTokenClaims(verifiedClaims, record, defaultTokenLife) + require.ErrorContains(t, err, "lack 'email'") + verifiedClaims[openid.EmailKey] = email1 + + // test 'iat' + delete(verifiedClaims, jwtRepo.IssuedAtKey) + err = checkAuthTokenClaims(verifiedClaims, record, defaultTokenLife) + require.ErrorContains(t, err, "lack 'iat'") + verifiedClaims[jwtRepo.IssuedAtKey] = "abc" + err = checkAuthTokenClaims(verifiedClaims, record, defaultTokenLife) + require.ErrorContains(t, err, "iat: abc is not a value of time.Time") + time.Sleep(2 * time.Second) + verifiedClaims[jwtRepo.IssuedAtKey] = now + err = checkAuthTokenClaims(verifiedClaims, record, time.Second) + require.ErrorContains(t, err, "the token has been out of its life time") + verifiedClaims[jwtRepo.IssuedAtKey] = now.Add(time.Hour) + err = checkAuthTokenClaims(verifiedClaims, record, defaultTokenLife) + require.ErrorContains(t, err, "the token is issued at a future time") + verifiedClaims[jwtRepo.IssuedAtKey] = now + + // test 'exp' + delete(verifiedClaims, jwtRepo.ExpirationKey) + err = checkAuthTokenClaims(verifiedClaims, record, defaultTokenLife) + require.ErrorContains(t, err, "lack 'exp'") + verifiedClaims[jwtRepo.ExpirationKey] = "abc" + err = checkAuthTokenClaims(verifiedClaims, record, defaultTokenLife) + require.ErrorContains(t, err, "exp: abc is not a value of time.Time") + verifiedClaims[jwtRepo.ExpirationKey] = now + err = checkAuthTokenClaims(verifiedClaims, record, defaultTokenLife) + require.ErrorContains(t, err, "the token has been expired") + verifiedClaims[jwtRepo.ExpirationKey] = now.Add(100 * time.Hour) + + // test token_issuer + delete(verifiedClaims, jwtRepo.IssuerKey) + err = checkAuthTokenClaims(verifiedClaims, record, defaultTokenLife) + require.ErrorContains(t, err, "lack 'iss'") + verifiedClaims[jwtRepo.IssuerKey] = issuer1 + record.AuthTokenIssuer = issuer2 + err = checkAuthTokenClaims(verifiedClaims, record, defaultTokenLife) + require.ErrorContains(t, err, "Wrong 'iss") +} + +func TestJWKSImpl(t *testing.T) { + var jwksImpl JWKSImpl + + // Set wrong path of JWKS + require.Error(t, jwksImpl.LoadJWKS4AuthToken(nil, nil, "wrong-jwks-path", time.Hour)) + require.Error(t, jwksImpl.load()) + _, err := jwksImpl.checkSigWithRetry("invalid tokenString", 4) + require.Error(t, err) + _, err = jwksImpl.verify(([]byte)("invalid tokenString")) + require.Error(t, err) + + require.NoError(t, jwksImpl.LoadJWKS4AuthToken(nil, nil, path[0], time.Hour), path[0]) + now := time.Now() + claims := map[string]interface{}{ + jwsRepo.KeyIDKey: "the-key-id-0", + jwtRepo.SubjectKey: email1, + openid.EmailKey: email1, + jwtRepo.IssuedAtKey: now.Unix(), + jwtRepo.ExpirationKey: now.Add(100 * time.Hour).Unix(), + jwtRepo.IssuerKey: issuer1, + } + signedTokenString, err := getSignedTokenString(priKeys[0], claims) + require.NoError(t, err) + parts := strings.Split(signedTokenString, ".") + + // Wrong encoded JWT format + _, err = jwksImpl.checkSigWithRetry(parts[0]+"."+parts[1], 0) + require.ErrorContains(t, err, "Invalid JWT") + _, err = jwksImpl.checkSigWithRetry(signedTokenString+"."+parts[1], 0) + require.ErrorContains(t, err, "Invalid JWT") + + // Wrong signature + _, err = jwksImpl.checkSigWithRetry(signedTokenString+"A", 0) + require.ErrorContains(t, err, "could not verify message using any of the signatures or keys") + + // Wrong signature, and fail to reload JWKS + jwksImpl.filepath = "wrong-path" + _, err = jwksImpl.checkSigWithRetry(signedTokenString+"A", 0) + require.ErrorContains(t, err, "open wrong-path: no such file or directory") + jwksImpl.filepath = path[0] + + require.NoError(t, jwksImpl.LoadJWKS4AuthToken(nil, nil, path[0], time.Hour), path[0]) + _, err = jwksImpl.checkSigWithRetry(signedTokenString, 0) + require.NoError(t, err) + + // Wrong kid + claims[jwsRepo.KeyIDKey] = "the-key-id-1" + signedTokenString, err = getSignedTokenString(priKeys[0], claims) + require.NoError(t, err) + _, err = jwksImpl.checkSigWithRetry(signedTokenString, 0) + require.Error(t, err) + claims[jwsRepo.KeyIDKey] = "the-key-id-0" + signedTokenString, err = getSignedTokenString(priKeys[0], claims) + require.NoError(t, err) + require.NoError(t, jwksImpl.LoadJWKS4AuthToken(nil, nil, path[1], time.Hour), path[1]) + _, err = jwksImpl.checkSigWithRetry(signedTokenString, 0) + require.NoError(t, err) + require.NoError(t, jwksImpl.LoadJWKS4AuthToken(nil, nil, path[2], time.Hour), path[2]) + _, err = jwksImpl.checkSigWithRetry(signedTokenString, 0) + require.Error(t, err) +} diff --git a/server/BUILD.bazel b/server/BUILD.bazel index 9045b932c7f61..56b3741259f81 100644 --- a/server/BUILD.bazel +++ b/server/BUILD.bazel @@ -9,6 +9,7 @@ go_library( "conn_stmt.go", "driver.go", "driver_tidb.go", + "extension.go", "http_handler.go", "http_status.go", "mock_conn.go", @@ -25,6 +26,7 @@ go_library( importpath = "github.com/pingcap/tidb/server", visibility = ["//visibility:public"], deps = [ + "//autoid_service", "//config", "//ddl", "//domain", @@ -32,6 +34,7 @@ go_library( "//errno", "//executor", "//expression", + "//extension", "//infoschema", "//kv", "//meta", @@ -55,6 +58,7 @@ go_library( "//sessionctx/stmtctx", "//sessionctx/variable", "//sessiontxn", + "//store", "//store/driver/error", "//store/gcworker", "//store/helper", @@ -91,6 +95,7 @@ go_library( "@com_github_pingcap_errors//:errors", "@com_github_pingcap_failpoint//:failpoint", "@com_github_pingcap_fn//:fn", + "@com_github_pingcap_kvproto//pkg/autoid", "@com_github_pingcap_kvproto//pkg/coprocessor", "@com_github_pingcap_kvproto//pkg/diagnosticspb", "@com_github_pingcap_kvproto//pkg/kvrpcpb", @@ -117,7 +122,7 @@ go_library( go_test( name = "server_test", - timeout = "short", + timeout = "moderate", srcs = [ "column_test.go", "conn_stmt_test.go", @@ -151,6 +156,7 @@ go_test( "//errno", "//executor", "//expression", + "//extension", "//infoschema", "//kv", "//meta", @@ -168,6 +174,7 @@ go_test( "//sessionctx/binloginfo", "//sessionctx/stmtctx", "//sessionctx/variable", + "//sessiontxn", "//statistics/handle", "//store/helper", "//store/mockstore", diff --git a/server/conn.go b/server/conn.go index 478f86a821860..b319679fdbf14 100644 --- a/server/conn.go +++ b/server/conn.go @@ -61,6 +61,7 @@ import ( "github.com/pingcap/tidb/domain/infosync" "github.com/pingcap/tidb/errno" "github.com/pingcap/tidb/executor" + "github.com/pingcap/tidb/extension" "github.com/pingcap/tidb/infoschema" "github.com/pingcap/tidb/kv" "github.com/pingcap/tidb/metrics" @@ -196,6 +197,7 @@ type clientConn struct { *TiDBContext // an interface to execute sql statements. } attrs map[string]string // attributes parsed from client handshake response, not used for now. + serverHost string // server host peerHost string // peer host peerPort string // peer port status int32 // dispatching/reading/shutdown/waitshutdown @@ -212,6 +214,7 @@ type clientConn struct { sync.RWMutex cancelFunc context.CancelFunc } + extensions *extension.SessionExtensions } func (cc *clientConn) getCtx() *TiDBContext { @@ -402,7 +405,7 @@ func (cc *clientConn) writeInitialHandshake(ctx context.Context) error { return err } } - defAuthPlugin, err := cc.ctx.GetSessionVars().GetGlobalSystemVar(variable.DefaultAuthPlugin) + defAuthPlugin, err := cc.ctx.GetSessionVars().GetGlobalSystemVar(context.Background(), variable.DefaultAuthPlugin) if err != nil { return err } @@ -678,6 +681,8 @@ func (cc *clientConn) readOptionalSSLRequestAndHandshakeResponse(ctx context.Con case mysql.AuthNativePassword: case mysql.AuthSocket: case mysql.AuthTiDBSessionToken: + case mysql.AuthTiDBAuthToken: + case mysql.AuthMySQLClearPassword: default: return errors.New("Unknown auth plugin") } @@ -706,6 +711,7 @@ func (cc *clientConn) handleAuthPlugin(ctx context.Context, resp *handshakeRespo case mysql.AuthNativePassword: case mysql.AuthSocket: case mysql.AuthTiDBSessionToken: + case mysql.AuthMySQLClearPassword: default: logutil.Logger(ctx).Warn("Unknown Auth Plugin", zap.String("plugin", resp.AuthPlugin)) } @@ -792,7 +798,7 @@ func (cc *clientConn) openSession() error { tlsState := cc.tlsConn.ConnectionState() tlsStatePtr = &tlsState } - ctx, err := cc.server.driver.OpenCtx(cc.connectionID, cc.capability, cc.collation, cc.dbname, tlsStatePtr) + ctx, err := cc.server.driver.OpenCtx(cc.connectionID, cc.capability, cc.collation, cc.dbname, tlsStatePtr, cc.extensions) if err != nil { return err } @@ -922,6 +928,9 @@ func (cc *clientConn) checkAuthPlugin(ctx context.Context, resp *handshakeRespon // method send by the client (*authPlugin) then we need to switch the authentication // method to match the one configured for that specific user. if (cc.authPlugin != userplugin) || (cc.authPlugin != resp.AuthPlugin) { + if userplugin == mysql.AuthTiDBAuthToken { + userplugin = mysql.AuthMySQLClearPassword + } if resp.Capability&mysql.ClientPluginAuth > 0 { authData, err := cc.authSwitchRequest(ctx, userplugin) if err != nil { @@ -945,6 +954,7 @@ func (cc *clientConn) PeerHost(hasPassword string) (host, port string, err error host = variable.DefHostname if cc.isUnixSocket { cc.peerHost = host + cc.serverHost = host return } addr := cc.bufReadConn.RemoteAddr().String() @@ -955,6 +965,15 @@ func (cc *clientConn) PeerHost(hasPassword string) (host, port string, err error } cc.peerHost = host cc.peerPort = port + + serverAddr := cc.bufReadConn.LocalAddr().String() + serverHost, _, err := net.SplitHostPort(serverAddr) + if err != nil { + err = errAccessDenied.GenWithStackByArgs(cc.user, addr, hasPassword) + return + } + cc.serverHost = serverHost + return } @@ -971,7 +990,7 @@ func (cc *clientConn) skipInitConnect() bool { // initResultEncoder initialize the result encoder for current connection. func (cc *clientConn) initResultEncoder(ctx context.Context) { - chs, err := cc.ctx.GetSessionVars().GetSessionOrGlobalSystemVar(variable.CharacterSetResults) + chs, err := cc.ctx.GetSessionVars().GetSessionOrGlobalSystemVar(context.Background(), variable.CharacterSetResults) if err != nil { chs = "" logutil.Logger(ctx).Warn("get character_set_results system variable failed", zap.Error(err)) @@ -980,7 +999,7 @@ func (cc *clientConn) initResultEncoder(ctx context.Context) { } func (cc *clientConn) initInputEncoder(ctx context.Context) { - chs, err := cc.ctx.GetSessionVars().GetSessionOrGlobalSystemVar(variable.CharacterSetClient) + chs, err := cc.ctx.GetSessionVars().GetSessionOrGlobalSystemVar(context.Background(), variable.CharacterSetClient) if err != nil { chs = "" logutil.Logger(ctx).Warn("get character_set_client system variable failed", zap.Error(err)) @@ -1102,6 +1121,7 @@ func (cc *clientConn) Run(ctx context.Context) { startTime := time.Now() err = cc.dispatch(ctx, data) + cc.ctx.GetSessionVars().ClearAlloc(&cc.chunkAlloc, err != nil) cc.chunkAlloc.Reset() if err != nil { cc.audit(plugin.Error) // tell the plugin API there was a dispatch error @@ -1335,11 +1355,6 @@ func (cc *clientConn) dispatch(ctx context.Context, data []byte) error { } switch cmd { - case mysql.ComSleep: - // TODO: According to mysql document, this command is supposed to be used only internally. - // So it's just a temp fix, not sure if it's done right. - // Investigate this command and write test case later. - return nil case mysql.ComQuit: return io.EOF case mysql.ComInitDB: @@ -1849,10 +1864,13 @@ func (cc *clientConn) audit(eventType plugin.GeneralEvent) { // Query `load stats` does not return result either. func (cc *clientConn) handleQuery(ctx context.Context, sql string) (err error) { defer trace.StartRegion(ctx, "handleQuery").End() - sc := cc.ctx.GetSessionVars().StmtCtx + sessVars := cc.ctx.GetSessionVars() + sc := sessVars.StmtCtx prevWarns := sc.GetWarnings() var stmts []ast.StmtNode + cc.ctx.GetSessionVars().SetAlloc(cc.chunkAlloc) if stmts, err = cc.ctx.Parse(ctx, sql); err != nil { + cc.onExtensionSQLParseFailed(sql, err) return err } @@ -1889,14 +1907,30 @@ func (cc *clientConn) handleQuery(ctx context.Context, sql string) (err error) { // Only pre-build point plans for multi-statement query pointPlans, err = cc.prefetchPointPlanKeys(ctx, stmts) if err != nil { + for _, stmt := range stmts { + cc.onExtensionStmtEnd(stmt, false, err) + } return err } + metrics.NumOfMultiQueryHistogram.Observe(float64(len(stmts))) } if len(pointPlans) > 0 { defer cc.ctx.ClearValue(plannercore.PointPlanKey) } var retryable bool + var lastStmt ast.StmtNode + var expiredStmtTaskID uint64 for i, stmt := range stmts { + if lastStmt != nil { + cc.onExtensionStmtEnd(lastStmt, true, nil) + } + lastStmt = stmt + + // expiredTaskID is the task ID of the previous statement. When executing a stmt, + // the StmtCtx will be reinit and the TaskID will change. We can compare the StmtCtx.TaskID + // with the previous one to determine whether StmtCtx has been inited for the current stmt. + expiredStmtTaskID = sessVars.StmtCtx.TaskID + if len(pointPlans) > 0 { // Save the point plan in Session, so we don't need to build the point plan again. cc.ctx.SetValue(plannercore.PointPlanKey, plannercore.PointPlanVal{Plan: pointPlans[i]}) @@ -1936,6 +1970,11 @@ func (cc *clientConn) handleQuery(ctx context.Context, sql string) (err error) { } } } + + if lastStmt != nil { + cc.onExtensionStmtEnd(lastStmt, sessVars.StmtCtx.TaskID != expiredStmtTaskID, err) + } + return err } @@ -1976,7 +2015,7 @@ func (cc *clientConn) prefetchPointPlanKeys(ctx context.Context, stmts []ast.Stm } // TODO: the preprocess is run twice, we should find some way to avoid do it again. // TODO: handle the PreprocessorReturn. - if err = plannercore.Preprocess(cc.getCtx(), stmt); err != nil { + if err = plannercore.Preprocess(ctx, cc.getCtx(), stmt); err != nil { return nil, err } p := plannercore.TryFastPlan(cc.ctx.Session, stmt) @@ -2448,8 +2487,19 @@ func (cc *clientConn) handleChangeUser(ctx context.Context, data []byte) error { } pass := data[:passLen] data = data[passLen:] - dbName, _ := parseNullTermString(data) + dbName, data := parseNullTermString(data) cc.dbname = string(hack.String(dbName)) + pluginName := "" + if len(data) > 0 { + // skip character set + if cc.capability&mysql.ClientProtocol41 > 0 && len(data) >= 2 { + data = data[2:] + } + if cc.capability&mysql.ClientPluginAuth > 0 && len(data) > 0 { + pluginNameB, _ := parseNullTermString(data) + pluginName = string(hack.String(pluginNameB)) + } + } if err := cc.ctx.Close(); err != nil { logutil.Logger(ctx).Debug("close old context failed", zap.Error(err)) @@ -2460,7 +2510,24 @@ func (cc *clientConn) handleChangeUser(ctx context.Context, data []byte) error { if err != nil { return err } - if err := cc.openSessionAndDoAuth(pass, ""); err != nil { + fakeResp := &handshakeResponse41{ + Auth: pass, + AuthPlugin: pluginName, + Capability: cc.capability, + } + if fakeResp.AuthPlugin != "" { + failpoint.Inject("ChangeUserAuthSwitch", func(val failpoint.Value) { + failpoint.Return(errors.Errorf("%v", val)) + }) + newpass, err := cc.checkAuthPlugin(ctx, fakeResp) + if err != nil { + return err + } + if len(newpass) > 0 { + fakeResp.Auth = newpass + } + } + if err := cc.openSessionAndDoAuth(fakeResp.Auth, fakeResp.AuthPlugin); err != nil { return err } return cc.handleCommonConnectionReset(ctx) @@ -2477,7 +2544,7 @@ func (cc *clientConn) handleResetConnection(ctx context.Context) error { tlsState := cc.tlsConn.ConnectionState() tlsStatePtr = &tlsState } - tidbCtx, err := cc.server.driver.OpenCtx(cc.connectionID, cc.capability, cc.collation, cc.dbname, tlsStatePtr) + tidbCtx, err := cc.server.driver.OpenCtx(cc.connectionID, cc.capability, cc.collation, cc.dbname, tlsStatePtr, cc.extensions) if err != nil { return err } @@ -2497,8 +2564,10 @@ func (cc *clientConn) handleResetConnection(ctx context.Context) error { } func (cc *clientConn) handleCommonConnectionReset(ctx context.Context) error { - cc.ctx.GetSessionVars().ConnectionInfo = cc.connectInfo() + connectionInfo := cc.connectInfo() + cc.ctx.GetSessionVars().ConnectionInfo = connectionInfo + cc.onExtensionConnEvent(extension.ConnReset, nil) err := plugin.ForeachPlugin(plugin.Audit, func(p *plugin.Plugin) error { authPlugin := plugin.DeclareAuditManifest(p.Manifest) if authPlugin.OnConnectionEvent != nil { diff --git a/server/conn_stmt.go b/server/conn_stmt.go index ef92ea85abaf0..436b2d1721ca0 100644 --- a/server/conn_stmt.go +++ b/server/conn_stmt.go @@ -158,6 +158,10 @@ func (cc *clientConn) handleStmtExecute(ctx context.Context, data []byte) (err e return mysql.NewErrf(mysql.ErrUnknown, "unsupported flag: CursorTypeScrollable", nil) } + if !useCursor { + // not using streaming ,can reuse chunk + cc.ctx.GetSessionVars().SetAlloc(cc.chunkAlloc) + } // skip iteration-count, always 1 pos += 4 @@ -200,7 +204,15 @@ func (cc *clientConn) handleStmtExecute(ctx context.Context, data []byte) (err e return errors.Annotate(err, cc.preparedStmt2String(stmtID)) } } - return cc.executePlanCacheStmt(ctx, stmt, args, useCursor) + + sessVars := cc.ctx.GetSessionVars() + // expiredTaskID is the task ID of the previous statement. When executing a stmt, + // the StmtCtx will be reinit and the TaskID will change. We can compare the StmtCtx.TaskID + // with the previous one to determine whether StmtCtx has been inited for the current stmt. + expiredTaskID := sessVars.StmtCtx.TaskID + err = cc.executePlanCacheStmt(ctx, stmt, args, useCursor) + cc.onExtensionBinaryExecuteEnd(stmt, args, sessVars.StmtCtx.TaskID != expiredTaskID, err) + return err } func (cc *clientConn) executePlanCacheStmt(ctx context.Context, stmt interface{}, args []expression.Expression, useCursor bool) (err error) { @@ -295,6 +307,7 @@ const ( func (cc *clientConn) handleStmtFetch(ctx context.Context, data []byte) (err error) { cc.ctx.GetSessionVars().StartTime = time.Now() + cc.ctx.GetSessionVars().ClearAlloc(nil, false) stmtID, fetchSize, err := parseStmtFetchCmd(data) if err != nil { diff --git a/server/conn_test.go b/server/conn_test.go index 3c6edcf30bba7..84db98f9e1827 100644 --- a/server/conn_test.go +++ b/server/conn_test.go @@ -31,8 +31,10 @@ import ( "github.com/pingcap/failpoint" "github.com/pingcap/kvproto/pkg/metapb" + "github.com/pingcap/tidb/config" "github.com/pingcap/tidb/domain" "github.com/pingcap/tidb/executor" + "github.com/pingcap/tidb/extension" "github.com/pingcap/tidb/parser/auth" "github.com/pingcap/tidb/parser/mysql" "github.com/pingcap/tidb/session" @@ -351,7 +353,7 @@ func TestDispatch(t *testing.T) { { com: mysql.ComSleep, in: nil, - err: nil, + err: mysql.NewErrf(mysql.ErrUnknown, "command %d not supported now", nil, mysql.ComSleep), out: nil, }, { @@ -470,7 +472,7 @@ func TestDispatchClientProtocol41(t *testing.T) { { com: mysql.ComSleep, in: nil, - err: nil, + err: mysql.NewErrf(mysql.ErrUnknown, "command %d not supported now", nil, mysql.ComSleep), out: nil, }, { @@ -727,6 +729,11 @@ func TestConnExecutionTimeout(t *testing.T) { err = cc.handleQuery(context.Background(), "select /*+ MAX_EXECUTION_TIME(100)*/ * FROM testTable2 WHERE SLEEP(1);") require.NoError(t, err) + + tk.MustExec("set @@max_execution_time = 500;") + + err = cc.handleQuery(context.Background(), "alter table testTable2 add index idx(age);") + require.NoError(t, err) } func TestShutDown(t *testing.T) { @@ -851,6 +858,7 @@ func TestTiFlashFallback(t *testing.T) { cc.setCtx(&TiDBContext{Session: tk.Session(), stmts: make(map[int]*TiDBStatement)}) tk.MustExec("drop table if exists t") + tk.MustExec("set tidb_cost_model_version=1") tk.MustExec("create table t(a int not null primary key, b int not null)") tk.MustExec("alter table t set tiflash replica 1") tb := external.GetTableByName(t, tk, "test", "t") @@ -1358,6 +1366,56 @@ func TestHandleAuthPlugin(t *testing.T) { require.NoError(t, failpoint.Disable("github.com/pingcap/tidb/server/FakeUser")) } +func TestChangeUserAuth(t *testing.T) { + store := testkit.CreateMockStore(t) + tk := testkit.NewTestKit(t, store) + tk.MustExec("create user user1") + + cfg := newTestConfig() + cfg.Port = 0 + cfg.Status.StatusPort = 0 + + drv := NewTiDBDriver(store) + srv, err := NewServer(cfg, drv) + require.NoError(t, err) + + cc := &clientConn{ + connectionID: 1, + alloc: arena.NewAllocator(1024), + chunkAlloc: chunk.NewAllocator(), + peerHost: "localhost", + collation: mysql.DefaultCollationID, + capability: defaultCapability, + pkt: &packetIO{ + bufWriter: bufio.NewWriter(bytes.NewBuffer(nil)), + }, + server: srv, + user: "root", + } + ctx := context.Background() + se, _ := session.CreateSession4Test(store) + tc := &TiDBContext{ + Session: se, + stmts: make(map[int]*TiDBStatement), + } + cc.setCtx(tc) + + data := []byte{} + data = append(data, "user1"...) + data = append(data, 0) + data = append(data, 1) + data = append(data, 0) + data = append(data, "test"...) + data = append(data, 0) + data = append(data, 0, 0) + data = append(data, "unknown"...) + data = append(data, 0) + require.NoError(t, failpoint.Enable("github.com/pingcap/tidb/server/ChangeUserAuthSwitch", fmt.Sprintf("return(\"%s\")", t.Name()))) + err = cc.handleChangeUser(ctx, data) + require.NoError(t, failpoint.Disable("github.com/pingcap/tidb/server/ChangeUserAuthSwitch")) + require.EqualError(t, err, t.Name()) +} + func TestAuthPlugin2(t *testing.T) { store := testkit.CreateMockStore(t) @@ -1400,30 +1458,31 @@ func TestAuthPlugin2(t *testing.T) { } func TestAuthTokenPlugin(t *testing.T) { - store := testkit.CreateMockStore(t) + // create the cert + tempDir := t.TempDir() + certPath := filepath.Join(tempDir, "test1_cert.pem") + keyPath := filepath.Join(tempDir, "test1_key.pem") + err := util.CreateCertificates(certPath, keyPath, 1024, x509.RSA, x509.UnknownSignatureAlgorithm) + require.NoError(t, err) - cfg := newTestConfig() + cfg := config.GetGlobalConfig() + cfg.Security.SessionTokenSigningCert = certPath + cfg.Security.SessionTokenSigningKey = keyPath cfg.Port = 0 cfg.Status.StatusPort = 0 + + // The global config is read during creating the store. + store := testkit.CreateMockStore(t) drv := NewTiDBDriver(store) srv, err := NewServer(cfg, drv) require.NoError(t, err) ctx := context.Background() - // create the cert - tempDir := t.TempDir() - certPath := filepath.Join(tempDir, "test1_cert.pem") - keyPath := filepath.Join(tempDir, "test1_key.pem") - err = util.CreateCertificates(certPath, keyPath, 4096, x509.RSA, x509.UnknownSignatureAlgorithm) - require.NoError(t, err) - tk := testkit.NewTestKit(t, store) tk.MustExec("CREATE USER auth_session_token") tk.MustExec("CREATE USER another_user") - tk.MustExec(fmt.Sprintf("set global %s='%s'", variable.TiDBAuthSigningCert, certPath)) - tk.MustExec(fmt.Sprintf("set global %s='%s'", variable.TiDBAuthSigningKey, keyPath)) - tc, err := drv.OpenCtx(uint64(0), 0, uint8(mysql.DefaultCollationID), "", nil) + tc, err := drv.OpenCtx(uint64(0), 0, uint8(mysql.DefaultCollationID), "", nil, nil) require.NoError(t, err) cc := &clientConn{ connectionID: 1, @@ -1442,8 +1501,7 @@ func TestAuthTokenPlugin(t *testing.T) { tk1 := testkit.NewTestKitWithSession(t, store, tc.Session) tc.Session.GetSessionVars().ConnectionInfo = cc.connectInfo() tk1.Session().Auth(&auth.UserIdentity{Username: "auth_session_token", Hostname: "localhost"}, nil, nil) - err = tk1.QueryToErr("show session_states") - require.ErrorContains(t, err, "secure transport") + tk1.MustQuery("show session_states") // create a token with TLS cc.tlsConn = &tls.Conn{} @@ -1583,3 +1641,134 @@ func TestOkEof(t *testing.T) { require.Equal(t, mysql.EOFHeader, outBuffer.Bytes()[4]) require.Equal(t, []byte{0x7, 0x0, 0x0, 0x1, 0xfe, 0x0, 0x0, 0x2, 0x0, 0x0, 0x0}, outBuffer.Bytes()) } + +func TestExtensionChangeUser(t *testing.T) { + defer extension.Reset() + extension.Reset() + + logged := false + var logTp extension.ConnEventTp + var logInfo *extension.ConnEventInfo + require.NoError(t, extension.Register("test", extension.WithSessionHandlerFactory(func() *extension.SessionHandler { + return &extension.SessionHandler{ + OnConnectionEvent: func(tp extension.ConnEventTp, info *extension.ConnEventInfo) { + require.False(t, logged) + logTp = tp + logInfo = info + logged = true + }, + } + }))) + + extensions, err := extension.GetExtensions() + require.NoError(t, err) + + store := testkit.CreateMockStore(t) + + var outBuffer bytes.Buffer + tidbdrv := NewTiDBDriver(store) + cfg := newTestConfig() + cfg.Port, cfg.Status.StatusPort = 0, 0 + cfg.Status.ReportStatus = false + server, err := NewServer(cfg, tidbdrv) + require.NoError(t, err) + defer server.Close() + + cc := &clientConn{ + connectionID: 1, + salt: []byte{0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x09, 0x0A, 0x0B, 0x0C, 0x0D, 0x0E, 0x0F, 0x10, 0x11, 0x12, 0x13, 0x14}, + server: server, + pkt: &packetIO{ + bufWriter: bufio.NewWriter(&outBuffer), + }, + collation: mysql.DefaultCollationID, + peerHost: "localhost", + alloc: arena.NewAllocator(512), + chunkAlloc: chunk.NewAllocator(), + capability: mysql.ClientProtocol41, + extensions: extensions.NewSessionExtensions(), + } + + tk := testkit.NewTestKit(t, store) + ctx := &TiDBContext{Session: tk.Session()} + cc.setCtx(ctx) + tk.MustExec("create user user1") + tk.MustExec("create user user2") + tk.MustExec("create database db1") + tk.MustExec("create database db2") + tk.MustExec("grant select on db1.* to user1@'%'") + tk.MustExec("grant select on db2.* to user2@'%'") + + // change user. + doDispatch := func(req dispatchInput) { + inBytes := append([]byte{req.com}, req.in...) + err = cc.dispatch(context.Background(), inBytes) + require.Equal(t, req.err, err) + if err == nil { + err = cc.flush(context.TODO()) + require.NoError(t, err) + require.Equal(t, req.out, outBuffer.Bytes()) + } else { + _ = cc.flush(context.TODO()) + } + outBuffer.Reset() + } + + expectedConnInfo := extension.ConnEventInfo{ + ConnectionInfo: cc.connectInfo(), + ActiveRoles: []*auth.RoleIdentity{}, + } + expectedConnInfo.User = "user1" + expectedConnInfo.DB = "db1" + + require.False(t, logged) + userData := append([]byte("user1"), 0x0, 0x0) + userData = append(userData, []byte("db1")...) + userData = append(userData, 0x0) + doDispatch(dispatchInput{ + com: mysql.ComChangeUser, + in: userData, + err: nil, + out: []byte{0x7, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2, 0x0, 0x0, 0x0}, + }) + require.True(t, logged) + require.Equal(t, extension.ConnReset, logTp) + require.Equal(t, expectedConnInfo.ActiveRoles, logInfo.ActiveRoles) + require.Equal(t, expectedConnInfo.Error, logInfo.Error) + require.Equal(t, *(expectedConnInfo.ConnectionInfo), *(logInfo.ConnectionInfo)) + + logged = false + logTp = 0 + logInfo = nil + expectedConnInfo.User = "user2" + expectedConnInfo.DB = "db2" + userData = append([]byte("user2"), 0x0, 0x0) + userData = append(userData, []byte("db2")...) + userData = append(userData, 0x0) + doDispatch(dispatchInput{ + com: mysql.ComChangeUser, + in: userData, + err: nil, + out: []byte{0x7, 0x0, 0x0, 0x1, 0x0, 0x0, 0x0, 0x2, 0x0, 0x0, 0x0}, + }) + require.True(t, logged) + require.Equal(t, extension.ConnReset, logTp) + require.Equal(t, expectedConnInfo.ActiveRoles, logInfo.ActiveRoles) + require.Equal(t, expectedConnInfo.Error, logInfo.Error) + require.Equal(t, *(expectedConnInfo.ConnectionInfo), *(logInfo.ConnectionInfo)) + + logged = false + logTp = 0 + logInfo = nil + doDispatch(dispatchInput{ + com: mysql.ComResetConnection, + in: nil, + err: nil, + out: []byte{0x7, 0x0, 0x0, 0x2, 0x0, 0x0, 0x0, 0x2, 0x0, 0x0, 0x0}, + }) + require.True(t, logged) + require.Equal(t, extension.ConnReset, logTp) + require.Equal(t, expectedConnInfo.ActiveRoles, logInfo.ActiveRoles) + require.Equal(t, expectedConnInfo.Error, logInfo.Error) + require.Equal(t, *(expectedConnInfo.ConnectionInfo), *(logInfo.ConnectionInfo)) +} diff --git a/server/driver.go b/server/driver.go index a805e531f056a..a4a59f4cba2b5 100644 --- a/server/driver.go +++ b/server/driver.go @@ -19,13 +19,14 @@ import ( "crypto/tls" "github.com/pingcap/tidb/expression" + "github.com/pingcap/tidb/extension" "github.com/pingcap/tidb/util/chunk" ) // IDriver opens IContext. type IDriver interface { // OpenCtx opens an IContext with connection id, client capability, collation, dbname and optionally the tls state. - OpenCtx(connID uint64, capability uint32, collation uint8, dbname string, tlsState *tls.ConnectionState) (*TiDBContext, error) + OpenCtx(connID uint64, capability uint32, collation uint8, dbname string, tlsState *tls.ConnectionState, extensions *extension.SessionExtensions) (*TiDBContext, error) } // PreparedStatement is the interface to use a prepared statement. diff --git a/server/driver_tidb.go b/server/driver_tidb.go index ff70903c01045..9c24a273b3f8c 100644 --- a/server/driver_tidb.go +++ b/server/driver_tidb.go @@ -23,6 +23,7 @@ import ( "github.com/pingcap/errors" "github.com/pingcap/tidb/expression" + "github.com/pingcap/tidb/extension" "github.com/pingcap/tidb/kv" "github.com/pingcap/tidb/parser/ast" "github.com/pingcap/tidb/parser/charset" @@ -191,7 +192,7 @@ func (ts *TiDBStatement) Close() error { } // OpenCtx implements IDriver. -func (qd *TiDBDriver) OpenCtx(connID uint64, capability uint32, collation uint8, dbname string, tlsState *tls.ConnectionState) (*TiDBContext, error) { +func (qd *TiDBDriver) OpenCtx(connID uint64, capability uint32, collation uint8, dbname string, tlsState *tls.ConnectionState, extensions *extension.SessionExtensions) (*TiDBContext, error) { se, err := session.CreateSession(qd.store) if err != nil { return nil, err @@ -208,6 +209,7 @@ func (qd *TiDBDriver) OpenCtx(connID uint64, capability uint32, collation uint8, stmts: make(map[int]*TiDBStatement), } se.SetSessionStatesHandler(sessionstates.StatePrepareStmt, tc) + se.SetExtensions(extensions) return tc, nil } @@ -225,8 +227,8 @@ func (tc *TiDBContext) WarningCount() uint16 { func (tc *TiDBContext) ExecuteStmt(ctx context.Context, stmt ast.StmtNode) (ResultSet, error) { var rs sqlexec.RecordSet var err error - if s, ok := stmt.(*ast.NonTransactionalDeleteStmt); ok { - rs, err = session.HandleNonTransactionalDelete(ctx, s, tc.Session) + if s, ok := stmt.(*ast.NonTransactionalDMLStmt); ok { + rs, err = session.HandleNonTransactionalDML(ctx, s, tc.Session) } else { rs, err = tc.Session.ExecuteStmt(ctx, stmt) } diff --git a/server/extension.go b/server/extension.go new file mode 100644 index 0000000000000..c7cf018eb85a8 --- /dev/null +++ b/server/extension.go @@ -0,0 +1,247 @@ +// Copyright 2022 PingCAP, Inc. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +package server + +import ( + "fmt" + + "github.com/pingcap/tidb/expression" + "github.com/pingcap/tidb/extension" + "github.com/pingcap/tidb/parser" + "github.com/pingcap/tidb/parser/ast" + "github.com/pingcap/tidb/parser/auth" + "github.com/pingcap/tidb/planner/core" + "github.com/pingcap/tidb/sessionctx/stmtctx" + "github.com/pingcap/tidb/sessionctx/variable" + "github.com/pingcap/tidb/types" +) + +func (cc *clientConn) onExtensionConnEvent(tp extension.ConnEventTp, err error) { + if cc.extensions == nil { + return + } + + var connInfo *variable.ConnectionInfo + var activeRoles []*auth.RoleIdentity + if ctx := cc.getCtx(); ctx != nil { + sessVars := ctx.GetSessionVars() + connInfo = sessVars.ConnectionInfo + activeRoles = sessVars.ActiveRoles + } + + if connInfo == nil { + connInfo = cc.connectInfo() + } + + info := &extension.ConnEventInfo{ + ConnectionInfo: connInfo, + ActiveRoles: activeRoles, + Error: err, + } + + cc.extensions.OnConnectionEvent(tp, info) +} + +func (cc *clientConn) onExtensionStmtEnd(node interface{}, stmtCtxValid bool, err error, args ...expression.Expression) { + if !cc.extensions.HasStmtEventListeners() { + return + } + + ctx := cc.getCtx() + if ctx == nil { + return + } + + tp := extension.StmtSuccess + if err != nil { + tp = extension.StmtError + } + + sessVars := ctx.GetSessionVars() + info := &stmtEventInfo{ + sessVars: sessVars, + err: err, + } + + switch stmt := node.(type) { + case *ast.ExecuteStmt: + info.executeStmt = stmt + info.stmtNode = stmt + case PreparedStatement: + info.executeStmtID = uint32(stmt.ID()) + prepared, _ := sessVars.GetPreparedStmtByID(info.executeStmtID) + info.executeStmt = &ast.ExecuteStmt{ + PrepStmt: prepared, + BinaryArgs: args, + } + info.stmtNode = info.executeStmt + case ast.StmtNode: + info.stmtNode = stmt + } + + if stmtCtxValid { + info.sc = sessVars.StmtCtx + } else { + info.sc = &stmtctx.StatementContext{} + } + cc.extensions.OnStmtEvent(tp, info) +} + +// onSQLParseFailed will be called when sql parse failed +func (cc *clientConn) onExtensionSQLParseFailed(sql string, err error) { + if !cc.extensions.HasStmtEventListeners() { + return + } + + cc.extensions.OnStmtEvent(extension.StmtError, &stmtEventInfo{ + sessVars: cc.getCtx().GetSessionVars(), + err: err, + failedParseText: sql, + }) +} + +func (cc *clientConn) onExtensionBinaryExecuteEnd(prep PreparedStatement, args []expression.Expression, stmtCtxValid bool, err error) { + cc.onExtensionStmtEnd(prep, stmtCtxValid, err, args...) +} + +type stmtEventInfo struct { + sessVars *variable.SessionVars + sc *stmtctx.StatementContext + stmtNode ast.StmtNode + // execute info + executeStmtID uint32 + executeStmt *ast.ExecuteStmt + executePreparedCached bool + executePreparedCache *core.PlanCacheStmt + // error will only be valid when the stmt is failed + err error + // failedParseText will only present on parse failed + failedParseText string +} + +func (e *stmtEventInfo) ConnectionInfo() *variable.ConnectionInfo { + return e.sessVars.ConnectionInfo +} + +func (e *stmtEventInfo) StmtNode() ast.StmtNode { + return e.stmtNode +} + +func (e *stmtEventInfo) ExecuteStmtNode() *ast.ExecuteStmt { + return e.executeStmt +} + +func (e *stmtEventInfo) ExecutePreparedStmt() ast.StmtNode { + if cache := e.ensureExecutePreparedCache(); cache != nil { + return cache.PreparedAst.Stmt + } + return nil +} + +func (e *stmtEventInfo) PreparedParams() []types.Datum { + return e.sessVars.PreparedParams +} + +func (e *stmtEventInfo) OriginalText() string { + if sql := e.ensureStmtContextOriginalSQL(); sql != "" { + return sql + } + + if e.executeStmtID != 0 { + return binaryExecuteStmtText(e.executeStmtID) + } + + return e.failedParseText +} + +func (e *stmtEventInfo) SQLDigest() (normalized string, digest *parser.Digest) { + if sql := e.ensureStmtContextOriginalSQL(); sql != "" { + return e.sc.SQLDigest() + } + + if e.executeStmtID != 0 { + return binaryExecuteStmtText(e.executeStmtID), nil + } + + return e.failedParseText, nil +} + +func (e *stmtEventInfo) User() *auth.UserIdentity { + return e.sessVars.User +} + +func (e *stmtEventInfo) ActiveRoles() []*auth.RoleIdentity { + return e.sessVars.ActiveRoles +} + +func (e *stmtEventInfo) CurrentDB() string { + return e.sessVars.CurrentDB +} + +func (e *stmtEventInfo) AffectedRows() uint64 { + if e.sc == nil || e.err != nil { + return 0 + } + return e.sc.AffectedRows() +} + +func (e *stmtEventInfo) RelatedTables() []stmtctx.TableEntry { + if e.sc == nil { + return nil + } + return e.sc.Tables +} + +func (e *stmtEventInfo) GetError() error { + return e.err +} + +func (e *stmtEventInfo) ensureExecutePreparedCache() *core.PlanCacheStmt { + if e.executeStmt == nil { + return nil + } + + if !e.executePreparedCached { + e.executePreparedCache, _ = core.GetPreparedStmt(e.executeStmt, e.sessVars) + e.executePreparedCached = true + } + + return e.executePreparedCache +} + +func (e *stmtEventInfo) ensureStmtContextOriginalSQL() string { + if e.sc == nil { + return "" + } + + if sql := e.sc.OriginalSQL; sql != "" { + return sql + } + + if planCache := e.ensureExecutePreparedCache(); planCache != nil { + e.sc.OriginalSQL = planCache.PreparedAst.Stmt.Text() + e.sc.InitSQLDigest(planCache.NormalizedSQL, planCache.SQLDigest) + } + + if e.sc.OriginalSQL == "" && e.executeStmtID == 0 { + e.sc.OriginalSQL = e.stmtNode.Text() + } + + return e.sc.OriginalSQL +} + +func binaryExecuteStmtText(id uint32) string { + return fmt.Sprintf("BINARY EXECUTE (ID %d)", id) +} diff --git a/server/http_handler.go b/server/http_handler.go index 82d9ec051c722..6044f82861386 100644 --- a/server/http_handler.go +++ b/server/http_handler.go @@ -72,21 +72,22 @@ import ( ) const ( - pDBName = "db" - pHexKey = "hexKey" - pIndexName = "index" - pHandle = "handle" - pRegionID = "regionID" - pStartTS = "startTS" - pTableName = "table" - pTableID = "tableID" - pColumnID = "colID" - pColumnTp = "colTp" - pColumnFlag = "colFlag" - pColumnLen = "colLen" - pRowBin = "rowBin" - pSnapshot = "snapshot" - pFileName = "filename" + pDBName = "db" + pHexKey = "hexKey" + pIndexName = "index" + pHandle = "handle" + pRegionID = "regionID" + pStartTS = "startTS" + pTableName = "table" + pTableID = "tableID" + pColumnID = "colID" + pColumnTp = "colTp" + pColumnFlag = "colFlag" + pColumnLen = "colLen" + pRowBin = "rowBin" + pSnapshot = "snapshot" + pFileName = "filename" + pDumpPartitionStats = "dumpPartitionStats" ) // For query string @@ -658,9 +659,9 @@ func (h settingsHandler) ServeHTTP(w http.ResponseWriter, req *http.Request) { switch asyncCommit { case "0": - err = s.GetSessionVars().GlobalVarsAccessor.SetGlobalSysVar(variable.TiDBEnableAsyncCommit, variable.Off) + err = s.GetSessionVars().GlobalVarsAccessor.SetGlobalSysVar(context.Background(), variable.TiDBEnableAsyncCommit, variable.Off) case "1": - err = s.GetSessionVars().GlobalVarsAccessor.SetGlobalSysVar(variable.TiDBEnableAsyncCommit, variable.On) + err = s.GetSessionVars().GlobalVarsAccessor.SetGlobalSysVar(context.Background(), variable.TiDBEnableAsyncCommit, variable.On) default: writeError(w, errors.New("illegal argument")) return @@ -680,9 +681,9 @@ func (h settingsHandler) ServeHTTP(w http.ResponseWriter, req *http.Request) { switch onePC { case "0": - err = s.GetSessionVars().GlobalVarsAccessor.SetGlobalSysVar(variable.TiDBEnable1PC, variable.Off) + err = s.GetSessionVars().GlobalVarsAccessor.SetGlobalSysVar(context.Background(), variable.TiDBEnable1PC, variable.Off) case "1": - err = s.GetSessionVars().GlobalVarsAccessor.SetGlobalSysVar(variable.TiDBEnable1PC, variable.On) + err = s.GetSessionVars().GlobalVarsAccessor.SetGlobalSysVar(context.Background(), variable.TiDBEnable1PC, variable.On) default: writeError(w, errors.New("illegal argument")) return @@ -747,9 +748,9 @@ func (h settingsHandler) ServeHTTP(w http.ResponseWriter, req *http.Request) { switch mutationChecker { case "0": - err = s.GetSessionVars().GlobalVarsAccessor.SetGlobalSysVar(variable.TiDBEnableMutationChecker, variable.Off) + err = s.GetSessionVars().GlobalVarsAccessor.SetGlobalSysVar(context.Background(), variable.TiDBEnableMutationChecker, variable.Off) case "1": - err = s.GetSessionVars().GlobalVarsAccessor.SetGlobalSysVar(variable.TiDBEnableMutationChecker, variable.On) + err = s.GetSessionVars().GlobalVarsAccessor.SetGlobalSysVar(context.Background(), variable.TiDBEnableMutationChecker, variable.On) default: writeError(w, errors.New("illegal argument")) return @@ -799,14 +800,22 @@ func (h binlogRecover) ServeHTTP(w http.ResponseWriter, req *http.Request) { case "reset": binloginfo.ResetSkippedCommitterCounter() case "nowait": - binloginfo.DisableSkipBinlogFlag() + err := binloginfo.DisableSkipBinlogFlag() + if err != nil { + writeError(w, err) + return + } case "status": default: sec, err := strconv.ParseInt(req.FormValue(qSeconds), 10, 64) if sec <= 0 || err != nil { sec = 1800 } - binloginfo.DisableSkipBinlogFlag() + err = binloginfo.DisableSkipBinlogFlag() + if err != nil { + writeError(w, err) + return + } timeout := time.Duration(sec) * time.Second err = binloginfo.WaitBinlogRecover(timeout) if err != nil { @@ -971,10 +980,12 @@ func (h flashReplicaHandler) handleStatusReport(w http.ResponseWriter, req *http writeError(w, err) } if available { - err = infosync.DeleteTiFlashTableSyncProgress(status.ID) + var tableInfo model.TableInfo + tableInfo.ID = status.ID + err = infosync.DeleteTiFlashTableSyncProgress(&tableInfo) } else { - progress := types.TruncateFloatToString(float64(status.FlashRegionCount)/float64(status.RegionCount), 2) - err = infosync.UpdateTiFlashTableSyncProgress(context.Background(), status.ID, progress) + progress := float64(status.FlashRegionCount) / float64(status.RegionCount) + err = infosync.UpdateTiFlashProgressCache(status.ID, progress) } if err != nil { writeError(w, err) diff --git a/server/http_handler_serial_test.go b/server/http_handler_serial_test.go index c6a07c90760a1..cfc542443c000 100644 --- a/server/http_handler_serial_test.go +++ b/server/http_handler_serial_test.go @@ -16,6 +16,7 @@ package server import ( "bytes" + "context" "database/sql" "encoding/json" "fmt" @@ -65,10 +66,10 @@ func TestPostSettings(t *testing.T) { require.Equal(t, zap.ErrorLevel, log.GetLevel()) require.Equal(t, "error", config.GetGlobalConfig().Log.Level) require.True(t, variable.ProcessGeneralLog.Load()) - val, err := se.GetSessionVars().GetGlobalSystemVar(variable.TiDBEnableAsyncCommit) + val, err := se.GetSessionVars().GetGlobalSystemVar(context.Background(), variable.TiDBEnableAsyncCommit) require.NoError(t, err) require.Equal(t, variable.On, val) - val, err = se.GetSessionVars().GetGlobalSystemVar(variable.TiDBEnable1PC) + val, err = se.GetSessionVars().GetGlobalSystemVar(context.Background(), variable.TiDBEnable1PC) require.NoError(t, err) require.Equal(t, variable.On, val) @@ -84,10 +85,10 @@ func TestPostSettings(t *testing.T) { require.False(t, variable.ProcessGeneralLog.Load()) require.Equal(t, zap.FatalLevel, log.GetLevel()) require.Equal(t, "fatal", config.GetGlobalConfig().Log.Level) - val, err = se.GetSessionVars().GetGlobalSystemVar(variable.TiDBEnableAsyncCommit) + val, err = se.GetSessionVars().GetGlobalSystemVar(context.Background(), variable.TiDBEnableAsyncCommit) require.NoError(t, err) require.Equal(t, variable.Off, val) - val, err = se.GetSessionVars().GetGlobalSystemVar(variable.TiDBEnable1PC) + val, err = se.GetSessionVars().GetGlobalSystemVar(context.Background(), variable.TiDBEnable1PC) require.NoError(t, err) require.Equal(t, variable.Off, val) form.Set("log_level", os.Getenv("log_level")) @@ -309,13 +310,13 @@ func TestTiFlashReplica(t *testing.T) { require.Equal(t, "a,b", strings.Join(data[0].LocationLabels, ",")) require.Equal(t, false, data[0].Available) - resp, err = ts.postStatus("/tiflash/replica-deprecated", "application/json", bytes.NewBuffer([]byte(`{"id":84,"region_count":3,"flash_region_count":3}`))) + resp, err = ts.postStatus("/tiflash/replica-deprecated", "application/json", bytes.NewBuffer([]byte(`{"id":184,"region_count":3,"flash_region_count":3}`))) require.NoError(t, err) require.NotNil(t, resp) body, err := io.ReadAll(resp.Body) require.NoError(t, err) require.NoError(t, resp.Body.Close()) - require.Equal(t, "[schema:1146]Table which ID = 84 does not exist.", string(body)) + require.Equal(t, "[schema:1146]Table which ID = 184 does not exist.", string(body)) tbl, err := ts.domain.InfoSchema().TableByName(model.NewCIStr("tidb"), model.NewCIStr("test")) require.NoError(t, err) diff --git a/server/http_status.go b/server/http_status.go index 5c815b8ed1886..5f02e1762d4ac 100644 --- a/server/http_status.go +++ b/server/http_status.go @@ -38,10 +38,13 @@ import ( "github.com/pingcap/errors" "github.com/pingcap/failpoint" "github.com/pingcap/fn" + pb "github.com/pingcap/kvproto/pkg/autoid" + autoid "github.com/pingcap/tidb/autoid_service" "github.com/pingcap/tidb/config" "github.com/pingcap/tidb/kv" "github.com/pingcap/tidb/parser/mysql" "github.com/pingcap/tidb/parser/terror" + "github.com/pingcap/tidb/store" "github.com/pingcap/tidb/util" "github.com/pingcap/tidb/util/cpuprofile" "github.com/pingcap/tidb/util/logutil" @@ -457,6 +460,29 @@ func (s *Server) startStatusServerAndRPCServer(serverMux *http.ServeMux) { statusServer := &http.Server{Addr: s.statusAddr, Handler: CorsHandler{handler: serverMux, cfg: s.cfg}} grpcServer := NewRPCServer(s.cfg, s.dom, s) service.RegisterChannelzServiceToServer(grpcServer) + if s.cfg.Store == "tikv" { + for { + fullPath := fmt.Sprintf("tikv://%s", s.cfg.Path) + store, err := store.New(fullPath) + if err != nil { + logutil.BgLogger().Error("new tikv store fail", zap.Error(err)) + break + } + ebd, ok := store.(kv.EtcdBackend) + if !ok { + break + } + etcdAddr, err := ebd.EtcdAddrs() + if err != nil { + logutil.BgLogger().Error("tikv store not etcd background", zap.Error(err)) + break + } + service := autoid.New(s.statusListener.Addr().String(), etcdAddr, store, ebd.TLSConfig()) + pb.RegisterAutoIDAllocServer(grpcServer, service) + s.autoIDService = service + break + } + } s.statusServer = statusServer s.grpcServer = grpcServer diff --git a/server/main_test.go b/server/main_test.go index bff47f0dd7706..cdf12551934db 100644 --- a/server/main_test.go +++ b/server/main_test.go @@ -58,6 +58,7 @@ func TestMain(m *testing.M) { opts := []goleak.Option{ goleak.IgnoreTopFunction("github.com/golang/glog.(*loggingT).flushDaemon"), + goleak.IgnoreTopFunction("github.com/lestrrat-go/httprc.runFetchWorker"), goleak.IgnoreTopFunction("time.Sleep"), goleak.IgnoreTopFunction("database/sql.(*Tx).awaitDone"), goleak.IgnoreTopFunction("internal/poll.runtime_pollWait"), diff --git a/server/mock_conn.go b/server/mock_conn.go index c6c6579618074..36ad6503db812 100644 --- a/server/mock_conn.go +++ b/server/mock_conn.go @@ -23,6 +23,7 @@ import ( "testing" "github.com/pingcap/tidb/config" + "github.com/pingcap/tidb/extension" "github.com/pingcap/tidb/kv" "github.com/pingcap/tidb/parser/auth" tmysql "github.com/pingcap/tidb/parser/mysql" @@ -94,8 +95,11 @@ func CreateMockServer(t *testing.T, store kv.Storage) *Server { // CreateMockConn creates a mock connection together with a session. func CreateMockConn(t *testing.T, server *Server) MockConn { + extensions, err := extension.GetExtensions() + require.NoError(t, err) + connID := rand.Uint64() - tc, err := server.driver.OpenCtx(connID, 0, uint8(tmysql.DefaultCollationID), "", nil) + tc, err := server.driver.OpenCtx(connID, 0, uint8(tmysql.DefaultCollationID), "", nil, extensions.NewSessionExtensions()) require.NoError(t, err) cc := &clientConn{ @@ -108,12 +112,14 @@ func CreateMockConn(t *testing.T, server *Server) MockConn { pkt: &packetIO{ bufWriter: bufio.NewWriter(bytes.NewBuffer(nil)), }, + extensions: tc.GetExtensions(), } cc.setCtx(tc) cc.server.rwlock.Lock() server.clients[cc.connectionID] = cc cc.server.rwlock.Unlock() tc.Session.SetSessionManager(server) + tc.Session.GetSessionVars().ConnectionInfo = cc.connectInfo() err = tc.Session.Auth(&auth.UserIdentity{Username: "root", Hostname: "localhost"}, nil, nil) require.NoError(t, err) return &mockConn{ diff --git a/server/rpc_server.go b/server/rpc_server.go index 7053872f19aa7..4dcad639ad4a7 100644 --- a/server/rpc_server.go +++ b/server/rpc_server.go @@ -55,6 +55,12 @@ func NewRPCServer(config *config.Config, dom *domain.Domain, sm util.SessionMana Time: time.Duration(config.Status.GRPCKeepAliveTime) * time.Second, Timeout: time.Duration(config.Status.GRPCKeepAliveTimeout) * time.Second, }), + grpc.KeepaliveEnforcementPolicy(keepalive.EnforcementPolicy{ + // Allow clients send consecutive pings in every 5 seconds. + // The default value of MinTime is 5 minutes, + // which is too long compared with 10 seconds of TiDB's keepalive time. + MinTime: 5 * time.Second, + }), grpc.MaxConcurrentStreams(uint32(config.Status.GRPCConcurrentStreams)), grpc.InitialWindowSize(int32(config.Status.GRPCInitialWindowSize)), grpc.MaxSendMsgSize(config.Status.GRPCMaxSendMsgSize), @@ -192,7 +198,7 @@ func (s *rpcServer) handleCopRequest(ctx context.Context, req *coprocessor.Reque defer func() { sc := se.GetSessionVars().StmtCtx if sc.MemTracker != nil { - sc.MemTracker.DetachFromGlobalTracker() + sc.MemTracker.Detach() } se.Close() }() @@ -222,13 +228,12 @@ func (s *rpcServer) createSession() (session.Session, error) { // TODO: remove this. vars.SetHashAggPartialConcurrency(1) vars.SetHashAggFinalConcurrency(1) - vars.StmtCtx.InitMemTracker(memory.LabelForSQLText, vars.MemQuotaQuery) - vars.StmtCtx.MemTracker.AttachToGlobalTracker(executor.GlobalMemoryUsageTracker) + vars.StmtCtx.InitMemTracker(memory.LabelForSQLText, -1) + vars.StmtCtx.MemTracker.AttachTo(vars.MemTracker) switch variable.OOMAction.Load() { case variable.OOMActionCancel: action := &memory.PanicOnExceed{} - action.SetLogHook(domain.GetDomain(se).ExpensiveQueryHandle().LogOnQueryExceedMemQuota) - vars.StmtCtx.MemTracker.SetActionOnExceed(action) + vars.MemTracker.SetActionOnExceed(action) } se.SetSessionManager(s.sm) return se, nil diff --git a/server/server.go b/server/server.go index 7602fec4e05ba..1b1cce5e882a5 100644 --- a/server/server.go +++ b/server/server.go @@ -41,6 +41,7 @@ import ( _ "net/http/pprof" // #nosec G108 "os" "os/user" + "strconv" "sync" "sync/atomic" "time" @@ -48,14 +49,19 @@ import ( "github.com/blacktear23/go-proxyprotocol" "github.com/pingcap/errors" + autoid "github.com/pingcap/tidb/autoid_service" "github.com/pingcap/tidb/config" "github.com/pingcap/tidb/domain" "github.com/pingcap/tidb/errno" + "github.com/pingcap/tidb/extension" "github.com/pingcap/tidb/kv" "github.com/pingcap/tidb/metrics" + "github.com/pingcap/tidb/parser/ast" "github.com/pingcap/tidb/parser/mysql" "github.com/pingcap/tidb/parser/terror" + "github.com/pingcap/tidb/planner/core" "github.com/pingcap/tidb/plugin" + "github.com/pingcap/tidb/privilege/privileges" "github.com/pingcap/tidb/session" "github.com/pingcap/tidb/session/txninfo" "github.com/pingcap/tidb/sessionctx/variable" @@ -134,8 +140,11 @@ type Server struct { grpcServer *grpc.Server inShutdownMode bool - sessionMapMutex sync.Mutex - internalSessions map[interface{}]struct{} + sessionMapMutex sync.Mutex + internalSessions map[interface{}]struct{} + autoIDService *autoid.Service + authTokenCancelFunc context.CancelFunc + wg sync.WaitGroup } // ConnectionCount gets current connection count. @@ -241,7 +250,7 @@ func NewServer(cfg *config.Config, driver IDriver) (*Server, error) { } if s.cfg.Host != "" && (s.cfg.Port != 0 || RunInGoTest) { - addr := fmt.Sprintf("%s:%d", s.cfg.Host, s.cfg.Port) + addr := net.JoinHostPort(s.cfg.Host, strconv.Itoa(int(s.cfg.Port))) tcpProto := "tcp" if s.cfg.EnableTCP4Only { tcpProto = "tcp4" @@ -297,6 +306,24 @@ func NewServer(cfg *config.Config, driver IDriver) (*Server, error) { } } + // Automatically reload JWKS for tidb_auth_token. + if len(s.cfg.Security.AuthTokenJWKS) > 0 { + var ( + timeInterval time.Duration + err error + ctx context.Context + ) + if timeInterval, err = time.ParseDuration(s.cfg.Security.AuthTokenRefreshInterval); err != nil { + logutil.BgLogger().Error("Fail to parse security.auth-token-refresh-interval. Use default value", + zap.String("security.auth-token-refresh-interval", s.cfg.Security.AuthTokenRefreshInterval)) + timeInterval = config.DefAuthTokenRefreshInterval + } + ctx, s.authTokenCancelFunc = context.WithCancel(context.Background()) + if err = privileges.GlobalJWKS.LoadJWKS4AuthToken(ctx, &s.wg, s.cfg.Security.AuthTokenJWKS, timeInterval); err != nil { + logutil.BgLogger().Error("Fail to load JWKS from the path", zap.String("jwks", s.cfg.Security.AuthTokenJWKS)) + } + } + // Init rand seed for randomBuf() rand.Seed(time.Now().UTC().UnixNano()) @@ -494,13 +521,46 @@ func (s *Server) Close() { s.grpcServer.Stop() s.grpcServer = nil } + if s.autoIDService != nil { + s.autoIDService.Close() + } + if s.authTokenCancelFunc != nil { + s.authTokenCancelFunc() + } + s.wg.Wait() metrics.ServerEventCounter.WithLabelValues(metrics.EventClose).Inc() } // onConn runs in its own goroutine, handles queries from this connection. func (s *Server) onConn(conn *clientConn) { + // init the connInfo + _, _, err := conn.PeerHost("") + if err != nil { + logutil.BgLogger().With(zap.Uint64("conn", conn.connectionID)). + Error("get peer host failed", zap.Error(err)) + terror.Log(conn.Close()) + return + } + + extensions, err := extension.GetExtensions() + if err != nil { + logutil.BgLogger().With(zap.Uint64("conn", conn.connectionID)). + Error("error in get extensions", zap.Error(err)) + terror.Log(conn.Close()) + return + } + + if sessExtensions := extensions.NewSessionExtensions(); sessExtensions != nil { + conn.extensions = sessExtensions + conn.onExtensionConnEvent(extension.ConnConnected, nil) + defer func() { + conn.onExtensionConnEvent(extension.ConnDisconnected, nil) + }() + } + ctx := logutil.WithConnID(context.Background(), conn.connectionID) if err := conn.handshake(ctx); err != nil { + conn.onExtensionConnEvent(extension.ConnHandshakeRejected, err) if plugin.IsEnable(plugin.Audit) && conn.getCtx() != nil { conn.getCtx().GetSessionVars().ConnectionInfo = conn.connectInfo() err = plugin.ForeachPlugin(plugin.Audit, func(p *plugin.Plugin) error { @@ -548,7 +608,8 @@ func (s *Server) onConn(conn *clientConn) { sessionVars := conn.ctx.GetSessionVars() sessionVars.ConnectionInfo = conn.connectInfo() - err := plugin.ForeachPlugin(plugin.Audit, func(p *plugin.Plugin) error { + conn.onExtensionConnEvent(extension.ConnHandshakeAccepted, nil) + err = plugin.ForeachPlugin(plugin.Audit, func(p *plugin.Plugin) error { authPlugin := plugin.DeclareAuditManifest(p.Manifest) if authPlugin.OnConnectionEvent != nil { return authPlugin.OnConnectionEvent(context.Background(), plugin.Connected, sessionVars.ConnectionInfo) @@ -592,6 +653,7 @@ func (cc *clientConn) connectInfo() *variable.ConnectionInfo { ClientIP: cc.peerHost, ClientPort: cc.peerPort, ServerID: 1, + ServerIP: cc.serverHost, ServerPort: int(cc.server.cfg.Port), User: cc.user, ServerOSLoginUser: osUser, @@ -882,3 +944,28 @@ func (s *Server) CheckOldRunningTxn(job2ver map[int64]int64, job2ids map[int64]s } } } + +// KillNonFlashbackClusterConn implements SessionManager interface. +func (s *Server) KillNonFlashbackClusterConn() { + s.rwlock.RLock() + connIDs := make([]uint64, 0, len(s.clients)) + for _, client := range s.clients { + if client.ctx.Session != nil { + processInfo := client.ctx.Session.ShowProcess() + ddl, ok := processInfo.StmtCtx.GetPlan().(*core.DDL) + if !ok { + connIDs = append(connIDs, client.connectionID) + continue + } + _, ok = ddl.Statement.(*ast.FlashBackToTimestampStmt) + if !ok { + connIDs = append(connIDs, client.connectionID) + continue + } + } + } + s.rwlock.RUnlock() + for _, id := range connIDs { + s.Kill(id, false) + } +} diff --git a/server/server_test.go b/server/server_test.go index 8639f98076232..623a4d3313628 100644 --- a/server/server_test.go +++ b/server/server_test.go @@ -626,8 +626,8 @@ func (cli *testServerClient) runTestLoadDataForListPartition(t *testing.T) { dbt.MustExec(fmt.Sprintf("load data local infile %q into table t", path)) rows = dbt.MustQuery("show warnings") cli.checkRows(t, rows, - "Warning 1062 Duplicate entry '1' for key 'idx'", - "Warning 1062 Duplicate entry '2' for key 'idx'") + "Warning 1062 Duplicate entry '1' for key 't.idx'", + "Warning 1062 Duplicate entry '2' for key 't.idx'") require.NoError(t, rows.Close()) rows = dbt.MustQuery("select * from t order by id") cli.checkRows(t, rows, "1 a", "2 b", "3 c", "4 e", "7 a") @@ -680,8 +680,8 @@ func (cli *testServerClient) runTestLoadDataForListPartition2(t *testing.T) { dbt.MustExec(fmt.Sprintf("load data local infile %q into table t (id,name)", path)) rows = dbt.MustQuery("show warnings") cli.checkRows(t, rows, - "Warning 1062 Duplicate entry '1-2' for key 'idx'", - "Warning 1062 Duplicate entry '2-2' for key 'idx'") + "Warning 1062 Duplicate entry '1-2' for key 't.idx'", + "Warning 1062 Duplicate entry '2-2' for key 't.idx'") require.NoError(t, rows.Close()) rows = dbt.MustQuery("select id,name from t order by id") cli.checkRows(t, rows, "1 a", "2 b", "3 c", "4 e", "7 a") @@ -735,8 +735,8 @@ func (cli *testServerClient) runTestLoadDataForListColumnPartition(t *testing.T) dbt.MustExec(fmt.Sprintf("load data local infile %q into table t", path)) rows = dbt.MustQuery("show warnings") cli.checkRows(t, rows, - "Warning 1062 Duplicate entry '1' for key 'idx'", - "Warning 1062 Duplicate entry '2' for key 'idx'") + "Warning 1062 Duplicate entry '1' for key 't.idx'", + "Warning 1062 Duplicate entry '2' for key 't.idx'") require.NoError(t, rows.Close()) rows = dbt.MustQuery("select * from t order by id") cli.checkRows(t, rows, "1 a", "2 b", "3 c", "4 e", "7 a") @@ -789,7 +789,7 @@ func (cli *testServerClient) runTestLoadDataForListColumnPartition2(t *testing.T require.NoError(t, err) require.NoError(t, rows.Close()) rows = dbt.MustQuery("show warnings") - cli.checkRows(t, rows, "Warning 1062 Duplicate entry 'w-1' for key 'idx'") + cli.checkRows(t, rows, "Warning 1062 Duplicate entry 'w-1' for key 't.idx'") require.NoError(t, rows.Close()) rows = dbt.MustQuery("select * from t order by id") cli.checkRows(t, rows, "w 1 1", "w 2 2", "e 5 5", "n 9 9") @@ -807,7 +807,7 @@ func (cli *testServerClient) runTestLoadDataForListColumnPartition2(t *testing.T rows = dbt.MustQuery("show warnings") cli.checkRows(t, rows, "Warning 1526 Table has no partition for value from column_list", - "Warning 1062 Duplicate entry 'w-1' for key 'idx'") + "Warning 1062 Duplicate entry 'w-1' for key 't.idx'") require.NoError(t, rows.Close()) rows = dbt.MustQuery("select * from t order by id") cli.checkRows(t, rows, "w 1 1", "w 2 2", "w 3 3", "e 5 5", "e 8 8", "n 9 9") diff --git a/server/statistics_handler.go b/server/statistics_handler.go index 8d7818bedac52..09de26810a332 100644 --- a/server/statistics_handler.go +++ b/server/statistics_handler.go @@ -16,6 +16,7 @@ package server import ( "net/http" + "strconv" "time" "github.com/gorilla/mux" @@ -53,11 +54,21 @@ func (sh StatsHandler) ServeHTTP(w http.ResponseWriter, req *http.Request) { is := sh.do.InfoSchema() h := sh.do.StatsHandle() + var err error + dumpPartitionStats := true + dumpParams := req.URL.Query()[pDumpPartitionStats] + if len(dumpParams) > 0 && len(dumpParams[0]) > 0 { + dumpPartitionStats, err = strconv.ParseBool(dumpParams[0]) + if err != nil { + writeError(w, err) + return + } + } tbl, err := is.TableByName(model.NewCIStr(params[pDBName]), model.NewCIStr(params[pTableName])) if err != nil { writeError(w, err) } else { - js, err := h.DumpStatsToJSON(params[pDBName], tbl.Meta(), nil) + js, err := h.DumpStatsToJSON(params[pDBName], tbl.Meta(), nil, dumpPartitionStats) if err != nil { writeError(w, err) } else { @@ -95,6 +106,15 @@ func (sh StatsHistoryHandler) ServeHTTP(w http.ResponseWriter, req *http.Request } defer se.Close() + dumpPartitionStats := true + if len(params[pDumpPartitionStats]) > 0 { + dumpPartitionStats, err = strconv.ParseBool(params[pDumpPartitionStats]) + if err != nil { + writeError(w, err) + return + } + } + se.GetSessionVars().StmtCtx.TimeZone = time.Local t, err := types.ParseTime(se.GetSessionVars().StmtCtx, params[pSnapshot], mysql.TypeTimestamp, 6) if err != nil { @@ -124,7 +144,7 @@ func (sh StatsHistoryHandler) ServeHTTP(w http.ResponseWriter, req *http.Request writeError(w, err) return } - js, err := h.DumpStatsToJSONBySnapshot(params[pDBName], tbl.Meta(), snapshot) + js, err := h.DumpStatsToJSONBySnapshot(params[pDBName], tbl.Meta(), snapshot, dumpPartitionStats) if err != nil { writeError(w, err) } else { diff --git a/server/statistics_handler_test.go b/server/statistics_handler_test.go index 8c239a73d9240..a4d557f45be88 100644 --- a/server/statistics_handler_test.go +++ b/server/statistics_handler_test.go @@ -16,6 +16,7 @@ package server import ( "database/sql" + "encoding/json" "fmt" "io" "os" @@ -119,6 +120,33 @@ func TestDumpStatsAPI(t *testing.T) { _, err = fp1.Write(js) require.NoError(t, err) checkData(t, path1, client) + + testDumpPartitionTableStats(t, client, statsHandler) +} + +func testDumpPartitionTableStats(t *testing.T, client *testServerClient, handler *StatsHandler) { + preparePartitionData(t, client, handler) + check := func(dumpStats bool) { + expectedLen := 1 + if dumpStats { + expectedLen = 2 + } + url := fmt.Sprintf("/stats/dump/test/test2?dumpPartitionStats=%v", dumpStats) + resp0, err := client.fetchStatus(url) + require.NoError(t, err) + defer func() { + resp0.Body.Close() + }() + b, err := io.ReadAll(resp0.Body) + require.NoError(t, err) + jsonTable := &handle.JSONTable{} + err = json.Unmarshal(b, jsonTable) + require.NoError(t, err) + require.NotNil(t, jsonTable.Partitions["global"]) + require.Len(t, jsonTable.Partitions, expectedLen) + } + check(false) + check(true) } func prepareData(t *testing.T, client *testServerClient, statHandle *StatsHandler) { @@ -146,6 +174,23 @@ func prepareData(t *testing.T, client *testServerClient, statHandle *StatsHandle require.NoError(t, h.Update(is)) } +func preparePartitionData(t *testing.T, client *testServerClient, statHandle *StatsHandler) { + db, err := sql.Open("mysql", client.getDSN()) + require.NoError(t, err, "Error connecting") + defer func() { + err := db.Close() + require.NoError(t, err) + }() + h := statHandle.do.StatsHandle() + tk := testkit.NewDBTestKit(t, db) + tk.MustExec("create table test2(a int) PARTITION BY RANGE ( a ) (PARTITION p0 VALUES LESS THAN (6))") + tk.MustExec("insert into test2 (a) values (1)") + tk.MustExec("analyze table test2") + is := statHandle.do.InfoSchema() + require.NoError(t, h.DumpStatsDeltaToKV(handle.DumpAll)) + require.NoError(t, h.Update(is)) +} + func prepare4DumpHistoryStats(t *testing.T, client *testServerClient) { db, err := sql.Open("mysql", client.getDSN()) require.NoError(t, err, "Error connecting") diff --git a/server/tidb_serial_test.go b/server/tidb_serial_test.go index 600ac32bbae07..1648d1f2e4d80 100644 --- a/server/tidb_serial_test.go +++ b/server/tidb_serial_test.go @@ -359,7 +359,7 @@ func TestErrorNoRollback(t *testing.T) { func TestPrepareCount(t *testing.T) { ts := createTidbTestSuite(t) - qctx, err := ts.tidbdrv.OpenCtx(uint64(0), 0, uint8(tmysql.DefaultCollationID), "test", nil) + qctx, err := ts.tidbdrv.OpenCtx(uint64(0), 0, uint8(tmysql.DefaultCollationID), "test", nil, nil) require.NoError(t, err) prepareCnt := atomic.LoadInt64(&variable.PreparedStmtCount) ctx := context.Background() @@ -382,7 +382,7 @@ func TestPrepareCount(t *testing.T) { func TestPrepareExecute(t *testing.T) { ts := createTidbTestSuite(t) - qctx, err := ts.tidbdrv.OpenCtx(uint64(0), 0, uint8(tmysql.DefaultCollationID), "test", nil) + qctx, err := ts.tidbdrv.OpenCtx(uint64(0), 0, uint8(tmysql.DefaultCollationID), "test", nil, nil) require.NoError(t, err) ctx := context.Background() @@ -424,7 +424,7 @@ func TestDefaultCharacterAndCollation(t *testing.T) { // issue #21194 // 255 is the collation id of mysql client 8 default collation_connection - qctx, err := ts.tidbdrv.OpenCtx(uint64(0), 0, uint8(255), "test", nil) + qctx, err := ts.tidbdrv.OpenCtx(uint64(0), 0, uint8(255), "test", nil, nil) require.NoError(t, err) testCase := []struct { variable string diff --git a/server/tidb_test.go b/server/tidb_test.go index c951a677f9c99..fc176613768ba 100644 --- a/server/tidb_test.go +++ b/server/tidb_test.go @@ -43,11 +43,15 @@ import ( "github.com/pingcap/tidb/config" ddlutil "github.com/pingcap/tidb/ddl/util" "github.com/pingcap/tidb/domain" + "github.com/pingcap/tidb/extension" "github.com/pingcap/tidb/kv" "github.com/pingcap/tidb/parser" "github.com/pingcap/tidb/parser/ast" + "github.com/pingcap/tidb/parser/auth" tmysql "github.com/pingcap/tidb/parser/mysql" "github.com/pingcap/tidb/session" + "github.com/pingcap/tidb/sessionctx/variable" + "github.com/pingcap/tidb/sessiontxn" "github.com/pingcap/tidb/store/mockstore" "github.com/pingcap/tidb/store/mockstore/unistore" "github.com/pingcap/tidb/testkit" @@ -921,7 +925,7 @@ func TestCreateTableFlen(t *testing.T) { ts := createTidbTestSuite(t) // issue #4540 - qctx, err := ts.tidbdrv.OpenCtx(uint64(0), 0, uint8(tmysql.DefaultCollationID), "test", nil) + qctx, err := ts.tidbdrv.OpenCtx(uint64(0), 0, uint8(tmysql.DefaultCollationID), "test", nil, nil) require.NoError(t, err) _, err = Execute(context.Background(), qctx, "use test;") require.NoError(t, err) @@ -993,7 +997,7 @@ func Execute(ctx context.Context, qc *TiDBContext, sql string) (ResultSet, error func TestShowTablesFlen(t *testing.T) { ts := createTidbTestSuite(t) - qctx, err := ts.tidbdrv.OpenCtx(uint64(0), 0, uint8(tmysql.DefaultCollationID), "test", nil) + qctx, err := ts.tidbdrv.OpenCtx(uint64(0), 0, uint8(tmysql.DefaultCollationID), "test", nil, nil) require.NoError(t, err) ctx := context.Background() _, err = Execute(ctx, qctx, "use test;") @@ -1023,7 +1027,7 @@ func checkColNames(t *testing.T, columns []*ColumnInfo, names ...string) { func TestFieldList(t *testing.T) { ts := createTidbTestSuite(t) - qctx, err := ts.tidbdrv.OpenCtx(uint64(0), 0, uint8(tmysql.DefaultCollationID), "test", nil) + qctx, err := ts.tidbdrv.OpenCtx(uint64(0), 0, uint8(tmysql.DefaultCollationID), "test", nil, nil) require.NoError(t, err) _, err = Execute(context.Background(), qctx, "use test;") require.NoError(t, err) @@ -1121,7 +1125,7 @@ func TestSumAvg(t *testing.T) { func TestNullFlag(t *testing.T) { ts := createTidbTestSuite(t) - qctx, err := ts.tidbdrv.OpenCtx(uint64(0), 0, uint8(tmysql.DefaultCollationID), "test", nil) + qctx, err := ts.tidbdrv.OpenCtx(uint64(0), 0, uint8(tmysql.DefaultCollationID), "test", nil, nil) require.NoError(t, err) ctx := context.Background() @@ -1195,7 +1199,7 @@ func TestNO_DEFAULT_VALUEFlag(t *testing.T) { ts := createTidbTestSuite(t) // issue #21465 - qctx, err := ts.tidbdrv.OpenCtx(uint64(0), 0, uint8(tmysql.DefaultCollationID), "test", nil) + qctx, err := ts.tidbdrv.OpenCtx(uint64(0), 0, uint8(tmysql.DefaultCollationID), "test", nil, nil) require.NoError(t, err) ctx := context.Background() @@ -1257,7 +1261,7 @@ func TestGracefulShutdown(t *testing.T) { func TestPessimisticInsertSelectForUpdate(t *testing.T) { ts := createTidbTestSuite(t) - qctx, err := ts.tidbdrv.OpenCtx(uint64(0), 0, uint8(tmysql.DefaultCollationID), "test", nil) + qctx, err := ts.tidbdrv.OpenCtx(uint64(0), 0, uint8(tmysql.DefaultCollationID), "test", nil, nil) require.NoError(t, err) defer qctx.Close() ctx := context.Background() @@ -1667,7 +1671,7 @@ func TestTopSQLCPUProfile(t *testing.T) { dbt.MustExec("alter table t drop index if exists idx_b") _, err := db.Exec(addIndexStr) require.NotNil(t, err) - require.Equal(t, "Error 1062: Duplicate entry '1' for key 'idx_b'", err.Error()) + require.Equal(t, "Error 1062: Duplicate entry '1' for key 't.idx_b'", err.Error()) } check = func() { checkFn(addIndexStr, "") @@ -2632,6 +2636,65 @@ func TestRcReadCheckTSConflict(t *testing.T) { tk.MustExec("drop table t") } +func TestRcReadCheckTSConflictExtra(t *testing.T) { + require.NoError(t, failpoint.Enable("github.com/pingcap/tidb/sessiontxn/isolation/CallOnStmtRetry", "return")) + defer func() { + defer require.NoError(t, failpoint.Disable("github.com/pingcap/tidb/sessiontxn/isolation/CallOnStmtRetry")) + }() + store := testkit.CreateMockStore(t) + + ctx := context.Background() + cc := &clientConn{ + alloc: arena.NewAllocator(1024), + chunkAlloc: chunk.NewAllocator(), + pkt: &packetIO{ + bufWriter: bufio.NewWriter(bytes.NewBuffer(nil)), + }, + } + tk := testkit.NewTestKit(t, store) + tk.MustExec("use test") + tk.MustExec("set global tidb_rc_read_check_ts = ON") + + se := tk.Session() + cc.setCtx(&TiDBContext{Session: se, stmts: make(map[int]*TiDBStatement)}) + + tk2 := testkit.NewTestKit(t, store) + tk2.MustExec("use test") + tk.MustExec("use test") + tk.MustExec("drop table if exists t1") + tk.MustExec("create table t1(id1 int, id2 int, id3 int, PRIMARY KEY(id1), UNIQUE KEY udx_id2 (id2))") + tk.MustExec("insert into t1 values (1, 1, 1)") + tk.MustExec("insert into t1 values (10, 10, 10)") + require.Equal(t, "ON", tk.MustQuery("show variables like 'tidb_rc_read_check_ts'").Rows()[0][1]) + + tk.MustExec("set transaction_isolation = 'READ-COMMITTED'") + tk2.MustExec("set transaction_isolation = 'READ-COMMITTED'") + + // Execute in text protocol + se.SetValue(sessiontxn.CallOnStmtRetryCount, 0) + tk.MustExec("begin pessimistic") + tk2.MustExec("update t1 set id3 = id3 + 1 where id1 = 1") + err := cc.handleQuery(ctx, "select * from t1 where id1 = 1") + require.NoError(t, err) + tk.MustExec("commit") + count, ok := se.Value(sessiontxn.CallOnStmtRetryCount).(int) + require.Equal(t, true, ok) + require.Equal(t, 1, count) + + // Execute in prepare binary protocol + se.SetValue(sessiontxn.CallOnStmtRetryCount, 0) + tk.MustExec("begin pessimistic") + tk2.MustExec("update t1 set id3 = id3 + 1 where id1 = 1") + require.NoError(t, cc.handleStmtPrepare(ctx, "select * from t1 where id1 = 1")) + require.NoError(t, cc.handleStmtExecute(ctx, []byte{0x1, 0x0, 0x0, 0x0, 0x0, 0x1, 0x0, 0x0, 0x0})) + tk.MustExec("commit") + count, ok = se.Value(sessiontxn.CallOnStmtRetryCount).(int) + require.Equal(t, true, ok) + require.Equal(t, 1, count) + + tk.MustExec("drop table t1") +} + func TestRcReadCheckTS(t *testing.T) { ts := createTidbTestSuite(t) @@ -2691,3 +2754,163 @@ func TestRcReadCheckTS(t *testing.T) { // As the `defaultLockTTL` is 3s and it's difficult to change it here, the lock // test is implemented in the uft test cases. } + +type connEventLogs struct { + sync.Mutex + types []extension.ConnEventTp + infos []extension.ConnEventInfo +} + +func (l *connEventLogs) add(tp extension.ConnEventTp, info *extension.ConnEventInfo) { + l.Lock() + defer l.Unlock() + l.types = append(l.types, tp) + l.infos = append(l.infos, *info) +} + +func (l *connEventLogs) reset() { + l.Lock() + defer l.Unlock() + l.types = l.types[:0] + l.infos = l.infos[:0] +} + +func (l *connEventLogs) check(fn func()) { + l.Lock() + defer l.Unlock() + fn() +} + +func (l *connEventLogs) waitConnDisconnected() error { + totalSleep := 0 + for { + l.Lock() + if l.types[len(l.types)-1] == extension.ConnDisconnected { + l.Unlock() + return nil + } + l.Unlock() + if totalSleep >= 10000 { + break + } + time.Sleep(time.Millisecond * 100) + totalSleep += 100 + } + return errors.New("timeout") +} + +func TestExtensionConnEvent(t *testing.T) { + defer extension.Reset() + extension.Reset() + + logs := &connEventLogs{} + require.NoError(t, extension.Register("test", extension.WithSessionHandlerFactory(func() *extension.SessionHandler { + return &extension.SessionHandler{ + OnConnectionEvent: logs.add, + } + }))) + require.NoError(t, extension.Setup()) + + ts := createTidbTestSuite(t) + + // test for login success + logs.reset() + db, err := sql.Open("mysql", ts.getDSN()) + require.NoError(t, err) + defer func() { + require.NoError(t, db.Close()) + }() + + conn, err := db.Conn(context.Background()) + require.NoError(t, err) + defer func() { + _ = conn.Close() + }() + + var expectedConn2 variable.ConnectionInfo + logs.check(func() { + require.Equal(t, []extension.ConnEventTp{ + extension.ConnConnected, + extension.ConnHandshakeAccepted, + }, logs.types) + conn1 := logs.infos[0] + require.Equal(t, "127.0.0.1", conn1.ClientIP) + require.Equal(t, "127.0.0.1", conn1.ServerIP) + require.Empty(t, conn1.User) + require.Empty(t, conn1.DB) + require.Equal(t, int(ts.port), conn1.ServerPort) + require.NotEqual(t, conn1.ServerPort, conn1.ClientPort) + require.NotEmpty(t, conn1.ConnectionID) + require.Nil(t, conn1.ActiveRoles) + require.NoError(t, conn1.Error) + + expectedConn2 = *(conn1.ConnectionInfo) + expectedConn2.User = "root" + expectedConn2.DB = "test" + require.Equal(t, []*auth.RoleIdentity{}, logs.infos[1].ActiveRoles) + require.Nil(t, logs.infos[1].Error) + require.Equal(t, expectedConn2, *(logs.infos[1].ConnectionInfo)) + }) + + _, err = conn.ExecContext(context.TODO(), "create role r1@'%'") + require.NoError(t, err) + _, err = conn.ExecContext(context.TODO(), "grant r1 TO root") + require.NoError(t, err) + _, err = conn.ExecContext(context.TODO(), "set role all") + require.NoError(t, err) + + require.NoError(t, conn.Close()) + require.NoError(t, db.Close()) + require.NoError(t, logs.waitConnDisconnected()) + logs.check(func() { + require.Equal(t, 3, len(logs.infos)) + require.Equal(t, 1, len(logs.infos[2].ActiveRoles)) + require.Equal(t, auth.RoleIdentity{ + Username: "r1", + Hostname: "%", + }, *logs.infos[2].ActiveRoles[0]) + require.Nil(t, logs.infos[2].Error) + require.Equal(t, expectedConn2, *(logs.infos[2].ConnectionInfo)) + }) + + // test for login failed + logs.reset() + cfg := mysql.NewConfig() + cfg.User = "noexist" + cfg.Net = "tcp" + cfg.Addr = fmt.Sprintf("127.0.0.1:%d", ts.port) + cfg.DBName = "test" + + db, err = sql.Open("mysql", cfg.FormatDSN()) + require.NoError(t, err) + defer func() { + require.NoError(t, db.Close()) + }() + + _, err = db.Conn(context.Background()) + require.Error(t, err) + logs.check(func() { + require.Equal(t, []extension.ConnEventTp{ + extension.ConnConnected, + extension.ConnHandshakeRejected, + extension.ConnDisconnected, + }, logs.types) + conn1 := logs.infos[0] + require.Equal(t, "127.0.0.1", conn1.ClientIP) + require.Equal(t, "127.0.0.1", conn1.ServerIP) + require.Empty(t, conn1.User) + require.Empty(t, conn1.DB) + require.Equal(t, int(ts.port), conn1.ServerPort) + require.NotEqual(t, conn1.ServerPort, conn1.ClientPort) + require.NotEmpty(t, conn1.ConnectionID) + require.Nil(t, conn1.ActiveRoles) + require.NoError(t, conn1.Error) + + expectedConn2 = *(conn1.ConnectionInfo) + expectedConn2.User = "noexist" + expectedConn2.DB = "test" + require.Equal(t, []*auth.RoleIdentity{}, logs.infos[1].ActiveRoles) + require.EqualError(t, logs.infos[1].Error, "[server:1045]Access denied for user 'noexist'@'127.0.0.1' (using password: NO)") + require.Equal(t, expectedConn2, *(logs.infos[1].ConnectionInfo)) + }) +} diff --git a/session/BUILD.bazel b/session/BUILD.bazel index 73d83cf663cc8..2a79502bf985e 100644 --- a/session/BUILD.bazel +++ b/session/BUILD.bazel @@ -25,6 +25,8 @@ go_library( "//errno", "//executor", "//expression", + "//extension", + "//extension/extensionimpl", "//infoschema", "//kv", "//meta", @@ -91,6 +93,7 @@ go_library( "@com_github_pingcap_failpoint//:failpoint", "@com_github_pingcap_kvproto//pkg/kvrpcpb", "@com_github_pingcap_tipb//go-binlog", + "@com_github_prometheus_client_golang//prometheus", "@com_github_tikv_client_go_v2//error", "@com_github_tikv_client_go_v2//kv", "@com_github_tikv_client_go_v2//oracle", @@ -126,6 +129,7 @@ go_test( deps = [ "//bindinfo", "//config", + "//ddl", "//domain", "//errno", "//executor", diff --git a/session/advisory_locks.go b/session/advisory_locks.go index f51bb061a119c..aff3d80ed7e88 100644 --- a/session/advisory_locks.go +++ b/session/advisory_locks.go @@ -50,7 +50,7 @@ func (a *advisoryLock) DecrReferences() { a.referenceCount-- } -// References returns the current reference count for the advisory lock. +// ReferenceCount returns the current reference count for the advisory lock. func (a *advisoryLock) ReferenceCount() int { return a.referenceCount } diff --git a/session/bench_test.go b/session/bench_test.go index 47cad404d68a5..742f63aa00f01 100644 --- a/session/bench_test.go +++ b/session/bench_test.go @@ -492,6 +492,26 @@ func BenchmarkSort(b *testing.B) { b.StopTimer() } +func BenchmarkSort2(b *testing.B) { + ctx := context.Background() + se, do, st := prepareBenchSession() + defer func() { + se.Close() + do.Close() + st.Close() + }() + prepareSortBenchData(se, "int", "%v", 1000000) + b.ResetTimer() + for i := 0; i < b.N; i++ { + rs, err := se.Execute(ctx, "select * from t order by col") + if err != nil { + b.Fatal(err) + } + readResult(ctx, rs[0], 1000000) + } + b.StopTimer() +} + func BenchmarkJoin(b *testing.B) { ctx := context.Background() se, do, st := prepareBenchSession() diff --git a/session/bootstrap.go b/session/bootstrap.go index 1a9c79170615f..08bf0293db72c 100644 --- a/session/bootstrap.go +++ b/session/bootstrap.go @@ -97,6 +97,8 @@ const ( FILE_priv ENUM('N','Y') NOT NULL DEFAULT 'N', Config_priv ENUM('N','Y') NOT NULL DEFAULT 'N', Create_Tablespace_Priv ENUM('N','Y') NOT NULL DEFAULT 'N', + User_attributes json, + Token_issuer VARCHAR(255), PRIMARY KEY (Host, User));` // CreateGlobalPrivTable is the SQL statement creates Global scope privilege table in system db. CreateGlobalPrivTable = "CREATE TABLE IF NOT EXISTS mysql.global_priv (" + @@ -428,6 +430,30 @@ const ( CreateMDLView = `CREATE OR REPLACE VIEW mysql.tidb_mdl_view as ( select JOB_ID, DB_NAME, TABLE_NAME, QUERY, SESSION_ID, TxnStart, TIDB_DECODE_SQL_DIGESTS(ALL_SQL_DIGESTS, 4096) AS SQL_DIGESTS from information_schema.ddl_jobs, information_schema.CLUSTER_TIDB_TRX, information_schema.CLUSTER_PROCESSLIST where ddl_jobs.STATE = 'running' and find_in_set(ddl_jobs.table_id, CLUSTER_TIDB_TRX.RELATED_TABLE_IDS) and CLUSTER_TIDB_TRX.SESSION_ID=CLUSTER_PROCESSLIST.ID );` + + // CreatePlanReplayerStatusTable is a table about plan replayer status + CreatePlanReplayerStatusTable = `CREATE TABLE IF NOT EXISTS mysql.plan_replayer_status ( + sql_digest VARCHAR(128), + plan_digest VARCHAR(128), + origin_sql TEXT, + token VARCHAR(128), + update_time TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, + fail_reason TEXT, + instance VARCHAR(512) NOT NULL comment 'address of the TiDB instance executing the plan replayer job');` + + // CreatePlanReplayerTaskTable is a table about plan replayer capture task + CreatePlanReplayerTaskTable = `CREATE TABLE IF NOT EXISTS mysql.plan_replayer_task ( + sql_digest VARCHAR(128) NOT NULL, + plan_digest VARCHAR(128) NOT NULL, + update_time TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, + PRIMARY KEY (sql_digest,plan_digest));` + // CreateStatsTableLocked stores the locked tables + CreateStatsTableLocked = `CREATE TABLE IF NOT EXISTS mysql.stats_table_locked( + table_id bigint(64) NOT NULL, + modify_count bigint(64) NOT NULL DEFAULT 0, + count bigint(64) NOT NULL DEFAULT 0, + version bigint(64) UNSIGNED NOT NULL DEFAULT 0, + PRIMARY KEY (table_id));` ) // bootstrap initiates system DB for a store. @@ -632,11 +658,27 @@ const ( // version93 converts oom-use-tmp-storage to a sysvar version93 = 93 version94 = 94 + // version95 add a column `User_attributes` to `mysql.user` + version95 = 95 + // version97 sets tidb_opt_range_max_size to 0 when a cluster upgrades from some version lower than v6.4.0 to v6.4.0+. + // It promises the compatibility of building ranges behavior. + version97 = 97 + // version98 add a column `Token_issuer` to `mysql.user` + version98 = 98 + version99 = 99 + // version100 converts server-memory-quota to a sysvar + version100 = 100 + // version101 add mysql.plan_replayer_status table + version101 = 101 + // version102 add mysql.plan_replayer_task table + version102 = 102 + // version103 adds the tables mysql.stats_table_locked + version103 = 103 ) // currentBootstrapVersion is defined as a variable, so we can modify its value for testing. // please make sure this is the largest version -var currentBootstrapVersion int64 = version94 +var currentBootstrapVersion int64 = version103 // DDL owner key's expired time is ManagerSessionTTL seconds, we should wait the time and give more time to have a chance to finish it. var internalSQLTimeout = owner.ManagerSessionTTL + 15 @@ -736,6 +778,14 @@ var ( upgradeToVer91, upgradeToVer93, upgradeToVer94, + upgradeToVer95, + // We will redo upgradeToVer96 in upgradeToVer100, it is skipped here. + upgradeToVer97, + upgradeToVer98, + upgradeToVer100, + upgradeToVer101, + upgradeToVer102, + upgradeToVer103, } ) @@ -816,9 +866,13 @@ func upgrade(s Session) { } } // Do upgrade works then update bootstrap version. + needEnableMdl := upgradeToVer99Before(s, ver) for _, upgrade := range bootstrapVersion { upgrade(s, ver) } + if needEnableMdl { + upgradeToVer99After(s, ver) + } variable.DDLForce2Queue.Store(false) updateBootstrapVer(s) @@ -1931,6 +1985,101 @@ func upgradeToVer94(s Session, ver int64) { mustExecute(s, CreateMDLView) } +func upgradeToVer95(s Session, ver int64) { + if ver >= version95 { + return + } + doReentrantDDL(s, "ALTER TABLE mysql.user ADD COLUMN IF NOT EXISTS `User_attributes` JSON") +} + +func upgradeToVer97(s Session, ver int64) { + if ver >= version97 { + return + } + // Check if tidb_opt_range_max_size exists in mysql.GLOBAL_VARIABLES. + // If not, insert "tidb_opt_range_max_size | 0" since this is the old behavior before we introduce this variable. + ctx := kv.WithInternalSourceType(context.Background(), kv.InternalTxnBootstrap) + rs, err := s.ExecuteInternal(ctx, "SELECT VARIABLE_VALUE FROM %n.%n WHERE VARIABLE_NAME=%?;", + mysql.SystemDB, mysql.GlobalVariablesTable, variable.TiDBOptRangeMaxSize) + terror.MustNil(err) + req := rs.NewChunk(nil) + err = rs.Next(ctx, req) + terror.MustNil(err) + if req.NumRows() != 0 { + return + } + + mustExecute(s, "INSERT HIGH_PRIORITY IGNORE INTO %n.%n VALUES (%?, %?);", + mysql.SystemDB, mysql.GlobalVariablesTable, variable.TiDBOptRangeMaxSize, 0) +} + +func upgradeToVer98(s Session, ver int64) { + if ver >= version98 { + return + } + doReentrantDDL(s, "ALTER TABLE mysql.user ADD COLUMN IF NOT EXISTS `Token_issuer` varchar(255)") +} + +func upgradeToVer101(s Session, ver int64) { + if ver >= version101 { + return + } + doReentrantDDL(s, CreatePlanReplayerStatusTable) +} + +func upgradeToVer102(s Session, ver int64) { + if ver >= version102 { + return + } + doReentrantDDL(s, CreatePlanReplayerTaskTable) +} + +func upgradeToVer103(s Session, ver int64) { + if ver >= version103 { + return + } + doReentrantDDL(s, CreateStatsTableLocked) +} + +func upgradeToVer99Before(s Session, ver int64) bool { + if ver >= version99 { + return false + } + // Check if tidb_enable_metadata_lock exists in mysql.GLOBAL_VARIABLES. + // If not, insert "tidb_enable_metadata_lock | 0" since concurrent DDL may not be enabled. + ctx := kv.WithInternalSourceType(context.Background(), kv.InternalTxnBootstrap) + rs, err := s.ExecuteInternal(ctx, "SELECT VARIABLE_VALUE FROM %n.%n WHERE VARIABLE_NAME=%?;", + mysql.SystemDB, mysql.GlobalVariablesTable, variable.TiDBEnableMDL) + terror.MustNil(err) + req := rs.NewChunk(nil) + err = rs.Next(ctx, req) + terror.MustNil(err) + if req.NumRows() != 0 { + return false + } + + mustExecute(s, "INSERT HIGH_PRIORITY IGNORE INTO %n.%n VALUES (%?, %?);", + mysql.SystemDB, mysql.GlobalVariablesTable, variable.TiDBEnableMDL, 0) + return true +} + +func upgradeToVer99After(s Session, ver int64) { + if ver >= version99 { + return + } + sql := fmt.Sprintf("UPDATE HIGH_PRIORITY %[1]s.%[2]s SET VARIABLE_VALUE = %[4]d WHERE VARIABLE_NAME = '%[3]s'", + mysql.SystemDB, mysql.GlobalVariablesTable, variable.TiDBEnableMDL, 1) + mustExecute(s, sql) +} + +func upgradeToVer100(s Session, ver int64) { + if ver >= version100 { + return + } + valStr := strconv.Itoa(int(config.GetGlobalConfig().Performance.ServerMemoryQuota)) + importConfigOption(s, "performance.server-memory-quota", variable.TiDBServerMemoryLimit, valStr) +} + func writeOOMAction(s Session) { comment := "oom-action is `log` by default in v3.0.x, `cancel` by default in v4.0.11+" mustExecute(s, `INSERT HIGH_PRIORITY INTO %n.%n VALUES (%?, %?, %?) ON DUPLICATE KEY UPDATE VARIABLE_VALUE= %?`, @@ -2027,6 +2176,12 @@ func doDDLWorks(s Session) { mustExecute(s, CreateAdvisoryLocks) // Create mdl view. mustExecute(s, CreateMDLView) + // Create plan_replayer_status table + mustExecute(s, CreatePlanReplayerStatusTable) + // Create plan_replayer_task table + mustExecute(s, CreatePlanReplayerTaskTable) + // Create stats_meta_table_locked table + mustExecute(s, CreateStatsTableLocked) } // inTestSuite checks if we are bootstrapping in the context of tests. @@ -2048,10 +2203,10 @@ func doDMLWorks(s Session) { logutil.BgLogger().Fatal("failed to read current user. unable to secure bootstrap.", zap.Error(err)) } mustExecute(s, `INSERT HIGH_PRIORITY INTO mysql.user VALUES - ("localhost", "root", %?, "auth_socket", "Y", "Y", "Y", "Y", "Y", "Y", "Y", "Y", "Y", "Y", "Y", "Y", "Y", "Y", "Y", "Y", "Y", "Y", "Y", "Y", "Y", "Y", "Y", "Y", "Y", "Y", "Y", "N", "Y", "Y", "Y", "Y", "Y")`, u.Username) + ("localhost", "root", %?, "auth_socket", "Y", "Y", "Y", "Y", "Y", "Y", "Y", "Y", "Y", "Y", "Y", "Y", "Y", "Y", "Y", "Y", "Y", "Y", "Y", "Y", "Y", "Y", "Y", "Y", "Y", "Y", "Y", "N", "Y", "Y", "Y", "Y", "Y", null, "")`, u.Username) } else { mustExecute(s, `INSERT HIGH_PRIORITY INTO mysql.user VALUES - ("%", "root", "", "mysql_native_password", "Y", "Y", "Y", "Y", "Y", "Y", "Y", "Y", "Y", "Y", "Y", "Y", "Y", "Y", "Y", "Y", "Y", "Y", "Y", "Y", "Y", "Y", "Y", "Y", "Y", "Y", "Y", "N", "Y", "Y", "Y", "Y", "Y")`) + ("%", "root", "", "mysql_native_password", "Y", "Y", "Y", "Y", "Y", "Y", "Y", "Y", "Y", "Y", "Y", "Y", "Y", "Y", "Y", "Y", "Y", "Y", "Y", "Y", "Y", "Y", "Y", "Y", "Y", "Y", "Y", "N", "Y", "Y", "Y", "Y", "Y", null, "")`) } // For GLOBAL scoped system variables, insert the initial value diff --git a/session/bootstrap_test.go b/session/bootstrap_test.go index 68ce4e8d3ac44..53076c82a0d85 100644 --- a/session/bootstrap_test.go +++ b/session/bootstrap_test.go @@ -55,7 +55,7 @@ func TestBootstrap(t *testing.T) { require.NotEqual(t, 0, req.NumRows()) rows := statistics.RowToDatums(req.GetRow(0), r.Fields()) - match(t, rows, `%`, "root", "", "mysql_native_password", "Y", "Y", "Y", "Y", "Y", "Y", "Y", "Y", "Y", "Y", "Y", "Y", "Y", "Y", "Y", "Y", "Y", "Y", "Y", "Y", "Y", "Y", "Y", "Y", "Y", "Y", "Y", "N", "Y", "Y", "Y", "Y", "Y") + match(t, rows, `%`, "root", "", "mysql_native_password", "Y", "Y", "Y", "Y", "Y", "Y", "Y", "Y", "Y", "Y", "Y", "Y", "Y", "Y", "Y", "Y", "Y", "Y", "Y", "Y", "Y", "Y", "Y", "Y", "Y", "Y", "Y", "N", "Y", "Y", "Y", "Y", "Y", nil, "") r.Close() require.NoError(t, se.Auth(&auth.UserIdentity{Username: "root", Hostname: "anyhost"}, []byte(""), []byte(""))) @@ -179,7 +179,7 @@ func TestBootstrapWithError(t *testing.T) { row := req.GetRow(0) rows := statistics.RowToDatums(row, r.Fields()) - match(t, rows, `%`, "root", "", "mysql_native_password", "Y", "Y", "Y", "Y", "Y", "Y", "Y", "Y", "Y", "Y", "Y", "Y", "Y", "Y", "Y", "Y", "Y", "Y", "Y", "Y", "Y", "Y", "Y", "Y", "Y", "Y", "Y", "N", "Y", "Y", "Y", "Y", "Y") + match(t, rows, `%`, "root", "", "mysql_native_password", "Y", "Y", "Y", "Y", "Y", "Y", "Y", "Y", "Y", "Y", "Y", "Y", "Y", "Y", "Y", "Y", "Y", "Y", "Y", "Y", "Y", "Y", "Y", "Y", "Y", "Y", "Y", "N", "Y", "Y", "Y", "Y", "Y", nil, "") require.NoError(t, r.Close()) mustExec(t, se, "USE test") @@ -625,8 +625,8 @@ func TestUpgradeClusteredIndexDefaultValue(t *testing.T) { require.NoError(t, r.Next(context.Background(), req)) require.Equal(t, 1, req.NumRows()) row := req.GetRow(0) - require.Equal(t, "INT_ONLY", row.GetString(0)) - require.Equal(t, "INT_ONLY", row.GetString(1)) + require.Equal(t, "ON", row.GetString(0)) + require.Equal(t, "ON", row.GetString(1)) domV68.Close() } @@ -1055,3 +1055,61 @@ func TestTiDBEnablePagingVariable(t *testing.T) { r.Close() } } + +func TestTiDBOptRangeMaxSizeWhenUpgrading(t *testing.T) { + ctx := context.Background() + store, dom := createStoreAndBootstrap(t) + defer func() { require.NoError(t, store.Close()) }() + + // Upgrade from v6.3.0 to v6.4.0+. + ver94 := 94 + seV630 := createSessionAndSetID(t, store) + txn, err := store.Begin() + require.NoError(t, err) + m := meta.NewMeta(txn) + err = m.FinishBootstrap(int64(ver94)) + require.NoError(t, err) + err = txn.Commit(context.Background()) + require.NoError(t, err) + mustExec(t, seV630, fmt.Sprintf("update mysql.tidb set variable_value=%d where variable_name='tidb_server_version'", ver94)) + mustExec(t, seV630, fmt.Sprintf("delete from mysql.GLOBAL_VARIABLES where variable_name='%s'", variable.TiDBOptRangeMaxSize)) + mustExec(t, seV630, "commit") + unsetStoreBootstrapped(store.UUID()) + ver, err := getBootstrapVersion(seV630) + require.NoError(t, err) + require.Equal(t, int64(ver94), ver) + + // We are now in 6.3.0, check tidb_opt_range_max_size should not exist. + res := mustExec(t, seV630, fmt.Sprintf("select * from mysql.GLOBAL_VARIABLES where variable_name='%s'", variable.TiDBOptRangeMaxSize)) + chk := res.NewChunk(nil) + err = res.Next(ctx, chk) + require.NoError(t, err) + require.Equal(t, 0, chk.NumRows()) + dom.Close() + domCurVer, err := BootstrapSession(store) + require.NoError(t, err) + defer domCurVer.Close() + seCurVer := createSessionAndSetID(t, store) + ver, err = getBootstrapVersion(seCurVer) + require.NoError(t, err) + require.Equal(t, currentBootstrapVersion, ver) + + // We are now in version no lower than v6.4.0, tidb_opt_range_max_size should be 0. + res = mustExec(t, seCurVer, "select @@session.tidb_opt_range_max_size") + chk = res.NewChunk(nil) + err = res.Next(ctx, chk) + require.NoError(t, err) + require.Equal(t, 1, chk.NumRows()) + row := chk.GetRow(0) + require.Equal(t, 1, row.Len()) + require.Equal(t, "0", row.GetString(0)) + + res = mustExec(t, seCurVer, "select @@global.tidb_opt_range_max_size") + chk = res.NewChunk(nil) + err = res.Next(ctx, chk) + require.NoError(t, err) + require.Equal(t, 1, chk.NumRows()) + row = chk.GetRow(0) + require.Equal(t, 1, row.Len()) + require.Equal(t, "0", row.GetString(0)) +} diff --git a/session/clustered_index_test.go b/session/clustered_index_test.go index eb9675dfea4ba..969dc3b5f6017 100644 --- a/session/clustered_index_test.go +++ b/session/clustered_index_test.go @@ -64,6 +64,7 @@ func TestClusteredPrefixColumn(t *testing.T) { store := testkit.CreateMockStore(t) tk := createTestKit(t, store) + tk.MustExec("set tidb_cost_model_version=2") tk.MustExec("drop table if exists t") tk.MustExec("create table t1(cb varchar(12), ci int, v int, primary key(cb(1)), key idx_1(cb))") tk.MustExec("insert into t1 values('PvtYW2', 1, 1)") @@ -285,7 +286,7 @@ func TestClusteredPrefixingPrimaryKey(t *testing.T) { tk.MustGetErrCode("update t set name = 'aaaaa' where name = 'bbb'", errno.ErrDupEntry) tk.MustExec("update ignore t set name = 'aaaaa' where name = 'bbb'") - tk.MustQuery("show warnings").Check(testkit.Rows("Warning 1062 Duplicate entry 'aaaaa' for key 'PRIMARY'")) + tk.MustQuery("show warnings").Check(testkit.Rows("Warning 1062 Duplicate entry 'aaaaa' for key 't.PRIMARY'")) tk.MustExec("admin check table t;") tk.MustExec("drop table if exists t1, t2") diff --git a/session/main_test.go b/session/main_test.go index a54a3378a4d8a..d44927580e55a 100644 --- a/session/main_test.go +++ b/session/main_test.go @@ -56,6 +56,7 @@ func TestMain(m *testing.M) { opts := []goleak.Option{ // TODO: figure the reason and shorten this list goleak.IgnoreTopFunction("github.com/golang/glog.(*loggingT).flushDaemon"), + goleak.IgnoreTopFunction("github.com/lestrrat-go/httprc.runFetchWorker"), goleak.IgnoreTopFunction("github.com/tikv/client-go/v2/internal/retry.newBackoffFn.func1"), goleak.IgnoreTopFunction("go.etcd.io/etcd/client/v3.waitRetryBackoff"), goleak.IgnoreTopFunction("go.etcd.io/etcd/client/pkg/v3/logutil.(*MergeLogger).outputLoop"), diff --git a/session/nontransactional.go b/session/nontransactional.go index ef8adb541203e..779b2b7042094 100644 --- a/session/nontransactional.go +++ b/session/nontransactional.go @@ -24,7 +24,6 @@ import ( "github.com/pingcap/failpoint" "github.com/pingcap/tidb/domain" "github.com/pingcap/tidb/errno" - "github.com/pingcap/tidb/executor" "github.com/pingcap/tidb/metrics" "github.com/pingcap/tidb/parser" "github.com/pingcap/tidb/parser/ast" @@ -43,12 +42,18 @@ import ( "github.com/pingcap/tidb/util/mathutil" "github.com/pingcap/tidb/util/memory" "github.com/pingcap/tidb/util/sqlexec" + "github.com/prometheus/client_golang/prometheus" "go.uber.org/zap" ) // ErrNonTransactionalJobFailure is the error when a non-transactional job fails. The error is returned and following jobs are canceled. var ErrNonTransactionalJobFailure = dbterror.ClassSession.NewStd(errno.ErrNonTransactionalJobFailure) +var ( + nonTransactionalDeleteCount = metrics.NonTransactionalDMLCount.With(prometheus.Labels{metrics.LblType: "delete"}) + nonTransactionalInsertCount = metrics.NonTransactionalDMLCount.With(prometheus.Labels{metrics.LblType: "insert"}) +) + // job: handle keys in [start, end] type job struct { start types.Datum @@ -61,7 +66,7 @@ type job struct { // statementBuildInfo contains information that is needed to build the split statement in a job type statementBuildInfo struct { - stmt *ast.NonTransactionalDeleteStmt + stmt *ast.NonTransactionalDMLStmt shardColumnType types.FieldType shardColumnRefer *ast.ResultField originalCondition ast.ExprNode @@ -74,16 +79,22 @@ func (j job) String(redacted bool) string { return fmt.Sprintf("job id: %d, estimated size: %d, sql: %s", j.jobID, j.jobSize, j.sql) } -// HandleNonTransactionalDelete is the entry point for a non-transactional delete -func HandleNonTransactionalDelete(ctx context.Context, stmt *ast.NonTransactionalDeleteStmt, se Session) (sqlexec.RecordSet, error) { - err := core.Preprocess(se, stmt) +// HandleNonTransactionalDML is the entry point for a non-transactional DML statement +func HandleNonTransactionalDML(ctx context.Context, stmt *ast.NonTransactionalDMLStmt, se Session) (sqlexec.RecordSet, error) { + sessVars := se.GetSessionVars() + originalReadStaleness := se.GetSessionVars().ReadStaleness + // NT-DML is a write operation, and should not be affected by read_staleness that is supposed to affect only SELECT. + sessVars.ReadStaleness = 0 + defer func() { + sessVars.ReadStaleness = originalReadStaleness + }() + err := core.Preprocess(ctx, se, stmt) if err != nil { return nil, err } if err := checkConstraint(stmt, se); err != nil { return nil, err } - metrics.NonTransactionalDeleteCount.Inc() tableName, selectSQL, shardColumnInfo, err := buildSelectSQL(stmt, se) if err != nil { return nil, err @@ -94,14 +105,16 @@ func HandleNonTransactionalDelete(ctx context.Context, stmt *ast.NonTransactiona // TODO: choose an appropriate quota. // Use the mem-quota-query as a workaround. As a result, a NT-DML may consume 2x of the memory quota. - memTracker := setMemTracker(se) - defer memTracker.DetachFromGlobalTracker() + memTracker := memory.NewTracker(memory.LabelForNonTransactionalDML, -1) + memTracker.AttachTo(se.GetSessionVars().MemTracker) + se.GetSessionVars().MemTracker.SetBytesLimit(se.GetSessionVars().MemQuotaQuery) + defer memTracker.Detach() jobs, err := buildShardJobs(ctx, stmt, se, selectSQL, shardColumnInfo, memTracker) if err != nil { return nil, err } - splitStmts, err := splitDeleteWorker(ctx, jobs, stmt, tableName, se, stmt.DeleteStmt.Where) + splitStmts, err := runJobs(ctx, jobs, stmt, tableName, se, stmt.DMLStmt.WhereExpr()) if err != nil { return nil, err } @@ -111,25 +124,7 @@ func HandleNonTransactionalDelete(ctx context.Context, stmt *ast.NonTransactiona return buildExecuteResults(ctx, jobs, se.GetSessionVars().BatchSize.MaxChunkSize, se.GetSessionVars().EnableRedactLog) } -func setMemTracker(se Session) *memory.Tracker { - memTracker := memory.NewTracker(memory.LabelForNonTransactionalDML, se.GetSessionVars().MemQuotaQuery) - switch variable.OOMAction.Load() { - case variable.OOMActionCancel: - action := &memory.PanicOnExceed{ConnID: se.GetSessionVars().ConnectionID} - action.SetLogHook(domain.GetDomain(se).ExpensiveQueryHandle().LogOnQueryExceedMemQuota) - memTracker.SetActionOnExceed(action) - case variable.OOMActionLog: - fallthrough - default: - action := &memory.LogOnExceed{ConnID: se.GetSessionVars().ConnectionID} - action.SetLogHook(domain.GetDomain(se).ExpensiveQueryHandle().LogOnQueryExceedMemQuota) - memTracker.SetActionOnExceed(action) - } - memTracker.AttachToGlobalTracker(executor.GlobalMemoryUsageTracker) - return memTracker -} - -func checkConstraint(stmt *ast.NonTransactionalDeleteStmt, se Session) error { +func checkConstraint(stmt *ast.NonTransactionalDMLStmt, se Session) error { sessVars := se.GetSessionVars() if !(sessVars.IsAutocommit() && !sessVars.InTxn()) { return errors.Errorf("non-transactional DML can only run in auto-commit mode. auto-commit:%v, inTxn:%v", @@ -146,23 +141,84 @@ func checkConstraint(stmt *ast.NonTransactionalDeleteStmt, se Session) error { return errors.New("can't do non-transactional DML when tidb_snapshot is set") } - if stmt.DeleteStmt.TableRefs == nil || stmt.DeleteStmt.TableRefs.TableRefs == nil || stmt.DeleteStmt.TableRefs.TableRefs.Left == nil { + switch s := stmt.DMLStmt.(type) { + case *ast.DeleteStmt: + if err := checkTableRef(s.TableRefs); err != nil { + return err + } + if err := checkReadClauses(s.Limit, s.Order); err != nil { + return err + } + nonTransactionalDeleteCount.Inc() + case *ast.UpdateStmt: + // TODO: check: (1) single target table (2) more... + if s.Limit != nil { + return errors.New("Non-transactional update doesn't support limit") + } + // TODO: metrics + case *ast.InsertStmt: + if s.Select == nil { + return errors.New("Non-transactional insert supports insert select stmt only") + } + selectStmt, ok := s.Select.(*ast.SelectStmt) + if !ok { + return errors.New("Non-transactional insert doesn't support non-select source") + } + if err := checkTableRef(selectStmt.From); err != nil { + return err + } + if err := checkReadClauses(selectStmt.Limit, selectStmt.OrderBy); err != nil { + return err + } + sourceTable, ok := selectStmt.From.TableRefs.Left.(*ast.TableSource) + if !ok { + return errors.New("Non-transactional insert must have a source table") + } + sourceName, ok := sourceTable.Source.(*ast.TableName) + if !ok { + return errors.New("Non-transaction insert must have s source table") + } + targetTable, ok := s.Table.TableRefs.Left.(*ast.TableSource) + if !ok { + return errors.New("Non-transactional insert must have a target table") + } + targetName, ok := targetTable.Source.(*ast.TableName) + if !ok { + return errors.New("Non-transactional insert must have a target table") + } + if sourceName.Name.L == targetName.Name.L { + return errors.New("Non-transactional insert doesn't support self-insert") + } + nonTransactionalInsertCount.Inc() + default: + return errors.New("Unsupported DML type for non-transactional DML") + } + + return nil +} + +func checkTableRef(t *ast.TableRefsClause) error { + if t == nil || t.TableRefs == nil || t.TableRefs.Left == nil { return errors.New("table reference is nil") } - if stmt.DeleteStmt.TableRefs.TableRefs.Right != nil { - return errors.New("Non-transactional delete doesn't support multiple tables") + if t.TableRefs.Right != nil { + return errors.New("Non-transactional statements don't support multiple tables") } - if stmt.DeleteStmt.Limit != nil { - return errors.New("Non-transactional delete doesn't support limit") + return nil +} + +func checkReadClauses(limit *ast.Limit, order *ast.OrderByClause) error { + if limit != nil { + return errors.New("Non-transactional statements don't support limit") } - if stmt.DeleteStmt.Order != nil { - return errors.New("Non-transactional delete doesn't support order by") + if order != nil { + return errors.New("Non-transactional statements don't support order by") } return nil } // single-threaded worker. work on the key range [start, end] -func splitDeleteWorker(ctx context.Context, jobs []job, stmt *ast.NonTransactionalDeleteStmt, +func runJobs(ctx context.Context, jobs []job, stmt *ast.NonTransactionalDMLStmt, tableName *ast.TableName, se Session, originalCondition ast.ExprNode) ([]string, error) { // prepare for the construction of statement var shardColumnRefer *ast.ResultField @@ -179,7 +235,7 @@ func splitDeleteWorker(ctx context.Context, jobs []job, stmt *ast.NonTransaction } } if shardColumnRefer == nil && stmt.ShardColumn.Name.L != model.ExtraHandleName.L { - return nil, errors.New("Non-transactional delete, column not found") + return nil, errors.New("Non-transactional DML, shard column not found") } splitStmts := make([]string, 0, len(jobs)) @@ -193,10 +249,10 @@ func splitDeleteWorker(ctx context.Context, jobs []job, stmt *ast.NonTransaction } } if len(failedJobs) == 0 { - logutil.Logger(ctx).Warn("Non-transactional delete worker exit because context canceled. No errors", + logutil.Logger(ctx).Warn("Non-transactional DML worker exit because context canceled. No errors", zap.Int("finished", i), zap.Int("total", len(jobs))) } else { - logutil.Logger(ctx).Warn("Non-transactional delete worker exit because context canceled. Errors found", + logutil.Logger(ctx).Warn("Non-transactional DML worker exit because context canceled. Errors found", zap.Int("finished", i), zap.Int("total", len(jobs)), zap.Strings("errors found", failedJobs)) } return nil, ctx.Err() @@ -293,56 +349,56 @@ func doOneJob(ctx context.Context, job *job, totalJobCount int, options statemen } if options.originalCondition == nil { - options.stmt.DeleteStmt.Where = whereCondition + options.stmt.DMLStmt.SetWhereExpr(whereCondition) } else { - options.stmt.DeleteStmt.Where = &ast.BinaryOperationExpr{ + options.stmt.DMLStmt.SetWhereExpr(&ast.BinaryOperationExpr{ Op: opcode.LogicAnd, L: whereCondition, R: options.originalCondition, - } + }) } var sb strings.Builder - err := options.stmt.DeleteStmt.Restore(format.NewRestoreCtx(format.DefaultRestoreFlags| + err := options.stmt.DMLStmt.Restore(format.NewRestoreCtx(format.DefaultRestoreFlags| format.RestoreNameBackQuotes| format.RestoreSpacesAroundBinaryOperation| format.RestoreBracketAroundBinaryOperation| format.RestoreStringWithoutCharset, &sb)) if err != nil { - logutil.Logger(ctx).Error("Non-transactional delete, failed to restore the delete statement", zap.Error(err)) - job.err = errors.New("Failed to restore the delete statement, probably because of unsupported type of the shard column") + logutil.Logger(ctx).Error("Non-transactional DML, failed to restore the DML statement", zap.Error(err)) + job.err = errors.New("Failed to restore the DML statement, probably because of unsupported type of the shard column") return "" } - deleteSQL := sb.String() + dmlSQL := sb.String() if dryRun { - return deleteSQL + return dmlSQL } - job.sql = deleteSQL - logutil.Logger(ctx).Info("start a Non-transactional delete", + job.sql = dmlSQL + logutil.Logger(ctx).Info("start a Non-transactional DML", zap.String("job", job.String(se.GetSessionVars().EnableRedactLog)), zap.Int("totalJobCount", totalJobCount)) - var deleteSQLInLog string + var dmlSQLInLog string if se.GetSessionVars().EnableRedactLog { - deleteSQLInLog = parser.Normalize(deleteSQL) + dmlSQLInLog = parser.Normalize(dmlSQL) } else { - deleteSQLInLog = deleteSQL + dmlSQLInLog = dmlSQL } - options.stmt.DeleteStmt.SetText(nil, fmt.Sprintf("/* job %v/%v */ %s", job.jobID, totalJobCount, deleteSQL)) - rs, err := se.ExecuteStmt(ctx, options.stmt.DeleteStmt) + options.stmt.DMLStmt.SetText(nil, fmt.Sprintf("/* job %v/%v */ %s", job.jobID, totalJobCount, dmlSQL)) + rs, err := se.ExecuteStmt(ctx, options.stmt.DMLStmt) // collect errors - failpoint.Inject("batchDeleteError", func(val failpoint.Value) { + failpoint.Inject("batchDMLError", func(val failpoint.Value) { if val.(bool) { - err = errors.New("injected batch delete error") + err = errors.New("injected batch(non-transactional) DML error") } }) if err != nil { - logutil.Logger(ctx).Error("Non-transactional delete SQL failed", zap.String("job", deleteSQLInLog), zap.Error(err), zap.Int("jobID", job.jobID), zap.Int("jobSize", job.jobSize)) + logutil.Logger(ctx).Error("Non-transactional DML SQL failed", zap.String("job", dmlSQLInLog), zap.Error(err), zap.Int("jobID", job.jobID), zap.Int("jobSize", job.jobSize)) job.err = err } else { - logutil.Logger(ctx).Info("Non-transactional delete SQL finished successfully", zap.Int("jobID", job.jobID), - zap.Int("jobSize", job.jobSize), zap.String("deleteSQL", deleteSQLInLog)) + logutil.Logger(ctx).Info("Non-transactional DML SQL finished successfully", zap.Int("jobID", job.jobID), + zap.Int("jobSize", job.jobSize), zap.String("dmlSQL", dmlSQLInLog)) } if rs != nil { _ = rs.Close() @@ -350,7 +406,7 @@ func doOneJob(ctx context.Context, job *job, totalJobCount int, options statemen return "" } -func buildShardJobs(ctx context.Context, stmt *ast.NonTransactionalDeleteStmt, se Session, +func buildShardJobs(ctx context.Context, stmt *ast.NonTransactionalDMLStmt, se Session, selectSQL string, shardColumnInfo *model.ColumnInfo, memTracker *memory.Tracker) ([]job, error) { var shardColumnCollate string if shardColumnInfo != nil { @@ -363,17 +419,14 @@ func buildShardJobs(ctx context.Context, stmt *ast.NonTransactionalDeleteStmt, s originalSelectLimit := se.GetSessionVars().SelectLimit se.GetSessionVars().SelectLimit = math.MaxUint64 // NT-DML is a write operation, and should not be affected by read_staleness that is supposed to affect only SELECT. - originalReadStaleness := se.GetSessionVars().ReadStaleness - se.GetSessionVars().ReadStaleness = 0 rss, err := se.Execute(ctx, selectSQL) se.GetSessionVars().SelectLimit = originalSelectLimit - se.GetSessionVars().ReadStaleness = originalReadStaleness if err != nil { return nil, err } if len(rss) != 1 { - return nil, errors.Errorf("Non-transactional delete, expecting 1 record set, but got %d", len(rss)) + return nil, errors.Errorf("Non-transactional DML, expecting 1 record set, but got %d", len(rss)) } rs := rss[0] defer func() { @@ -382,7 +435,7 @@ func buildShardJobs(ctx context.Context, stmt *ast.NonTransactionalDeleteStmt, s batchSize := int(stmt.Limit) if batchSize <= 0 { - return nil, errors.New("Non-transactional delete, batch size should be positive") + return nil, errors.New("Non-transactional DML, batch size should be positive") } jobCount := 0 jobs := make([]job, 0) @@ -448,15 +501,15 @@ func appendNewJob(jobs []job, id int, start types.Datum, end types.Datum, size i return jobs } -func buildSelectSQL(stmt *ast.NonTransactionalDeleteStmt, se Session) (*ast.TableName, string, *model.ColumnInfo, error) { +func buildSelectSQL(stmt *ast.NonTransactionalDMLStmt, se Session) (*ast.TableName, string, *model.ColumnInfo, error) { // only use the first table - tableSource, ok := stmt.DeleteStmt.TableRefs.TableRefs.Left.(*ast.TableSource) + tableSource, ok := stmt.DMLStmt.TableSource() if !ok { - return nil, "", nil, errors.New("Non-transactional delete, table source not found") + return nil, "", nil, errors.New("Non-transactional DML, table source not found") } tableName, ok := tableSource.Source.(*ast.TableName) if !ok { - return nil, "", nil, errors.New("Non-transactional delete, table name not found") + return nil, "", nil, errors.New("Non-transactional DML, table name not found") } // the shard column must be indexed @@ -465,18 +518,19 @@ func buildSelectSQL(stmt *ast.NonTransactionalDeleteStmt, se Session) (*ast.Tabl return nil, "", nil, err } if !indexed { - return nil, "", nil, errors.Errorf("Non-transactional delete, shard column %s is not indexed", stmt.ShardColumn.Name.L) + return nil, "", nil, errors.Errorf("Non-transactional DML, shard column %s is not indexed", stmt.ShardColumn.Name.L) } var sb strings.Builder - if stmt.DeleteStmt.Where != nil { - err := stmt.DeleteStmt.Where.Restore(format.NewRestoreCtx(format.DefaultRestoreFlags| + if stmt.DMLStmt.WhereExpr() != nil { + err := stmt.DMLStmt.WhereExpr().Restore(format.NewRestoreCtx(format.DefaultRestoreFlags| format.RestoreNameBackQuotes| format.RestoreSpacesAroundBinaryOperation| format.RestoreBracketAroundBinaryOperation| - format.RestoreStringWithoutCharset, &sb)) + format.RestoreStringWithoutCharset, &sb), + ) if err != nil { - return nil, "", nil, errors.Annotate(err, "Failed to restore where clause in non-transactional delete") + return nil, "", nil, errors.Annotate(err, "Failed to restore where clause in non-transactional DML") } } else { sb.WriteString("TRUE") @@ -489,7 +543,7 @@ func buildSelectSQL(stmt *ast.NonTransactionalDeleteStmt, se Session) (*ast.Tabl // it attempts to auto-select a shard column from handle if not specified, and fills back the corresponding info in the stmt, // making it transparent to following steps -func selectShardColumn(stmt *ast.NonTransactionalDeleteStmt, se Session, tableName *ast.TableName, tableAsName model.CIStr) (indexed bool, shardColumnInfo *model.ColumnInfo, err error) { +func selectShardColumn(stmt *ast.NonTransactionalDMLStmt, se Session, tableName *ast.TableName, tableAsName model.CIStr) (indexed bool, shardColumnInfo *model.ColumnInfo, err error) { tbl, err := domain.GetDomain(se).InfoSchema().TableByName(tableName.Schema, tableName.Name) if err != nil { return false, nil, err @@ -509,11 +563,11 @@ func selectShardColumn(stmt *ast.NonTransactionalDeleteStmt, se Session, tableNa break } // if the clustered index contains multiple columns, we cannot automatically choose a column as the shard column - return false, nil, errors.New("Non-transactional delete, the clustered index contains multiple columns. Please specify a shard column") + return false, nil, errors.New("Non-transactional DML, the clustered index contains multiple columns. Please specify a shard column") } } if shardColumnInfo == nil { - return false, nil, errors.New("Non-transactional delete, the clustered index is not found") + return false, nil, errors.New("Non-transactional DML, the clustered index is not found") } } @@ -636,7 +690,7 @@ func buildExecuteResults(ctx context.Context, jobs []job, maxChunkSize int, reda errStr := sb.String() // log errors here in case the output is too long. There can be thousands of errors. - logutil.Logger(ctx).Error("Non-transactional delete failed", + logutil.Logger(ctx).Error("Non-transactional DML failed", zap.Int("num_failed_jobs", len(failedJobs)), zap.String("failed_jobs", errStr)) return nil, fmt.Errorf("%d/%d jobs failed in the non-transactional DML: %s, ...(more in logs)", diff --git a/session/nontransactional_test.go b/session/nontransactional_test.go index f75df6aec3acc..3281cd71bd4da 100644 --- a/session/nontransactional_test.go +++ b/session/nontransactional_test.go @@ -26,7 +26,7 @@ import ( tikvutil "github.com/tikv/client-go/v2/util" ) -func TestNonTransactionalDeleteShardingOnInt(t *testing.T) { +func TestNonTransactionalDMLShardingOnInt(t *testing.T) { store := testkit.CreateMockStore(t) tk := testkit.NewTestKit(t, store) tk.MustExec("set @@tidb_max_chunk_size=35") @@ -42,10 +42,10 @@ func TestNonTransactionalDeleteShardingOnInt(t *testing.T) { "create table t(a int, b int, unique key(a, b))", "create table t(a int, b int, unique key(a))", } - testSharding(tables, tk) + testSharding(tables, tk, "int") } -func TestNonTransactionalDeleteShardingOnVarchar(t *testing.T) { +func TestNonTransactionalDMLShardingOnVarchar(t *testing.T) { store := testkit.CreateMockStore(t) tk := testkit.NewTestKit(t, store) tk.MustExec("set @@tidb_max_chunk_size=35") @@ -61,112 +61,349 @@ func TestNonTransactionalDeleteShardingOnVarchar(t *testing.T) { "create table t(a varchar(30), b int, unique key(a, b))", "create table t(a varchar(30), b int, unique key(a))", } - testSharding(tables, tk) + testSharding(tables, tk, "varchar(30)") } -func testSharding(tables []string, tk *testkit.TestKit) { - tableSizes := []int{0, 1, 30, 35, 40, 100} - batchSizes := []int{25, 35, 50, 80, 120} +func testSharding(tables []string, tk *testkit.TestKit, tp string) { + compositions := []struct{ tableSize, batchSize int }{ + {0, 10}, + {1, 1}, + {1, 2}, + {30, 25}, + {30, 35}, + {35, 25}, + {35, 35}, + {35, 40}, + {40, 25}, + {40, 35}, + {100, 25}, + {100, 40}, + } + tk.MustExec("drop table if exists t2") + tk.MustExec(fmt.Sprintf("create table t2(a %s, b int, primary key(a) clustered)", tp)) for _, table := range tables { - tk.MustExec("drop table if exists t") + tk.MustExec("drop table if exists t, t1") tk.MustExec(table) - for _, tableSize := range tableSizes { - for _, batchSize := range batchSizes { - for i := 0; i < tableSize; i++ { - tk.MustExec(fmt.Sprintf("insert into t values ('%d', %d)", i, i*2)) - } - tk.MustQuery(fmt.Sprintf("batch on a limit %d delete from t", batchSize)).Check(testkit.Rows(fmt.Sprintf("%d all succeeded", (tableSize+batchSize-1)/batchSize))) - tk.MustQuery("select count(*) from t").Check(testkit.Rows("0")) + tk.MustExec(strings.Replace(table, "create table t", "create table t1", 1)) + for _, c := range compositions { + tk.MustExec("truncate t2") + rows := make([]string, 0, c.tableSize) + for i := 0; i < c.tableSize; i++ { + tk.MustExec(fmt.Sprintf("insert into t values ('%d', %d)", i, i*2)) + tk.MustExec(fmt.Sprintf("insert into t2 values ('%d', %d)", i, i)) + rows = append(rows, fmt.Sprintf("%d %d", i, i*2)) } + tk.MustExec("truncate t1") + tk.MustQuery( + fmt.Sprintf("batch on a limit %d insert into t1 select * from t", c.batchSize), + ).Check(testkit.Rows(fmt.Sprintf("%d all succeeded", (c.tableSize+c.batchSize-1)/c.batchSize))) + tk.MustQuery("select a, b from t1 order by b"). + Check(testkit.Rows(rows...)) + tk.MustQuery( + fmt.Sprintf("batch on a limit %d insert into t2 select * from t on duplicate key update t2.b = t.b", c.batchSize), + ).Check(testkit.Rows(fmt.Sprintf("%d all succeeded", (c.tableSize+c.batchSize-1)/c.batchSize))) + tk.MustQuery("select a, b from t2 order by b"). + Check(testkit.Rows(rows...)) + tk.MustQuery( + fmt.Sprintf( + "batch on a limit %d update t set b = b * 2", c.batchSize, + ), + ).Check(testkit.Rows(fmt.Sprintf("%d all succeeded", (c.tableSize+c.batchSize-1)/c.batchSize))) + tk.MustQuery("select coalesce(sum(b), 0) from t").Check( + testkit.Rows( + fmt.Sprintf( + "%d", (c.tableSize-1)*c.tableSize*2, + ), + ), + ) + tk.MustQuery( + fmt.Sprintf( + "batch on a limit %d delete from t", c.batchSize, + ), + ).Check(testkit.Rows(fmt.Sprintf("%d all succeeded", (c.tableSize+c.batchSize-1)/c.batchSize))) + tk.MustQuery("select count(*) from t").Check(testkit.Rows("0")) } } } -func TestNonTransactionalDeleteDryRun(t *testing.T) { +func TestNonTransactionalDMLDryRun(t *testing.T) { store := testkit.CreateMockStore(t) tk := testkit.NewTestKit(t, store) tk.MustExec("set @@tidb_max_chunk_size=35") tk.MustExec("use test") + tk.MustExec("drop table if exists t, t1") tk.MustExec("create table t(a int, b int, primary key(a, b) clustered)") + tk.MustExec("create table t1(a int, b int, primary key(a, b) clustered)") for i := 0; i < 100; i++ { tk.MustExec(fmt.Sprintf("insert into t values ('%d', %d)", i, i*2)) } - rows := tk.MustQuery("batch on a limit 3 dry run delete from t").Rows() + rows := tk.MustQuery("batch on a limit 3 dry run insert into t1 select * from t").Rows() + for _, row := range rows { + col := row[0].(string) + require.True(t, strings.HasPrefix(col, + "INSERT INTO `test`.`t1` SELECT * FROM `test`.`t` WHERE `a` BETWEEN"), col) + } + rows = tk.MustQuery("batch on a limit 3 dry run insert into t1 select * from t on duplicate key update t1.b=t.b").Rows() + for _, row := range rows { + col := row[0].(string) + require.True(t, strings.HasPrefix(col, + "INSERT INTO `test`.`t1` SELECT * FROM `test`.`t` WHERE `a` BETWEEN"), col) + require.True(t, strings.HasSuffix(col, + "ON DUPLICATE KEY UPDATE `t1`.`b`=`t`.`b`"), col) + } + rows = tk.MustQuery("batch on a limit 3 dry run delete from t").Rows() for _, row := range rows { - require.True(t, strings.HasPrefix(row[0].(string), "DELETE FROM `test`.`t` WHERE `a` BETWEEN")) + col := row[0].(string) + require.True(t, strings.HasPrefix(col, "DELETE FROM `test`.`t` WHERE `a` BETWEEN"), col) } - tk.MustQuery("batch on a limit 3 dry run query delete from t").Check(testkit.Rows( - "SELECT `a` FROM `test`.`t` WHERE TRUE ORDER BY IF(ISNULL(`a`),0,1),`a`")) + rows = tk.MustQuery("batch on a limit 3 dry run update t set b = b + 42").Rows() + for _, row := range rows { + col := row[0].(string) + require.True(t, strings.HasPrefix(col, "UPDATE `test`.`t` SET `b`=(`b` + 42) WHERE `a` BETWEEN"), col) + } + querySQL := "SELECT `a` FROM `test`.`t` WHERE TRUE ORDER BY IF(ISNULL(`a`),0,1),`a`" + tk.MustQuery("batch on a limit 3 dry run query insert into t1 select * from t").Check(testkit.Rows(querySQL)) + tk.MustQuery("batch on a limit 3 dry run query insert into t1 select * from t on duplicate key update t1.b=t.b"). + Check(testkit.Rows(querySQL)) + tk.MustQuery("batch on a limit 3 dry run query delete from t").Check(testkit.Rows(querySQL)) + tk.MustQuery("batch on a limit 3 dry run query update t set b = b + 42").Check(testkit.Rows(querySQL)) tk.MustQuery("select count(*) from t").Check(testkit.Rows("100")) + tk.MustQuery("select sum(b) from t").Check(testkit.Rows("9900")) } -func TestNonTransactionalDeleteErrorMessage(t *testing.T) { +func TestNonTransactionalDMLErrorMessage(t *testing.T) { store := testkit.CreateMockStore(t) tk := testkit.NewTestKit(t, store) tk.MustExec("set @@tidb_max_chunk_size=35") tk.MustExec("use test") tk.MustExec("create table t(a int, b int, primary key(a, b) clustered)") + tk.MustExec("create table t1(a int, b int, primary key(a, b) clustered)") for i := 0; i < 100; i++ { tk.MustExec(fmt.Sprintf("insert into t values ('%d', %d)", i, i*2)) } tk.MustExec("set @@tidb_nontransactional_ignore_error=1") - require.NoError(t, failpoint.Enable("github.com/pingcap/tidb/session/batchDeleteError", `return(true)`)) - defer failpoint.Disable("github.com/pingcap/tidb/session/batchDeleteError") - err := tk.ExecToErr("batch on a limit 3 delete from t") - require.EqualError(t, err, "Early return: error occurred in the first job. All jobs are canceled: injected batch delete error") + require.NoError(t, failpoint.Enable("github.com/pingcap/tidb/session/batchDMLError", `return(true)`)) + defer failpoint.Disable("github.com/pingcap/tidb/session/batchDMLError") + err := tk.ExecToErr("batch on a limit 3 insert into t1 select * from t") + require.EqualError( + t, err, + "Early return: error occurred in the first job. All jobs are canceled: injected batch(non-transactional) DML error", + ) + err = tk.ExecToErr("batch on a limit 3 insert into t1 select * from t on duplicate key update t1.b=t.b") + require.EqualError( + t, err, + "Early return: error occurred in the first job. All jobs are canceled: injected batch(non-transactional) DML error", + ) + err = tk.ExecToErr("batch on a limit 3 delete from t") + require.EqualError( + t, err, + "Early return: error occurred in the first job. All jobs are canceled: injected batch(non-transactional) DML error", + ) + err = tk.ExecToErr("batch on a limit 3 update t set b = 42") + require.EqualError( + t, err, + "Early return: error occurred in the first job. All jobs are canceled: injected batch(non-transactional) DML error", + ) tk.MustExec("truncate t") + tk.MustExec("truncate t1") for i := 0; i < 100; i++ { tk.MustExec(fmt.Sprintf("insert into t values ('%d', %d)", i, i*2)) } tk.MustExec("set @@tidb_nontransactional_ignore_error=1") - require.NoError(t, failpoint.Enable("github.com/pingcap/tidb/session/batchDeleteError", `1*return(false)->return(true)`)) + + require.NoError( + t, failpoint.Enable("github.com/pingcap/tidb/session/batchDMLError", `1*return(false)->return(true)`), + ) + err = tk.ExecToErr("batch on a limit 3 insert into t1 select * from t") + require.ErrorContains( + t, err, + "33/34 jobs failed in the non-transactional DML: job id: 2, estimated size: 3, sql: INSERT INTO `test`.`t1` SELECT * FROM `test`.`t` WHERE `a` BETWEEN 3 AND 5, injected batch(non-transactional) DML error;\n", + ) + require.NoError( + t, failpoint.Enable("github.com/pingcap/tidb/session/batchDMLError", `1*return(false)->return(true)`), + ) + err = tk.ExecToErr("batch on a limit 3 insert into t1 select * from t on duplicate key update t1.b=t.b") + require.ErrorContains( + t, err, + "33/34 jobs failed in the non-transactional DML: job id: 2, estimated size: 3, sql: INSERT INTO `test`.`t1` SELECT * FROM `test`.`t` WHERE `a` BETWEEN 3 AND 5 ON DUPLICATE KEY UPDATE `t1`.`b`=`t`.`b`, injected batch(non-transactional) DML error;\n", + ) + + require.NoError( + t, failpoint.Enable("github.com/pingcap/tidb/session/batchDMLError", `1*return(false)->return(true)`), + ) + err = tk.ExecToErr("batch on a limit 3 update t set b = 42") + require.ErrorContains( + t, err, + "33/34 jobs failed in the non-transactional DML: job id: 2, estimated size: 3, sql: UPDATE `test`.`t` SET `b`=42 WHERE `a` BETWEEN 3 AND 5, injected batch(non-transactional) DML error;\n", + ) + + require.NoError( + t, failpoint.Enable("github.com/pingcap/tidb/session/batchDMLError", `1*return(false)->return(true)`), + ) err = tk.ExecToErr("batch on a limit 3 delete from t") - require.ErrorContains(t, err, "33/34 jobs failed in the non-transactional DML: job id: 2, estimated size: 3, sql: DELETE FROM `test`.`t` WHERE `a` BETWEEN 3 AND 5, injected batch delete error;\n") + require.ErrorContains( + t, err, + "33/34 jobs failed in the non-transactional DML: job id: 2, estimated size: 3, sql: DELETE FROM `test`.`t` WHERE `a` BETWEEN 3 AND 5, injected batch(non-transactional) DML error;\n", + ) tk.MustExec("truncate t") + tk.MustExec("truncate t1") for i := 0; i < 100; i++ { tk.MustExec(fmt.Sprintf("insert into t values ('%d', %d)", i, i*2)) } tk.MustExec("set @@tidb_nontransactional_ignore_error=0") - require.NoError(t, failpoint.Enable("github.com/pingcap/tidb/session/batchDeleteError", `1*return(false)->return(true)`)) + + require.NoError( + t, failpoint.Enable("github.com/pingcap/tidb/session/batchDMLError", `1*return(false)->return(true)`), + ) + err = tk.ExecToErr("batch on a limit 3 insert into t1 select * from t") + require.EqualError( + t, err, + "[session:8143]non-transactional job failed, job id: 2, total jobs: 34. job range: [KindInt64 3, KindInt64 5], job sql: job id: 2, estimated size: 3, sql: INSERT INTO `test`.`t1` SELECT * FROM `test`.`t` WHERE `a` BETWEEN 3 AND 5, err: injected batch(non-transactional) DML error", + ) + + require.NoError( + t, failpoint.Enable("github.com/pingcap/tidb/session/batchDMLError", `1*return(false)->return(true)`), + ) + err = tk.ExecToErr("batch on a limit 3 insert into t1 select * from t on duplicate key update t1.b=t.b") + require.EqualError( + t, err, + "[session:8143]non-transactional job failed, job id: 2, total jobs: 34. job range: [KindInt64 3, KindInt64 5], job sql: job id: 2, estimated size: 3, sql: INSERT INTO `test`.`t1` SELECT * FROM `test`.`t` WHERE `a` BETWEEN 3 AND 5 ON DUPLICATE KEY UPDATE `t1`.`b`=`t`.`b`, err: injected batch(non-transactional) DML error", + ) + + require.NoError( + t, failpoint.Enable("github.com/pingcap/tidb/session/batchDMLError", `1*return(false)->return(true)`), + ) + err = tk.ExecToErr("batch on a limit 3 update t set b = b + 42") + require.EqualError( + t, err, + "[session:8143]non-transactional job failed, job id: 2, total jobs: 34. job range: [KindInt64 3, KindInt64 5], job sql: job id: 2, estimated size: 3, sql: UPDATE `test`.`t` SET `b`=(`b` + 42) WHERE `a` BETWEEN 3 AND 5, err: injected batch(non-transactional) DML error", + ) + + require.NoError( + t, failpoint.Enable("github.com/pingcap/tidb/session/batchDMLError", `1*return(false)->return(true)`), + ) err = tk.ExecToErr("batch on a limit 3 delete from t") - require.EqualError(t, err, "[session:8143]non-transactional job failed, job id: 2, total jobs: 34. job range: [KindInt64 3, KindInt64 5], job sql: job id: 2, estimated size: 3, sql: DELETE FROM `test`.`t` WHERE `a` BETWEEN 3 AND 5, err: injected batch delete error") + require.EqualError( + t, err, + "[session:8143]non-transactional job failed, job id: 2, total jobs: 34. job range: [KindInt64 3, KindInt64 5], job sql: job id: 2, estimated size: 3, sql: DELETE FROM `test`.`t` WHERE `a` BETWEEN 3 AND 5, err: injected batch(non-transactional) DML error", + ) } -func TestNonTransactionalDeleteSplitOnTiDBRowID(t *testing.T) { +func TestNonTransactionalDMLShardingOnTiDBRowID(t *testing.T) { store := testkit.CreateMockStore(t) tk := testkit.NewTestKit(t, store) tk.MustExec("set @@tidb_max_chunk_size=35") tk.MustExec("use test") tk.MustExec("create table t(a int, b int)") + tk.MustExec("create table t1(a int, b int, unique key(a))") for i := 0; i < 100; i++ { tk.MustExec(fmt.Sprintf("insert into t values ('%d', %d)", i, i*2)) } // auto select results in full col name - tk.MustQuery("batch limit 3 dry run delete from t").Check(testkit.Rows( - "DELETE FROM `test`.`t` WHERE `test`.`t`.`_tidb_rowid` BETWEEN 1 AND 3", - "DELETE FROM `test`.`t` WHERE `test`.`t`.`_tidb_rowid` BETWEEN 100 AND 100", - )) + tk.MustQuery("batch limit 3 dry run delete from t").Check( + testkit.Rows( + "DELETE FROM `test`.`t` WHERE `test`.`t`.`_tidb_rowid` BETWEEN 1 AND 3", + "DELETE FROM `test`.`t` WHERE `test`.`t`.`_tidb_rowid` BETWEEN 100 AND 100", + ), + ) + tk.MustQuery("batch limit 3 dry run update t set b = 42").Check( + testkit.Rows( + "UPDATE `test`.`t` SET `b`=42 WHERE `test`.`t`.`_tidb_rowid` BETWEEN 1 AND 3", + "UPDATE `test`.`t` SET `b`=42 WHERE `test`.`t`.`_tidb_rowid` BETWEEN 100 AND 100", + ), + ) + tk.MustQuery("batch limit 3 dry run insert into t1 select * from t").Check( + testkit.Rows( + "INSERT INTO `test`.`t1` SELECT * FROM `test`.`t` WHERE `test`.`t`.`_tidb_rowid` BETWEEN 1 AND 3", + "INSERT INTO `test`.`t1` SELECT * FROM `test`.`t` WHERE `test`.`t`.`_tidb_rowid` BETWEEN 100 AND 100", + ), + ) + tk.MustQuery("batch limit 3 dry run insert into t1 select * from t on duplicate key update t1.b=t.b").Check( + testkit.Rows( + "INSERT INTO `test`.`t1` SELECT * FROM `test`.`t` WHERE `test`.`t`.`_tidb_rowid` BETWEEN 1 AND 3"+ + " ON DUPLICATE KEY UPDATE `t1`.`b`=`t`.`b`", + "INSERT INTO `test`.`t1` SELECT * FROM `test`.`t` WHERE `test`.`t`.`_tidb_rowid` BETWEEN 100 AND 100"+ + " ON DUPLICATE KEY UPDATE `t1`.`b`=`t`.`b`", + ), + ) + // otherwise the name is the same as what is given - tk.MustQuery("batch on _tidb_rowid limit 3 dry run delete from t").Check(testkit.Rows( - "DELETE FROM `test`.`t` WHERE `_tidb_rowid` BETWEEN 1 AND 3", - "DELETE FROM `test`.`t` WHERE `_tidb_rowid` BETWEEN 100 AND 100", - )) - tk.MustQuery("batch on t._tidb_rowid limit 3 dry run delete from t").Check(testkit.Rows( - "DELETE FROM `test`.`t` WHERE `t`.`_tidb_rowid` BETWEEN 1 AND 3", - "DELETE FROM `test`.`t` WHERE `t`.`_tidb_rowid` BETWEEN 100 AND 100", - )) + tk.MustQuery("batch on _tidb_rowid limit 3 dry run delete from t").Check( + testkit.Rows( + "DELETE FROM `test`.`t` WHERE `_tidb_rowid` BETWEEN 1 AND 3", + "DELETE FROM `test`.`t` WHERE `_tidb_rowid` BETWEEN 100 AND 100", + ), + ) + tk.MustQuery("batch on t._tidb_rowid limit 3 dry run delete from t").Check( + testkit.Rows( + "DELETE FROM `test`.`t` WHERE `t`.`_tidb_rowid` BETWEEN 1 AND 3", + "DELETE FROM `test`.`t` WHERE `t`.`_tidb_rowid` BETWEEN 100 AND 100", + ), + ) + tk.MustQuery("batch on _tidb_rowid limit 3 dry run update t set b = 42").Check( + testkit.Rows( + "UPDATE `test`.`t` SET `b`=42 WHERE `_tidb_rowid` BETWEEN 1 AND 3", + "UPDATE `test`.`t` SET `b`=42 WHERE `_tidb_rowid` BETWEEN 100 AND 100", + ), + ) + tk.MustQuery("batch on t._tidb_rowid limit 3 dry run update t set b = 42").Check( + testkit.Rows( + "UPDATE `test`.`t` SET `b`=42 WHERE `t`.`_tidb_rowid` BETWEEN 1 AND 3", + "UPDATE `test`.`t` SET `b`=42 WHERE `t`.`_tidb_rowid` BETWEEN 100 AND 100", + ), + ) + tk.MustQuery("batch on _tidb_rowid limit 3 dry run insert into t1 select * from t").Check( + testkit.Rows( + "INSERT INTO `test`.`t1` SELECT * FROM `test`.`t` WHERE `_tidb_rowid` BETWEEN 1 AND 3", + "INSERT INTO `test`.`t1` SELECT * FROM `test`.`t` WHERE `_tidb_rowid` BETWEEN 100 AND 100", + ), + ) + tk.MustQuery("batch on t._tidb_rowid limit 3 dry run insert into t1 select * from t").Check( + testkit.Rows( + "INSERT INTO `test`.`t1` SELECT * FROM `test`.`t` WHERE `t`.`_tidb_rowid` BETWEEN 1 AND 3", + "INSERT INTO `test`.`t1` SELECT * FROM `test`.`t` WHERE `t`.`_tidb_rowid` BETWEEN 100 AND 100", + ), + ) + tk.MustQuery("batch on _tidb_rowid limit 3 dry run insert into t1 select * from t on duplicate key update t1.b=t.b").Check( + testkit.Rows( + "INSERT INTO `test`.`t1` SELECT * FROM `test`.`t` WHERE `_tidb_rowid` BETWEEN 1 AND 3"+ + " ON DUPLICATE KEY UPDATE `t1`.`b`=`t`.`b`", + "INSERT INTO `test`.`t1` SELECT * FROM `test`.`t` WHERE `_tidb_rowid` BETWEEN 100 AND 100"+ + " ON DUPLICATE KEY UPDATE `t1`.`b`=`t`.`b`", + ), + ) + tk.MustQuery("batch on t._tidb_rowid limit 3 dry run insert into t1 select * from t on duplicate key update t1.b=t.b").Check( + testkit.Rows( + "INSERT INTO `test`.`t1` SELECT * FROM `test`.`t` WHERE `t`.`_tidb_rowid` BETWEEN 1 AND 3"+ + " ON DUPLICATE KEY UPDATE `t1`.`b`=`t`.`b`", + "INSERT INTO `test`.`t1` SELECT * FROM `test`.`t` WHERE `t`.`_tidb_rowid` BETWEEN 100 AND 100"+ + " ON DUPLICATE KEY UPDATE `t1`.`b`=`t`.`b`", + ), + ) + + tk.MustExec("batch on _tidb_rowid limit 3 insert into t1 select * from t") + tk.MustQuery("select * from t1 order by a"). + Check(tk.MustQuery("select * from t order by a").Rows()) + tk.MustExec("update t1 set b = 0") + tk.MustExec("batch on _tidb_rowid limit 3 insert into t1 select * from t on duplicate key update t1.b=t.b") + tk.MustQuery("select * from t1 order by a"). + Check(tk.MustQuery("select * from t order by a").Rows()) + tk.MustExec("batch on _tidb_rowid limit 3 update t set b = 42") + tk.MustQuery("select sum(b) from t").Check(testkit.Rows("4200")) tk.MustExec("batch on _tidb_rowid limit 3 delete from t") tk.MustQuery("select count(*) from t").Check(testkit.Rows("0")) } -func TestNonTransactionalDeleteNull(t *testing.T) { +func TestNonTransactionalWithNull(t *testing.T) { store := testkit.CreateMockStore(t) tk := testkit.NewTestKit(t, store) tk.MustExec("set @@tidb_max_chunk_size=35") tk.MustExec("use test") + tk.MustExec("drop table if exists t, t1") tk.MustExec("create table t(a int, b int, key(a))") + tk.MustExec("create table t1(a int, b int, key(a))") for i := 0; i < 100; i++ { tk.MustExec(fmt.Sprintf("insert into t values ('%d', %d)", i, i*2)) tk.MustExec("insert into t values (null, null)") @@ -179,39 +416,70 @@ func TestNonTransactionalDeleteNull(t *testing.T) { for i := 0; i < 100; i++ { tk.MustExec("insert into t values (null, null)") } + tk.MustExec("batch on a limit 3 insert into t1 select * from t") + tk.MustQuery("select * from t1 order by a"). + Check(tk.MustQuery("select * from t order by a").Rows()) + tk.MustExec("batch on a limit 3 insert into t1 select * from t on duplicate key update t1.b=t.b") + tk.MustQuery("select count(*) from t1").Check(testkit.Rows("200")) tk.MustExec("batch on a limit 3 delete from t") tk.MustQuery("select count(*) from t").Check(testkit.Rows("0")) } -func TestNonTransactionalDeleteSmallBatch(t *testing.T) { +func TestNonTransactionalWithSmallBatch(t *testing.T) { store := testkit.CreateMockStore(t) tk := testkit.NewTestKit(t, store) tk.MustExec("set @@tidb_max_chunk_size=1024") tk.MustExec("use test") + tk.MustExec("drop table if exists t, t1") tk.MustExec("create table t(a int, b int, key(a))") + tk.MustExec("create table t1(a int, b int, unique key(a))") for i := 0; i < 10; i++ { tk.MustExec(fmt.Sprintf("insert into t values ('%d', %d)", i, i*2)) tk.MustExec("insert into t values (null, null)") } require.Equal(t, 1, len(tk.MustQuery("batch on a limit 1000 dry run delete from t").Rows())) + require.Equal(t, 1, len(tk.MustQuery("batch on a limit 1000 dry run insert into t1 select * from t").Rows())) + require.Equal(t, 1, len(tk.MustQuery("batch on a limit 1000 dry run insert into t1 select * from t on duplicate key update t1.b=t.b").Rows())) + tk.MustExec("batch on a limit 1000 insert into t1 select * from t") + tk.MustQuery("select * from t1 order by a"). + Check(tk.MustQuery("select * from t order by a").Rows()) + tk.MustExec("update t1 set b = a") + // non-null rows will be updated, and null rows will be duplicated + tk.MustExec("batch on a limit 1000 insert into t1 select * from t on duplicate key update t1.b=t.b") + tk.MustQuery("select * from t1 where a is not null order by a"). + Check(tk.MustQuery("select * from t where a is not null order by a").Rows()) + tk.MustQuery("select count(*) from t1 where a is null").Check(testkit.Rows("20")) tk.MustExec("batch on a limit 1000 delete from t") tk.MustQuery("select count(*) from t").Check(testkit.Rows("0")) } -func TestNonTransactionalDeleteShardOnGeneratedColumn(t *testing.T) { +func TestNonTransactionalWithShardOnGeneratedColumn(t *testing.T) { store := testkit.CreateMockStore(t) tk := testkit.NewTestKit(t, store) tk.MustExec("set @@tidb_max_chunk_size=35") tk.MustExec("use test") + tk.MustExec("drop table if exists t, t1") tk.MustExec("create table t(a int, b int, c double as (sqrt(a * a + b * b)), key(c))") + tk.MustExec("create table t1(a int, b int, c double as (sqrt(a * a + b * b)), unique key(c))") for i := 0; i < 1000; i++ { tk.MustExec(fmt.Sprintf("insert into t values (%d, %d, default)", i, i*2)) } + tk.MustExec("batch on c limit 10 insert into t1(a, b) select a, b from t") + tk.MustQuery("select * from t1 order by a"). + Check(tk.MustQuery("select * from t order by a").Rows()) + // swap a and b + tk.MustExec("update t1 set a=b, b=a") + tk.MustQuery("select b, a from t1 order by a"). + Check(tk.MustQuery("select a, b from t order by a").Rows()) + tk.MustExec("batch on c limit 10 insert into t1(a, b) select a, b from t on duplicate key update t1.a=t.a, t1.b=t.b") + // insert on duplicate key update should swap back a and b + tk.MustQuery("select * from t1 order by a"). + Check(tk.MustQuery("select * from t order by a").Rows()) tk.MustExec("batch on c limit 10 delete from t") tk.MustQuery("select count(*) from t").Check(testkit.Rows("0")) } -func TestNonTransactionalDeleteAutoDetectShardColumn(t *testing.T) { +func TestNonTransactionalWithAutoDetectShardColumn(t *testing.T) { store := testkit.CreateMockStore(t) tk := testkit.NewTestKit(t, store) tk.MustExec("set @@tidb_max_chunk_size=35") @@ -231,12 +499,17 @@ func TestNonTransactionalDeleteAutoDetectShardColumn(t *testing.T) { } testFunc := func(table string, expectSuccess bool) { - tk.MustExec("drop table if exists t") + tk.MustExec("drop table if exists t, t1") tk.MustExec(table) + tk.MustExec(strings.Replace(table, "create table t", "create table t1", 1)) for i := 0; i < 100; i++ { tk.MustExec(fmt.Sprintf("insert into t values ('%d', %d)", i, i*2)) } - _, err := tk.Exec("batch limit 3 delete from t") + _, err := tk.Exec("batch limit 3 insert into t1 select * from t") + require.Equal(t, expectSuccess, err == nil) + _, err = tk.Exec("batch limit 3 insert into t1 select * from t on duplicate key update t1.a=t.a, t1.b=t.b") + require.Equal(t, expectSuccess, err == nil) + _, err = tk.Exec("batch limit 3 delete from t") require.Equal(t, expectSuccess, err == nil) } @@ -248,67 +521,118 @@ func TestNonTransactionalDeleteAutoDetectShardColumn(t *testing.T) { } } -func TestNonTransactionalDeleteInvisibleIndex(t *testing.T) { +func TestNonTransactionalWithInvisibleIndex(t *testing.T) { store := testkit.CreateMockStore(t) tk := testkit.NewTestKit(t, store) tk.MustExec("set @@tidb_max_chunk_size=35") tk.MustExec("use test") + tk.MustExec("drop table if exists t, t1") tk.MustExec("create table t(a int, b int)") + tk.MustExec("create table t1(a int, b int)") for i := 0; i < 100; i++ { tk.MustExec(fmt.Sprintf("insert into t values (%d, %d)", i, i*2)) } - err := tk.ExecToErr("batch on a limit 10 delete from t") + err := tk.ExecToErr("batch on a limit 10 insert into t1 select * from t") + require.Error(t, err) + err = tk.ExecToErr("batch on a limit 10 insert into t1 select * from t on duplicate key update t1.b=t.b") + require.Error(t, err) + err = tk.ExecToErr("batch on a limit 10 delete from t") require.Error(t, err) tk.MustExec("CREATE UNIQUE INDEX c1 ON t (a) INVISIBLE") + tk.MustExec("CREATE UNIQUE INDEX c1 ON t1 (a) INVISIBLE") + err = tk.ExecToErr("batch on a limit 10 insert into t1 select * from t") + require.Error(t, err) + err = tk.ExecToErr("batch on a limit 10 insert into t1 select * from t on duplicate key update t1.b=t.b") + require.Error(t, err) err = tk.ExecToErr("batch on a limit 10 delete from t") require.Error(t, err) tk.MustExec("CREATE UNIQUE INDEX c2 ON t (a)") + tk.MustExec("CREATE UNIQUE INDEX c2 ON t1 (a)") + tk.MustExec("batch on a limit 10 insert into t1 select * from t") + tk.MustQuery("select * from t1 order by a"). + Check(tk.MustQuery("select * from t order by a").Rows()) + tk.MustExec("update t1 set b=a") + tk.MustExec("batch on a limit 10 insert into t1 select * from t on duplicate key update t1.b=t.b") + tk.MustQuery("select * from t1 order by a"). + Check(tk.MustQuery("select * from t order by a").Rows()) tk.MustExec("batch on a limit 10 delete from t") tk.MustQuery("select count(*) from t").Check(testkit.Rows("0")) } -func TestNonTransactionalDeleteIgnoreSelectLimit(t *testing.T) { +func TestNonTransactionalWithIgnoreSelectLimit(t *testing.T) { store := testkit.CreateMockStore(t) + checkTk := testkit.NewTestKit(t, store) + checkTk.MustExec("use test") tk := testkit.NewTestKit(t, store) tk.MustExec("set @@tidb_max_chunk_size=35") tk.MustExec("set @@sql_select_limit=3") tk.MustExec("use test") + tk.MustExec("drop table if exists t, t1") tk.MustExec("create table t(a int, b int, key(a))") + tk.MustExec("create table t1(a int, b int, unique key(a))") for i := 0; i < 100; i++ { tk.MustExec(fmt.Sprintf("insert into t values (%d, %d)", i, i*2)) } + tk.MustExec("batch on a limit 10 insert into t1 select * from t") + checkTk.MustQuery("select * from t1 order by a"). + Check(checkTk.MustQuery("select * from t order by a").Rows()) + tk.MustExec("update t1 set b=a") + tk.MustExec("batch on a limit 10 insert into t1 select * from t on duplicate key update t1.b=t.b") + checkTk.MustQuery("select * from t1 order by a"). + Check(checkTk.MustQuery("select * from t order by a").Rows()) tk.MustExec("batch on a limit 10 delete from t") - tk.MustQuery("select count(*) from t").Check(testkit.Rows("0")) + checkTk.MustQuery("select * from t").Check(testkit.Rows()) } -func TestNonTransactionalDeleteReadStaleness(t *testing.T) { +func TestNonTransactionalWithReadStaleness(t *testing.T) { store := testkit.CreateMockStore(t) tk := testkit.NewTestKit(t, store) + checkTk := testkit.NewTestKit(t, store) tk.MustExec("set @@tidb_max_chunk_size=35") tk.MustExec("set @@tidb_read_staleness=-100") tk.MustExec("use test") + checkTk.MustExec("use test") + tk.MustExec("drop table if exists t, t1") tk.MustExec("create table t(a int, b int, key(a))") + tk.MustExec("create table t1(a int, b int, unique key(a))") + rows := make([]string, 0, 100) for i := 0; i < 100; i++ { tk.MustExec(fmt.Sprintf("insert into t values (%d, %d)", i, i*2)) + rows = append(rows, fmt.Sprintf("%d %d", i, i*2)) } + tk.MustExec("batch on a limit 10 insert into t1 select * from t") + checkTk.MustQuery("select * from t1 order by a").Check(testkit.Rows(rows...)) + checkTk.MustExec("update t1 set b=a") + tk.MustExec("batch on a limit 10 insert into t1 select * from t on duplicate key update t1.b=t.b") tk.MustExec("batch on a limit 10 delete from t") tk.MustExec("set @@tidb_read_staleness=0") - tk.MustQuery("select count(*) from t").Check(testkit.Rows("0")) + tk.MustQuery("select * from t").Check(testkit.Rows()) + tk.MustQuery("select * from t1 order by a").Check(testkit.Rows(rows...)) } -func TestNonTransactionalDeleteCheckConstraint(t *testing.T) { +func TestNonTransactionalWithCheckConstraint(t *testing.T) { store := testkit.CreateMockStore(t) tk := testkit.NewTestKit(t, store) tk.MustExec("use test") + tk.MustExec("drop table if exists t, t1") tk.MustExec("create table t(a int, b int, key(a))") + tk.MustExec("create table t1(a int, b int, key(a))") + + checkFn := func() { + tk.MustQuery("select count(*) from t").Check(testkit.Rows("100")) + tk.MustQuery("select count(*) from t1").Check(testkit.Rows("0")) + } // For mocked tikv, safe point is not initialized, we manually insert it for snapshot to use. safePointName := "tikv_gc_safe_point" now := time.Now() safePointValue := now.Format(tikvutil.GCTimeFormat) safePointComment := "All versions after safe point can be accessed. (DO NOT EDIT)" - updateSafePoint := fmt.Sprintf("INSERT INTO mysql.tidb VALUES ('%[1]s', '%[2]s', '%[3]s') ON DUPLICATE KEY UPDATE variable_value = '%[2]s', comment = '%[3]s'", safePointName, safePointValue, safePointComment) + updateSafePoint := fmt.Sprintf( + "INSERT INTO mysql.tidb VALUES ('%[1]s', '%[2]s', '%[3]s') ON DUPLICATE KEY UPDATE variable_value = '%[2]s', comment = '%[3]s'", + safePointName, safePointValue, safePointComment, + ) tk.MustExec(updateSafePoint) tk.MustExec("set @@tidb_max_chunk_size=35") @@ -318,86 +642,140 @@ func TestNonTransactionalDeleteCheckConstraint(t *testing.T) { tk.MustExec(fmt.Sprintf("insert into t values (%d, %d)", i, i*2)) } tk.MustExec("set @@tidb_snapshot=@a") - err := tk.ExecToErr("batch on a limit 10 delete from t") + err := tk.ExecToErr("batch on a limit 10 insert into t1 select * from t") + require.Error(t, err) + err = tk.ExecToErr("batch on a limit 10 insert into t1 select * from t on duplicate key update t1.b=t.b") + require.Error(t, err) + err = tk.ExecToErr("batch on a limit 10 delete from t") require.Error(t, err) tk.MustExec("set @@tidb_snapshot=''") - tk.MustQuery("select count(*) from t").Check(testkit.Rows("100")) + checkFn() tk.MustExec("set @@tidb_read_consistency=weak") + err = tk.ExecToErr("batch on a limit 10 insert into t1 select * from t") + require.Error(t, err) + err = tk.ExecToErr("batch on a limit 10 insert into t1 select * from t on duplicate key update t1.b=t.b") + require.Error(t, err) err = tk.ExecToErr("batch on a limit 10 delete from t") require.Error(t, err) - tk.MustQuery("select count(*) from t").Check(testkit.Rows("100")) tk.MustExec("set @@tidb_read_consistency=strict") + checkFn() tk.MustExec("set autocommit=0") + err = tk.ExecToErr("batch on a limit 10 insert into t1 select * from t") + require.Error(t, err) + err = tk.ExecToErr("batch on a limit 10 insert into t1 select * from t on duplicate key update t1.b=t.b") + require.Error(t, err) err = tk.ExecToErr("batch on a limit 10 delete from t") require.Error(t, err) - tk.MustQuery("select count(*) from t").Check(testkit.Rows("100")) + tk.MustExec("commit") tk.MustExec("set autocommit=1") + checkFn() tk.MustExec("begin") + err = tk.ExecToErr("batch on a limit 10 insert into t1 select * from t") + require.Error(t, err) + err = tk.ExecToErr("batch on a limit 10 insert into t1 select * from t on duplicate key update t1.b=t.b") + require.Error(t, err) err = tk.ExecToErr("batch on a limit 10 delete from t") require.Error(t, err) - tk.MustQuery("select count(*) from t").Check(testkit.Rows("100")) tk.MustExec("commit") + checkFn() tk.MustExec("SET GLOBAL tidb_enable_batch_dml = 1") tk.MustExec("SET tidb_batch_insert = 1") tk.MustExec("SET tidb_dml_batch_size = 1") + err = tk.ExecToErr("batch on a limit 10 insert into t1 select * from t") + require.Error(t, err) + err = tk.ExecToErr("batch on a limit 10 insert into t1 select * from t on duplicate key update t1.b=t.b") + require.Error(t, err) err = tk.ExecToErr("batch on a limit 10 delete from t") require.Error(t, err) - tk.MustQuery("select count(*) from t").Check(testkit.Rows("100")) tk.MustExec("SET GLOBAL tidb_enable_batch_dml = 0") tk.MustExec("SET tidb_batch_insert = 0") tk.MustExec("SET tidb_dml_batch_size = 0") + checkFn() + err = tk.ExecToErr("batch on a limit 10 insert into t1 select * from t limit 10") + require.EqualError(t, err, "Non-transactional statements don't support limit") + err = tk.ExecToErr("batch on a limit 10 insert into t1 select * from t limit 10 on duplicate key update t1.b=t.b") + require.EqualError(t, err, "Non-transactional statements don't support limit") err = tk.ExecToErr("batch on a limit 10 delete from t limit 10") - require.EqualError(t, err, "Non-transactional delete doesn't support limit") - tk.MustQuery("select count(*) from t").Check(testkit.Rows("100")) + require.EqualError(t, err, "Non-transactional statements don't support limit") + checkFn() + err = tk.ExecToErr("batch on a limit 10 insert into t1 select * from t order by a") + require.EqualError(t, err, "Non-transactional statements don't support order by") + err = tk.ExecToErr("batch on a limit 10 insert into t1 select * from t order by a on duplicate key update t1.b=t.b") + require.EqualError(t, err, "Non-transactional statements don't support order by") err = tk.ExecToErr("batch on a limit 10 delete from t order by a") - require.EqualError(t, err, "Non-transactional delete doesn't support order by") - tk.MustQuery("select count(*) from t").Check(testkit.Rows("100")) + require.EqualError(t, err, "Non-transactional statements don't support order by") + checkFn() + err = tk.ExecToErr("prepare nt FROM 'batch limit 1 insert into t1 select * from t'") + require.EqualError(t, err, "[executor:1295]This command is not supported in the prepared statement protocol yet") + err = tk.ExecToErr("prepare nt FROM 'batch on a limit 10 insert into t1 select * from t on duplicate key update t1.b=t.b'") + require.EqualError(t, err, "[executor:1295]This command is not supported in the prepared statement protocol yet") err = tk.ExecToErr("prepare nt FROM 'batch limit 1 delete from t'") require.EqualError(t, err, "[executor:1295]This command is not supported in the prepared statement protocol yet") + + err = tk.ExecToErr("batch limit 1 insert into t select 1, 1") + require.EqualError(t, err, "table reference is nil") + err = tk.ExecToErr("batch limit 1 insert into t select * from (select 1, 2) tmp") + require.EqualError(t, err, "Non-transaction insert must have s source table") + err = tk.ExecToErr("batch limit 1 insert into t select * from t") + require.EqualError(t, err, "Non-transactional insert doesn't support self-insert") } -func TestNonTransactionalDeleteOptimizerHints(t *testing.T) { +func TestNonTransactionalWithOptimizerHints(t *testing.T) { store := testkit.CreateMockStore(t) tk := testkit.NewTestKit(t, store) tk.MustExec("use test") + tk.MustExec("drop table if exists t, t1") tk.MustExec("create table t(a int, b int, key(a))") + tk.MustExec("create table t1(a int, b int, key(a))") for i := 0; i < 10; i++ { tk.MustExec(fmt.Sprintf("insert into t values ('%d', %d)", i, i*2)) } - result := tk.MustQuery("batch on a limit 10 dry run delete /*+ USE_INDEX(t) */ from t").Rows()[0][0].(string) + result := tk.MustQuery("batch on a limit 10 dry run insert into t1 select /*+ USE_INDEX(t) */ * from t").Rows()[0][0].(string) + require.Equal(t, result, "INSERT INTO `test`.`t1` SELECT /*+ USE_INDEX(`t` )*/ * FROM `test`.`t` WHERE `a` BETWEEN 0 AND 9") + result = tk.MustQuery("batch on a limit 10 dry run insert into t1 select /*+ USE_INDEX(t) */ * from t on duplicate key update t1.b=t.b").Rows()[0][0].(string) + require.Equal(t, result, "INSERT INTO `test`.`t1` SELECT /*+ USE_INDEX(`t` )*/ * FROM `test`.`t` WHERE `a` BETWEEN 0 AND 9 ON DUPLICATE KEY UPDATE `t1`.`b`=`t`.`b`") + result = tk.MustQuery("batch on a limit 10 dry run delete /*+ USE_INDEX(t) */ from t").Rows()[0][0].(string) require.Equal(t, result, "DELETE /*+ USE_INDEX(`t` )*/ FROM `test`.`t` WHERE `a` BETWEEN 0 AND 9") } -func TestNonTransactionalDeleteMultiTables(t *testing.T) { +func TestNonTransactionalWithMultiTables(t *testing.T) { store := testkit.CreateMockStore(t) tk := testkit.NewTestKit(t, store) tk.MustExec("use test") + tk.MustExec("drop table if exists t, t1, t2") tk.MustExec("create table t(a int, b int, key(a))") + tk.MustExec("create table t1(a int, b int, key(a))") + tk.MustExec("create table t2(a int, b int, key(a))") for i := 0; i < 100; i++ { tk.MustExec(fmt.Sprintf("insert into t values (%d, %d)", i, i*2)) } - - tk.MustExec("create table t1(a int, b int, key(a))") tk.MustExec("insert into t1 values (1, 1)") - err := tk.ExecToErr("batch limit 1 delete t, t1 from t, t1 where t.a = t1.a") + + err := tk.ExecToErr("batch limit 1 insert into t2 select t.a, t1.b from t, t1 where t.a = t1.a") + require.Error(t, err) + tk.MustQuery("select count(*) from t2").Check(testkit.Rows("0")) + err = tk.ExecToErr("batch limit 1 insert into t2 select t.a, t1.b from t, t1 where t.a = t1.a on duplicate key update t2.b=t.b") + require.Error(t, err) + tk.MustQuery("select count(*) from t2").Check(testkit.Rows("0")) + err = tk.ExecToErr("batch limit 1 delete t, t1 from t, t1 where t.a = t1.a") require.Error(t, err) tk.MustQuery("select count(*) from t").Check(testkit.Rows("100")) tk.MustQuery("select count(*) from t1").Check(testkit.Rows("1")) } -func TestNonTransactionalDeleteAlias(t *testing.T) { +func TestNonTransactionalWithAlias(t *testing.T) { store := testkit.CreateMockStore(t) tk := testkit.NewTestKit(t, store) - goodBatchStmts := []string{ + goodBatchDeletes := []string{ "batch on test.t1.a limit 5 delete t1.* from test.t as t1", "batch on a limit 5 delete t1.* from test.t as t1", "batch on _tidb_rowid limit 5 delete from test.t as t1", @@ -406,17 +784,35 @@ func TestNonTransactionalDeleteAlias(t *testing.T) { "batch limit 5 delete from test.t as t1", // auto assigns table name to be the alias } - badBatchStmts := []string{ + badBatchDeletes := []string{ "batch on test.t.a limit 5 delete t1.* from test.t as t1", "batch on t.a limit 5 delete t1.* from test.t as t1", "batch on t._tidb_rowid limit 5 delete from test.t as t1", "batch on test.t._tidb_rowid limit 5 delete from test.t as t1", } + goodBatchInserts := []string{ + "batch on test.t1.a limit 5 insert into test.s select t1.* from test.t as t1", + "batch on a limit 5 insert into test.s select t1.* from test.t as t1", + "batch on _tidb_rowid limit 5 insert into test.s select t1.* from test.t as t1", + "batch on t1._tidb_rowid limit 5 insert into test.s select t1.* from test.t as t1", + "batch on test.t1._tidb_rowid limit 5 insert into test.s select t1.* from test.t as t1", + "batch limit 5 insert into test.s select t1.* from test.t as t1", // auto assigns table name to be the alias + } + + badBatchInserts := []string{ + "batch on test.t.a limit 5 insert into test.s select t1.* from test.t as t1", + "batch on t.a limit 5 insert into test.s select t1.* from test.t as t1", + "batch on t._tidb_rowid limit 5 insert into test.s select t1.* from test.t as t1", + "batch on test.t._tidb_rowid limit 5 insert into test.s select t1.* from test.t as t1", + } + + tk.MustExec("drop table if exists test.t, test.s, test.t2") tk.MustExec("create table test.t(a int, b int, key(a))") + tk.MustExec("create table test.s(a int, b int, unique key(a))") tk.MustExec("create table test.t2(a int, b int, key(a))") - for _, sql := range goodBatchStmts { + for _, sql := range goodBatchDeletes { for i := 0; i < 5; i++ { tk.MustExec(fmt.Sprintf("insert into test.t values (%d, %d)", i, i*2)) } @@ -424,29 +820,61 @@ func TestNonTransactionalDeleteAlias(t *testing.T) { tk.MustQuery("select count(*) from test.t").Check(testkit.Rows("0")) } + rows := make([]string, 0, 5) for i := 0; i < 5; i++ { tk.MustExec(fmt.Sprintf("insert into test.t values (%d, %d)", i, i*2)) + rows = append(rows, fmt.Sprintf("%d %d", i, i*2)) } - for _, sql := range badBatchStmts { + + for _, sql := range goodBatchInserts { + tk.MustExec(sql) + tk.MustQuery("select * from test.s order by a").Check(testkit.Rows(rows...)) + tk.MustExec("update test.s set b=a") + tk.MustExec(sql + " on duplicate key update s.b=t1.b") + tk.MustQuery("select * from test.s order by a").Check(testkit.Rows(rows...)) + tk.MustExec("truncate test.s") + } + + for _, sql := range badBatchDeletes { err := tk.ExecToErr(sql) require.Error(t, err) tk.MustQuery("select count(*) from test.t").Check(testkit.Rows("5")) } + + for _, sql := range badBatchInserts { + err := tk.ExecToErr(sql) + require.Error(t, err) + tk.MustQuery("select count(*) from test.s").Check(testkit.Rows("0")) + } } -func TestNonTransactionalDeleteShardOnUnsupportedTypes(t *testing.T) { +func TestNonTransactionalWithShardOnUnsupportedTypes(t *testing.T) { // When some day the test fail because such types are supported, we can update related docs and consider remove the test. store := testkit.CreateMockStore(t) tk := testkit.NewTestKit(t, store) tk.MustExec("use test") + tk.MustExec("drop table if exists t, t1, t2") tk.MustExec("create table t(a set('e0', 'e1', 'e2'), b int, primary key(a) clustered, key(b))") + tk.MustExec("create table t1(a set('e0', 'e1', 'e2'), b int, primary key(a) clustered, key(b))") tk.MustExec("insert into t values ('e2,e0', 3)") - err := tk.ExecToErr("batch limit 1 delete from t where a = 'e0,e2'") + err := tk.ExecToErr("batch limit 1 insert into t1 select * from t where a = 'e0,e2'") + require.Error(t, err) + tk.MustQuery("select count(*) from t1").Check(testkit.Rows("0")) + err = tk.ExecToErr("batch limit 1 insert into t1 select * from t where a = 'e0,e2' on duplicate key update t1.b=t.b") + require.Error(t, err) + tk.MustQuery("select count(*) from t1").Check(testkit.Rows("0")) + err = tk.ExecToErr("batch limit 1 delete from t where a = 'e0,e2'") require.Error(t, err) tk.MustQuery("select count(*) from t").Check(testkit.Rows("1")) tk.MustExec("create table t2(a enum('e0', 'e1', 'e2'), b int, key(a))") tk.MustExec("insert into t2 values ('e0', 1)") + err = tk.ExecToErr("batch on a limit 1 insert into t1 select * from t2") + require.Error(t, err) + tk.MustQuery("select count(*) from t1").Check(testkit.Rows("0")) + err = tk.ExecToErr("batch on a limit 1 insert into t1 select * from t2 on duplicate key update t1.b=t2.b") + require.Error(t, err) + tk.MustQuery("select count(*) from t1").Check(testkit.Rows("0")) err = tk.ExecToErr("batch on a limit 1 delete from t2") require.Error(t, err) tk.MustQuery("select count(*) from t2").Check(testkit.Rows("1")) diff --git a/session/schema_amender.go b/session/schema_amender.go index 955d30cc42ada..caaec7994ae3a 100644 --- a/session/schema_amender.go +++ b/session/schema_amender.go @@ -447,7 +447,7 @@ func (a *amendOperationAddIndexInfo) genIndexKeyValue(ctx context.Context, sctx idxVals = append(idxVals, chk.GetRow(0).GetDatum(oldCol.Offset, &oldCol.FieldType)) } - rsData := tables.TryGetHandleRestoredDataWrapper(a.tblInfoAtCommit, getCommonHandleDatum(a.tblInfoAtCommit, chk.GetRow(0)), nil, a.indexInfoAtCommit.Meta()) + rsData := tables.TryGetHandleRestoredDataWrapper(a.tblInfoAtCommit.Meta(), getCommonHandleDatum(a.tblInfoAtCommit, chk.GetRow(0)), nil, a.indexInfoAtCommit.Meta()) // Generate index key buf. newIdxKey, distinct, err := tablecodec.GenIndexKey(sctx.GetSessionVars().StmtCtx, diff --git a/session/session.go b/session/session.go index cb7a3db14f984..680ddda98ddcd 100644 --- a/session/session.go +++ b/session/session.go @@ -46,9 +46,12 @@ import ( "github.com/pingcap/tidb/ddl" "github.com/pingcap/tidb/ddl/placement" "github.com/pingcap/tidb/domain" + "github.com/pingcap/tidb/domain/infosync" "github.com/pingcap/tidb/errno" "github.com/pingcap/tidb/executor" "github.com/pingcap/tidb/expression" + "github.com/pingcap/tidb/extension" + "github.com/pingcap/tidb/extension/extensionimpl" "github.com/pingcap/tidb/infoschema" "github.com/pingcap/tidb/kv" "github.com/pingcap/tidb/meta" @@ -82,7 +85,6 @@ import ( "github.com/pingcap/tidb/table/temptable" "github.com/pingcap/tidb/tablecodec" "github.com/pingcap/tidb/telemetry" - "github.com/pingcap/tidb/types" "github.com/pingcap/tidb/util" "github.com/pingcap/tidb/util/chunk" "github.com/pingcap/tidb/util/collate" @@ -126,6 +128,7 @@ var ( telemetryCTEUsageNonRecurCTE = metrics.TelemetrySQLCTECnt.WithLabelValues("nonRecurCTE") telemetryCTEUsageNotCTE = metrics.TelemetrySQLCTECnt.WithLabelValues("notCTE") telemetryMultiSchemaChangeUsage = metrics.TelemetryMultiSchemaChangeCnt + telemetryFlashbackClusterUsage = metrics.TelemetryFlashbackClusterCnt telemetryTablePartitionUsage = metrics.TelemetryTablePartitionCnt telemetryTablePartitionListUsage = metrics.TelemetryTablePartitionListCnt @@ -184,7 +187,7 @@ type Session interface { SetCollation(coID int) error SetSessionManager(util.SessionManager) Close() - Auth(user *auth.UserIdentity, auth []byte, salt []byte) error + Auth(user *auth.UserIdentity, auth, salt []byte) error AuthWithoutVerification(user *auth.UserIdentity) bool AuthPluginForUser(user *auth.UserIdentity) (string, error) MatchIdentity(username, remoteHost string) (*auth.UserIdentity, error) @@ -200,6 +203,9 @@ type Session interface { SetDiskFullOpt(level kvrpcpb.DiskFullOpt) GetDiskFullOpt() kvrpcpb.DiskFullOpt ClearDiskFullOpt() + + // SetExtensions sets the `*extension.SessionExtensions` object + SetExtensions(extensions *extension.SessionExtensions) } var _ Session = (*session)(nil) @@ -282,6 +288,8 @@ type session struct { // Contains a list of sessions used to collect advisory locks. advisoryLocks map[string]*advisoryLock + + extensions *extension.SessionExtensions } var parserPool = &sync.Pool{New: func() interface{} { return parser.New() }} @@ -451,7 +459,7 @@ func (s *session) GetPlanCache(isGeneralPlanCache bool) sessionctx.PlanCache { if s.generalPlanCache == nil { // lazy construction s.generalPlanCache = plannercore.NewLRUPlanCache(uint(s.GetSessionVars().GeneralPlanCacheSize), variable.PreparedPlanCacheMemoryGuardRatio.Load(), plannercore.PreparedPlanCacheMaxMemory.Load(), - plannercore.PickPlanFromBucket) + plannercore.PickPlanFromBucket, s) } return s.generalPlanCache } @@ -463,7 +471,7 @@ func (s *session) GetPlanCache(isGeneralPlanCache bool) sessionctx.PlanCache { if s.preparedPlanCache == nil { // lazy construction s.preparedPlanCache = plannercore.NewLRUPlanCache(uint(s.GetSessionVars().PreparedPlanCacheSize), variable.PreparedPlanCacheMemoryGuardRatio.Load(), plannercore.PreparedPlanCacheMaxMemory.Load(), - plannercore.PickPlanFromBucket) + plannercore.PickPlanFromBucket, s) } return s.preparedPlanCache } @@ -477,6 +485,9 @@ func (s *session) GetSessionManager() util.SessionManager { } func (s *session) StoreQueryFeedback(feedback interface{}) { + if variable.FeedbackProbability.Load() <= 0 { + return + } if fb, ok := feedback.(*statistics.QueryFeedback); !ok || fb == nil || !fb.Valid.Load() { return } @@ -1340,6 +1351,10 @@ func createSessionFunc(store kv.Storage) pools.Factory { if err != nil { return nil, errors.Trace(err) } + err = se.sessionVars.SetSystemVar(variable.TiDBConstraintCheckInPlacePessimistic, variable.On) + if err != nil { + return nil, errors.Trace(err) + } se.sessionVars.CommonGlobalLoaded = true se.sessionVars.InRestrictedSQL = true // Internal session uses default format to prevent memory leak problem. @@ -1366,6 +1381,10 @@ func createSessionWithDomainFunc(store kv.Storage) func(*domain.Domain) (pools.R if err != nil { return nil, errors.Trace(err) } + err = se.sessionVars.SetSystemVar(variable.TiDBConstraintCheckInPlacePessimistic, variable.On) + if err != nil { + return nil, errors.Trace(err) + } se.sessionVars.CommonGlobalLoaded = true se.sessionVars.InRestrictedSQL = true // Internal session uses default format to prevent memory leak problem. @@ -1465,7 +1484,7 @@ func (s *session) GetGlobalSysVar(name string) (string, error) { // SetGlobalSysVar implements GlobalVarAccessor.SetGlobalSysVar interface. // it is called (but skipped) when setting instance scope -func (s *session) SetGlobalSysVar(name, value string) (err error) { +func (s *session) SetGlobalSysVar(ctx context.Context, name string, value string) (err error) { sv := variable.GetSysVar(name) if sv == nil { return variable.ErrUnknownSystemVar.GenWithStackByArgs(name) @@ -1473,7 +1492,7 @@ func (s *session) SetGlobalSysVar(name, value string) (err error) { if value, err = sv.Validate(s.sessionVars, value, variable.ScopeGlobal); err != nil { return err } - if err = sv.SetGlobalFromHook(s.sessionVars, value, false); err != nil { + if err = sv.SetGlobalFromHook(ctx, s.sessionVars, value, false); err != nil { return err } if sv.HasInstanceScope() { // skip for INSTANCE scope @@ -1487,18 +1506,18 @@ func (s *session) SetGlobalSysVar(name, value string) (err error) { // SetGlobalSysVarOnly updates the sysvar, but does not call the validation function or update aliases. // This is helpful to prevent duplicate warnings being appended from aliases, or recursion. -func (s *session) SetGlobalSysVarOnly(name, value string) (err error) { +func (s *session) SetGlobalSysVarOnly(ctx context.Context, name string, value string) (err error) { sv := variable.GetSysVar(name) if sv == nil { return variable.ErrUnknownSystemVar.GenWithStackByArgs(name) } - if err = sv.SetGlobalFromHook(s.sessionVars, value, true); err != nil { + if err = sv.SetGlobalFromHook(ctx, s.sessionVars, value, true); err != nil { return err } if sv.HasInstanceScope() { // skip for INSTANCE scope return nil } - return s.replaceGlobalVariablesTableValue(context.TODO(), sv.Name, value) + return s.replaceGlobalVariablesTableValue(ctx, sv.Name, value) } // SetTiDBTableValue implements GlobalVarAccessor.SetTiDBTableValue interface. @@ -1560,15 +1579,16 @@ func (s *session) SetProcessInfo(sql string, t time.Time, command byte, maxExecu Command: command, Plan: p, PlanExplainRows: plannercore.GetExplainRowsForPlan(p), - CurrentAnalyzeRows: s.getCurrentAnalyzePlan, RuntimeStatsColl: s.sessionVars.StmtCtx.RuntimeStatsColl, Time: t, State: s.Status(), Info: sql, CurTxnStartTS: curTxnStartTS, StmtCtx: s.sessionVars.StmtCtx, - OOMAlarmVariablesInfo: s.getOomAlarmVariablesInfo(), + MemTracker: s.sessionVars.MemTracker, + DiskTracker: s.sessionVars.DiskTracker, StatsInfo: plannercore.GetStatsInfo, + OOMAlarmVariablesInfo: s.getOomAlarmVariablesInfo(), MaxExecutionTime: maxExecutionTime, RedactSQL: s.sessionVars.EnableRedactLog, } @@ -1604,20 +1624,10 @@ func (s *session) getOomAlarmVariablesInfo() util.OOMAlarmVariablesInfo { return util.OOMAlarmVariablesInfo{ SessionAnalyzeVersion: s.sessionVars.AnalyzeVersion, SessionEnabledRateLimitAction: s.sessionVars.EnabledRateLimitAction, + SessionMemQuotaQuery: s.sessionVars.MemQuotaQuery, } } -func (s *session) getCurrentAnalyzePlan(p interface{}, runtimeStatsColl *execdetails.RuntimeStatsColl) [][]string { - explain := &plannercore.Explain{ - TargetPlan: p.(plannercore.Plan), - Format: types.ExplainFormatROW, - Analyze: false, - RuntimeStatsColl: runtimeStatsColl, - } - explain.SetSCtx(s) - return plannercore.GetExplainAnalyzeRowsForPlan(explain) -} - func (s *session) SetDiskFullOpt(level kvrpcpb.DiskFullOpt) { s.diskFullOpt = level } @@ -1796,10 +1806,11 @@ func (s *session) GetAdvisoryLock(lockName string, timeout int64) error { lock.IncrReferences() return nil } - sess, err := createSession(s.GetStore()) + sess, err := createSession(s.store) if err != nil { return err } + infosync.StoreInternalSession(sess) lock := &advisoryLock{session: sess, ctx: context.TODO()} err = lock.GetLock(lockName, timeout) if err != nil { @@ -1821,6 +1832,7 @@ func (s *session) ReleaseAdvisoryLock(lockName string) (released bool) { if lock.ReferenceCount() <= 0 { lock.Close() delete(s.advisoryLocks, lockName) + infosync.DeleteInternalSession(lock.session) } return true } @@ -1837,10 +1849,21 @@ func (s *session) ReleaseAllAdvisoryLocks() int { lock.Close() count += lock.ReferenceCount() delete(s.advisoryLocks, lockName) + infosync.DeleteInternalSession(lock.session) } return count } +// GetExtensions returns the `*extension.SessionExtensions` object +func (s *session) GetExtensions() *extension.SessionExtensions { + return s.extensions +} + +// SetExtensions sets the `*extension.SessionExtensions` object +func (s *session) SetExtensions(extensions *extension.SessionExtensions) { + s.extensions = extensions +} + // ParseWithParams4Test wrapper (s *session) ParseWithParams for test func ParseWithParams4Test(ctx context.Context, s Session, sql string, args ...interface{}) (ast.StmtNode, error) { @@ -2079,7 +2102,8 @@ func (s *session) ExecuteStmt(ctx context.Context, stmtNode ast.StmtNode) (sqlex return nil, err } - s.sessionVars.StartTime = time.Now() + sessVars := s.sessionVars + sessVars.StartTime = time.Now() // Some executions are done in compile stage, so we reset them before compile. if err := executor.ResetContextOfStmt(s, stmtNode); err != nil { @@ -2193,7 +2217,7 @@ func (s *session) onTxnManagerStmtStartOrRetry(ctx context.Context, node ast.Stm func (s *session) validateStatementReadOnlyInStaleness(stmtNode ast.StmtNode) error { vars := s.GetSessionVars() - if !vars.TxnCtx.IsStaleness && vars.TxnReadTS.PeakTxnReadTS() == 0 { + if !vars.TxnCtx.IsStaleness && vars.TxnReadTS.PeakTxnReadTS() == 0 && !vars.EnableExternalTSRead { return nil } errMsg := "only support read-only statement during read-only staleness transactions" @@ -2542,6 +2566,9 @@ func (s *session) Close() { s.stmtStats.SetFinished() } s.ClearDiskFullOpt() + if s.preparedPlanCache != nil { + s.preparedPlanCache.Close() + } } // GetSessionVars implements the context.Context interface. @@ -2561,7 +2588,7 @@ func (s *session) AuthPluginForUser(user *auth.UserIdentity) (string, error) { // Auth validates a user using an authentication string and salt. // If the password fails, it will keep trying other users until exhausted. // This means it can not be refactored to use MatchIdentity yet. -func (s *session) Auth(user *auth.UserIdentity, authentication []byte, salt []byte) error { +func (s *session) Auth(user *auth.UserIdentity, authentication, salt []byte) error { hasPassword := "YES" if len(authentication) == 0 { hasPassword = "NO" @@ -2732,6 +2759,20 @@ var ( mdlTable = "create table mysql.tidb_mdl_info(job_id BIGINT NOT NULL PRIMARY KEY, version BIGINT NOT NULL, table_ids text(65535));" ) +func splitAndScatterTable(store kv.Storage, tableIDs []int64) { + if s, ok := store.(kv.SplittableStore); ok && atomic.LoadUint32(&ddl.EnableSplitTableRegion) == 1 { + ctxWithTimeout, cancel := context.WithTimeout(context.Background(), variable.DefWaitSplitRegionTimeout*time.Second) + var regionIDs []uint64 + for _, id := range tableIDs { + regionIDs = append(regionIDs, ddl.SplitRecordRegion(ctxWithTimeout, s, id, variable.DefTiDBScatterRegion)) + } + if variable.DefTiDBScatterRegion { + ddl.WaitScatterRegionFinish(ctxWithTimeout, s, regionIDs...) + } + cancel() + } +} + // InitDDLJobTables is to create tidb_ddl_job, tidb_ddl_reorg and tidb_ddl_history. func InitDDLJobTables(store kv.Storage) error { return kv.RunInNewTxn(kv.WithInternalSourceType(context.Background(), kv.InternalTxnDDL), store, true, func(ctx context.Context, txn kv.Transaction) error { @@ -2744,15 +2785,13 @@ func InitDDLJobTables(store kv.Storage) error { if err != nil { return err } + tableIDs := make([]int64, 0, len(DDLJobTables)) + for _, tbl := range DDLJobTables { + tableIDs = append(tableIDs, tbl.id) + } + splitAndScatterTable(store, tableIDs) p := parser.New() for _, tbl := range DDLJobTables { - id, err := t.GetGlobalID() - if err != nil { - return errors.Trace(err) - } - if id >= meta.MaxGlobalID { - return errors.Errorf("It is unreasonable that the global ID grows such a big value: %d, please contact TiDB team", id) - } stmt, err := p.ParseOneStmt(tbl.SQL, "", "") if err != nil { return errors.Trace(err) @@ -2785,14 +2824,8 @@ func InitMDLTable(store kv.Storage) error { if err != nil { return err } + splitAndScatterTable(store, []int64{ddl.MDLTableID}) p := parser.New() - id, err := t.GetGlobalID() - if err != nil { - return errors.Trace(err) - } - if id >= meta.MaxGlobalID { - return errors.Errorf("It is unreasonable that the global ID grows such a big value: %d, please contact TiDB team", id) - } stmt, err := p.ParseOneStmt(mdlTable, "", "") if err != nil { return errors.Trace(err) @@ -2841,8 +2874,9 @@ func BootstrapSession(store kv.Storage) (*domain.Domain, error) { runInBootstrapSession(store, upgrade) } + analyzeConcurrencyQuota := int(config.GetGlobalConfig().Performance.AnalyzePartitionConcurrencyQuota) concurrency := int(config.GetGlobalConfig().Performance.StatsLoadConcurrency) - ses, err := createSessions(store, 7+concurrency) + ses, err := createSessions(store, 8) if err != nil { return nil, err } @@ -2887,6 +2921,10 @@ func BootstrapSession(store kv.Storage) (*domain.Domain, error) { return nil, err } + if err = extensionimpl.Bootstrap(context.Background(), dom); err != nil { + return nil, err + } + if len(cfg.Instance.PluginLoad) > 0 { err := plugin.Init(context.Background(), plugin.Config{EtcdClient: dom.GetEtcdClient()}) if err != nil { @@ -2912,18 +2950,37 @@ func BootstrapSession(store kv.Storage) (*domain.Domain, error) { }() } + // setup plan replayer handle + dom.SetupPlanReplayerHandle(ses[6]) + dom.StartPlanReplayerHandle() + // setup dumpFileGcChecker + dom.SetupDumpFileGCChecker(ses[7]) + dom.DumpFileGcCheckerLoop() + // A sub context for update table stats, and other contexts for concurrent stats loading. cnt := 1 + concurrency + syncStatsCtxs, err := createSessions(store, cnt) + if err != nil { + return nil, err + } subCtxs := make([]sessionctx.Context, cnt) for i := 0; i < cnt; i++ { - subCtxs[i] = sessionctx.Context(ses[6+i]) + subCtxs[i] = sessionctx.Context(syncStatsCtxs[i]) } if err = dom.LoadAndUpdateStatsLoop(subCtxs); err != nil { return nil, err } - dom.DumpFileGcCheckerLoop() - dom.LoadSigningCertLoop() + analyzeCtxs, err := createSessions(store, analyzeConcurrencyQuota) + if err != nil { + return nil, err + } + subCtxs2 := make([]sessionctx.Context, analyzeConcurrencyQuota) + for i := 0; i < analyzeConcurrencyQuota; i++ { + subCtxs2[i] = analyzeCtxs[i] + } + dom.SetupAnalyzeExec(subCtxs2) + dom.LoadSigningCertLoop(cfg.Security.SessionTokenSigningCert, cfg.Security.SessionTokenSigningKey) if raw, ok := store.(kv.EtcdBackend); ok { err = raw.StartGCWorker() @@ -2976,6 +3033,10 @@ func createSessions(store kv.Storage, cnt int) ([]*session, error) { return ses, nil } +// createSession creates a new session. +// Please note that such a session is not tracked by the internal session list. +// This means the min ts reporter is not aware of it and may report a wrong min start ts. +// In most cases you should use a session pool in domain instead. func createSession(store kv.Storage) (*session, error) { return createSessionWithOpt(store, nil) } @@ -3424,7 +3485,8 @@ func (s *session) GetInfoSchema() sessionctx.InfoschemaMetaVersion { func (s *session) GetDomainInfoSchema() sessionctx.InfoschemaMetaVersion { is := domain.GetDomain(s).InfoSchema() - return temptable.AttachLocalTemporaryTableInfoSchema(s, is) + extIs := &infoschema.SessionExtendedInfoSchema{InfoSchema: is} + return temptable.AttachLocalTemporaryTableInfoSchema(s, extIs) } func getSnapshotInfoSchema(s sessionctx.Context, snapshotTS uint64) (infoschema.InfoSchema, error) { @@ -3458,6 +3520,10 @@ func (s *session) updateTelemetryMetric(es *executor.ExecStmt) { telemetryMultiSchemaChangeUsage.Inc() } + if ti.UseFlashbackToCluster { + telemetryFlashbackClusterUsage.Inc() + } + if ti.UesExchangePartition { telemetryExchangePartitionUsage.Inc() } diff --git a/session/session_test.go b/session/session_test.go index 825cdf79c0139..1c7c8f2ba7611 100644 --- a/session/session_test.go +++ b/session/session_test.go @@ -15,10 +15,14 @@ package session_test import ( + "fmt" "reflect" + "sync/atomic" "testing" + "github.com/pingcap/tidb/ddl" "github.com/pingcap/tidb/session" + "github.com/pingcap/tidb/tablecodec" "github.com/pingcap/tidb/testkit" "github.com/pingcap/tidb/testkit/external" "github.com/stretchr/testify/require" @@ -51,3 +55,22 @@ func TestInitMetaTable(t *testing.T) { require.True(t, reflect.DeepEqual(metaInMySQL, metaInTest)) } } + +func TestMetaTableRegion(t *testing.T) { + enableSplitTableRegionVal := atomic.LoadUint32(&ddl.EnableSplitTableRegion) + atomic.StoreUint32(&ddl.EnableSplitTableRegion, 1) + defer atomic.StoreUint32(&ddl.EnableSplitTableRegion, enableSplitTableRegionVal) + store := testkit.CreateMockStore(t) + + tk := testkit.NewTestKit(t, store) + + ddlReorgTableRegionID := tk.MustQuery("show table mysql.tidb_ddl_reorg regions").Rows()[0][0] + ddlReorgTableRegionStartKey := tk.MustQuery("show table mysql.tidb_ddl_reorg regions").Rows()[0][1] + require.Equal(t, ddlReorgTableRegionStartKey, fmt.Sprintf("%s_%d_", tablecodec.TablePrefix(), ddl.ReorgTableID)) + + ddlJobTableRegionID := tk.MustQuery("show table mysql.tidb_ddl_job regions").Rows()[0][0] + ddlJobTableRegionStartKey := tk.MustQuery("show table mysql.tidb_ddl_job regions").Rows()[0][1] + require.Equal(t, ddlJobTableRegionStartKey, fmt.Sprintf("%s_%d_", tablecodec.TablePrefix(), ddl.JobTableID)) + + require.NotEqual(t, ddlJobTableRegionID, ddlReorgTableRegionID) +} diff --git a/session/session_test/main_test.go b/session/session_test/main_test.go index 855ce6133f79c..849904506a0db 100644 --- a/session/session_test/main_test.go +++ b/session/session_test/main_test.go @@ -40,6 +40,7 @@ func TestMain(m *testing.M) { opts := []goleak.Option{ // TODO: figure the reason and shorten this list goleak.IgnoreTopFunction("github.com/golang/glog.(*loggingT).flushDaemon"), + goleak.IgnoreTopFunction("github.com/lestrrat-go/httprc.runFetchWorker"), goleak.IgnoreTopFunction("github.com/tikv/client-go/v2/internal/retry.newBackoffFn.func1"), goleak.IgnoreTopFunction("go.etcd.io/etcd/client/v3.waitRetryBackoff"), goleak.IgnoreTopFunction("go.etcd.io/etcd/client/pkg/v3/logutil.(*MergeLogger).outputLoop"), diff --git a/session/session_test/session_test.go b/session/session_test/session_test.go index b58e78ede9c23..c0c37cf3296a8 100644 --- a/session/session_test/session_test.go +++ b/session/session_test/session_test.go @@ -946,7 +946,7 @@ func TestLocalTemporaryTableInsertIgnore(t *testing.T) { // test outside transaction tk.MustExec("insert ignore into tmp1 values(1, 100, 1000)") - tk.MustQuery("show warnings").Check(testkit.Rows("Warning 1062 Duplicate entry '1' for key 'PRIMARY'")) + tk.MustQuery("show warnings").Check(testkit.Rows("Warning 1062 Duplicate entry '1' for key 'tmp1.PRIMARY'")) tk.MustQuery("select * from tmp1 where id=1").Check(testkit.Rows("1 11 101")) tk.MustExec("insert ignore into tmp1 values(5, 15, 105)") tk.MustQuery("show warnings").Check(testkit.Rows()) @@ -955,13 +955,13 @@ func TestLocalTemporaryTableInsertIgnore(t *testing.T) { // test in transaction and rollback tk.MustExec("begin") tk.MustExec("insert ignore into tmp1 values(1, 100, 1000)") - tk.MustQuery("show warnings").Check(testkit.Rows("Warning 1062 Duplicate entry '1' for key 'PRIMARY'")) + tk.MustQuery("show warnings").Check(testkit.Rows("Warning 1062 Duplicate entry '1' for key 'tmp1.PRIMARY'")) tk.MustQuery("select * from tmp1 where id=1").Check(testkit.Rows("1 11 101")) tk.MustExec("insert ignore into tmp1 values(3, 13, 103)") tk.MustQuery("show warnings").Check(testkit.Rows()) tk.MustQuery("select * from tmp1 where id=3").Check(testkit.Rows("3 13 103")) tk.MustExec("insert ignore into tmp1 values(3, 100, 1000)") - tk.MustQuery("show warnings").Check(testkit.Rows("Warning 1062 Duplicate entry '3' for key 'PRIMARY'")) + tk.MustQuery("show warnings").Check(testkit.Rows("Warning 1062 Duplicate entry '3' for key 'tmp1.PRIMARY'")) tk.MustQuery("select * from tmp1 where id=3").Check(testkit.Rows("3 13 103")) tk.MustExec("rollback") tk.MustQuery("select * from tmp1").Check(testkit.Rows("1 11 101", "2 12 102", "5 15 105")) @@ -969,11 +969,11 @@ func TestLocalTemporaryTableInsertIgnore(t *testing.T) { // test commit tk.MustExec("begin") tk.MustExec("insert ignore into tmp1 values(1, 100, 1000)") - tk.MustQuery("show warnings").Check(testkit.Rows("Warning 1062 Duplicate entry '1' for key 'PRIMARY'")) + tk.MustQuery("show warnings").Check(testkit.Rows("Warning 1062 Duplicate entry '1' for key 'tmp1.PRIMARY'")) tk.MustExec("insert ignore into tmp1 values(3, 13, 103)") tk.MustQuery("show warnings").Check(testkit.Rows()) tk.MustExec("insert ignore into tmp1 values(3, 100, 1000)") - tk.MustQuery("show warnings").Check(testkit.Rows("Warning 1062 Duplicate entry '3' for key 'PRIMARY'")) + tk.MustQuery("show warnings").Check(testkit.Rows("Warning 1062 Duplicate entry '3' for key 'tmp1.PRIMARY'")) tk.MustExec("commit") tk.MustQuery("select * from tmp1").Check(testkit.Rows("1 11 101", "2 12 102", "3 13 103", "5 15 105")) } @@ -989,7 +989,7 @@ func TestLocalTemporaryTableInsertOnDuplicateKeyUpdate(t *testing.T) { // test outside transaction tk.MustExec("insert ignore into tmp1 values(1, 100, 1000) on duplicate key update u=12") - tk.MustQuery("show warnings").Check(testkit.Rows("Warning 1062 Duplicate entry '12' for key 'u'")) + tk.MustQuery("show warnings").Check(testkit.Rows("Warning 1062 Duplicate entry '12' for key 'tmp1.u'")) tk.MustQuery("select * from tmp1 where id=1").Check(testkit.Rows("1 11 101")) tk.MustExec("insert into tmp1 values(2, 100, 1000) on duplicate key update v=202") tk.MustQuery("show warnings").Check(testkit.Rows()) @@ -1001,7 +1001,7 @@ func TestLocalTemporaryTableInsertOnDuplicateKeyUpdate(t *testing.T) { // test in transaction and rollback tk.MustExec("begin") tk.MustExec("insert ignore into tmp1 values(1, 100, 1000) on duplicate key update u=12") - tk.MustQuery("show warnings").Check(testkit.Rows("Warning 1062 Duplicate entry '12' for key 'u'")) + tk.MustQuery("show warnings").Check(testkit.Rows("Warning 1062 Duplicate entry '12' for key 'tmp1.u'")) tk.MustQuery("select * from tmp1 where id=1").Check(testkit.Rows("1 11 101")) tk.MustExec("insert into tmp1 values(2, 100, 1000) on duplicate key update v=302") tk.MustQuery("show warnings").Check(testkit.Rows()) @@ -1015,7 +1015,7 @@ func TestLocalTemporaryTableInsertOnDuplicateKeyUpdate(t *testing.T) { // test commit tk.MustExec("begin") tk.MustExec("insert ignore into tmp1 values(1, 100, 1000) on duplicate key update u=12") - tk.MustQuery("show warnings").Check(testkit.Rows("Warning 1062 Duplicate entry '12' for key 'u'")) + tk.MustQuery("show warnings").Check(testkit.Rows("Warning 1062 Duplicate entry '12' for key 'tmp1.u'")) tk.MustExec("insert into tmp1 values(2, 100, 1000) on duplicate key update v=302") tk.MustExec("insert into tmp1 values(4, 14, 104) on duplicate key update v=204") tk.MustExec("commit") @@ -2112,9 +2112,10 @@ func TestSetEnableRateLimitAction(t *testing.T) { result.Check(testkit.Rows("1")) tk.MustExec("use test") tk.MustExec("create table tmp123(id int)") - tk.MustQuery("select * from tmp123;") + rs, err := tk.Exec("select * from tmp123;") + require.NoError(t, err) haveRateLimitAction := false - action := tk.Session().GetSessionVars().StmtCtx.MemTracker.GetFallbackForTest(false) + action := tk.Session().GetSessionVars().MemTracker.GetFallbackForTest(false) for ; action != nil; action = action.GetFallback() { if action.GetPriority() == memory.DefRateLimitPriority { haveRateLimitAction = true @@ -2122,6 +2123,8 @@ func TestSetEnableRateLimitAction(t *testing.T) { } } require.True(t, haveRateLimitAction) + err = rs.Close() + require.NoError(t, err) // assert set sys variable tk.MustExec("set global tidb_enable_rate_limit_action= '0';") @@ -2132,7 +2135,7 @@ func TestSetEnableRateLimitAction(t *testing.T) { result.Check(testkit.Rows("0")) haveRateLimitAction = false - action = tk.Session().GetSessionVars().StmtCtx.MemTracker.GetFallbackForTest(false) + action = tk.Session().GetSessionVars().MemTracker.GetFallbackForTest(false) for ; action != nil; action = action.GetFallback() { if action.GetPriority() == memory.DefRateLimitPriority { haveRateLimitAction = true @@ -2151,29 +2154,29 @@ func TestStmtHints(t *testing.T) { // Test MEMORY_QUOTA hint tk.MustExec("select /*+ MEMORY_QUOTA(1 MB) */ 1;") val := int64(1) * 1024 * 1024 - require.True(t, tk.Session().GetSessionVars().StmtCtx.MemTracker.CheckBytesLimit(val)) + require.True(t, tk.Session().GetSessionVars().MemTracker.CheckBytesLimit(val)) tk.MustExec("select /*+ MEMORY_QUOTA(1 GB) */ 1;") val = int64(1) * 1024 * 1024 * 1024 - require.True(t, tk.Session().GetSessionVars().StmtCtx.MemTracker.CheckBytesLimit(val)) + require.True(t, tk.Session().GetSessionVars().MemTracker.CheckBytesLimit(val)) tk.MustExec("select /*+ MEMORY_QUOTA(1 GB), MEMORY_QUOTA(1 MB) */ 1;") val = int64(1) * 1024 * 1024 require.Len(t, tk.Session().GetSessionVars().StmtCtx.GetWarnings(), 1) - require.True(t, tk.Session().GetSessionVars().StmtCtx.MemTracker.CheckBytesLimit(val)) + require.True(t, tk.Session().GetSessionVars().MemTracker.CheckBytesLimit(val)) tk.MustExec("select /*+ MEMORY_QUOTA(0 GB) */ 1;") val = int64(0) require.Len(t, tk.Session().GetSessionVars().StmtCtx.GetWarnings(), 1) - require.True(t, tk.Session().GetSessionVars().StmtCtx.MemTracker.CheckBytesLimit(val)) + require.True(t, tk.Session().GetSessionVars().MemTracker.CheckBytesLimit(val)) require.EqualError(t, tk.Session().GetSessionVars().StmtCtx.GetWarnings()[0].Err, "Setting the MEMORY_QUOTA to 0 means no memory limit") tk.MustExec("use test") tk.MustExec("create table t1(a int);") tk.MustExec("insert /*+ MEMORY_QUOTA(1 MB) */ into t1 (a) values (1);") val = int64(1) * 1024 * 1024 - require.True(t, tk.Session().GetSessionVars().StmtCtx.MemTracker.CheckBytesLimit(val)) + require.True(t, tk.Session().GetSessionVars().MemTracker.CheckBytesLimit(val)) tk.MustExec("insert /*+ MEMORY_QUOTA(1 MB) */ into t1 select /*+ MEMORY_QUOTA(3 MB) */ * from t1;") val = int64(1) * 1024 * 1024 - require.True(t, tk.Session().GetSessionVars().StmtCtx.MemTracker.CheckBytesLimit(val)) + require.True(t, tk.Session().GetSessionVars().MemTracker.CheckBytesLimit(val)) require.Len(t, tk.Session().GetSessionVars().StmtCtx.GetWarnings(), 1) require.EqualError(t, tk.Session().GetSessionVars().StmtCtx.GetWarnings()[0].Err, "[util:3126]Hint MEMORY_QUOTA(`3145728`) is ignored as conflicting/duplicated.") @@ -3170,12 +3173,12 @@ func TestUnique(t *testing.T) { require.Error(t, err) // Check error type and error message require.True(t, terror.ErrorEqual(err, kv.ErrKeyExists), fmt.Sprintf("err %v", err)) - require.Equal(t, "previous statement: insert into test(id, val) values(1, 1);: [kv:1062]Duplicate entry '1' for key 'PRIMARY'", err.Error()) + require.Equal(t, "previous statement: insert into test(id, val) values(1, 1);: [kv:1062]Duplicate entry '1' for key 'test.PRIMARY'", err.Error()) _, err = tk1.Exec("commit") require.Error(t, err) require.True(t, terror.ErrorEqual(err, kv.ErrKeyExists), fmt.Sprintf("err %v", err)) - require.Equal(t, "previous statement: insert into test(id, val) values(2, 2);: [kv:1062]Duplicate entry '2' for key 'val'", err.Error()) + require.Equal(t, "previous statement: insert into test(id, val) values(2, 2);: [kv:1062]Duplicate entry '2' for key 'test.val'", err.Error()) // Test for https://github.com/pingcap/tidb/issues/463 tk.MustExec("drop table test;") @@ -3700,7 +3703,7 @@ func TestGlobalVarAccessor(t *testing.T) { require.NoError(t, err) require.Equal(t, varValue, v) // Set global var to another value - err = se.SetGlobalSysVar(varName, varValue1) + err = se.SetGlobalSysVar(context.Background(), varName, varValue1) require.NoError(t, err) v, err = se.GetGlobalSysVar(varName) require.NoError(t, err) @@ -3713,7 +3716,7 @@ func TestGlobalVarAccessor(t *testing.T) { v, err = se1.GetGlobalSysVar(varName) require.NoError(t, err) require.Equal(t, varValue0, v) - err = se1.SetGlobalSysVar(varName, varValue2) + err = se1.SetGlobalSysVar(context.Background(), varName, varValue2) require.NoError(t, err) v, err = se1.GetGlobalSysVar(varName) require.NoError(t, err) @@ -3835,7 +3838,7 @@ func TestSetInstanceSysvarBySetGlobalSysVar(t *testing.T) { // but GetGlobalSysVar could not access TiDBGeneralLog's GetGlobal. // set to "1" - err = se.SetGlobalSysVar(varName, "ON") + err = se.SetGlobalSysVar(context.Background(), varName, "ON") require.NoError(t, err) v, err = se.GetGlobalSysVar(varName) tk.MustQuery("select @@global.tidb_general_log").Check(testkit.Rows("1")) @@ -3843,7 +3846,7 @@ func TestSetInstanceSysvarBySetGlobalSysVar(t *testing.T) { require.Equal(t, defaultValue, v) // set back to "0" - err = se.SetGlobalSysVar(varName, defaultValue) + err = se.SetGlobalSysVar(context.Background(), varName, defaultValue) require.NoError(t, err) v, err = se.GetGlobalSysVar(varName) tk.MustQuery("select @@global.tidb_general_log").Check(testkit.Rows("0")) diff --git a/session/testdata/clustered_index_suite_out.json b/session/testdata/clustered_index_suite_out.json index e7bc6f0cc52e7..dd0f1f630b9fc 100644 --- a/session/testdata/clustered_index_suite_out.json +++ b/session/testdata/clustered_index_suite_out.json @@ -15,9 +15,9 @@ { "SQL": "select count(1) from t1 use index(idx1) where c2 = 'cd'", "Plan": [ - "StreamAgg 1.00 root funcs:count(Column#6)->Column#4", - "└─IndexReader 1.00 root index:StreamAgg", - " └─StreamAgg 1.00 cop[tikv] funcs:count(1)->Column#6", + "HashAgg 1.00 root funcs:count(Column#5)->Column#4", + "└─IndexReader 1.00 root index:HashAgg", + " └─HashAgg 1.00 cop[tikv] funcs:count(1)->Column#5", " └─Selection 10.00 cop[tikv] eq(test.t1.c2, \"cd\")", " └─IndexRangeScan 10.00 cop[tikv] table:t1, index:idx1(c2) range:[\"c\",\"c\"], keep order:false, stats:pseudo" ], @@ -38,9 +38,9 @@ { "SQL": "select count(1) from t2 use index(idx1) where c2 = 'cd'", "Plan": [ - "StreamAgg 1.00 root funcs:count(Column#9)->Column#4", - "└─IndexReader 1.00 root index:StreamAgg", - " └─StreamAgg 1.00 cop[tikv] funcs:count(1)->Column#9", + "HashAgg 1.00 root funcs:count(Column#6)->Column#4", + "└─IndexReader 1.00 root index:HashAgg", + " └─HashAgg 1.00 cop[tikv] funcs:count(1)->Column#6", " └─Selection 10.00 cop[tikv] eq(test.t2.c2, \"cd\")", " └─IndexFullScan 10000.00 cop[tikv] table:t2, index:idx1(c1, c2) keep order:false, stats:pseudo" ], diff --git a/session/txnmanager.go b/session/txnmanager.go index 65652428f7481..0d72c89461237 100644 --- a/session/txnmanager.go +++ b/session/txnmanager.go @@ -51,7 +51,7 @@ type txnManager struct { ctxProvider sessiontxn.TxnContextProvider // We always reuse the same OptimisticTxnContextProvider in one session to reduce memory allocation cost for every new txn. - reservedOptimisticProvider isolation.OptimisticTxnContextProvider + reservedOptimisticProviders [2]isolation.OptimisticTxnContextProvider } func newTxnManager(sctx sessionctx.Context) *txnManager { @@ -241,8 +241,13 @@ func (m *txnManager) newProviderWithRequest(r *sessiontxn.EnterNewTxnRequest) (s switch txnMode { case "", ast.Optimistic: // When txnMode is 'OPTIMISTIC' or '', the transaction should be optimistic - m.reservedOptimisticProvider.ResetForNewTxn(m.sctx, r.CausalConsistencyOnly) - return &m.reservedOptimisticProvider, nil + provider := &m.reservedOptimisticProviders[0] + if old, ok := m.ctxProvider.(*isolation.OptimisticTxnContextProvider); ok && old == provider { + // We should make sure the new provider is not the same with the old one + provider = &m.reservedOptimisticProviders[1] + } + provider.ResetForNewTxn(m.sctx, r.CausalConsistencyOnly) + return provider, nil case ast.Pessimistic: // When txnMode is 'PESSIMISTIC', the provider should be determined by the isolation level switch sessVars.IsolationLevelForNewTxn() { diff --git a/sessionctx/BUILD.bazel b/sessionctx/BUILD.bazel index 10d02bd931b66..6cd2317cf8f01 100644 --- a/sessionctx/BUILD.bazel +++ b/sessionctx/BUILD.bazel @@ -6,6 +6,7 @@ go_library( importpath = "github.com/pingcap/tidb/sessionctx", visibility = ["//visibility:public"], deps = [ + "//extension", "//kv", "//metrics", "//parser/model", diff --git a/sessionctx/binloginfo/binloginfo.go b/sessionctx/binloginfo/binloginfo.go index 5b29dd91c5b6b..d871c10eed2ef 100644 --- a/sessionctx/binloginfo/binloginfo.go +++ b/sessionctx/binloginfo/binloginfo.go @@ -119,9 +119,15 @@ func EnableSkipBinlogFlag() { } // DisableSkipBinlogFlag disable the skipBinlog flag. -func DisableSkipBinlogFlag() { +func DisableSkipBinlogFlag() error { + if err := statusListener(BinlogStatusOn); err != nil { + logutil.BgLogger().Warn("update binlog status failed", zap.Error(err)) + return errors.Trace(err) + } + atomic.StoreUint32(&skipBinlog, 0) logutil.BgLogger().Warn("[binloginfo] disable the skipBinlog flag") + return nil } // IsBinlogSkipped gets the skipBinlog flag. diff --git a/sessionctx/binloginfo/main_test.go b/sessionctx/binloginfo/main_test.go index a6d097b6a99c5..0459507352310 100644 --- a/sessionctx/binloginfo/main_test.go +++ b/sessionctx/binloginfo/main_test.go @@ -27,6 +27,7 @@ func TestMain(m *testing.M) { goleak.IgnoreTopFunction("go.opencensus.io/stats/view.(*worker).start"), goleak.IgnoreTopFunction("go.etcd.io/etcd/client/pkg/v3/logutil.(*MergeLogger).outputLoop"), goleak.IgnoreTopFunction("github.com/golang/glog.(*loggingT).flushDaemon"), + goleak.IgnoreTopFunction("github.com/lestrrat-go/httprc.runFetchWorker"), } goleak.VerifyTestMain(m, opts...) } diff --git a/sessionctx/context.go b/sessionctx/context.go index 7be92f102e56c..f51bdedef8948 100644 --- a/sessionctx/context.go +++ b/sessionctx/context.go @@ -21,6 +21,7 @@ import ( "github.com/pingcap/errors" "github.com/pingcap/kvproto/pkg/kvrpcpb" + "github.com/pingcap/tidb/extension" "github.com/pingcap/tidb/kv" "github.com/pingcap/tidb/metrics" "github.com/pingcap/tidb/parser/model" @@ -59,6 +60,7 @@ type PlanCache interface { DeleteAll() Size() int SetCapacity(capacity uint) error + Close() } // Context is an interface for transaction and executive args environment. @@ -178,6 +180,8 @@ type Context interface { ReleaseAdvisoryLock(string) bool // ReleaseAllAdvisoryLocks releases all advisory locks that this session holds. ReleaseAllAdvisoryLocks() int + // GetExtensions returns the `*extension.SessionExtensions` object + GetExtensions() *extension.SessionExtensions } // TxnFuture is an interface where implementations have a kv.Transaction field and after diff --git a/sessionctx/main_test.go b/sessionctx/main_test.go index ecaf2dcebe95a..e6c2bc990a57e 100644 --- a/sessionctx/main_test.go +++ b/sessionctx/main_test.go @@ -25,6 +25,7 @@ func TestMain(m *testing.M) { testsetup.SetupForCommonTest() opts := []goleak.Option{ goleak.IgnoreTopFunction("github.com/golang/glog.(*loggingT).flushDaemon"), + goleak.IgnoreTopFunction("github.com/lestrrat-go/httprc.runFetchWorker"), goleak.IgnoreTopFunction("go.etcd.io/etcd/client/pkg/v3/logutil.(*MergeLogger).outputLoop"), goleak.IgnoreTopFunction("go.opencensus.io/stats/view.(*worker).start"), } diff --git a/sessionctx/sessionstates/session_token.go b/sessionctx/sessionstates/session_token.go index 4faa6eae7f41b..3724a7aafa853 100644 --- a/sessionctx/sessionstates/session_token.go +++ b/sessionctx/sessionstates/session_token.go @@ -159,10 +159,8 @@ type certInfo struct { expireTime time.Time } -// We cannot guarantee that the cert and key paths are set at the same time because they are set through system variables. func (sc *signingCert) setCertPath(certPath string) { sc.Lock() - // Just in case of repeatedly loading global variables, we check the path to avoid useless loading. if certPath != sc.certPath { sc.certPath = certPath // It may fail expectedly because the key path is not set yet. diff --git a/sessionctx/stmtctx/main_test.go b/sessionctx/stmtctx/main_test.go index d9ea6f6a898e7..ba36da8e5c6b8 100644 --- a/sessionctx/stmtctx/main_test.go +++ b/sessionctx/stmtctx/main_test.go @@ -25,6 +25,7 @@ func TestMain(m *testing.M) { testsetup.SetupForCommonTest() opts := []goleak.Option{ goleak.IgnoreTopFunction("github.com/golang/glog.(*loggingT).flushDaemon"), + goleak.IgnoreTopFunction("github.com/lestrrat-go/httprc.runFetchWorker"), goleak.IgnoreTopFunction("go.etcd.io/etcd/client/pkg/v3/logutil.(*MergeLogger).outputLoop"), goleak.IgnoreTopFunction("go.opencensus.io/stats/view.(*worker).start"), } diff --git a/sessionctx/stmtctx/stmtctx.go b/sessionctx/stmtctx/stmtctx.go index 81905683dc0ab..a02090e490c32 100644 --- a/sessionctx/stmtctx/stmtctx.go +++ b/sessionctx/stmtctx/stmtctx.go @@ -109,37 +109,38 @@ type StatementContext struct { // IsDDLJobInQueue is used to mark whether the DDL job is put into the queue. // If IsDDLJobInQueue is true, it means the DDL job is in the queue of storage, and it can be handled by the DDL worker. - IsDDLJobInQueue bool - DDLJobID int64 - InInsertStmt bool - InUpdateStmt bool - InDeleteStmt bool - InSelectStmt bool - InLoadDataStmt bool - InExplainStmt bool - InCreateOrAlterStmt bool - InSetSessionStatesStmt bool - InPreparedPlanBuilding bool - IgnoreTruncate bool - IgnoreZeroInDate bool - NoZeroDate bool - DupKeyAsWarning bool - BadNullAsWarning bool - DividedByZeroAsWarning bool - TruncateAsWarning bool - OverflowAsWarning bool - InShowWarning bool - UseCache bool - BatchCheck bool - InNullRejectCheck bool - AllowInvalidDate bool - IgnoreNoPartition bool - SkipPlanCache bool - IgnoreExplainIDSuffix bool - SkipUTF8Check bool - SkipASCIICheck bool - SkipUTF8MB4Check bool - MultiSchemaInfo *model.MultiSchemaInfo + IsDDLJobInQueue bool + DDLJobID int64 + InInsertStmt bool + InUpdateStmt bool + InDeleteStmt bool + InSelectStmt bool + InLoadDataStmt bool + InExplainStmt bool + InCreateOrAlterStmt bool + InSetSessionStatesStmt bool + InPreparedPlanBuilding bool + IgnoreTruncate bool + IgnoreZeroInDate bool + NoZeroDate bool + DupKeyAsWarning bool + BadNullAsWarning bool + DividedByZeroAsWarning bool + TruncateAsWarning bool + OverflowAsWarning bool + ErrAutoincReadFailedAsWarning bool + InShowWarning bool + UseCache bool + BatchCheck bool + InNullRejectCheck bool + AllowInvalidDate bool + IgnoreNoPartition bool + SkipPlanCache bool + IgnoreExplainIDSuffix bool + SkipUTF8Check bool + SkipASCIICheck bool + SkipUTF8MB4Check bool + MultiSchemaInfo *model.MultiSchemaInfo // If the select statement was like 'select * from t as of timestamp ...' or in a stale read transaction // or is affected by the tidb_read_staleness session variable, then the statement will be makred as isStaleness // in stmtCtx @@ -329,6 +330,21 @@ type StatementContext struct { // IsExplainAnalyzeDML is true if the statement is "explain analyze DML executors", before responding the explain // results to the client, the transaction should be committed first. See issue #37373 for more details. IsExplainAnalyzeDML bool + + // InHandleForeignKeyTrigger indicates currently are handling foreign key trigger. + InHandleForeignKeyTrigger bool + + // ForeignKeyTriggerCtx is the contain information for foreign key cascade execution. + ForeignKeyTriggerCtx struct { + // The SavepointName is use to do rollback when handle foreign key cascade failed. + SavepointName string + HasFKCascades bool + } + + // TableStats stores the visited runtime table stats by table id during query + TableStats map[int64]interface{} + // useChunkAlloc indicates whether statement use chunk alloc + useChunkAlloc bool } // StmtHints are SessionVars related sql hints. @@ -372,6 +388,8 @@ const ( StmtNowTsCacheKey StmtCacheKey = iota // StmtSafeTSCacheKey is a variable for safeTS calculation/cache of one stmt. StmtSafeTSCacheKey + // StmtExternalTSCacheKey is a variable for externalTS calculation/cache of one stmt. + StmtExternalTSCacheKey ) // GetOrStoreStmtCache gets the cached value of the given key if it exists, otherwise stores the value. @@ -387,6 +405,23 @@ func (sc *StatementContext) GetOrStoreStmtCache(key StmtCacheKey, value interfac return sc.stmtCache.data[key] } +// GetOrEvaluateStmtCache gets the cached value of the given key if it exists, otherwise calculate the value. +func (sc *StatementContext) GetOrEvaluateStmtCache(key StmtCacheKey, valueEvaluator func() (interface{}, error)) (interface{}, error) { + sc.stmtCache.mu.Lock() + defer sc.stmtCache.mu.Unlock() + if sc.stmtCache.data == nil { + sc.stmtCache.data = make(map[StmtCacheKey]interface{}) + } + if _, ok := sc.stmtCache.data[key]; !ok { + value, err := valueEvaluator() + if err != nil { + return nil, err + } + sc.stmtCache.data[key] = value + } + return sc.stmtCache.data[key], nil +} + // ResetInStmtCache resets the cache of given key. func (sc *StatementContext) ResetInStmtCache(key StmtCacheKey) { sc.stmtCache.mu.Lock() @@ -473,6 +508,21 @@ func (sc *StatementContext) GetResourceGroupTagger() tikvrpc.ResourceGroupTagger } } +// SetUseChunkAlloc set use chunk alloc status +func (sc *StatementContext) SetUseChunkAlloc() { + sc.useChunkAlloc = true +} + +// ClearUseChunkAlloc clear useChunkAlloc status +func (sc *StatementContext) ClearUseChunkAlloc() { + sc.useChunkAlloc = false +} + +// GetUseChunkAllocStatus returns useChunkAlloc status +func (sc *StatementContext) GetUseChunkAllocStatus() bool { + return sc.useChunkAlloc +} + // SetPlanDigest sets the normalized plan and plan digest. func (sc *StatementContext) SetPlanDigest(normalized string, planDigest *parser.Digest) { if planDigest != nil { @@ -521,6 +571,10 @@ type TableEntry struct { // AddAffectedRows adds affected rows. func (sc *StatementContext) AddAffectedRows(rows uint64) { + if sc.InHandleForeignKeyTrigger { + // For compatibility with MySQL, not add the affected row cause by the foreign key trigger. + return + } sc.mu.Lock() defer sc.mu.Unlock() sc.mu.affectedRows += rows diff --git a/sessionctx/variable/BUILD.bazel b/sessionctx/variable/BUILD.bazel index 3a9eb1439ce2c..7c6bcd5330e25 100644 --- a/sessionctx/variable/BUILD.bazel +++ b/sessionctx/variable/BUILD.bazel @@ -40,6 +40,7 @@ go_library( "//util/chunk", "//util/collate", "//util/dbterror", + "//util/disk", "//util/execdetails", "//util/gctuner", "//util/kvcache", @@ -48,6 +49,7 @@ go_library( "//util/memory", "//util/paging", "//util/rowcodec", + "//util/size", "//util/stmtsummary", "//util/stringutil", "//util/tableutil", @@ -83,6 +85,7 @@ go_test( ], embed = [":variable"], flaky = True, + shard_count = 2, deps = [ "//config", "//kv", @@ -95,8 +98,11 @@ go_test( "//testkit", "//testkit/testsetup", "//types", + "//util/chunk", "//util/execdetails", + "//util/memory", "//util/mock", + "@com_github_pingcap_failpoint//:failpoint", "@com_github_stretchr_testify//require", "@com_github_tikv_client_go_v2//util", "@io_opencensus_go//stats/view", diff --git a/sessionctx/variable/main_test.go b/sessionctx/variable/main_test.go index f3edec39107f0..c5eca2f3d1658 100644 --- a/sessionctx/variable/main_test.go +++ b/sessionctx/variable/main_test.go @@ -25,7 +25,9 @@ func TestMain(m *testing.M) { testsetup.SetupForCommonTest() opts := []goleak.Option{ goleak.IgnoreTopFunction("github.com/golang/glog.(*loggingT).flushDaemon"), + goleak.IgnoreTopFunction("github.com/lestrrat-go/httprc.runFetchWorker"), goleak.IgnoreTopFunction("go.etcd.io/etcd/client/pkg/v3/logutil.(*MergeLogger).outputLoop"), + goleak.IgnoreTopFunction("go.opencensus.io/stats/view.(*worker).start"), } goleak.VerifyTestMain(m, opts...) } diff --git a/sessionctx/variable/mock_globalaccessor.go b/sessionctx/variable/mock_globalaccessor.go index c4bb86748e9fd..e452c398da424 100644 --- a/sessionctx/variable/mock_globalaccessor.go +++ b/sessionctx/variable/mock_globalaccessor.go @@ -14,6 +14,8 @@ package variable +import "context" + // MockGlobalAccessor implements GlobalVarAccessor interface. it's used in tests type MockGlobalAccessor struct { SessionVars *SessionVars // can be overwritten if needed for correctness. @@ -69,7 +71,7 @@ func (m *MockGlobalAccessor) GetGlobalSysVar(name string) (string, error) { } // SetGlobalSysVar implements GlobalVarAccessor.SetGlobalSysVar interface. -func (m *MockGlobalAccessor) SetGlobalSysVar(name string, value string) (err error) { +func (m *MockGlobalAccessor) SetGlobalSysVar(ctx context.Context, name string, value string) (err error) { sv := GetSysVar(name) if sv == nil { return ErrUnknownSystemVar.GenWithStackByArgs(name) @@ -77,7 +79,7 @@ func (m *MockGlobalAccessor) SetGlobalSysVar(name string, value string) (err err if value, err = sv.Validate(m.SessionVars, value, ScopeGlobal); err != nil { return err } - if err = sv.SetGlobalFromHook(m.SessionVars, value, false); err != nil { + if err = sv.SetGlobalFromHook(ctx, m.SessionVars, value, false); err != nil { return err } m.vals[name] = value @@ -85,7 +87,7 @@ func (m *MockGlobalAccessor) SetGlobalSysVar(name string, value string) (err err } // SetGlobalSysVarOnly implements GlobalVarAccessor.SetGlobalSysVarOnly interface. -func (m *MockGlobalAccessor) SetGlobalSysVarOnly(name string, value string) error { +func (m *MockGlobalAccessor) SetGlobalSysVarOnly(ctx context.Context, name string, value string) error { sv := GetSysVar(name) if sv == nil { return ErrUnknownSystemVar.GenWithStackByArgs(name) diff --git a/sessionctx/variable/mock_globalaccessor_test.go b/sessionctx/variable/mock_globalaccessor_test.go index 57ed4931a342d..3372a92790275 100644 --- a/sessionctx/variable/mock_globalaccessor_test.go +++ b/sessionctx/variable/mock_globalaccessor_test.go @@ -15,6 +15,7 @@ package variable import ( + "context" "testing" "github.com/stretchr/testify/require" @@ -33,19 +34,19 @@ func TestMockAPI(t *testing.T) { require.Error(t, err) // invalid option name - err = mock.SetGlobalSysVar("illegalopt", "val") + err = mock.SetGlobalSysVar(context.Background(), "illegalopt", "val") require.Error(t, err) - err = mock.SetGlobalSysVarOnly("illegalopt", "val") + err = mock.SetGlobalSysVarOnly(context.Background(), "illegalopt", "val") require.Error(t, err) // valid option, invalid value - err = mock.SetGlobalSysVar(DefaultAuthPlugin, "invalidvalue") + err = mock.SetGlobalSysVar(context.Background(), DefaultAuthPlugin, "invalidvalue") require.Error(t, err) // valid option, valid value - err = mock.SetGlobalSysVar(DefaultAuthPlugin, "mysql_native_password") + err = mock.SetGlobalSysVar(context.Background(), DefaultAuthPlugin, "mysql_native_password") require.NoError(t, err) - err = mock.SetGlobalSysVarOnly(DefaultAuthPlugin, "mysql_native_password") + err = mock.SetGlobalSysVarOnly(context.Background(), DefaultAuthPlugin, "mysql_native_password") require.NoError(t, err) // Test GetTiDBTableValue diff --git a/sessionctx/variable/session.go b/sessionctx/variable/session.go index 4d3d16f351965..b11b727079630 100644 --- a/sessionctx/variable/session.go +++ b/sessionctx/variable/session.go @@ -46,9 +46,11 @@ import ( pumpcli "github.com/pingcap/tidb/tidb-binlog/pump_client" "github.com/pingcap/tidb/types" "github.com/pingcap/tidb/util/chunk" + "github.com/pingcap/tidb/util/disk" "github.com/pingcap/tidb/util/execdetails" "github.com/pingcap/tidb/util/kvcache" "github.com/pingcap/tidb/util/mathutil" + "github.com/pingcap/tidb/util/memory" "github.com/pingcap/tidb/util/rowcodec" "github.com/pingcap/tidb/util/stringutil" "github.com/pingcap/tidb/util/tableutil" @@ -94,6 +96,12 @@ type RetryInfo struct { LastRcReadTS uint64 } +// ReuseChunkPool save Alloc object +type ReuseChunkPool struct { + mu sync.Mutex + Alloc chunk.Allocator +} + // Clean does some clean work. func (r *RetryInfo) Clean() { r.autoIncrementIDs.clean() @@ -1162,11 +1170,8 @@ type SessionVars struct { // ReadStaleness indicates the staleness duration for the following query ReadStaleness time.Duration - // cached is used to optimze the object allocation. - cached struct { - curr int8 - data [2]stmtctx.StatementContext - } + // cachedStmtCtx is used to optimze the object allocation. + cachedStmtCtx [2]stmtctx.StatementContext // Rng stores the rand_seed1 and rand_seed2 for Rand() function Rng *mathutil.MysqlRng @@ -1244,6 +1249,9 @@ type SessionVars struct { // GeneralPlanCacheSize controls the size of general plan cache. PreparedPlanCacheSize uint64 + // PreparedPlanCacheMonitor indicates whether to enable prepared plan cache monitor. + EnablePreparedPlanCacheMemoryMonitor bool + // EnableGeneralPlanCache indicates whether to enable general plan cache. EnableGeneralPlanCache bool @@ -1271,7 +1279,81 @@ type SessionVars struct { // LastPlanReplayerToken indicates the last plan replayer token LastPlanReplayerToken string + // AnalyzePartitionConcurrency indicates concurrency for partitions in Analyze + AnalyzePartitionConcurrency int + // AnalyzePartitionMergeConcurrency indicates concurrency for merging partition stats + AnalyzePartitionMergeConcurrency int + + // EnableExternalTSRead indicates whether to enable read through external ts + EnableExternalTSRead bool + HookContext + + // MemTracker indicates the memory tracker of current session. + MemTracker *memory.Tracker + DiskTracker *memory.Tracker + + // OptPrefixIndexSingleScan indicates whether to do some optimizations to avoid double scan for prefix index. + // When set to true, `col is (not) null`(`col` is index prefix column) is regarded as index filter rather than table filter. + OptPrefixIndexSingleScan bool + + // ChunkPool Several chunks and columns are cached + ChunkPool ReuseChunkPool + // EnableReuseCheck indicates request chunk whether use chunk alloc + EnableReuseCheck bool + + // preuseChunkAlloc indicates whether pre statement use chunk alloc + // like select @@last_sql_use_alloc + preUseChunkAlloc bool +} + +// GetNewChunkWithCapacity Attempt to request memory from the chunk pool +// thread safety +func (s *SessionVars) GetNewChunkWithCapacity(fields []*types.FieldType, capacity int, maxCachesize int, pool chunk.Allocator) *chunk.Chunk { + if pool == nil { + return chunk.New(fields, capacity, maxCachesize) + } + s.ChunkPool.mu.Lock() + defer s.ChunkPool.mu.Unlock() + if pool.CheckReuseAllocSize() && (!s.GetUseChunkAlloc()) { + s.StmtCtx.SetUseChunkAlloc() + } + chk := pool.Alloc(fields, capacity, maxCachesize) + return chk +} + +// ExchangeChunkStatus give the status to preUseChunkAlloc +func (s *SessionVars) ExchangeChunkStatus() { + s.preUseChunkAlloc = s.GetUseChunkAlloc() +} + +// GetUseChunkAlloc return useChunkAlloc status +func (s *SessionVars) GetUseChunkAlloc() bool { + return s.StmtCtx.GetUseChunkAllocStatus() +} + +// SetAlloc Attempt to set the buffer pool address +func (s *SessionVars) SetAlloc(alloc chunk.Allocator) { + if !s.EnableReuseCheck { + return + } + s.ChunkPool.Alloc = alloc +} + +// ClearAlloc indicates stop reuse chunk +func (s *SessionVars) ClearAlloc(alloc *chunk.Allocator, b bool) { + if !b { + s.ChunkPool.Alloc = nil + return + } + + // If an error is reported, re-apply for alloc + // Prevent the goroutine left before, affecting the execution of the next sql + // issuse 38918 + s.ChunkPool.mu.Lock() + s.ChunkPool.Alloc = nil + s.ChunkPool.mu.Unlock() + *alloc = chunk.NewAllocator() } // GetPreparedStmtByName returns the prepared statement specified by stmtName. @@ -1294,9 +1376,12 @@ func (s *SessionVars) GetPreparedStmtByID(stmtID uint32) (interface{}, error) { // InitStatementContext initializes a StatementContext, the object is reused to reduce allocation. func (s *SessionVars) InitStatementContext() *stmtctx.StatementContext { - s.cached.curr = (s.cached.curr + 1) % 2 - s.cached.data[s.cached.curr] = stmtctx.StatementContext{} - return &s.cached.data[s.cached.curr] + sc := &s.cachedStmtCtx[0] + if sc == s.StmtCtx { + sc = &s.cachedStmtCtx[1] + } + *sc = stmtctx.StatementContext{} + return sc } // AllocMPPTaskID allocates task id for mpp tasks. It will reset the task id if the query's @@ -1431,6 +1516,7 @@ type ConnectionInfo struct { ClientIP string ClientPort string ServerID int + ServerIP string ServerPort int Duration float64 User string @@ -1565,6 +1651,9 @@ func NewSessionVars(hctx HookContext) *SessionVars { EnableTiFlashReadForWriteStmt: DefTiDBEnableTiFlashReadForWriteStmt, ForeignKeyChecks: DefTiDBForeignKeyChecks, HookContext: hctx, + EnableReuseCheck: DefTiDBEnableReusechunk, + preUseChunkAlloc: DefTiDBUseAlloc, + ChunkPool: ReuseChunkPool{Alloc: nil}, } vars.KVVars = tikvstore.NewVariables(&vars.Killed) vars.Concurrency = Concurrency{ @@ -1600,6 +1689,9 @@ func NewSessionVars(hctx HookContext) *SessionVars { vars.enforceMPPExecution = DefTiDBEnforceMPPExecution vars.TiFlashMaxThreads = DefTiFlashMaxThreads vars.MPPStoreFailTTL = DefTiDBMPPStoreFailTTL + vars.DiskTracker = disk.NewTracker(memory.LabelForSession, -1) + vars.MemTracker = memory.NewTracker(memory.LabelForSession, vars.MemQuotaQuery) + vars.MemTracker.IsRootTrackerOfSess = true for _, engine := range config.GetGlobalConfig().IsolationRead.Engines { switch engine { @@ -1740,7 +1832,7 @@ func (s *SessionVars) GetCharsetInfo() (charset, collation string) { // GetParseParams gets the parse parameters from session variables. func (s *SessionVars) GetParseParams() []parser.ParseParam { chs, coll := s.GetCharsetInfo() - cli, err := s.GetSessionOrGlobalSystemVar(CharacterSetClient) + cli, err := s.GetSessionOrGlobalSystemVar(context.Background(), CharacterSetClient) if err != nil { cli = "" } @@ -1988,7 +2080,7 @@ func (s *SessionVars) ClearStmtVars() { // GetSessionOrGlobalSystemVar gets a system variable. // If it is a session only variable, use the default value defined in code. // Returns error if there is no such variable. -func (s *SessionVars) GetSessionOrGlobalSystemVar(name string) (string, error) { +func (s *SessionVars) GetSessionOrGlobalSystemVar(ctx context.Context, name string) (string, error) { sv := GetSysVar(name) if sv == nil { return "", ErrUnknownSystemVar.GenWithStackByArgs(name) @@ -2014,7 +2106,7 @@ func (s *SessionVars) GetSessionOrGlobalSystemVar(name string) (string, error) { } return sv.GetSessionFromHook(s) } - return sv.GetGlobalFromHook(s) + return sv.GetGlobalFromHook(ctx, s) } // GetSessionStatesSystemVar gets the session variable value for session states. @@ -2041,12 +2133,12 @@ func (s *SessionVars) GetSessionStatesSystemVar(name string) (string, bool, erro } // GetGlobalSystemVar gets a global system variable. -func (s *SessionVars) GetGlobalSystemVar(name string) (string, error) { +func (s *SessionVars) GetGlobalSystemVar(ctx context.Context, name string) (string, error) { sv := GetSysVar(name) if sv == nil { return "", ErrUnknownSystemVar.GenWithStackByArgs(name) } - return sv.GetGlobalFromHook(s) + return sv.GetGlobalFromHook(ctx, s) } // SetStmtVar sets system variable and updates SessionVars states. @@ -2262,7 +2354,6 @@ type Concurrency struct { indexLookupJoinConcurrency int // distSQLScanConcurrency is the number of concurrent dist SQL scan worker. - // distSQLScanConcurrency is deprecated, use ExecutorConcurrency instead. distSQLScanConcurrency int // hashJoinConcurrency is the number of concurrent hash join outer worker. diff --git a/sessionctx/variable/session_test.go b/sessionctx/variable/session_test.go index 91f1394499c97..92049902618c2 100644 --- a/sessionctx/variable/session_test.go +++ b/sessionctx/variable/session_test.go @@ -23,10 +23,13 @@ import ( "github.com/pingcap/tidb/kv" "github.com/pingcap/tidb/parser" "github.com/pingcap/tidb/parser/auth" + "github.com/pingcap/tidb/parser/mysql" plannercore "github.com/pingcap/tidb/planner/core" "github.com/pingcap/tidb/sessionctx/stmtctx" "github.com/pingcap/tidb/sessionctx/variable" "github.com/pingcap/tidb/testkit" + "github.com/pingcap/tidb/types" + "github.com/pingcap/tidb/util/chunk" "github.com/pingcap/tidb/util/execdetails" "github.com/pingcap/tidb/util/mock" "github.com/stretchr/testify/require" @@ -422,3 +425,62 @@ func TestHookContext(t *testing.T) { ctx.GetSessionVars().SetSystemVar("testhooksysvar", "test") } + +func TestGetReuseChunk(t *testing.T) { + fieldTypes := []*types.FieldType{ + types.NewFieldTypeBuilder().SetType(mysql.TypeVarchar).BuildP(), + types.NewFieldTypeBuilder().SetType(mysql.TypeJSON).BuildP(), + types.NewFieldTypeBuilder().SetType(mysql.TypeFloat).BuildP(), + types.NewFieldTypeBuilder().SetType(mysql.TypeNewDecimal).BuildP(), + types.NewFieldTypeBuilder().SetType(mysql.TypeDouble).BuildP(), + types.NewFieldTypeBuilder().SetType(mysql.TypeLonglong).BuildP(), + types.NewFieldTypeBuilder().SetType(mysql.TypeDatetime).BuildP(), + } + + sessVars := variable.NewSessionVars(nil) + + // SetAlloc efficient + sessVars.SetAlloc(nil) + require.Nil(t, sessVars.ChunkPool.Alloc) + require.False(t, sessVars.GetUseChunkAlloc()) + // alloc is nil ,Allocate memory from the system + chk1 := sessVars.GetNewChunkWithCapacity(fieldTypes, 10, 10, sessVars.ChunkPool.Alloc) + require.NotNil(t, chk1) + + chunkReuseMap := make(map[*chunk.Chunk]struct{}, 14) + columnReuseMap := make(map[*chunk.Column]struct{}, 14) + + alloc := chunk.NewAllocator() + sessVars.EnableReuseCheck = true + sessVars.SetAlloc(alloc) + require.NotNil(t, sessVars.ChunkPool.Alloc) + require.Equal(t, alloc, sessVars.ChunkPool.Alloc) + require.False(t, sessVars.GetUseChunkAlloc()) + + //tries to apply from the cache + initCap := 10 + chk1 = sessVars.GetNewChunkWithCapacity(fieldTypes, initCap, initCap, sessVars.ChunkPool.Alloc) + require.NotNil(t, chk1) + chunkReuseMap[chk1] = struct{}{} + for i := 0; i < chk1.NumCols(); i++ { + columnReuseMap[chk1.Column(i)] = struct{}{} + } + + alloc.Reset() + chkres1 := sessVars.GetNewChunkWithCapacity(fieldTypes, 10, 10, sessVars.ChunkPool.Alloc) + require.NotNil(t, chkres1) + _, exist := chunkReuseMap[chkres1] + require.True(t, exist) + for i := 0; i < chkres1.NumCols(); i++ { + _, exist := columnReuseMap[chkres1.Column(i)] + require.True(t, exist) + } + allocpool := variable.ReuseChunkPool{Alloc: alloc} + + sessVars.ClearAlloc(&allocpool.Alloc, false) + require.Equal(t, alloc, allocpool.Alloc) + + sessVars.ClearAlloc(&allocpool.Alloc, true) + require.NotEqual(t, allocpool.Alloc, alloc) + require.Nil(t, sessVars.ChunkPool.Alloc) +} diff --git a/sessionctx/variable/sysvar.go b/sessionctx/variable/sysvar.go index 42690602b32cf..a592e7a7e8831 100644 --- a/sessionctx/variable/sysvar.go +++ b/sessionctx/variable/sysvar.go @@ -15,6 +15,7 @@ package variable import ( + "context" "encoding/json" "fmt" "math" @@ -31,7 +32,6 @@ import ( "github.com/pingcap/tidb/parser" "github.com/pingcap/tidb/parser/charset" "github.com/pingcap/tidb/parser/mysql" - "github.com/pingcap/tidb/sessionctx/sessionstates" "github.com/pingcap/tidb/sessionctx/stmtctx" "github.com/pingcap/tidb/types" _ "github.com/pingcap/tidb/types/parser_driver" // for parser driver @@ -164,7 +164,7 @@ var defaultSysVars = []*SysVar{ s.AllowProjectionPushDown = TiDBOptOn(val) return nil }}, - {Scope: ScopeSession, Name: TiDBOptAggPushDown, Value: BoolToOnOff(DefOptAggPushDown), Type: TypeBool, SetSession: func(s *SessionVars, val string) error { + {Scope: ScopeGlobal | ScopeSession, Name: TiDBOptAggPushDown, Value: BoolToOnOff(DefOptAggPushDown), Type: TypeBool, SetSession: func(s *SessionVars, val string) error { s.AllowAggPushDown = TiDBOptOn(val) return nil }}, @@ -347,8 +347,11 @@ var defaultSysVars = []*SysVar{ return s.LastPlanReplayerToken, nil }, }, + {Scope: ScopeSession, Name: TiDBUseAlloc, Value: BoolToOnOff(DefTiDBUseAlloc), Type: TypeBool, ReadOnly: true, GetSession: func(s *SessionVars) (string, error) { + return BoolToOnOff(s.preUseChunkAlloc), nil + }}, /* The system variables below have INSTANCE scope */ - {Scope: ScopeInstance, Name: TiDBLogFileMaxDays, Value: strconv.Itoa(config.GetGlobalConfig().Log.File.MaxDays), Type: TypeInt, MinValue: 0, MaxValue: math.MaxInt32, SetGlobal: func(s *SessionVars, val string) error { + {Scope: ScopeInstance, Name: TiDBLogFileMaxDays, Value: strconv.Itoa(config.GetGlobalConfig().Log.File.MaxDays), Type: TypeInt, MinValue: 0, MaxValue: math.MaxInt32, SetGlobal: func(_ context.Context, s *SessionVars, val string) error { maxAge, err := strconv.ParseInt(val, 10, 32) if err != nil { return err @@ -361,72 +364,72 @@ var defaultSysVars = []*SysVar{ return err } return nil - }, GetGlobal: func(s *SessionVars) (string, error) { + }, GetGlobal: func(_ context.Context, s *SessionVars) (string, error) { return strconv.FormatInt(int64(GlobalLogMaxDays.Load()), 10), nil }}, - {Scope: ScopeInstance, Name: TiDBConfig, Value: "", ReadOnly: true, GetGlobal: func(s *SessionVars) (string, error) { + {Scope: ScopeInstance, Name: TiDBConfig, Value: "", ReadOnly: true, GetGlobal: func(_ context.Context, s *SessionVars) (string, error) { return config.GetJSONConfig() }}, - {Scope: ScopeInstance, Name: TiDBGeneralLog, Value: BoolToOnOff(DefTiDBGeneralLog), Type: TypeBool, SetGlobal: func(s *SessionVars, val string) error { + {Scope: ScopeInstance, Name: TiDBGeneralLog, Value: BoolToOnOff(DefTiDBGeneralLog), Type: TypeBool, SetGlobal: func(_ context.Context, s *SessionVars, val string) error { ProcessGeneralLog.Store(TiDBOptOn(val)) return nil - }, GetGlobal: func(s *SessionVars) (string, error) { + }, GetGlobal: func(_ context.Context, s *SessionVars) (string, error) { return BoolToOnOff(ProcessGeneralLog.Load()), nil }}, - {Scope: ScopeInstance, Name: TiDBSlowLogThreshold, Value: strconv.Itoa(logutil.DefaultSlowThreshold), Type: TypeInt, MinValue: -1, MaxValue: math.MaxInt64, SetGlobal: func(s *SessionVars, val string) error { + {Scope: ScopeInstance, Name: TiDBSlowLogThreshold, Value: strconv.Itoa(logutil.DefaultSlowThreshold), Type: TypeInt, MinValue: -1, MaxValue: math.MaxInt64, SetGlobal: func(_ context.Context, s *SessionVars, val string) error { atomic.StoreUint64(&config.GetGlobalConfig().Instance.SlowThreshold, uint64(TidbOptInt64(val, logutil.DefaultSlowThreshold))) return nil - }, GetGlobal: func(s *SessionVars) (string, error) { + }, GetGlobal: func(_ context.Context, s *SessionVars) (string, error) { return strconv.FormatUint(atomic.LoadUint64(&config.GetGlobalConfig().Instance.SlowThreshold), 10), nil }}, - {Scope: ScopeInstance, Name: TiDBRecordPlanInSlowLog, Value: int32ToBoolStr(logutil.DefaultRecordPlanInSlowLog), Type: TypeBool, SetGlobal: func(s *SessionVars, val string) error { + {Scope: ScopeInstance, Name: TiDBRecordPlanInSlowLog, Value: int32ToBoolStr(logutil.DefaultRecordPlanInSlowLog), Type: TypeBool, SetGlobal: func(_ context.Context, s *SessionVars, val string) error { atomic.StoreUint32(&config.GetGlobalConfig().Instance.RecordPlanInSlowLog, uint32(TidbOptInt64(val, logutil.DefaultRecordPlanInSlowLog))) return nil - }, GetGlobal: func(s *SessionVars) (string, error) { + }, GetGlobal: func(_ context.Context, s *SessionVars) (string, error) { enabled := atomic.LoadUint32(&config.GetGlobalConfig().Instance.RecordPlanInSlowLog) == 1 return BoolToOnOff(enabled), nil }}, - {Scope: ScopeInstance, Name: TiDBEnableSlowLog, Value: BoolToOnOff(logutil.DefaultTiDBEnableSlowLog), Type: TypeBool, SetGlobal: func(s *SessionVars, val string) error { + {Scope: ScopeInstance, Name: TiDBEnableSlowLog, Value: BoolToOnOff(logutil.DefaultTiDBEnableSlowLog), Type: TypeBool, SetGlobal: func(_ context.Context, s *SessionVars, val string) error { config.GetGlobalConfig().Instance.EnableSlowLog.Store(TiDBOptOn(val)) return nil - }, GetGlobal: func(s *SessionVars) (string, error) { + }, GetGlobal: func(_ context.Context, s *SessionVars) (string, error) { return BoolToOnOff(config.GetGlobalConfig().Instance.EnableSlowLog.Load()), nil }}, - {Scope: ScopeInstance, Name: TiDBCheckMb4ValueInUTF8, Value: BoolToOnOff(config.GetGlobalConfig().Instance.CheckMb4ValueInUTF8.Load()), Type: TypeBool, SetGlobal: func(s *SessionVars, val string) error { + {Scope: ScopeInstance, Name: TiDBCheckMb4ValueInUTF8, Value: BoolToOnOff(config.GetGlobalConfig().Instance.CheckMb4ValueInUTF8.Load()), Type: TypeBool, SetGlobal: func(_ context.Context, s *SessionVars, val string) error { config.GetGlobalConfig().Instance.CheckMb4ValueInUTF8.Store(TiDBOptOn(val)) return nil - }, GetGlobal: func(s *SessionVars) (string, error) { + }, GetGlobal: func(_ context.Context, s *SessionVars) (string, error) { return BoolToOnOff(config.GetGlobalConfig().Instance.CheckMb4ValueInUTF8.Load()), nil }}, - {Scope: ScopeInstance, Name: TiDBPProfSQLCPU, Value: strconv.Itoa(DefTiDBPProfSQLCPU), Type: TypeInt, MinValue: 0, MaxValue: 1, SetGlobal: func(s *SessionVars, val string) error { + {Scope: ScopeInstance, Name: TiDBPProfSQLCPU, Value: strconv.Itoa(DefTiDBPProfSQLCPU), Type: TypeInt, MinValue: 0, MaxValue: 1, SetGlobal: func(_ context.Context, s *SessionVars, val string) error { EnablePProfSQLCPU.Store(uint32(tidbOptPositiveInt32(val, DefTiDBPProfSQLCPU)) > 0) return nil - }, GetGlobal: func(s *SessionVars) (string, error) { + }, GetGlobal: func(_ context.Context, s *SessionVars) (string, error) { val := "0" if EnablePProfSQLCPU.Load() { val = "1" } return val, nil }}, - {Scope: ScopeInstance, Name: TiDBDDLSlowOprThreshold, Value: strconv.Itoa(DefTiDBDDLSlowOprThreshold), Type: TypeInt, MinValue: 0, MaxValue: math.MaxInt32, SetGlobal: func(s *SessionVars, val string) error { + {Scope: ScopeInstance, Name: TiDBDDLSlowOprThreshold, Value: strconv.Itoa(DefTiDBDDLSlowOprThreshold), Type: TypeInt, MinValue: 0, MaxValue: math.MaxInt32, SetGlobal: func(_ context.Context, s *SessionVars, val string) error { atomic.StoreUint32(&DDLSlowOprThreshold, uint32(tidbOptPositiveInt32(val, DefTiDBDDLSlowOprThreshold))) return nil - }, GetGlobal: func(s *SessionVars) (string, error) { + }, GetGlobal: func(_ context.Context, s *SessionVars) (string, error) { return strconv.FormatUint(uint64(atomic.LoadUint32(&DDLSlowOprThreshold)), 10), nil }}, - {Scope: ScopeInstance, Name: TiDBForcePriority, Value: mysql.Priority2Str[DefTiDBForcePriority], Type: TypeEnum, PossibleValues: []string{"NO_PRIORITY", "LOW_PRIORITY", "HIGH_PRIORITY", "DELAYED"}, SetGlobal: func(s *SessionVars, val string) error { + {Scope: ScopeInstance, Name: TiDBForcePriority, Value: mysql.Priority2Str[DefTiDBForcePriority], Type: TypeEnum, PossibleValues: []string{"NO_PRIORITY", "LOW_PRIORITY", "HIGH_PRIORITY", "DELAYED"}, SetGlobal: func(_ context.Context, s *SessionVars, val string) error { atomic.StoreInt32(&ForcePriority, int32(mysql.Str2Priority(val))) return nil - }, GetGlobal: func(s *SessionVars) (string, error) { + }, GetGlobal: func(_ context.Context, s *SessionVars) (string, error) { return mysql.Priority2Str[mysql.PriorityEnum(atomic.LoadInt32(&ForcePriority))], nil }}, - {Scope: ScopeInstance, Name: TiDBExpensiveQueryTimeThreshold, Value: strconv.Itoa(DefTiDBExpensiveQueryTimeThreshold), Type: TypeUnsigned, MinValue: int64(MinExpensiveQueryTimeThreshold), MaxValue: math.MaxInt32, SetGlobal: func(s *SessionVars, val string) error { + {Scope: ScopeInstance, Name: TiDBExpensiveQueryTimeThreshold, Value: strconv.Itoa(DefTiDBExpensiveQueryTimeThreshold), Type: TypeUnsigned, MinValue: int64(MinExpensiveQueryTimeThreshold), MaxValue: math.MaxInt32, SetGlobal: func(_ context.Context, s *SessionVars, val string) error { atomic.StoreUint64(&ExpensiveQueryTimeThreshold, uint64(tidbOptPositiveInt32(val, DefTiDBExpensiveQueryTimeThreshold))) return nil - }, GetGlobal: func(s *SessionVars) (string, error) { + }, GetGlobal: func(_ context.Context, s *SessionVars) (string, error) { return strconv.FormatUint(atomic.LoadUint64(&ExpensiveQueryTimeThreshold), 10), nil }}, - {Scope: ScopeInstance, Name: TiDBEnableCollectExecutionInfo, Value: BoolToOnOff(DefTiDBEnableCollectExecutionInfo), Type: TypeBool, SetGlobal: func(s *SessionVars, val string) error { + {Scope: ScopeInstance, Name: TiDBEnableCollectExecutionInfo, Value: BoolToOnOff(DefTiDBEnableCollectExecutionInfo), Type: TypeBool, SetGlobal: func(_ context.Context, s *SessionVars, val string) error { oldConfig := config.GetGlobalConfig() newValue := TiDBOptOn(val) if oldConfig.Instance.EnableCollectExecutionInfo.Load() != newValue { @@ -435,23 +438,23 @@ var defaultSysVars = []*SysVar{ config.StoreGlobalConfig(&newConfig) } return nil - }, GetGlobal: func(s *SessionVars) (string, error) { + }, GetGlobal: func(_ context.Context, s *SessionVars) (string, error) { return BoolToOnOff(config.GetGlobalConfig().Instance.EnableCollectExecutionInfo.Load()), nil }}, - {Scope: ScopeInstance, Name: PluginLoad, Value: "", ReadOnly: true, GetGlobal: func(s *SessionVars) (string, error) { + {Scope: ScopeInstance, Name: PluginLoad, Value: "", ReadOnly: true, GetGlobal: func(_ context.Context, s *SessionVars) (string, error) { return config.GetGlobalConfig().Instance.PluginLoad, nil }}, - {Scope: ScopeInstance, Name: PluginDir, Value: "/data/deploy/plugin", ReadOnly: true, GetGlobal: func(s *SessionVars) (string, error) { + {Scope: ScopeInstance, Name: PluginDir, Value: "/data/deploy/plugin", ReadOnly: true, GetGlobal: func(_ context.Context, s *SessionVars) (string, error) { return config.GetGlobalConfig().Instance.PluginDir, nil }}, - {Scope: ScopeInstance, Name: MaxConnections, Value: strconv.FormatUint(uint64(config.GetGlobalConfig().Instance.MaxConnections), 10), Type: TypeUnsigned, MinValue: 0, MaxValue: 100000, SetGlobal: func(s *SessionVars, val string) error { + {Scope: ScopeInstance, Name: MaxConnections, Value: strconv.FormatUint(uint64(config.GetGlobalConfig().Instance.MaxConnections), 10), Type: TypeUnsigned, MinValue: 0, MaxValue: 100000, SetGlobal: func(_ context.Context, s *SessionVars, val string) error { config.GetGlobalConfig().Instance.MaxConnections = uint32(TidbOptInt64(val, 0)) return nil - }, GetGlobal: func(s *SessionVars) (string, error) { + }, GetGlobal: func(_ context.Context, s *SessionVars) (string, error) { return strconv.FormatUint(uint64(config.GetGlobalConfig().Instance.MaxConnections), 10), nil }}, {Scope: ScopeInstance, Name: TiDBEnableDDL, Value: BoolToOnOff(config.GetGlobalConfig().Instance.TiDBEnableDDL.Load()), Type: TypeBool, - SetGlobal: func(s *SessionVars, val string) error { + SetGlobal: func(_ context.Context, s *SessionVars, val string) error { oldVal, newVal := config.GetGlobalConfig().Instance.TiDBEnableDDL.Load(), TiDBOptOn(val) if oldVal != newVal { err := switchDDL(newVal) @@ -460,14 +463,14 @@ var defaultSysVars = []*SysVar{ } return nil }, - GetGlobal: func(s *SessionVars) (string, error) { + GetGlobal: func(_ context.Context, s *SessionVars) (string, error) { return BoolToOnOff(config.GetGlobalConfig().Instance.TiDBEnableDDL.Load()), nil }, }, - {Scope: ScopeInstance, Name: TiDBRCReadCheckTS, Value: BoolToOnOff(DefRCReadCheckTS), Type: TypeBool, SetGlobal: func(s *SessionVars, val string) error { + {Scope: ScopeInstance, Name: TiDBRCReadCheckTS, Value: BoolToOnOff(DefRCReadCheckTS), Type: TypeBool, SetGlobal: func(_ context.Context, s *SessionVars, val string) error { EnableRCReadCheckTS.Store(TiDBOptOn(val)) return nil - }, GetGlobal: func(s *SessionVars) (string, error) { + }, GetGlobal: func(_ context.Context, s *SessionVars) (string, error) { return BoolToOnOff(EnableRCReadCheckTS.Load()), nil }}, @@ -486,22 +489,22 @@ var defaultSysVars = []*SysVar{ /* TiDB specific variables */ {Scope: ScopeGlobal, Name: TiDBTSOClientBatchMaxWaitTime, Value: strconv.FormatFloat(DefTiDBTSOClientBatchMaxWaitTime, 'f', -1, 64), Type: TypeFloat, MinValue: 0, MaxValue: 10, - GetGlobal: func(sv *SessionVars) (string, error) { + GetGlobal: func(_ context.Context, sv *SessionVars) (string, error) { return strconv.FormatFloat(MaxTSOBatchWaitInterval.Load(), 'f', -1, 64), nil }, - SetGlobal: func(s *SessionVars, val string) error { + SetGlobal: func(_ context.Context, s *SessionVars, val string) error { (*SetPDClientDynamicOption.Load())(TiDBTSOClientBatchMaxWaitTime, val) return nil }}, - {Scope: ScopeGlobal, Name: TiDBEnableTSOFollowerProxy, Value: BoolToOnOff(DefTiDBEnableTSOFollowerProxy), Type: TypeBool, GetGlobal: func(sv *SessionVars) (string, error) { + {Scope: ScopeGlobal, Name: TiDBEnableTSOFollowerProxy, Value: BoolToOnOff(DefTiDBEnableTSOFollowerProxy), Type: TypeBool, GetGlobal: func(_ context.Context, sv *SessionVars) (string, error) { return BoolToOnOff(EnableTSOFollowerProxy.Load()), nil - }, SetGlobal: func(s *SessionVars, val string) error { + }, SetGlobal: func(_ context.Context, s *SessionVars, val string) error { (*SetPDClientDynamicOption.Load())(TiDBEnableTSOFollowerProxy, val) return nil }}, - {Scope: ScopeGlobal, Name: TiDBEnableLocalTxn, Value: BoolToOnOff(DefTiDBEnableLocalTxn), Hidden: true, Type: TypeBool, GetGlobal: func(sv *SessionVars) (string, error) { + {Scope: ScopeGlobal, Name: TiDBEnableLocalTxn, Value: BoolToOnOff(DefTiDBEnableLocalTxn), Hidden: true, Type: TypeBool, GetGlobal: func(_ context.Context, sv *SessionVars) (string, error) { return BoolToOnOff(EnableLocalTxn.Load()), nil - }, SetGlobal: func(s *SessionVars, val string) error { + }, SetGlobal: func(_ context.Context, s *SessionVars, val string) error { oldVal := EnableLocalTxn.Load() newVal := TiDBOptOn(val) // Make sure the TxnScope is always Global when disable the Local Txn. @@ -515,82 +518,82 @@ var defaultSysVars = []*SysVar{ {Scope: ScopeGlobal, Name: TiDBAutoAnalyzeRatio, Value: strconv.FormatFloat(DefAutoAnalyzeRatio, 'f', -1, 64), Type: TypeFloat, MinValue: 0, MaxValue: math.MaxUint64}, {Scope: ScopeGlobal, Name: TiDBAutoAnalyzeStartTime, Value: DefAutoAnalyzeStartTime, Type: TypeTime}, {Scope: ScopeGlobal, Name: TiDBAutoAnalyzeEndTime, Value: DefAutoAnalyzeEndTime, Type: TypeTime}, - {Scope: ScopeGlobal, Name: TiDBMemQuotaBindingCache, Value: strconv.FormatInt(DefTiDBMemQuotaBindingCache, 10), Type: TypeUnsigned, MaxValue: math.MaxInt32, GetGlobal: func(sv *SessionVars) (string, error) { + {Scope: ScopeGlobal, Name: TiDBMemQuotaBindingCache, Value: strconv.FormatInt(DefTiDBMemQuotaBindingCache, 10), Type: TypeUnsigned, MaxValue: math.MaxInt32, GetGlobal: func(_ context.Context, sv *SessionVars) (string, error) { return strconv.FormatInt(MemQuotaBindingCache.Load(), 10), nil - }, SetGlobal: func(s *SessionVars, val string) error { + }, SetGlobal: func(_ context.Context, s *SessionVars, val string) error { MemQuotaBindingCache.Store(TidbOptInt64(val, DefTiDBMemQuotaBindingCache)) return nil }}, - {Scope: ScopeGlobal, Name: TiDBDDLFlashbackConcurrency, Value: strconv.Itoa(DefTiDBDDLFlashbackConcurrency), Type: TypeUnsigned, MinValue: 1, MaxValue: MaxConfigurableConcurrency, SetGlobal: func(s *SessionVars, val string) error { + {Scope: ScopeGlobal, Name: TiDBDDLFlashbackConcurrency, Value: strconv.Itoa(DefTiDBDDLFlashbackConcurrency), Type: TypeUnsigned, MinValue: 1, MaxValue: MaxConfigurableConcurrency, SetGlobal: func(_ context.Context, s *SessionVars, val string) error { SetDDLFlashbackConcurrency(int32(tidbOptPositiveInt32(val, DefTiDBDDLFlashbackConcurrency))) return nil }}, - {Scope: ScopeGlobal, Name: TiDBDDLReorgWorkerCount, Value: strconv.Itoa(DefTiDBDDLReorgWorkerCount), Type: TypeUnsigned, MinValue: 1, MaxValue: MaxConfigurableConcurrency, SetGlobal: func(s *SessionVars, val string) error { + {Scope: ScopeGlobal, Name: TiDBDDLReorgWorkerCount, Value: strconv.Itoa(DefTiDBDDLReorgWorkerCount), Type: TypeUnsigned, MinValue: 1, MaxValue: MaxConfigurableConcurrency, SetGlobal: func(_ context.Context, s *SessionVars, val string) error { SetDDLReorgWorkerCounter(int32(tidbOptPositiveInt32(val, DefTiDBDDLReorgWorkerCount))) return nil }}, - {Scope: ScopeGlobal, Name: TiDBDDLReorgBatchSize, Value: strconv.Itoa(DefTiDBDDLReorgBatchSize), Type: TypeUnsigned, MinValue: int64(MinDDLReorgBatchSize), MaxValue: uint64(MaxDDLReorgBatchSize), SetGlobal: func(s *SessionVars, val string) error { + {Scope: ScopeGlobal, Name: TiDBDDLReorgBatchSize, Value: strconv.Itoa(DefTiDBDDLReorgBatchSize), Type: TypeUnsigned, MinValue: int64(MinDDLReorgBatchSize), MaxValue: uint64(MaxDDLReorgBatchSize), SetGlobal: func(_ context.Context, s *SessionVars, val string) error { SetDDLReorgBatchSize(int32(tidbOptPositiveInt32(val, DefTiDBDDLReorgBatchSize))) return nil }}, - {Scope: ScopeGlobal, Name: TiDBDDLErrorCountLimit, Value: strconv.Itoa(DefTiDBDDLErrorCountLimit), Type: TypeUnsigned, MinValue: 0, MaxValue: math.MaxInt64, SetGlobal: func(s *SessionVars, val string) error { + {Scope: ScopeGlobal, Name: TiDBDDLErrorCountLimit, Value: strconv.Itoa(DefTiDBDDLErrorCountLimit), Type: TypeUnsigned, MinValue: 0, MaxValue: math.MaxInt64, SetGlobal: func(_ context.Context, s *SessionVars, val string) error { SetDDLErrorCountLimit(TidbOptInt64(val, DefTiDBDDLErrorCountLimit)) return nil }}, - {Scope: ScopeGlobal, Name: TiDBMaxDeltaSchemaCount, Value: strconv.Itoa(DefTiDBMaxDeltaSchemaCount), Type: TypeUnsigned, MinValue: 100, MaxValue: 16384, SetGlobal: func(s *SessionVars, val string) error { + {Scope: ScopeGlobal, Name: TiDBMaxDeltaSchemaCount, Value: strconv.Itoa(DefTiDBMaxDeltaSchemaCount), Type: TypeUnsigned, MinValue: 100, MaxValue: 16384, SetGlobal: func(_ context.Context, s *SessionVars, val string) error { // It's a global variable, but it also wants to be cached in server. SetMaxDeltaSchemaCount(TidbOptInt64(val, DefTiDBMaxDeltaSchemaCount)) return nil }}, {Scope: ScopeGlobal, Name: TiDBScatterRegion, Value: BoolToOnOff(DefTiDBScatterRegion), Type: TypeBool}, {Scope: ScopeGlobal, Name: TiDBEnableStmtSummary, Value: BoolToOnOff(DefTiDBEnableStmtSummary), Type: TypeBool, AllowEmpty: true, - SetGlobal: func(s *SessionVars, val string) error { + SetGlobal: func(_ context.Context, s *SessionVars, val string) error { return stmtsummary.StmtSummaryByDigestMap.SetEnabled(TiDBOptOn(val)) }}, {Scope: ScopeGlobal, Name: TiDBStmtSummaryInternalQuery, Value: BoolToOnOff(DefTiDBStmtSummaryInternalQuery), Type: TypeBool, AllowEmpty: true, - SetGlobal: func(s *SessionVars, val string) error { + SetGlobal: func(_ context.Context, s *SessionVars, val string) error { return stmtsummary.StmtSummaryByDigestMap.SetEnabledInternalQuery(TiDBOptOn(val)) }}, {Scope: ScopeGlobal, Name: TiDBStmtSummaryRefreshInterval, Value: strconv.Itoa(DefTiDBStmtSummaryRefreshInterval), Type: TypeInt, MinValue: 1, MaxValue: math.MaxInt32, AllowEmpty: true, - SetGlobal: func(s *SessionVars, val string) error { + SetGlobal: func(_ context.Context, s *SessionVars, val string) error { // convert val to int64 return stmtsummary.StmtSummaryByDigestMap.SetRefreshInterval(TidbOptInt64(val, DefTiDBStmtSummaryRefreshInterval)) }}, {Scope: ScopeGlobal, Name: TiDBStmtSummaryHistorySize, Value: strconv.Itoa(DefTiDBStmtSummaryHistorySize), Type: TypeInt, MinValue: 0, MaxValue: math.MaxUint8, AllowEmpty: true, - SetGlobal: func(s *SessionVars, val string) error { + SetGlobal: func(_ context.Context, s *SessionVars, val string) error { return stmtsummary.StmtSummaryByDigestMap.SetHistorySize(TidbOptInt(val, DefTiDBStmtSummaryHistorySize)) }}, {Scope: ScopeGlobal, Name: TiDBStmtSummaryMaxStmtCount, Value: strconv.Itoa(DefTiDBStmtSummaryMaxStmtCount), Type: TypeInt, MinValue: 1, MaxValue: math.MaxInt16, AllowEmpty: true, - SetGlobal: func(s *SessionVars, val string) error { + SetGlobal: func(_ context.Context, s *SessionVars, val string) error { return stmtsummary.StmtSummaryByDigestMap.SetMaxStmtCount(uint(TidbOptInt(val, DefTiDBStmtSummaryMaxStmtCount))) }}, {Scope: ScopeGlobal, Name: TiDBStmtSummaryMaxSQLLength, Value: strconv.Itoa(DefTiDBStmtSummaryMaxSQLLength), Type: TypeInt, MinValue: 0, MaxValue: math.MaxInt32, AllowEmpty: true, - SetGlobal: func(s *SessionVars, val string) error { + SetGlobal: func(_ context.Context, s *SessionVars, val string) error { return stmtsummary.StmtSummaryByDigestMap.SetMaxSQLLength(TidbOptInt(val, DefTiDBStmtSummaryMaxSQLLength)) }}, {Scope: ScopeGlobal, Name: TiDBCapturePlanBaseline, Value: DefTiDBCapturePlanBaseline, Type: TypeBool, AllowEmptyAll: true}, {Scope: ScopeGlobal, Name: TiDBEvolvePlanTaskMaxTime, Value: strconv.Itoa(DefTiDBEvolvePlanTaskMaxTime), Type: TypeInt, MinValue: -1, MaxValue: math.MaxInt64}, {Scope: ScopeGlobal, Name: TiDBEvolvePlanTaskStartTime, Value: DefTiDBEvolvePlanTaskStartTime, Type: TypeTime}, {Scope: ScopeGlobal, Name: TiDBEvolvePlanTaskEndTime, Value: DefTiDBEvolvePlanTaskEndTime, Type: TypeTime}, - {Scope: ScopeGlobal, Name: TiDBStoreLimit, Value: strconv.FormatInt(atomic.LoadInt64(&config.GetGlobalConfig().TiKVClient.StoreLimit), 10), Type: TypeInt, MinValue: 0, MaxValue: math.MaxInt64, GetGlobal: func(s *SessionVars) (string, error) { + {Scope: ScopeGlobal, Name: TiDBStoreLimit, Value: strconv.FormatInt(atomic.LoadInt64(&config.GetGlobalConfig().TiKVClient.StoreLimit), 10), Type: TypeInt, MinValue: 0, MaxValue: math.MaxInt64, GetGlobal: func(_ context.Context, s *SessionVars) (string, error) { return strconv.FormatInt(tikvstore.StoreLimit.Load(), 10), nil - }, SetGlobal: func(s *SessionVars, val string) error { + }, SetGlobal: func(_ context.Context, s *SessionVars, val string) error { tikvstore.StoreLimit.Store(TidbOptInt64(val, DefTiDBStoreLimit)) return nil }}, {Scope: ScopeGlobal, Name: TiDBTxnCommitBatchSize, Value: strconv.FormatUint(tikvstore.DefTxnCommitBatchSize, 10), Type: TypeUnsigned, MinValue: 1, MaxValue: 1 << 30, - GetGlobal: func(sv *SessionVars) (string, error) { + GetGlobal: func(_ context.Context, sv *SessionVars) (string, error) { return strconv.FormatUint(tikvstore.TxnCommitBatchSize.Load(), 10), nil }, - SetGlobal: func(s *SessionVars, val string) error { + SetGlobal: func(_ context.Context, s *SessionVars, val string) error { tikvstore.TxnCommitBatchSize.Store(uint64(TidbOptInt64(val, int64(tikvstore.DefTxnCommitBatchSize)))) return nil }}, - {Scope: ScopeGlobal, Name: TiDBRestrictedReadOnly, Value: BoolToOnOff(DefTiDBRestrictedReadOnly), Type: TypeBool, SetGlobal: func(s *SessionVars, val string) error { + {Scope: ScopeGlobal, Name: TiDBRestrictedReadOnly, Value: BoolToOnOff(DefTiDBRestrictedReadOnly), Type: TypeBool, SetGlobal: func(_ context.Context, s *SessionVars, val string) error { on := TiDBOptOn(val) // For user initiated SET GLOBAL, also change the value of TiDBSuperReadOnly if on && s.StmtCtx.StmtType == "Set" { - err := s.GlobalVarsAccessor.SetGlobalSysVar(TiDBSuperReadOnly, "ON") + err := s.GlobalVarsAccessor.SetGlobalSysVar(context.Background(), TiDBSuperReadOnly, "ON") if err != nil { return err } @@ -610,11 +613,11 @@ var defaultSysVars = []*SysVar{ } } return normalizedValue, nil - }, SetGlobal: func(s *SessionVars, val string) error { + }, SetGlobal: func(_ context.Context, s *SessionVars, val string) error { VarTiDBSuperReadOnly.Store(TiDBOptOn(val)) return nil }}, - {Scope: ScopeGlobal, Name: TiDBEnableGOGCTuner, Value: BoolToOnOff(DefTiDBEnableGOGCTuner), Type: TypeBool, SetGlobal: func(s *SessionVars, val string) error { + {Scope: ScopeGlobal, Name: TiDBEnableGOGCTuner, Value: BoolToOnOff(DefTiDBEnableGOGCTuner), Type: TypeBool, SetGlobal: func(_ context.Context, s *SessionVars, val string) error { on := TiDBOptOn(val) gctuner.EnableGOGCTuner.Store(on) if !on { @@ -626,28 +629,28 @@ var defaultSysVars = []*SysVar{ {Scope: ScopeGlobal, Name: TiDBEnableTelemetry, Value: BoolToOnOff(DefTiDBEnableTelemetry), Type: TypeBool}, {Scope: ScopeGlobal, Name: TiDBEnableHistoricalStats, Value: Off, Type: TypeBool}, /* tikv gc metrics */ - {Scope: ScopeGlobal, Name: TiDBGCEnable, Value: On, Type: TypeBool, GetGlobal: func(s *SessionVars) (string, error) { + {Scope: ScopeGlobal, Name: TiDBGCEnable, Value: On, Type: TypeBool, GetGlobal: func(_ context.Context, s *SessionVars) (string, error) { return getTiDBTableValue(s, "tikv_gc_enable", On) - }, SetGlobal: func(s *SessionVars, val string) error { + }, SetGlobal: func(_ context.Context, s *SessionVars, val string) error { return setTiDBTableValue(s, "tikv_gc_enable", val, "Current GC enable status") }}, - {Scope: ScopeGlobal, Name: TiDBGCRunInterval, Value: "10m0s", Type: TypeDuration, MinValue: int64(time.Minute * 10), MaxValue: uint64(time.Hour * 24 * 365), GetGlobal: func(s *SessionVars) (string, error) { + {Scope: ScopeGlobal, Name: TiDBGCRunInterval, Value: "10m0s", Type: TypeDuration, MinValue: int64(time.Minute * 10), MaxValue: uint64(time.Hour * 24 * 365), GetGlobal: func(_ context.Context, s *SessionVars) (string, error) { return getTiDBTableValue(s, "tikv_gc_run_interval", "10m0s") - }, SetGlobal: func(s *SessionVars, val string) error { + }, SetGlobal: func(_ context.Context, s *SessionVars, val string) error { return setTiDBTableValue(s, "tikv_gc_run_interval", val, "GC run interval, at least 10m, in Go format.") }}, - {Scope: ScopeGlobal, Name: TiDBGCLifetime, Value: "10m0s", Type: TypeDuration, MinValue: int64(time.Minute * 10), MaxValue: uint64(time.Hour * 24 * 365), GetGlobal: func(s *SessionVars) (string, error) { + {Scope: ScopeGlobal, Name: TiDBGCLifetime, Value: "10m0s", Type: TypeDuration, MinValue: int64(time.Minute * 10), MaxValue: uint64(time.Hour * 24 * 365), GetGlobal: func(_ context.Context, s *SessionVars) (string, error) { return getTiDBTableValue(s, "tikv_gc_life_time", "10m0s") - }, SetGlobal: func(s *SessionVars, val string) error { + }, SetGlobal: func(_ context.Context, s *SessionVars, val string) error { return setTiDBTableValue(s, "tikv_gc_life_time", val, "All versions within life time will not be collected by GC, at least 10m, in Go format.") }}, - {Scope: ScopeGlobal, Name: TiDBGCConcurrency, Value: "-1", Type: TypeInt, MinValue: 1, MaxValue: MaxConfigurableConcurrency, AllowAutoValue: true, GetGlobal: func(s *SessionVars) (string, error) { + {Scope: ScopeGlobal, Name: TiDBGCConcurrency, Value: "-1", Type: TypeInt, MinValue: 1, MaxValue: MaxConfigurableConcurrency, AllowAutoValue: true, GetGlobal: func(_ context.Context, s *SessionVars) (string, error) { autoConcurrencyVal, err := getTiDBTableValue(s, "tikv_gc_auto_concurrency", On) if err == nil && autoConcurrencyVal == On { return "-1", nil // convention for "AUTO" } return getTiDBTableValue(s, "tikv_gc_concurrency", "-1") - }, SetGlobal: func(s *SessionVars, val string) error { + }, SetGlobal: func(_ context.Context, s *SessionVars, val string) error { autoConcurrency := Off if val == "-1" { autoConcurrency = On @@ -658,16 +661,16 @@ var defaultSysVars = []*SysVar{ } return setTiDBTableValue(s, "tikv_gc_concurrency", val, "How many goroutines used to do GC parallel, [1, 256], default 2") }}, - {Scope: ScopeGlobal, Name: TiDBGCScanLockMode, Value: "LEGACY", Type: TypeEnum, PossibleValues: []string{"PHYSICAL", "LEGACY"}, GetGlobal: func(s *SessionVars) (string, error) { + {Scope: ScopeGlobal, Name: TiDBGCScanLockMode, Value: "LEGACY", Type: TypeEnum, PossibleValues: []string{"PHYSICAL", "LEGACY"}, GetGlobal: func(_ context.Context, s *SessionVars) (string, error) { return getTiDBTableValue(s, "tikv_gc_scan_lock_mode", "LEGACY") - }, SetGlobal: func(s *SessionVars, val string) error { + }, SetGlobal: func(_ context.Context, s *SessionVars, val string) error { return setTiDBTableValue(s, "tikv_gc_scan_lock_mode", val, "Mode of scanning locks, \"physical\" or \"legacy\"") }}, - {Scope: ScopeGlobal, Name: TiDBGCMaxWaitTime, Value: strconv.Itoa(DefTiDBGCMaxWaitTime), Type: TypeInt, MinValue: 600, MaxValue: 31536000, SetGlobal: func(s *SessionVars, val string) error { + {Scope: ScopeGlobal, Name: TiDBGCMaxWaitTime, Value: strconv.Itoa(DefTiDBGCMaxWaitTime), Type: TypeInt, MinValue: 600, MaxValue: 31536000, SetGlobal: func(_ context.Context, s *SessionVars, val string) error { GCMaxWaitTime.Store(TidbOptInt64(val, DefTiDBGCMaxWaitTime)) return nil }}, - {Scope: ScopeGlobal, Name: TiDBTableCacheLease, Value: strconv.Itoa(DefTiDBTableCacheLease), Type: TypeUnsigned, MinValue: 1, MaxValue: 10, SetGlobal: func(s *SessionVars, sVal string) error { + {Scope: ScopeGlobal, Name: TiDBTableCacheLease, Value: strconv.Itoa(DefTiDBTableCacheLease), Type: TypeUnsigned, MinValue: 1, MaxValue: 10, SetGlobal: func(_ context.Context, s *SessionVars, sVal string) error { var val int64 val, err := strconv.ParseInt(sVal, 10, 64) if err != nil { @@ -679,7 +682,7 @@ var defaultSysVars = []*SysVar{ {Scope: ScopeGlobal, Name: TiDBAutoAnalyzePartitionBatchSize, Value: strconv.Itoa(DefTiDBAutoAnalyzePartitionBatchSize), Type: TypeUnsigned, MinValue: 1, MaxValue: 1024, - SetGlobal: func(vars *SessionVars, s string) error { + SetGlobal: func(_ context.Context, vars *SessionVars, s string) error { var val int64 val, err := strconv.ParseInt(s, 10, 64) if err != nil { @@ -693,9 +696,9 @@ var defaultSysVars = []*SysVar{ // TopSQL enable only be controlled by TopSQL pub/sub sinker. // This global variable only uses to update the global config which store in PD(ETCD). {Scope: ScopeGlobal, Name: TiDBEnableTopSQL, Value: BoolToOnOff(topsqlstate.DefTiDBTopSQLEnable), Type: TypeBool, AllowEmpty: true, GlobalConfigName: GlobalConfigEnableTopSQL}, - {Scope: ScopeGlobal, Name: TiDBTopSQLMaxTimeSeriesCount, Value: strconv.Itoa(topsqlstate.DefTiDBTopSQLMaxTimeSeriesCount), Type: TypeInt, MinValue: 1, MaxValue: 5000, GetGlobal: func(s *SessionVars) (string, error) { + {Scope: ScopeGlobal, Name: TiDBTopSQLMaxTimeSeriesCount, Value: strconv.Itoa(topsqlstate.DefTiDBTopSQLMaxTimeSeriesCount), Type: TypeInt, MinValue: 1, MaxValue: 5000, GetGlobal: func(_ context.Context, s *SessionVars) (string, error) { return strconv.FormatInt(topsqlstate.GlobalState.MaxStatementCount.Load(), 10), nil - }, SetGlobal: func(vars *SessionVars, s string) error { + }, SetGlobal: func(_ context.Context, vars *SessionVars, s string) error { val, err := strconv.ParseInt(s, 10, 64) if err != nil { return err @@ -703,9 +706,9 @@ var defaultSysVars = []*SysVar{ topsqlstate.GlobalState.MaxStatementCount.Store(val) return nil }}, - {Scope: ScopeGlobal, Name: TiDBTopSQLMaxMetaCount, Value: strconv.Itoa(topsqlstate.DefTiDBTopSQLMaxMetaCount), Type: TypeInt, MinValue: 1, MaxValue: 10000, GetGlobal: func(s *SessionVars) (string, error) { + {Scope: ScopeGlobal, Name: TiDBTopSQLMaxMetaCount, Value: strconv.Itoa(topsqlstate.DefTiDBTopSQLMaxMetaCount), Type: TypeInt, MinValue: 1, MaxValue: 10000, GetGlobal: func(_ context.Context, s *SessionVars) (string, error) { return strconv.FormatInt(topsqlstate.GlobalState.MaxCollect.Load(), 10), nil - }, SetGlobal: func(vars *SessionVars, s string) error { + }, SetGlobal: func(_ context.Context, vars *SessionVars, s string) error { val, err := strconv.ParseInt(s, 10, 64) if err != nil { return err @@ -716,50 +719,80 @@ var defaultSysVars = []*SysVar{ {Scope: ScopeGlobal, Name: SkipNameResolve, Value: Off, Type: TypeBool}, {Scope: ScopeGlobal, Name: DefaultAuthPlugin, Value: mysql.AuthNativePassword, Type: TypeEnum, PossibleValues: []string{mysql.AuthNativePassword, mysql.AuthCachingSha2Password, mysql.AuthTiDBSM3Password}}, {Scope: ScopeGlobal, Name: TiDBPersistAnalyzeOptions, Value: BoolToOnOff(DefTiDBPersistAnalyzeOptions), Type: TypeBool, - GetGlobal: func(s *SessionVars) (string, error) { + GetGlobal: func(_ context.Context, s *SessionVars) (string, error) { return BoolToOnOff(PersistAnalyzeOptions.Load()), nil }, - SetGlobal: func(s *SessionVars, val string) error { + SetGlobal: func(_ context.Context, s *SessionVars, val string) error { PersistAnalyzeOptions.Store(TiDBOptOn(val)) return nil }, }, {Scope: ScopeGlobal, Name: TiDBEnableAutoAnalyze, Value: BoolToOnOff(DefTiDBEnableAutoAnalyze), Type: TypeBool, - GetGlobal: func(s *SessionVars) (string, error) { + GetGlobal: func(_ context.Context, s *SessionVars) (string, error) { return BoolToOnOff(RunAutoAnalyze.Load()), nil }, - SetGlobal: func(s *SessionVars, val string) error { + SetGlobal: func(_ context.Context, s *SessionVars, val string) error { RunAutoAnalyze.Store(TiDBOptOn(val)) return nil }, }, - {Scope: ScopeGlobal, Name: TiDBServerMemoryLimit, Value: strconv.FormatUint(DefTiDBServerMemoryLimit, 10), Type: TypeUnsigned, MinValue: 0, MaxValue: math.MaxUint64, - GetGlobal: func(s *SessionVars) (string, error) { - return memory.ServerMemoryLimit.String(), nil + {Scope: ScopeGlobal, Name: TiDBGOGCTunerThreshold, Value: strconv.FormatFloat(DefTiDBGOGCTunerThreshold, 'f', -1, 64), Type: TypeFloat, MinValue: 0, MaxValue: math.MaxUint64, + GetGlobal: func(_ context.Context, s *SessionVars) (string, error) { + return strconv.FormatFloat(GOGCTunerThreshold.Load(), 'f', -1, 64), nil }, Validation: func(s *SessionVars, normalizedValue string, originalValue string, scope ScopeFlag) (string, error) { - intVal, err := strconv.ParseUint(normalizedValue, 10, 64) + floatValue := tidbOptFloat64(normalizedValue, DefTiDBGOGCTunerThreshold) + globalMemoryLimitTuner := gctuner.GlobalMemoryLimitTuner.GetPercentage() + if floatValue < 0 && floatValue > 0.9 { + return "", ErrWrongValueForVar.GenWithStackByArgs(TiDBGOGCTunerThreshold, normalizedValue) + } + // globalMemoryLimitTuner must not be 0. it will be 0 when tidb_server_memory_limit_gc_trigger is not set during startup. + if globalMemoryLimitTuner != 0 && globalMemoryLimitTuner < floatValue+0.05 { + return "", errors.New("tidb_gogc_tuner_threshold should be less than tidb_server_memory_limit_gc_trigger - 0.05") + } + return strconv.FormatFloat(floatValue, 'f', -1, 64), nil + }, + SetGlobal: func(_ context.Context, s *SessionVars, val string) (err error) { + factor := tidbOptFloat64(val, DefTiDBGOGCTunerThreshold) + GOGCTunerThreshold.Store(factor) + memTotal := memory.ServerMemoryLimit.Load() + if memTotal == 0 { + memTotal, err = memory.MemTotal() + if err != nil { + return err + } + } + if factor > 0 { + threshold := float64(memTotal) * factor + gctuner.Tuning(uint64(threshold)) + } + return nil + }, + }, + {Scope: ScopeGlobal, Name: TiDBServerMemoryLimit, Value: DefTiDBServerMemoryLimit, Type: TypeStr, + GetGlobal: func(_ context.Context, s *SessionVars) (string, error) { + return memory.ServerMemoryLimitOriginText.Load(), nil + }, + Validation: func(s *SessionVars, normalizedValue string, originalValue string, scope ScopeFlag) (string, error) { + _, str, err := parseMemoryLimit(s, normalizedValue, originalValue) if err != nil { return "", err } - if intVal > 0 && intVal < (512<<20) { // 512 MB - s.StmtCtx.AppendWarning(ErrTruncatedWrongValue.GenWithStackByArgs(TiDBServerMemoryLimit, originalValue)) - intVal = 512 << 20 - } - return strconv.FormatUint(intVal, 10), nil + return str, nil }, - SetGlobal: func(s *SessionVars, val string) error { - intVal, err := strconv.ParseUint(val, 10, 64) + SetGlobal: func(_ context.Context, s *SessionVars, val string) error { + bt, str, err := parseMemoryLimit(s, val, val) if err != nil { return err } - memory.ServerMemoryLimit.Store(intVal) + memory.ServerMemoryLimitOriginText.Store(str) + memory.ServerMemoryLimit.Store(bt) gctuner.GlobalMemoryLimitTuner.UpdateMemoryLimit() return nil }, }, {Scope: ScopeGlobal, Name: TiDBServerMemoryLimitSessMinSize, Value: strconv.FormatUint(DefTiDBServerMemoryLimitSessMinSize, 10), Type: TypeUnsigned, MinValue: 0, MaxValue: math.MaxUint64, - GetGlobal: func(s *SessionVars) (string, error) { + GetGlobal: func(_ context.Context, s *SessionVars) (string, error) { return memory.ServerMemoryLimitSessMinSize.String(), nil }, Validation: func(s *SessionVars, normalizedValue string, originalValue string, scope ScopeFlag) (string, error) { @@ -773,7 +806,7 @@ var defaultSysVars = []*SysVar{ } return strconv.FormatUint(intVal, 10), nil }, - SetGlobal: func(s *SessionVars, val string) error { + SetGlobal: func(_ context.Context, s *SessionVars, val string) error { intVal, err := strconv.ParseUint(val, 10, 64) if err != nil { return err @@ -783,7 +816,7 @@ var defaultSysVars = []*SysVar{ }, }, {Scope: ScopeGlobal, Name: TiDBServerMemoryLimitGCTrigger, Value: strconv.FormatFloat(DefTiDBServerMemoryLimitGCTrigger, 'f', -1, 64), Type: TypeFloat, MinValue: 0, MaxValue: math.MaxUint64, - GetGlobal: func(s *SessionVars) (string, error) { + GetGlobal: func(_ context.Context, s *SessionVars) (string, error) { return strconv.FormatFloat(gctuner.GlobalMemoryLimitTuner.GetPercentage(), 'f', -1, 64), nil }, Validation: func(s *SessionVars, normalizedValue string, originalValue string, scope ScopeFlag) (string, error) { @@ -791,13 +824,18 @@ var defaultSysVars = []*SysVar{ if err != nil { return "", err } + gogcTunerThreshold := GOGCTunerThreshold.Load() if floatValue < 0.51 && floatValue > 1 { // 51% ~ 100% - s.StmtCtx.AppendWarning(ErrTruncatedWrongValue.GenWithStackByArgs(TiDBServerMemoryLimitGCTrigger, originalValue)) - floatValue = DefTiDBServerMemoryLimitGCTrigger + return "", ErrWrongValueForVar.GenWithStackByArgs(TiDBServerMemoryLimitGCTrigger, normalizedValue) + } + // gogcTunerThreshold must not be 0. it will be 0 when tidb_gogc_tuner_threshold is not set during startup. + if gogcTunerThreshold != 0 && floatValue < gogcTunerThreshold+0.05 { + return "", errors.New("tidb_server_memory_limit_gc_trigger should be greater than tidb_gogc_tuner_threshold + 0.05") } + return strconv.FormatFloat(floatValue, 'f', -1, 64), nil }, - SetGlobal: func(s *SessionVars, val string) error { + SetGlobal: func(_ context.Context, s *SessionVars, val string) error { floatValue, err := strconv.ParseFloat(val, 64) if err != nil { return err @@ -807,9 +845,9 @@ var defaultSysVars = []*SysVar{ return nil }, }, - {Scope: ScopeGlobal, Name: TiDBEnableColumnTracking, Value: BoolToOnOff(DefTiDBEnableColumnTracking), Type: TypeBool, GetGlobal: func(s *SessionVars) (string, error) { + {Scope: ScopeGlobal, Name: TiDBEnableColumnTracking, Value: BoolToOnOff(DefTiDBEnableColumnTracking), Type: TypeBool, GetGlobal: func(_ context.Context, s *SessionVars) (string, error) { return BoolToOnOff(EnableColumnTracking.Load()), nil - }, SetGlobal: func(s *SessionVars, val string) error { + }, SetGlobal: func(_ context.Context, s *SessionVars, val string) error { v := TiDBOptOn(val) // If this is a user initiated statement, // we log that column tracking is disabled. @@ -824,10 +862,10 @@ var defaultSysVars = []*SysVar{ return nil }}, {Scope: ScopeGlobal, Name: RequireSecureTransport, Value: BoolToOnOff(DefRequireSecureTransport), Type: TypeBool, - GetGlobal: func(s *SessionVars) (string, error) { + GetGlobal: func(_ context.Context, s *SessionVars) (string, error) { return BoolToOnOff(tls.RequireSecureTransport.Load()), nil }, - SetGlobal: func(s *SessionVars, val string) error { + SetGlobal: func(_ context.Context, s *SessionVars, val string) error { tls.RequireSecureTransport.Store(TiDBOptOn(val)) return nil }, Validation: func(vars *SessionVars, normalizedValue string, originalValue string, scope ScopeFlag) (string, error) { @@ -842,25 +880,25 @@ var defaultSysVars = []*SysVar{ }, }, {Scope: ScopeGlobal, Name: TiDBStatsLoadPseudoTimeout, Value: BoolToOnOff(DefTiDBStatsLoadPseudoTimeout), Type: TypeBool, - GetGlobal: func(s *SessionVars) (string, error) { + GetGlobal: func(_ context.Context, s *SessionVars) (string, error) { return BoolToOnOff(StatsLoadPseudoTimeout.Load()), nil }, - SetGlobal: func(s *SessionVars, val string) error { + SetGlobal: func(_ context.Context, s *SessionVars, val string) error { StatsLoadPseudoTimeout.Store(TiDBOptOn(val)) return nil }, }, - {Scope: ScopeGlobal, Name: TiDBEnableBatchDML, Value: BoolToOnOff(DefTiDBEnableBatchDML), Type: TypeBool, SetGlobal: func(s *SessionVars, val string) error { + {Scope: ScopeGlobal, Name: TiDBEnableBatchDML, Value: BoolToOnOff(DefTiDBEnableBatchDML), Type: TypeBool, SetGlobal: func(_ context.Context, s *SessionVars, val string) error { EnableBatchDML.Store(TiDBOptOn(val)) return nil - }, GetGlobal: func(s *SessionVars) (string, error) { + }, GetGlobal: func(_ context.Context, s *SessionVars) (string, error) { return BoolToOnOff(EnableBatchDML.Load()), nil }}, {Scope: ScopeGlobal, Name: TiDBStatsCacheMemQuota, Value: strconv.Itoa(DefTiDBStatsCacheMemQuota), MinValue: 0, MaxValue: MaxTiDBStatsCacheMemQuota, Type: TypeInt, - GetGlobal: func(vars *SessionVars) (string, error) { + GetGlobal: func(_ context.Context, vars *SessionVars) (string, error) { return strconv.FormatInt(StatsCacheMemQuota.Load(), 10), nil - }, SetGlobal: func(vars *SessionVars, s string) error { + }, SetGlobal: func(_ context.Context, vars *SessionVars, s string) error { v := TidbOptInt64(s, DefTiDBStatsCacheMemQuota) oldv := StatsCacheMemQuota.Load() if v != oldv { @@ -870,25 +908,25 @@ var defaultSysVars = []*SysVar{ return nil }, }, - {Scope: ScopeGlobal, Name: TiDBQueryLogMaxLen, Value: strconv.Itoa(DefTiDBQueryLogMaxLen), Type: TypeInt, MinValue: 0, MaxValue: 1073741824, SetGlobal: func(s *SessionVars, val string) error { + {Scope: ScopeGlobal, Name: TiDBQueryLogMaxLen, Value: strconv.Itoa(DefTiDBQueryLogMaxLen), Type: TypeInt, MinValue: 0, MaxValue: 1073741824, SetGlobal: func(_ context.Context, s *SessionVars, val string) error { QueryLogMaxLen.Store(int32(TidbOptInt64(val, DefTiDBQueryLogMaxLen))) return nil - }, GetGlobal: func(s *SessionVars) (string, error) { + }, GetGlobal: func(_ context.Context, s *SessionVars) (string, error) { return fmt.Sprint(QueryLogMaxLen.Load()), nil }}, - {Scope: ScopeGlobal, Name: TiDBCommitterConcurrency, Value: strconv.Itoa(DefTiDBCommitterConcurrency), Type: TypeInt, MinValue: 1, MaxValue: 10000, SetGlobal: func(s *SessionVars, val string) error { + {Scope: ScopeGlobal, Name: TiDBCommitterConcurrency, Value: strconv.Itoa(DefTiDBCommitterConcurrency), Type: TypeInt, MinValue: 1, MaxValue: 10000, SetGlobal: func(_ context.Context, s *SessionVars, val string) error { tikvutil.CommitterConcurrency.Store(int32(TidbOptInt64(val, DefTiDBCommitterConcurrency))) cfg := config.GetGlobalConfig().GetTiKVConfig() tikvcfg.StoreGlobalConfig(cfg) return nil - }, GetGlobal: func(s *SessionVars) (string, error) { + }, GetGlobal: func(_ context.Context, s *SessionVars) (string, error) { return fmt.Sprint(tikvutil.CommitterConcurrency.Load()), nil }}, {Scope: ScopeGlobal, Name: TiDBMemQuotaAnalyze, Value: strconv.Itoa(DefTiDBMemQuotaAnalyze), Type: TypeInt, MinValue: -1, MaxValue: math.MaxInt64, - GetGlobal: func(s *SessionVars) (string, error) { + GetGlobal: func(_ context.Context, s *SessionVars) (string, error) { return strconv.FormatInt(GetMemQuotaAnalyze(), 10), nil }, - SetGlobal: func(s *SessionVars, val string) error { + SetGlobal: func(_ context.Context, s *SessionVars, val string) error { SetMemQuotaAnalyze(TidbOptInt64(val, DefTiDBMemQuotaAnalyze)) return nil }, @@ -904,13 +942,17 @@ var defaultSysVars = []*SysVar{ } return err }}, - {Scope: ScopeGlobal, Name: TiDBPrepPlanCacheMemoryGuardRatio, Value: strconv.FormatFloat(DefTiDBPrepPlanCacheMemoryGuardRatio, 'f', -1, 64), Type: TypeFloat, MinValue: 0.0, MaxValue: 1.0, SetGlobal: func(s *SessionVars, val string) error { + {Scope: ScopeGlobal | ScopeSession, Name: TiDBEnablePrepPlanCacheMemoryMonitor, Value: BoolToOnOff(DefTiDBEnablePrepPlanCacheMemoryMonitor), Type: TypeBool, SetSession: func(s *SessionVars, val string) error { + s.EnablePreparedPlanCacheMemoryMonitor = TiDBOptOn(val) + return nil + }}, + {Scope: ScopeGlobal, Name: TiDBPrepPlanCacheMemoryGuardRatio, Value: strconv.FormatFloat(DefTiDBPrepPlanCacheMemoryGuardRatio, 'f', -1, 64), Type: TypeFloat, MinValue: 0.0, MaxValue: 1.0, SetGlobal: func(_ context.Context, s *SessionVars, val string) error { f, err := strconv.ParseFloat(val, 64) if err == nil { PreparedPlanCacheMemoryGuardRatio.Store(f) } return err - }, GetGlobal: func(s *SessionVars) (string, error) { + }, GetGlobal: func(_ context.Context, s *SessionVars) (string, error) { return strconv.FormatFloat(PreparedPlanCacheMemoryGuardRatio.Load(), 'f', -1, 64), nil }}, {Scope: ScopeGlobal | ScopeSession, Name: TiDBEnableGeneralPlanCache, Value: BoolToOnOff(DefTiDBEnableGeneralPlanCache), Type: TypeBool, SetSession: func(s *SessionVars, val string) error { @@ -925,18 +967,18 @@ var defaultSysVars = []*SysVar{ return err }}, {Scope: ScopeGlobal, Name: TiDBMemOOMAction, Value: DefTiDBMemOOMAction, PossibleValues: []string{"CANCEL", "LOG"}, Type: TypeEnum, - GetGlobal: func(s *SessionVars) (string, error) { + GetGlobal: func(_ context.Context, s *SessionVars) (string, error) { return OOMAction.Load(), nil }, - SetGlobal: func(s *SessionVars, val string) error { + SetGlobal: func(_ context.Context, s *SessionVars, val string) error { OOMAction.Store(val) return nil }}, {Scope: ScopeGlobal, Name: TiDBMaxAutoAnalyzeTime, Value: strconv.Itoa(DefTiDBMaxAutoAnalyzeTime), Type: TypeInt, MinValue: 0, MaxValue: math.MaxInt32, - GetGlobal: func(s *SessionVars) (string, error) { + GetGlobal: func(_ context.Context, s *SessionVars) (string, error) { return strconv.FormatInt(MaxAutoAnalyzeTime.Load(), 10), nil }, - SetGlobal: func(s *SessionVars, val string) error { + SetGlobal: func(_ context.Context, s *SessionVars, val string) error { num, err := strconv.ParseInt(val, 10, 64) if err == nil { MaxAutoAnalyzeTime.Store(num) @@ -944,7 +986,7 @@ var defaultSysVars = []*SysVar{ return err }, }, - {Scope: ScopeGlobal, Name: TiDBEnableConcurrentDDL, Value: BoolToOnOff(DefTiDBEnableConcurrentDDL), Type: TypeBool, SetGlobal: func(s *SessionVars, val string) error { + {Scope: ScopeGlobal, Name: TiDBEnableConcurrentDDL, Value: BoolToOnOff(DefTiDBEnableConcurrentDDL), Type: TypeBool, SetGlobal: func(_ context.Context, s *SessionVars, val string) error { if EnableConcurrentDDL.Load() != TiDBOptOn(val) { err := SwitchConcurrentDDL(TiDBOptOn(val)) if err != nil { @@ -953,10 +995,10 @@ var defaultSysVars = []*SysVar{ EnableConcurrentDDL.Store(TiDBOptOn(val)) } return nil - }, GetGlobal: func(s *SessionVars) (string, error) { + }, GetGlobal: func(_ context.Context, s *SessionVars) (string, error) { return BoolToOnOff(EnableConcurrentDDL.Load()), nil }}, - {Scope: ScopeGlobal, Name: TiDBEnableMDL, Value: BoolToOnOff(DefTiDBEnableMDL), Type: TypeBool, SetGlobal: func(vars *SessionVars, val string) error { + {Scope: ScopeGlobal, Name: TiDBEnableMDL, Value: BoolToOnOff(DefTiDBEnableMDL), Type: TypeBool, SetGlobal: func(_ context.Context, vars *SessionVars, val string) error { if EnableMDL.Load() != TiDBOptOn(val) { err := SwitchMDL(TiDBOptOn(val)) if err != nil { @@ -964,50 +1006,49 @@ var defaultSysVars = []*SysVar{ } } return nil - }, GetGlobal: func(vars *SessionVars) (string, error) { + }, GetGlobal: func(_ context.Context, vars *SessionVars) (string, error) { return BoolToOnOff(EnableMDL.Load()), nil }}, - {Scope: ScopeGlobal, Name: TiDBEnableNoopVariables, Value: BoolToOnOff(DefTiDBEnableNoopVariables), Type: TypeEnum, PossibleValues: []string{Off, On}, SetGlobal: func(s *SessionVars, val string) error { + {Scope: ScopeGlobal, Name: TiDBEnableNoopVariables, Value: BoolToOnOff(DefTiDBEnableNoopVariables), Type: TypeEnum, PossibleValues: []string{Off, On}, SetGlobal: func(_ context.Context, s *SessionVars, val string) error { EnableNoopVariables.Store(TiDBOptOn(val)) return nil - }, GetGlobal: func(s *SessionVars) (string, error) { + }, GetGlobal: func(_ context.Context, s *SessionVars) (string, error) { return BoolToOnOff(EnableNoopVariables.Load()), nil }}, - {Scope: ScopeGlobal, Name: TiDBAuthSigningCert, Value: "", Type: TypeStr, SetGlobal: func(s *SessionVars, val string) error { - sessionstates.SetCertPath(val) - return nil - }}, - {Scope: ScopeGlobal, Name: TiDBAuthSigningKey, Value: "", Type: TypeStr, SetGlobal: func(s *SessionVars, val string) error { - sessionstates.SetKeyPath(val) - return nil - }}, - {Scope: ScopeGlobal, Name: TiDBEnableGCAwareMemoryTrack, Value: BoolToOnOff(DefEnableTiDBGCAwareMemoryTrack), Type: TypeBool, SetGlobal: func(s *SessionVars, val string) error { + {Scope: ScopeGlobal, Name: TiDBEnableGCAwareMemoryTrack, Value: BoolToOnOff(DefEnableTiDBGCAwareMemoryTrack), Type: TypeBool, SetGlobal: func(_ context.Context, s *SessionVars, val string) error { memory.EnableGCAwareMemoryTrack.Store(TiDBOptOn(val)) return nil - }, GetGlobal: func(s *SessionVars) (string, error) { + }, GetGlobal: func(_ context.Context, s *SessionVars) (string, error) { return BoolToOnOff(memory.EnableGCAwareMemoryTrack.Load()), nil }}, - {Scope: ScopeGlobal, Name: TiDBEnableTmpStorageOnOOM, Value: BoolToOnOff(DefTiDBEnableTmpStorageOnOOM), Type: TypeBool, SetGlobal: func(s *SessionVars, val string) error { + {Scope: ScopeGlobal, Name: TiDBEnableTmpStorageOnOOM, Value: BoolToOnOff(DefTiDBEnableTmpStorageOnOOM), Type: TypeBool, SetGlobal: func(_ context.Context, s *SessionVars, val string) error { EnableTmpStorageOnOOM.Store(TiDBOptOn(val)) return nil - }, GetGlobal: func(s *SessionVars) (string, error) { + }, GetGlobal: func(_ context.Context, s *SessionVars) (string, error) { return BoolToOnOff(EnableTmpStorageOnOOM.Load()), nil }}, - {Scope: ScopeGlobal, Name: TiDBMemoryUsageAlarmRatio, Value: strconv.FormatFloat(DefMemoryUsageAlarmRatio, 'f', -1, 64), Type: TypeFloat, MinValue: 0.0, MaxValue: 1.0, SetGlobal: func(s *SessionVars, val string) error { + {Scope: ScopeGlobal, Name: TiDBMemoryUsageAlarmRatio, Value: strconv.FormatFloat(DefMemoryUsageAlarmRatio, 'f', -1, 64), Type: TypeFloat, MinValue: 0.0, MaxValue: 1.0, SetGlobal: func(_ context.Context, s *SessionVars, val string) error { MemoryUsageAlarmRatio.Store(tidbOptFloat64(val, DefMemoryUsageAlarmRatio)) return nil - }, GetGlobal: func(s *SessionVars) (string, error) { + }, GetGlobal: func(_ context.Context, s *SessionVars) (string, error) { return fmt.Sprintf("%g", MemoryUsageAlarmRatio.Load()), nil }}, - {Scope: ScopeGlobal, Name: TiDBMemoryUsageAlarmKeepRecordNum, Value: strconv.Itoa(DefMemoryUsageAlarmKeepRecordNum), Type: TypeInt, MinValue: 1, MaxValue: 10000, SetGlobal: func(s *SessionVars, val string) error { + {Scope: ScopeGlobal, Name: TiDBMemoryUsageAlarmKeepRecordNum, Value: strconv.Itoa(DefMemoryUsageAlarmKeepRecordNum), Type: TypeInt, MinValue: 1, MaxValue: 10000, SetGlobal: func(_ context.Context, s *SessionVars, val string) error { MemoryUsageAlarmKeepRecordNum.Store(TidbOptInt64(val, DefMemoryUsageAlarmKeepRecordNum)) return nil - }, GetGlobal: func(s *SessionVars) (string, error) { + }, GetGlobal: func(_ context.Context, s *SessionVars) (string, error) { return fmt.Sprintf("%d", MemoryUsageAlarmKeepRecordNum.Load()), nil }}, + {Scope: ScopeGlobal, Name: TiDBEnablePlanReplayerCapture, Value: BoolToOnOff(false), Type: TypeBool, + SetGlobal: func(ctx context.Context, s *SessionVars, val string) error { + EnablePlanReplayerCapture.Store(TiDBOptOn(val)) + return nil + }, GetGlobal: func(ctx context.Context, vars *SessionVars) (string, error) { + return strconv.FormatBool(EnablePlanReplayerCapture.Load()), nil + }}, /* The system variables below have GLOBAL and SESSION scope */ - {Scope: ScopeGlobal | ScopeSession, Name: TiDBRowFormatVersion, Value: strconv.Itoa(DefTiDBRowFormatV1), Type: TypeUnsigned, MinValue: 1, MaxValue: 2, SetGlobal: func(s *SessionVars, val string) error { + {Scope: ScopeGlobal | ScopeSession, Name: TiDBRowFormatVersion, Value: strconv.Itoa(DefTiDBRowFormatV1), Type: TypeUnsigned, MinValue: 1, MaxValue: 2, SetGlobal: func(_ context.Context, s *SessionVars, val string) error { SetDDLReorgRowFormat(TidbOptInt64(val, DefTiDBRowFormatV2)) return nil }, SetSession: func(s *SessionVars, val string) error { @@ -1085,10 +1126,10 @@ var defaultSysVars = []*SysVar{ } return normalizedValue, ErrWrongValueForVar.GenWithStackByArgs(ForeignKeyChecks, originalValue) }}, - {Scope: ScopeGlobal, Name: TiDBEnableForeignKey, Value: BoolToOnOff(false), Type: TypeBool, SetGlobal: func(s *SessionVars, val string) error { + {Scope: ScopeGlobal, Name: TiDBEnableForeignKey, Value: BoolToOnOff(false), Type: TypeBool, SetGlobal: func(_ context.Context, s *SessionVars, val string) error { EnableForeignKey.Store(TiDBOptOn(val)) return nil - }, GetGlobal: func(s *SessionVars) (string, error) { + }, GetGlobal: func(_ context.Context, s *SessionVars) (string, error) { return BoolToOnOff(EnableForeignKey.Load()), nil }}, {Scope: ScopeGlobal | ScopeSession, Name: CollationDatabase, Value: mysql.DefaultCollationName, skipInit: true, Validation: func(vars *SessionVars, normalizedValue string, originalValue string, scope ScopeFlag) (string, error) { @@ -1622,7 +1663,7 @@ var defaultSysVars = []*SysVar{ s.AllowAutoRandExplicitInsert = TiDBOptOn(val) return nil }}, - {Scope: ScopeGlobal | ScopeSession, Name: TiDBEnableClusteredIndex, Value: IntOnly, Type: TypeEnum, PossibleValues: []string{Off, On, IntOnly}, Validation: func(vars *SessionVars, normalizedValue string, originalValue string, scope ScopeFlag) (string, error) { + {Scope: ScopeGlobal | ScopeSession, Name: TiDBEnableClusteredIndex, Value: On, Type: TypeEnum, PossibleValues: []string{Off, On, IntOnly}, Validation: func(vars *SessionVars, normalizedValue string, originalValue string, scope ScopeFlag) (string, error) { if normalizedValue == IntOnly { vars.StmtCtx.AppendWarning(errWarnDeprecatedSyntax.FastGenByArgs(normalizedValue, fmt.Sprintf("'%s' or '%s'", On, Off))) } @@ -1647,7 +1688,7 @@ var defaultSysVars = []*SysVar{ } s.PartitionPruneMode.Store(newMode) return nil - }, SetGlobal: func(s *SessionVars, val string) error { + }, SetGlobal: func(_ context.Context, s *SessionVars, val string) error { newMode := strings.ToLower(strings.TrimSpace(val)) if PartitionPruneMode(newMode) == Dynamic { s.StmtCtx.AppendWarning(errors.New("Please analyze all partition tables again for consistency between partition and global stats")) @@ -1740,7 +1781,7 @@ var defaultSysVars = []*SysVar{ {Scope: ScopeGlobal | ScopeSession, Name: TiDBEnablePaging, Value: BoolToOnOff(DefTiDBEnablePaging), Type: TypeBool, Hidden: true, SetSession: func(s *SessionVars, val string) error { s.EnablePaging = TiDBOptOn(val) return nil - }, SetGlobal: func(s *SessionVars, val string) error { + }, SetGlobal: func(_ context.Context, s *SessionVars, val string) error { s.EnablePaging = TiDBOptOn(val) return nil }}, @@ -1753,10 +1794,10 @@ var defaultSysVars = []*SysVar{ s.StatsLoadSyncWait = TidbOptInt64(val, DefTiDBStatsLoadSyncWait) return nil }, - GetGlobal: func(s *SessionVars) (string, error) { + GetGlobal: func(_ context.Context, s *SessionVars) (string, error) { return strconv.FormatInt(StatsLoadSyncWait.Load(), 10), nil }, - SetGlobal: func(s *SessionVars, val string) error { + SetGlobal: func(_ context.Context, s *SessionVars, val string) error { StatsLoadSyncWait.Store(TidbOptInt64(val, DefTiDBStatsLoadSyncWait)) return nil }, @@ -1820,6 +1861,7 @@ var defaultSysVars = []*SysVar{ }}, {Scope: ScopeGlobal | ScopeSession, Name: TiDBMemQuotaQuery, Value: strconv.Itoa(DefTiDBMemQuotaQuery), Type: TypeInt, MinValue: -1, MaxValue: math.MaxInt64, SetSession: func(s *SessionVars, val string) error { s.MemQuotaQuery = TidbOptInt64(val, DefTiDBMemQuotaQuery) + s.MemTracker.SetBytesLimit(s.MemQuotaQuery) return nil }, Validation: func(vars *SessionVars, normalizedValue string, originalValue string, scope ScopeFlag) (string, error) { intVal := TidbOptInt64(normalizedValue, DefTiDBMemQuotaQuery) @@ -1846,7 +1888,7 @@ var defaultSysVars = []*SysVar{ return nil }}, {Scope: ScopeGlobal, Name: TiDBSimplifiedMetrics, Value: BoolToOnOff(DefTiDBSimplifiedMetrics), Type: TypeBool, - SetGlobal: func(vars *SessionVars, s string) error { + SetGlobal: func(_ context.Context, vars *SessionVars, s string) error { metrics.ToggleSimplifiedMode(TiDBOptOn(s)) return nil }}, @@ -1874,7 +1916,7 @@ var defaultSysVars = []*SysVar{ s.EnableAnalyzeSnapshot = TiDBOptOn(val) return nil }}, - {Scope: ScopeGlobal, Name: TiDBGenerateBinaryPlan, Value: BoolToOnOff(DefTiDBGenerateBinaryPlan), Type: TypeBool, SetGlobal: func(s *SessionVars, val string) error { + {Scope: ScopeGlobal, Name: TiDBGenerateBinaryPlan, Value: BoolToOnOff(DefTiDBGenerateBinaryPlan), Type: TypeBool, SetGlobal: func(_ context.Context, s *SessionVars, val string) error { GenerateBinaryPlan.Store(TiDBOptOn(val)) return nil }}, @@ -1883,20 +1925,20 @@ var defaultSysVars = []*SysVar{ s.DefaultStrMatchSelectivity = tidbOptFloat64(val, DefTiDBDefaultStrMatchSelectivity) return nil }}, - {Scope: ScopeGlobal, Name: TiDBDDLEnableFastReorg, Value: BoolToOnOff(DefTiDBEnableFastReorg), Type: TypeBool, GetGlobal: func(sv *SessionVars) (string, error) { + {Scope: ScopeGlobal, Name: TiDBDDLEnableFastReorg, Value: BoolToOnOff(DefTiDBEnableFastReorg), Type: TypeBool, GetGlobal: func(_ context.Context, sv *SessionVars) (string, error) { return BoolToOnOff(EnableFastReorg.Load()), nil - }, SetGlobal: func(s *SessionVars, val string) error { + }, SetGlobal: func(_ context.Context, s *SessionVars, val string) error { EnableFastReorg.Store(TiDBOptOn(val)) return nil }}, // This system var is set disk quota for lightning sort dir, from 100 GB to 1PB. - {Scope: ScopeGlobal, Name: TiDBDDLDiskQuota, Value: strconv.Itoa(DefTiDBDDLDiskQuota), Type: TypeInt, MinValue: DefTiDBDDLDiskQuota, MaxValue: 1024 * 1024 * DefTiDBDDLDiskQuota / 100, GetGlobal: func(sv *SessionVars) (string, error) { + {Scope: ScopeGlobal, Name: TiDBDDLDiskQuota, Value: strconv.Itoa(DefTiDBDDLDiskQuota), Type: TypeInt, MinValue: DefTiDBDDLDiskQuota, MaxValue: 1024 * 1024 * DefTiDBDDLDiskQuota / 100, GetGlobal: func(_ context.Context, sv *SessionVars) (string, error) { return strconv.FormatUint(DDLDiskQuota.Load(), 10), nil - }, SetGlobal: func(s *SessionVars, val string) error { + }, SetGlobal: func(_ context.Context, s *SessionVars, val string) error { DDLDiskQuota.Store(TidbOptUint64(val, DefTiDBDDLDiskQuota)) return nil }}, - {Scope: ScopeGlobal | ScopeSession, Name: TiDBConstraintCheckInPlacePessimistic, Value: BoolToOnOff(DefTiDBConstraintCheckInPlacePessimistic), Type: TypeBool, + {Scope: ScopeSession, Name: TiDBConstraintCheckInPlacePessimistic, Value: BoolToOnOff(config.GetGlobalConfig().PessimisticTxn.ConstraintCheckInPlacePessimistic), Type: TypeBool, SetSession: func(s *SessionVars, val string) error { s.ConstraintCheckInPlacePessimistic = TiDBOptOn(val) if !s.ConstraintCheckInPlacePessimistic { @@ -1916,6 +1958,45 @@ var defaultSysVars = []*SysVar{ s.RangeMaxSize = TidbOptInt64(val, DefTiDBOptRangeMaxSize) return nil }}, + {Scope: ScopeGlobal | ScopeSession, Name: TiDBAnalyzePartitionConcurrency, Value: strconv.FormatInt(DefTiDBAnalyzePartitionConcurrency, 10), + MinValue: 1, MaxValue: uint64(config.GetGlobalConfig().Performance.AnalyzePartitionConcurrencyQuota), SetSession: func(s *SessionVars, val string) error { + s.AnalyzePartitionConcurrency = int(TidbOptInt64(val, DefTiDBAnalyzePartitionConcurrency)) + return nil + }}, + { + Scope: ScopeGlobal | ScopeSession, Name: TiDBMergePartitionStatsConcurrency, Value: strconv.FormatInt(DefTiDBMergePartitionStatsConcurrency, 10), Type: TypeInt, MinValue: 1, MaxValue: MaxConfigurableConcurrency, + SetSession: func(s *SessionVars, val string) error { + s.AnalyzePartitionMergeConcurrency = TidbOptInt(val, DefTiDBMergePartitionStatsConcurrency) + return nil + }, + }, + + {Scope: ScopeGlobal | ScopeSession, Name: TiDBOptPrefixIndexSingleScan, Value: BoolToOnOff(DefTiDBOptPrefixIndexSingleScan), Type: TypeBool, SetSession: func(s *SessionVars, val string) error { + s.OptPrefixIndexSingleScan = TiDBOptOn(val) + return nil + }}, + {Scope: ScopeGlobal, Name: TiDBExternalTS, Value: strconv.FormatInt(DefTiDBExternalTS, 10), SetGlobal: func(ctx context.Context, s *SessionVars, val string) error { + ts, err := parseTSFromNumberOrTime(s, val) + if err != nil { + return err + } + return SetExternalTimestamp(ctx, ts) + }, GetGlobal: func(ctx context.Context, s *SessionVars) (string, error) { + ts, err := GetExternalTimestamp(ctx) + if err != nil { + return "", err + } + return strconv.Itoa(int(ts)), err + }}, + {Scope: ScopeGlobal | ScopeSession, Name: TiDBEnableExternalTSRead, Value: BoolToOnOff(false), Type: TypeBool, SetSession: func(s *SessionVars, val string) error { + s.EnableExternalTSRead = TiDBOptOn(val) + return nil + }}, + {Scope: ScopeGlobal | ScopeSession, Name: TiDBEnableReusechunk, Value: BoolToOnOff(DefTiDBEnableReusechunk), Type: TypeBool, + SetSession: func(s *SessionVars, val string) error { + s.EnableReuseCheck = TiDBOptOn(val) + return nil + }}, } // FeedbackProbability points to the FeedbackProbability in statistics package. diff --git a/sessionctx/variable/sysvar_test.go b/sessionctx/variable/sysvar_test.go index a1b996d7468a8..b44c852aed1fa 100644 --- a/sessionctx/variable/sysvar_test.go +++ b/sessionctx/variable/sysvar_test.go @@ -15,6 +15,7 @@ package variable import ( + "context" "encoding/json" "fmt" "math" @@ -22,9 +23,11 @@ import ( "sync/atomic" "testing" + "github.com/pingcap/failpoint" "github.com/pingcap/tidb/config" "github.com/pingcap/tidb/parser/mysql" "github.com/pingcap/tidb/parser/terror" + "github.com/pingcap/tidb/util/memory" "github.com/stretchr/testify/require" ) @@ -160,7 +163,7 @@ func TestTxnIsolation(t *testing.T) { require.Equal(t, "[variable:8048]The isolation level 'READ-UNCOMMITTED' is not supported. Set tidb_skip_isolation_level_check=1 to skip this error", err.Error()) // Enable global skip isolation check doesn't affect current session - require.Nil(t, GetSysVar(TiDBSkipIsolationLevelCheck).SetGlobalFromHook(vars, "ON", true)) + require.Nil(t, GetSysVar(TiDBSkipIsolationLevelCheck).SetGlobalFromHook(context.Background(), vars, "ON", true)) _, err = sv.Validate(vars, "Serializable", ScopeSession) require.Equal(t, "[variable:8048]The isolation level 'SERIALIZABLE' is not supported. Set tidb_skip_isolation_level_check=1 to skip this error", err.Error()) @@ -232,10 +235,10 @@ func TestReadOnlyNoop(t *testing.T) { require.Equal(t, "[variable:1235]function READ ONLY has only noop implementation in tidb now, use tidb_enable_noop_functions to enable these functions", err.Error()) } require.Equal(t, "OFF", val) - require.NoError(t, vars.GlobalVarsAccessor.SetGlobalSysVar(TiDBEnableNoopFuncs, "ON")) + require.NoError(t, vars.GlobalVarsAccessor.SetGlobalSysVar(context.Background(), TiDBEnableNoopFuncs, "ON")) _, err = sv.Validate(vars, "on", ScopeGlobal) require.NoError(t, err) - require.NoError(t, vars.GlobalVarsAccessor.SetGlobalSysVar(TiDBEnableNoopFuncs, "OFF")) + require.NoError(t, vars.GlobalVarsAccessor.SetGlobalSysVar(context.Background(), TiDBEnableNoopFuncs, "OFF")) } } @@ -255,40 +258,40 @@ func TestSkipInit(t *testing.T) { func TestSessionGetterFuncs(t *testing.T) { vars := NewSessionVars(nil) - val, err := vars.GetSessionOrGlobalSystemVar(TiDBCurrentTS) + val, err := vars.GetSessionOrGlobalSystemVar(context.Background(), TiDBCurrentTS) require.NoError(t, err) require.Equal(t, fmt.Sprintf("%d", vars.TxnCtx.StartTS), val) - val, err = vars.GetSessionOrGlobalSystemVar(TiDBLastTxnInfo) + val, err = vars.GetSessionOrGlobalSystemVar(context.Background(), TiDBLastTxnInfo) require.NoError(t, err) require.Equal(t, vars.LastTxnInfo, val) - val, err = vars.GetSessionOrGlobalSystemVar(TiDBLastQueryInfo) + val, err = vars.GetSessionOrGlobalSystemVar(context.Background(), TiDBLastQueryInfo) require.NoError(t, err) info, err := json.Marshal(vars.LastQueryInfo) require.NoError(t, err) require.Equal(t, string(info), val) - val, err = vars.GetSessionOrGlobalSystemVar(TiDBFoundInPlanCache) + val, err = vars.GetSessionOrGlobalSystemVar(context.Background(), TiDBFoundInPlanCache) require.NoError(t, err) require.Equal(t, BoolToOnOff(vars.PrevFoundInPlanCache), val) - val, err = vars.GetSessionOrGlobalSystemVar(TiDBFoundInBinding) + val, err = vars.GetSessionOrGlobalSystemVar(context.Background(), TiDBFoundInBinding) require.NoError(t, err) require.Equal(t, BoolToOnOff(vars.PrevFoundInBinding), val) - val, err = vars.GetSessionOrGlobalSystemVar(TiDBTxnScope) + val, err = vars.GetSessionOrGlobalSystemVar(context.Background(), TiDBTxnScope) require.NoError(t, err) require.Equal(t, vars.TxnScope.GetVarValue(), val) } func TestInstanceScopedVars(t *testing.T) { vars := NewSessionVars(nil) - val, err := vars.GetSessionOrGlobalSystemVar(TiDBGeneralLog) + val, err := vars.GetSessionOrGlobalSystemVar(context.Background(), TiDBGeneralLog) require.NoError(t, err) require.Equal(t, BoolToOnOff(ProcessGeneralLog.Load()), val) - val, err = vars.GetSessionOrGlobalSystemVar(TiDBPProfSQLCPU) + val, err = vars.GetSessionOrGlobalSystemVar(context.Background(), TiDBPProfSQLCPU) require.NoError(t, err) expected := "0" if EnablePProfSQLCPU.Load() { @@ -296,66 +299,66 @@ func TestInstanceScopedVars(t *testing.T) { } require.Equal(t, expected, val) - val, err = vars.GetSessionOrGlobalSystemVar(TiDBExpensiveQueryTimeThreshold) + val, err = vars.GetSessionOrGlobalSystemVar(context.Background(), TiDBExpensiveQueryTimeThreshold) require.NoError(t, err) require.Equal(t, fmt.Sprintf("%d", atomic.LoadUint64(&ExpensiveQueryTimeThreshold)), val) - val, err = vars.GetSessionOrGlobalSystemVar(TiDBMemoryUsageAlarmRatio) + val, err = vars.GetSessionOrGlobalSystemVar(context.Background(), TiDBMemoryUsageAlarmRatio) require.NoError(t, err) require.Equal(t, fmt.Sprintf("%g", MemoryUsageAlarmRatio.Load()), val) - val, err = vars.GetSessionOrGlobalSystemVar(TiDBMemoryUsageAlarmKeepRecordNum) + val, err = vars.GetSessionOrGlobalSystemVar(context.Background(), TiDBMemoryUsageAlarmKeepRecordNum) require.NoError(t, err) require.Equal(t, fmt.Sprintf("%d", MemoryUsageAlarmKeepRecordNum.Load()), val) - val, err = vars.GetSessionOrGlobalSystemVar(TiDBForcePriority) + val, err = vars.GetSessionOrGlobalSystemVar(context.Background(), TiDBForcePriority) require.NoError(t, err) require.Equal(t, mysql.Priority2Str[mysql.PriorityEnum(atomic.LoadInt32(&ForcePriority))], val) - val, err = vars.GetSessionOrGlobalSystemVar(TiDBDDLSlowOprThreshold) + val, err = vars.GetSessionOrGlobalSystemVar(context.Background(), TiDBDDLSlowOprThreshold) require.NoError(t, err) require.Equal(t, strconv.FormatUint(uint64(atomic.LoadUint32(&DDLSlowOprThreshold)), 10), val) - val, err = vars.GetSessionOrGlobalSystemVar(PluginDir) + val, err = vars.GetSessionOrGlobalSystemVar(context.Background(), PluginDir) require.NoError(t, err) require.Equal(t, config.GetGlobalConfig().Instance.PluginDir, val) - val, err = vars.GetSessionOrGlobalSystemVar(PluginLoad) + val, err = vars.GetSessionOrGlobalSystemVar(context.Background(), PluginLoad) require.NoError(t, err) require.Equal(t, config.GetGlobalConfig().Instance.PluginLoad, val) - val, err = vars.GetSessionOrGlobalSystemVar(TiDBSlowLogThreshold) + val, err = vars.GetSessionOrGlobalSystemVar(context.Background(), TiDBSlowLogThreshold) require.NoError(t, err) require.Equal(t, strconv.FormatUint(atomic.LoadUint64(&config.GetGlobalConfig().Instance.SlowThreshold), 10), val) - val, err = vars.GetSessionOrGlobalSystemVar(TiDBRecordPlanInSlowLog) + val, err = vars.GetSessionOrGlobalSystemVar(context.Background(), TiDBRecordPlanInSlowLog) require.NoError(t, err) enabled := atomic.LoadUint32(&config.GetGlobalConfig().Instance.RecordPlanInSlowLog) == 1 require.Equal(t, BoolToOnOff(enabled), val) - val, err = vars.GetSessionOrGlobalSystemVar(TiDBEnableSlowLog) + val, err = vars.GetSessionOrGlobalSystemVar(context.Background(), TiDBEnableSlowLog) require.NoError(t, err) require.Equal(t, BoolToOnOff(config.GetGlobalConfig().Instance.EnableSlowLog.Load()), val) - val, err = vars.GetSessionOrGlobalSystemVar(TiDBCheckMb4ValueInUTF8) + val, err = vars.GetSessionOrGlobalSystemVar(context.Background(), TiDBCheckMb4ValueInUTF8) require.NoError(t, err) require.Equal(t, BoolToOnOff(config.GetGlobalConfig().Instance.CheckMb4ValueInUTF8.Load()), val) - val, err = vars.GetSessionOrGlobalSystemVar(TiDBEnableCollectExecutionInfo) + val, err = vars.GetSessionOrGlobalSystemVar(context.Background(), TiDBEnableCollectExecutionInfo) require.NoError(t, err) require.Equal(t, BoolToOnOff(config.GetGlobalConfig().Instance.EnableCollectExecutionInfo.Load()), val) - val, err = vars.GetSessionOrGlobalSystemVar(TiDBConfig) + val, err = vars.GetSessionOrGlobalSystemVar(context.Background(), TiDBConfig) require.NoError(t, err) expected, err = config.GetJSONConfig() require.NoError(t, err) require.Equal(t, expected, val) - val, err = vars.GetSessionOrGlobalSystemVar(TiDBLogFileMaxDays) + val, err = vars.GetSessionOrGlobalSystemVar(context.Background(), TiDBLogFileMaxDays) require.NoError(t, err) require.Equal(t, fmt.Sprint(GlobalLogMaxDays.Load()), val) - val, err = vars.GetSessionOrGlobalSystemVar(TiDBRCReadCheckTS) + val, err = vars.GetSessionOrGlobalSystemVar(context.Background(), TiDBRCReadCheckTS) require.NoError(t, err) require.Equal(t, BoolToOnOff(EnableRCReadCheckTS.Load()), val) } @@ -406,29 +409,29 @@ func TestSQLAutoIsNull(t *testing.T) { func TestLastInsertID(t *testing.T) { vars := NewSessionVars(nil) - val, err := vars.GetSessionOrGlobalSystemVar(LastInsertID) + val, err := vars.GetSessionOrGlobalSystemVar(context.Background(), LastInsertID) require.NoError(t, err) require.Equal(t, val, "0") vars.StmtCtx.PrevLastInsertID = 21 - val, err = vars.GetSessionOrGlobalSystemVar(LastInsertID) + val, err = vars.GetSessionOrGlobalSystemVar(context.Background(), LastInsertID) require.NoError(t, err) require.Equal(t, val, "21") } func TestTimestamp(t *testing.T) { vars := NewSessionVars(nil) - val, err := vars.GetSessionOrGlobalSystemVar(Timestamp) + val, err := vars.GetSessionOrGlobalSystemVar(context.Background(), Timestamp) require.NoError(t, err) require.NotEqual(t, "", val) vars.systems[Timestamp] = "10" - val, err = vars.GetSessionOrGlobalSystemVar(Timestamp) + val, err = vars.GetSessionOrGlobalSystemVar(context.Background(), Timestamp) require.NoError(t, err) require.Equal(t, "10", val) vars.systems[Timestamp] = "0" // set to default - val, err = vars.GetSessionOrGlobalSystemVar(Timestamp) + val, err = vars.GetSessionOrGlobalSystemVar(context.Background(), Timestamp) require.NoError(t, err) require.NotEqual(t, "", val) require.NotEqual(t, "10", val) @@ -454,12 +457,12 @@ func TestTimestamp(t *testing.T) { func TestIdentity(t *testing.T) { vars := NewSessionVars(nil) - val, err := vars.GetSessionOrGlobalSystemVar(Identity) + val, err := vars.GetSessionOrGlobalSystemVar(context.Background(), Identity) require.NoError(t, err) require.Equal(t, val, "0") vars.StmtCtx.PrevLastInsertID = 21 - val, err = vars.GetSessionOrGlobalSystemVar(Identity) + val, err = vars.GetSessionOrGlobalSystemVar(context.Background(), Identity) require.NoError(t, err) require.Equal(t, val, "21") } @@ -480,7 +483,7 @@ func TestLcMessages(t *testing.T) { require.NoError(t, err) err = sv.SetSessionFromHook(vars, "zh_CN") require.NoError(t, err) - val, err := vars.GetSessionOrGlobalSystemVar("lc_messages") + val, err := vars.GetSessionOrGlobalSystemVar(context.Background(), "lc_messages") require.NoError(t, err) require.Equal(t, val, "zh_CN") } @@ -513,10 +516,10 @@ func TestDDLWorkers(t *testing.T) { func TestDefaultCharsetAndCollation(t *testing.T) { vars := NewSessionVars(nil) - val, err := vars.GetSessionOrGlobalSystemVar(CharacterSetConnection) + val, err := vars.GetSessionOrGlobalSystemVar(context.Background(), CharacterSetConnection) require.NoError(t, err) require.Equal(t, val, mysql.DefaultCharset) - val, err = vars.GetSessionOrGlobalSystemVar(CollationConnection) + val, err = vars.GetSessionOrGlobalSystemVar(context.Background(), CollationConnection) require.NoError(t, err) require.Equal(t, val, mysql.DefaultCollationName) } @@ -524,7 +527,7 @@ func TestDefaultCharsetAndCollation(t *testing.T) { func TestIndexMergeSwitcher(t *testing.T) { vars := NewSessionVars(nil) vars.GlobalVarsAccessor = NewMockGlobalAccessor4Tests() - val, err := vars.GetSessionOrGlobalSystemVar(TiDBEnableIndexMerge) + val, err := vars.GetSessionOrGlobalSystemVar(context.Background(), TiDBEnableIndexMerge) require.NoError(t, err) require.Equal(t, DefTiDBEnableIndexMerge, true) require.Equal(t, BoolToOnOff(DefTiDBEnableIndexMerge), val) @@ -662,10 +665,10 @@ func TestTiDBDDLFlashbackConcurrency(t *testing.T) { func TestDefaultMemoryDebugModeValue(t *testing.T) { vars := NewSessionVars(nil) - val, err := vars.GetSessionOrGlobalSystemVar(TiDBMemoryDebugModeMinHeapInUse) + val, err := vars.GetSessionOrGlobalSystemVar(context.Background(), TiDBMemoryDebugModeMinHeapInUse) require.NoError(t, err) require.Equal(t, val, "0") - val, err = vars.GetSessionOrGlobalSystemVar(TiDBMemoryDebugModeAlarmRatio) + val, err = vars.GetSessionOrGlobalSystemVar(context.Background(), TiDBMemoryDebugModeAlarmRatio) require.NoError(t, err) require.Equal(t, val, "0") } @@ -675,7 +678,7 @@ func TestDefaultPartitionPruneMode(t *testing.T) { mock := NewMockGlobalAccessor4Tests() mock.SessionVars = vars vars.GlobalVarsAccessor = mock - val, err := vars.GetSessionOrGlobalSystemVar(TiDBPartitionPruneMode) + val, err := vars.GetSessionOrGlobalSystemVar(context.Background(), TiDBPartitionPruneMode) require.NoError(t, err) require.Equal(t, "dynamic", val) require.Equal(t, "dynamic", DefTiDBPartitionPruneMode) @@ -692,14 +695,14 @@ func TestSetTIDBFastDDL(t *testing.T) { require.Equal(t, fastDDL.Value, Off) // Set to On - err := mock.SetGlobalSysVar(TiDBDDLEnableFastReorg, On) + err := mock.SetGlobalSysVar(context.Background(), TiDBDDLEnableFastReorg, On) require.NoError(t, err) val, err1 := mock.GetGlobalSysVar(TiDBDDLEnableFastReorg) require.NoError(t, err1) require.Equal(t, On, val) // Set to off - err = mock.SetGlobalSysVar(TiDBDDLEnableFastReorg, Off) + err = mock.SetGlobalSysVar(context.Background(), TiDBDDLEnableFastReorg, Off) require.NoError(t, err) val, err1 = mock.GetGlobalSysVar(TiDBDDLEnableFastReorg) require.NoError(t, err1) @@ -722,35 +725,35 @@ func TestSetTIDBDiskQuota(t *testing.T) { require.Equal(t, diskQuota.Value, strconv.FormatInt(100*gb, 10)) // MinValue is 100 GB, set to 50 Gb is not allowed - err = mock.SetGlobalSysVar(TiDBDDLDiskQuota, strconv.FormatInt(50*gb, 10)) + err = mock.SetGlobalSysVar(context.Background(), TiDBDDLDiskQuota, strconv.FormatInt(50*gb, 10)) require.NoError(t, err) val, err = mock.GetGlobalSysVar(TiDBDDLDiskQuota) require.NoError(t, err) require.Equal(t, strconv.FormatInt(100*gb, 10), val) // Set to 100 GB - err = mock.SetGlobalSysVar(TiDBDDLDiskQuota, strconv.FormatInt(100*gb, 10)) + err = mock.SetGlobalSysVar(context.Background(), TiDBDDLDiskQuota, strconv.FormatInt(100*gb, 10)) require.NoError(t, err) val, err = mock.GetGlobalSysVar(TiDBDDLDiskQuota) require.NoError(t, err) require.Equal(t, strconv.FormatInt(100*gb, 10), val) // Set to 200 GB - err = mock.SetGlobalSysVar(TiDBDDLDiskQuota, strconv.FormatInt(200*gb, 10)) + err = mock.SetGlobalSysVar(context.Background(), TiDBDDLDiskQuota, strconv.FormatInt(200*gb, 10)) require.NoError(t, err) val, err = mock.GetGlobalSysVar(TiDBDDLDiskQuota) require.NoError(t, err) require.Equal(t, strconv.FormatInt(200*gb, 10), val) // Set to 1 Pb - err = mock.SetGlobalSysVar(TiDBDDLDiskQuota, strconv.FormatInt(pb, 10)) + err = mock.SetGlobalSysVar(context.Background(), TiDBDDLDiskQuota, strconv.FormatInt(pb, 10)) require.NoError(t, err) val, err = mock.GetGlobalSysVar(TiDBDDLDiskQuota) require.NoError(t, err) require.Equal(t, strconv.FormatInt(pb, 10), val) // MaxValue is 1 PB, set to 2 Pb is not allowed, it will set back to 1 PB max allowed value. - err = mock.SetGlobalSysVar(TiDBDDLDiskQuota, strconv.FormatInt(2*pb, 10)) + err = mock.SetGlobalSysVar(context.Background(), TiDBDDLDiskQuota, strconv.FormatInt(2*pb, 10)) require.NoError(t, err) val, err = mock.GetGlobalSysVar(TiDBDDLDiskQuota) require.NoError(t, err) @@ -770,31 +773,31 @@ func TestTiDBServerMemoryLimit(t *testing.T) { // Test tidb_server_memory_limit serverMemoryLimit := GetSysVar(TiDBServerMemoryLimit) // Check default value - require.Equal(t, serverMemoryLimit.Value, strconv.FormatUint(DefTiDBServerMemoryLimit, 10)) + require.Equal(t, serverMemoryLimit.Value, DefTiDBServerMemoryLimit) // MinValue is 512 MB - err = mock.SetGlobalSysVar(TiDBServerMemoryLimit, strconv.FormatUint(100*mb, 10)) + err = mock.SetGlobalSysVar(context.Background(), TiDBServerMemoryLimit, strconv.FormatUint(100*mb, 10)) require.NoError(t, err) val, err = mock.GetGlobalSysVar(TiDBServerMemoryLimit) require.NoError(t, err) - require.Equal(t, strconv.FormatUint(512*mb, 10), val) + require.Equal(t, "512MB", val) // Test Close - err = mock.SetGlobalSysVar(TiDBServerMemoryLimit, strconv.FormatUint(0, 10)) + err = mock.SetGlobalSysVar(context.Background(), TiDBServerMemoryLimit, strconv.FormatUint(0, 10)) require.NoError(t, err) val, err = mock.GetGlobalSysVar(TiDBServerMemoryLimit) require.NoError(t, err) - require.Equal(t, strconv.FormatUint(0, 10), val) + require.Equal(t, "0", val) // Test MaxValue - err = mock.SetGlobalSysVar(TiDBServerMemoryLimit, strconv.FormatUint(math.MaxUint64, 10)) + err = mock.SetGlobalSysVar(context.Background(), TiDBServerMemoryLimit, strconv.FormatUint(math.MaxUint64, 10)) require.NoError(t, err) val, err = mock.GetGlobalSysVar(TiDBServerMemoryLimit) require.NoError(t, err) require.Equal(t, strconv.FormatUint(math.MaxUint64, 10), val) // Test Normal Value - err = mock.SetGlobalSysVar(TiDBServerMemoryLimit, strconv.FormatUint(1024*mb, 10)) + err = mock.SetGlobalSysVar(context.Background(), TiDBServerMemoryLimit, strconv.FormatUint(1024*mb, 10)) require.NoError(t, err) val, err = mock.GetGlobalSysVar(TiDBServerMemoryLimit) require.NoError(t, err) @@ -806,30 +809,160 @@ func TestTiDBServerMemoryLimit(t *testing.T) { require.Equal(t, serverMemoryLimitSessMinSize.Value, strconv.FormatUint(DefTiDBServerMemoryLimitSessMinSize, 10)) // MinValue is 128 Bytes - err = mock.SetGlobalSysVar(TiDBServerMemoryLimitSessMinSize, strconv.FormatUint(100, 10)) + err = mock.SetGlobalSysVar(context.Background(), TiDBServerMemoryLimitSessMinSize, strconv.FormatUint(100, 10)) require.NoError(t, err) val, err = mock.GetGlobalSysVar(TiDBServerMemoryLimitSessMinSize) require.NoError(t, err) require.Equal(t, strconv.FormatUint(128, 10), val) // Test Close - err = mock.SetGlobalSysVar(TiDBServerMemoryLimitSessMinSize, strconv.FormatUint(0, 10)) + err = mock.SetGlobalSysVar(context.Background(), TiDBServerMemoryLimitSessMinSize, strconv.FormatUint(0, 10)) require.NoError(t, err) val, err = mock.GetGlobalSysVar(TiDBServerMemoryLimitSessMinSize) require.NoError(t, err) require.Equal(t, strconv.FormatUint(0, 10), val) // Test MaxValue - err = mock.SetGlobalSysVar(TiDBServerMemoryLimitSessMinSize, strconv.FormatUint(math.MaxUint64, 10)) + err = mock.SetGlobalSysVar(context.Background(), TiDBServerMemoryLimitSessMinSize, strconv.FormatUint(math.MaxUint64, 10)) require.NoError(t, err) val, err = mock.GetGlobalSysVar(TiDBServerMemoryLimitSessMinSize) require.NoError(t, err) require.Equal(t, strconv.FormatUint(math.MaxUint64, 10), val) // Test Normal Value - err = mock.SetGlobalSysVar(TiDBServerMemoryLimitSessMinSize, strconv.FormatUint(200*mb, 10)) + err = mock.SetGlobalSysVar(context.Background(), TiDBServerMemoryLimitSessMinSize, strconv.FormatUint(200*mb, 10)) require.NoError(t, err) val, err = mock.GetGlobalSysVar(TiDBServerMemoryLimitSessMinSize) require.NoError(t, err) require.Equal(t, strconv.FormatUint(200*mb, 10), val) } + +func TestTiDBServerMemoryLimit2(t *testing.T) { + vars := NewSessionVars(nil) + mock := NewMockGlobalAccessor4Tests() + mock.SessionVars = vars + vars.GlobalVarsAccessor = mock + var ( + //mb uint64 = 1 << 20 + err error + val string + ) + // Test tidb_server_memory_limit + serverMemoryLimit := GetSysVar(TiDBServerMemoryLimit) + // Check default value + require.Equal(t, serverMemoryLimit.Value, DefTiDBServerMemoryLimit) + + total := memory.GetMemTotalIgnoreErr() + if total > 0 { + // Can use percentage format when TiDB can obtain physical memory + // Test Percentage Format + err = mock.SetGlobalSysVar(context.Background(), TiDBServerMemoryLimit, "1%") + require.NoError(t, err) + val, err = mock.GetGlobalSysVar(TiDBServerMemoryLimit) + require.NoError(t, err) + if total/100 > uint64(512<<20) { + require.Equal(t, memory.ServerMemoryLimit.Load(), total/100) + require.Equal(t, "1%", val) + } else { + require.Equal(t, memory.ServerMemoryLimit.Load(), uint64(512<<20)) + require.Equal(t, "512MB", val) + } + + err = mock.SetGlobalSysVar(context.Background(), TiDBServerMemoryLimit, "0%") + require.Error(t, err) + err = mock.SetGlobalSysVar(context.Background(), TiDBServerMemoryLimit, "100%") + require.Error(t, err) + + err = mock.SetGlobalSysVar(context.Background(), TiDBServerMemoryLimit, "75%") + require.NoError(t, err) + val, err = mock.GetGlobalSysVar(TiDBServerMemoryLimit) + require.NoError(t, err) + require.Equal(t, "75%", val) + require.Equal(t, memory.ServerMemoryLimit.Load(), total/100*75) + } + // Test can't obtain physical memory + require.Nil(t, failpoint.Enable("github.com/pingcap/tidb/util/memory/GetMemTotalError", `return(true)`)) + require.Error(t, mock.SetGlobalSysVar(context.Background(), TiDBServerMemoryLimit, "75%")) + require.Nil(t, failpoint.Disable("github.com/pingcap/tidb/util/memory/GetMemTotalError")) + + // Test byteSize format + err = mock.SetGlobalSysVar(context.Background(), TiDBServerMemoryLimit, "1234") + require.NoError(t, err) + val, err = mock.GetGlobalSysVar(TiDBServerMemoryLimit) + require.NoError(t, err) + require.Equal(t, memory.ServerMemoryLimit.Load(), uint64(512<<20)) + require.Equal(t, "512MB", val) + + err = mock.SetGlobalSysVar(context.Background(), TiDBServerMemoryLimit, "1234567890123") + require.NoError(t, err) + val, err = mock.GetGlobalSysVar(TiDBServerMemoryLimit) + require.NoError(t, err) + require.Equal(t, memory.ServerMemoryLimit.Load(), uint64(1234567890123)) + require.Equal(t, "1234567890123", val) + + err = mock.SetGlobalSysVar(context.Background(), TiDBServerMemoryLimit, "10KB") + require.NoError(t, err) + val, err = mock.GetGlobalSysVar(TiDBServerMemoryLimit) + require.NoError(t, err) + require.Equal(t, memory.ServerMemoryLimit.Load(), uint64(512<<20)) + require.Equal(t, "512MB", val) + + err = mock.SetGlobalSysVar(context.Background(), TiDBServerMemoryLimit, "12345678KB") + require.NoError(t, err) + val, err = mock.GetGlobalSysVar(TiDBServerMemoryLimit) + require.NoError(t, err) + require.Equal(t, memory.ServerMemoryLimit.Load(), uint64(12345678<<10)) + require.Equal(t, "12345678KB", val) + + err = mock.SetGlobalSysVar(context.Background(), TiDBServerMemoryLimit, "10MB") + require.NoError(t, err) + val, err = mock.GetGlobalSysVar(TiDBServerMemoryLimit) + require.NoError(t, err) + require.Equal(t, memory.ServerMemoryLimit.Load(), uint64(512<<20)) + require.Equal(t, "512MB", val) + + err = mock.SetGlobalSysVar(context.Background(), TiDBServerMemoryLimit, "700MB") + require.NoError(t, err) + val, err = mock.GetGlobalSysVar(TiDBServerMemoryLimit) + require.NoError(t, err) + require.Equal(t, memory.ServerMemoryLimit.Load(), uint64(700<<20)) + require.Equal(t, "700MB", val) + + err = mock.SetGlobalSysVar(context.Background(), TiDBServerMemoryLimit, "20GB") + require.NoError(t, err) + val, err = mock.GetGlobalSysVar(TiDBServerMemoryLimit) + require.NoError(t, err) + require.Equal(t, memory.ServerMemoryLimit.Load(), uint64(20<<30)) + require.Equal(t, "20GB", val) + + err = mock.SetGlobalSysVar(context.Background(), TiDBServerMemoryLimit, "2TB") + require.NoError(t, err) + val, err = mock.GetGlobalSysVar(TiDBServerMemoryLimit) + require.NoError(t, err) + require.Equal(t, memory.ServerMemoryLimit.Load(), uint64(2<<40)) + require.Equal(t, "2TB", val) + + // Test error + err = mock.SetGlobalSysVar(context.Background(), TiDBServerMemoryLimit, "123aaa123") + require.Error(t, err) + err = mock.SetGlobalSysVar(context.Background(), TiDBServerMemoryLimit, "700MBaa") + require.Error(t, err) + err = mock.SetGlobalSysVar(context.Background(), TiDBServerMemoryLimit, "a700MB") + require.Error(t, err) +} + +func TestSetAggPushDownGlobally(t *testing.T) { + vars := NewSessionVars(nil) + mock := NewMockGlobalAccessor4Tests() + mock.SessionVars = vars + vars.GlobalVarsAccessor = mock + + val, err := mock.GetGlobalSysVar(TiDBOptAggPushDown) + require.NoError(t, err) + require.Equal(t, "OFF", val) + err = mock.SetGlobalSysVar(context.Background(), TiDBOptAggPushDown, "ON") + require.NoError(t, err) + val, err = mock.GetGlobalSysVar(TiDBOptAggPushDown) + require.NoError(t, err) + require.Equal(t, "ON", val) +} diff --git a/sessionctx/variable/tidb_vars.go b/sessionctx/variable/tidb_vars.go index 9ebdd9ecc61be..80c9b41f4cc6e 100644 --- a/sessionctx/variable/tidb_vars.go +++ b/sessionctx/variable/tidb_vars.go @@ -15,14 +15,15 @@ package variable import ( + "context" "math" "github.com/pingcap/tidb/config" "github.com/pingcap/tidb/parser/mysql" "github.com/pingcap/tidb/sessionctx/variable/featuretag/concurrencyddl" - "github.com/pingcap/tidb/util/mathutil" "github.com/pingcap/tidb/util/memory" "github.com/pingcap/tidb/util/paging" + "github.com/pingcap/tidb/util/size" "go.uber.org/atomic" ) @@ -251,6 +252,9 @@ const ( // TiDBEnableTiFlashReadForWriteStmt indicates whether to enable TiFlash to read for write statements. TiDBEnableTiFlashReadForWriteStmt = "tidb_enable_tiflash_read_for_write_stmt" + + // TiDBUseAlloc indicates whether the last statement used chunk alloc + TiDBUseAlloc = "last_sql_use_alloc" ) // TiDB system variable names that both in session and global scope. @@ -732,6 +736,8 @@ const ( TiDBEnablePrepPlanCache = "tidb_enable_prepared_plan_cache" // TiDBPrepPlanCacheSize indicates the number of cached statements. TiDBPrepPlanCacheSize = "tidb_prepared_plan_cache_size" + // TiDBEnablePrepPlanCacheMemoryMonitor indicates whether to enable prepared plan cache monitor + TiDBEnablePrepPlanCacheMemoryMonitor = "tidb_enable_prepared_plan_cache_memory_monitor" // TiDBEnableGeneralPlanCache indicates whether to enable general plan cache. TiDBEnableGeneralPlanCache = "tidb_enable_general_plan_cache" @@ -749,6 +755,23 @@ const ( // ranges would exceed the limit, it chooses less accurate ranges such as full range. 0 indicates that there is no memory // limit for ranges. TiDBOptRangeMaxSize = "tidb_opt_range_max_size" + + // TiDBAnalyzePartitionConcurrency indicates concurrency for save/read partitions stats in Analyze + TiDBAnalyzePartitionConcurrency = "tidb_analyze_partition_concurrency" + // TiDBMergePartitionStatsConcurrency indicates the concurrency when merge partition stats into global stats + TiDBMergePartitionStatsConcurrency = "tidb_merge_partition_stats_concurrency" + + // TiDBOptPrefixIndexSingleScan indicates whether to do some optimizations to avoid double scan for prefix index. + // When set to true, `col is (not) null`(`col` is index prefix column) is regarded as index filter rather than table filter. + TiDBOptPrefixIndexSingleScan = "tidb_opt_prefix_index_single_scan" + + // TiDBEnableExternalTSRead indicates whether to enable read through an external ts + TiDBEnableExternalTSRead = "tidb_enable_external_ts_read" + + // TiDBEnablePlanReplayerCapture indicates whether to enable plan replayer capture + TiDBEnablePlanReplayerCapture = "tidb_enable_plan_replayer_capture" + // TiDBEnableReusechunk indicates whether to enable chunk alloc + TiDBEnableReusechunk = "tidb_enable_reuse_chunk" ) // TiDB vars that have only global scope @@ -806,10 +829,6 @@ const ( TiDBMaxAutoAnalyzeTime = "tidb_max_auto_analyze_time" // TiDBEnableConcurrentDDL indicates whether to enable the new DDL framework. TiDBEnableConcurrentDDL = "tidb_enable_concurrent_ddl" - // TiDBAuthSigningCert indicates the path of the signing certificate to do token-based authentication. - TiDBAuthSigningCert = "tidb_auth_signing_cert" - // TiDBAuthSigningKey indicates the path of the signing key to do token-based authentication. - TiDBAuthSigningKey = "tidb_auth_signing_key" // TiDBGenerateBinaryPlan indicates whether binary plan should be generated in slow log and statements summary. TiDBGenerateBinaryPlan = "tidb_generate_binary_plan" // TiDBEnableGCAwareMemoryTrack indicates whether to turn-on GC-aware memory track. @@ -829,6 +848,10 @@ const ( TiDBServerMemoryLimitGCTrigger = "tidb_server_memory_limit_gc_trigger" // TiDBEnableGOGCTuner is to enable GOGC tuner. it can tuner GOGC TiDBEnableGOGCTuner = "tidb_enable_gogc_tuner" + // TiDBGOGCTunerThreshold is to control the threshold of GOGC tuner. + TiDBGOGCTunerThreshold = "tidb_gogc_tuner_threshold" + // TiDBExternalTS is the ts to read through when the `TiDBEnableExternalTsRead` is on + TiDBExternalTS = "tidb_external_ts" ) // TiDB intentional limits @@ -996,7 +1019,7 @@ const ( DefTiDBTableCacheLease = 3 // 3s DefTiDBPersistAnalyzeOptions = true DefTiDBEnableColumnTracking = false - DefTiDBStatsLoadSyncWait = 0 + DefTiDBStatsLoadSyncWait = 100 DefTiDBStatsLoadPseudoTimeout = true DefSysdateIsNow = false DefTiDBEnableMutationChecker = false @@ -1024,6 +1047,7 @@ const ( DefTiDBMaxAutoAnalyzeTime = 12 * 60 * 60 DefTiDBEnablePrepPlanCache = true DefTiDBPrepPlanCacheSize = 100 + DefTiDBEnablePrepPlanCacheMemoryMonitor = true DefTiDBPrepPlanCacheMemoryGuardRatio = 0.1 DefTiDBEnableConcurrentDDL = concurrencyddl.TiDBEnableConcurrentDDL DefTiDBSimplifiedMetrics = false @@ -1037,7 +1061,7 @@ const ( DefEnableTiDBGCAwareMemoryTrack = true DefTiDBDefaultStrMatchSelectivity = 0.8 DefTiDBEnableTmpStorageOnOOM = true - DefTiDBEnableMDL = false + DefTiDBEnableMDL = true DefTiFlashFastScan = false DefMemoryUsageAlarmRatio = 0.7 DefMemoryUsageAlarmKeepRecordNum = 5 @@ -1048,17 +1072,26 @@ const ( DefTiDBGeneralPlanCacheSize = 100 DefTiDBEnableTiFlashReadForWriteStmt = false // MaxDDLReorgBatchSize is exported for testing. - MaxDDLReorgBatchSize int32 = 10240 - MinDDLReorgBatchSize int32 = 32 - MinExpensiveQueryTimeThreshold uint64 = 10 // 10s - DefTiDBRcWriteCheckTs = false - DefTiDBConstraintCheckInPlacePessimistic = true - DefTiDBForeignKeyChecks = false - DefTiDBOptRangeMaxSize = 0 - DefTiDBCostModelVer = 1 - DefTiDBServerMemoryLimitSessMinSize = 128 << 20 - DefTiDBServerMemoryLimitGCTrigger = 0.7 - DefTiDBEnableGOGCTuner = true + MaxDDLReorgBatchSize int32 = 10240 + MinDDLReorgBatchSize int32 = 32 + MinExpensiveQueryTimeThreshold uint64 = 10 // 10s + DefTiDBRcWriteCheckTs = false + DefTiDBForeignKeyChecks = false + DefTiDBAnalyzePartitionConcurrency = 1 + DefTiDBOptRangeMaxSize = 64 * int64(size.MB) // 64 MB + DefTiDBCostModelVer = 1 + DefTiDBServerMemoryLimitSessMinSize = 128 << 20 + DefTiDBMergePartitionStatsConcurrency = 1 + DefTiDBServerMemoryLimitGCTrigger = 0.7 + DefTiDBEnableGOGCTuner = true + // DefTiDBGOGCTunerThreshold is to limit TiDBGOGCTunerThreshold. + DefTiDBGOGCTunerThreshold float64 = 0.6 + DefTiDBOptPrefixIndexSingleScan = true + DefTiDBExternalTS = 0 + DefTiDBEnableExternalTSRead = false + DefTiDBEnableReusechunk = true + DefTiDBUseAlloc = false + DefTiDBEnablePlanReplayerCapture = false ) // Process global variables. @@ -1103,7 +1136,7 @@ var ( EnableConcurrentDDL = atomic.NewBool(DefTiDBEnableConcurrentDDL) DDLForce2Queue = atomic.NewBool(false) EnableNoopVariables = atomic.NewBool(DefTiDBEnableNoopVariables) - EnableMDL = atomic.NewBool(DefTiDBEnableMDL) + EnableMDL = atomic.NewBool(false) AutoAnalyzePartitionBatchSize = atomic.NewInt64(DefTiDBAutoAnalyzePartitionBatchSize) // EnableFastReorg indicates whether to use lightning to enhance DDL reorg performance. EnableFastReorg = atomic.NewBool(DefTiDBEnableFastReorg) @@ -1115,7 +1148,9 @@ var ( // DefTiDBServerMemoryLimit indicates the default value of TiDBServerMemoryLimit(TotalMem * 80%). // It should be a const and shouldn't be modified after tidb is started. - DefTiDBServerMemoryLimit = mathutil.Max(memory.GetMemTotalIgnoreErr()/10*8, 512<<20) + DefTiDBServerMemoryLimit = serverMemoryLimitDefaultValue() + GOGCTunerThreshold = atomic.NewFloat64(DefTiDBGOGCTunerThreshold) + EnablePlanReplayerCapture = atomic.NewBool(DefTiDBEnablePlanReplayerCapture) ) var ( @@ -1135,4 +1170,16 @@ var ( EnableDDL func() error = nil // DisableDDL is the func registered by ddl to disable running ddl in this instance. DisableDDL func() error = nil + // SetExternalTimestamp is the func registered by staleread to set externaltimestamp in pd + SetExternalTimestamp func(ctx context.Context, ts uint64) error + // GetExternalTimestamp is the func registered by staleread to get externaltimestamp from pd + GetExternalTimestamp func(ctx context.Context) (uint64, error) ) + +func serverMemoryLimitDefaultValue() string { + total, err := memory.MemTotal() + if err == nil && total != 0 { + return "80%" + } + return "0" +} diff --git a/sessionctx/variable/variable.go b/sessionctx/variable/variable.go index deca51f3e9fa3..3acecb6b83483 100644 --- a/sessionctx/variable/variable.go +++ b/sessionctx/variable/variable.go @@ -15,6 +15,7 @@ package variable import ( + "context" "strconv" "strings" "sync" @@ -136,7 +137,7 @@ type SysVar struct { // and will be called on all variables in builtinGlobalVariable, regardless of their scope. SetSession func(*SessionVars, string) error // SetGlobal is called after validation - SetGlobal func(*SessionVars, string) error + SetGlobal func(context.Context, *SessionVars, string) error // IsHintUpdatable indicate whether it's updatable via SET_VAR() hint (optional) IsHintUpdatable bool // Deprecated: Hidden previously meant that the variable still responds to SET but doesn't show up in SHOW VARIABLES @@ -149,7 +150,7 @@ type SysVar struct { // It can be used by instance-scoped variables to overwrite the previously expected value. GetSession func(*SessionVars) (string, error) // GetGlobal is a getter function for global scope. - GetGlobal func(*SessionVars) (string, error) + GetGlobal func(context.Context, *SessionVars) (string, error) // GetStateValue gets the value for session states, which is used for migrating sessions. // We need a function to override GetSession sometimes, because GetSession may not return the real value. GetStateValue func(*SessionVars) (string, bool, error) @@ -166,10 +167,10 @@ type SysVar struct { } // GetGlobalFromHook calls the GetSession func if it exists. -func (sv *SysVar) GetGlobalFromHook(s *SessionVars) (string, error) { +func (sv *SysVar) GetGlobalFromHook(ctx context.Context, s *SessionVars) (string, error) { // Call the Getter if there is one defined. if sv.GetGlobal != nil { - val, err := sv.GetGlobal(s) + val, err := sv.GetGlobal(ctx, s) if err != nil { return val, err } @@ -240,9 +241,9 @@ func (sv *SysVar) SetSessionFromHook(s *SessionVars, val string) error { } // SetGlobalFromHook calls the SetGlobal func if it exists. -func (sv *SysVar) SetGlobalFromHook(s *SessionVars, val string, skipAliases bool) error { +func (sv *SysVar) SetGlobalFromHook(ctx context.Context, s *SessionVars, val string, skipAliases bool) error { if sv.SetGlobal != nil { - return sv.SetGlobal(s, val) + return sv.SetGlobal(ctx, s, val) } // Call the SetGlobalSysVarOnly function on all the aliases for this sysVar @@ -252,7 +253,7 @@ func (sv *SysVar) SetGlobalFromHook(s *SessionVars, val string, skipAliases bool if !skipAliases && sv.Aliases != nil { for _, aliasName := range sv.Aliases { - if err := s.GlobalVarsAccessor.SetGlobalSysVarOnly(aliasName, val); err != nil { + if err := s.GlobalVarsAccessor.SetGlobalSysVarOnly(ctx, aliasName, val); err != nil { return err } } @@ -547,7 +548,7 @@ func (sv *SysVar) SkipInit() bool { func (sv *SysVar) SkipSysvarCache() bool { switch sv.Name { case TiDBGCEnable, TiDBGCRunInterval, TiDBGCLifetime, - TiDBGCConcurrency, TiDBGCScanLockMode: + TiDBGCConcurrency, TiDBGCScanLockMode, TiDBExternalTS: return true } return false @@ -621,9 +622,9 @@ type GlobalVarAccessor interface { // GetGlobalSysVar gets the global system variable value for name. GetGlobalSysVar(name string) (string, error) // SetGlobalSysVar sets the global system variable name to value. - SetGlobalSysVar(name string, value string) error + SetGlobalSysVar(ctx context.Context, name string, value string) error // SetGlobalSysVarOnly sets the global system variable without calling the validation function or updating aliases. - SetGlobalSysVarOnly(name string, value string) error + SetGlobalSysVarOnly(ctx context.Context, name string, value string) error // GetTiDBTableValue gets a value from mysql.tidb for the key 'name' GetTiDBTableValue(name string) (string, error) // SetTiDBTableValue sets a value+comment for the mysql.tidb key 'name' diff --git a/sessionctx/variable/variable_test.go b/sessionctx/variable/variable_test.go index ff7f5f73ecf9e..023cc75e7cba7 100644 --- a/sessionctx/variable/variable_test.go +++ b/sessionctx/variable/variable_test.go @@ -15,6 +15,7 @@ package variable import ( + "context" "encoding/json" "fmt" "runtime" @@ -435,18 +436,22 @@ func TestDefaultValuesAreSettable(t *testing.T) { for _, sv := range GetSysVars() { if sv.HasSessionScope() && !sv.ReadOnly { val, err := sv.Validate(vars, sv.Value, ScopeSession) - require.Equal(t, val, sv.Value) require.NoError(t, err) + require.Equal(t, val, sv.Value) } if sv.HasGlobalScope() && !sv.ReadOnly { val, err := sv.Validate(vars, sv.Value, ScopeGlobal) - require.Equal(t, val, sv.Value) require.NoError(t, err) + require.Equal(t, val, sv.Value) } } } +func TestLimitBetweenVariable(t *testing.T) { + require.Less(t, DefTiDBGOGCTunerThreshold+0.05, DefTiDBServerMemoryLimitGCTrigger) +} + // TestSysVarNameIsLowerCase tests that no new sysvars are added with uppercase characters. // In MySQL variables are always lowercase, and can be set in a case-insensitive way. func TestSysVarNameIsLowerCase(t *testing.T) { @@ -606,10 +611,10 @@ func TestInstanceScope(t *testing.T) { count := len(GetSysVars()) sv := SysVar{Scope: ScopeInstance, Name: "newinstancesysvar", Value: On, Type: TypeBool, - SetGlobal: func(s *SessionVars, val string) error { + SetGlobal: func(_ context.Context, s *SessionVars, val string) error { return fmt.Errorf("set should fail") }, - GetGlobal: func(s *SessionVars) (string, error) { + GetGlobal: func(_ context.Context, s *SessionVars) (string, error) { return "", fmt.Errorf("get should fail") }, } @@ -634,7 +639,7 @@ func TestInstanceScope(t *testing.T) { require.Equal(t, "OFF", normalizedVal) require.NoError(t, err) - err = sysVar.SetGlobalFromHook(vars, "OFF", true) // default is on + err = sysVar.SetGlobalFromHook(context.Background(), vars, "OFF", true) // default is on require.Equal(t, "set should fail", err.Error()) // Test unregistration restores previous count @@ -649,7 +654,7 @@ func TestSetSysVar(t *testing.T) { SetSysVar(SystemTimeZone, "America/New_York") require.Equal(t, "America/New_York", GetSysVar(SystemTimeZone).Value) // Test alternative Get - val, err := GetSysVar(SystemTimeZone).GetGlobalFromHook(vars) + val, err := GetSysVar(SystemTimeZone).GetGlobalFromHook(context.Background(), vars) require.Nil(t, err) require.Equal(t, "America/New_York", val) SetSysVar(SystemTimeZone, originalVal) // restore diff --git a/sessionctx/variable/varsutil.go b/sessionctx/variable/varsutil.go index 811cf65bb50b6..b64500b91d208 100644 --- a/sessionctx/variable/varsutil.go +++ b/sessionctx/variable/varsutil.go @@ -16,6 +16,7 @@ package variable import ( "fmt" + "io" "strconv" "strings" "sync/atomic" @@ -27,6 +28,7 @@ import ( "github.com/pingcap/tidb/parser/mysql" "github.com/pingcap/tidb/types" "github.com/pingcap/tidb/util/collate" + "github.com/pingcap/tidb/util/memory" "github.com/pingcap/tidb/util/timeutil" "github.com/tikv/client-go/v2/oracle" "golang.org/x/exp/slices" @@ -382,6 +384,66 @@ func parseTimeZone(s string) (*time.Location, error) { return nil, ErrUnknownTimeZone.GenWithStackByArgs(s) } +func parseMemoryLimit(s *SessionVars, normalizedValue string, originalValue string) (byteSize uint64, normalizedStr string, err error) { + defer func() { + if err == nil && byteSize > 0 && byteSize < (512<<20) { + s.StmtCtx.AppendWarning(ErrTruncatedWrongValue.GenWithStackByArgs(TiDBServerMemoryLimit, originalValue)) + byteSize = 512 << 20 + normalizedStr = "512MB" + } + }() + + // 1. Try parse percentage format: x% + if total := memory.GetMemTotalIgnoreErr(); total != 0 { + perc, str := parsePercentage(normalizedValue) + if perc != 0 { + intVal := total / 100 * perc + return intVal, str, nil + } + } + + // 2. Try parse byteSize format: xKB/MB/GB/TB or byte number + bt, str := parseByteSize(normalizedValue) + if str != "" { + return bt, str, nil + } + + return 0, "", ErrTruncatedWrongValue.GenWithStackByArgs(TiDBServerMemoryLimit, originalValue) +} + +func parsePercentage(s string) (percentage uint64, normalizedStr string) { + defer func() { + if percentage == 0 || percentage >= 100 { + percentage, normalizedStr = 0, "" + } + }() + var endString string + if n, err := fmt.Sscanf(s, "%d%%%s", &percentage, &endString); n == 1 && err == io.EOF { + return percentage, fmt.Sprintf("%d%%", percentage) + } + return 0, "" +} + +func parseByteSize(s string) (byteSize uint64, normalizedStr string) { + var endString string + if n, err := fmt.Sscanf(s, "%d%s", &byteSize, &endString); n == 1 && err == io.EOF { + return byteSize, fmt.Sprintf("%d", byteSize) + } + if n, err := fmt.Sscanf(s, "%dKB%s", &byteSize, &endString); n == 1 && err == io.EOF { + return byteSize << 10, fmt.Sprintf("%dKB", byteSize) + } + if n, err := fmt.Sscanf(s, "%dMB%s", &byteSize, &endString); n == 1 && err == io.EOF { + return byteSize << 20, fmt.Sprintf("%dMB", byteSize) + } + if n, err := fmt.Sscanf(s, "%dGB%s", &byteSize, &endString); n == 1 && err == io.EOF { + return byteSize << 30, fmt.Sprintf("%dGB", byteSize) + } + if n, err := fmt.Sscanf(s, "%dTB%s", &byteSize, &endString); n == 1 && err == io.EOF { + return byteSize << 40, fmt.Sprintf("%dTB", byteSize) + } + return 0, "" +} + func setSnapshotTS(s *SessionVars, sVal string) error { if sVal == "" { s.SnapshotTS = 0 @@ -392,21 +454,25 @@ func setSnapshotTS(s *SessionVars, sVal string) error { return fmt.Errorf("tidb_read_staleness should be clear before setting tidb_snapshot") } + tso, err := parseTSFromNumberOrTime(s, sVal) + s.SnapshotTS = tso + // tx_read_ts should be mutual exclusive with tidb_snapshot + s.TxnReadTS = NewTxnReadTS(0) + return err +} + +func parseTSFromNumberOrTime(s *SessionVars, sVal string) (uint64, error) { if tso, err := strconv.ParseUint(sVal, 10, 64); err == nil { - s.SnapshotTS = tso - return nil + return tso, nil } t, err := types.ParseTime(s.StmtCtx, sVal, mysql.TypeTimestamp, types.MaxFsp) if err != nil { - return err + return 0, err } t1, err := t.GoTime(s.Location()) - s.SnapshotTS = oracle.GoTimeToTS(t1) - // tx_read_ts should be mutual exclusive with tidb_snapshot - s.TxnReadTS = NewTxnReadTS(0) - return err + return oracle.GoTimeToTS(t1), err } func setTxnReadTS(s *SessionVars, sVal string) error { diff --git a/sessionctx/variable/varsutil_test.go b/sessionctx/variable/varsutil_test.go index 68e55bc33aea8..69c9caf294e5e 100644 --- a/sessionctx/variable/varsutil_test.go +++ b/sessionctx/variable/varsutil_test.go @@ -15,6 +15,7 @@ package variable import ( + "context" "reflect" "strconv" "testing" @@ -108,7 +109,7 @@ func TestVarsutil(t *testing.T) { err := v.SetSystemVar("autocommit", "1") require.NoError(t, err) - val, err := v.GetSessionOrGlobalSystemVar("autocommit") + val, err := v.GetSessionOrGlobalSystemVar(context.Background(), "autocommit") require.NoError(t, err) require.Equal(t, "ON", val) require.NotNil(t, v.SetSystemVar("autocommit", "")) @@ -116,19 +117,19 @@ func TestVarsutil(t *testing.T) { // 0 converts to OFF err = v.SetSystemVar("foreign_key_checks", "0") require.NoError(t, err) - val, err = v.GetSessionOrGlobalSystemVar("foreign_key_checks") + val, err = v.GetSessionOrGlobalSystemVar(context.Background(), "foreign_key_checks") require.NoError(t, err) require.Equal(t, "OFF", val) err = v.SetSystemVar("foreign_key_checks", "1") require.NoError(t, err) - val, err = v.GetSessionOrGlobalSystemVar("foreign_key_checks") + val, err = v.GetSessionOrGlobalSystemVar(context.Background(), "foreign_key_checks") require.NoError(t, err) require.Equal(t, "ON", val) err = v.SetSystemVar("sql_mode", "strict_trans_tables") require.NoError(t, err) - val, err = v.GetSessionOrGlobalSystemVar("sql_mode") + val, err = v.GetSessionOrGlobalSystemVar(context.Background(), "sql_mode") require.NoError(t, err) require.Equal(t, "STRICT_TRANS_TABLES", val) require.True(t, v.StrictSQLMode) @@ -225,7 +226,7 @@ func TestVarsutil(t *testing.T) { // Test case for TiDBConfig session variable. err = v.SetSystemVar(TiDBConfig, "abc") require.True(t, terror.ErrorEqual(err, ErrIncorrectScope)) - val, err = v.GetSessionOrGlobalSystemVar(TiDBConfig) + val, err = v.GetSessionOrGlobalSystemVar(context.Background(), TiDBConfig) require.NoError(t, err) jsonConfig, err := config.GetJSONConfig() require.NoError(t, err) @@ -254,7 +255,7 @@ func TestVarsutil(t *testing.T) { err = v.SetSystemVar(TiDBRetryLimit, "3") require.NoError(t, err) - val, err = v.GetSessionOrGlobalSystemVar(TiDBRetryLimit) + val, err = v.GetSessionOrGlobalSystemVar(context.Background(), TiDBRetryLimit) require.NoError(t, err) require.Equal(t, "3", val) require.Equal(t, int64(3), v.RetryLimit) @@ -262,7 +263,7 @@ func TestVarsutil(t *testing.T) { require.Equal(t, "", v.EnableTablePartition) err = v.SetSystemVar(TiDBEnableTablePartition, "on") require.NoError(t, err) - val, err = v.GetSessionOrGlobalSystemVar(TiDBEnableTablePartition) + val, err = v.GetSessionOrGlobalSystemVar(context.Background(), TiDBEnableTablePartition) require.NoError(t, err) require.Equal(t, "ON", val) require.Equal(t, "ON", v.EnableTablePartition) @@ -270,7 +271,7 @@ func TestVarsutil(t *testing.T) { require.False(t, v.EnableListTablePartition) err = v.SetSystemVar(TiDBEnableListTablePartition, "on") require.NoError(t, err) - val, err = v.GetSessionOrGlobalSystemVar(TiDBEnableListTablePartition) + val, err = v.GetSessionOrGlobalSystemVar(context.Background(), TiDBEnableListTablePartition) require.NoError(t, err) require.Equal(t, "ON", val) require.True(t, v.EnableListTablePartition) @@ -278,20 +279,20 @@ func TestVarsutil(t *testing.T) { require.Equal(t, DefTiDBOptJoinReorderThreshold, v.TiDBOptJoinReorderThreshold) err = v.SetSystemVar(TiDBOptJoinReorderThreshold, "5") require.NoError(t, err) - val, err = v.GetSessionOrGlobalSystemVar(TiDBOptJoinReorderThreshold) + val, err = v.GetSessionOrGlobalSystemVar(context.Background(), TiDBOptJoinReorderThreshold) require.NoError(t, err) require.Equal(t, "5", val) require.Equal(t, 5, v.TiDBOptJoinReorderThreshold) err = v.SetSystemVar(TiDBLowResolutionTSO, "1") require.NoError(t, err) - val, err = v.GetSessionOrGlobalSystemVar(TiDBLowResolutionTSO) + val, err = v.GetSessionOrGlobalSystemVar(context.Background(), TiDBLowResolutionTSO) require.NoError(t, err) require.Equal(t, "ON", val) require.True(t, v.LowResolutionTSO) err = v.SetSystemVar(TiDBLowResolutionTSO, "0") require.NoError(t, err) - val, err = v.GetSessionOrGlobalSystemVar(TiDBLowResolutionTSO) + val, err = v.GetSessionOrGlobalSystemVar(context.Background(), TiDBLowResolutionTSO) require.NoError(t, err) require.Equal(t, "OFF", val) require.False(t, v.LowResolutionTSO) @@ -299,7 +300,7 @@ func TestVarsutil(t *testing.T) { require.Equal(t, 0.9, v.CorrelationThreshold) err = v.SetSystemVar(TiDBOptCorrelationThreshold, "0") require.NoError(t, err) - val, err = v.GetSessionOrGlobalSystemVar(TiDBOptCorrelationThreshold) + val, err = v.GetSessionOrGlobalSystemVar(context.Background(), TiDBOptCorrelationThreshold) require.NoError(t, err) require.Equal(t, "0", val) require.Equal(t, float64(0), v.CorrelationThreshold) @@ -307,7 +308,7 @@ func TestVarsutil(t *testing.T) { require.Equal(t, 3.0, v.GetCPUFactor()) err = v.SetSystemVar(TiDBOptCPUFactor, "5.0") require.NoError(t, err) - val, err = v.GetSessionOrGlobalSystemVar(TiDBOptCPUFactor) + val, err = v.GetSessionOrGlobalSystemVar(context.Background(), TiDBOptCPUFactor) require.NoError(t, err) require.Equal(t, "5.0", val) require.Equal(t, 5.0, v.GetCPUFactor()) @@ -315,7 +316,7 @@ func TestVarsutil(t *testing.T) { require.Equal(t, 3.0, v.GetCopCPUFactor()) err = v.SetSystemVar(TiDBOptCopCPUFactor, "5.0") require.NoError(t, err) - val, err = v.GetSessionOrGlobalSystemVar(TiDBOptCopCPUFactor) + val, err = v.GetSessionOrGlobalSystemVar(context.Background(), TiDBOptCopCPUFactor) require.NoError(t, err) require.Equal(t, "5.0", val) require.Equal(t, 5.0, v.GetCopCPUFactor()) @@ -323,7 +324,7 @@ func TestVarsutil(t *testing.T) { require.Equal(t, 24.0, v.CopTiFlashConcurrencyFactor) err = v.SetSystemVar(TiDBOptTiFlashConcurrencyFactor, "5.0") require.NoError(t, err) - val, err = v.GetSessionOrGlobalSystemVar(TiDBOptTiFlashConcurrencyFactor) + val, err = v.GetSessionOrGlobalSystemVar(context.Background(), TiDBOptTiFlashConcurrencyFactor) require.NoError(t, err) require.Equal(t, "5.0", val) require.Equal(t, 5.0, v.GetCopCPUFactor()) @@ -331,7 +332,7 @@ func TestVarsutil(t *testing.T) { require.Equal(t, 1.0, v.GetNetworkFactor(nil)) err = v.SetSystemVar(TiDBOptNetworkFactor, "3.0") require.NoError(t, err) - val, err = v.GetSessionOrGlobalSystemVar(TiDBOptNetworkFactor) + val, err = v.GetSessionOrGlobalSystemVar(context.Background(), TiDBOptNetworkFactor) require.NoError(t, err) require.Equal(t, "3.0", val) require.Equal(t, 3.0, v.GetNetworkFactor(nil)) @@ -339,7 +340,7 @@ func TestVarsutil(t *testing.T) { require.Equal(t, 1.5, v.GetScanFactor(nil)) err = v.SetSystemVar(TiDBOptScanFactor, "3.0") require.NoError(t, err) - val, err = v.GetSessionOrGlobalSystemVar(TiDBOptScanFactor) + val, err = v.GetSessionOrGlobalSystemVar(context.Background(), TiDBOptScanFactor) require.NoError(t, err) require.Equal(t, "3.0", val) require.Equal(t, 3.0, v.GetScanFactor(nil)) @@ -347,7 +348,7 @@ func TestVarsutil(t *testing.T) { require.Equal(t, 3.0, v.GetDescScanFactor(nil)) err = v.SetSystemVar(TiDBOptDescScanFactor, "5.0") require.NoError(t, err) - val, err = v.GetSessionOrGlobalSystemVar(TiDBOptDescScanFactor) + val, err = v.GetSessionOrGlobalSystemVar(context.Background(), TiDBOptDescScanFactor) require.NoError(t, err) require.Equal(t, "5.0", val) require.Equal(t, 5.0, v.GetDescScanFactor(nil)) @@ -355,7 +356,7 @@ func TestVarsutil(t *testing.T) { require.Equal(t, 20.0, v.GetSeekFactor(nil)) err = v.SetSystemVar(TiDBOptSeekFactor, "50.0") require.NoError(t, err) - val, err = v.GetSessionOrGlobalSystemVar(TiDBOptSeekFactor) + val, err = v.GetSessionOrGlobalSystemVar(context.Background(), TiDBOptSeekFactor) require.NoError(t, err) require.Equal(t, "50.0", val) require.Equal(t, 50.0, v.GetSeekFactor(nil)) @@ -363,7 +364,7 @@ func TestVarsutil(t *testing.T) { require.Equal(t, 0.001, v.GetMemoryFactor()) err = v.SetSystemVar(TiDBOptMemoryFactor, "1.0") require.NoError(t, err) - val, err = v.GetSessionOrGlobalSystemVar(TiDBOptMemoryFactor) + val, err = v.GetSessionOrGlobalSystemVar(context.Background(), TiDBOptMemoryFactor) require.NoError(t, err) require.Equal(t, "1.0", val) require.Equal(t, 1.0, v.GetMemoryFactor()) @@ -371,7 +372,7 @@ func TestVarsutil(t *testing.T) { require.Equal(t, 1.5, v.GetDiskFactor()) err = v.SetSystemVar(TiDBOptDiskFactor, "1.1") require.NoError(t, err) - val, err = v.GetSessionOrGlobalSystemVar(TiDBOptDiskFactor) + val, err = v.GetSessionOrGlobalSystemVar(context.Background(), TiDBOptDiskFactor) require.NoError(t, err) require.Equal(t, "1.1", val) require.Equal(t, 1.1, v.GetDiskFactor()) @@ -379,33 +380,33 @@ func TestVarsutil(t *testing.T) { require.Equal(t, 3.0, v.GetConcurrencyFactor()) err = v.SetSystemVar(TiDBOptConcurrencyFactor, "5.0") require.NoError(t, err) - val, err = v.GetSessionOrGlobalSystemVar(TiDBOptConcurrencyFactor) + val, err = v.GetSessionOrGlobalSystemVar(context.Background(), TiDBOptConcurrencyFactor) require.NoError(t, err) require.Equal(t, "5.0", val) require.Equal(t, 5.0, v.GetConcurrencyFactor()) err = v.SetSystemVar(TiDBReplicaRead, "follower") require.NoError(t, err) - val, err = v.GetSessionOrGlobalSystemVar(TiDBReplicaRead) + val, err = v.GetSessionOrGlobalSystemVar(context.Background(), TiDBReplicaRead) require.NoError(t, err) require.Equal(t, "follower", val) require.Equal(t, kv.ReplicaReadFollower, v.GetReplicaRead()) err = v.SetSystemVar(TiDBReplicaRead, "leader") require.NoError(t, err) - val, err = v.GetSessionOrGlobalSystemVar(TiDBReplicaRead) + val, err = v.GetSessionOrGlobalSystemVar(context.Background(), TiDBReplicaRead) require.NoError(t, err) require.Equal(t, "leader", val) require.Equal(t, kv.ReplicaReadLeader, v.GetReplicaRead()) err = v.SetSystemVar(TiDBReplicaRead, "leader-and-follower") require.NoError(t, err) - val, err = v.GetSessionOrGlobalSystemVar(TiDBReplicaRead) + val, err = v.GetSessionOrGlobalSystemVar(context.Background(), TiDBReplicaRead) require.NoError(t, err) require.Equal(t, "leader-and-follower", val) require.Equal(t, kv.ReplicaReadMixed, v.GetReplicaRead()) err = v.SetSystemVar(TiDBRedactLog, "ON") require.NoError(t, err) - val, err = v.GetSessionOrGlobalSystemVar(TiDBRedactLog) + val, err = v.GetSessionOrGlobalSystemVar(context.Background(), TiDBRedactLog) require.NoError(t, err) require.Equal(t, "ON", val) @@ -435,7 +436,7 @@ func TestVarsutil(t *testing.T) { require.Error(t, err) require.Regexp(t, "'tidb_table_cache_lease' is a GLOBAL variable and should be set with SET GLOBAL", err.Error()) - val, err = v.GetSessionOrGlobalSystemVar(TiDBMinPagingSize) + val, err = v.GetSessionOrGlobalSystemVar(context.Background(), TiDBMinPagingSize) require.NoError(t, err) require.Equal(t, strconv.Itoa(DefMinPagingSize), val) @@ -443,7 +444,7 @@ func TestVarsutil(t *testing.T) { require.NoError(t, err) require.Equal(t, v.MinPagingSize, 123) - val, err = v.GetSessionOrGlobalSystemVar(TiDBMaxPagingSize) + val, err = v.GetSessionOrGlobalSystemVar(context.Background(), TiDBMaxPagingSize) require.NoError(t, err) require.Equal(t, strconv.Itoa(DefMaxPagingSize), val) diff --git a/sessiontxn/failpoint.go b/sessiontxn/failpoint.go index e2a3f29833b42..25c13a3bc80e2 100644 --- a/sessiontxn/failpoint.go +++ b/sessiontxn/failpoint.go @@ -52,6 +52,9 @@ var TsoWaitCount stringutil.StringerStr = "tsoWaitCount" // TsoUseConstantCount is the key for constant tso counter var TsoUseConstantCount stringutil.StringerStr = "tsoUseConstantCount" +// CallOnStmtRetryCount is the key for recording calling OnStmtRetry at RC isolation level +var CallOnStmtRetryCount stringutil.StringerStr = "callOnStmtRetryCount" + // AssertLockErr is used to record the lock errors we encountered // Only for test var AssertLockErr stringutil.StringerStr = "assertLockError" @@ -153,6 +156,17 @@ func TsoUseConstantCountInc(sctx sessionctx.Context) { sctx.SetValue(TsoUseConstantCount, count) } +// OnStmtRetryCountInc is used only for test. +// When it is called, there is calling `(p *PessimisticRCTxnContextProvider) OnStmtRetry`. +func OnStmtRetryCountInc(sctx sessionctx.Context) { + count, ok := sctx.Value(CallOnStmtRetryCount).(int) + if !ok { + count = 0 + } + count++ + sctx.SetValue(CallOnStmtRetryCount, count) +} + // ExecTestHook is used only for test. It consumes hookKey in session wait do what it gets from it. func ExecTestHook(sctx sessionctx.Context, hookKey fmt.Stringer) { c := sctx.Value(hookKey) diff --git a/sessiontxn/isolation/base.go b/sessiontxn/isolation/base.go index 2db2797ea91e9..eeac646675bdf 100644 --- a/sessiontxn/isolation/base.go +++ b/sessiontxn/isolation/base.go @@ -143,6 +143,12 @@ func (p *baseTxnContextProvider) GetTxnInfoSchema() infoschema.InfoSchema { if is := p.sctx.GetSessionVars().SnapshotInfoschema; is != nil { return is.(infoschema.InfoSchema) } + if _, ok := p.infoSchema.(*infoschema.SessionExtendedInfoSchema); !ok { + p.infoSchema = &infoschema.SessionExtendedInfoSchema{ + InfoSchema: p.infoSchema, + } + p.sctx.GetSessionVars().TxnCtx.InfoSchema = p.infoSchema + } return p.infoSchema } diff --git a/sessiontxn/isolation/main_test.go b/sessiontxn/isolation/main_test.go index aa8d031f70975..e0b8ace02bce6 100644 --- a/sessiontxn/isolation/main_test.go +++ b/sessiontxn/isolation/main_test.go @@ -39,6 +39,7 @@ func TestMain(m *testing.M) { tikv.EnableFailpoints() opts := []goleak.Option{ goleak.IgnoreTopFunction("github.com/golang/glog.(*loggingT).flushDaemon"), + goleak.IgnoreTopFunction("github.com/lestrrat-go/httprc.runFetchWorker"), goleak.IgnoreTopFunction("go.etcd.io/etcd/client/pkg/v3/logutil.(*MergeLogger).outputLoop"), goleak.IgnoreTopFunction("go.opencensus.io/stats/view.(*worker).start"), } diff --git a/sessiontxn/isolation/readcommitted.go b/sessiontxn/isolation/readcommitted.go index 1a9ec05c48f01..8752eb5b35e11 100644 --- a/sessiontxn/isolation/readcommitted.go +++ b/sessiontxn/isolation/readcommitted.go @@ -131,6 +131,10 @@ func (p *PessimisticRCTxnContextProvider) OnStmtRetry(ctx context.Context) error if err := p.baseTxnContextProvider.OnStmtRetry(ctx); err != nil { return err } + failpoint.Inject("CallOnStmtRetry", func() { + sessiontxn.OnStmtRetryCountInc(p.sctx) + }) + p.latestOracleTSValid = false p.checkTSInWriteStmt = false return p.prepareStmt(false) } @@ -199,8 +203,6 @@ func (p *PessimisticRCTxnContextProvider) handleAfterQueryError(queryErr error) return sessiontxn.NoIdea() } - p.latestOracleTSValid = false - rcReadCheckTSWriteConfilictCounter.Inc() logutil.Logger(p.ctx).Info("RC read with ts checking has failed, retry RC read", @@ -209,7 +211,6 @@ func (p *PessimisticRCTxnContextProvider) handleAfterQueryError(queryErr error) } func (p *PessimisticRCTxnContextProvider) handleAfterPessimisticLockError(lockErr error) (sessiontxn.StmtErrorAction, error) { - p.latestOracleTSValid = false txnCtx := p.sctx.GetSessionVars().TxnCtx retryable := false if deadlock, ok := errors.Cause(lockErr).(*tikverr.ErrDeadlock); ok && deadlock.IsRetryable { diff --git a/sessiontxn/staleread/BUILD.bazel b/sessiontxn/staleread/BUILD.bazel index f89148671792f..9c1e11823e32a 100644 --- a/sessiontxn/staleread/BUILD.bazel +++ b/sessiontxn/staleread/BUILD.bazel @@ -21,6 +21,7 @@ go_library( "//parser/ast", "//parser/mysql", "//sessionctx", + "//sessionctx/stmtctx", "//sessionctx/variable", "//sessiontxn", "//sessiontxn/internal", @@ -36,6 +37,7 @@ go_test( name = "staleread_test", timeout = "short", srcs = [ + "externalts_test.go", "main_test.go", "processor_test.go", "provider_test.go", @@ -48,6 +50,7 @@ go_test( "//kv", "//parser", "//parser/ast", + "//parser/auth", "//sessionctx", "//sessiontxn", "//table/temptable", diff --git a/sessiontxn/staleread/externalts_test.go b/sessiontxn/staleread/externalts_test.go new file mode 100644 index 0000000000000..289c24d820d8f --- /dev/null +++ b/sessiontxn/staleread/externalts_test.go @@ -0,0 +1,135 @@ +// Copyright 2022 PingCAP, Inc. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +package staleread_test + +import ( + "testing" + + "github.com/pingcap/tidb/parser/auth" + "github.com/pingcap/tidb/testkit" + "github.com/stretchr/testify/require" +) + +func TestReadWriteExternalTimestamp(t *testing.T) { + store := testkit.CreateMockStore(t) + tk := testkit.NewTestKit(t, store) + + tk.MustQuery("select @@tidb_external_ts").Check(testkit.Rows("0")) + tk.MustExec("set global tidb_external_ts=19980613") + tk.MustQuery("select @@tidb_external_ts").Check(testkit.Rows("19980613")) + tk.MustExec("set global tidb_external_ts=20220930") + tk.MustQuery("select @@tidb_external_ts").Check(testkit.Rows("20220930")) +} + +func TestExternalTimestampRead(t *testing.T) { + store := testkit.CreateMockStore(t) + tk := testkit.NewTestKit(t, store) + + tk.MustExec("use test") + tk.MustExec("create table t (id INT NOT NULL,d double,PRIMARY KEY (id))") + tk.MustExec("insert into t values (0, 100)") + tk.MustExec("insert into t values (1, 100)") + tk.MustExec("insert into t values (2, 100)") + tk.MustExec("insert into t values (3, 100)") + tk.MustQuery("select * from t").Check(testkit.Rows("0 100", "1 100", "2 100", "3 100")) + + tk.MustQuery("select @@tidb_external_ts").Check(testkit.Rows("0")) + tk.MustExec("start transaction;set global tidb_external_ts=@@tidb_current_ts;commit;") + tk.MustExec("insert into t values (4, 100)") + // as the `tidb_external_ts` is set an old value, the newest row (4, 100) cannot be read + tk.MustExec("set tidb_enable_external_ts_read=ON") + tk.MustQuery("select * from t").Check(testkit.Rows("0 100", "1 100", "2 100", "3 100")) + + tk.MustExec("set tidb_enable_external_ts_read=OFF") + tk.MustQuery("select * from t").Check(testkit.Rows("0 100", "1 100", "2 100", "3 100", "4 100")) +} + +func TestExternalTimestampReadonly(t *testing.T) { + store := testkit.CreateMockStore(t) + tk := testkit.NewTestKit(t, store) + require.NoError(t, tk.Session().Auth(&auth.UserIdentity{Username: "root", Hostname: "%"}, nil, nil)) + + tk.MustExec("use test") + tk.MustExec("create table t (id INT NOT NULL,PRIMARY KEY (id))") + + tk.MustQuery("select @@tidb_external_ts").Check(testkit.Rows("0")) + tk.MustExec("start transaction;set global tidb_external_ts=@@tidb_current_ts;commit;") + + tk.MustExec("set tidb_enable_external_ts_read=ON") + _, err := tk.Exec("insert into t values (0)") + require.Error(t, err) + + tk.MustExec("set tidb_enable_external_ts_read=OFF") + tk.MustExec("insert into t values (0)") +} + +func TestExternalTimestampReadWithTransaction(t *testing.T) { + store := testkit.CreateMockStore(t) + tk := testkit.NewTestKit(t, store) + require.NoError(t, tk.Session().Auth(&auth.UserIdentity{Username: "root", Hostname: "%"}, nil, nil)) + + tk.MustExec("use test") + tk.MustExec("create table t (id INT NOT NULL,PRIMARY KEY (id))") + + tk.MustQuery("select @@tidb_external_ts").Check(testkit.Rows("0")) + tk.MustExec("start transaction;set global tidb_external_ts=@@tidb_current_ts;commit;") + + tk.MustExec("insert into t values (0)") + tk.MustQuery("select * from t").Check(testkit.Rows("0")) + + tk.MustExec("set tidb_enable_external_ts_read=ON") + tk.MustQuery("select * from t").Check(testkit.Rows()) + tk.MustExec("start transaction") + tk.MustQuery("select * from t").Check(testkit.Rows()) + tk.MustExec("commit") + + tk.MustExec("set tidb_enable_external_ts_read=OFF") + tk.MustExec("start transaction") + tk.MustQuery("select * from t").Check(testkit.Rows("0")) + tk.MustExec("commit") + + tk.MustExec("start transaction") + tk.MustQuery("select * from t").Check(testkit.Rows("0")) + tk.MustExec("set tidb_enable_external_ts_read=ON") + // `tidb_enable_external_ts_read` doesn't affect existing transaction + tk.MustQuery("select * from t").Check(testkit.Rows("0")) + tk.MustExec("set tidb_enable_external_ts_read=OFF") + tk.MustExec("commit") +} + +func TestExternalTimestampNotAffectPrepare(t *testing.T) { + store := testkit.CreateMockStore(t) + tk := testkit.NewTestKit(t, store) + require.NoError(t, tk.Session().Auth(&auth.UserIdentity{Username: "root", Hostname: "%"}, nil, nil)) + + tk.MustExec("use test") + tk.MustExec("create table t (id INT NOT NULL,PRIMARY KEY (id))") + + tk.MustExec("insert into t values (0)") + tk.MustQuery("select * from t").Check(testkit.Rows("0")) + + tk.MustQuery("select @@tidb_external_ts").Check(testkit.Rows("0")) + tk.MustExec("start transaction;set global tidb_external_ts=@@tidb_current_ts;commit;") + + tk.MustExec("insert into t values (1)") + tk.MustQuery("select * from t").Check(testkit.Rows("0", "1")) + + tk.MustExec("set tidb_enable_external_ts_read=on") + tk.MustExec("prepare my_select from 'select * from t'") + tk.MustQuery("execute my_select").Check(testkit.Rows("0")) + tk.MustExec("set tidb_enable_external_ts_read=off") + + tk.MustQuery("execute my_select").Check(testkit.Rows("0", "1")) +} diff --git a/sessiontxn/staleread/main_test.go b/sessiontxn/staleread/main_test.go index 7ed95c5699c5c..fb4766298666c 100644 --- a/sessiontxn/staleread/main_test.go +++ b/sessiontxn/staleread/main_test.go @@ -26,6 +26,7 @@ func TestMain(m *testing.M) { tikv.EnableFailpoints() opts := []goleak.Option{ goleak.IgnoreTopFunction("github.com/golang/glog.(*loggingT).flushDaemon"), + goleak.IgnoreTopFunction("github.com/lestrrat-go/httprc.runFetchWorker"), goleak.IgnoreTopFunction("go.etcd.io/etcd/client/pkg/v3/logutil.(*MergeLogger).outputLoop"), goleak.IgnoreTopFunction("go.opencensus.io/stats/view.(*worker).start"), } diff --git a/sessiontxn/staleread/processor.go b/sessiontxn/staleread/processor.go index 887b57f28fb45..2fc7f3806632b 100644 --- a/sessiontxn/staleread/processor.go +++ b/sessiontxn/staleread/processor.go @@ -50,6 +50,7 @@ type Processor interface { } type baseProcessor struct { + ctx context.Context sctx sessionctx.Context txnManager sessiontxn.TxnManager @@ -59,7 +60,8 @@ type baseProcessor struct { is infoschema.InfoSchema } -func (p *baseProcessor) init(sctx sessionctx.Context) { +func (p *baseProcessor) init(ctx context.Context, sctx sessionctx.Context) { + p.ctx = ctx p.sctx = sctx p.txnManager = sessiontxn.GetTxnManager(sctx) } @@ -103,6 +105,16 @@ func (p *baseProcessor) setEvaluatedTS(ts uint64) (err error) { }) } +// setEvaluatedTSWithoutEvaluator sets the ts, but not set the evaluator, so it doesn't affect prepare statement +func (p *baseProcessor) setEvaluatedTSWithoutEvaluator(ts uint64) (err error) { + is, err := GetSessionSnapshotInfoSchema(p.sctx, ts) + if err != nil { + return err + } + + return p.setEvaluatedValues(ts, is, nil) +} + func (p *baseProcessor) setEvaluatedEvaluator(evaluator StalenessTSEvaluator) error { ts, err := evaluator(p.sctx) if err != nil { @@ -135,9 +147,9 @@ type staleReadProcessor struct { } // NewStaleReadProcessor creates a new stale read processor -func NewStaleReadProcessor(sctx sessionctx.Context) Processor { +func NewStaleReadProcessor(ctx context.Context, sctx sessionctx.Context) Processor { p := &staleReadProcessor{} - p.init(sctx) + p.init(ctx, sctx) return p } @@ -155,7 +167,7 @@ func (p *staleReadProcessor) OnSelectTable(tn *ast.TableName) error { } // If `stmtAsOfTS` is not 0, it means we use 'select ... from xxx as of timestamp ...' - stmtAsOfTS, err := parseAndValidateAsOf(p.sctx, tn.AsOf) + stmtAsOfTS, err := parseAndValidateAsOf(p.ctx, p.sctx, tn.AsOf) if err != nil { return err } @@ -204,6 +216,10 @@ func (p *staleReadProcessor) evaluateFromTxn() error { nil, ) } + + // Don't consider external ts, but just set non-stale read directly,because stepping here means + // when the transaction begins, the external ts read hasn't been turned on, but it was turned + // on during the transaction. Ignore it to avoid unexpected stepping back. return p.setAsNonStaleRead() } @@ -234,11 +250,19 @@ func (p *staleReadProcessor) evaluateFromStmtTSOrSysVariable(stmtTS uint64) erro return p.setEvaluatedEvaluator(evaluator) } + ts, err := getTSFromExternalTS(p.ctx, p.sctx) + if err != nil { + return errAsOf.FastGenWithCause(err.Error()) + } + if ts > 0 { + return p.setEvaluatedTSWithoutEvaluator(ts) + } + // Otherwise, it means we should not use stale read. return p.setAsNonStaleRead() } -func parseAndValidateAsOf(sctx sessionctx.Context, asOf *ast.AsOfClause) (uint64, error) { +func parseAndValidateAsOf(ctx context.Context, sctx sessionctx.Context, asOf *ast.AsOfClause) (uint64, error) { if asOf == nil { return 0, nil } @@ -248,7 +272,7 @@ func parseAndValidateAsOf(sctx sessionctx.Context, asOf *ast.AsOfClause) (uint64 return 0, err } - if err = sessionctx.ValidateStaleReadTS(context.TODO(), sctx, ts); err != nil { + if err = sessionctx.ValidateStaleReadTS(ctx, sctx, ts); err != nil { return 0, err } @@ -266,6 +290,18 @@ func getTsEvaluatorFromReadStaleness(sctx sessionctx.Context) StalenessTSEvaluat } } +func getTSFromExternalTS(ctx context.Context, sctx sessionctx.Context) (uint64, error) { + if sctx.GetSessionVars().EnableExternalTSRead && !sctx.GetSessionVars().InRestrictedSQL { + externalTimestamp, err := GetExternalTimestamp(ctx, sctx) + if err != nil { + return 0, err + } + return externalTimestamp, nil + } + + return 0, nil +} + // GetSessionSnapshotInfoSchema returns the session's information schema with specified ts func GetSessionSnapshotInfoSchema(sctx sessionctx.Context, snapshotTS uint64) (infoschema.InfoSchema, error) { is, err := domain.GetDomain(sctx).GetSnapshotInfoSchema(snapshotTS) diff --git a/sessiontxn/staleread/processor_test.go b/sessiontxn/staleread/processor_test.go index 4a98bff0364fc..204bb63a3d8de 100644 --- a/sessiontxn/staleread/processor_test.go +++ b/sessiontxn/staleread/processor_test.go @@ -15,7 +15,9 @@ package staleread_test import ( + "context" "fmt" + "strconv" "testing" "time" @@ -92,6 +94,14 @@ func astTableWithAsOf(t *testing.T, dt string) *ast.TableName { return sel.From.TableRefs.Left.(*ast.TableSource).Source.(*ast.TableName) } +func getCurrentExternalTimestamp(t *testing.T, tk *testkit.TestKit) uint64 { + externalTimestampStr := tk.MustQuery("select @@tidb_external_ts").Rows()[0][0].(string) + externalTimestamp, err := strconv.ParseUint(externalTimestampStr, 10, 64) + require.NoError(t, err) + + return externalTimestamp +} + func TestStaleReadProcessorWithSelectTable(t *testing.T) { store := testkit.CreateMockStore(t) tk := testkit.NewTestKit(t, store) @@ -176,6 +186,46 @@ func TestStaleReadProcessorWithSelectTable(t *testing.T) { require.NoError(t, err) p1.checkMatchProcessor(t, processor, true) tk.MustExec("set @@tidb_read_staleness=''") + + // `@@tidb_external_ts` + tk.MustExec("start transaction;set global tidb_external_ts=@@tidb_current_ts;commit") + tk.MustExec("set tidb_enable_external_ts_read=ON") + processor = createProcessor(t, tk.Session()) + err = processor.OnSelectTable(tn) + require.True(t, processor.IsStaleness()) + expectedTS = getCurrentExternalTimestamp(t, tk) + require.Equal(t, expectedTS, processor.GetStalenessReadTS()) + tk.MustExec("set tidb_enable_external_ts_read=OFF") + + // `@@tidb_external_ts` will be ignored when `as of`, `@@tx_read_ts` or `@@tidb_read_staleness` + tk.MustExec("start transaction;set global tidb_external_ts=@@tidb_current_ts;commit") + tk.MustExec("set tidb_enable_external_ts_read=ON") + processor = createProcessor(t, tk.Session()) + err = processor.OnSelectTable(p1.tn) + require.NoError(t, err) + p1.checkMatchProcessor(t, processor, true) + + tk.MustExec(fmt.Sprintf("SET TRANSACTION READ ONLY AS OF TIMESTAMP '%s'", p1.dt)) + processor = createProcessor(t, tk.Session()) + err = processor.OnSelectTable(tn) + require.NoError(t, err) + p1.checkMatchProcessor(t, processor, true) + + tk.MustExec("set @@tidb_read_staleness=-5") + processor = createProcessor(t, tk.Session()) + err = processor.OnSelectTable(tn) + require.True(t, processor.IsStaleness()) + require.Equal(t, int64(0), processor.GetStalenessInfoSchema().SchemaMetaVersion()) + expectedTS, err = staleread.CalculateTsWithReadStaleness(tk.Session(), -5*time.Second) + require.NoError(t, err) + require.Equal(t, expectedTS, processor.GetStalenessReadTS()) + evaluator = processor.GetStalenessTSEvaluatorForPrepare() + evaluatorTS, err = evaluator(tk.Session()) + require.NoError(t, err) + require.Equal(t, expectedTS, evaluatorTS) + tk.MustExec("set @@tidb_read_staleness=''") + + tk.MustExec("set tidb_enable_external_ts_read=OFF") } func TestStaleReadProcessorWithExecutePreparedStmt(t *testing.T) { @@ -255,6 +305,43 @@ func TestStaleReadProcessorWithExecutePreparedStmt(t *testing.T) { require.NoError(t, err) p1.checkMatchProcessor(t, processor, true) tk.MustExec("set @@tidb_read_staleness=''") + + // `@@tidb_external_ts` + tk.MustExec("start transaction;set global tidb_external_ts=@@tidb_current_ts;commit") + tk.MustExec("set tidb_enable_external_ts_read=ON") + processor = createProcessor(t, tk.Session()) + err = processor.OnExecutePreparedStmt(nil) + require.True(t, processor.IsStaleness()) + expectedTS = getCurrentExternalTimestamp(t, tk) + require.Equal(t, expectedTS, processor.GetStalenessReadTS()) + tk.MustExec("set tidb_enable_external_ts_read=OFF") + + // `@@tidb_external_ts` will be ignored when `as of`, `@@tx_read_ts` or `@@tidb_read_staleness` + tk.MustExec("start transaction;set global tidb_external_ts=@@tidb_current_ts;commit") + tk.MustExec("set tidb_enable_external_ts_read=ON") + + processor = createProcessor(t, tk.Session()) + err = processor.OnSelectTable(p1.tn) + require.NoError(t, err) + p1.checkMatchProcessor(t, processor, true) + + tk.MustExec(fmt.Sprintf("SET TRANSACTION READ ONLY AS OF TIMESTAMP '%s'", p1.dt)) + processor = createProcessor(t, tk.Session()) + err = processor.OnExecutePreparedStmt(nil) + require.NoError(t, err) + p1.checkMatchProcessor(t, processor, true) + + tk.MustExec("set @@tidb_read_staleness=-5") + processor = createProcessor(t, tk.Session()) + err = processor.OnExecutePreparedStmt(nil) + require.True(t, processor.IsStaleness()) + require.Equal(t, int64(0), processor.GetStalenessInfoSchema().SchemaMetaVersion()) + expectedTS, err = staleread.CalculateTsWithReadStaleness(tk.Session(), -5*time.Second) + require.NoError(t, err) + require.Equal(t, expectedTS, processor.GetStalenessReadTS()) + tk.MustExec("set @@tidb_read_staleness=''") + + tk.MustExec("set tidb_enable_external_ts_read=OFF") } func TestStaleReadProcessorInTxn(t *testing.T) { @@ -287,7 +374,7 @@ func TestStaleReadProcessorInTxn(t *testing.T) { require.Error(t, err) require.Equal(t, "[planner:8135]invalid as of timestamp: as of timestamp can't be set in transaction.", err.Error()) - // return an error when execute prepared stmt with ts evaluator + // return an error when execute prepared stmt with as of processor = createProcessor(t, tk.Session()) err = processor.OnExecutePreparedStmt(func(sctx sessionctx.Context) (uint64, error) { return p1.ts, nil @@ -331,7 +418,7 @@ func TestStaleReadProcessorInTxn(t *testing.T) { } func createProcessor(t *testing.T, se sessionctx.Context) staleread.Processor { - processor := staleread.NewStaleReadProcessor(se) + processor := staleread.NewStaleReadProcessor(context.Background(), se) require.False(t, processor.IsStaleness()) require.Equal(t, uint64(0), processor.GetStalenessReadTS()) require.Nil(t, processor.GetStalenessTSEvaluatorForPrepare()) diff --git a/sessiontxn/staleread/util.go b/sessiontxn/staleread/util.go index 36d0b869e38f7..3fa84f72cae0b 100644 --- a/sessiontxn/staleread/util.go +++ b/sessiontxn/staleread/util.go @@ -15,12 +15,15 @@ package staleread import ( + "context" "time" "github.com/pingcap/tidb/expression" "github.com/pingcap/tidb/parser/ast" "github.com/pingcap/tidb/parser/mysql" "github.com/pingcap/tidb/sessionctx" + "github.com/pingcap/tidb/sessionctx/stmtctx" + "github.com/pingcap/tidb/sessionctx/variable" "github.com/pingcap/tidb/types" "github.com/tikv/client-go/v2/oracle" ) @@ -65,3 +68,17 @@ func CalculateTsWithReadStaleness(sctx sessionctx.Context, readStaleness time.Du func IsStmtStaleness(sctx sessionctx.Context) bool { return sctx.GetSessionVars().StmtCtx.IsStaleness } + +// GetExternalTimestamp returns the external timestamp in cache, or get and store it in cache +func GetExternalTimestamp(ctx context.Context, sctx sessionctx.Context) (uint64, error) { + // Try to get from the stmt cache to make sure this function is deterministic. + stmtCtx := sctx.GetSessionVars().StmtCtx + externalTimestamp, err := stmtCtx.GetOrEvaluateStmtCache(stmtctx.StmtExternalTSCacheKey, func() (interface{}, error) { + return variable.GetExternalTimestamp(ctx) + }) + + if err != nil { + return 0, errAsOf.FastGenWithCause(err.Error()) + } + return externalTimestamp.(uint64), nil +} diff --git a/sessiontxn/txn_context_test.go b/sessiontxn/txn_context_test.go index 726782fe30088..7ecd85a1db982 100644 --- a/sessiontxn/txn_context_test.go +++ b/sessiontxn/txn_context_test.go @@ -40,6 +40,7 @@ func TestMain(m *testing.M) { testsetup.SetupForCommonTest() opts := []goleak.Option{ goleak.IgnoreTopFunction("github.com/golang/glog.(*loggingT).flushDaemon"), + goleak.IgnoreTopFunction("github.com/lestrrat-go/httprc.runFetchWorker"), goleak.IgnoreTopFunction("go.etcd.io/etcd/client/pkg/v3/logutil.(*MergeLogger).outputLoop"), goleak.IgnoreTopFunction("go.opencensus.io/stats/view.(*worker).start"), goleak.IgnoreTopFunction("github.com/tikv/client-go/v2/txnkv/transaction.keepAlive"), diff --git a/statistics/BUILD.bazel b/statistics/BUILD.bazel index 654c1a56cb602..6a1b3d5a54921 100644 --- a/statistics/BUILD.bazel +++ b/statistics/BUILD.bazel @@ -13,6 +13,7 @@ go_library( "fmsketch.go", "histogram.go", "index.go", + "merge_worker.go", "row_sampler.go", "sample.go", "scalar.go", @@ -41,6 +42,7 @@ go_library( "//util/chunk", "//util/codec", "//util/collate", + "//util/dbterror", "//util/fastrand", "//util/hack", "//util/logutil", diff --git a/statistics/cmsketch.go b/statistics/cmsketch.go index 848a10a653325..31a31db9195c3 100644 --- a/statistics/cmsketch.go +++ b/statistics/cmsketch.go @@ -21,15 +21,19 @@ import ( "reflect" "sort" "strings" + "sync/atomic" + "time" "github.com/pingcap/errors" "github.com/pingcap/failpoint" + "github.com/pingcap/tidb/parser/mysql" "github.com/pingcap/tidb/sessionctx" "github.com/pingcap/tidb/sessionctx/stmtctx" "github.com/pingcap/tidb/tablecodec" "github.com/pingcap/tidb/types" "github.com/pingcap/tidb/util/chunk" "github.com/pingcap/tidb/util/codec" + "github.com/pingcap/tidb/util/dbterror" "github.com/pingcap/tidb/util/hack" "github.com/pingcap/tidb/util/mathutil" "github.com/pingcap/tipb/go-tipb" @@ -40,6 +44,11 @@ import ( // topNThreshold is the minimum ratio of the number of topn elements in CMSketch, 10 means 1 / 10 = 10%. const topNThreshold = uint64(10) +var ( + // ErrQueryInterrupted indicates interrupted + ErrQueryInterrupted = dbterror.ClassExecutor.NewStd(mysql.ErrQueryInterrupted) +) + // CMSketch is used to estimate point queries. // Refer: https://en.wikipedia.org/wiki/Count-min_sketch type CMSketch struct { @@ -729,7 +738,8 @@ func NewTopN(n int) *TopN { // 1. `*TopN` is the final global-level topN. // 2. `[]TopNMeta` is the left topN value from the partition-level TopNs, but is not placed to global-level TopN. We should put them back to histogram latter. // 3. `[]*Histogram` are the partition-level histograms which just delete some values when we merge the global-level topN. -func MergePartTopN2GlobalTopN(sc *stmtctx.StatementContext, version int, topNs []*TopN, n uint32, hists []*Histogram, isIndex bool) (*TopN, []TopNMeta, []*Histogram, error) { +func MergePartTopN2GlobalTopN(loc *time.Location, version int, topNs []*TopN, n uint32, hists []*Histogram, + isIndex bool, kiiled *uint32) (*TopN, []TopNMeta, []*Histogram, error) { if checkEmptyTopNs(topNs) { return nil, nil, hists, nil } @@ -750,6 +760,9 @@ func MergePartTopN2GlobalTopN(sc *stmtctx.StatementContext, version int, topNs [ // The datum is used to find the value in the histogram. datumMap := make(map[hack.MutableString]types.Datum) for i, topN := range topNs { + if atomic.LoadUint32(kiiled) == 1 { + return nil, nil, nil, errors.Trace(ErrQueryInterrupted) + } if topN.TotalCount() == 0 { continue } @@ -781,7 +794,7 @@ func MergePartTopN2GlobalTopN(sc *stmtctx.StatementContext, version int, topNs [ var err error if types.IsTypeTime(hists[0].Tp.GetType()) { // handle datetime values specially since they are encoded to int and we'll get int values if using DecodeOne. - _, d, err = codec.DecodeAsDateTime(val.Encoded, hists[0].Tp.GetType(), sc.TimeZone) + _, d, err = codec.DecodeAsDateTime(val.Encoded, hists[0].Tp.GetType(), loc) } else if types.IsTypeFloat(hists[0].Tp.GetType()) { _, d, err = codec.DecodeAsFloat32(val.Encoded, hists[0].Tp.GetType()) } else { @@ -866,6 +879,22 @@ func checkEmptyTopNs(topNs []*TopN) bool { return count == 0 } +// SortTopnMeta sort topnMeta +func SortTopnMeta(topnMetas []TopNMeta) []TopNMeta { + slices.SortFunc(topnMetas, func(i, j TopNMeta) bool { + if i.Count != j.Count { + return i.Count > j.Count + } + return bytes.Compare(i.Encoded, j.Encoded) < 0 + }) + return topnMetas +} + +// GetMergedTopNFromSortedSlice returns merged topn +func GetMergedTopNFromSortedSlice(sorted []TopNMeta, n uint32) (*TopN, []TopNMeta) { + return getMergedTopNFromSortedSlice(sorted, n) +} + func getMergedTopNFromSortedSlice(sorted []TopNMeta, n uint32) (*TopN, []TopNMeta) { slices.SortFunc(sorted, func(i, j TopNMeta) bool { if i.Count != j.Count { diff --git a/statistics/column.go b/statistics/column.go index 197fc2f5a6794..ccd541f276bcf 100644 --- a/statistics/column.go +++ b/statistics/column.go @@ -141,11 +141,6 @@ func (c *Column) IsInvalid(sctx sessionctx.Context, collPseudo bool) bool { return c.TotalRowCount() == 0 || (!c.IsEssentialStatsLoaded() && c.Histogram.NDV > 0) } -// IsHistNeeded checks if this column needs histogram to be loaded -func (c *Column) IsHistNeeded(collPseudo bool) bool { - return (!collPseudo || !c.NotAccurate()) && c.IsLoadNeeded() -} - func (c *Column) equalRowCount(sctx sessionctx.Context, val types.Datum, encodedVal []byte, realtimeRowCount int64) (float64, error) { if val.IsNull() { return float64(c.NullCount), nil diff --git a/statistics/feedback.go b/statistics/feedback.go index ba056d7fe39aa..910d44167a1b0 100644 --- a/statistics/feedback.go +++ b/statistics/feedback.go @@ -82,7 +82,7 @@ func NewQueryFeedback(physicalID int64, hist *Histogram, expected int64, desc bo Expected: expected, desc: desc, } - rs.Valid.Store(true) + rs.Valid.Store(FeedbackProbability.Load() > 0) return rs } diff --git a/statistics/handle/ddl.go b/statistics/handle/ddl.go index 88f59fbd3da02..84e0a087a13d3 100644 --- a/statistics/handle/ddl.go +++ b/statistics/handle/ddl.go @@ -156,7 +156,7 @@ func (h *Handle) updateGlobalStats(tblInfo *model.TableInfo) error { for i := 0; i < newColGlobalStats.Num; i++ { hg, cms, topN := newColGlobalStats.Hg[i], newColGlobalStats.Cms[i], newColGlobalStats.TopN[i] // fms for global stats doesn't need to dump to kv. - err = h.SaveStatsToStorage(tableID, newColGlobalStats.Count, 0, hg, cms, topN, 2, 1, false) + err = h.SaveStatsToStorage(tableID, newColGlobalStats.Count, newColGlobalStats.ModifyCount, 0, hg, cms, topN, 2, 1, false) if err != nil { return err } @@ -186,7 +186,7 @@ func (h *Handle) updateGlobalStats(tblInfo *model.TableInfo) error { for i := 0; i < newIndexGlobalStats.Num; i++ { hg, cms, topN := newIndexGlobalStats.Hg[i], newIndexGlobalStats.Cms[i], newIndexGlobalStats.TopN[i] // fms for global stats doesn't need to dump to kv. - err = h.SaveStatsToStorage(tableID, newIndexGlobalStats.Count, 1, hg, cms, topN, 2, 1, false) + err = h.SaveStatsToStorage(tableID, newIndexGlobalStats.Count, newIndexGlobalStats.ModifyCount, 1, hg, cms, topN, 2, 1, false) if err != nil { return err } diff --git a/statistics/handle/dump.go b/statistics/handle/dump.go index 5216622dc9a35..8f9b070ef2f6f 100644 --- a/statistics/handle/dump.go +++ b/statistics/handle/dump.go @@ -27,6 +27,7 @@ import ( "github.com/pingcap/tidb/parser/mysql" "github.com/pingcap/tidb/sessionctx" "github.com/pingcap/tidb/sessionctx/stmtctx" + "github.com/pingcap/tidb/sessionctx/variable" "github.com/pingcap/tidb/statistics" "github.com/pingcap/tidb/types" "github.com/pingcap/tidb/util/sqlexec" @@ -119,17 +120,21 @@ func dumpJSONCol(hist *statistics.Histogram, CMSketch *statistics.CMSketch, topn } // DumpStatsToJSON dumps statistic to json. -func (h *Handle) DumpStatsToJSON(dbName string, tableInfo *model.TableInfo, historyStatsExec sqlexec.RestrictedSQLExecutor) (*JSONTable, error) { +func (h *Handle) DumpStatsToJSON(dbName string, tableInfo *model.TableInfo, + historyStatsExec sqlexec.RestrictedSQLExecutor, dumpPartitionStats bool) (*JSONTable, error) { var snapshot uint64 if historyStatsExec != nil { sctx := historyStatsExec.(sessionctx.Context) snapshot = sctx.GetSessionVars().SnapshotTS } - return h.DumpStatsToJSONBySnapshot(dbName, tableInfo, snapshot) + return h.DumpStatsToJSONBySnapshot(dbName, tableInfo, snapshot, dumpPartitionStats) } // DumpStatsToJSONBySnapshot dumps statistic to json. -func (h *Handle) DumpStatsToJSONBySnapshot(dbName string, tableInfo *model.TableInfo, snapshot uint64) (*JSONTable, error) { +func (h *Handle) DumpStatsToJSONBySnapshot(dbName string, tableInfo *model.TableInfo, snapshot uint64, dumpPartitionStats bool) (*JSONTable, error) { + h.mu.Lock() + isDynamicMode := variable.PartitionPruneMode(h.mu.ctx.GetSessionVars().PartitionPruneMode.Load()) == variable.Dynamic + h.mu.Unlock() pi := tableInfo.GetPartitionInfo() if pi == nil { return h.tableStatsToJSON(dbName, tableInfo, tableInfo.ID, snapshot) @@ -139,15 +144,18 @@ func (h *Handle) DumpStatsToJSONBySnapshot(dbName string, tableInfo *model.Table TableName: tableInfo.Name.L, Partitions: make(map[string]*JSONTable, len(pi.Definitions)), } - for _, def := range pi.Definitions { - tbl, err := h.tableStatsToJSON(dbName, tableInfo, def.ID, snapshot) - if err != nil { - return nil, errors.Trace(err) - } - if tbl == nil { - continue + // dump partition stats only if in static mode or enable dumpPartitionStats flag in dynamic mode + if !isDynamicMode || dumpPartitionStats { + for _, def := range pi.Definitions { + tbl, err := h.tableStatsToJSON(dbName, tableInfo, def.ID, snapshot) + if err != nil { + return nil, errors.Trace(err) + } + if tbl == nil { + continue + } + jsonTbl.Partitions[def.Name.L] = tbl } - jsonTbl.Partitions[def.Name.L] = tbl } // dump its global-stats if existed tbl, err := h.tableStatsToJSON(dbName, tableInfo, tableInfo.ID, snapshot) @@ -160,15 +168,8 @@ func (h *Handle) DumpStatsToJSONBySnapshot(dbName string, tableInfo *model.Table return jsonTbl, nil } -func (h *Handle) tableStatsToJSON(dbName string, tableInfo *model.TableInfo, physicalID int64, snapshot uint64) (*JSONTable, error) { - tbl, err := h.TableStatsFromStorage(tableInfo, physicalID, true, snapshot) - if err != nil || tbl == nil { - return nil, err - } - tbl.Version, tbl.ModifyCount, tbl.Count, err = h.statsMetaByTableIDFromStorage(physicalID, snapshot) - if err != nil { - return nil, err - } +// GenJSONTableFromStats generate jsonTable from tableInfo and stats +func GenJSONTableFromStats(dbName string, tableInfo *model.TableInfo, tbl *statistics.Table) (*JSONTable, error) { jsonTbl := &JSONTable{ DatabaseName: dbName, TableName: tableInfo.Name.L, @@ -177,7 +178,6 @@ func (h *Handle) tableStatsToJSON(dbName string, tableInfo *model.TableInfo, phy Count: tbl.Count, ModifyCount: tbl.ModifyCount, } - for _, col := range tbl.Columns { sc := &stmtctx.StatementContext{TimeZone: time.UTC} hist, err := col.ConvertTo(sc, types.NewFieldType(mysql.TypeBlob)) @@ -194,6 +194,22 @@ func (h *Handle) tableStatsToJSON(dbName string, tableInfo *model.TableInfo, phy return jsonTbl, nil } +func (h *Handle) tableStatsToJSON(dbName string, tableInfo *model.TableInfo, physicalID int64, snapshot uint64) (*JSONTable, error) { + tbl, err := h.TableStatsFromStorage(tableInfo, physicalID, true, snapshot) + if err != nil || tbl == nil { + return nil, err + } + tbl.Version, tbl.ModifyCount, tbl.Count, err = h.statsMetaByTableIDFromStorage(physicalID, snapshot) + if err != nil { + return nil, err + } + jsonTbl, err := GenJSONTableFromStats(dbName, tableInfo, tbl) + if err != nil { + return nil, err + } + return jsonTbl, nil +} + // LoadStatsFromJSON will load statistic from JSONTable, and save it to the storage. func (h *Handle) LoadStatsFromJSON(is infoschema.InfoSchema, jsonTbl *JSONTable) error { table, err := is.TableByName(model.NewCIStr(jsonTbl.DatabaseName), model.NewCIStr(jsonTbl.TableName)) @@ -236,14 +252,18 @@ func (h *Handle) loadStatsFromJSON(tableInfo *model.TableInfo, physicalID int64, for _, col := range tbl.Columns { // loadStatsFromJSON doesn't support partition table now. - err = h.SaveStatsToStorage(tbl.PhysicalID, tbl.Count, 0, &col.Histogram, col.CMSketch, col.TopN, int(col.StatsVer), 1, false) + // The table level Count and Modify_count would be overridden by the SaveMetaToStorage below, so we don't need + // to care about them here. + err = h.SaveStatsToStorage(tbl.PhysicalID, tbl.Count, 0, 0, &col.Histogram, col.CMSketch, col.TopN, int(col.StatsVer), 1, false) if err != nil { return errors.Trace(err) } } for _, idx := range tbl.Indices { // loadStatsFromJSON doesn't support partition table now. - err = h.SaveStatsToStorage(tbl.PhysicalID, tbl.Count, 1, &idx.Histogram, idx.CMSketch, idx.TopN, int(idx.StatsVer), 1, false) + // The table level Count and Modify_count would be overridden by the SaveMetaToStorage below, so we don't need + // to care about them here. + err = h.SaveStatsToStorage(tbl.PhysicalID, tbl.Count, 0, 1, &idx.Histogram, idx.CMSketch, idx.TopN, int(idx.StatsVer), 1, false) if err != nil { return errors.Trace(err) } diff --git a/statistics/handle/dump_test.go b/statistics/handle/dump_test.go index 0e3006604e5cc..857c05749d066 100644 --- a/statistics/handle/dump_test.go +++ b/statistics/handle/dump_test.go @@ -90,7 +90,7 @@ func TestConversion(t *testing.T) { tableInfo, err := is.TableByName(model.NewCIStr("test"), model.NewCIStr("t")) require.NoError(t, err) - jsonTbl, err := h.DumpStatsToJSON("test", tableInfo.Meta(), nil) + jsonTbl, err := h.DumpStatsToJSON("test", tableInfo.Meta(), nil, true) require.NoError(t, err) loadTbl, err := handle.TableStatsFromJSON(tableInfo.Meta(), tableInfo.Meta().ID, jsonTbl) require.NoError(t, err) @@ -117,7 +117,7 @@ func getStatsJSON(t *testing.T, dom *domain.Domain, db, tableName string) *handl table, err := is.TableByName(model.NewCIStr(db), model.NewCIStr(tableName)) require.NoError(t, err) tableInfo := table.Meta() - jsonTbl, err := h.DumpStatsToJSON("test", tableInfo, nil) + jsonTbl, err := h.DumpStatsToJSON("test", tableInfo, nil, true) require.NoError(t, err) return jsonTbl } @@ -198,7 +198,7 @@ PARTITION BY RANGE ( a ) ( table, err := is.TableByName(model.NewCIStr("test"), model.NewCIStr("t")) require.NoError(t, err) tableInfo := table.Meta() - jsonTbl, err := h.DumpStatsToJSON("test", tableInfo, nil) + jsonTbl, err := h.DumpStatsToJSON("test", tableInfo, nil, true) require.NoError(t, err) pi := tableInfo.GetPartitionInfo() originTables := make([]*statistics.Table, 0, len(pi.Definitions)) @@ -233,7 +233,7 @@ func TestDumpAlteredTable(t *testing.T) { tk.MustExec("alter table t drop column a") table, err := dom.InfoSchema().TableByName(model.NewCIStr("test"), model.NewCIStr("t")) require.NoError(t, err) - _, err = h.DumpStatsToJSON("test", table.Meta(), nil) + _, err = h.DumpStatsToJSON("test", table.Meta(), nil, true) require.NoError(t, err) } @@ -261,7 +261,7 @@ func TestDumpCMSketchWithTopN(t *testing.T) { cms, _, _, _ := statistics.NewCMSketchAndTopN(5, 2048, fakeData, 20, 100) stat := h.GetTableStats(tableInfo) - err = h.SaveStatsToStorage(tableInfo.ID, 1, 0, &stat.Columns[tableInfo.Columns[0].ID].Histogram, cms, nil, statistics.Version2, 1, false) + err = h.SaveStatsToStorage(tableInfo.ID, 1, 0, 0, &stat.Columns[tableInfo.Columns[0].ID].Histogram, cms, nil, statistics.Version2, 1, false) require.NoError(t, err) require.Nil(t, h.Update(is)) @@ -270,7 +270,7 @@ func TestDumpCMSketchWithTopN(t *testing.T) { require.NotNil(t, cmsFromStore) require.True(t, cms.Equal(cmsFromStore)) - jsonTable, err := h.DumpStatsToJSON("test", tableInfo, nil) + jsonTable, err := h.DumpStatsToJSON("test", tableInfo, nil, true) require.NoError(t, err) err = h.LoadStatsFromJSON(is, jsonTable) require.NoError(t, err) @@ -292,7 +292,7 @@ func TestDumpPseudoColumns(t *testing.T) { tbl, err := is.TableByName(model.NewCIStr("test"), model.NewCIStr("t")) require.NoError(t, err) h := dom.StatsHandle() - _, err = h.DumpStatsToJSON("test", tbl.Meta(), nil) + _, err = h.DumpStatsToJSON("test", tbl.Meta(), nil, true) require.NoError(t, err) } @@ -313,7 +313,7 @@ func TestDumpExtendedStats(t *testing.T) { tableInfo, err := is.TableByName(model.NewCIStr("test"), model.NewCIStr("t")) require.NoError(t, err) tbl := h.GetTableStats(tableInfo.Meta()) - jsonTbl, err := h.DumpStatsToJSON("test", tableInfo.Meta(), nil) + jsonTbl, err := h.DumpStatsToJSON("test", tableInfo.Meta(), nil, true) require.NoError(t, err) loadTbl, err := handle.TableStatsFromJSON(tableInfo.Meta(), tableInfo.Meta().ID, jsonTbl) require.NoError(t, err) @@ -353,7 +353,7 @@ func TestDumpVer2Stats(t *testing.T) { storageTbl, err := h.TableStatsFromStorage(tableInfo.Meta(), tableInfo.Meta().ID, false, 0) require.NoError(t, err) - dumpJSONTable, err := h.DumpStatsToJSON("test", tableInfo.Meta(), nil) + dumpJSONTable, err := h.DumpStatsToJSON("test", tableInfo.Meta(), nil, true) require.NoError(t, err) jsonBytes, err := json.MarshalIndent(dumpJSONTable, "", " ") @@ -405,7 +405,7 @@ func TestLoadStatsForNewCollation(t *testing.T) { storageTbl, err := h.TableStatsFromStorage(tableInfo.Meta(), tableInfo.Meta().ID, false, 0) require.NoError(t, err) - dumpJSONTable, err := h.DumpStatsToJSON("test", tableInfo.Meta(), nil) + dumpJSONTable, err := h.DumpStatsToJSON("test", tableInfo.Meta(), nil, true) require.NoError(t, err) jsonBytes, err := json.MarshalIndent(dumpJSONTable, "", " ") @@ -453,12 +453,12 @@ func TestJSONTableToBlocks(t *testing.T) { tableInfo, err := is.TableByName(model.NewCIStr("test"), model.NewCIStr("t")) require.NoError(t, err) - dumpJSONTable, err := h.DumpStatsToJSON("test", tableInfo.Meta(), nil) + dumpJSONTable, err := h.DumpStatsToJSON("test", tableInfo.Meta(), nil, true) require.NoError(t, err) jsOrigin, _ := json.Marshal(dumpJSONTable) blockSize := 30 - js, err := h.DumpStatsToJSON("test", tableInfo.Meta(), nil) + js, err := h.DumpStatsToJSON("test", tableInfo.Meta(), nil, true) require.NoError(t, err) dumpJSONBlocks, err := handle.JSONTableToBlocks(js, blockSize) require.NoError(t, err) diff --git a/statistics/handle/handle.go b/statistics/handle/handle.go index 00660c9756a68..7dfc3f47d2d62 100644 --- a/statistics/handle/handle.go +++ b/statistics/handle/handle.go @@ -15,6 +15,7 @@ package handle import ( + "bytes" "context" "encoding/json" "fmt" @@ -28,7 +29,7 @@ import ( "github.com/pingcap/errors" "github.com/pingcap/failpoint" "github.com/pingcap/tidb/config" - "github.com/pingcap/tidb/ddl/util" + ddlUtil "github.com/pingcap/tidb/ddl/util" "github.com/pingcap/tidb/infoschema" "github.com/pingcap/tidb/kv" "github.com/pingcap/tidb/metrics" @@ -41,6 +42,7 @@ import ( "github.com/pingcap/tidb/statistics" "github.com/pingcap/tidb/table" "github.com/pingcap/tidb/types" + "github.com/pingcap/tidb/util" "github.com/pingcap/tidb/util/chunk" "github.com/pingcap/tidb/util/logutil" "github.com/pingcap/tidb/util/mathutil" @@ -56,6 +58,9 @@ import ( const ( // TiDBGlobalStats represents the global-stats for a partitioned table. TiDBGlobalStats = "global" + + // maxPartitionMergeBatchSize indicates the max batch size for a worker to merge partition stats + maxPartitionMergeBatchSize = 256 ) // Handle can update stats info periodically. @@ -83,7 +88,7 @@ type Handle struct { // ddlEventCh is a channel to notify a ddl operation has happened. // It is sent only by owner or the drop stats executor, and read by stats handle. - ddlEventCh chan *util.Event + ddlEventCh chan *ddlUtil.Event // listHead contains all the stats collector required by session. listHead *SessionStatsCollector // globalMap contains all the delta map from collectors when we dump them to KV. @@ -114,6 +119,267 @@ type Handle struct { sysProcTracker sessionctx.SysProcTracker // serverIDGetter is used to get server ID for generating auto analyze ID. serverIDGetter func() uint64 + // tableLocked used to store locked tables + tableLocked []int64 +} + +// GetTableLockedAndClearForTest for unit test only +func (h *Handle) GetTableLockedAndClearForTest() []int64 { + tableLocked := h.tableLocked + h.tableLocked = make([]int64, 0) + return tableLocked +} + +// LoadLockedTables load locked tables from store +func (h *Handle) LoadLockedTables() error { + h.mu.Lock() + defer h.mu.Unlock() + ctx := kv.WithInternalSourceType(context.Background(), kv.InternalTxnStats) + rows, _, err := h.execRestrictedSQL(ctx, "select table_id from mysql.stats_table_locked") + if err != nil { + return errors.Trace(err) + } + + h.tableLocked = make([]int64, len(rows)) + for i, row := range rows { + h.tableLocked[i] = row.GetInt64(0) + } + + return nil +} + +// AddLockedTables add locked tables id to store +func (h *Handle) AddLockedTables(tids []int64, pids []int64, tables []*ast.TableName) (string, error) { + h.mu.Lock() + defer h.mu.Unlock() + + ctx := kv.WithInternalSourceType(context.Background(), kv.InternalTxnStats) + + exec := h.mu.ctx.(sqlexec.SQLExecutor) + + _, err := exec.ExecuteInternal(ctx, "begin pessimistic") + if err != nil { + return "", err + } + + //load tables to check duplicate when insert + rows, _, err := h.execRestrictedSQL(ctx, "select table_id from mysql.stats_table_locked") + if err != nil { + return "", err + } + + dupTables := make([]string, 0) + tableLocked := make([]int64, 0) + for _, row := range rows { + tableLocked = append(tableLocked, row.GetInt64(0)) + } + + strTids := fmt.Sprintf("%v", tids) + logutil.BgLogger().Info("[stats] lock table ", zap.String("tableIDs", strTids)) + for i, tid := range tids { + _, err = exec.ExecuteInternal(ctx, "insert into mysql.stats_table_locked(table_id) select %? from dual where not exists(select table_id from mysql.stats_table_locked where table_id = %?)", tid, tid) + if err != nil { + logutil.BgLogger().Error("[stats] error occurred when insert mysql.stats_table_locked ", zap.Error(err)) + return "", err + } + // update handle + if !isTableLocked(tableLocked, tid) { + tableLocked = append(tableLocked, tid) + } else { + dupTables = append(dupTables, tables[i].Schema.L+"."+tables[i].Name.L) + } + } + + //insert related partitions while don't warning duplicate partitions + for _, tid := range pids { + _, err = exec.ExecuteInternal(ctx, "insert into mysql.stats_table_locked(table_id) select %? from dual where not exists(select table_id from mysql.stats_table_locked where table_id = %?)", tid, tid) + if err != nil { + logutil.BgLogger().Error("[stats] error occurred when insert mysql.stats_table_locked ", zap.Error(err)) + return "", err + } + if !isTableLocked(tableLocked, tid) { + tableLocked = append(tableLocked, tid) + } + } + + err = finishTransaction(ctx, exec, err) + if err != nil { + return "", err + } + // update handle.tableLocked after transaction success, if txn failed, tableLocked won't be updated + h.tableLocked = tableLocked + + if len(dupTables) > 0 { + tables := dupTables[0] + for i, table := range dupTables { + if i == 0 { + continue + } + tables += ", " + table + } + var msg string + if len(tids) > 1 { + if len(tids) > len(dupTables) { + msg = "skip locking locked tables: " + tables + ", other tables locked successfully" + } else { + msg = "skip locking locked tables: " + tables + } + } else { + msg = "skip locking locked table: " + tables + } + return msg, err + } + return "", err +} + +// getStatsDeltaFromTableLocked get count, modify_count and version for the given table from mysql.stats_table_locked. +func (h *Handle) getStatsDeltaFromTableLocked(ctx context.Context, tableID int64) (int64, int64, uint64, error) { + rows, _, err := h.execRestrictedSQL(ctx, "select count, modify_count, version from mysql.stats_table_locked where table_id = %?", tableID) + if err != nil { + return 0, 0, 0, err + } + + if len(rows) == 0 { + return 0, 0, 0, nil + } + count := rows[0].GetInt64(0) + modifyCount := rows[0].GetInt64(1) + version := rows[0].GetUint64(2) + return count, modifyCount, version, nil +} + +// RemoveLockedTables remove tables from table locked array +func (h *Handle) RemoveLockedTables(tids []int64, pids []int64, tables []*ast.TableName) (string, error) { + h.mu.Lock() + defer h.mu.Unlock() + + ctx := kv.WithInternalSourceType(context.Background(), kv.InternalTxnStats) + + exec := h.mu.ctx.(sqlexec.SQLExecutor) + _, err := exec.ExecuteInternal(ctx, "begin pessimistic") + if err != nil { + return "", err + } + + //load tables to check unlock the unlock table + rows, _, err := h.execRestrictedSQL(ctx, "select table_id from mysql.stats_table_locked") + if err != nil { + return "", err + } + + nonlockedTables := make([]string, 0) + tableLocked := make([]int64, 0) + for _, row := range rows { + tableLocked = append(tableLocked, row.GetInt64(0)) + } + + strTids := fmt.Sprintf("%v", tids) + logutil.BgLogger().Info("[stats] unlock table ", zap.String("tableIDs", strTids)) + for i, tid := range tids { + // get stats delta during table locked + count, modifyCount, version, err := h.getStatsDeltaFromTableLocked(ctx, tid) + if err != nil { + logutil.BgLogger().Error("[stats] error occurred when getStatsDeltaFromTableLocked", zap.Error(err)) + return "", err + } + // update stats_meta with stats delta + _, err = exec.ExecuteInternal(ctx, "update mysql.stats_meta set version = %?, count = count + %?, modify_count = modify_count + %? where table_id = %?", version, count, modifyCount, tid) + if err != nil { + logutil.BgLogger().Error("[stats] error occurred when update mysql.stats_meta", zap.Error(err)) + return "", err + } + + _, err = exec.ExecuteInternal(ctx, "delete from mysql.stats_table_locked where table_id = %?", tid) + if err != nil { + logutil.BgLogger().Error("[stats] error occurred when delete from mysql.stats_table_locked ", zap.Error(err)) + return "", err + } + var exist bool + exist, tableLocked = removeIfTableLocked(tableLocked, tid) + if !exist { + nonlockedTables = append(nonlockedTables, tables[i].Schema.L+"."+tables[i].Name.L) + } + } + //delete related partitions while don't warning delete empty partitions + for _, tid := range pids { + // get stats delta during table locked + count, modifyCount, version, err := h.getStatsDeltaFromTableLocked(ctx, tid) + if err != nil { + logutil.BgLogger().Error("[stats] error occurred when getStatsDeltaFromTableLocked", zap.Error(err)) + return "", err + } + // update stats_meta with stats delta + _, err = exec.ExecuteInternal(ctx, "update mysql.stats_meta set version = %?, count = count + %?, modify_count = modify_count + %? where table_id = %?", version, count, modifyCount, tid) + if err != nil { + logutil.BgLogger().Error("[stats] error occurred when update mysql.stats_meta", zap.Error(err)) + return "", err + } + + _, err = exec.ExecuteInternal(ctx, "delete from mysql.stats_table_locked where table_id = %?", tid) + if err != nil { + logutil.BgLogger().Error("[stats] error occurred when delete from mysql.stats_table_locked ", zap.Error(err)) + return "", err + } + _, tableLocked = removeIfTableLocked(tableLocked, tid) + } + + err = finishTransaction(ctx, exec, err) + if err != nil { + return "", err + } + // update handle.tableLocked after transaction success, if txn failed, tableLocked won't be updated + h.tableLocked = tableLocked + + if len(nonlockedTables) > 0 { + tables := nonlockedTables[0] + for i, table := range nonlockedTables { + if i == 0 { + continue + } + tables += ", " + table + } + var msg string + if len(tids) > 1 { + if len(tids) > len(nonlockedTables) { + msg = "skip unlocking non-locked tables: " + tables + ", other tables unlocked successfully" + } else { + msg = "skip unlocking non-locked tables: " + tables + } + } else { + msg = "skip unlocking non-locked table: " + tables + } + return msg, err + } + return "", err +} + +// IsTableLocked check whether table is locked in handle +func (h *Handle) IsTableLocked(tableID int64) bool { + return isTableLocked(h.tableLocked, tableID) +} + +// isTableLocked check whether table is locked +func isTableLocked(tableLocked []int64, tableID int64) bool { + return lockTableIndexOf(tableLocked, tableID) > -1 +} + +// lockTableIndexOf get the locked table's index in the array +func lockTableIndexOf(tableLocked []int64, tableID int64) int { + for idx, id := range tableLocked { + if id == tableID { + return idx + } + } + return -1 +} + +// removeIfTableLocked try to remove the table from table locked array +func removeIfTableLocked(tableLocked []int64, tableID int64) (bool, []int64) { + idx := lockTableIndexOf(tableLocked, tableID) + if idx > -1 { + tableLocked = append(tableLocked[:idx], tableLocked[idx+1:]...) + } + return idx > -1, tableLocked } func (h *Handle) withRestrictedSQLExecutor(ctx context.Context, fn func(context.Context, sqlexec.RestrictedSQLExecutor) ([]chunk.Row, []*ast.ResultField, error)) ([]chunk.Row, []*ast.ResultField, error) { @@ -197,7 +463,7 @@ type sessionPool interface { func NewHandle(ctx sessionctx.Context, lease time.Duration, pool sessionPool, tracker sessionctx.SysProcTracker, serverIDGetter func() uint64) (*Handle, error) { cfg := config.GetGlobalConfig() handle := &Handle{ - ddlEventCh: make(chan *util.Event, 100), + ddlEventCh: make(chan *ddlUtil.Event, 100), listHead: &SessionStatsCollector{mapper: make(tableDeltaMap), rateMap: make(errorRateDeltaMap)}, idxUsageListHead: &SessionIndexUsageCollector{mapper: make(indexUsageMap)}, pool: pool, @@ -394,12 +660,13 @@ func (h *Handle) UpdateSessionVar() error { // In the column statistics, the variable `num` is equal to the number of columns in the partition table. // In the index statistics, the variable `num` is always equal to one. type GlobalStats struct { - Num int - Count int64 - Hg []*statistics.Histogram - Cms []*statistics.CMSketch - TopN []*statistics.TopN - Fms []*statistics.FMSketch + Num int + Count int64 + ModifyCount int64 + Hg []*statistics.Histogram + Cms []*statistics.CMSketch + TopN []*statistics.TopN + Fms []*statistics.FMSketch } // MergePartitionStats2GlobalStatsByTableID merge the partition-level stats to global-level stats based on the tableID. @@ -508,7 +775,7 @@ func (h *Handle) mergePartitionStats2GlobalStats(sc sessionctx.Context, allPartitionStats[partitionID] = partitionStats } for i := 0; i < globalStats.Num; i++ { - count, hg, cms, topN, fms := partitionStats.GetStatsInfo(histIDs[i], isIndex == 1) + _, hg, cms, topN, fms := partitionStats.GetStatsInfo(histIDs[i], isIndex == 1) // partition stats is not empty but column stats(hist, topn) is missing if partitionStats.Count > 0 && (hg == nil || hg.TotalRowCount() <= 0) && (topN == nil || topN.TotalCount() <= 0) { var errMsg string @@ -522,7 +789,8 @@ func (h *Handle) mergePartitionStats2GlobalStats(sc sessionctx.Context, } if i == 0 { // In a partition, we will only update globalStats.Count once - globalStats.Count += count + globalStats.Count += partitionStats.Count + globalStats.ModifyCount += partitionStats.ModifyCount } allHg[i] = append(allHg[i], hg) allCms[i] = append(allCms[i], cms) @@ -547,7 +815,8 @@ func (h *Handle) mergePartitionStats2GlobalStats(sc sessionctx.Context, // Because after merging TopN, some numbers will be left. // These remaining topN numbers will be used as a separate bucket for later histogram merging. var popedTopN []statistics.TopNMeta - globalStats.TopN[i], popedTopN, allHg[i], err = statistics.MergePartTopN2GlobalTopN(sc.GetSessionVars().StmtCtx, sc.GetSessionVars().AnalyzeVersion, allTopN[i], uint32(opts[ast.AnalyzeOptNumTopN]), allHg[i], isIndex == 1) + wrapper := statistics.NewStatsWrapper(allHg[i], allTopN[i]) + globalStats.TopN[i], popedTopN, allHg[i], err = h.mergeGlobalStatsTopN(sc, wrapper, sc.GetSessionVars().StmtCtx.TimeZone, sc.GetSessionVars().AnalyzeVersion, uint32(opts[ast.AnalyzeOptNumTopN]), isIndex == 1) if err != nil { return } @@ -579,6 +848,105 @@ func (h *Handle) mergePartitionStats2GlobalStats(sc sessionctx.Context, return } +func (h *Handle) mergeGlobalStatsTopN(sc sessionctx.Context, wrapper *statistics.StatsWrapper, + timeZone *time.Location, version int, n uint32, isIndex bool) (*statistics.TopN, + []statistics.TopNMeta, []*statistics.Histogram, error) { + mergeConcurrency := sc.GetSessionVars().AnalyzePartitionMergeConcurrency + killed := &sc.GetSessionVars().Killed + // use original method if concurrency equals 1 or for version1 + if mergeConcurrency < 2 { + return statistics.MergePartTopN2GlobalTopN(timeZone, version, wrapper.AllTopN, n, wrapper.AllHg, isIndex, killed) + } + batchSize := len(wrapper.AllTopN) / mergeConcurrency + if batchSize < 1 { + batchSize = 1 + } else if batchSize > maxPartitionMergeBatchSize { + batchSize = maxPartitionMergeBatchSize + } + return h.mergeGlobalStatsTopNByConcurrency(mergeConcurrency, batchSize, wrapper, timeZone, version, n, isIndex, killed) +} + +// mergeGlobalStatsTopNByConcurrency merge partition topN by concurrency +// To merge global stats topn by concurrency, we will separate the partition topn in concurrency part and deal it with different worker. +// mergeConcurrency is used to control the total concurrency of the running worker, and mergeBatchSize is sued to control +// the partition size for each worker to solve it +func (h *Handle) mergeGlobalStatsTopNByConcurrency(mergeConcurrency, mergeBatchSize int, wrapper *statistics.StatsWrapper, + timeZone *time.Location, version int, n uint32, isIndex bool, killed *uint32) (*statistics.TopN, + []statistics.TopNMeta, []*statistics.Histogram, error) { + if len(wrapper.AllTopN) < mergeConcurrency { + mergeConcurrency = len(wrapper.AllTopN) + } + tasks := make([]*statistics.TopnStatsMergeTask, 0) + for start := 0; start < len(wrapper.AllTopN); { + end := start + mergeBatchSize + if end > len(wrapper.AllTopN) { + end = len(wrapper.AllTopN) + } + task := statistics.NewTopnStatsMergeTask(start, end) + tasks = append(tasks, task) + start = end + } + var wg util.WaitGroupWrapper + taskNum := len(tasks) + taskCh := make(chan *statistics.TopnStatsMergeTask, taskNum) + respCh := make(chan *statistics.TopnStatsMergeResponse, taskNum) + for i := 0; i < mergeConcurrency; i++ { + worker := statistics.NewTopnStatsMergeWorker(taskCh, respCh, wrapper, killed) + wg.Run(func() { + worker.Run(timeZone, isIndex, n, version) + }) + } + for _, task := range tasks { + taskCh <- task + } + close(taskCh) + wg.Wait() + close(respCh) + resps := make([]*statistics.TopnStatsMergeResponse, 0) + + // handle Error + hasErr := false + for resp := range respCh { + if resp.Err != nil { + hasErr = true + } + resps = append(resps, resp) + } + if hasErr { + errMsg := make([]string, 0) + for _, resp := range resps { + if resp.Err != nil { + errMsg = append(errMsg, resp.Err.Error()) + } + } + return nil, nil, nil, errors.New(strings.Join(errMsg, ",")) + } + + // fetch the response from each worker and merge them into global topn stats + sorted := make([]statistics.TopNMeta, 0, mergeConcurrency) + leftTopn := make([]statistics.TopNMeta, 0) + for _, resp := range resps { + if resp.TopN != nil { + sorted = append(sorted, resp.TopN.TopN...) + } + leftTopn = append(leftTopn, resp.PopedTopn...) + for i, removeTopn := range resp.RemoveVals { + // Remove the value from the Hists. + if len(removeTopn) > 0 { + tmp := removeTopn + slices.SortFunc(tmp, func(i, j statistics.TopNMeta) bool { + cmpResult := bytes.Compare(i.Encoded, j.Encoded) + return cmpResult < 0 + }) + wrapper.AllHg[i].RemoveVals(tmp) + } + } + } + + globalTopN, popedTopn := statistics.GetMergedTopNFromSortedSlice(sorted, n) + return globalTopN, statistics.SortTopnMeta(append(leftTopn, popedTopn...)), wrapper.AllHg, nil +} + func (h *Handle) getTableByPhysicalID(is infoschema.InfoSchema, physicalID int64) (table.Table, bool) { if is.SchemaMetaVersion() != h.mu.schemaVersion { h.mu.schemaVersion = is.SchemaMetaVersion() @@ -1240,7 +1608,7 @@ func saveBucketsToStorage(ctx context.Context, exec sqlexec.SQLExecutor, sc *stm } // SaveTableStatsToStorage saves the stats of a table to storage. -func (h *Handle) SaveTableStatsToStorage(results *statistics.AnalyzeResults, needDumpFMS, analyzeSnapshot bool) (err error) { +func (h *Handle) SaveTableStatsToStorage(results *statistics.AnalyzeResults, analyzeSnapshot bool) (err error) { tableID := results.TableID.GetStatisticsID() statsVer := uint64(0) defer func() { @@ -1250,8 +1618,21 @@ func (h *Handle) SaveTableStatsToStorage(results *statistics.AnalyzeResults, nee }() h.mu.Lock() defer h.mu.Unlock() + return SaveTableStatsToStorage(h.mu.ctx, results, analyzeSnapshot) +} + +// SaveTableStatsToStorage saves the stats of a table to storage. +func SaveTableStatsToStorage(sctx sessionctx.Context, results *statistics.AnalyzeResults, analyzeSnapshot bool) (err error) { + needDumpFMS := results.TableID.IsPartitionTable() + tableID := results.TableID.GetStatisticsID() + statsVer := uint64(0) + defer func() { + if err == nil && statsVer != 0 { + err = recordHistoricalStatsMeta(sctx, tableID, statsVer) + } + }() ctx := kv.WithInternalSourceType(context.Background(), kv.InternalTxnStats) - exec := h.mu.ctx.(sqlexec.SQLExecutor) + exec := sctx.(sqlexec.SQLExecutor) _, err = exec.ExecuteInternal(ctx, "begin pessimistic") if err != nil { return err @@ -1259,7 +1640,7 @@ func (h *Handle) SaveTableStatsToStorage(results *statistics.AnalyzeResults, nee defer func() { err = finishTransaction(ctx, exec, err) }() - txn, err := h.mu.ctx.Txn(true) + txn, err := sctx.Txn(true) if err != nil { return err } @@ -1272,7 +1653,7 @@ func (h *Handle) SaveTableStatsToStorage(results *statistics.AnalyzeResults, nee return err } var rows []chunk.Row - rows, err = sqlexec.DrainRecordSet(ctx, rs, h.mu.ctx.GetSessionVars().MaxChunkSize) + rows, err = sqlexec.DrainRecordSet(ctx, rs, sctx.GetSessionVars().MaxChunkSize) if err != nil { return err } @@ -1369,7 +1750,7 @@ func (h *Handle) SaveTableStatsToStorage(results *statistics.AnalyzeResults, nee if _, err = exec.ExecuteInternal(ctx, "delete from mysql.stats_buckets where table_id = %? and is_index = %? and hist_id = %?", tableID, result.IsIndex, hg.ID); err != nil { return err } - sc := h.mu.ctx.GetSessionVars().StmtCtx + sc := sctx.GetSessionVars().StmtCtx var lastAnalyzePos []byte lastAnalyzePos, err = saveBucketsToStorage(ctx, exec, sc, tableID, result.IsIndex, hg) if err != nil { @@ -1414,8 +1795,10 @@ func (h *Handle) SaveTableStatsToStorage(results *statistics.AnalyzeResults, nee } // SaveStatsToStorage saves the stats to storage. +// If count is negative, both count and modify count would not be used and not be written to the table. Unless, corresponding +// fields in the stats_meta table will be updated. // TODO: refactor to reduce the number of parameters -func (h *Handle) SaveStatsToStorage(tableID int64, count int64, isIndex int, hg *statistics.Histogram, cms *statistics.CMSketch, topN *statistics.TopN, statsVersion int, isAnalyzed int64, updateAnalyzeTime bool) (err error) { +func (h *Handle) SaveStatsToStorage(tableID int64, count, modifyCount int64, isIndex int, hg *statistics.Histogram, cms *statistics.CMSketch, topN *statistics.TopN, statsVersion int, isAnalyzed int64, updateAnalyzeTime bool) (err error) { statsVer := uint64(0) defer func() { if err == nil && statsVer != 0 { @@ -1441,7 +1824,7 @@ func (h *Handle) SaveStatsToStorage(tableID int64, count int64, isIndex int, hg version := txn.StartTS() // If the count is less than 0, then we do not want to update the modify count and count. if count >= 0 { - _, err = exec.ExecuteInternal(ctx, "replace into mysql.stats_meta (version, table_id, count) values (%?, %?, %?)", version, tableID, count) + _, err = exec.ExecuteInternal(ctx, "replace into mysql.stats_meta (version, table_id, count, modify_count) values (%?, %?, %?, %?)", version, tableID, count, modifyCount) } else { _, err = exec.ExecuteInternal(ctx, "update mysql.stats_meta set version = %? where table_id = %?", version, tableID) } @@ -2198,7 +2581,7 @@ const maxColumnSize = 6 << 20 // RecordHistoricalStatsToStorage records the given table's stats data to mysql.stats_history func (h *Handle) RecordHistoricalStatsToStorage(dbName string, tableInfo *model.TableInfo) (uint64, error) { ctx := kv.WithInternalSourceType(context.Background(), kv.InternalTxnStats) - js, err := h.DumpStatsToJSON(dbName, tableInfo, nil) + js, err := h.DumpStatsToJSON(dbName, tableInfo, nil, true) if err != nil { return 0, errors.Trace(err) } @@ -2234,33 +2617,36 @@ func (h *Handle) RecordHistoricalStatsToStorage(dbName string, tableInfo *model. return version, nil } -// CheckHistoricalStatsEnable is used to check whether TiDBEnableHistoricalStats is enabled. -func (h *Handle) CheckHistoricalStatsEnable() (enable bool, err error) { - h.mu.Lock() - defer h.mu.Unlock() - val, err := h.mu.ctx.GetSessionVars().GlobalVarsAccessor.GetGlobalSysVar(variable.TiDBEnableHistoricalStats) +func checkHistoricalStatsEnable(sctx sessionctx.Context) (enable bool, err error) { + val, err := sctx.GetSessionVars().GlobalVarsAccessor.GetGlobalSysVar(variable.TiDBEnableHistoricalStats) if err != nil { return false, errors.Trace(err) } return variable.TiDBOptOn(val), nil } -func (h *Handle) recordHistoricalStatsMeta(tableID int64, version uint64) error { +// CheckHistoricalStatsEnable is used to check whether TiDBEnableHistoricalStats is enabled. +func (h *Handle) CheckHistoricalStatsEnable() (enable bool, err error) { + h.mu.Lock() + defer h.mu.Unlock() + return checkHistoricalStatsEnable(h.mu.ctx) +} + +func recordHistoricalStatsMeta(sctx sessionctx.Context, tableID int64, version uint64) error { if tableID == 0 || version == 0 { return errors.Errorf("tableID %d, version %d are invalid", tableID, version) } - historicalStatsEnabled, err := h.CheckHistoricalStatsEnable() + historicalStatsEnabled, err := checkHistoricalStatsEnable(sctx) if err != nil { return errors.Errorf("check tidb_enable_historical_stats failed: %v", err) } if !historicalStatsEnabled { return nil } - ctx := kv.WithInternalSourceType(context.Background(), kv.InternalTxnStats) - h.mu.Lock() - defer h.mu.Unlock() - rows, _, err := h.execRestrictedSQL(ctx, "select modify_count, count from mysql.stats_meta where table_id = %? and version = %?", tableID, version) + exec := sctx.(sqlexec.SQLExecutor) + rexec := sctx.(sqlexec.RestrictedSQLExecutor) + rows, _, err := rexec.ExecRestrictedSQL(ctx, []sqlexec.OptionFuncAlias{sqlexec.ExecOptionUseCurSession}, "select modify_count, count from mysql.stats_meta where table_id = %? and version = %?", tableID, version) if err != nil { return errors.Trace(err) } @@ -2269,7 +2655,6 @@ func (h *Handle) recordHistoricalStatsMeta(tableID int64, version uint64) error } modifyCount, count := rows[0].GetInt64(0), rows[0].GetInt64(1) - exec := h.mu.ctx.(sqlexec.SQLExecutor) _, err = exec.ExecuteInternal(ctx, "begin pessimistic") if err != nil { return errors.Trace(err) @@ -2285,6 +2670,12 @@ func (h *Handle) recordHistoricalStatsMeta(tableID int64, version uint64) error return nil } +func (h *Handle) recordHistoricalStatsMeta(tableID int64, version uint64) error { + h.mu.Lock() + defer h.mu.Unlock() + return recordHistoricalStatsMeta(h.mu.ctx, tableID, version) +} + // InsertAnalyzeJob inserts analyze job into mysql.analyze_jobs and gets job ID for further updating job. func (h *Handle) InsertAnalyzeJob(job *statistics.AnalyzeJob, instance string, procID uint64) error { h.mu.Lock() diff --git a/statistics/handle/handle_hist.go b/statistics/handle/handle_hist.go index 1392590130438..4d0128095e071 100644 --- a/statistics/handle/handle_hist.go +++ b/statistics/handle/handle_hist.go @@ -59,6 +59,16 @@ type NeededItemTask struct { // SendLoadRequests send neededColumns requests func (h *Handle) SendLoadRequests(sc *stmtctx.StatementContext, neededHistItems []model.TableItemID, timeout time.Duration) error { remainedItems := h.removeHistLoadedColumns(neededHistItems) + + failpoint.Inject("assertSyncLoadItems", func(val failpoint.Value) { + if sc.OptimizeTracer != nil { + count := val.(int) + if len(remainedItems) != count { + panic("remained items count wrong") + } + } + }) + if len(remainedItems) <= 0 { return nil } @@ -137,10 +147,7 @@ func (h *Handle) removeHistLoadedColumns(neededItems []model.TableItemID) []mode continue } colHist, ok := tbl.Columns[item.ID] - if !ok { - continue - } - if colHist.IsHistNeeded(tbl.Pseudo) { + if ok && colHist.IsStatsInitialized() && !colHist.IsFullLoad() { remainedItems = append(remainedItems, item) } } diff --git a/statistics/handle/handle_hist_test.go b/statistics/handle/handle_hist_test.go index cf9f708345d32..f2b1fa87ba37f 100644 --- a/statistics/handle/handle_hist_test.go +++ b/statistics/handle/handle_hist_test.go @@ -29,6 +29,28 @@ import ( "github.com/stretchr/testify/require" ) +func TestSyncLoadSkipUnAnalyzedItems(t *testing.T) { + store, dom := testkit.CreateMockStoreAndDomain(t) + tk := testkit.NewTestKit(t, store) + tk.MustExec("use test") + tk.MustExec("drop table if exists t") + tk.MustExec("drop table if exists t1") + tk.MustExec("create table t(a int)") + tk.MustExec("create table t1(a int)") + h := dom.StatsHandle() + h.SetLease(1) + + // no item would be loaded + require.NoError(t, failpoint.Enable("github.com/pingcap/tidb/statistics/handle/assertSyncLoadItems", `return(0)`)) + tk.MustQuery("trace plan select * from t where a > 10") + failpoint.Disable("github.com/pingcap/tidb/statistics/handle/assertSyncLoadItems") + tk.MustExec("analyze table t1") + // one column would be loaded + require.NoError(t, failpoint.Enable("github.com/pingcap/tidb/statistics/handle/assertSyncLoadItems", `return(1)`)) + tk.MustQuery("trace plan select * from t1 where a > 10") + failpoint.Disable("github.com/pingcap/tidb/statistics/handle/assertSyncLoadItems") +} + func TestConcurrentLoadHist(t *testing.T) { store, dom := testkit.CreateMockStoreAndDomain(t) diff --git a/statistics/handle/handle_test.go b/statistics/handle/handle_test.go index f8f73b933bd9a..4d268a59ae76e 100644 --- a/statistics/handle/handle_test.go +++ b/statistics/handle/handle_test.go @@ -1659,6 +1659,7 @@ partition by range (a) ( partition p0 values less than (10), partition p1 values less than (20) )`) + require.NoError(t, dom.StatsHandle().HandleDDLEvent(<-dom.StatsHandle().DDLEventCh())) tk.MustExec("insert into t values (1), (5), (null), (11), (15)") require.NoError(t, dom.StatsHandle().DumpStatsDeltaToKV(handle.DumpAll)) @@ -1694,14 +1695,15 @@ partition by range (a) ( require.NoError(t, err) tableInfo := tbl.Meta() globalStats := h.GetTableStats(tableInfo) - // global.count = p0.count(3) + p1.count(2) + p2.count(2) - // We did not analyze partition p1, so the value here has not changed - require.Equal(t, int64(7), globalStats.Count) + // global.count = p0.count(3) + p1.count(4) + p2.count(2) + // modify count is 2 because we didn't analyze p1 after the second insert + require.Equal(t, int64(9), globalStats.Count) + require.Equal(t, int64(2), globalStats.ModifyCount) tk.MustExec("analyze table t partition p1;") globalStats = h.GetTableStats(tableInfo) // global.count = p0.count(3) + p1.count(4) + p2.count(4) - // The value of p1.Count is correct now. + // The value of modify count is 0 now. require.Equal(t, int64(9), globalStats.Count) require.Equal(t, int64(0), globalStats.ModifyCount) @@ -2155,11 +2157,13 @@ func TestPartitionPruneModeSessionVariable(t *testing.T) { store := testkit.CreateMockStore(t) tk1 := testkit.NewTestKit(t, store) tk1.MustExec("use test") + tk1.MustExec("set tidb_cost_model_version=1") tk1.MustExec("set @@tidb_partition_prune_mode = '" + string(variable.Dynamic) + "'") tk1.MustExec(`set @@tidb_analyze_version=2`) tk2 := testkit.NewTestKit(t, store) tk2.MustExec("use test") + tk2.MustExec("set tidb_cost_model_version=1") tk2.MustExec("set @@tidb_partition_prune_mode = '" + string(variable.Static) + "'") tk2.MustExec(`set @@tidb_analyze_version=2`) @@ -2264,7 +2268,7 @@ func TestIndexUsageInformation(t *testing.T) { tk.MustQuery("select b from t_idx where b=0") err = do.StatsHandle().DumpIndexUsageToKV() require.NoError(t, err) - tk.MustQuery(querySQL).Check(testkit.Rows( + tk.MustQuery(querySQL).Sort().Check(testkit.Rows( "test t_idx idx_a 3 2", "test t_idx idx_b 2 2", )) @@ -3423,3 +3427,119 @@ func TestUninitializedStatsStatus(t *testing.T) { tk.MustExec("set @@tidb_enable_pseudo_for_outdated_stats = false") checkStatsPseudo() } + +func TestStatsLockAndUnlockTable(t *testing.T) { + restore := config.RestoreFunc() + defer restore() + config.UpdateGlobal(func(conf *config.Config) { + conf.Performance.EnableStatsCacheMemQuota = true + }) + store, dom := testkit.CreateMockStoreAndDomain(t) + tk := testkit.NewTestKit(t, store) + tk.MustExec("set @@tidb_analyze_version = 1") + tk.MustExec("use test") + tk.MustExec("drop table if exists t") + tk.MustExec("create table t(a int, b varchar(10), index idx_b (b))") + tk.MustExec("analyze table test.t") + tbl, err := dom.InfoSchema().TableByName(model.NewCIStr("test"), model.NewCIStr("t")) + require.Nil(t, err) + + handle := domain.GetDomain(tk.Session()).StatsHandle() + tblStats := handle.GetTableStats(tbl.Meta()) + for _, col := range tblStats.Columns { + require.True(t, col.IsStatsInitialized()) + } + tk.MustExec("lock stats t") + + rows := tk.MustQuery("select count(*) from mysql.stats_table_locked").Rows() + num, _ := strconv.Atoi(rows[0][0].(string)) + require.Equal(t, num, 1) + + tk.MustExec("insert into t(a, b) values(1,'a')") + tk.MustExec("insert into t(a, b) values(2,'b')") + + tk.MustExec("analyze table test.t") + tblStats1 := handle.GetTableStats(tbl.Meta()) + require.Equal(t, tblStats, tblStats1) + + tableLocked1 := handle.GetTableLockedAndClearForTest() + err = handle.LoadLockedTables() + require.Nil(t, err) + tableLocked2 := handle.GetTableLockedAndClearForTest() + require.Equal(t, tableLocked1, tableLocked2) + + tk.MustExec("unlock stats t") + rows = tk.MustQuery("select count(*) from mysql.stats_table_locked").Rows() + num, _ = strconv.Atoi(rows[0][0].(string)) + require.Equal(t, num, 0) + + tk.MustExec("analyze table test.t") + tblStats2 := handle.GetTableStats(tbl.Meta()) + require.Equal(t, int64(2), tblStats2.Count) +} + +func TestStatsLockAndUnlockTables(t *testing.T) { + restore := config.RestoreFunc() + defer restore() + config.UpdateGlobal(func(conf *config.Config) { + conf.Performance.EnableStatsCacheMemQuota = true + }) + store, dom := testkit.CreateMockStoreAndDomain(t) + tk := testkit.NewTestKit(t, store) + tk.MustExec("set @@tidb_analyze_version = 1") + tk.MustExec("use test") + tk.MustExec("drop table if exists t1") + tk.MustExec("drop table if exists t2") + tk.MustExec("create table t1(a int, b varchar(10), index idx_b (b))") + tk.MustExec("create table t2(a int, b varchar(10), index idx_b (b))") + tk.MustExec("analyze table test.t1, test.t2") + tbl1, err := dom.InfoSchema().TableByName(model.NewCIStr("test"), model.NewCIStr("t1")) + require.Nil(t, err) + tbl2, err := dom.InfoSchema().TableByName(model.NewCIStr("test"), model.NewCIStr("t2")) + require.Nil(t, err) + + handle := domain.GetDomain(tk.Session()).StatsHandle() + tbl1Stats := handle.GetTableStats(tbl1.Meta()) + for _, col := range tbl1Stats.Columns { + require.True(t, col.IsStatsInitialized()) + } + tbl2Stats := handle.GetTableStats(tbl2.Meta()) + for _, col := range tbl2Stats.Columns { + require.True(t, col.IsStatsInitialized()) + } + + tk.MustExec("lock stats t1, t2") + + rows := tk.MustQuery("select count(*) from mysql.stats_table_locked").Rows() + num, _ := strconv.Atoi(rows[0][0].(string)) + require.Equal(t, num, 2) + + tk.MustExec("insert into t1(a, b) values(1,'a')") + tk.MustExec("insert into t1(a, b) values(2,'b')") + + tk.MustExec("insert into t2(a, b) values(1,'a')") + tk.MustExec("insert into t2(a, b) values(2,'b')") + + tk.MustExec("analyze table test.t1, test.t2") + tbl1Stats1 := handle.GetTableStats(tbl1.Meta()) + require.Equal(t, tbl1Stats, tbl1Stats1) + tbl2Stats1 := handle.GetTableStats(tbl2.Meta()) + require.Equal(t, tbl2Stats, tbl2Stats1) + + tableLocked1 := handle.GetTableLockedAndClearForTest() + err = handle.LoadLockedTables() + require.Nil(t, err) + tableLocked2 := handle.GetTableLockedAndClearForTest() + require.Equal(t, tableLocked1, tableLocked2) + + tk.MustExec("unlock stats test.t1, test.t2") + rows = tk.MustQuery("select count(*) from mysql.stats_table_locked").Rows() + num, _ = strconv.Atoi(rows[0][0].(string)) + require.Equal(t, num, 0) + + tk.MustExec("analyze table test.t1, test.t2") + tbl1Stats2 := handle.GetTableStats(tbl1.Meta()) + require.Equal(t, int64(2), tbl1Stats2.Count) + tbl2Stats2 := handle.GetTableStats(tbl2.Meta()) + require.Equal(t, int64(2), tbl2Stats2.Count) +} diff --git a/statistics/handle/main_test.go b/statistics/handle/main_test.go index b346b095e13cf..5541a01a46aa9 100644 --- a/statistics/handle/main_test.go +++ b/statistics/handle/main_test.go @@ -24,7 +24,9 @@ import ( func TestMain(m *testing.M) { opts := []goleak.Option{ goleak.IgnoreTopFunction("github.com/golang/glog.(*loggingT).flushDaemon"), + goleak.IgnoreTopFunction("github.com/lestrrat-go/httprc.runFetchWorker"), goleak.IgnoreTopFunction("go.etcd.io/etcd/client/pkg/v3/logutil.(*MergeLogger).outputLoop"), + goleak.IgnoreTopFunction("go.opencensus.io/stats/view.(*worker).start"), } testsetup.SetupForCommonTest() goleak.VerifyTestMain(m, opts...) diff --git a/statistics/handle/update.go b/statistics/handle/update.go index f6b8c31361ff0..22c7771724e11 100644 --- a/statistics/handle/update.go +++ b/statistics/handle/update.go @@ -197,6 +197,12 @@ func (s *SessionStatsCollector) StoreQueryFeedback(feedback interface{}, h *Hand if !q.Valid.Load() || q.Hist == nil { return nil } + + // if table locked, skip + if h.IsTableLocked(q.PhysicalID) { + return nil + } + err := h.RecalculateExpectCount(q, enablePseudoForOutdatedStats) if err != nil { return errors.Trace(err) @@ -229,6 +235,9 @@ func (s *SessionStatsCollector) UpdateColStatsUsage(colMap colStatsUsageMap) { // NewSessionStatsCollector allocates a stats collector for a session. func (h *Handle) NewSessionStatsCollector() *SessionStatsCollector { + h.mu.Lock() + defer h.mu.Unlock() + h.listHead.Lock() defer h.listHead.Unlock() newCollector := &SessionStatsCollector{ @@ -307,6 +316,8 @@ func (s *SessionIndexUsageCollector) Delete() { // idxUsageListHead always points to an empty SessionIndexUsageCollector as a sentinel node. So we let idxUsageListHead.next // points to new item. It's helpful to sweepIdxUsageList. func (h *Handle) NewSessionIndexUsageCollector() *SessionIndexUsageCollector { + h.mu.Lock() + defer h.mu.Unlock() h.idxUsageListHead.Lock() defer h.idxUsageListHead.Unlock() newCollector := &SessionIndexUsageCollector{ @@ -539,10 +550,18 @@ func (h *Handle) dumpTableStatCountToKV(id int64, delta variable.TableDelta) (up startTS := txn.StartTS() updateStatsMeta := func(id int64) error { var err error - if delta.Delta < 0 { - _, err = exec.ExecuteInternal(ctx, "update mysql.stats_meta set version = %?, count = count - %?, modify_count = modify_count + %? where table_id = %? and count >= %?", startTS, -delta.Delta, delta.Count, id, -delta.Delta) + if h.IsTableLocked(id) { + if delta.Delta < 0 { + _, err = exec.ExecuteInternal(ctx, "update mysql.stats_table_locked set version = %?, count = count - %?, modify_count = modify_count + %? where table_id = %? and count >= %?", startTS, -delta.Delta, delta.Count, id, -delta.Delta) + } else { + _, err = exec.ExecuteInternal(ctx, "update mysql.stats_table_locked set version = %?, count = count + %?, modify_count = modify_count + %? where table_id = %?", startTS, delta.Delta, delta.Count, id) + } } else { - _, err = exec.ExecuteInternal(ctx, "update mysql.stats_meta set version = %?, count = count + %?, modify_count = modify_count + %? where table_id = %?", startTS, delta.Delta, delta.Count, id) + if delta.Delta < 0 { + _, err = exec.ExecuteInternal(ctx, "update mysql.stats_meta set version = %?, count = count - %?, modify_count = modify_count + %? where table_id = %? and count >= %?", startTS, -delta.Delta, delta.Count, id, -delta.Delta) + } else { + _, err = exec.ExecuteInternal(ctx, "update mysql.stats_meta set version = %?, count = count + %?, modify_count = modify_count + %? where table_id = %?", startTS, delta.Delta, delta.Count, id) + } } statsVer = startTS return errors.Trace(err) @@ -886,7 +905,7 @@ func (h *Handle) deleteOutdatedFeedback(tableID, histID, isIndex int64) error { func (h *Handle) dumpStatsUpdateToKV(tableID, isIndex int64, q *statistics.QueryFeedback, hist *statistics.Histogram, cms *statistics.CMSketch, topN *statistics.TopN, statsVersion int64) error { hist = statistics.UpdateHistogram(hist, q, int(statsVersion)) // feedback for partition is not ready. - err := h.SaveStatsToStorage(tableID, -1, int(isIndex), hist, cms, topN, int(statsVersion), 0, false) + err := h.SaveStatsToStorage(tableID, -1, 0, int(isIndex), hist, cms, topN, int(statsVersion), 0, false) metrics.UpdateStatsCounter.WithLabelValues(metrics.RetLabel(err)).Inc() return errors.Trace(err) } @@ -1088,6 +1107,10 @@ func (h *Handle) HandleAutoAnalyze(is infoschema.InfoSchema) (analyzed bool) { tbls[i], tbls[j] = tbls[j], tbls[i] }) for _, tbl := range tbls { + //if table locked, skip analyze + if h.IsTableLocked(tbl.Meta().ID) { + continue + } tblInfo := tbl.Meta() if tblInfo.IsView() { continue diff --git a/statistics/handle/update_test.go b/statistics/handle/update_test.go index 5ae98d32560d2..e14522c31c4a8 100644 --- a/statistics/handle/update_test.go +++ b/statistics/handle/update_test.go @@ -2398,3 +2398,225 @@ func TestEnableAndDisableColumnTracking(t *testing.T) { tk.MustExec("set global tidb_enable_column_tracking = 0") tk.MustQuery("show column_stats_usage where db_name = 'test' and table_name = 't' and last_used_at is not null").Check(testkit.Rows()) } + +func TestStatsLockUnlockForAutoAnalyze(t *testing.T) { + store, dom := testkit.CreateMockStoreAndDomain(t) + tk := testkit.NewTestKit(t, store) + + oriStart := tk.MustQuery("select @@tidb_auto_analyze_start_time").Rows()[0][0].(string) + oriEnd := tk.MustQuery("select @@tidb_auto_analyze_end_time").Rows()[0][0].(string) + handle.AutoAnalyzeMinCnt = 0 + defer func() { + handle.AutoAnalyzeMinCnt = 1000 + tk.MustExec(fmt.Sprintf("set global tidb_auto_analyze_start_time='%v'", oriStart)) + tk.MustExec(fmt.Sprintf("set global tidb_auto_analyze_end_time='%v'", oriEnd)) + }() + + h := dom.StatsHandle() + tk.MustExec("use test") + tk.MustExec("create table t (a int)") + require.NoError(t, h.HandleDDLEvent(<-h.DDLEventCh())) + tk.MustExec("insert into t values (1)" + strings.Repeat(", (1)", 19)) + require.NoError(t, h.DumpStatsDeltaToKV(handle.DumpAll)) + is := dom.InfoSchema() + require.NoError(t, h.Update(is)) + // To pass the stats.Pseudo check in autoAnalyzeTable + tk.MustExec("analyze table t") + tk.MustExec("explain select * from t where a = 1") + require.NoError(t, h.LoadNeededHistograms()) + tk.MustExec("set global tidb_auto_analyze_start_time='00:00 +0000'") + tk.MustExec("set global tidb_auto_analyze_end_time='23:59 +0000'") + + tk.MustExec("insert into t values (1)" + strings.Repeat(", (1)", 10)) + require.NoError(t, h.DumpStatsDeltaToKV(handle.DumpAll)) + require.NoError(t, h.Update(is)) + require.True(t, h.HandleAutoAnalyze(is)) + + tbl, err := dom.InfoSchema().TableByName(model.NewCIStr("test"), model.NewCIStr("t")) + require.Nil(t, err) + + tblStats := h.GetTableStats(tbl.Meta()) + for _, col := range tblStats.Columns { + require.True(t, col.IsStatsInitialized()) + } + + tk.MustExec("lock stats t") + + tk.MustExec("delete from t limit 12") + require.NoError(t, h.DumpStatsDeltaToKV(handle.DumpAll)) + require.NoError(t, h.Update(is)) + require.False(t, h.HandleAutoAnalyze(is)) + + tblStats1 := h.GetTableStats(tbl.Meta()) + require.Equal(t, tblStats, tblStats1) + + tk.MustExec("unlock stats t") + + tk.MustExec("delete from t limit 4") + + rows := tk.MustQuery("select count(*) from t").Rows() + num, _ := strconv.Atoi(rows[0][0].(string)) + require.Equal(t, num, 15) + + tk.MustExec("analyze table t") + + tblStats2 := h.GetTableStats(tbl.Meta()) + require.Equal(t, int64(15), tblStats2.Count) +} + +func TestStatsLockForFeedback(t *testing.T) { + store, dom := testkit.CreateMockStoreAndDomain(t) + testKit := testkit.NewTestKit(t, store) + testKit.MustExec("use test") + + // TODO(tiancaiamao): query feedback is broken when paging is on. + testKit.MustExec("set @@tidb_enable_paging = off") + + testKit.MustExec("set @@session.tidb_analyze_version = 0") + testKit.MustExec("create table t (a bigint(64), b bigint(64), primary key(a), index idx(b))") + testKit.MustExec("insert into t values (1,2),(2,2),(4,5)") + testKit.MustExec("analyze table t with 0 topn") + testKit.MustExec("insert into t values (3,4)") + for i := 5; i < 20; i++ { + testKit.MustExec(fmt.Sprintf("insert into t values(%d, %d)", i, i+1)) + } + + h := dom.StatsHandle() + oriProbability := statistics.FeedbackProbability.Load() + oriNumber := statistics.MaxNumberOfRanges + oriMinLogCount := handle.MinLogScanCount.Load() + oriErrorRate := handle.MinLogErrorRate.Load() + defer func() { + statistics.FeedbackProbability.Store(oriProbability) + statistics.MaxNumberOfRanges = oriNumber + handle.MinLogScanCount.Store(oriMinLogCount) + handle.MinLogErrorRate.Store(oriErrorRate) + }() + statistics.FeedbackProbability.Store(1) + handle.MinLogScanCount.Store(0) + handle.MinLogErrorRate.Store(0) + tests := []struct { + sql string + hist string + }{ + { + // test primary key feedback + sql: "select * from t where t.a <= 4 order by a desc", + hist: "column:1 ndv:4 totColSize:0\n" + + "num: 1 lower_bound: -9223372036854775808 upper_bound: 2 repeats: 0 ndv: 0\n" + + "num: 2 lower_bound: 2 upper_bound: 4 repeats: 0 ndv: 0\n" + + "num: 1 lower_bound: 4 upper_bound: 4 repeats: 1 ndv: 0", + }, + //run 1st sql after table locked, hist should not changed + { + sql: "select * from t where t.a <= 8 order by a desc", + hist: "column:1 ndv:4 totColSize:0\n" + + "num: 1 lower_bound: -9223372036854775808 upper_bound: 2 repeats: 0 ndv: 0\n" + + "num: 2 lower_bound: 2 upper_bound: 4 repeats: 0 ndv: 0\n" + + "num: 1 lower_bound: 4 upper_bound: 4 repeats: 1 ndv: 0", + }, + //run 2nd sql after table unlocked, hist should not changed + { + sql: "select * from t where t.a <= 12 order by a desc", + hist: "column:1 ndv:12 totColSize:0\n" + + "num: 1 lower_bound: -9223372036854775808 upper_bound: 2 repeats: 0 ndv: 0\n" + + "num: 2 lower_bound: 2 upper_bound: 4 repeats: 0 ndv: 0\n" + + "num: 9 lower_bound: 4 upper_bound: 12 repeats: 0 ndv: 0", + }, + //run 4th sql after table locked, hist should not changed + { + sql: "select * from t", + hist: "column:1 ndv:12 totColSize:0\n" + + "num: 1 lower_bound: -9223372036854775808 upper_bound: 2 repeats: 0 ndv: 0\n" + + "num: 2 lower_bound: 2 upper_bound: 4 repeats: 0 ndv: 0\n" + + "num: 9 lower_bound: 4 upper_bound: 12 repeats: 0 ndv: 0", + }, + } + is := dom.InfoSchema() + table, err := is.TableByName(model.NewCIStr("test"), model.NewCIStr("t")) + for i, test := range tests { + testKit.MustQuery(test.sql) + require.NoError(t, h.DumpStatsDeltaToKV(handle.DumpAll)) + require.NoError(t, h.DumpStatsFeedbackToKV()) + require.NoError(t, h.HandleUpdateStats(dom.InfoSchema())) + require.NoError(t, err) + require.NoError(t, h.Update(is)) + tblInfo := table.Meta() + tbl := h.GetTableStats(tblInfo) + //fmt.Printf("\n i: %d, exp: %s, \nact: %s\n", i, tests[i].hist, tbl.Columns[tblInfo.Columns[0].ID].ToString(0)) + require.Equal(t, tests[i].hist, tbl.Columns[tblInfo.Columns[0].ID].ToString(0)) + // add table lock after 2nd + if i == 0 { + testKit.MustExec("lock stats t") + } else if i == 1 { + testKit.MustExec("unlock stats t") + } else if i == 2 { + testKit.MustExec("lock stats t") + } + } +} + +func TestStatsLockForDelta(t *testing.T) { + store, dom := testkit.CreateMockStoreAndDomain(t) + testKit := testkit.NewTestKit(t, store) + testKit.MustExec("use test") + testKit.MustExec("set @@session.tidb_analyze_version = 1") + testKit.MustExec("create table t1 (c1 int, c2 int)") + testKit.MustExec("create table t2 (c1 int, c2 int)") + + is := dom.InfoSchema() + tbl1, err := is.TableByName(model.NewCIStr("test"), model.NewCIStr("t1")) + require.NoError(t, err) + tableInfo1 := tbl1.Meta() + h := dom.StatsHandle() + + testKit.MustExec("lock stats t1") + + rowCount1 := 10 + rowCount2 := 20 + for i := 0; i < rowCount1; i++ { + testKit.MustExec("insert into t1 values(1, 2)") + } + for i := 0; i < rowCount2; i++ { + testKit.MustExec("insert into t2 values(1, 2)") + } + + err = h.HandleDDLEvent(<-h.DDLEventCh()) + require.NoError(t, err) + err = h.HandleDDLEvent(<-h.DDLEventCh()) + require.NoError(t, err) + + require.NoError(t, h.DumpStatsDeltaToKV(handle.DumpAll)) + require.NoError(t, h.Update(is)) + stats1 := h.GetTableStats(tableInfo1) + require.Equal(t, stats1.Count, int64(0)) + + tbl2, err := is.TableByName(model.NewCIStr("test"), model.NewCIStr("t2")) + require.NoError(t, err) + tableInfo2 := tbl2.Meta() + stats2 := h.GetTableStats(tableInfo2) + require.Equal(t, int64(rowCount2), stats2.Count) + + testKit.MustExec("analyze table t1") + for i := 0; i < rowCount1; i++ { + testKit.MustExec("insert into t1 values(1, 2)") + } + require.NoError(t, h.DumpStatsDeltaToKV(handle.DumpAll)) + require.NoError(t, h.Update(is)) + stats1 = h.GetTableStats(tableInfo1) + require.Equal(t, stats1.Count, int64(0)) + + testKit.MustExec("unlock stats t1") + + testKit.MustExec("analyze table t1") + stats1 = h.GetTableStats(tableInfo1) + require.Equal(t, int64(20), stats1.Count) + + for i := 0; i < rowCount1; i++ { + testKit.MustExec("insert into t1 values(1, 2)") + } + require.NoError(t, h.DumpStatsDeltaToKV(handle.DumpAll)) + require.NoError(t, h.Update(is)) + stats1 = h.GetTableStats(tableInfo1) + require.Equal(t, int64(30), stats1.Count) +} diff --git a/statistics/histogram.go b/statistics/histogram.go index 2133ccad3b53b..8c662b6f04061 100644 --- a/statistics/histogram.go +++ b/statistics/histogram.go @@ -997,7 +997,7 @@ func (coll *HistColl) NewHistCollBySelectivity(sctx sessionctx.Context, statsNod Columns: make(map[int64]*Column), Indices: make(map[int64]*Index), Idx2ColumnIDs: coll.Idx2ColumnIDs, - ColID2IdxID: coll.ColID2IdxID, + ColID2IdxIDs: coll.ColID2IdxIDs, Count: coll.Count, } for _, node := range statsNodes { diff --git a/statistics/index.go b/statistics/index.go index 6b8a88501c30e..71d2aa839bd61 100644 --- a/statistics/index.go +++ b/statistics/index.go @@ -346,14 +346,30 @@ func (idx *Index) expBackoffEstimation(sctx sessionctx.Context, coll *HistColl, } colID := colsIDs[i] var ( - count float64 - err error + count float64 + err error + foundStats bool ) - if anotherIdxID, ok := coll.ColID2IdxID[colID]; ok && anotherIdxID != idx.Histogram.ID { - count, err = coll.GetRowCountByIndexRanges(sctx, anotherIdxID, tmpRan) - } else if col, ok := coll.Columns[colID]; ok && !col.IsInvalid(sctx, coll.Pseudo) { + if col, ok := coll.Columns[colID]; ok && !col.IsInvalid(sctx, coll.Pseudo) { + foundStats = true count, err = coll.GetRowCountByColumnRanges(sctx, colID, tmpRan) - } else { + } + if idxIDs, ok := coll.ColID2IdxIDs[colID]; ok && !foundStats && len(indexRange.LowVal) > 1 { + // Note the `len(indexRange.LowVal) > 1` condition here, it means we only recursively call + // `GetRowCountByIndexRanges()` when the input `indexRange` is a multi-column range. This + // check avoids infinite recursion. + for _, idxID := range idxIDs { + if idxID == idx.Histogram.ID { + continue + } + foundStats = true + count, err = coll.GetRowCountByIndexRanges(sctx, idxID, tmpRan) + if err == nil { + break + } + } + } + if !foundStats { continue } if err != nil { diff --git a/statistics/integration_test.go b/statistics/integration_test.go index c4e4d315c7dbe..a94a029f86381 100644 --- a/statistics/integration_test.go +++ b/statistics/integration_test.go @@ -268,6 +268,7 @@ func TestExpBackoffEstimation(t *testing.T) { store := testkit.CreateMockStore(t) tk := testkit.NewTestKit(t, store) tk.MustExec("use test") + tk.MustExec("set tidb_cost_model_version=2") tk.MustExec("create table exp_backoff(a int, b int, c int, d int, index idx(a, b, c, d))") tk.MustExec("insert into exp_backoff values(1, 1, 1, 1), (1, 1, 1, 2), (1, 1, 2, 3), (1, 2, 2, 4), (1, 2, 3, 5)") tk.MustExec("set @@session.tidb_analyze_version=2") diff --git a/statistics/main_test.go b/statistics/main_test.go index b790b0e63076a..1d19e839a8297 100644 --- a/statistics/main_test.go +++ b/statistics/main_test.go @@ -49,6 +49,7 @@ func TestMain(m *testing.M) { opts := []goleak.Option{ goleak.IgnoreTopFunction("github.com/golang/glog.(*loggingT).flushDaemon"), + goleak.IgnoreTopFunction("github.com/lestrrat-go/httprc.runFetchWorker"), goleak.IgnoreTopFunction("go.etcd.io/etcd/client/pkg/v3/logutil.(*MergeLogger).outputLoop"), goleak.IgnoreTopFunction("go.opencensus.io/stats/view.(*worker).start"), } diff --git a/statistics/merge_worker.go b/statistics/merge_worker.go new file mode 100644 index 0000000000000..efcc40f79eb65 --- /dev/null +++ b/statistics/merge_worker.go @@ -0,0 +1,198 @@ +// Copyright 2022 PingCAP, Inc. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +package statistics + +import ( + "sync/atomic" + "time" + + "github.com/pingcap/errors" + "github.com/pingcap/tidb/types" + "github.com/pingcap/tidb/util/codec" + "github.com/pingcap/tidb/util/hack" +) + +// StatsWrapper wrapper stats +type StatsWrapper struct { + AllHg []*Histogram + AllTopN []*TopN +} + +// NewStatsWrapper returns wrapper +func NewStatsWrapper(hg []*Histogram, topN []*TopN) *StatsWrapper { + return &StatsWrapper{ + AllHg: hg, + AllTopN: topN, + } +} + +type topnStatsMergeWorker struct { + killed *uint32 + taskCh <-chan *TopnStatsMergeTask + respCh chan<- *TopnStatsMergeResponse + // the stats in the wrapper should only be read during the worker + statsWrapper *StatsWrapper +} + +// NewTopnStatsMergeWorker returns topn merge worker +func NewTopnStatsMergeWorker( + taskCh <-chan *TopnStatsMergeTask, + respCh chan<- *TopnStatsMergeResponse, + wrapper *StatsWrapper, + killed *uint32) *topnStatsMergeWorker { + worker := &topnStatsMergeWorker{ + taskCh: taskCh, + respCh: respCh, + } + worker.statsWrapper = wrapper + worker.killed = killed + return worker +} + +// TopnStatsMergeTask indicates a task for merge topn stats +type TopnStatsMergeTask struct { + start int + end int +} + +// NewTopnStatsMergeTask returns task +func NewTopnStatsMergeTask(start, end int) *TopnStatsMergeTask { + return &TopnStatsMergeTask{ + start: start, + end: end, + } +} + +// TopnStatsMergeResponse indicates topn merge worker response +type TopnStatsMergeResponse struct { + TopN *TopN + PopedTopn []TopNMeta + RemoveVals [][]TopNMeta + Err error +} + +// Run runs topn merge like statistics.MergePartTopN2GlobalTopN +func (worker *topnStatsMergeWorker) Run(timeZone *time.Location, isIndex bool, + n uint32, + version int) { + for task := range worker.taskCh { + start := task.start + end := task.end + checkTopNs := worker.statsWrapper.AllTopN[start:end] + allTopNs := worker.statsWrapper.AllTopN + allHists := worker.statsWrapper.AllHg + resp := &TopnStatsMergeResponse{} + if checkEmptyTopNs(checkTopNs) { + worker.respCh <- resp + return + } + partNum := len(allTopNs) + checkNum := len(checkTopNs) + topNsNum := make([]int, checkNum) + removeVals := make([][]TopNMeta, partNum) + for i, topN := range checkTopNs { + if topN == nil { + topNsNum[i] = 0 + continue + } + topNsNum[i] = len(topN.TopN) + } + // Different TopN structures may hold the same value, we have to merge them. + counter := make(map[hack.MutableString]float64) + // datumMap is used to store the mapping from the string type to datum type. + // The datum is used to find the value in the histogram. + datumMap := make(map[hack.MutableString]types.Datum) + + for i, topN := range checkTopNs { + if atomic.LoadUint32(worker.killed) == 1 { + resp.Err = errors.Trace(ErrQueryInterrupted) + worker.respCh <- resp + return + } + if topN.TotalCount() == 0 { + continue + } + for _, val := range topN.TopN { + encodedVal := hack.String(val.Encoded) + _, exists := counter[encodedVal] + counter[encodedVal] += float64(val.Count) + if exists { + // We have already calculated the encodedVal from the histogram, so just continue to next topN value. + continue + } + // We need to check whether the value corresponding to encodedVal is contained in other partition-level stats. + // 1. Check the topN first. + // 2. If the topN doesn't contain the value corresponding to encodedVal. We should check the histogram. + for j := 0; j < partNum; j++ { + if (j == i && version >= 2) || allTopNs[j].findTopN(val.Encoded) != -1 { + continue + } + // Get the encodedVal from the hists[j] + datum, exists := datumMap[encodedVal] + if !exists { + // If the datumMap does not have the encodedVal datum, + // we should generate the datum based on the encoded value. + // This part is copied from the function MergePartitionHist2GlobalHist. + var d types.Datum + if isIndex { + d.SetBytes(val.Encoded) + } else { + var err error + if types.IsTypeTime(allHists[0].Tp.GetType()) { + // handle datetime values specially since they are encoded to int and we'll get int values if using DecodeOne. + _, d, err = codec.DecodeAsDateTime(val.Encoded, allHists[0].Tp.GetType(), timeZone) + } else if types.IsTypeFloat(allHists[0].Tp.GetType()) { + _, d, err = codec.DecodeAsFloat32(val.Encoded, allHists[0].Tp.GetType()) + } else { + _, d, err = codec.DecodeOne(val.Encoded) + } + if err != nil { + resp.Err = err + worker.respCh <- resp + return + } + } + datumMap[encodedVal] = d + datum = d + } + // Get the row count which the value is equal to the encodedVal from histogram. + count, _ := allHists[j].equalRowCount(datum, isIndex) + if count != 0 { + counter[encodedVal] += count + // Remove the value corresponding to encodedVal from the histogram. + removeVals[j] = append(removeVals[j], TopNMeta{Encoded: datum.GetBytes(), Count: uint64(count)}) + } + } + } + } + // record remove values + resp.RemoveVals = removeVals + + numTop := len(counter) + if numTop == 0 { + worker.respCh <- resp + continue + } + sorted := make([]TopNMeta, 0, numTop) + for value, cnt := range counter { + data := hack.Slice(string(value)) + sorted = append(sorted, TopNMeta{Encoded: data, Count: uint64(cnt)}) + } + globalTopN, leftTopN := getMergedTopNFromSortedSlice(sorted, n) + resp.TopN = globalTopN + resp.PopedTopn = leftTopN + worker.respCh <- resp + } +} diff --git a/statistics/selectivity.go b/statistics/selectivity.go index 45de31365f3d6..99458cc04bea6 100644 --- a/statistics/selectivity.go +++ b/statistics/selectivity.go @@ -498,7 +498,7 @@ func getMaskAndRanges(ctx sessionctx.Context, exprs []expression.Expression, ran var accessConds, remainedConds []expression.Expression switch rangeType { case ranger.ColumnRangeType: - accessConds = ranger.ExtractAccessConditionsForColumn(exprs, cols[0]) + accessConds = ranger.ExtractAccessConditionsForColumn(ctx, exprs, cols[0]) ranges, accessConds, _, err = ranger.BuildColumnRange(accessConds, ctx, cols[0].RetType, types.UnspecifiedLength, ctx.GetSessionVars().RangeMaxSize) case ranger.IndexRangeType: if cachedPath != nil { diff --git a/statistics/selectivity_test.go b/statistics/selectivity_test.go index a71de236c2483..f0dad37f7cac8 100644 --- a/statistics/selectivity_test.go +++ b/statistics/selectivity_test.go @@ -85,7 +85,7 @@ func BenchmarkSelectivity(b *testing.B) { require.NoErrorf(b, err, "error %v, for expr %s", err, exprs) require.Len(b, stmts, 1) ret := &plannercore.PreprocessorReturn{} - err = plannercore.Preprocess(sctx, stmts[0], plannercore.WithPreprocessorReturn(ret)) + err = plannercore.Preprocess(context.Background(), sctx, stmts[0], plannercore.WithPreprocessorReturn(ret)) require.NoErrorf(b, err, "for %s", exprs) p, _, err := plannercore.BuildLogicalPlanForTest(context.Background(), sctx, stmts[0], ret.InfoSchema) require.NoErrorf(b, err, "error %v, for building plan, expr %s", err, exprs) @@ -299,6 +299,7 @@ func TestStatsVer2(t *testing.T) { store := testkit.CreateMockStore(t) testKit := testkit.NewTestKit(t, store) testKit.MustExec("use test") + testKit.MustExec("set tidb_cost_model_version=2") testKit.MustExec("set tidb_analyze_version=2") testKit.MustExec("drop table if exists tint") @@ -527,7 +528,7 @@ func TestSelectivity(t *testing.T) { require.Len(t, stmts, 1) ret := &plannercore.PreprocessorReturn{} - err = plannercore.Preprocess(sctx, stmts[0], plannercore.WithPreprocessorReturn(ret)) + err = plannercore.Preprocess(context.Background(), sctx, stmts[0], plannercore.WithPreprocessorReturn(ret)) require.NoErrorf(t, err, "for expr %s", tt.exprs) p, _, err := plannercore.BuildLogicalPlanForTest(ctx, sctx, stmts[0], ret.InfoSchema) require.NoErrorf(t, err, "for building plan, expr %s", err, tt.exprs) @@ -639,7 +640,7 @@ func TestDNFCondSelectivity(t *testing.T) { require.Len(t, stmts, 1) ret := &plannercore.PreprocessorReturn{} - err = plannercore.Preprocess(sctx, stmts[0], plannercore.WithPreprocessorReturn(ret)) + err = plannercore.Preprocess(context.Background(), sctx, stmts[0], plannercore.WithPreprocessorReturn(ret)) require.NoErrorf(t, err, "error %v, for sql %s", err, tt) p, _, err := plannercore.BuildLogicalPlanForTest(ctx, sctx, stmts[0], ret.InfoSchema) require.NoErrorf(t, err, "error %v, for building plan, sql %s", err, tt) diff --git a/statistics/table.go b/statistics/table.go index 81cb4e9bf284f..2e66e39ab8152 100644 --- a/statistics/table.go +++ b/statistics/table.go @@ -101,10 +101,10 @@ type HistColl struct { Indices map[int64]*Index // Idx2ColumnIDs maps the index id to its column ids. It's used to calculate the selectivity in planner. Idx2ColumnIDs map[int64][]int64 - // ColID2IdxID maps the column id to index id whose first column is it. It's used to calculate the selectivity in planner. - ColID2IdxID map[int64]int64 - Count int64 - ModifyCount int64 // Total modify count in a table. + // ColID2IdxIDs maps the column id to a list index ids whose first column is it. It's used to calculate the selectivity in planner. + ColID2IdxIDs map[int64][]int64 + Count int64 + ModifyCount int64 // Total modify count in a table. // HavePhysicalID is true means this HistColl is from single table and have its ID's information. // The physical id is used when try to load column stats from storage. @@ -846,7 +846,7 @@ func (coll *HistColl) ID2UniqueID(columns []*expression.Column) *HistColl { return newColl } -// GenerateHistCollFromColumnInfo generates a new HistColl whose ColID2IdxID and IdxID2ColIDs is built from the given parameter. +// GenerateHistCollFromColumnInfo generates a new HistColl whose ColID2IdxIDs and IdxID2ColIDs is built from the given parameter. func (coll *HistColl) GenerateHistCollFromColumnInfo(infos []*model.ColumnInfo, columns []*expression.Column) *HistColl { newColHistMap := make(map[int64]*Column) colInfoID2UniqueID := make(map[int64]int64, len(columns)) @@ -869,7 +869,7 @@ func (coll *HistColl) GenerateHistCollFromColumnInfo(infos []*model.ColumnInfo, } newIdxHistMap := make(map[int64]*Index) idx2Columns := make(map[int64][]int64) - colID2IdxID := make(map[int64]int64) + colID2IdxIDs := make(map[int64][]int64) for _, idxHist := range coll.Indices { ids := make([]int64, 0, len(idxHist.Info.Columns)) for _, idxCol := range idxHist.Info.Columns { @@ -883,10 +883,13 @@ func (coll *HistColl) GenerateHistCollFromColumnInfo(infos []*model.ColumnInfo, if len(ids) == 0 { continue } - colID2IdxID[ids[0]] = idxHist.ID + colID2IdxIDs[ids[0]] = append(colID2IdxIDs[ids[0]], idxHist.ID) newIdxHistMap[idxHist.ID] = idxHist idx2Columns[idxHist.ID] = ids } + for _, idxIDs := range colID2IdxIDs { + slices.Sort(idxIDs) + } newColl := &HistColl{ PhysicalID: coll.PhysicalID, HavePhysicalID: coll.HavePhysicalID, @@ -895,7 +898,7 @@ func (coll *HistColl) GenerateHistCollFromColumnInfo(infos []*model.ColumnInfo, ModifyCount: coll.ModifyCount, Columns: newColHistMap, Indices: newIdxHistMap, - ColID2IdxID: colID2IdxID, + ColID2IdxIDs: colID2IdxIDs, Idx2ColumnIDs: idx2Columns, } return newColl @@ -1084,8 +1087,9 @@ func (coll *HistColl) getIndexRowCount(sctx sessionctx.Context, idxID int64, ind colID = colIDs[rangePosition] } // prefer index stats over column stats - if idx, ok := coll.ColID2IdxID[colID]; ok { - count, err = coll.GetRowCountByIndexRanges(sctx, idx, []*ranger.Range{&rang}) + if idxIDs, ok := coll.ColID2IdxIDs[colID]; ok && len(idxIDs) > 0 { + idxID := idxIDs[0] + count, err = coll.GetRowCountByIndexRanges(sctx, idxID, []*ranger.Range{&rang}) } else { count, err = coll.GetRowCountByColumnRanges(sctx, colID, []*ranger.Range{&rang}) } diff --git a/statistics/testdata/integration_suite_out.json b/statistics/testdata/integration_suite_out.json index 9e39d3c7d2052..73b62a002e248 100644 --- a/statistics/testdata/integration_suite_out.json +++ b/statistics/testdata/integration_suite_out.json @@ -7,19 +7,19 @@ "└─IndexRangeScan_5 5.00 cop[tikv] table:exp_backoff, index:idx(a, b, c, d) range:[1,1], keep order:false" ], [ - "TableReader_7 3.00 root data:Selection_6", - "└─Selection_6 3.00 cop[tikv] eq(test.exp_backoff.b, 1)", - " └─TableFullScan_5 5.00 cop[tikv] table:exp_backoff keep order:false" + "IndexReader_10 3.00 root index:Selection_9", + "└─Selection_9 3.00 cop[tikv] eq(test.exp_backoff.b, 1)", + " └─IndexFullScan_8 5.00 cop[tikv] table:exp_backoff, index:idx(a, b, c, d) keep order:false" ], [ - "TableReader_7 2.00 root data:Selection_6", - "└─Selection_6 2.00 cop[tikv] eq(test.exp_backoff.c, 1)", - " └─TableFullScan_5 5.00 cop[tikv] table:exp_backoff keep order:false" + "IndexReader_10 2.00 root index:Selection_9", + "└─Selection_9 2.00 cop[tikv] eq(test.exp_backoff.c, 1)", + " └─IndexFullScan_8 5.00 cop[tikv] table:exp_backoff, index:idx(a, b, c, d) keep order:false" ], [ - "TableReader_7 3.00 root data:Selection_6", - "└─Selection_6 3.00 cop[tikv] ge(test.exp_backoff.d, 3), le(test.exp_backoff.d, 5)", - " └─TableFullScan_5 5.00 cop[tikv] table:exp_backoff keep order:false" + "IndexReader_10 3.00 root index:Selection_9", + "└─Selection_9 3.00 cop[tikv] ge(test.exp_backoff.d, 3), le(test.exp_backoff.d, 5)", + " └─IndexFullScan_8 5.00 cop[tikv] table:exp_backoff, index:idx(a, b, c, d) keep order:false" ], [ "IndexReader_6 1.36 root index:IndexRangeScan_5", diff --git a/statistics/testdata/stats_suite_out.json b/statistics/testdata/stats_suite_out.json index d07b336ccbfbd..a78fafe87ade9 100644 --- a/statistics/testdata/stats_suite_out.json +++ b/statistics/testdata/stats_suite_out.json @@ -170,34 +170,34 @@ " └─TableFullScan_5 8.00 cop[tikv] table:tint keep order:false" ], [ - "IndexLookUp_10 1.00 root ", - "├─IndexRangeScan_8(Build) 1.00 cop[tikv] table:tdouble, index:singular(a) range:[1,1], keep order:false", - "└─TableRowIDScan_9(Probe) 1.00 cop[tikv] table:tdouble keep order:false" + "TableReader_7 1.00 root data:Selection_6", + "└─Selection_6 1.00 cop[tikv] eq(test.tdouble.a, 1)", + " └─TableFullScan_5 8.00 cop[tikv] table:tdouble keep order:false" ], [ - "IndexLookUp_10 1.00 root ", - "├─IndexRangeScan_8(Build) 1.00 cop[tikv] table:tdouble, index:singular(a) range:[4,4], keep order:false", - "└─TableRowIDScan_9(Probe) 1.00 cop[tikv] table:tdouble keep order:false" + "TableReader_7 1.00 root data:Selection_6", + "└─Selection_6 1.00 cop[tikv] eq(test.tdouble.a, 4)", + " └─TableFullScan_5 8.00 cop[tikv] table:tdouble keep order:false" ], [ - "IndexLookUp_10 1.00 root ", - "├─IndexRangeScan_8(Build) 1.00 cop[tikv] table:tdouble, index:singular(a) range:[8,8], keep order:false", - "└─TableRowIDScan_9(Probe) 1.00 cop[tikv] table:tdouble keep order:false" + "TableReader_7 1.00 root data:Selection_6", + "└─Selection_6 1.00 cop[tikv] eq(test.tdouble.a, 8)", + " └─TableFullScan_5 8.00 cop[tikv] table:tdouble keep order:false" ], [ - "IndexLookUp_10 1.00 root ", - "├─IndexRangeScan_8(Build) 1.00 cop[tikv] table:tdecimal, index:singular(a) range:[1.00000000000000000000,1.00000000000000000000], keep order:false", - "└─TableRowIDScan_9(Probe) 1.00 cop[tikv] table:tdecimal keep order:false" + "TableReader_7 1.00 root data:Selection_6", + "└─Selection_6 1.00 cop[tikv] eq(test.tdecimal.a, 1)", + " └─TableFullScan_5 8.00 cop[tikv] table:tdecimal keep order:false" ], [ - "IndexLookUp_10 1.00 root ", - "├─IndexRangeScan_8(Build) 1.00 cop[tikv] table:tdecimal, index:singular(a) range:[4.00000000000000000000,4.00000000000000000000], keep order:false", - "└─TableRowIDScan_9(Probe) 1.00 cop[tikv] table:tdecimal keep order:false" + "TableReader_7 1.00 root data:Selection_6", + "└─Selection_6 1.00 cop[tikv] eq(test.tdecimal.a, 4)", + " └─TableFullScan_5 8.00 cop[tikv] table:tdecimal keep order:false" ], [ - "IndexLookUp_10 1.00 root ", - "├─IndexRangeScan_8(Build) 1.00 cop[tikv] table:tdecimal, index:singular(a) range:[8.00000000000000000000,8.00000000000000000000], keep order:false", - "└─TableRowIDScan_9(Probe) 1.00 cop[tikv] table:tdecimal keep order:false" + "TableReader_7 1.00 root data:Selection_6", + "└─Selection_6 1.00 cop[tikv] eq(test.tdecimal.a, 8)", + " └─TableFullScan_5 8.00 cop[tikv] table:tdecimal keep order:false" ], [ "TableReader_7 1.00 root data:Selection_6", @@ -260,34 +260,34 @@ " └─TableFullScan_5 8.00 cop[tikv] table:tint keep order:false" ], [ - "IndexLookUp_10 1.00 root ", - "├─IndexRangeScan_8(Build) 1.00 cop[tikv] table:tdouble, index:multi(b, c) range:[1 1,1 1], keep order:false", - "└─TableRowIDScan_9(Probe) 1.00 cop[tikv] table:tdouble keep order:false" + "TableReader_7 1.00 root data:Selection_6", + "└─Selection_6 1.00 cop[tikv] eq(test.tdouble.b, 1), eq(test.tdouble.c, 1)", + " └─TableFullScan_5 8.00 cop[tikv] table:tdouble keep order:false" ], [ - "IndexLookUp_10 1.00 root ", - "├─IndexRangeScan_8(Build) 1.00 cop[tikv] table:tdouble, index:multi(b, c) range:[4 4,4 4], keep order:false", - "└─TableRowIDScan_9(Probe) 1.00 cop[tikv] table:tdouble keep order:false" + "TableReader_7 1.00 root data:Selection_6", + "└─Selection_6 1.00 cop[tikv] eq(test.tdouble.b, 4), eq(test.tdouble.c, 4)", + " └─TableFullScan_5 8.00 cop[tikv] table:tdouble keep order:false" ], [ - "IndexLookUp_10 1.00 root ", - "├─IndexRangeScan_8(Build) 1.00 cop[tikv] table:tdouble, index:multi(b, c) range:[8 8,8 8], keep order:false", - "└─TableRowIDScan_9(Probe) 1.00 cop[tikv] table:tdouble keep order:false" + "TableReader_7 1.00 root data:Selection_6", + "└─Selection_6 1.00 cop[tikv] eq(test.tdouble.b, 8), eq(test.tdouble.c, 8)", + " └─TableFullScan_5 8.00 cop[tikv] table:tdouble keep order:false" ], [ - "IndexLookUp_10 1.00 root ", - "├─IndexRangeScan_8(Build) 1.00 cop[tikv] table:tdecimal, index:multi(b, c) range:[1.00000000000000000000 1.00000000000000000000,1.00000000000000000000 1.00000000000000000000], keep order:false", - "└─TableRowIDScan_9(Probe) 1.00 cop[tikv] table:tdecimal keep order:false" + "TableReader_7 1.00 root data:Selection_6", + "└─Selection_6 1.00 cop[tikv] eq(test.tdecimal.b, 1), eq(test.tdecimal.c, 1)", + " └─TableFullScan_5 8.00 cop[tikv] table:tdecimal keep order:false" ], [ - "IndexLookUp_10 1.00 root ", - "├─IndexRangeScan_8(Build) 1.00 cop[tikv] table:tdecimal, index:multi(b, c) range:[4.00000000000000000000 4.00000000000000000000,4.00000000000000000000 4.00000000000000000000], keep order:false", - "└─TableRowIDScan_9(Probe) 1.00 cop[tikv] table:tdecimal keep order:false" + "TableReader_7 1.00 root data:Selection_6", + "└─Selection_6 1.00 cop[tikv] eq(test.tdecimal.b, 4), eq(test.tdecimal.c, 4)", + " └─TableFullScan_5 8.00 cop[tikv] table:tdecimal keep order:false" ], [ - "IndexLookUp_10 1.00 root ", - "├─IndexRangeScan_8(Build) 1.00 cop[tikv] table:tdecimal, index:multi(b, c) range:[8.00000000000000000000 8.00000000000000000000,8.00000000000000000000 8.00000000000000000000], keep order:false", - "└─TableRowIDScan_9(Probe) 1.00 cop[tikv] table:tdecimal keep order:false" + "TableReader_7 1.00 root data:Selection_6", + "└─Selection_6 1.00 cop[tikv] eq(test.tdecimal.b, 8), eq(test.tdecimal.c, 8)", + " └─TableFullScan_5 8.00 cop[tikv] table:tdecimal keep order:false" ], [ "TableReader_7 1.00 root data:Selection_6", @@ -335,34 +335,34 @@ " └─TableFullScan_5 8.00 cop[tikv] table:tint keep order:false" ], [ - "IndexLookUp_10 1.00 root ", - "├─IndexRangeScan_8(Build) 1.00 cop[tikv] table:tdouble, index:multi(b, c) range:[1,1], keep order:false", - "└─TableRowIDScan_9(Probe) 1.00 cop[tikv] table:tdouble keep order:false" + "TableReader_7 1.00 root data:Selection_6", + "└─Selection_6 1.00 cop[tikv] eq(test.tdouble.b, 1)", + " └─TableFullScan_5 8.00 cop[tikv] table:tdouble keep order:false" ], [ - "IndexLookUp_10 1.00 root ", - "├─IndexRangeScan_8(Build) 1.00 cop[tikv] table:tdouble, index:multi(b, c) range:[4,4], keep order:false", - "└─TableRowIDScan_9(Probe) 1.00 cop[tikv] table:tdouble keep order:false" + "TableReader_7 1.00 root data:Selection_6", + "└─Selection_6 1.00 cop[tikv] eq(test.tdouble.b, 4)", + " └─TableFullScan_5 8.00 cop[tikv] table:tdouble keep order:false" ], [ - "IndexLookUp_10 1.00 root ", - "├─IndexRangeScan_8(Build) 1.00 cop[tikv] table:tdouble, index:multi(b, c) range:[8,8], keep order:false", - "└─TableRowIDScan_9(Probe) 1.00 cop[tikv] table:tdouble keep order:false" + "TableReader_7 1.00 root data:Selection_6", + "└─Selection_6 1.00 cop[tikv] eq(test.tdouble.b, 8)", + " └─TableFullScan_5 8.00 cop[tikv] table:tdouble keep order:false" ], [ - "IndexLookUp_10 1.00 root ", - "├─IndexRangeScan_8(Build) 1.00 cop[tikv] table:tdecimal, index:multi(b, c) range:[1.00000000000000000000,1.00000000000000000000], keep order:false", - "└─TableRowIDScan_9(Probe) 1.00 cop[tikv] table:tdecimal keep order:false" + "TableReader_7 1.00 root data:Selection_6", + "└─Selection_6 1.00 cop[tikv] eq(test.tdecimal.b, 1)", + " └─TableFullScan_5 8.00 cop[tikv] table:tdecimal keep order:false" ], [ - "IndexLookUp_10 1.00 root ", - "├─IndexRangeScan_8(Build) 1.00 cop[tikv] table:tdecimal, index:multi(b, c) range:[4.00000000000000000000,4.00000000000000000000], keep order:false", - "└─TableRowIDScan_9(Probe) 1.00 cop[tikv] table:tdecimal keep order:false" + "TableReader_7 1.00 root data:Selection_6", + "└─Selection_6 1.00 cop[tikv] eq(test.tdecimal.b, 4)", + " └─TableFullScan_5 8.00 cop[tikv] table:tdecimal keep order:false" ], [ - "IndexLookUp_10 1.00 root ", - "├─IndexRangeScan_8(Build) 1.00 cop[tikv] table:tdecimal, index:multi(b, c) range:[8.00000000000000000000,8.00000000000000000000], keep order:false", - "└─TableRowIDScan_9(Probe) 1.00 cop[tikv] table:tdecimal keep order:false" + "TableReader_7 1.00 root data:Selection_6", + "└─Selection_6 1.00 cop[tikv] eq(test.tdecimal.b, 8)", + " └─TableFullScan_5 8.00 cop[tikv] table:tdecimal keep order:false" ], [ "TableReader_7 1.00 root data:Selection_6", diff --git a/store/copr/copr_test/BUILD.bazel b/store/copr/copr_test/BUILD.bazel new file mode 100644 index 0000000000000..af7d46d052bf5 --- /dev/null +++ b/store/copr/copr_test/BUILD.bazel @@ -0,0 +1,21 @@ +load("@io_bazel_rules_go//go:def.bzl", "go_test") + +go_test( + name = "copr_test_test", + srcs = [ + "coprocessor_test.go", + "main_test.go", + ], + deps = [ + "//config", + "//kv", + "//store/copr", + "//store/mockstore", + "//testkit/testmain", + "//testkit/testsetup", + "@com_github_stretchr_testify//require", + "@com_github_tikv_client_go_v2//testutils", + "@com_github_tikv_client_go_v2//tikv", + "@org_uber_go_goleak//:goleak", + ], +) diff --git a/store/copr/copr_test/coprocessor_test.go b/store/copr/copr_test/coprocessor_test.go new file mode 100644 index 0000000000000..f92db7ba7c334 --- /dev/null +++ b/store/copr/copr_test/coprocessor_test.go @@ -0,0 +1,100 @@ +// Copyright 2022 PingCAP, Inc. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +package copr_test + +import ( + "context" + "testing" + + "github.com/pingcap/tidb/kv" + "github.com/pingcap/tidb/store/copr" + "github.com/pingcap/tidb/store/mockstore" + "github.com/stretchr/testify/require" + "github.com/tikv/client-go/v2/testutils" +) + +func TestBuildCopIteratorWithRowCountHint(t *testing.T) { + // nil --- 'g' --- 'n' --- 't' --- nil + // <- 0 -> <- 1 -> <- 2 -> <- 3 -> + store, err := mockstore.NewMockStore( + mockstore.WithClusterInspector(func(c testutils.Cluster) { + mockstore.BootstrapWithMultiRegions(c, []byte("g"), []byte("n"), []byte("t")) + }), + ) + require.NoError(t, err) + defer require.NoError(t, store.Close()) + copClient := store.GetClient().(*copr.CopClient) + ctx := context.Background() + killed := uint32(0) + vars := kv.NewVariables(&killed) + opt := &kv.ClientSendOption{} + + req := &kv.Request{ + Tp: kv.ReqTypeDAG, + KeyRanges: copr.BuildKeyRanges("a", "c", "d", "e", "h", "x", "y", "z"), + FixedRowCountHint: []int{1, 1, 3, copr.CopSmallTaskRow}, + Concurrency: 15, + } + it, errRes := copClient.BuildCopIterator(ctx, req, vars, opt) + require.Nil(t, errRes) + conc, smallConc := it.GetConcurrency() + rateLimit := it.GetSendRate() + require.Equal(t, conc, 1) + require.Equal(t, smallConc, 1) + require.Equal(t, rateLimit.GetCapacity(), 2) + + req = &kv.Request{ + Tp: kv.ReqTypeDAG, + KeyRanges: copr.BuildKeyRanges("a", "c", "d", "e", "h", "x", "y", "z"), + FixedRowCountHint: []int{1, 1, 3, 3}, + Concurrency: 15, + } + it, errRes = copClient.BuildCopIterator(ctx, req, vars, opt) + require.Nil(t, errRes) + conc, smallConc = it.GetConcurrency() + rateLimit = it.GetSendRate() + require.Equal(t, conc, 1) + require.Equal(t, smallConc, 2) + require.Equal(t, rateLimit.GetCapacity(), 3) + + // cross-region long range + req = &kv.Request{ + Tp: kv.ReqTypeDAG, + KeyRanges: copr.BuildKeyRanges("a", "z"), + FixedRowCountHint: []int{10}, + Concurrency: 15, + } + it, errRes = copClient.BuildCopIterator(ctx, req, vars, opt) + require.Nil(t, errRes) + conc, smallConc = it.GetConcurrency() + rateLimit = it.GetSendRate() + require.Equal(t, conc, 1) + require.Equal(t, smallConc, 2) + require.Equal(t, rateLimit.GetCapacity(), 3) + + req = &kv.Request{ + Tp: kv.ReqTypeDAG, + KeyRanges: copr.BuildKeyRanges("a", "z"), + FixedRowCountHint: []int{copr.CopSmallTaskRow + 1}, + Concurrency: 15, + } + it, errRes = copClient.BuildCopIterator(ctx, req, vars, opt) + require.Nil(t, errRes) + conc, smallConc = it.GetConcurrency() + rateLimit = it.GetSendRate() + require.Equal(t, conc, 4) + require.Equal(t, smallConc, 0) + require.Equal(t, rateLimit.GetCapacity(), 4) +} diff --git a/store/copr/copr_test/main_test.go b/store/copr/copr_test/main_test.go new file mode 100644 index 0000000000000..9b98a6a9ad944 --- /dev/null +++ b/store/copr/copr_test/main_test.go @@ -0,0 +1,61 @@ +// Copyright 2022 PingCAP, Inc. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +package copr_test + +import ( + "flag" + "testing" + "time" + + "github.com/pingcap/tidb/config" + "github.com/pingcap/tidb/testkit/testmain" + "github.com/pingcap/tidb/testkit/testsetup" + "github.com/tikv/client-go/v2/tikv" + "go.uber.org/goleak" +) + +func TestMain(m *testing.M) { + testmain.ShortCircuitForBench(m) + + testsetup.SetupForCommonTest() + + flag.Parse() + config.UpdateGlobal(func(conf *config.Config) { + conf.TiKVClient.AsyncCommit.SafeWindow = 0 + conf.TiKVClient.AsyncCommit.AllowedClockDrift = 0 + }) + tikv.EnableFailpoints() + opts := []goleak.Option{ + // TODO: figure the reason and shorten this list + goleak.IgnoreTopFunction("github.com/golang/glog.(*loggingT).flushDaemon"), + goleak.IgnoreTopFunction("github.com/lestrrat-go/httprc.runFetchWorker"), + goleak.IgnoreTopFunction("github.com/tikv/client-go/v2/internal/retry.newBackoffFn.func1"), + goleak.IgnoreTopFunction("go.etcd.io/etcd/client/v3.waitRetryBackoff"), + goleak.IgnoreTopFunction("go.etcd.io/etcd/client/pkg/v3/logutil.(*MergeLogger).outputLoop"), + goleak.IgnoreTopFunction("go.opencensus.io/stats/view.(*worker).start"), + goleak.IgnoreTopFunction("google.golang.org/grpc.(*addrConn).resetTransport"), + goleak.IgnoreTopFunction("google.golang.org/grpc.(*ccBalancerWrapper).watcher"), + goleak.IgnoreTopFunction("google.golang.org/grpc/internal/transport.(*controlBuffer).get"), + goleak.IgnoreTopFunction("google.golang.org/grpc/internal/transport.(*http2Client).keepalive"), + goleak.IgnoreTopFunction("internal/poll.runtime_pollWait"), + goleak.IgnoreTopFunction("net/http.(*persistConn).writeLoop"), + } + callback := func(i int) int { + // wait for MVCCLevelDB to close, MVCCLevelDB will be closed in one second + time.Sleep(time.Second) + return i + } + goleak.VerifyTestMain(testmain.WrapTestingM(m, callback), opts...) +} diff --git a/store/copr/coprocessor.go b/store/copr/coprocessor.go index aa52fa3356c2e..982e981f24c79 100644 --- a/store/copr/coprocessor.go +++ b/store/copr/coprocessor.go @@ -18,6 +18,7 @@ import ( "bytes" "context" "fmt" + "math" "strconv" "strings" "sync" @@ -66,6 +67,8 @@ var ( const ( copBuildTaskMaxBackoff = 5000 copNextMaxBackoff = 20000 + CopSmallTaskRow = 32 // 32 is the initial batch size of TiKV + smallTaskSigma = 0.5 ) // CopClient is coprocessor client. @@ -77,9 +80,6 @@ type CopClient struct { // Send builds the request and gets the coprocessor iterator response. func (c *CopClient) Send(ctx context.Context, req *kv.Request, variables interface{}, option *kv.ClientSendOption) kv.Response { - eventCb := option.EventCb - enabledRateLimitAction := option.EnabledRateLimitAction - sessionMemTracker := option.SessionMemTracker vars, ok := variables.(*tikv.Variables) if !ok { return copErrorResponse{errors.Errorf("unsupported variables:%+v", variables)} @@ -88,18 +88,37 @@ func (c *CopClient) Send(ctx context.Context, req *kv.Request, variables interfa logutil.BgLogger().Debug("send batch requests") return c.sendBatch(ctx, req, vars, option) } + ctx = context.WithValue(ctx, tikv.TxnStartKey(), req.StartTs) + ctx = context.WithValue(ctx, util.RequestSourceKey, req.RequestSource) + enabledRateLimitAction := option.EnabledRateLimitAction + sessionMemTracker := option.SessionMemTracker + it, errRes := c.BuildCopIterator(ctx, req, vars, option) + if errRes != nil { + return errRes + } + ctx = context.WithValue(ctx, tikv.RPCCancellerCtxKey{}, it.rpcCancel) + if sessionMemTracker != nil && enabledRateLimitAction { + sessionMemTracker.FallbackOldAndSetNewAction(it.actionOnExceed) + } + it.open(ctx, enabledRateLimitAction, option.EnableCollectExecutionInfo) + return it +} + +// BuildCopIterator builds the iterator without calling `open`. +func (c *CopClient) BuildCopIterator(ctx context.Context, req *kv.Request, vars *tikv.Variables, option *kv.ClientSendOption) (*copIterator, kv.Response) { + eventCb := option.EventCb failpoint.Inject("DisablePaging", func(_ failpoint.Value) { req.Paging.Enable = false }) if req.StoreType == kv.TiDB { // coprocessor on TiDB doesn't support paging req.Paging.Enable = false + req.FixedRowCountHint = nil } if req.Tp != kv.ReqTypeDAG { // coprocessor request but type is not DAG req.Paging.Enable = false } - failpoint.Inject("checkKeyRangeSortedForPaging", func(_ failpoint.Value) { if req.Paging.Enable { isSorted := slices.IsSortedFunc(req.KeyRanges, func(i, j kv.KeyRange) bool { @@ -110,9 +129,14 @@ func (c *CopClient) Send(ctx context.Context, req *kv.Request, variables interfa } } }) + if req.RequestSource.RequestSourceInternal || req.Tp != kv.ReqTypeDAG { + // disable extra concurrency for internal tasks. + req.FixedRowCountHint = nil + } + failpoint.Inject("disableFixedRowCountHint", func(_ failpoint.Value) { + req.FixedRowCountHint = nil + }) - ctx = context.WithValue(ctx, tikv.TxnStartKey(), req.StartTs) - ctx = context.WithValue(ctx, util.RequestSourceKey, req.RequestSource) bo := backoff.NewBackofferWithVars(ctx, copBuildTaskMaxBackoff, vars) ranges := NewKeyRanges(req.KeyRanges) tasks, err := buildCopTasks(bo, c.store.GetRegionCache(), ranges, req, eventCb) @@ -125,7 +149,7 @@ func (c *CopClient) Send(ctx context.Context, req *kv.Request, variables interfa } tidbmetrics.DistSQLCoprClosestReadCounter.WithLabelValues(reqType).Inc() if err != nil { - return copErrorResponse{err} + return nil, copErrorResponse{err} } it := &copIterator{ store: c.store, @@ -141,6 +165,13 @@ func (c *CopClient) Send(ctx context.Context, req *kv.Request, variables interfa if it.concurrency > len(tasks) { it.concurrency = len(tasks) } + if req.FixedRowCountHint != nil { + var smallTasks int + smallTasks, it.smallTaskConcurrency = smallTaskConcurrency(tasks) + if len(tasks)-smallTasks < it.concurrency { + it.concurrency = len(tasks) - smallTasks + } + } if it.concurrency < 1 { // Make sure that there is at least one worker. it.concurrency = 1 @@ -164,20 +195,17 @@ func (c *CopClient) Send(ctx context.Context, req *kv.Request, variables interfa } }) } - it.sendRate = util.NewRateLimit(2 * it.concurrency) + if it.smallTaskConcurrency > 20 { + it.smallTaskConcurrency = 20 + } + it.sendRate = util.NewRateLimit(2 * (it.concurrency + it.smallTaskConcurrency)) it.respChan = nil } else { it.respChan = make(chan *copResponse) - it.sendRate = util.NewRateLimit(it.concurrency) + it.sendRate = util.NewRateLimit(it.concurrency + it.smallTaskConcurrency) } it.actionOnExceed = newRateLimitAction(uint(it.sendRate.GetCapacity())) - if sessionMemTracker != nil && enabledRateLimitAction { - sessionMemTracker.FallbackOldAndSetNewAction(it.actionOnExceed) - } - - ctx = context.WithValue(ctx, tikv.RPCCancellerCtxKey{}, it.rpcCancel) - it.open(ctx, enabledRateLimitAction, option.EnableCollectExecutionInfo) - return it + return it, nil } // copTask contains a related Region and KeyRange for a kv.Request. @@ -198,6 +226,7 @@ type copTask struct { partitionIndex int64 // used by balanceBatchCopTask in PartitionTableScan requestSource util.RequestSource + RowCountHint int // used for extra concurrency of small tasks, -1 for unknown row count } func (r *copTask) String() string { @@ -231,7 +260,8 @@ func buildCopTasks(bo *Backoffer, cache *RegionCache, ranges *KeyRanges, req *kv chanSize = 18 } - var tasks []*copTask + tasks := make([]*copTask, 0, len(locs)) + origRangeIdx := 0 for _, loc := range locs { // TiKV will return gRPC error if the message is too large. So we need to limit the length of the ranges slice // to make sure the message can be sent successfully. @@ -244,6 +274,28 @@ func buildCopTasks(bo *Backoffer, cache *RegionCache, ranges *KeyRanges, req *kv } for i := 0; i < rLen; { nextI := mathutil.Min(i+rangesPerTask, rLen) + hint := -1 + // calculate the row count hint + if req.FixedRowCountHint != nil { + startKey, endKey := loc.Ranges.At(i).StartKey, loc.Ranges.At(nextI-1).EndKey + // move to the previous range if startKey of current range is lower than endKey of previous location. + // In the following example, task1 will move origRangeIdx to region(i, z). + // When counting the row hint for task2, we need to move origRangeIdx back to region(a, h). + // |<- region(a, h) ->| |<- region(i, z) ->| + // |<- task1 ->| |<- task2 ->| ... + if origRangeIdx > 0 && ranges.At(origRangeIdx-1).EndKey.Cmp(startKey) > 0 { + origRangeIdx-- + } + hint = 0 + for nextOrigRangeIdx := origRangeIdx; nextOrigRangeIdx < ranges.Len(); nextOrigRangeIdx++ { + rangeStart := ranges.At(nextOrigRangeIdx).StartKey + if rangeStart.Cmp(endKey) > 0 { + origRangeIdx = nextOrigRangeIdx + break + } + hint += req.FixedRowCountHint[nextOrigRangeIdx] + } + } tasks = append(tasks, &copTask{ region: loc.Location.Region, bucketsVer: loc.getBucketVersion(), @@ -255,6 +307,7 @@ func buildCopTasks(bo *Backoffer, cache *RegionCache, ranges *KeyRanges, req *kv paging: req.Paging.Enable, pagingSize: pagingSize, requestSource: req.RequestSource, + RowCountHint: hint, }) i = nextI if req.Paging.Enable { @@ -290,11 +343,12 @@ func buildTiDBMemCopTasks(ranges *KeyRanges, req *kv.Request) ([]*copTask, error addr := ser.IP + ":" + strconv.FormatUint(uint64(ser.StatusPort), 10) tasks = append(tasks, &copTask{ - ranges: ranges, - respChan: make(chan *copResponse, 2), - cmdType: cmdType, - storeType: req.StoreType, - storeAddr: addr, + ranges: ranges, + respChan: make(chan *copResponse, 2), + cmdType: cmdType, + storeType: req.StoreType, + storeAddr: addr, + RowCountHint: -1, }) } return tasks, nil @@ -307,11 +361,37 @@ func reverseTasks(tasks []*copTask) { } } +func isSmallTask(task *copTask) bool { + // strictly, only RowCountHint == -1 stands for unknown task rows, + // but when RowCountHint == 0, it may be caused by initialized value, + // to avoid the future bugs, let the tasks with RowCountHint == 0 be non-small tasks. + return task.RowCountHint > 0 && task.RowCountHint <= CopSmallTaskRow +} + +// smallTaskConcurrency counts the small tasks of tasks, +// then returns the task count and extra concurrency for small tasks. +func smallTaskConcurrency(tasks []*copTask) (int, int) { + res := 0 + for _, task := range tasks { + if isSmallTask(task) { + res++ + } + } + if res == 0 { + return 0, 0 + } + // Calculate the extra concurrency for small tasks + // extra concurrency = tasks / (1 + sigma * sqrt(log(tasks ^ 2))) + extraConc := float64(res) / (1 + smallTaskSigma*math.Sqrt(2*math.Log(float64(res)))) + return res, int(extraConc) +} + type copIterator struct { - store *Store - req *kv.Request - concurrency int - finishCh chan struct{} + store *Store + req *kv.Request + concurrency int + smallTaskConcurrency int + finishCh chan struct{} // If keepOrder, results are stored in copTask.respChan, read them out one by one. tasks []*copTask @@ -366,12 +446,13 @@ type copIteratorWorker struct { // copIteratorTaskSender sends tasks to taskCh then wait for the workers to exit. type copIteratorTaskSender struct { - taskCh chan<- *copTask - wg *sync.WaitGroup - tasks []*copTask - finishCh <-chan struct{} - respChan chan<- *copResponse - sendRate *util.RateLimit + taskCh chan<- *copTask + smallTaskCh chan<- *copTask + wg *sync.WaitGroup + tasks []*copTask + finishCh <-chan struct{} + respChan chan<- *copResponse + sendRate *util.RateLimit } type copResponse struct { @@ -468,11 +549,18 @@ func (worker *copIteratorWorker) run(ctx context.Context) { // open starts workers and sender goroutines. func (it *copIterator) open(ctx context.Context, enabledRateLimitAction, enableCollectExecutionInfo bool) { taskCh := make(chan *copTask, 1) - it.wg.Add(it.concurrency) + smallTaskCh := make(chan *copTask, 1) + it.wg.Add(it.concurrency + it.smallTaskConcurrency) // Start it.concurrency number of workers to handle cop requests. - for i := 0; i < it.concurrency; i++ { + for i := 0; i < it.concurrency+it.smallTaskConcurrency; i++ { + var ch chan *copTask + if i < it.concurrency { + ch = taskCh + } else { + ch = smallTaskCh + } worker := &copIteratorWorker{ - taskCh: taskCh, + taskCh: ch, wg: &it.wg, store: it.store, req: it.req, @@ -488,11 +576,12 @@ func (it *copIterator) open(ctx context.Context, enabledRateLimitAction, enableC go worker.run(ctx) } taskSender := &copIteratorTaskSender{ - taskCh: taskCh, - wg: &it.wg, - tasks: it.tasks, - finishCh: it.finishCh, - sendRate: it.sendRate, + taskCh: taskCh, + smallTaskCh: smallTaskCh, + wg: &it.wg, + tasks: it.tasks, + finishCh: it.finishCh, + sendRate: it.sendRate, } taskSender.respChan = it.respChan it.actionOnExceed.setEnabled(enabledRateLimitAction) @@ -517,12 +606,19 @@ func (sender *copIteratorTaskSender) run() { if exit { break } - exit = sender.sendToTaskCh(t) + var sendTo chan<- *copTask + if isSmallTask(t) { + sendTo = sender.smallTaskCh + } else { + sendTo = sender.taskCh + } + exit = sender.sendToTaskCh(t, sendTo) if exit { break } } close(sender.taskCh) + close(sender.smallTaskCh) // Wait for worker goroutines to exit. sender.wg.Wait() @@ -569,9 +665,19 @@ func (it *copIterator) recvFromRespCh(ctx context.Context, respCh <-chan *copRes } } -func (sender *copIteratorTaskSender) sendToTaskCh(t *copTask) (exit bool) { +// GetConcurrency returns the concurrency and small task concurrency. +func (it *copIterator) GetConcurrency() (int, int) { + return it.concurrency, it.smallTaskConcurrency +} + +// GetSendRate returns the rate-limit object. +func (it *copIterator) GetSendRate() *util.RateLimit { + return it.sendRate +} + +func (sender *copIteratorTaskSender) sendToTaskCh(t *copTask, sendTo chan<- *copTask) (exit bool) { select { - case sender.taskCh <- t: + case sendTo <- t: case <-sender.finishCh: exit = true } @@ -1308,11 +1414,6 @@ func (e *rateLimitAction) Action(t *memory.Tracker) { }) } -// SetLogHook implements ActionOnExceed.SetLogHook -func (e *rateLimitAction) SetLogHook(hook func(uint64)) { - -} - // GetPriority get the priority of the Action. func (e *rateLimitAction) GetPriority() int64 { return memory.DefRateLimitPriority @@ -1394,3 +1495,15 @@ func isolationLevelToPB(level kv.IsoLevel) kvrpcpb.IsolationLevel { return kvrpcpb.IsolationLevel_SI } } + +// BuildKeyRanges is used for test, quickly build key ranges from paired keys. +func BuildKeyRanges(keys ...string) []kv.KeyRange { + var ranges []kv.KeyRange + for i := 0; i < len(keys); i += 2 { + ranges = append(ranges, kv.KeyRange{ + StartKey: []byte(keys[i]), + EndKey: []byte(keys[i+1]), + }) + } + return ranges +} diff --git a/store/copr/coprocessor_test.go b/store/copr/coprocessor_test.go index 6e75eeb0a7569..7790e8f7661fc 100644 --- a/store/copr/coprocessor_test.go +++ b/store/copr/coprocessor_test.go @@ -371,43 +371,43 @@ func TestSplitRegionRanges(t *testing.T) { bo := backoff.NewBackofferWithVars(context.Background(), 3000, nil) - ranges, err := cache.SplitRegionRanges(bo, buildKeyRanges("a", "c")) + ranges, err := cache.SplitRegionRanges(bo, BuildKeyRanges("a", "c")) require.NoError(t, err) require.Len(t, ranges, 1) rangeEqual(t, ranges, "a", "c") - ranges, err = cache.SplitRegionRanges(bo, buildKeyRanges("h", "y")) + ranges, err = cache.SplitRegionRanges(bo, BuildKeyRanges("h", "y")) require.NoError(t, err) require.Len(t, ranges, 3) rangeEqual(t, ranges, "h", "n", "n", "t", "t", "y") - ranges, err = cache.SplitRegionRanges(bo, buildKeyRanges("s", "z")) + ranges, err = cache.SplitRegionRanges(bo, BuildKeyRanges("s", "z")) require.NoError(t, err) require.Len(t, ranges, 2) rangeEqual(t, ranges, "s", "t", "t", "z") - ranges, err = cache.SplitRegionRanges(bo, buildKeyRanges("s", "s")) + ranges, err = cache.SplitRegionRanges(bo, BuildKeyRanges("s", "s")) require.NoError(t, err) require.Len(t, ranges, 1) rangeEqual(t, ranges, "s", "s") - ranges, err = cache.SplitRegionRanges(bo, buildKeyRanges("t", "t")) + ranges, err = cache.SplitRegionRanges(bo, BuildKeyRanges("t", "t")) require.NoError(t, err) require.Len(t, ranges, 1) rangeEqual(t, ranges, "t", "t") - ranges, err = cache.SplitRegionRanges(bo, buildKeyRanges("t", "u")) + ranges, err = cache.SplitRegionRanges(bo, BuildKeyRanges("t", "u")) require.NoError(t, err) require.Len(t, ranges, 1) rangeEqual(t, ranges, "t", "u") - ranges, err = cache.SplitRegionRanges(bo, buildKeyRanges("u", "z")) + ranges, err = cache.SplitRegionRanges(bo, BuildKeyRanges("u", "z")) require.NoError(t, err) require.Len(t, ranges, 1) rangeEqual(t, ranges, "u", "z") // min --> max - ranges, err = cache.SplitRegionRanges(bo, buildKeyRanges("a", "z")) + ranges, err = cache.SplitRegionRanges(bo, BuildKeyRanges("a", "z")) require.NoError(t, err) require.Len(t, ranges, 4) rangeEqual(t, ranges, "a", "g", "g", "n", "n", "t", "t", "z") @@ -454,19 +454,8 @@ func TestRebuild(t *testing.T) { taskEqual(t, tasks[0], regionIDs[2], 0, "q", "z") } -func buildKeyRanges(keys ...string) []kv.KeyRange { - var ranges []kv.KeyRange - for i := 0; i < len(keys); i += 2 { - ranges = append(ranges, kv.KeyRange{ - StartKey: []byte(keys[i]), - EndKey: []byte(keys[i+1]), - }) - } - return ranges -} - func buildCopRanges(keys ...string) *KeyRanges { - return NewKeyRanges(buildKeyRanges(keys...)) + return NewKeyRanges(BuildKeyRanges(keys...)) } func taskEqual(t *testing.T, task *copTask, regionID, bucketsVer uint64, keys ...string) { @@ -545,54 +534,54 @@ func TestCalculateRetry(t *testing.T) { // split in one range { - ranges := buildKeyRanges("a", "c", "e", "g") - split := buildKeyRanges("b", "c")[0] + ranges := BuildKeyRanges("a", "c", "e", "g") + split := BuildKeyRanges("b", "c")[0] retry := worker.calculateRetry(NewKeyRanges(ranges), toCopRange(split), false) rangeEqual(t, toRange(retry), "b", "c", "e", "g") } { - ranges := buildKeyRanges("a", "c", "e", "g") - split := buildKeyRanges("e", "f")[0] + ranges := BuildKeyRanges("a", "c", "e", "g") + split := BuildKeyRanges("e", "f")[0] retry := worker.calculateRetry(NewKeyRanges(ranges), toCopRange(split), true) rangeEqual(t, toRange(retry), "a", "c", "e", "f") } // across ranges { - ranges := buildKeyRanges("a", "c", "e", "g") - split := buildKeyRanges("b", "f")[0] + ranges := BuildKeyRanges("a", "c", "e", "g") + split := BuildKeyRanges("b", "f")[0] retry := worker.calculateRetry(NewKeyRanges(ranges), toCopRange(split), false) rangeEqual(t, toRange(retry), "b", "c", "e", "g") } { - ranges := buildKeyRanges("a", "c", "e", "g") - split := buildKeyRanges("b", "f")[0] + ranges := BuildKeyRanges("a", "c", "e", "g") + split := BuildKeyRanges("b", "f")[0] retry := worker.calculateRetry(NewKeyRanges(ranges), toCopRange(split), true) rangeEqual(t, toRange(retry), "a", "c", "e", "f") } // exhaust the ranges { - ranges := buildKeyRanges("a", "c", "e", "g") - split := buildKeyRanges("a", "g")[0] + ranges := BuildKeyRanges("a", "c", "e", "g") + split := BuildKeyRanges("a", "g")[0] retry := worker.calculateRetry(NewKeyRanges(ranges), toCopRange(split), false) rangeEqual(t, toRange(retry), "a", "c", "e", "g") } { - ranges := buildKeyRanges("a", "c", "e", "g") - split := buildKeyRanges("a", "g")[0] + ranges := BuildKeyRanges("a", "c", "e", "g") + split := BuildKeyRanges("a", "g")[0] retry := worker.calculateRetry(NewKeyRanges(ranges), toCopRange(split), true) rangeEqual(t, toRange(retry), "a", "c", "e", "g") } // nil range { - ranges := buildKeyRanges("a", "c", "e", "g") + ranges := BuildKeyRanges("a", "c", "e", "g") retry := worker.calculateRetry(NewKeyRanges(ranges), nil, false) rangeEqual(t, toRange(retry), "a", "c", "e", "g") } { - ranges := buildKeyRanges("a", "c", "e", "g") + ranges := BuildKeyRanges("a", "c", "e", "g") retry := worker.calculateRetry(NewKeyRanges(ranges), nil, true) rangeEqual(t, toRange(retry), "a", "c", "e", "g") } @@ -603,55 +592,129 @@ func TestCalculateRemain(t *testing.T) { // split in one range { - ranges := buildKeyRanges("a", "c", "e", "g") - split := buildKeyRanges("a", "b")[0] + ranges := BuildKeyRanges("a", "c", "e", "g") + split := BuildKeyRanges("a", "b")[0] remain := worker.calculateRemain(NewKeyRanges(ranges), toCopRange(split), false) rangeEqual(t, toRange(remain), "b", "c", "e", "g") } { - ranges := buildKeyRanges("a", "c", "e", "g") - split := buildKeyRanges("f", "g")[0] + ranges := BuildKeyRanges("a", "c", "e", "g") + split := BuildKeyRanges("f", "g")[0] remain := worker.calculateRemain(NewKeyRanges(ranges), toCopRange(split), true) rangeEqual(t, toRange(remain), "a", "c", "e", "f") } // across ranges { - ranges := buildKeyRanges("a", "c", "e", "g") - split := buildKeyRanges("a", "f")[0] + ranges := BuildKeyRanges("a", "c", "e", "g") + split := BuildKeyRanges("a", "f")[0] remain := worker.calculateRemain(NewKeyRanges(ranges), toCopRange(split), false) rangeEqual(t, toRange(remain), "f", "g") } { - ranges := buildKeyRanges("a", "c", "e", "g") - split := buildKeyRanges("b", "g")[0] + ranges := BuildKeyRanges("a", "c", "e", "g") + split := BuildKeyRanges("b", "g")[0] remain := worker.calculateRemain(NewKeyRanges(ranges), toCopRange(split), true) rangeEqual(t, toRange(remain), "a", "b") } // exhaust the ranges { - ranges := buildKeyRanges("a", "c", "e", "g") - split := buildKeyRanges("a", "g")[0] + ranges := BuildKeyRanges("a", "c", "e", "g") + split := BuildKeyRanges("a", "g")[0] remain := worker.calculateRemain(NewKeyRanges(ranges), toCopRange(split), false) require.Equal(t, remain.Len(), 0) } { - ranges := buildKeyRanges("a", "c", "e", "g") - split := buildKeyRanges("a", "g")[0] + ranges := BuildKeyRanges("a", "c", "e", "g") + split := BuildKeyRanges("a", "g")[0] remain := worker.calculateRemain(NewKeyRanges(ranges), toCopRange(split), true) require.Equal(t, remain.Len(), 0) } // nil range { - ranges := buildKeyRanges("a", "c", "e", "g") + ranges := BuildKeyRanges("a", "c", "e", "g") remain := worker.calculateRemain(NewKeyRanges(ranges), nil, false) rangeEqual(t, toRange(remain), "a", "c", "e", "g") } { - ranges := buildKeyRanges("a", "c", "e", "g") + ranges := BuildKeyRanges("a", "c", "e", "g") remain := worker.calculateRemain(NewKeyRanges(ranges), nil, true) rangeEqual(t, toRange(remain), "a", "c", "e", "g") } } + +func TestBasicSmallTaskConc(t *testing.T) { + require.False(t, isSmallTask(&copTask{RowCountHint: -1})) + require.False(t, isSmallTask(&copTask{RowCountHint: 0})) + require.True(t, isSmallTask(&copTask{RowCountHint: 1})) + require.True(t, isSmallTask(&copTask{RowCountHint: 6})) + require.True(t, isSmallTask(&copTask{RowCountHint: CopSmallTaskRow})) + require.False(t, isSmallTask(&copTask{RowCountHint: CopSmallTaskRow + 1})) + _, conc := smallTaskConcurrency([]*copTask{}) + require.GreaterOrEqual(t, conc, 0) +} + +func TestBuildCopTasksWithRowCountHint(t *testing.T) { + // nil --- 'g' --- 'n' --- 't' --- nil + // <- 0 -> <- 1 -> <- 2 -> <- 3 -> + mockClient, cluster, pdClient, err := testutils.NewMockTiKV("", nil) + require.NoError(t, err) + defer func() { + pdClient.Close() + err = mockClient.Close() + require.NoError(t, err) + }() + _, _, _ = testutils.BootstrapWithMultiRegions(cluster, []byte("g"), []byte("n"), []byte("t")) + pdCli := &tikv.CodecPDClient{Client: pdClient} + defer pdCli.Close() + cache := NewRegionCache(tikv.NewRegionCache(pdCli)) + defer cache.Close() + + bo := backoff.NewBackofferWithVars(context.Background(), 3000, nil) + req := &kv.Request{} + req.FixedRowCountHint = []int{1, 1, 3, CopSmallTaskRow} + tasks, err := buildCopTasks(bo, cache, buildCopRanges("a", "c", "d", "e", "h", "x", "y", "z"), req, nil) + require.Nil(t, err) + require.Equal(t, len(tasks), 4) + // task[0] ["a"-"c", "d"-"e"] + require.Equal(t, tasks[0].RowCountHint, 2) + // task[1] ["h"-"n"] + require.Equal(t, tasks[1].RowCountHint, 3) + // task[2] ["n"-"t"] + require.Equal(t, tasks[2].RowCountHint, 3) + // task[3] ["t"-"x", "y"-"z"] + require.Equal(t, tasks[3].RowCountHint, 3+CopSmallTaskRow) + _, conc := smallTaskConcurrency(tasks) + require.Equal(t, conc, 1) + + req.FixedRowCountHint = []int{1, 1, 3, 3} + tasks, err = buildCopTasks(bo, cache, buildCopRanges("a", "c", "d", "e", "h", "x", "y", "z"), req, nil) + require.Nil(t, err) + require.Equal(t, len(tasks), 4) + // task[0] ["a"-"c", "d"-"e"] + require.Equal(t, tasks[0].RowCountHint, 2) + // task[1] ["h"-"n"] + require.Equal(t, tasks[1].RowCountHint, 3) + // task[2] ["n"-"t"] + require.Equal(t, tasks[2].RowCountHint, 3) + // task[3] ["t"-"x", "y"-"z"] + require.Equal(t, tasks[3].RowCountHint, 6) + _, conc = smallTaskConcurrency(tasks) + require.Equal(t, conc, 2) + + // cross-region long range + req.FixedRowCountHint = []int{10} + tasks, err = buildCopTasks(bo, cache, buildCopRanges("a", "z"), req, nil) + require.Nil(t, err) + require.Equal(t, len(tasks), 4) + // task[0] ["a"-"g"] + require.Equal(t, tasks[0].RowCountHint, 10) + // task[1] ["g"-"n"] + require.Equal(t, tasks[1].RowCountHint, 10) + // task[2] ["n"-"t"] + require.Equal(t, tasks[2].RowCountHint, 10) + // task[3] ["t"-"z"] + require.Equal(t, tasks[3].RowCountHint, 10) +} diff --git a/store/copr/main_test.go b/store/copr/main_test.go index 9e9e2a02410e4..456b51156c8be 100644 --- a/store/copr/main_test.go +++ b/store/copr/main_test.go @@ -38,6 +38,7 @@ func TestMain(m *testing.M) { opts := []goleak.Option{ goleak.IgnoreTopFunction("github.com/pingcap/goleveldb/leveldb.(*DB).mpoolDrain"), goleak.IgnoreTopFunction("github.com/golang/glog.(*loggingT).flushDaemon"), + goleak.IgnoreTopFunction("github.com/lestrrat-go/httprc.runFetchWorker"), goleak.IgnoreTopFunction("go.etcd.io/etcd/client/pkg/v3/logutil.(*MergeLogger).outputLoop"), goleak.IgnoreTopFunction("go.opencensus.io/stats/view.(*worker).start"), } diff --git a/store/driver/error/error_test.go b/store/driver/error/error_test.go index dde341e8da4f1..f1f2878fb7743 100644 --- a/store/driver/error/error_test.go +++ b/store/driver/error/error_test.go @@ -29,6 +29,7 @@ func TestMain(m *testing.M) { testsetup.SetupForCommonTest() opts := []goleak.Option{ goleak.IgnoreTopFunction("github.com/golang/glog.(*loggingT).flushDaemon"), + goleak.IgnoreTopFunction("github.com/lestrrat-go/httprc.runFetchWorker"), goleak.IgnoreTopFunction("go.etcd.io/etcd/client/pkg/v3/logutil.(*MergeLogger).outputLoop"), goleak.IgnoreTopFunction("go.opencensus.io/stats/view.(*worker).start"), } diff --git a/store/driver/main_test.go b/store/driver/main_test.go index 0b4cc12bbe62f..e0c805a52a952 100644 --- a/store/driver/main_test.go +++ b/store/driver/main_test.go @@ -41,6 +41,7 @@ func TestMain(m *testing.M) { tikv.EnableFailpoints() opts := []goleak.Option{ goleak.IgnoreTopFunction("github.com/golang/glog.(*loggingT).flushDaemon"), + goleak.IgnoreTopFunction("github.com/lestrrat-go/httprc.runFetchWorker"), goleak.IgnoreTopFunction("go.etcd.io/etcd/client/pkg/v3/logutil.(*MergeLogger).outputLoop"), goleak.IgnoreTopFunction("go.opencensus.io/stats/view.(*worker).start"), } diff --git a/store/driver/txn/error.go b/store/driver/txn/error.go index 8340459f3e64c..5ff5f0c776309 100644 --- a/store/driver/txn/error.go +++ b/store/driver/txn/error.go @@ -46,7 +46,7 @@ func genKeyExistsError(name string, value string, err error) error { } func extractKeyExistsErrFromHandle(key kv.Key, value []byte, tblInfo *model.TableInfo) error { - const name = "PRIMARY" + name := tblInfo.Name.String() + ".PRIMARY" _, handle, err := tablecodec.DecodeRecordKey(key) if err != nil { return genKeyExistsError(name, key.String(), err) @@ -115,7 +115,7 @@ func extractKeyExistsErrFromIndex(key kv.Key, value []byte, tblInfo *model.Table if idxInfo == nil { return genKeyExistsError("UNKNOWN", key.String(), errors.New("cannot find index info")) } - name := idxInfo.Name.String() + name := tblInfo.Name.String() + "." + idxInfo.Name.String() if len(value) == 0 { return genKeyExistsError(name, key.String(), errors.New("missing value")) diff --git a/store/driver/txn/main_test.go b/store/driver/txn/main_test.go index ad777bb5af019..7c5fb240d8958 100644 --- a/store/driver/txn/main_test.go +++ b/store/driver/txn/main_test.go @@ -25,6 +25,7 @@ func TestMain(m *testing.M) { testsetup.SetupForCommonTest() opts := []goleak.Option{ goleak.IgnoreTopFunction("github.com/golang/glog.(*loggingT).flushDaemon"), + goleak.IgnoreTopFunction("github.com/lestrrat-go/httprc.runFetchWorker"), goleak.IgnoreTopFunction("go.etcd.io/etcd/client/pkg/v3/logutil.(*MergeLogger).outputLoop"), goleak.IgnoreTopFunction("go.opencensus.io/stats/view.(*worker).start"), } diff --git a/store/gcworker/gc_worker_test.go b/store/gcworker/gc_worker_test.go index 8d9ae4c9ae377..4fde3dd44cd12 100644 --- a/store/gcworker/gc_worker_test.go +++ b/store/gcworker/gc_worker_test.go @@ -1117,6 +1117,11 @@ func TestRunGCJob(t *testing.T) { pdSafePoint := s.mustGetSafePointFromPd(t) require.Equal(t, safePoint, pdSafePoint) + require.NoError(t, s.gcWorker.saveTime(gcSafePointKey, oracle.GetTimeFromTS(safePoint))) + tikvSafePoint, err := s.gcWorker.loadTime(gcSafePointKey) + require.NoError(t, err) + require.Equal(t, *tikvSafePoint, oracle.GetTimeFromTS(safePoint)) + etcdSafePoint := s.loadEtcdSafePoint(t) require.Equal(t, safePoint, etcdSafePoint) diff --git a/store/gcworker/main_test.go b/store/gcworker/main_test.go index 4451f16783160..df72adb3a8f27 100644 --- a/store/gcworker/main_test.go +++ b/store/gcworker/main_test.go @@ -31,6 +31,7 @@ func TestMain(m *testing.M) { goleak.IgnoreTopFunction("go.etcd.io/etcd/client/pkg/v3/logutil.(*MergeLogger).outputLoop"), goleak.IgnoreTopFunction("go.opencensus.io/stats/view.(*worker).start"), goleak.IgnoreTopFunction("github.com/golang/glog.(*loggingT).flushDaemon"), + goleak.IgnoreTopFunction("github.com/lestrrat-go/httprc.runFetchWorker"), } callback := func(i int) int { // wait for MVCCLevelDB to close, MVCCLevelDB will be closed in one second diff --git a/store/helper/helper.go b/store/helper/helper.go index 995cf0b5fe675..f24443433e724 100644 --- a/store/helper/helper.go +++ b/store/helper/helper.go @@ -1152,39 +1152,6 @@ func (h *Helper) PostAccelerateSchedule(tableID int64) error { return nil } -// GetPDRegionRecordStats is a helper function calling `/stats/region`. -func (h *Helper) GetPDRegionRecordStats(tableID int64, stats *PDRegionStats) error { - pdAddrs, err := h.GetPDAddr() - if err != nil { - return errors.Trace(err) - } - - startKey := tablecodec.GenTableRecordPrefix(tableID) - endKey := tablecodec.EncodeTablePrefix(tableID + 1) - startKey = codec.EncodeBytes([]byte{}, startKey) - endKey = codec.EncodeBytes([]byte{}, endKey) - - statURL := fmt.Sprintf("%s://%s/pd/api/v1/stats/region?start_key=%s&end_key=%s", - util.InternalHTTPSchema(), - pdAddrs[0], - url.QueryEscape(string(startKey)), - url.QueryEscape(string(endKey))) - - resp, err := util.InternalHTTPClient().Get(statURL) - if err != nil { - return errors.Trace(err) - } - defer func() { - if err = resp.Body.Close(); err != nil { - logutil.BgLogger().Error("err", zap.Error(err)) - } - }() - - dec := json.NewDecoder(resp.Body) - - return dec.Decode(stats) -} - // GetTiFlashTableIDFromEndKey computes tableID from pd rule's endKey. func GetTiFlashTableIDFromEndKey(endKey string) int64 { e, _ := hex.DecodeString(endKey) diff --git a/store/helper/main_test.go b/store/helper/main_test.go index e459f147efedb..3937580027775 100644 --- a/store/helper/main_test.go +++ b/store/helper/main_test.go @@ -25,7 +25,9 @@ func TestMain(m *testing.M) { testsetup.SetupForCommonTest() opts := []goleak.Option{ goleak.IgnoreTopFunction("github.com/golang/glog.(*loggingT).flushDaemon"), + goleak.IgnoreTopFunction("github.com/lestrrat-go/httprc.runFetchWorker"), goleak.IgnoreTopFunction("go.etcd.io/etcd/client/pkg/v3/logutil.(*MergeLogger).outputLoop"), + goleak.IgnoreTopFunction("go.opencensus.io/stats/view.(*worker).start"), } goleak.VerifyTestMain(m, opts...) } diff --git a/store/main_test.go b/store/main_test.go index 3c4d13ad381b8..4d0820e80c89b 100644 --- a/store/main_test.go +++ b/store/main_test.go @@ -25,6 +25,7 @@ func TestMain(m *testing.M) { testsetup.SetupForCommonTest() opts := []goleak.Option{ goleak.IgnoreTopFunction("github.com/golang/glog.(*loggingT).flushDaemon"), + goleak.IgnoreTopFunction("github.com/lestrrat-go/httprc.runFetchWorker"), goleak.IgnoreTopFunction("go.etcd.io/etcd/client/pkg/v3/logutil.(*MergeLogger).outputLoop"), goleak.IgnoreTopFunction("go.opencensus.io/stats/view.(*worker).start"), } diff --git a/store/mockstore/main_test.go b/store/mockstore/main_test.go index daf0e059f2572..aa9718295ad04 100644 --- a/store/mockstore/main_test.go +++ b/store/mockstore/main_test.go @@ -32,6 +32,7 @@ func TestMain(m *testing.M) { } opts := []goleak.Option{ goleak.IgnoreTopFunction("github.com/golang/glog.(*loggingT).flushDaemon"), + goleak.IgnoreTopFunction("github.com/lestrrat-go/httprc.runFetchWorker"), goleak.IgnoreTopFunction("go.etcd.io/etcd/client/pkg/v3/logutil.(*MergeLogger).outputLoop"), goleak.IgnoreTopFunction("go.opencensus.io/stats/view.(*worker).start"), } diff --git a/store/mockstore/mockcopr/main_test.go b/store/mockstore/mockcopr/main_test.go index fa7a0a1e97df9..279862588c465 100644 --- a/store/mockstore/mockcopr/main_test.go +++ b/store/mockstore/mockcopr/main_test.go @@ -27,6 +27,7 @@ func TestMain(m *testing.M) { testsetup.SetupForCommonTest() opts := []goleak.Option{ goleak.IgnoreTopFunction("github.com/golang/glog.(*loggingT).flushDaemon"), + goleak.IgnoreTopFunction("github.com/lestrrat-go/httprc.runFetchWorker"), goleak.IgnoreTopFunction("go.etcd.io/etcd/client/pkg/v3/logutil.(*MergeLogger).outputLoop"), goleak.IgnoreTopFunction("go.opencensus.io/stats/view.(*worker).start"), } diff --git a/store/mockstore/unistore/cophandler/main_test.go b/store/mockstore/unistore/cophandler/main_test.go index 0cd6c13b8cba0..5dbab5fb93a5b 100644 --- a/store/mockstore/unistore/cophandler/main_test.go +++ b/store/mockstore/unistore/cophandler/main_test.go @@ -25,6 +25,7 @@ func TestMain(m *testing.M) { testsetup.SetupForCommonTest() opts := []goleak.Option{ goleak.IgnoreTopFunction("github.com/golang/glog.(*loggingT).flushDaemon"), + goleak.IgnoreTopFunction("github.com/lestrrat-go/httprc.runFetchWorker"), goleak.IgnoreTopFunction("go.etcd.io/etcd/client/pkg/v3/logutil.(*MergeLogger).outputLoop"), goleak.IgnoreTopFunction("go.opencensus.io/stats/view.(*worker).start"), } diff --git a/store/mockstore/unistore/lockstore/main_test.go b/store/mockstore/unistore/lockstore/main_test.go index bc28743788d54..09e8ebf061f44 100644 --- a/store/mockstore/unistore/lockstore/main_test.go +++ b/store/mockstore/unistore/lockstore/main_test.go @@ -25,6 +25,7 @@ func TestMain(m *testing.M) { testsetup.SetupForCommonTest() opts := []goleak.Option{ goleak.IgnoreTopFunction("github.com/golang/glog.(*loggingT).flushDaemon"), + goleak.IgnoreTopFunction("github.com/lestrrat-go/httprc.runFetchWorker"), goleak.IgnoreTopFunction("go.etcd.io/etcd/client/pkg/v3/logutil.(*MergeLogger).outputLoop"), goleak.IgnoreTopFunction("go.opencensus.io/stats/view.(*worker).start"), } diff --git a/store/mockstore/unistore/main_test.go b/store/mockstore/unistore/main_test.go index b69415466734e..a2bcc6e1531f9 100644 --- a/store/mockstore/unistore/main_test.go +++ b/store/mockstore/unistore/main_test.go @@ -25,6 +25,7 @@ func TestMain(m *testing.M) { testsetup.SetupForCommonTest() opts := []goleak.Option{ goleak.IgnoreTopFunction("github.com/golang/glog.(*loggingT).flushDaemon"), + goleak.IgnoreTopFunction("github.com/lestrrat-go/httprc.runFetchWorker"), goleak.IgnoreTopFunction("go.etcd.io/etcd/client/pkg/v3/logutil.(*MergeLogger).outputLoop"), goleak.IgnoreTopFunction("go.opencensus.io/stats/view.(*worker).start"), } diff --git a/store/mockstore/unistore/tikv/main_test.go b/store/mockstore/unistore/tikv/main_test.go index 07b836d7fd874..6b242bcddf291 100644 --- a/store/mockstore/unistore/tikv/main_test.go +++ b/store/mockstore/unistore/tikv/main_test.go @@ -25,6 +25,7 @@ func TestMain(m *testing.M) { testsetup.SetupForCommonTest() opts := []goleak.Option{ goleak.IgnoreTopFunction("github.com/golang/glog.(*loggingT).flushDaemon"), + goleak.IgnoreTopFunction("github.com/lestrrat-go/httprc.runFetchWorker"), goleak.IgnoreTopFunction("go.etcd.io/etcd/client/pkg/v3/logutil.(*MergeLogger).outputLoop"), goleak.IgnoreTopFunction("go.opencensus.io/stats/view.(*worker).start"), } diff --git a/store/mockstore/unistore/tikv/mock_region.go b/store/mockstore/unistore/tikv/mock_region.go index efbd48bb612b3..2e3e4fa01ddb1 100644 --- a/store/mockstore/unistore/tikv/mock_region.go +++ b/store/mockstore/unistore/tikv/mock_region.go @@ -36,6 +36,7 @@ import ( "github.com/pingcap/tidb/store/mockstore/unistore/tikv/mvcc" "github.com/pingcap/tidb/tablecodec" "github.com/pingcap/tidb/util/codec" + "github.com/tikv/client-go/v2/oracle" pdclient "github.com/tikv/pd/client" "golang.org/x/exp/slices" ) @@ -670,6 +671,8 @@ func (rm *MockRegionManager) AddPeer(regionID, storeID, peerID uint64) { type MockPD struct { rm *MockRegionManager gcSafePoint uint64 + + externalTimestamp atomic.Uint64 } // NewMockPD returns a new MockPD. @@ -784,6 +787,30 @@ func (pd *MockPD) UpdateGCSafePoint(ctx context.Context, safePoint uint64) (uint // StoreHeartbeat stores the heartbeat. func (pd *MockPD) StoreHeartbeat(ctx context.Context, stats *pdpb.StoreStats) error { return nil } +// GetExternalTimestamp returns external timestamp +func (pd *MockPD) GetExternalTimestamp(ctx context.Context) (uint64, error) { + return pd.externalTimestamp.Load(), nil +} + +// SetExternalTimestamp sets external timestamp +func (pd *MockPD) SetExternalTimestamp(ctx context.Context, newTimestamp uint64) error { + p, l := GetTS() + currentTSO := oracle.ComposeTS(p, l) + if newTimestamp > currentTSO { + return errors.New("external timestamp is greater than global tso") + } + for { + externalTimestamp := pd.externalTimestamp.Load() + if externalTimestamp > newTimestamp { + return errors.New("cannot decrease the external timestamp") + } + + if pd.externalTimestamp.CompareAndSwap(externalTimestamp, newTimestamp) { + return nil + } + } +} + // Use global variables to prevent pdClients from creating duplicate timestamps. var tsMu = struct { sync.Mutex diff --git a/store/mockstore/unistore/tikv/server.go b/store/mockstore/unistore/tikv/server.go index 14260ab991e94..f7779b51a8d69 100644 --- a/store/mockstore/unistore/tikv/server.go +++ b/store/mockstore/unistore/tikv/server.go @@ -158,7 +158,7 @@ func (req *requestCtx) finish() { } } -// KvGet implements implements the tikvpb.TikvServer interface. +// KvGet implements the tikvpb.TikvServer interface. func (svr *Server) KvGet(ctx context.Context, req *kvrpcpb.GetRequest) (*kvrpcpb.GetResponse, error) { reqCtx, err := newRequestCtx(svr, req.Context, "KvGet") if err != nil { @@ -175,7 +175,7 @@ func (svr *Server) KvGet(ctx context.Context, req *kvrpcpb.GetRequest) (*kvrpcpb }, nil } -// KvScan implements implements the tikvpb.TikvServer interface. +// KvScan implements the tikvpb.TikvServer interface. func (svr *Server) KvScan(ctx context.Context, req *kvrpcpb.ScanRequest) (*kvrpcpb.ScanResponse, error) { reqCtx, err := newRequestCtx(svr, req.Context, "KvScan") if err != nil { @@ -191,7 +191,7 @@ func (svr *Server) KvScan(ctx context.Context, req *kvrpcpb.ScanRequest) (*kvrpc }, nil } -// KvPessimisticLock implements implements the tikvpb.TikvServer interface. +// KvPessimisticLock implements the tikvpb.TikvServer interface. func (svr *Server) KvPessimisticLock(ctx context.Context, req *kvrpcpb.PessimisticLockRequest) (*kvrpcpb.PessimisticLockResponse, error) { reqCtx, err := newRequestCtx(svr, req.Context, "PessimisticLock") if err != nil { @@ -252,7 +252,7 @@ func (svr *Server) KvPessimisticLock(ctx context.Context, req *kvrpcpb.Pessimist return resp, nil } -// KVPessimisticRollback implements implements the tikvpb.TikvServer interface. +// KVPessimisticRollback implements the tikvpb.TikvServer interface. func (svr *Server) KVPessimisticRollback(ctx context.Context, req *kvrpcpb.PessimisticRollbackRequest) (*kvrpcpb.PessimisticRollbackResponse, error) { reqCtx, err := newRequestCtx(svr, req.Context, "PessimisticRollback") if err != nil { @@ -268,7 +268,7 @@ func (svr *Server) KVPessimisticRollback(ctx context.Context, req *kvrpcpb.Pessi return resp, nil } -// KvTxnHeartBeat implements implements the tikvpb.TikvServer interface. +// KvTxnHeartBeat implements the tikvpb.TikvServer interface. func (svr *Server) KvTxnHeartBeat(ctx context.Context, req *kvrpcpb.TxnHeartBeatRequest) (*kvrpcpb.TxnHeartBeatResponse, error) { reqCtx, err := newRequestCtx(svr, req.Context, "TxnHeartBeat") if err != nil { @@ -284,7 +284,7 @@ func (svr *Server) KvTxnHeartBeat(ctx context.Context, req *kvrpcpb.TxnHeartBeat return resp, nil } -// KvCheckTxnStatus implements implements the tikvpb.TikvServer interface. +// KvCheckTxnStatus implements the tikvpb.TikvServer interface. func (svr *Server) KvCheckTxnStatus(ctx context.Context, req *kvrpcpb.CheckTxnStatusRequest) (*kvrpcpb.CheckTxnStatusResponse, error) { reqCtx, err := newRequestCtx(svr, req.Context, "KvCheckTxnStatus") if err != nil { @@ -309,7 +309,7 @@ func (svr *Server) KvCheckTxnStatus(ctx context.Context, req *kvrpcpb.CheckTxnSt return resp, nil } -// KvCheckSecondaryLocks implements implements the tikvpb.TikvServer interface. +// KvCheckSecondaryLocks implements the tikvpb.TikvServer interface. func (svr *Server) KvCheckSecondaryLocks(ctx context.Context, req *kvrpcpb.CheckSecondaryLocksRequest) (*kvrpcpb.CheckSecondaryLocksResponse, error) { reqCtx, err := newRequestCtx(svr, req.Context, "KvCheckSecondaryLocks") if err != nil { @@ -330,7 +330,7 @@ func (svr *Server) KvCheckSecondaryLocks(ctx context.Context, req *kvrpcpb.Check return resp, nil } -// KvPrewrite implements implements the tikvpb.TikvServer interface. +// KvPrewrite implements the tikvpb.TikvServer interface. func (svr *Server) KvPrewrite(ctx context.Context, req *kvrpcpb.PrewriteRequest) (*kvrpcpb.PrewriteResponse, error) { reqCtx, err := newRequestCtx(svr, req.Context, "KvPrewrite") if err != nil { @@ -352,7 +352,7 @@ func (svr *Server) KvPrewrite(ctx context.Context, req *kvrpcpb.PrewriteRequest) return resp, nil } -// KvCommit implements implements the tikvpb.TikvServer interface. +// KvCommit implements the tikvpb.TikvServer interface. func (svr *Server) KvCommit(ctx context.Context, req *kvrpcpb.CommitRequest) (*kvrpcpb.CommitResponse, error) { reqCtx, err := newRequestCtx(svr, req.Context, "KvCommit") if err != nil { @@ -370,19 +370,19 @@ func (svr *Server) KvCommit(ctx context.Context, req *kvrpcpb.CommitRequest) (*k return resp, nil } -// RawGetKeyTTL implements implements the tikvpb.TikvServer interface. +// RawGetKeyTTL implements the tikvpb.TikvServer interface. func (svr *Server) RawGetKeyTTL(ctx context.Context, req *kvrpcpb.RawGetKeyTTLRequest) (*kvrpcpb.RawGetKeyTTLResponse, error) { // TODO return &kvrpcpb.RawGetKeyTTLResponse{}, nil } -// KvImport implements implements the tikvpb.TikvServer interface. +// KvImport implements the tikvpb.TikvServer interface. func (svr *Server) KvImport(context.Context, *kvrpcpb.ImportRequest) (*kvrpcpb.ImportResponse, error) { // TODO return &kvrpcpb.ImportResponse{}, nil } -// KvCleanup implements implements the tikvpb.TikvServer interface. +// KvCleanup implements the tikvpb.TikvServer interface. func (svr *Server) KvCleanup(ctx context.Context, req *kvrpcpb.CleanupRequest) (*kvrpcpb.CleanupResponse, error) { reqCtx, err := newRequestCtx(svr, req.Context, "KvCleanup") if err != nil { @@ -403,7 +403,7 @@ func (svr *Server) KvCleanup(ctx context.Context, req *kvrpcpb.CleanupRequest) ( return resp, nil } -// KvBatchGet implements implements the tikvpb.TikvServer interface. +// KvBatchGet implements the tikvpb.TikvServer interface. func (svr *Server) KvBatchGet(ctx context.Context, req *kvrpcpb.BatchGetRequest) (*kvrpcpb.BatchGetResponse, error) { reqCtx, err := newRequestCtx(svr, req.Context, "KvBatchGet") if err != nil { @@ -419,7 +419,7 @@ func (svr *Server) KvBatchGet(ctx context.Context, req *kvrpcpb.BatchGetRequest) }, nil } -// KvBatchRollback implements implements the tikvpb.TikvServer interface. +// KvBatchRollback implements the tikvpb.TikvServer interface. func (svr *Server) KvBatchRollback(ctx context.Context, req *kvrpcpb.BatchRollbackRequest) (*kvrpcpb.BatchRollbackResponse, error) { reqCtx, err := newRequestCtx(svr, req.Context, "KvBatchRollback") if err != nil { @@ -435,7 +435,7 @@ func (svr *Server) KvBatchRollback(ctx context.Context, req *kvrpcpb.BatchRollba return resp, nil } -// KvScanLock implements implements the tikvpb.TikvServer interface. +// KvScanLock implements the tikvpb.TikvServer interface. func (svr *Server) KvScanLock(ctx context.Context, req *kvrpcpb.ScanLockRequest) (*kvrpcpb.ScanLockResponse, error) { reqCtx, err := newRequestCtx(svr, req.Context, "KvScanLock") if err != nil { @@ -450,7 +450,7 @@ func (svr *Server) KvScanLock(ctx context.Context, req *kvrpcpb.ScanLockRequest) return &kvrpcpb.ScanLockResponse{Error: convertToKeyError(err), Locks: locks}, nil } -// KvResolveLock implements implements the tikvpb.TikvServer interface. +// KvResolveLock implements the tikvpb.TikvServer interface. func (svr *Server) KvResolveLock(ctx context.Context, req *kvrpcpb.ResolveLockRequest) (*kvrpcpb.ResolveLockResponse, error) { reqCtx, err := newRequestCtx(svr, req.Context, "KvResolveLock") if err != nil { @@ -478,7 +478,7 @@ func (svr *Server) KvResolveLock(ctx context.Context, req *kvrpcpb.ResolveLockRe return resp, nil } -// KvGC implements implements the tikvpb.TikvServer interface. +// KvGC implements the tikvpb.TikvServer interface. func (svr *Server) KvGC(ctx context.Context, req *kvrpcpb.GCRequest) (*kvrpcpb.GCResponse, error) { reqCtx, err := newRequestCtx(svr, req.Context, "KvGC") if err != nil { @@ -489,7 +489,7 @@ func (svr *Server) KvGC(ctx context.Context, req *kvrpcpb.GCRequest) (*kvrpcpb.G return &kvrpcpb.GCResponse{}, nil } -// KvDeleteRange implements implements the tikvpb.TikvServer interface. +// KvDeleteRange implements the tikvpb.TikvServer interface. func (svr *Server) KvDeleteRange(ctx context.Context, req *kvrpcpb.DeleteRangeRequest) (*kvrpcpb.DeleteRangeResponse, error) { reqCtx, err := newRequestCtx(svr, req.Context, "KvDeleteRange") if err != nil { @@ -508,54 +508,54 @@ func (svr *Server) KvDeleteRange(ctx context.Context, req *kvrpcpb.DeleteRangeRe // RawKV commands. -// RawGet implements implements the tikvpb.TikvServer interface. +// RawGet implements the tikvpb.TikvServer interface. func (svr *Server) RawGet(context.Context, *kvrpcpb.RawGetRequest) (*kvrpcpb.RawGetResponse, error) { return &kvrpcpb.RawGetResponse{}, nil } -// RawPut implements implements the tikvpb.TikvServer interface. +// RawPut implements the tikvpb.TikvServer interface. func (svr *Server) RawPut(context.Context, *kvrpcpb.RawPutRequest) (*kvrpcpb.RawPutResponse, error) { return &kvrpcpb.RawPutResponse{}, nil } -// RawDelete implements implements the tikvpb.TikvServer interface. +// RawDelete implements the tikvpb.TikvServer interface. func (svr *Server) RawDelete(context.Context, *kvrpcpb.RawDeleteRequest) (*kvrpcpb.RawDeleteResponse, error) { return &kvrpcpb.RawDeleteResponse{}, nil } -// RawScan implements implements the tikvpb.TikvServer interface. +// RawScan implements the tikvpb.TikvServer interface. func (svr *Server) RawScan(context.Context, *kvrpcpb.RawScanRequest) (*kvrpcpb.RawScanResponse, error) { return &kvrpcpb.RawScanResponse{}, nil } -// RawBatchDelete implements implements the tikvpb.TikvServer interface. +// RawBatchDelete implements the tikvpb.TikvServer interface. func (svr *Server) RawBatchDelete(context.Context, *kvrpcpb.RawBatchDeleteRequest) (*kvrpcpb.RawBatchDeleteResponse, error) { return &kvrpcpb.RawBatchDeleteResponse{}, nil } -// RawBatchGet implements implements the tikvpb.TikvServer interface. +// RawBatchGet implements the tikvpb.TikvServer interface. func (svr *Server) RawBatchGet(context.Context, *kvrpcpb.RawBatchGetRequest) (*kvrpcpb.RawBatchGetResponse, error) { return &kvrpcpb.RawBatchGetResponse{}, nil } -// RawBatchPut implements implements the tikvpb.TikvServer interface. +// RawBatchPut implements the tikvpb.TikvServer interface. func (svr *Server) RawBatchPut(context.Context, *kvrpcpb.RawBatchPutRequest) (*kvrpcpb.RawBatchPutResponse, error) { return &kvrpcpb.RawBatchPutResponse{}, nil } -// RawBatchScan implements implements the tikvpb.TikvServer interface. +// RawBatchScan implements the tikvpb.TikvServer interface. func (svr *Server) RawBatchScan(context.Context, *kvrpcpb.RawBatchScanRequest) (*kvrpcpb.RawBatchScanResponse, error) { return &kvrpcpb.RawBatchScanResponse{}, nil } -// RawDeleteRange implements implements the tikvpb.TikvServer interface. +// RawDeleteRange implements the tikvpb.TikvServer interface. func (svr *Server) RawDeleteRange(context.Context, *kvrpcpb.RawDeleteRangeRequest) (*kvrpcpb.RawDeleteRangeResponse, error) { return &kvrpcpb.RawDeleteRangeResponse{}, nil } // SQL push down commands. -// Coprocessor implements implements the tikvpb.TikvServer interface. +// Coprocessor implements the tikvpb.TikvServer interface. func (svr *Server) Coprocessor(_ context.Context, req *coprocessor.Request) (*coprocessor.Response, error) { reqCtx, err := newRequestCtx(svr, req.Context, "Coprocessor") if err != nil { @@ -568,7 +568,7 @@ func (svr *Server) Coprocessor(_ context.Context, req *coprocessor.Request) (*co return cophandler.HandleCopRequest(reqCtx.getDBReader(), svr.mvccStore.lockStore, req), nil } -// CoprocessorStream implements implements the tikvpb.TikvServer interface. +// CoprocessorStream implements the tikvpb.TikvServer interface. func (svr *Server) CoprocessorStream(*coprocessor.Request, tikvpb.Tikv_CoprocessorStreamServer) error { // TODO return nil @@ -584,7 +584,7 @@ func (regionError *RegionError) Error() string { return regionError.err.Message } -// BatchCoprocessor implements implements the tikvpb.TikvServer interface. +// BatchCoprocessor implements the tikvpb.TikvServer interface. func (svr *Server) BatchCoprocessor(req *coprocessor.BatchRequest, batchCopServer tikvpb.Tikv_BatchCoprocessorServer) error { reqCtxs := make([]*requestCtx, 0, len(req.Regions)) defer func() { @@ -628,7 +628,7 @@ func (svr *Server) BatchCoprocessor(req *coprocessor.BatchRequest, batchCopServe return nil } -// RawCoprocessor implements implements the tikvpb.TikvServer interface. +// RawCoprocessor implements the tikvpb.TikvServer interface. func (svr *Server) RawCoprocessor(context.Context, *kvrpcpb.RawCoprocessorRequest) (*kvrpcpb.RawCoprocessorResponse, error) { panic("unimplemented") } @@ -710,7 +710,7 @@ func (svr *Server) executeMPPDispatch(ctx context.Context, req *mpp.DispatchTask return nil } -// DispatchMPPTaskWithStoreID implements implements the tikvpb.TikvServer interface. +// DispatchMPPTaskWithStoreID implements the tikvpb.TikvServer interface. func (svr *Server) DispatchMPPTaskWithStoreID(ctx context.Context, req *mpp.DispatchTaskRequest, storeID uint64) (*mpp.DispatchTaskResponse, error) { mppHandler, err := svr.CreateMPPTaskHandler(req.Meta, storeID) if err != nil { @@ -728,12 +728,12 @@ func (svr *Server) DispatchMPPTaskWithStoreID(ctx context.Context, req *mpp.Disp return resp, nil } -// CancelMPPTask implements implements the tikvpb.TikvServer interface. +// CancelMPPTask implements the tikvpb.TikvServer interface. func (svr *Server) CancelMPPTask(_ context.Context, _ *mpp.CancelTaskRequest) (*mpp.CancelTaskResponse, error) { panic("todo") } -// GetMPPTaskHandler implements implements the tikvpb.TikvServer interface. +// GetMPPTaskHandler implements the tikvpb.TikvServer interface. func (svr *Server) GetMPPTaskHandler(taskID int64, storeID uint64) (*cophandler.MPPTaskHandler, error) { if mrm, ok := svr.regionManager.(*MockRegionManager); ok { set := mrm.getMPPTaskSet(storeID) @@ -750,7 +750,7 @@ func (svr *Server) GetMPPTaskHandler(taskID int64, storeID uint64) (*cophandler. return nil, errors.New("Only mock region mgr supports get mpp task") } -// RemoveMPPTaskHandler implements implements the tikvpb.TikvServer interface. +// RemoveMPPTaskHandler implements the tikvpb.TikvServer interface. func (svr *Server) RemoveMPPTaskHandler(taskID int64, storeID uint64) error { if mrm, ok := svr.regionManager.(*MockRegionManager); ok { err := mrm.removeMPPTaskHandler(taskID, storeID) @@ -759,7 +759,7 @@ func (svr *Server) RemoveMPPTaskHandler(taskID int64, storeID uint64) error { return errors.New("Only mock region mgr supports remove mpp task") } -// CreateMPPTaskHandler implements implements the tikvpb.TikvServer interface. +// CreateMPPTaskHandler implements the tikvpb.TikvServer interface. func (svr *Server) CreateMPPTaskHandler(meta *mpp.TaskMeta, storeID uint64) (*cophandler.MPPTaskHandler, error) { if mrm, ok := svr.regionManager.(*MockRegionManager); ok { set := mrm.getMPPTaskSet(storeID) @@ -782,12 +782,12 @@ func (svr *Server) CreateMPPTaskHandler(meta *mpp.TaskMeta, storeID uint64) (*co return nil, errors.New("Only mock region mgr supports get mpp task") } -// EstablishMPPConnection implements implements the tikvpb.TikvServer interface. +// EstablishMPPConnection implements the tikvpb.TikvServer interface. func (svr *Server) EstablishMPPConnection(*mpp.EstablishMPPConnectionRequest, tikvpb.Tikv_EstablishMPPConnectionServer) error { panic("todo") } -// EstablishMPPConnectionWithStoreID implements implements the tikvpb.TikvServer interface. +// EstablishMPPConnectionWithStoreID implements the tikvpb.TikvServer interface. func (svr *Server) EstablishMPPConnectionWithStoreID(req *mpp.EstablishMPPConnectionRequest, server tikvpb.Tikv_EstablishMPPConnectionServer, storeID uint64) error { var ( mppHandler *cophandler.MPPTaskHandler @@ -840,24 +840,24 @@ func (svr *Server) EstablishMPPConnectionWithStoreID(req *mpp.EstablishMPPConnec // Raft commands (tikv <-> tikv). -// Raft implements implements the tikvpb.TikvServer interface. +// Raft implements the tikvpb.TikvServer interface. func (svr *Server) Raft(stream tikvpb.Tikv_RaftServer) error { return svr.innerServer.Raft(stream) } -// Snapshot implements implements the tikvpb.TikvServer interface. +// Snapshot implements the tikvpb.TikvServer interface. func (svr *Server) Snapshot(stream tikvpb.Tikv_SnapshotServer) error { return svr.innerServer.Snapshot(stream) } -// BatchRaft implements implements the tikvpb.TikvServer interface. +// BatchRaft implements the tikvpb.TikvServer interface. func (svr *Server) BatchRaft(stream tikvpb.Tikv_BatchRaftServer) error { return svr.innerServer.BatchRaft(stream) } // Region commands. -// SplitRegion implements implements the tikvpb.TikvServer interface. +// SplitRegion implements the tikvpb.TikvServer interface. func (svr *Server) SplitRegion(ctx context.Context, req *kvrpcpb.SplitRegionRequest) (*kvrpcpb.SplitRegionResponse, error) { reqCtx, err := newRequestCtx(svr, req.Context, "SplitRegion") if err != nil { @@ -872,7 +872,7 @@ func (svr *Server) Compact(ctx context.Context, req *kvrpcpb.CompactRequest) (*k panic("unimplemented") } -// ReadIndex implements implements the tikvpb.TikvServer interface. +// ReadIndex implements the tikvpb.TikvServer interface. func (svr *Server) ReadIndex(context.Context, *kvrpcpb.ReadIndexRequest) (*kvrpcpb.ReadIndexResponse, error) { // TODO: return &kvrpcpb.ReadIndexResponse{}, nil @@ -880,7 +880,7 @@ func (svr *Server) ReadIndex(context.Context, *kvrpcpb.ReadIndexRequest) (*kvrpc // transaction debugger commands. -// MvccGetByKey implements implements the tikvpb.TikvServer interface. +// MvccGetByKey implements the tikvpb.TikvServer interface. func (svr *Server) MvccGetByKey(ctx context.Context, req *kvrpcpb.MvccGetByKeyRequest) (*kvrpcpb.MvccGetByKeyResponse, error) { reqCtx, err := newRequestCtx(svr, req.Context, "MvccGetByKey") if err != nil { @@ -899,7 +899,7 @@ func (svr *Server) MvccGetByKey(ctx context.Context, req *kvrpcpb.MvccGetByKeyRe return resp, nil } -// MvccGetByStartTs implements implements the tikvpb.TikvServer interface. +// MvccGetByStartTs implements the tikvpb.TikvServer interface. func (svr *Server) MvccGetByStartTs(ctx context.Context, req *kvrpcpb.MvccGetByStartTsRequest) (*kvrpcpb.MvccGetByStartTsResponse, error) { reqCtx, err := newRequestCtx(svr, req.Context, "MvccGetByStartTs") if err != nil { @@ -919,7 +919,7 @@ func (svr *Server) MvccGetByStartTs(ctx context.Context, req *kvrpcpb.MvccGetByS return resp, nil } -// UnsafeDestroyRange implements implements the tikvpb.TikvServer interface. +// UnsafeDestroyRange implements the tikvpb.TikvServer interface. func (svr *Server) UnsafeDestroyRange(ctx context.Context, req *kvrpcpb.UnsafeDestroyRangeRequest) (*kvrpcpb.UnsafeDestroyRangeResponse, error) { start, end := req.GetStartKey(), req.GetEndKey() svr.mvccStore.DeleteFileInRange(start, end) @@ -959,32 +959,32 @@ func (svr *Server) Detect(stream deadlockPb.Deadlock_DetectServer) error { return nil } -// CheckLockObserver implements implements the tikvpb.TikvServer interface. +// CheckLockObserver implements the tikvpb.TikvServer interface. func (svr *Server) CheckLockObserver(context.Context, *kvrpcpb.CheckLockObserverRequest) (*kvrpcpb.CheckLockObserverResponse, error) { // TODO: implement Observer return &kvrpcpb.CheckLockObserverResponse{IsClean: true}, nil } -// PhysicalScanLock implements implements the tikvpb.TikvServer interface. +// PhysicalScanLock implements the tikvpb.TikvServer interface. func (svr *Server) PhysicalScanLock(ctx context.Context, req *kvrpcpb.PhysicalScanLockRequest) (*kvrpcpb.PhysicalScanLockResponse, error) { resp := &kvrpcpb.PhysicalScanLockResponse{} resp.Locks = svr.mvccStore.PhysicalScanLock(req.StartKey, req.MaxTs, int(req.Limit)) return resp, nil } -// RegisterLockObserver implements implements the tikvpb.TikvServer interface. +// RegisterLockObserver implements the tikvpb.TikvServer interface. func (svr *Server) RegisterLockObserver(context.Context, *kvrpcpb.RegisterLockObserverRequest) (*kvrpcpb.RegisterLockObserverResponse, error) { // TODO: implement Observer return &kvrpcpb.RegisterLockObserverResponse{}, nil } -// RemoveLockObserver implements implements the tikvpb.TikvServer interface. +// RemoveLockObserver implements the tikvpb.TikvServer interface. func (svr *Server) RemoveLockObserver(context.Context, *kvrpcpb.RemoveLockObserverRequest) (*kvrpcpb.RemoveLockObserverResponse, error) { // TODO: implement Observer return &kvrpcpb.RemoveLockObserverResponse{}, nil } -// CheckLeader implements implements the tikvpb.TikvServer interface. +// CheckLeader implements the tikvpb.TikvServer interface. func (svr *Server) CheckLeader(context.Context, *kvrpcpb.CheckLeaderRequest) (*kvrpcpb.CheckLeaderResponse, error) { panic("unimplemented") } @@ -1004,7 +1004,7 @@ func (svr *Server) GetLockWaitInfo(context.Context, *kvrpcpb.GetLockWaitInfoRequ panic("unimplemented") } -// RawChecksum implements implements the tikvpb.TikvServer interface. +// RawChecksum implements the tikvpb.TikvServer interface. func (svr *Server) RawChecksum(context.Context, *kvrpcpb.RawChecksumRequest) (*kvrpcpb.RawChecksumResponse, error) { panic("unimplemented") } diff --git a/store/mockstore/unistore/util/lockwaiter/main_test.go b/store/mockstore/unistore/util/lockwaiter/main_test.go index 470e33909b5b0..27b0a5b93bd25 100644 --- a/store/mockstore/unistore/util/lockwaiter/main_test.go +++ b/store/mockstore/unistore/util/lockwaiter/main_test.go @@ -25,6 +25,7 @@ func TestMain(m *testing.M) { testsetup.SetupForCommonTest() opts := []goleak.Option{ goleak.IgnoreTopFunction("github.com/golang/glog.(*loggingT).flushDaemon"), + goleak.IgnoreTopFunction("github.com/lestrrat-go/httprc.runFetchWorker"), goleak.IgnoreTopFunction("go.etcd.io/etcd/client/pkg/v3/logutil.(*MergeLogger).outputLoop"), goleak.IgnoreTopFunction("go.opencensus.io/stats/view.(*worker).start"), } diff --git a/structure/main_test.go b/structure/main_test.go index 12e8019bf3e47..956a8a8ad93d8 100644 --- a/structure/main_test.go +++ b/structure/main_test.go @@ -25,6 +25,7 @@ func TestMain(m *testing.M) { testsetup.SetupForCommonTest() opts := []goleak.Option{ goleak.IgnoreTopFunction("github.com/golang/glog.(*loggingT).flushDaemon"), + goleak.IgnoreTopFunction("github.com/lestrrat-go/httprc.runFetchWorker"), goleak.IgnoreTopFunction("go.etcd.io/etcd/client/pkg/v3/logutil.(*MergeLogger).outputLoop"), goleak.IgnoreTopFunction("go.opencensus.io/stats/view.(*worker).start"), } diff --git a/table/index.go b/table/index.go index e45ac40e8f6e9..f83e2dd35d2f4 100644 --- a/table/index.go +++ b/table/index.go @@ -73,6 +73,8 @@ func WithCtx(ctx context.Context) CreateIdxOptFunc { type Index interface { // Meta returns IndexInfo. Meta() *model.IndexInfo + // TableMeta returns TableInfo + TableMeta() *model.TableInfo // Create supports insert into statement. Create(ctx sessionctx.Context, txn kv.Transaction, indexedValues []types.Datum, h kv.Handle, handleRestoreData []types.Datum, opts ...CreateIdxOptFunc) (kv.Handle, error) // Delete supports delete from statement. diff --git a/table/main_test.go b/table/main_test.go index 79f1eaa5a9a71..019f53e9f303a 100644 --- a/table/main_test.go +++ b/table/main_test.go @@ -25,6 +25,7 @@ func TestMain(m *testing.M) { testsetup.SetupForCommonTest() opts := []goleak.Option{ goleak.IgnoreTopFunction("github.com/golang/glog.(*loggingT).flushDaemon"), + goleak.IgnoreTopFunction("github.com/lestrrat-go/httprc.runFetchWorker"), goleak.IgnoreTopFunction("go.etcd.io/etcd/client/pkg/v3/logutil.(*MergeLogger).outputLoop"), goleak.IgnoreTopFunction("go.opencensus.io/stats/view.(*worker).start"), } diff --git a/table/tables/cache_test.go b/table/tables/cache_test.go index 6f8fc2d4345b4..27b90fd7c0159 100644 --- a/table/tables/cache_test.go +++ b/table/tables/cache_test.go @@ -231,7 +231,7 @@ func TestCacheTableBasicReadAndWrite(t *testing.T) { tk.MustQuery("select * from write_tmp1").Check(testkit.Rows("1 101 1001", "2 222 222", "3 113 1003")) tk1.MustExec("update write_tmp1 set v = 3333 where id = 2") for !lastReadFromCache(tk) { - tk.MustQuery("select * from write_tmp1").Check(testkit.Rows("1 101 1001", "2 222 222", "3 113 1003")) + tk.MustQuery("select * from write_tmp1").Check(testkit.Rows("1 101 1001", "2 222 3333", "3 113 1003")) } tk.MustQuery("select * from write_tmp1").Check(testkit.Rows("1 101 1001", "2 222 3333", "3 113 1003")) } diff --git a/table/tables/index.go b/table/tables/index.go index 77811eacc3a8c..bc1a90f70ba71 100644 --- a/table/tables/index.go +++ b/table/tables/index.go @@ -79,6 +79,11 @@ func (c *index) Meta() *model.IndexInfo { return c.idxInfo } +// TableMeta returns table info. +func (c *index) TableMeta() *model.TableInfo { + return c.tblInfo +} + // GenIndexKey generates storage key for index values. Returned distinct indicates whether the // indexed values should be distinct in storage (i.e. whether handle is encoded in the key). func (c *index) GenIndexKey(sc *stmtctx.StatementContext, indexedValues []types.Datum, h kv.Handle, buf []byte) (key []byte, distinct bool, err error) { @@ -224,7 +229,8 @@ func (c *index) Create(sctx sessionctx.Context, txn kv.Transaction, indexedValue } if lazyCheck { flags := []kv.FlagsOp{kv.SetPresumeKeyNotExists} - if !vars.ConstraintCheckInPlacePessimistic && vars.TxnCtx.IsPessimistic && vars.InTxn() { + if !vars.ConstraintCheckInPlacePessimistic && vars.TxnCtx.IsPessimistic && vars.InTxn() && + !vars.InRestrictedSQL && vars.ConnectionID > 0 { flags = append(flags, kv.SetNeedConstraintCheckInPrewrite) } err = txn.GetMemBuffer().SetWithFlags(key, idxVal, flags...) diff --git a/table/tables/main_test.go b/table/tables/main_test.go index f707c7babbf74..d831e57364d33 100644 --- a/table/tables/main_test.go +++ b/table/tables/main_test.go @@ -25,7 +25,9 @@ func TestMain(m *testing.M) { testsetup.SetupForCommonTest() opts := []goleak.Option{ goleak.IgnoreTopFunction("github.com/golang/glog.(*loggingT).flushDaemon"), + goleak.IgnoreTopFunction("github.com/lestrrat-go/httprc.runFetchWorker"), goleak.IgnoreTopFunction("go.etcd.io/etcd/client/pkg/v3/logutil.(*MergeLogger).outputLoop"), + goleak.IgnoreTopFunction("go.opencensus.io/stats/view.(*worker).start"), } goleak.VerifyTestMain(m, opts...) } diff --git a/table/tables/mutation_checker_test.go b/table/tables/mutation_checker_test.go index 658905fcf14e4..43fb35c21a5b6 100644 --- a/table/tables/mutation_checker_test.go +++ b/table/tables/mutation_checker_test.go @@ -332,7 +332,7 @@ func buildIndexKeyValue(index table.Index, rowToInsert []types.Datum, sessVars * if err != nil { return nil, nil, err } - rsData := TryGetHandleRestoredDataWrapper(table, rowToInsert, nil, indexInfo) + rsData := TryGetHandleRestoredDataWrapper(table.meta, rowToInsert, nil, indexInfo) value, err := tablecodec.GenIndexValuePortal( sessVars.StmtCtx, &tableInfo, indexInfo, NeedRestoredData(indexInfo.Columns, tableInfo.Columns), distinct, false, indexedValues, handle, 0, rsData, diff --git a/table/tables/tables.go b/table/tables/tables.go index 05724a67fa311..631b26ef4296e 100644 --- a/table/tables/tables.go +++ b/table/tables/tables.go @@ -20,6 +20,7 @@ package tables import ( "context" + "fmt" "math" "strconv" "strings" @@ -845,7 +846,7 @@ func (t *TableCommon) AddRecord(sctx sessionctx.Context, r []types.Datum, opts . } if err == nil { handleStr := getDuplicateErrorHandleString(t, recordID, r) - return recordID, kv.ErrKeyExists.FastGenByArgs(handleStr, "PRIMARY") + return recordID, kv.ErrKeyExists.FastGenByArgs(handleStr, t.Meta().Name.String()+".PRIMARY") } else if !kv.ErrNotExist.Equal(err) { return recordID, err } @@ -853,7 +854,8 @@ func (t *TableCommon) AddRecord(sctx sessionctx.Context, r []types.Datum, opts . if setPresume { flags := []kv.FlagsOp{kv.SetPresumeKeyNotExists} - if !sessVars.ConstraintCheckInPlacePessimistic && sessVars.TxnCtx.IsPessimistic && sessVars.InTxn() { + if !sessVars.ConstraintCheckInPlacePessimistic && sessVars.TxnCtx.IsPessimistic && sessVars.InTxn() && + !sessVars.InRestrictedSQL && sessVars.ConnectionID > 0 { flags = append(flags, kv.SetNeedConstraintCheckInPrewrite) } err = memBuffer.SetWithFlags(key, value, flags...) @@ -974,10 +976,9 @@ func (t *TableCommon) addIndices(sctx sessionctx.Context, recordID kv.Handle, r if err != nil { return nil, err } - idxMeta := v.Meta() - dupErr = kv.ErrKeyExists.FastGenByArgs(entryKey, idxMeta.Name.String()) + dupErr = kv.ErrKeyExists.FastGenByArgs(entryKey, fmt.Sprintf("%s.%s", v.TableMeta().Name.String(), v.Meta().Name.String())) } - rsData := TryGetHandleRestoredDataWrapper(t, r, nil, v.Meta()) + rsData := TryGetHandleRestoredDataWrapper(t.meta, r, nil, v.Meta()) if dupHandle, err := v.Create(sctx, txn, indexVals, recordID, rsData, opts...); err != nil { if kv.ErrKeyExists.Equal(err) { return dupHandle, dupErr @@ -1345,7 +1346,7 @@ func (t *TableCommon) buildIndexForRow(ctx sessionctx.Context, h kv.Handle, vals if untouched { opts = append(opts, table.IndexIsUntouched) } - rsData := TryGetHandleRestoredDataWrapper(t, newData, nil, idx.Meta()) + rsData := TryGetHandleRestoredDataWrapper(t.meta, newData, nil, idx.Meta()) if _, err := idx.Create(ctx, txn, vals, h, rsData, opts...); err != nil { if kv.ErrKeyExists.Equal(err) { // Make error message consistent with MySQL. @@ -1355,7 +1356,7 @@ func (t *TableCommon) buildIndexForRow(ctx sessionctx.Context, h kv.Handle, vals return err } - return kv.ErrKeyExists.FastGenByArgs(entryKey, idx.Meta().Name) + return kv.ErrKeyExists.FastGenByArgs(entryKey, fmt.Sprintf("%s.%s", idx.TableMeta().Name.String(), idx.Meta().Name.String())) } return err } @@ -1866,14 +1867,14 @@ func (t *TableCommon) GetSequenceCommon() *sequenceCommon { } // TryGetHandleRestoredDataWrapper tries to get the restored data for handle if needed. The argument can be a slice or a map. -func TryGetHandleRestoredDataWrapper(t table.Table, row []types.Datum, rowMap map[int64]types.Datum, idx *model.IndexInfo) []types.Datum { - if !collate.NewCollationEnabled() || !t.Meta().IsCommonHandle || t.Meta().CommonHandleVersion == 0 { +func TryGetHandleRestoredDataWrapper(tblInfo *model.TableInfo, row []types.Datum, rowMap map[int64]types.Datum, idx *model.IndexInfo) []types.Datum { + if !collate.NewCollationEnabled() || !tblInfo.IsCommonHandle || tblInfo.CommonHandleVersion == 0 { return nil } rsData := make([]types.Datum, 0, 4) - pkIdx := FindPrimaryIndex(t.Meta()) + pkIdx := FindPrimaryIndex(tblInfo) for _, pkIdxCol := range pkIdx.Columns { - pkCol := t.Meta().Columns[pkIdxCol.Offset] + pkCol := tblInfo.Columns[pkIdxCol.Offset] if !types.NeedRestoredData(&pkCol.FieldType) { continue } @@ -1957,6 +1958,35 @@ func BuildPartitionTableScanFromInfos(tableInfo *model.TableInfo, columnInfos [] return tsExec } +// SetPBColumnsDefaultValue sets the default values of tipb.ColumnInfo. +func SetPBColumnsDefaultValue(ctx sessionctx.Context, pbColumns []*tipb.ColumnInfo, columns []*model.ColumnInfo) error { + for i, c := range columns { + // For virtual columns, we set their default values to NULL so that TiKV will return NULL properly, + // They real values will be computed later. + if c.IsGenerated() && !c.GeneratedStored { + pbColumns[i].DefaultVal = []byte{codec.NilFlag} + } + if c.GetOriginDefaultValue() == nil { + continue + } + + sessVars := ctx.GetSessionVars() + originStrict := sessVars.StrictSQLMode + sessVars.StrictSQLMode = false + d, err := table.GetColOriginDefaultValue(ctx, c) + sessVars.StrictSQLMode = originStrict + if err != nil { + return err + } + + pbColumns[i].DefaultVal, err = tablecodec.EncodeValue(sessVars.StmtCtx, nil, d) + if err != nil { + return err + } + } + return nil +} + // TemporaryTable is used to store transaction-specific or session-specific information for global / local temporary tables. // For example, stats and autoID should have their own copies of data, instead of being shared by all sessions. type TemporaryTable struct { diff --git a/table/tables/tables_test.go b/table/tables/tables_test.go index 22551620ed538..d659f918a8168 100644 --- a/table/tables/tables_test.go +++ b/table/tables/tables_test.go @@ -656,7 +656,7 @@ func TestConstraintCheckForUniqueIndex(t *testing.T) { tk.MustExec("insert into ttt(k,c) values(1, 'tidb')") tk.MustExec("insert into ttt(k,c) values(2, 'tidb')") _, err := tk.Exec("update ttt set k=1 where id=2") - require.Equal(t, "[kv:1062]Duplicate entry '1-tidb' for key 'k_1'", err.Error()) + require.Equal(t, "[kv:1062]Duplicate entry '1-tidb' for key 'ttt.k_1'", err.Error()) tk.MustExec("rollback") // no auto-commit @@ -664,13 +664,13 @@ func TestConstraintCheckForUniqueIndex(t *testing.T) { tk.MustExec("set @@tidb_constraint_check_in_place = 0") tk.MustExec("begin") _, err = tk.Exec("update ttt set k=1 where id=2") - require.Equal(t, "[kv:1062]Duplicate entry '1-tidb' for key 'k_1'", err.Error()) + require.Equal(t, "[kv:1062]Duplicate entry '1-tidb' for key 'ttt.k_1'", err.Error()) tk.MustExec("rollback") tk.MustExec("set @@tidb_constraint_check_in_place = 1") tk.MustExec("begin") _, err = tk.Exec("update ttt set k=1 where id=2") - require.Equal(t, "[kv:1062]Duplicate entry '1-tidb' for key 'k_1'", err.Error()) + require.Equal(t, "[kv:1062]Duplicate entry '1-tidb' for key 'ttt.k_1'", err.Error()) tk.MustExec("rollback") // This test check that with @@tidb_constraint_check_in_place = 0, although there is not KV request for the unique index, the pessimistic lock should still be written. diff --git a/table/temptable/main_test.go b/table/temptable/main_test.go index 7ee3919b08f60..7dbc5e86d37d9 100644 --- a/table/temptable/main_test.go +++ b/table/temptable/main_test.go @@ -38,6 +38,7 @@ func TestMain(m *testing.M) { goleak.IgnoreTopFunction("go.etcd.io/etcd/client/pkg/v3/logutil.(*MergeLogger).outputLoop"), goleak.IgnoreTopFunction("go.opencensus.io/stats/view.(*worker).start"), goleak.IgnoreTopFunction("github.com/golang/glog.(*loggingT).flushDaemon"), + goleak.IgnoreTopFunction("github.com/lestrrat-go/httprc.runFetchWorker"), } testsetup.SetupForCommonTest() goleak.VerifyTestMain(m, opts...) diff --git a/tablecodec/main_test.go b/tablecodec/main_test.go index ded843a887c9c..5024acdb32bdf 100644 --- a/tablecodec/main_test.go +++ b/tablecodec/main_test.go @@ -25,6 +25,7 @@ func TestMain(m *testing.M) { testsetup.SetupForCommonTest() opts := []goleak.Option{ goleak.IgnoreTopFunction("github.com/golang/glog.(*loggingT).flushDaemon"), + goleak.IgnoreTopFunction("github.com/lestrrat-go/httprc.runFetchWorker"), goleak.IgnoreTopFunction("go.etcd.io/etcd/client/pkg/v3/logutil.(*MergeLogger).outputLoop"), goleak.IgnoreTopFunction("go.opencensus.io/stats/view.(*worker).start"), } diff --git a/tablecodec/rowindexcodec/main_test.go b/tablecodec/rowindexcodec/main_test.go index fed13e1f46a21..11b7963a4bd14 100644 --- a/tablecodec/rowindexcodec/main_test.go +++ b/tablecodec/rowindexcodec/main_test.go @@ -25,6 +25,7 @@ func TestMain(m *testing.M) { testsetup.SetupForCommonTest() opts := []goleak.Option{ goleak.IgnoreTopFunction("github.com/golang/glog.(*loggingT).flushDaemon"), + goleak.IgnoreTopFunction("github.com/lestrrat-go/httprc.runFetchWorker"), goleak.IgnoreTopFunction("go.etcd.io/etcd/client/pkg/v3/logutil.(*MergeLogger).outputLoop"), goleak.IgnoreTopFunction("go.opencensus.io/stats/view.(*worker).start"), } diff --git a/telemetry/BUILD.bazel b/telemetry/BUILD.bazel index 7f11bd1a0289c..df7de986555a6 100644 --- a/telemetry/BUILD.bazel +++ b/telemetry/BUILD.bazel @@ -29,6 +29,7 @@ go_library( "//sessionctx", "//sessionctx/variable", "//util/logutil", + "//util/memory", "//util/sqlexec", "@com_github_google_uuid//:uuid", "@com_github_iancoleman_strcase//:strcase", diff --git a/telemetry/cte_test/cte_test.go b/telemetry/cte_test/cte_test.go index 32eed83e8df33..fac26ddb2f403 100644 --- a/telemetry/cte_test/cte_test.go +++ b/telemetry/cte_test/cte_test.go @@ -39,6 +39,7 @@ func TestMain(m *testing.M) { opts := []goleak.Option{ goleak.IgnoreTopFunction("go.etcd.io/etcd/client/pkg/v3/logutil.(*MergeLogger).outputLoop"), goleak.IgnoreTopFunction("github.com/golang/glog.(*loggingT).flushDaemon"), + goleak.IgnoreTopFunction("github.com/lestrrat-go/httprc.runFetchWorker"), } goleak.VerifyTestMain(m, opts...) diff --git a/telemetry/data_feature_usage.go b/telemetry/data_feature_usage.go index f50b5ab02c2bb..3766945536d9c 100644 --- a/telemetry/data_feature_usage.go +++ b/telemetry/data_feature_usage.go @@ -26,6 +26,7 @@ import ( "github.com/pingcap/tidb/sessionctx" "github.com/pingcap/tidb/sessionctx/variable" "github.com/pingcap/tidb/util/logutil" + "github.com/pingcap/tidb/util/memory" "github.com/pingcap/tidb/util/sqlexec" "github.com/tikv/client-go/v2/metrics" ) @@ -38,23 +39,25 @@ type featureUsage struct { Txn *TxnUsage `json:"txn"` // cluster index usage information // key is the first 6 characters of sha2(TABLE_NAME, 256) - ClusterIndex *ClusterIndexUsage `json:"clusterIndex"` - NewClusterIndex *NewClusterIndexUsage `json:"newClusterIndex"` - TemporaryTable bool `json:"temporaryTable"` - CTE *m.CTEUsageCounter `json:"cte"` - AccountLock *m.AccountLockCounter `json:"accountLock"` - CachedTable bool `json:"cachedTable"` - AutoCapture bool `json:"autoCapture"` - PlacementPolicyUsage *placementPolicyUsage `json:"placementPolicy"` - NonTransactionalUsage *m.NonTransactionalStmtCounter `json:"nonTransactional"` - GlobalKill bool `json:"globalKill"` - MultiSchemaChange *m.MultiSchemaChangeUsageCounter `json:"multiSchemaChange"` - ExchangePartition *m.ExchangePartitionUsageCounter `json:"exchangePartition"` - TablePartition *m.TablePartitionUsageCounter `json:"tablePartition"` - LogBackup bool `json:"logBackup"` - EnablePaging bool `json:"enablePaging"` - EnableCostModelVer2 bool `json:"enableCostModelVer2"` - DDLUsageCounter *m.DDLUsageCounter `json:"DDLUsageCounter"` + ClusterIndex *ClusterIndexUsage `json:"clusterIndex"` + NewClusterIndex *NewClusterIndexUsage `json:"newClusterIndex"` + TemporaryTable bool `json:"temporaryTable"` + CTE *m.CTEUsageCounter `json:"cte"` + AccountLock *m.AccountLockCounter `json:"accountLock"` + CachedTable bool `json:"cachedTable"` + AutoCapture bool `json:"autoCapture"` + PlacementPolicyUsage *placementPolicyUsage `json:"placementPolicy"` + NonTransactionalUsage *m.NonTransactionalStmtCounter `json:"nonTransactional"` + GlobalKill bool `json:"globalKill"` + MultiSchemaChange *m.MultiSchemaChangeUsageCounter `json:"multiSchemaChange"` + ExchangePartition *m.ExchangePartitionUsageCounter `json:"exchangePartition"` + TablePartition *m.TablePartitionUsageCounter `json:"tablePartition"` + LogBackup bool `json:"logBackup"` + EnablePaging bool `json:"enablePaging"` + EnableCostModelVer2 bool `json:"enableCostModelVer2"` + DDLUsageCounter *m.DDLUsageCounter `json:"DDLUsageCounter"` + EnableGlobalMemoryControl bool `json:"enableGlobalMemoryControl"` + AutoIDNoCache bool `json:"autoIDNoCache"` } type placementPolicyUsage struct { @@ -103,6 +106,8 @@ func getFeatureUsage(ctx context.Context, sctx sessionctx.Context) (*featureUsag usage.DDLUsageCounter = getDDLUsageInfo(sctx) + usage.EnableGlobalMemoryControl = getGlobalMemoryControl() + return &usage, nil } @@ -127,6 +132,9 @@ func collectFeatureUsageFromInfoschema(ctx sessionctx.Context, usage *featureUsa if tbInfo.Meta().PlacementPolicyRef != nil { usage.PlacementPolicyUsage.NumTableWithPolicies++ } + if tbInfo.Meta().AutoIdCache == 1 { + usage.AutoIDNoCache = true + } partitions := tbInfo.Meta().GetPartitionInfo() if partitions == nil { continue @@ -240,29 +248,29 @@ var initialDDLUsageCounter m.DDLUsageCounter // getTxnUsageInfo gets the usage info of transaction related features. It's exported for tests. func getTxnUsageInfo(ctx sessionctx.Context) *TxnUsage { asyncCommitUsed := false - if val, err := ctx.GetSessionVars().GetGlobalSystemVar(variable.TiDBEnableAsyncCommit); err == nil { + if val, err := ctx.GetSessionVars().GetGlobalSystemVar(context.Background(), variable.TiDBEnableAsyncCommit); err == nil { asyncCommitUsed = val == variable.On } onePCUsed := false - if val, err := ctx.GetSessionVars().GetGlobalSystemVar(variable.TiDBEnable1PC); err == nil { + if val, err := ctx.GetSessionVars().GetGlobalSystemVar(context.Background(), variable.TiDBEnable1PC); err == nil { onePCUsed = val == variable.On } curr := metrics.GetTxnCommitCounter() diff := curr.Sub(initialTxnCommitCounter) mutationCheckerUsed := false - if val, err := ctx.GetSessionVars().GetGlobalSystemVar(variable.TiDBEnableMutationChecker); err == nil { + if val, err := ctx.GetSessionVars().GetGlobalSystemVar(context.Background(), variable.TiDBEnableMutationChecker); err == nil { mutationCheckerUsed = val == variable.On } assertionUsed := "" - if val, err := ctx.GetSessionVars().GetGlobalSystemVar(variable.TiDBTxnAssertionLevel); err == nil { + if val, err := ctx.GetSessionVars().GetGlobalSystemVar(context.Background(), variable.TiDBTxnAssertionLevel); err == nil { assertionUsed = val } rcCheckTSUsed := false - if val, err := ctx.GetSessionVars().GetGlobalSystemVar(variable.TiDBRCReadCheckTS); err == nil { + if val, err := ctx.GetSessionVars().GetGlobalSystemVar(context.Background(), variable.TiDBRCReadCheckTS); err == nil { rcCheckTSUsed = val == variable.On } rcWriteCheckTSUsed := false - if val, err := ctx.GetSessionVars().GetGlobalSystemVar(variable.TiDBRCWriteCheckTs); err == nil { + if val, err := ctx.GetSessionVars().GetGlobalSystemVar(context.Background(), variable.TiDBRCWriteCheckTs); err == nil { rcWriteCheckTSUsed = val == variable.On } currSavepointCount := m.GetSavepointStmtCounter() @@ -346,7 +354,7 @@ func getTablePartitionUsageInfo() *m.TablePartitionUsageCounter { // getAutoCaptureUsageInfo gets the 'Auto Capture' usage func getAutoCaptureUsageInfo(ctx sessionctx.Context) bool { - if val, err := ctx.GetSessionVars().GetGlobalSystemVar(variable.TiDBCapturePlanBaseline); err == nil { + if val, err := ctx.GetSessionVars().GetGlobalSystemVar(context.Background(), variable.TiDBCapturePlanBaseline); err == nil { return val == variable.On } return false @@ -380,6 +388,7 @@ func getCostModelVer2UsageInfo(ctx sessionctx.Context) bool { func getPagingUsageInfo(ctx sessionctx.Context) bool { return ctx.GetSessionVars().EnablePaging } + func getDDLUsageInfo(ctx sessionctx.Context) *m.DDLUsageCounter { curr := m.GetDDLUsageCounter() diff := curr.Sub(initialDDLUsageCounter) @@ -389,3 +398,7 @@ func getDDLUsageInfo(ctx sessionctx.Context) *m.DDLUsageCounter { } return &diff } + +func getGlobalMemoryControl() bool { + return memory.ServerMemoryLimit.Load() > 0 +} diff --git a/telemetry/data_feature_usage_test.go b/telemetry/data_feature_usage_test.go index 8b2a77ba2ffdc..12b682b571b39 100644 --- a/telemetry/data_feature_usage_test.go +++ b/telemetry/data_feature_usage_test.go @@ -129,6 +129,26 @@ func TestCachedTable(t *testing.T) { require.False(t, usage.CachedTable) } +func TestAutoIDNoCache(t *testing.T) { + store := testkit.CreateMockStore(t) + + tk := testkit.NewTestKit(t, store) + tk.MustExec("use test") + + usage, err := telemetry.GetFeatureUsage(tk.Session()) + require.NoError(t, err) + require.False(t, usage.CachedTable) + tk.MustExec("drop table if exists tele_autoid") + tk.MustExec("create table tele_autoid (id int) auto_id_cache 1") + usage, err = telemetry.GetFeatureUsage(tk.Session()) + require.NoError(t, err) + require.True(t, usage.AutoIDNoCache) + tk.MustExec("alter table tele_autoid auto_id_cache=0") + usage, err = telemetry.GetFeatureUsage(tk.Session()) + require.NoError(t, err) + require.False(t, usage.AutoIDNoCache) +} + func TestAccountLock(t *testing.T) { store := testkit.CreateMockStore(t) @@ -445,6 +465,27 @@ func TestLazyPessimisticUniqueCheck(t *testing.T) { require.Equal(t, int64(2), usage.LazyUniqueCheckSetCounter) } +func TestFlashbackCluster(t *testing.T) { + store := testkit.CreateMockStore(t) + tk := testkit.NewTestKit(t, store) + tk1 := testkit.NewTestKit(t, store) + + usage, err := telemetry.GetFeatureUsage(tk.Session()) + require.Equal(t, int64(0), usage.DDLUsageCounter.FlashbackClusterUsed) + require.NoError(t, err) + + tk.MustExecToErr("flashback cluster to timestamp '2011-12-21 00:00:00'") + usage, err = telemetry.GetFeatureUsage(tk.Session()) + require.Equal(t, int64(1), usage.DDLUsageCounter.FlashbackClusterUsed) + require.NoError(t, err) + + tk1.MustExec("use test") + tk1.MustExec("create table t(a int)") + usage, err = telemetry.GetFeatureUsage(tk1.Session()) + require.Equal(t, int64(1), usage.DDLUsageCounter.FlashbackClusterUsed) + require.NoError(t, err) +} + func TestAddIndexAccelerationAndMDL(t *testing.T) { if !variable.EnableConcurrentDDL.Load() { t.Skipf("test requires concurrent ddl") @@ -458,6 +499,7 @@ func TestAddIndexAccelerationAndMDL(t *testing.T) { allow := ddl.IsEnableFastReorg() require.Equal(t, false, allow) + tk.MustExec("set global tidb_enable_metadata_lock = 0") tk.MustExec("use test") tk.MustExec("drop table if exists tele_t") tk.MustExec("create table tele_t(id int, b int)") @@ -481,3 +523,22 @@ func TestAddIndexAccelerationAndMDL(t *testing.T) { require.Equal(t, int64(1), usage.DDLUsageCounter.AddIndexIngestUsed) require.Equal(t, true, usage.DDLUsageCounter.MetadataLockUsed) } + +func TestGlobalMemoryControl(t *testing.T) { + store := testkit.CreateMockStore(t) + + tk := testkit.NewTestKit(t, store) + usage, err := telemetry.GetFeatureUsage(tk.Session()) + require.NoError(t, err) + require.True(t, usage.EnableGlobalMemoryControl == (variable.DefTiDBServerMemoryLimit != "0")) + + tk.MustExec("set global tidb_server_memory_limit = 5 << 30") + usage, err = telemetry.GetFeatureUsage(tk.Session()) + require.NoError(t, err) + require.True(t, usage.EnableGlobalMemoryControl) + + tk.MustExec("set global tidb_server_memory_limit = 0") + usage, err = telemetry.GetFeatureUsage(tk.Session()) + require.NoError(t, err) + require.False(t, usage.EnableGlobalMemoryControl) +} diff --git a/telemetry/main_test.go b/telemetry/main_test.go index 6d4b5d2c5aaf8..0e8d98b2a4f6c 100644 --- a/telemetry/main_test.go +++ b/telemetry/main_test.go @@ -39,6 +39,8 @@ func TestMain(m *testing.M) { opts := []goleak.Option{ goleak.IgnoreTopFunction("go.etcd.io/etcd/client/pkg/v3/logutil.(*MergeLogger).outputLoop"), goleak.IgnoreTopFunction("github.com/golang/glog.(*loggingT).flushDaemon"), + goleak.IgnoreTopFunction("github.com/lestrrat-go/httprc.runFetchWorker"), + goleak.IgnoreTopFunction("go.opencensus.io/stats/view.(*worker).start"), } goleak.VerifyTestMain(m, opts...) diff --git a/testkit/BUILD.bazel b/testkit/BUILD.bazel index a60f4520dae52..39cedb2ce0b53 100644 --- a/testkit/BUILD.bazel +++ b/testkit/BUILD.bazel @@ -20,6 +20,7 @@ go_library( "//kv", "//parser/ast", "//parser/terror", + "//planner/core", "//session", "//session/txninfo", "//sessionctx/variable", @@ -27,6 +28,8 @@ go_library( "//store/mockstore", "//util", "//util/breakpoint", + "//util/chunk", + "//util/gctuner", "//util/sqlexec", "@com_github_pingcap_errors//:errors", "@com_github_pingcap_failpoint//:failpoint", diff --git a/testkit/mocksessionmanager.go b/testkit/mocksessionmanager.go index 5e0325417a0e8..403c917066d34 100644 --- a/testkit/mocksessionmanager.go +++ b/testkit/mocksessionmanager.go @@ -18,6 +18,8 @@ import ( "crypto/tls" "sync" + "github.com/pingcap/tidb/parser/ast" + "github.com/pingcap/tidb/planner/core" "github.com/pingcap/tidb/session" "github.com/pingcap/tidb/session/txninfo" "github.com/pingcap/tidb/util" @@ -78,6 +80,11 @@ func (msm *MockSessionManager) GetProcessInfo(id uint64) (*util.ProcessInfo, boo return item, true } } + msm.mu.Lock() + defer msm.mu.Unlock() + if sess := msm.conn[id]; sess != nil { + return sess.ShowProcess(), true + } return &util.ProcessInfo{}, false } @@ -109,6 +116,23 @@ func (*MockSessionManager) GetInternalSessionStartTSList() []uint64 { return nil } +// KillNonFlashbackClusterConn implement SessionManager interface. +func (msm *MockSessionManager) KillNonFlashbackClusterConn() { + for _, se := range msm.conn { + processInfo := se.ShowProcess() + ddl, ok := processInfo.StmtCtx.GetPlan().(*core.DDL) + if !ok { + msm.Kill(se.GetSessionVars().ConnectionID, false) + continue + } + _, ok = ddl.Statement.(*ast.FlashBackToTimestampStmt) + if !ok { + msm.Kill(se.GetSessionVars().ConnectionID, false) + continue + } + } +} + // CheckOldRunningTxn is to get all startTS of every transactions running in the current internal sessions func (msm *MockSessionManager) CheckOldRunningTxn(job2ver map[int64]int64, job2ids map[int64]string) { msm.mu.Lock() diff --git a/testkit/mockstore.go b/testkit/mockstore.go index 7a022570c311c..525381dd9c148 100644 --- a/testkit/mockstore.go +++ b/testkit/mockstore.go @@ -27,6 +27,7 @@ import ( "github.com/pingcap/tidb/session" "github.com/pingcap/tidb/store/driver" "github.com/pingcap/tidb/store/mockstore" + "github.com/pingcap/tidb/util/gctuner" "github.com/stretchr/testify/require" "go.opencensus.io/stats/view" ) @@ -56,6 +57,7 @@ func CreateMockStore(t testing.TB, opts ...mockstore.MockTiKVStoreOption) kv.Sto t.Cleanup(func() { view.Stop() }) + gctuner.GlobalMemoryLimitTuner.Stop() store, _ := CreateMockStoreAndDomain(t, opts...) return store } @@ -67,12 +69,17 @@ func CreateMockStoreAndDomain(t testing.TB, opts ...mockstore.MockTiKVStoreOptio dom := bootstrap(t, store, 500*time.Millisecond) sm := MockSessionManager{} dom.InfoSyncer().SetSessionManager(&sm) + t.Cleanup(func() { + view.Stop() + gctuner.GlobalMemoryLimitTuner.Stop() + }) return schematracker.UnwrapStorage(store), dom } func bootstrap(t testing.TB, store kv.Storage, lease time.Duration) *domain.Domain { session.SetSchemaLease(lease) session.DisableStats4Test() + domain.DisablePlanReplayerBackgroundJob4Test() dom, err := session.BootstrapSession(store) require.NoError(t, err) diff --git a/testkit/testkit.go b/testkit/testkit.go index 1617b743efa65..25479bc862d96 100644 --- a/testkit/testkit.go +++ b/testkit/testkit.go @@ -31,6 +31,7 @@ import ( "github.com/pingcap/tidb/parser/terror" "github.com/pingcap/tidb/session" "github.com/pingcap/tidb/sessionctx/variable" + "github.com/pingcap/tidb/util/chunk" "github.com/pingcap/tidb/util/sqlexec" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" @@ -48,6 +49,7 @@ type TestKit struct { t testing.TB store kv.Storage session session.Session + alloc chunk.Allocator } // NewTestKit returns a new *TestKit. @@ -57,6 +59,7 @@ func NewTestKit(t testing.TB, store kv.Storage) *TestKit { assert: assert.New(t), t: t, store: store, + alloc: chunk.NewAllocator(), } tk.RefreshSession() @@ -86,6 +89,7 @@ func NewTestKitWithSession(t testing.TB, store kv.Storage, se session.Session) * t: t, store: store, session: se, + alloc: chunk.NewAllocator(), } } @@ -110,6 +114,11 @@ func (tk *TestKit) Session() session.Session { // MustExec executes a sql statement and asserts nil error. func (tk *TestKit) MustExec(sql string, args ...interface{}) { + defer func() { + if tk.alloc != nil { + tk.alloc.Reset() + } + }() tk.MustExecWithContext(context.Background(), sql, args...) } @@ -127,6 +136,11 @@ func (tk *TestKit) MustExecWithContext(ctx context.Context, sql string, args ... // MustQuery query the statements and returns result rows. // If expected result is set it asserts the query result equals expected result. func (tk *TestKit) MustQuery(sql string, args ...interface{}) *Result { + defer func() { + if tk.alloc != nil { + tk.alloc.Reset() + } + }() return tk.MustQueryWithContext(context.Background(), sql, args...) } @@ -255,7 +269,8 @@ func (tk *TestKit) Exec(sql string, args ...interface{}) (sqlexec.RecordSet, err } // ExecWithContext executes a sql statement using the prepared stmt API -func (tk *TestKit) ExecWithContext(ctx context.Context, sql string, args ...interface{}) (sqlexec.RecordSet, error) { +func (tk *TestKit) ExecWithContext(ctx context.Context, sql string, args ...interface{}) (rs sqlexec.RecordSet, err error) { + defer tk.Session().GetSessionVars().ClearAlloc(&tk.alloc, err != nil) if len(args) == 0 { sc := tk.session.GetSessionVars().StmtCtx prevWarns := sc.GetWarnings() @@ -269,12 +284,13 @@ func (tk *TestKit) ExecWithContext(ctx context.Context, sql string, args ...inte } warns := sc.GetWarnings() parserWarns := warns[len(prevWarns):] + tk.Session().GetSessionVars().SetAlloc(tk.alloc) var rs0 sqlexec.RecordSet for i, stmt := range stmts { var rs sqlexec.RecordSet var err error - if s, ok := stmt.(*ast.NonTransactionalDeleteStmt); ok { - rs, err = session.HandleNonTransactionalDelete(ctx, s, tk.Session()) + if s, ok := stmt.(*ast.NonTransactionalDMLStmt); ok { + rs, err = session.HandleNonTransactionalDML(ctx, s, tk.Session()) } else { rs, err = tk.Session().ExecuteStmt(ctx, stmt) } @@ -297,7 +313,8 @@ func (tk *TestKit) ExecWithContext(ctx context.Context, sql string, args ...inte return nil, errors.Trace(err) } params := expression.Args2Expressions4Test(args...) - rs, err := tk.session.ExecutePreparedStmt(ctx, stmtID, params) + tk.Session().GetSessionVars().SetAlloc(tk.alloc) + rs, err = tk.session.ExecutePreparedStmt(ctx, stmtID, params) if err != nil { return rs, errors.Trace(err) } diff --git a/tests/graceshutdown/main_test.go b/tests/graceshutdown/main_test.go index b480886282c4b..56da5e1a0590a 100644 --- a/tests/graceshutdown/main_test.go +++ b/tests/graceshutdown/main_test.go @@ -25,6 +25,7 @@ func TestMain(m *testing.M) { testsetup.SetupForCommonTest() opts := []goleak.Option{ goleak.IgnoreTopFunction("github.com/golang/glog.(*loggingT).flushDaemon"), + goleak.IgnoreTopFunction("github.com/lestrrat-go/httprc.runFetchWorker"), goleak.IgnoreTopFunction("syscall.syscall6"), } goleak.VerifyTestMain(m, opts...) diff --git a/tests/readonlytest/main_test.go b/tests/readonlytest/main_test.go index 7cdc72764ebb9..53cdfef25456b 100644 --- a/tests/readonlytest/main_test.go +++ b/tests/readonlytest/main_test.go @@ -25,6 +25,7 @@ func TestMain(m *testing.M) { testsetup.SetupForCommonTest() opts := []goleak.Option{ goleak.IgnoreTopFunction("github.com/golang/glog.(*loggingT).flushDaemon"), + goleak.IgnoreTopFunction("github.com/lestrrat-go/httprc.runFetchWorker"), goleak.IgnoreTopFunction("go.etcd.io/etcd/client/pkg/v3/logutil.(*MergeLogger).outputLoop"), goleak.IgnoreTopFunction("go.opencensus.io/stats/view.(*worker).start"), } diff --git a/tests/readonlytest/readonly_test.go b/tests/readonlytest/readonly_test.go index 836debae6ac11..654e2542738e5 100644 --- a/tests/readonlytest/readonly_test.go +++ b/tests/readonlytest/readonly_test.go @@ -158,6 +158,11 @@ func TestRestriction(t *testing.T) { require.Error(t, err) require.Equal(t, err.Error(), PriviledgedErrMsg) + // can't do flashback cluster + _, err = s.udb.Exec("flashback cluster to timestamp ''") + require.Error(t, err) + require.Equal(t, err.Error(), ReadOnlyErrMsg) + // can do some Admin stmts _, err = s.udb.Exec("admin show ddl jobs") require.NoError(t, err) diff --git a/tests/realtikvtest/addindextest/BUILD.bazel b/tests/realtikvtest/addindextest/BUILD.bazel index 99420e080b846..1a9951fd86a51 100644 --- a/tests/realtikvtest/addindextest/BUILD.bazel +++ b/tests/realtikvtest/addindextest/BUILD.bazel @@ -26,8 +26,8 @@ go_test( "add_index_test.go", "concurrent_ddl_test.go", "failpoints_test.go", + "integration_test.go", "main_test.go", - "memory_test.go", "multi_schema_change_test.go", "pitr_test.go", ], diff --git a/tests/realtikvtest/addindextest/integration_test.go b/tests/realtikvtest/addindextest/integration_test.go new file mode 100644 index 0000000000000..19c8977242b3b --- /dev/null +++ b/tests/realtikvtest/addindextest/integration_test.go @@ -0,0 +1,99 @@ +// Copyright 2022 PingCAP, Inc. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +package addindextest_test + +import ( + "fmt" + "strings" + "sync" + "testing" + + "github.com/pingcap/tidb/ddl/ingest" + "github.com/pingcap/tidb/testkit" + "github.com/pingcap/tidb/tests/realtikvtest" + "github.com/stretchr/testify/require" +) + +func TestAddIndexIngestMemoryUsage(t *testing.T) { + store := realtikvtest.CreateMockStoreAndSetup(t) + tk := testkit.NewTestKit(t, store) + tk.MustExec("drop database if exists addindexlit;") + tk.MustExec("create database addindexlit;") + tk.MustExec("use addindexlit;") + tk.MustExec(`set global tidb_ddl_enable_fast_reorg=on;`) + + tk.MustExec("create table t (a int, b int, c int);") + var sb strings.Builder + sb.WriteString("insert into t values ") + size := 100 + for i := 0; i < size; i++ { + sb.WriteString(fmt.Sprintf("(%d, %d, %d)", i, i, i)) + if i != size-1 { + sb.WriteString(",") + } + } + sb.WriteString(";") + tk.MustExec(sb.String()) + require.Equal(t, int64(0), ingest.LitMemRoot.CurrentUsage()) + tk.MustExec("alter table t add index idx(a);") + tk.MustExec("alter table t add unique index idx1(b);") + tk.MustExec("admin check table t;") + require.Equal(t, int64(0), ingest.LitMemRoot.CurrentUsage()) +} + +func TestAddIndexIngestLimitOneBackend(t *testing.T) { + store := realtikvtest.CreateMockStoreAndSetup(t) + tk := testkit.NewTestKit(t, store) + tk.MustExec("drop database if exists addindexlit;") + tk.MustExec("create database addindexlit;") + tk.MustExec("use addindexlit;") + tk.MustExec(`set global tidb_ddl_enable_fast_reorg=on;`) + tk.MustExec("create table t (a int, b int);") + tk.MustExec("insert into t values (1, 1), (2, 2), (3, 3);") + + tk2 := testkit.NewTestKit(t, store) + tk2.MustExec("use addindexlit;") + tk2.MustExec(`set global tidb_ddl_enable_fast_reorg=on;`) + tk2.MustExec("create table t2 (a int, b int);") + tk2.MustExec("insert into t2 values (1, 1), (2, 2), (3, 3);") + + // Mock there is a running ingest job. + ingest.LitBackCtxMgr.Store(65535, &ingest.BackendContext{}) + wg := &sync.WaitGroup{} + wg.Add(2) + go func() { + tk.MustExec("alter table t add index idx(a);") + wg.Done() + }() + go func() { + tk2.MustExec("alter table t2 add index idx_b(b);") + wg.Done() + }() + wg.Wait() + rows := tk.MustQuery("admin show ddl jobs 2;").Rows() + require.Len(t, rows, 2) + require.False(t, strings.Contains(rows[0][3].(string) /* job_type */, "ingest")) + require.False(t, strings.Contains(rows[1][3].(string) /* job_type */, "ingest")) + require.Equal(t, rows[0][7].(string) /* row_count */, "3") + require.Equal(t, rows[1][7].(string) /* row_count */, "3") + + // Remove the running ingest job. + ingest.LitBackCtxMgr.Delete(65535) + tk.MustExec("alter table t add index idx_a(a);") + rows = tk.MustQuery("admin show ddl jobs 1;").Rows() + require.Len(t, rows, 1) + require.True(t, strings.Contains(rows[0][3].(string) /* job_type */, "ingest")) + require.Equal(t, rows[0][7].(string) /* row_count */, "3") +} diff --git a/tests/realtikvtest/addindextest/memory_test.go b/tests/realtikvtest/addindextest/memory_test.go deleted file mode 100644 index 8e482458d4955..0000000000000 --- a/tests/realtikvtest/addindextest/memory_test.go +++ /dev/null @@ -1,53 +0,0 @@ -// Copyright 2022 PingCAP, Inc. -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. - -package addindextest - -import ( - "fmt" - "strings" - "testing" - - "github.com/pingcap/tidb/ddl/ingest" - "github.com/pingcap/tidb/testkit" - "github.com/pingcap/tidb/tests/realtikvtest" - "github.com/stretchr/testify/require" -) - -func TestLitAddIndexMemoryUsage(t *testing.T) { - store := realtikvtest.CreateMockStoreAndSetup(t) - tk := testkit.NewTestKit(t, store) - tk.MustExec("drop database if exists addindexlit;") - tk.MustExec("create database addindexlit;") - tk.MustExec("use addindexlit;") - tk.MustExec(`set global tidb_ddl_enable_fast_reorg=on;`) - - tk.MustExec("create table t (a int, b int, c int);") - var sb strings.Builder - sb.WriteString("insert into t values ") - size := 100 - for i := 0; i < size; i++ { - sb.WriteString(fmt.Sprintf("(%d, %d, %d)", i, i, i)) - if i != size-1 { - sb.WriteString(",") - } - } - sb.WriteString(";") - tk.MustExec(sb.String()) - require.Equal(t, int64(0), ingest.LitMemRoot.CurrentUsage()) - tk.MustExec("alter table t add index idx(a);") - tk.MustExec("alter table t add unique index idx1(b);") - tk.MustExec("admin check table t;") - require.Equal(t, int64(0), ingest.LitMemRoot.CurrentUsage()) -} diff --git a/tests/realtikvtest/brietest/BUILD.bazel b/tests/realtikvtest/brietest/BUILD.bazel index f2c70ae0607e2..49ea32406c7d6 100644 --- a/tests/realtikvtest/brietest/BUILD.bazel +++ b/tests/realtikvtest/brietest/BUILD.bazel @@ -18,11 +18,14 @@ go_test( "//sessionctx/binloginfo", "//store/mockstore/mockcopr", "//testkit", + "//testkit/testsetup", "//tests/realtikvtest", "@com_github_pingcap_failpoint//:failpoint", "@com_github_pingcap_tipb//go-binlog", "@com_github_stretchr_testify//require", "@com_github_tikv_client_go_v2//oracle", + "@com_github_tikv_client_go_v2//util", "@org_golang_google_grpc//:grpc", + "@org_uber_go_goleak//:goleak", ], ) diff --git a/tests/realtikvtest/brietest/flashback_test.go b/tests/realtikvtest/brietest/flashback_test.go index 1f490c30e0a2f..322359fff411a 100644 --- a/tests/realtikvtest/brietest/flashback_test.go +++ b/tests/realtikvtest/brietest/flashback_test.go @@ -26,6 +26,7 @@ import ( "github.com/pingcap/tidb/tests/realtikvtest" "github.com/stretchr/testify/require" "github.com/tikv/client-go/v2/oracle" + tikvutil "github.com/tikv/client-go/v2/util" ) // MockGC is used to make GC work in the test environment. @@ -42,9 +43,8 @@ func MockGC(tk *testkit.TestKit) (string, string, string, func()) { // disable emulator GC. // Otherwise emulator GC will delete table record as soon as possible after execute drop table ddl. ddlutil.EmulatorGCDisable() - gcTimeFormat := "20060102-15:04:05 -0700 MST" - timeBeforeDrop := time.Now().Add(0 - 48*60*60*time.Second).Format(gcTimeFormat) - timeAfterDrop := time.Now().Add(48 * 60 * 60 * time.Second).Format(gcTimeFormat) + timeBeforeDrop := time.Now().Add(0 - 48*60*60*time.Second).Format(tikvutil.GCTimeFormat) + timeAfterDrop := time.Now().Add(48 * 60 * 60 * time.Second).Format(tikvutil.GCTimeFormat) safePointSQL := `INSERT HIGH_PRIORITY INTO mysql.tidb VALUES ('tikv_gc_safe_point', '%[1]s', '') ON DUPLICATE KEY UPDATE variable_value = '%[1]s'` @@ -54,7 +54,6 @@ func MockGC(tk *testkit.TestKit) (string, string, string, func()) { } func TestFlashback(t *testing.T) { - t.Skip("skip this test because TestFlashback isn't ready.") if *realtikvtest.WithRealTiKV { store := realtikvtest.CreateMockStoreAndSetup(t) diff --git a/tests/realtikvtest/brietest/main_test.go b/tests/realtikvtest/brietest/main_test.go index 6a022c35323b7..12b7cda9f1d1e 100644 --- a/tests/realtikvtest/brietest/main_test.go +++ b/tests/realtikvtest/brietest/main_test.go @@ -17,9 +17,23 @@ package brietest import ( "testing" + "github.com/pingcap/tidb/testkit/testsetup" "github.com/pingcap/tidb/tests/realtikvtest" + "go.uber.org/goleak" ) func TestMain(m *testing.M) { + opts := []goleak.Option{ + goleak.IgnoreTopFunction("go.opencensus.io/stats/view.(*worker).start"), + goleak.IgnoreTopFunction("github.com/golang/glog.(*loggingT).flushDaemon"), + goleak.IgnoreTopFunction("github.com/lestrrat-go/httprc.runFetchWorker"), + goleak.IgnoreTopFunction("google.golang.org/grpc.(*ccBalancerWrapper).watcher"), + goleak.IgnoreTopFunction("google.golang.org/grpc/internal/transport.(*http2Client).keepalive"), + goleak.IgnoreTopFunction("google.golang.org/grpc/internal/transport.(*controlBuffer).get"), + goleak.IgnoreTopFunction("net/http.(*persistConn).writeLoop"), + goleak.IgnoreTopFunction("internal/poll.runtime_pollWait"), + } + testsetup.SetupForCommonTest() + goleak.VerifyTestMain(m, opts...) realtikvtest.RunTestMain(m) } diff --git a/tests/realtikvtest/pessimistictest/pessimistic_test.go b/tests/realtikvtest/pessimistictest/pessimistic_test.go index bae0baf407be7..5e2da1d200651 100644 --- a/tests/realtikvtest/pessimistictest/pessimistic_test.go +++ b/tests/realtikvtest/pessimistictest/pessimistic_test.go @@ -3039,6 +3039,12 @@ func TestAmendForColumnChange(t *testing.T) { } // Start a pessimistic transaction for partition table, the amend should fail. + if i == 5 { + // alter table t_part modify column c_int bigint(20) default 100 + // Unsupported modify column: can't change the partitioning column, since it would require reorganize all partitions + // Skip this case + continue + } tk.MustExec("begin pessimistic") tk.MustExec(`insert into t_part values(5, "555", "2000-01-05", "2020-01-05", "5.5", "555.555", 5.5)`) tk2.MustExec(colChangeFunc(true, i)) @@ -3245,7 +3251,7 @@ func TestLazyUniquenessCheck(t *testing.T) { tk.MustExec("insert into t4 values (1, 2), (2, 2)") tk.MustQuery("select * from t4 order by id").Check(testkit.Rows("1 2", "2 2")) err = tk.ExecToErr("delete from t4 where id = 1") - require.ErrorContains(t, err, "transaction aborted because lazy uniqueness check is enabled and an error occurred: [kv:1062]Duplicate entry '1' for key 'PRIMARY'") + require.ErrorContains(t, err, "transaction aborted because lazy uniqueness check is enabled and an error occurred: [kv:1062]Duplicate entry '1' for key 't4.PRIMARY'") tk.MustExec("commit") tk.MustExec("admin check table t4") tk.MustQuery("select * from t4 order by id").Check(testkit.Rows("1 1")) @@ -3266,7 +3272,7 @@ func TestLazyUniquenessCheck(t *testing.T) { tk.MustExec("begin pessimistic") tk.MustExec("insert into t5 values (2, 1)") err = tk.ExecToErr("delete from t5") - require.ErrorContains(t, err, "transaction aborted because lazy uniqueness check is enabled and an error occurred: [kv:1062]Duplicate entry '1' for key 'i1'") + require.ErrorContains(t, err, "transaction aborted because lazy uniqueness check is enabled and an error occurred: [kv:1062]Duplicate entry '1' for key 't5.i1'") require.False(t, tk.Session().GetSessionVars().InTxn()) // case: update unique key, but conflict exists before the txn @@ -3275,7 +3281,7 @@ func TestLazyUniquenessCheck(t *testing.T) { tk.MustExec("begin pessimistic") tk.MustExec("update t5 set uk = 3 where id = 1") err = tk.ExecToErr("commit") - require.ErrorContains(t, err, "Duplicate entry '3' for key 'i1'") + require.ErrorContains(t, err, "Duplicate entry '3' for key 't5.i1'") tk.MustExec("admin check table t5") // case: update unique key, but conflict with concurrent write @@ -3294,7 +3300,7 @@ func TestLazyUniquenessCheck(t *testing.T) { tk.MustExec("begin pessimistic") tk.MustExec("insert into t5 values (3, 1) on duplicate key update uk = 3") err = tk.ExecToErr("commit") - require.ErrorContains(t, err, "Duplicate entry '3' for key 'i1'") + require.ErrorContains(t, err, "Duplicate entry '3' for key 't5.i1'") tk.MustExec("admin check table t5") // case: insert on duplicate update unique key, but conflict with concurrent write @@ -3352,7 +3358,7 @@ func TestLazyUniquenessCheckWithStatementRetry(t *testing.T) { tk2.MustExec("insert into t5 values (2, 3)") err := tk.ExecToErr("update t5 set id = 10 where uk = 3") // write conflict -> unset PresumeKNE -> retry require.ErrorContains(t, err, "transaction aborted because lazy uniqueness") - require.ErrorContains(t, err, "Duplicate entry '3' for key 'i1'") + require.ErrorContains(t, err, "Duplicate entry '3' for key 't5.i1'") require.False(t, tk.Session().GetSessionVars().InTxn()) tk.MustExec("admin check table t5") @@ -3363,7 +3369,7 @@ func TestLazyUniquenessCheckWithStatementRetry(t *testing.T) { tk.MustExec("insert into t5 values (3, 3)") // skip handle=3, uk=3 tk2.MustExec("insert into t5 values (2, 3)") err = tk.ExecToErr("update t5 set id = id + 10") // write conflict -> unset PresumeKNE -> retry - require.ErrorContains(t, err, "Duplicate entry '3' for key 'i1'") + require.ErrorContains(t, err, "Duplicate entry '3' for key 't5.i1'") require.False(t, tk.Session().GetSessionVars().InTxn()) tk.MustExec("admin check table t5") } @@ -3548,7 +3554,7 @@ func TestLazyUniquenessCheckWithInconsistentReadResult(t *testing.T) { tk.MustExec("insert into t2 values (2, 1), (3, 3)") tk.MustQuery("select * from t2 use index(primary) for update").Check(testkit.Rows("1 1", "2 1", "3 3")) err := tk.ExecToErr("commit") - require.ErrorContains(t, err, "Duplicate entry '1' for key 'i1'") + require.ErrorContains(t, err, "Duplicate entry '1' for key 't2.i1'") tk.MustQuery("select * from t2 use index(primary)").Check(testkit.Rows("1 1")) tk.MustExec("admin check table t2") diff --git a/tests/realtikvtest/sessiontest/session_fail_test.go b/tests/realtikvtest/sessiontest/session_fail_test.go index c9f31a228f43e..919932e6f9357 100644 --- a/tests/realtikvtest/sessiontest/session_fail_test.go +++ b/tests/realtikvtest/sessiontest/session_fail_test.go @@ -197,3 +197,10 @@ func TestAutoCommitNeedNotLinearizability(t *testing.T) { tk.MustExec("COMMIT") }() } + +func TestKill(t *testing.T) { + store := realtikvtest.CreateMockStoreAndSetup(t) + + tk := testkit.NewTestKit(t, store) + tk.MustExec("kill connection_id();") +} diff --git a/tests/realtikvtest/statisticstest/BUILD.bazel b/tests/realtikvtest/statisticstest/BUILD.bazel index e9d8f215e7939..1203b0366c08b 100644 --- a/tests/realtikvtest/statisticstest/BUILD.bazel +++ b/tests/realtikvtest/statisticstest/BUILD.bazel @@ -12,7 +12,9 @@ go_test( deps = [ "//statistics/handle", "//testkit", + "//testkit/testsetup", "//tests/realtikvtest", "@com_github_stretchr_testify//require", + "@org_uber_go_goleak//:goleak", ], ) diff --git a/tests/realtikvtest/statisticstest/main_test.go b/tests/realtikvtest/statisticstest/main_test.go index 3010d3ee88066..5fef5b584be04 100644 --- a/tests/realtikvtest/statisticstest/main_test.go +++ b/tests/realtikvtest/statisticstest/main_test.go @@ -17,9 +17,20 @@ package statisticstest import ( "testing" + "github.com/pingcap/tidb/testkit/testsetup" "github.com/pingcap/tidb/tests/realtikvtest" + "go.uber.org/goleak" ) func TestMain(m *testing.M) { + opts := []goleak.Option{ + goleak.IgnoreTopFunction("github.com/golang/glog.(*loggingT).flushDaemon"), + goleak.IgnoreTopFunction("github.com/lestrrat-go/httprc.runFetchWorker"), + goleak.IgnoreTopFunction("google.golang.org/grpc.(*ccBalancerWrapper).watcher"), + goleak.IgnoreTopFunction("internal/poll.runtime_pollWait"), + goleak.IgnoreTopFunction("net/http.(*persistConn).writeLoop"), + } + testsetup.SetupForCommonTest() + goleak.VerifyTestMain(m, opts...) realtikvtest.RunTestMain(m) } diff --git a/tests/realtikvtest/testkit.go b/tests/realtikvtest/testkit.go index 080a25958c508..b3ae5f3c6a2ac 100644 --- a/tests/realtikvtest/testkit.go +++ b/tests/realtikvtest/testkit.go @@ -55,6 +55,7 @@ func RunTestMain(m *testing.M) { tikv.EnableFailpoints() opts := []goleak.Option{ goleak.IgnoreTopFunction("github.com/golang/glog.(*loggingT).flushDaemon"), + goleak.IgnoreTopFunction("github.com/lestrrat-go/httprc.runFetchWorker"), goleak.IgnoreTopFunction("github.com/tikv/client-go/v2/internal/retry.newBackoffFn.func1"), goleak.IgnoreTopFunction("go.etcd.io/etcd/client/v3.waitRetryBackoff"), goleak.IgnoreTopFunction("go.etcd.io/etcd/client/pkg/v3/logutil.(*MergeLogger).outputLoop"), diff --git a/tests/realtikvtest/txntest/txn_test.go b/tests/realtikvtest/txntest/txn_test.go index 1985dc9d29235..908329d32f618 100644 --- a/tests/realtikvtest/txntest/txn_test.go +++ b/tests/realtikvtest/txntest/txn_test.go @@ -203,3 +203,51 @@ func TestWriteConflictMessage(t *testing.T) { require.Contains(t, err.Error(), "tableName=test.t2, handle={hello}") require.Contains(t, err.Error(), "reason=Optimistic") } + +func TestDuplicateErrorMessage(t *testing.T) { + store := realtikvtest.CreateMockStoreAndSetup(t) + tk := testkit.NewTestKit(t, store) + tk2 := testkit.NewTestKit(t, store) + tk.MustExec("use test") + tk.MustExec("set @@tx_isolation='read-committed'") + tk2.MustExec("use test") + tk.MustExec("set @@tidb_constraint_check_in_place_pessimistic=off") + tk.MustExec("create table t (c int primary key, v int)") + tk.MustExec("create table t2 (c int primary key, v int)") + tk.MustExec("begin pessimistic") + tk.MustExec("insert into t values (1, 1)") + tk2.MustExec("insert into t values (1, 1)") + tk2.MustExec("insert into t2 values (1, 2)") + tk.MustContainErrMsg("update t set v = v + 1 where c = 1", "Duplicate entry '1' for key 't.PRIMARY'") + + tk.MustExec("create table t3 (c int, v int, unique key i1(v))") + tk.MustExec("create table t4 (c int, v int, unique key i1(v))") + tk.MustExec("begin pessimistic") + tk.MustExec("insert into t3 values (1, 1)") + tk2.MustExec("insert into t3 values (1, 1)") + tk2.MustExec("insert into t4 values (1, 2)") + tk.MustContainErrMsg("update t3 set c = c + 1 where v = 1", "Duplicate entry '1' for key 't3.i1'") +} + +func TestAssertionWhenPessimisticLockLost(t *testing.T) { + store := realtikvtest.CreateMockStoreAndSetup(t) + tk1 := testkit.NewTestKit(t, store) + tk2 := testkit.NewTestKit(t, store) + tk1.MustExec("set @@tidb_constraint_check_in_place_pessimistic=0") + tk1.MustExec("set @@tidb_txn_assertion_level=strict") + tk2.MustExec("set @@tidb_constraint_check_in_place_pessimistic=0") + tk2.MustExec("set @@tidb_txn_assertion_level=strict") + tk1.MustExec("use test") + tk2.MustExec("use test") + tk1.MustExec("create table t (id int primary key, val text)") + tk1.MustExec("begin pessimistic") + tk1.MustExec("select * from t where id = 1 for update") + tk2.MustExec("begin pessimistic") + tk2.MustExec("insert into t values (1, 'b')") + tk2.MustExec("insert into t values (2, 'b')") + tk2.MustExec("commit") + tk1.MustExec("select * from t where id = 2 for update") + tk1.MustExec("insert into t values (1, 'a') on duplicate key update val = concat(val, 'a')") + err := tk1.ExecToErr("commit") + require.NotContains(t, err.Error(), "assertion") +} diff --git a/tidb-binlog/driver/example/kafkaReader/pom.xml b/tidb-binlog/driver/example/kafkaReader/pom.xml index d71b0558e6f5a..ef87a96a80477 100644 --- a/tidb-binlog/driver/example/kafkaReader/pom.xml +++ b/tidb-binlog/driver/example/kafkaReader/pom.xml @@ -29,7 +29,7 @@ org.apache.kafka kafka_2.12 - 3.1.1 + 3.2.3 diff --git a/tidb-server/BUILD.bazel b/tidb-server/BUILD.bazel index b5594261d3ba0..960f68a2b597d 100644 --- a/tidb-server/BUILD.bazel +++ b/tidb-server/BUILD.bazel @@ -12,6 +12,7 @@ go_library( "//domain", "//domain/infosync", "//executor", + "//extension", "//kv", "//metrics", "//parser/mysql", @@ -32,11 +33,11 @@ go_library( "//store/mockstore/unistore/metrics", "//tidb-binlog/pump_client", "//util", + "//util/chunk", "//util/cpuprofile", "//util/deadlockhistory", "//util/disk", "//util/domainutil", - "//util/gctuner", "//util/kvcache", "//util/logutil", "//util/memory", @@ -86,12 +87,6 @@ go_binary( visibility = ["//visibility:public"], ) -go_binary( - name = "tidb-server-raw", - embed = [":tidb-server_lib"], - visibility = ["//visibility:public"], -) - go_test( name = "tidb-server_test", timeout = "short", diff --git a/tidb-server/main.go b/tidb-server/main.go index 13d7e59f8e3d1..9b1e58b736844 100644 --- a/tidb-server/main.go +++ b/tidb-server/main.go @@ -37,6 +37,7 @@ import ( "github.com/pingcap/tidb/domain" "github.com/pingcap/tidb/domain/infosync" "github.com/pingcap/tidb/executor" + "github.com/pingcap/tidb/extension" "github.com/pingcap/tidb/kv" "github.com/pingcap/tidb/metrics" "github.com/pingcap/tidb/parser/mysql" @@ -57,11 +58,11 @@ import ( uni_metrics "github.com/pingcap/tidb/store/mockstore/unistore/metrics" pumpcli "github.com/pingcap/tidb/tidb-binlog/pump_client" "github.com/pingcap/tidb/util" + "github.com/pingcap/tidb/util/chunk" "github.com/pingcap/tidb/util/cpuprofile" "github.com/pingcap/tidb/util/deadlockhistory" "github.com/pingcap/tidb/util/disk" "github.com/pingcap/tidb/util/domainutil" - "github.com/pingcap/tidb/util/gctuner" "github.com/pingcap/tidb/util/kvcache" "github.com/pingcap/tidb/util/logutil" "github.com/pingcap/tidb/util/memory" @@ -189,6 +190,8 @@ func main() { checkTempStorageQuota() } setupLog() + setupExtensions() + err := cpuprofile.StartCPUProfiler() terror.MustNil(err) @@ -205,7 +208,6 @@ func main() { printInfo() setupBinlogClient() setupMetrics() - setupGCTuner() storage, dom := createStoreAndDomain() svr := createServer(storage, dom) @@ -669,6 +671,7 @@ func setGlobalVars() { variable.SetSysVar(variable.TiDBIsolationReadEngines, strings.Join(cfg.IsolationRead.Engines, ",")) variable.SetSysVar(variable.TiDBEnforceMPPExecution, variable.BoolToOnOff(config.GetGlobalConfig().Performance.EnforceMPP)) variable.MemoryUsageAlarmRatio.Store(cfg.Instance.MemoryUsageAlarmRatio) + variable.SetSysVar(variable.TiDBConstraintCheckInPlacePessimistic, variable.BoolToOnOff(cfg.PessimisticTxn.ConstraintCheckInPlacePessimistic)) if hostname, err := os.Hostname(); err == nil { variable.SetSysVar(variable.Hostname, hostname) } @@ -714,6 +717,7 @@ func setGlobalVars() { deadlockhistory.GlobalDeadlockHistory.Resize(cfg.PessimisticTxn.DeadlockHistoryCapacity) txninfo.Recorder.ResizeSummaries(cfg.TrxSummary.TransactionSummaryCapacity) txninfo.Recorder.SetMinDuration(time.Duration(cfg.TrxSummary.TransactionIDDigestMinDuration) * time.Millisecond) + chunk.InitChunkAllocSize(cfg.TiDBMaxReuseChunk, cfg.TiDBMaxReuseColumn) } func setupLog() { @@ -725,6 +729,16 @@ func setupLog() { util.InternalHTTPClient() } +func setupExtensions() *extension.Extensions { + err := extension.Setup() + terror.MustNil(err) + + extensions, err := extension.GetExtensions() + terror.MustNil(err) + + return extensions +} + func printInfo() { // Make sure the TiDB info is always printed. level := log.GetLevel() @@ -783,15 +797,6 @@ func setupTracing() { opentracing.SetGlobalTracer(tracer) } -func setupGCTuner() { - limit, err := memory.MemTotal() - if err != nil { - log.Fatal("setupGCTuner failed", zap.Error(err)) - } - threshold := limit * 7 / 10 - gctuner.Tuning(threshold) -} - func closeDomainAndStorage(storage kv.Storage, dom *domain.Domain) { tikv.StoreShuttingDown(1) dom.Close() diff --git a/tidb-server/main_test.go b/tidb-server/main_test.go index a6a0003aedc65..cb0c53f4d2443 100644 --- a/tidb-server/main_test.go +++ b/tidb-server/main_test.go @@ -33,7 +33,9 @@ func TestMain(m *testing.M) { testsetup.SetupForCommonTest() opts := []goleak.Option{ goleak.IgnoreTopFunction("github.com/golang/glog.(*loggingT).flushDaemon"), + goleak.IgnoreTopFunction("github.com/lestrrat-go/httprc.runFetchWorker"), goleak.IgnoreTopFunction("go.etcd.io/etcd/client/pkg/v3/logutil.(*MergeLogger).outputLoop"), + goleak.IgnoreTopFunction("go.opencensus.io/stats/view.(*worker).start"), } goleak.VerifyTestMain(m, opts...) } diff --git a/tools/check/check-bazel-prepare.sh b/tools/check/check-bazel-prepare.sh new file mode 100755 index 0000000000000..8e9da57fc824b --- /dev/null +++ b/tools/check/check-bazel-prepare.sh @@ -0,0 +1,31 @@ +#!/usr/bin/env bash +# Copyright 2022 PingCAP, Inc. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# +# set is used to set the environment variables. +# -e: exit immediately when a command returning a non-zero exit code. +# -u: treat unset variables as an error. +# -o pipefail: sets the exit code of a pipeline to that of the rightmost command to exit with a non-zero status, +# or to zero if all commands of the pipeline exit successfully. +set -euo pipefail + +before_checksum=`find . -type f \( -name *.bazel -o -name *.bzl \) -exec md5sum {} \;| sort -k 2` +make bazel_prepare +after_checksum=`find . -type f \( -name *.bazel -o -name *.bzl \) -exec md5sum {} \;| sort -k 2` +if [ "$before_checksum" != "$after_checksum" ] +then + echo "Please run \`make bazel_prepare\` to update \`.bazel\` files" + diff <(echo "$before_checksum") <(echo "$after_checksum") + exit 1 +fi diff --git a/tools/check/ut.go b/tools/check/ut.go index f957f3ea75e94..08b31d243a157 100644 --- a/tools/check/ut.go +++ b/tools/check/ut.go @@ -906,9 +906,12 @@ func listNewTestCases(pkg string) ([]string, error) { // session.test -test.list Test cmd := exec.Command(exe, "-test.list", "Test") cmd.Dir = path.Join(workDir, pkg) - res, err := cmdToLines(cmd) - if err != nil { - return nil, withTrace(err) + var buf bytes.Buffer + cmd.Stdout = &buf + err := cmd.Run() + res := strings.Split(buf.String(), "\n") + if err != nil && len(res) == 0 { + fmt.Println("err ==", err) } return filter(res, func(s string) bool { return strings.HasPrefix(s, "Test") && s != "TestT" && s != "TestBenchDaily" diff --git a/types/core_time.go b/types/core_time.go index 3a0cd42ed1c3e..aaf3f5711fea9 100644 --- a/types/core_time.go +++ b/types/core_time.go @@ -184,42 +184,6 @@ func (t CoreTime) GoTime(loc *gotime.Location) (gotime.Time, error) { return tm, nil } -// FindZoneTransition check for one Time Zone transition within +/- 4h -// Currently the needed functions are not exported, if gotime.Location.lookup would be exported -// then it would be easy to use that directly -func FindZoneTransition(tIn gotime.Time) (gotime.Time, error) { - // Check most common case first, DST transition on full hour. - // round truncates away from zero! - t2 := tIn.Round(gotime.Hour).Add(-1 * gotime.Hour) - t1 := t2.Add(-1 * gotime.Second) - _, offset1 := t1.Zone() - _, offset2 := t2.Zone() - if offset1 != offset2 { - return t2, nil - } - - // Check if any offset change? - t1 = tIn.Add(-4 * gotime.Hour) - t2 = tIn.Add(4 * gotime.Hour) - _, offset1 = t1.Zone() - _, offset2 = t2.Zone() - if offset1 == offset2 { - return tIn, errors.Trace(ErrWrongValue.GenWithStackByArgs(TimeStr, tIn)) - } - - // Check generic case, like for 'Australia/Lord_Howe' - for t2.After(t1.Add(gotime.Second)) { - t := t1.Add(t2.Sub(t1) / 2).Round(gotime.Second) - _, offset := t.Zone() - if offset == offset1 { - t1 = t - } else { - t2 = t - } - } - return t2, nil -} - // AdjustedGoTime converts Time to GoTime and adjust for invalid DST times // like during the DST change with increased offset, // normally moving to Daylight Saving Time. @@ -230,11 +194,18 @@ func (t CoreTime) AdjustedGoTime(loc *gotime.Location) (gotime.Time, error) { return tm, nil } - tAdj, err2 := FindZoneTransition(tm) - if err2 == nil { - return tAdj, nil + // The converted go time did not map back to the same time, probably it was between a + // daylight saving transition, adjust the time to the closest Zone bound. + start, end := tm.ZoneBounds() + // time zone transitions are normally 1 hour, allow up to 4 hours before returning error + if start.Sub(tm).Abs().Hours() > 4.0 && end.Sub(tm).Abs().Hours() > 4.0 { + return tm, errors.Trace(ErrWrongValue.GenWithStackByArgs(TimeStr, tm)) + } + // use the closest transition time + if tm.Sub(start).Abs() <= tm.Sub(end).Abs() { + return start, nil } - return tm, err + return end, nil } // IsLeapYear returns if it's leap year. diff --git a/types/core_time_test.go b/types/core_time_test.go index 18d21ddaf8563..999a5504f0899 100644 --- a/types/core_time_test.go +++ b/types/core_time_test.go @@ -293,45 +293,6 @@ func TestWeekday(t *testing.T) { } } -func TestFindZoneTransition(t *testing.T) { - tests := []struct { - TZ string - dt string - Expect string - Success bool - }{ - {"Australia/Lord_Howe", "2020-06-29 03:45:00", "", false}, - {"Australia/Lord_Howe", "2020-10-04 02:15:00", "2020-10-04 02:30:00 +11 +1100", true}, - {"Australia/Lord_Howe", "2020-10-04 02:29:59", "2020-10-04 02:30:00 +11 +1100", true}, - {"Australia/Lord_Howe", "2020-10-04 02:29:59.99", "2020-10-04 02:30:00 +11 +1100", true}, - {"Australia/Lord_Howe", "2020-10-04 02:30:00.0001", "2020-10-04 02:30:00 +11 +1100", true}, - {"Australia/Lord_Howe", "2020-10-04 02:30:00", "2020-10-04 02:30:00 +11 +1100", true}, - {"Australia/Lord_Howe", "2020-10-04 02:30:01", "2020-10-04 02:30:00 +11 +1100", true}, - {"Europe/Vilnius", "2020-03-29 03:45:00", "2020-03-29 04:00:00 EEST +0300", true}, - {"Europe/Vilnius", "2020-10-25 03:45:00", "2020-10-25 03:00:00 EET +0200", true}, - {"Europe/Vilnius", "2020-06-29 03:45:00", "", false}, - {"Europe/Amsterdam", "2020-03-29 02:45:00", "2020-03-29 03:00:00 CEST +0200", true}, - {"Europe/Amsterdam", "2020-10-25 02:35:00", "2020-10-25 02:00:00 CET +0100", true}, - {"Europe/Amsterdam", "2020-03-29 02:59:59", "2020-03-29 03:00:00 CEST +0200", true}, - {"Europe/Amsterdam", "2020-03-29 02:59:59.999999999", "2020-03-29 03:00:00 CEST +0200", true}, - {"Europe/Amsterdam", "2020-03-29 03:00:00.000000001", "2020-03-29 03:00:00 CEST +0200", true}, - } - - for _, tt := range tests { - loc, err := time.LoadLocation(tt.TZ) - require.NoError(t, err) - tm, err := time.ParseInLocation("2006-01-02 15:04:05", tt.dt, loc) - require.NoError(t, err) - tp, err := FindZoneTransition(tm) - if !tt.Success { - require.Error(t, err) - } else { - require.NoError(t, err) - require.Equal(t, tt.Expect, tp.Format("2006-01-02 15:04:05.999999999 MST -0700")) - } - } -} - func TestAdjustedGoTime(t *testing.T) { tests := []struct { TZ string @@ -361,9 +322,9 @@ func TestAdjustedGoTime(t *testing.T) { require.NoError(t, err) tp, err := tt.dt.AdjustedGoTime(loc) if !tt.Success { - require.Error(t, err) + require.Error(t, err, tp.Format("2006-01-02 15:04:05.999999999 MST -0700")) } else { - require.NoError(t, err) + require.NoError(t, err, tp.Format("2006-01-02 15:04:05.999999999 MST -0700")) require.Equal(t, tt.Expect, tp.Format("2006-01-02 15:04:05.999999999 MST -0700")) } } diff --git a/types/json_binary_functions.go b/types/json_binary_functions.go index 71e6e1854ff56..2b02d5a0f65e7 100644 --- a/types/json_binary_functions.go +++ b/types/json_binary_functions.go @@ -244,7 +244,7 @@ func (bj BinaryJSON) Extract(pathExprList []JSONPathExpression) (ret BinaryJSON, found = true ret = buf[0] // Fix https://github.com/pingcap/tidb/issues/30352 - if pathExprList[0].ContainsAnyAsterisk() { + if pathExprList[0].CouldMatchMultipleValues() { ret = buildBinaryJSONArray(buf) } } else { @@ -270,20 +270,32 @@ func (bj BinaryJSON) extractTo(buf []BinaryJSON, pathExpr JSONPathExpression, du return append(buf, bj) } currentLeg, subPathExpr := pathExpr.popOneLeg() - if currentLeg.typ == jsonPathLegIndex { + if currentLeg.typ == jsonPathLegArraySelection { if bj.TypeCode != JSONTypeCodeArray { - if currentLeg.arrayIndex <= 0 && currentLeg.arrayIndex != arrayIndexAsterisk { - buf = bj.extractTo(buf, subPathExpr, dup, one) + // If the current object is not an array, still append them if the selection includes + // 0. But for asterisk, it still returns NULL. + // + // don't call `getIndexRange` or `getIndexFromStart`, they will panic if the argument + // is not array. + switch selection := currentLeg.arraySelection.(type) { + case jsonPathArraySelectionIndex: + if selection.index == 0 { + buf = bj.extractTo(buf, subPathExpr, dup, one) + } + case jsonPathArraySelectionRange: + // for [0 to Non-negative Number] and [0 to last], it extracts itself + if selection.start == 0 && selection.end >= -1 { + buf = bj.extractTo(buf, subPathExpr, dup, one) + } } return buf } - elemCount := bj.GetElemCount() - if currentLeg.arrayIndex == arrayIndexAsterisk { - for i := 0; i < elemCount && !jsonFinished(buf, one); i++ { + + start, end := currentLeg.arraySelection.getIndexRange(bj) + if start >= 0 && start <= end { + for i := start; i <= end; i++ { buf = bj.arrayGetElem(i).extractTo(buf, subPathExpr, dup, one) } - } else if currentLeg.arrayIndex < elemCount { - buf = bj.arrayGetElem(currentLeg.arrayIndex).extractTo(buf, subPathExpr, dup, one) } } else if currentLeg.typ == jsonPathLegKey && bj.TypeCode == JSONTypeCodeObject { elemCount := bj.GetElemCount() @@ -389,7 +401,7 @@ func (bj BinaryJSON) Modify(pathExprList []JSONPathExpression, values []BinaryJS return retj, errors.New("Incorrect parameter count") } for _, pathExpr := range pathExprList { - if pathExpr.flags.containsAnyAsterisk() { + if pathExpr.flags.containsAnyAsterisk() || pathExpr.flags.containsAnyRange() { // TODO: should return 3149(42000) return retj, errors.New("Invalid path expression") } @@ -424,7 +436,7 @@ func (bj BinaryJSON) ArrayInsert(pathExpr JSONPathExpression, value BinaryJSON) return bj, ErrInvalidJSONPathArrayCell } parentPath, lastLeg := pathExpr.popOneLastLeg() - if lastLeg.typ != jsonPathLegIndex { + if lastLeg.typ != jsonPathLegArraySelection { return bj, ErrInvalidJSONPathArrayCell } // Find the target array @@ -433,7 +445,13 @@ func (bj BinaryJSON) ArrayInsert(pathExpr JSONPathExpression, value BinaryJSON) return bj, nil } - idx := lastLeg.arrayIndex + idx := 0 + switch selection := lastLeg.arraySelection.(type) { + case jsonPathArraySelectionIndex: + idx = selection.index.getIndexFromStart(obj) + default: + return bj, ErrInvalidJSONPathArrayCell + } count := obj.GetElemCount() if idx >= count { idx = count @@ -465,7 +483,7 @@ func (bj BinaryJSON) Remove(pathExprList []JSONPathExpression) (BinaryJSON, erro // TODO: should return 3153(42000) return bj, errors.New("Invalid path expression") } - if pathExpr.flags.containsAnyAsterisk() { + if pathExpr.flags.containsAnyAsterisk() || pathExpr.flags.containsAnyRange() { // TODO: should return 3149(42000) return bj, errors.New("Invalid path expression") } @@ -529,7 +547,7 @@ func (bm *binaryModifier) doInsert(path JSONPathExpression, newBj BinaryJSON) { return } parentBj := result[0] - if lastLeg.typ == jsonPathLegIndex { + if lastLeg.typ == jsonPathLegArraySelection { bm.modifyPtr = &parentBj.Value[0] if parentBj.TypeCode != JSONTypeCodeArray { bm.modifyValue = buildBinaryJSONArray([]BinaryJSON{parentBj, newBj}) @@ -589,15 +607,21 @@ func (bm *binaryModifier) doRemove(path JSONPathExpression) { return } parentBj := result[0] - if lastLeg.typ == jsonPathLegIndex { + if lastLeg.typ == jsonPathLegArraySelection { if parentBj.TypeCode != JSONTypeCodeArray { return } + selectionIndex, ok := lastLeg.arraySelection.(jsonPathArraySelectionIndex) + if !ok { + return + } + idx := selectionIndex.index.getIndexFromStart(parentBj) + bm.modifyPtr = &parentBj.Value[0] elemCount := parentBj.GetElemCount() elems := make([]BinaryJSON, 0, elemCount-1) for i := 0; i < elemCount; i++ { - if i != lastLeg.arrayIndex { + if i != idx { elems = append(elems, parentBj.arrayGetElem(i)) } } @@ -1175,23 +1199,42 @@ func (bj BinaryJSON) extractToCallback(pathExpr JSONPathExpression, callbackFn e } currentLeg, subPathExpr := pathExpr.popOneLeg() - if currentLeg.typ == jsonPathLegIndex && bj.TypeCode == JSONTypeCodeArray { + if currentLeg.typ == jsonPathLegArraySelection && bj.TypeCode == JSONTypeCodeArray { elemCount := bj.GetElemCount() - if currentLeg.arrayIndex == arrayIndexAsterisk { + switch selection := currentLeg.arraySelection.(type) { + case jsonPathArraySelectionAsterisk: for i := 0; i < elemCount; i++ { // buf = bj.arrayGetElem(i).extractTo(buf, subPathExpr) - path := fullpath.pushBackOneIndexLeg(i) + path := fullpath.pushBackOneArraySelectionLeg(jsonPathArraySelectionIndex{jsonPathArrayIndexFromStart(i)}) stop, err = bj.arrayGetElem(i).extractToCallback(subPathExpr, callbackFn, path) if stop || err != nil { return } } - } else if currentLeg.arrayIndex < elemCount { - // buf = bj.arrayGetElem(currentLeg.arrayIndex).extractTo(buf, subPathExpr) - path := fullpath.pushBackOneIndexLeg(currentLeg.arrayIndex) - stop, err = bj.arrayGetElem(currentLeg.arrayIndex).extractToCallback(subPathExpr, callbackFn, path) - if stop || err != nil { - return + case jsonPathArraySelectionIndex: + idx := selection.index.getIndexFromStart(bj) + if idx < elemCount && idx >= 0 { + // buf = bj.arrayGetElem(currentLeg.arraySelection).extractTo(buf, subPathExpr) + path := fullpath.pushBackOneArraySelectionLeg(currentLeg.arraySelection) + stop, err = bj.arrayGetElem(idx).extractToCallback(subPathExpr, callbackFn, path) + if stop || err != nil { + return + } + } + case jsonPathArraySelectionRange: + start := selection.start.getIndexFromStart(bj) + end := selection.end.getIndexFromStart(bj) + if end >= elemCount { + end = elemCount - 1 + } + if start <= end && start >= 0 { + for i := start; i <= end; i++ { + path := fullpath.pushBackOneArraySelectionLeg(jsonPathArraySelectionIndex{jsonPathArrayIndexFromStart(i)}) + stop, err = bj.arrayGetElem(i).extractToCallback(subPathExpr, callbackFn, path) + if stop || err != nil { + return + } + } } } } else if currentLeg.typ == jsonPathLegKey && bj.TypeCode == JSONTypeCodeObject { @@ -1227,7 +1270,7 @@ func (bj BinaryJSON) extractToCallback(pathExpr JSONPathExpression, callbackFn e elemCount := bj.GetElemCount() for i := 0; i < elemCount; i++ { // buf = bj.arrayGetElem(i).extractTo(buf, pathExpr) - path := fullpath.pushBackOneIndexLeg(i) + path := fullpath.pushBackOneArraySelectionLeg(jsonPathArraySelectionIndex{jsonPathArrayIndexFromStart(i)}) stop, err = bj.arrayGetElem(i).extractToCallback(pathExpr, callbackFn, path) if stop || err != nil { return @@ -1271,7 +1314,7 @@ func (bj BinaryJSON) Walk(walkFn BinaryJSONWalkFunc, pathExprList ...JSONPathExp if bj.TypeCode == JSONTypeCodeArray { elemCount := bj.GetElemCount() for i := 0; i < elemCount; i++ { - path := fullpath.pushBackOneIndexLeg(i) + path := fullpath.pushBackOneArraySelectionLeg(jsonPathArraySelectionIndex{jsonPathArrayIndexFromStart(i)}) stop, err = doWalk(path, bj.arrayGetElem(i)) if stop || err != nil { return diff --git a/types/json_binary_test.go b/types/json_binary_test.go index c5de6dffcbf5e..fdee480e396dc 100644 --- a/types/json_binary_test.go +++ b/types/json_binary_test.go @@ -50,6 +50,8 @@ func TestBinaryJSONExtract(t *testing.T) { bj8 := mustParseBinaryFromString(t, `{ "a": { "b" : [ 1, 2, 3 ] } }`) bj9 := mustParseBinaryFromString(t, `[[0,1],[2,3],[4,[5,6]]]`) bj10 := mustParseBinaryFromString(t, `[1]`) + bj11 := mustParseBinaryFromString(t, `{"metadata": {"comment": "1234"}}`) + bj12 := mustParseBinaryFromString(t, `{"metadata": {"age": 19, "name": "Tom"}}`) var tests = []struct { bj BinaryJSON @@ -74,6 +76,16 @@ func TestBinaryJSONExtract(t *testing.T) { {bj4, []string{`$.properties.$type$type.$a$a`}, mustParseBinaryFromString(t, `"TiDB"`), true, nil}, {bj5, []string{`$.properties.$type.$a.$b`}, mustParseBinaryFromString(t, `"TiDB"`), true, nil}, {bj5, []string{`$.properties.$type.$a.*[0]`}, mustParseBinaryFromString(t, `["TiDB"]`), true, nil}, + {bj11, []string{"$.metadata.comment"}, mustParseBinaryFromString(t, `"1234"`), true, nil}, + {bj9, []string{"$[0]"}, mustParseBinaryFromString(t, `[0, 1] `), true, nil}, + {bj9, []string{"$[last][last]"}, mustParseBinaryFromString(t, `[5,6]`), true, nil}, + {bj9, []string{"$[last-1][last]"}, mustParseBinaryFromString(t, `3`), true, nil}, + {bj9, []string{"$[last-1][last-1]"}, mustParseBinaryFromString(t, `2`), true, nil}, + {bj9, []string{"$[1 to 2]"}, mustParseBinaryFromString(t, `[[2,3],[4,[5,6]]]`), true, nil}, + {bj9, []string{"$[1 to 2][1 to 2]"}, mustParseBinaryFromString(t, `[3,[5,6]]`), true, nil}, + {bj9, []string{"$[1 to last][1 to last]"}, mustParseBinaryFromString(t, `[3,[5,6]]`), true, nil}, + {bj9, []string{"$[1 to last][1 to last - 1]"}, bj9, false, nil}, + {bj9, []string{"$[1 to last][0 to last - 1]"}, mustParseBinaryFromString(t, `[2,4]`), true, nil}, // test extract with multi path expressions. {bj1, []string{"$.a", "$[5]"}, mustParseBinaryFromString(t, `[[1, "2", {"aa": "bb"}, 4.0, {"aa": "cc"}]]`), true, nil}, @@ -84,6 +96,7 @@ func TestBinaryJSONExtract(t *testing.T) { {bj8, []string{"$**[0]"}, mustParseBinaryFromString(t, `[{"a": {"b": [1, 2, 3]}}, {"b": [1, 2, 3]}, 1, 2, 3]`), true, nil}, {bj9, []string{"$**[0]"}, mustParseBinaryFromString(t, `[[0, 1], 0, 1, 2, 3, 4, 5, 6] `), true, nil}, {bj10, []string{"$**[0]"}, mustParseBinaryFromString(t, `[1]`), true, nil}, + {bj12, []string{"$.metadata.age", "$.metadata.name"}, mustParseBinaryFromString(t, `[19, "Tom"]`), true, nil}, } for _, test := range tests { @@ -95,7 +108,7 @@ func TestBinaryJSONExtract(t *testing.T) { } result, found := test.bj.Extract(pathExprList) - require.Equal(t, test.found, found) + require.Equal(t, test.found, found, test.bj.String()) if found { require.Equal(t, test.expected.String(), result.String()) } @@ -192,6 +205,16 @@ func TestBinaryJSONModify(t *testing.T) { {`{"a": [3]}`, "$[1]", `4`, `[{"a": [3]}, 4]`, true, JSONModifySet}, {`{"b": true}`, "$.b", `false`, `{"b": false}`, true, JSONModifySet}, + // These tests illustrate the differences among the three JSONModifyType + {`{"foo": "bar"}`, "$.foo", `"moo"`, `{"foo": "bar"}`, true, JSONModifyInsert}, + {`{"foo": "bar"}`, "$.foo", `"moo"`, `{"foo": "moo"}`, true, JSONModifyReplace}, + {`{"foo": "bar"}`, "$.foo", `"moo"`, `{"foo": "moo"}`, true, JSONModifySet}, + {`{"foo": "bar"}`, "$.foo", `null`, `{"foo": null}`, true, JSONModifySet}, + {`{"foo": "bar"}`, "$.baz", `"moo"`, `{"foo": "bar", "baz": "moo"}`, true, JSONModifyInsert}, + {`{"foo": "bar"}`, "$.baz", `"moo"`, `{"foo": "bar"}`, true, JSONModifyReplace}, + {`{"foo": "bar"}`, "$.baz", `"moo"`, `{"foo": "bar", "baz": "moo"}`, true, JSONModifySet}, + {`{"foo": "bar"}`, "$.baz", `null`, `{"foo": "bar", "baz": null}`, true, JSONModifySet}, + // nothing changed because the path is empty and we want to insert. {`{}`, "$", `1`, `{}`, true, JSONModifyInsert}, // nothing changed because the path without last leg doesn't exist. @@ -342,6 +365,9 @@ func TestBinaryJSONMerge(t *testing.T) { {[]string{`4`, `{"a": 1}`}, `[4, {"a": 1}]`}, {[]string{`4`, `1`}, `[4, 1]`}, {[]string{`{}`, `[]`}, `[{}]`}, + {[]string{`{"comment": "1234"}`, `{"age": 19, "name": "Tom"}`}, `{"age": 19, "comment": "1234", "name": "Tom"}`}, + {[]string{`{"metadata": {"comment": "1234"}}`, `{"metadata": {"age": 19, "name": "Tom"}}`}, `{"metadata": {"age": 19, "comment": "1234", "name": "Tom"}}`}, + {[]string{`{"comment": "1234"}`, `{"comment": "abc"}`}, `{"comment": ["1234", "abc"]}`}, } for _, test := range tests { @@ -351,7 +377,7 @@ func TestBinaryJSONMerge(t *testing.T) { } result := MergeBinaryJSON(suffixes) cmp := CompareBinaryJSON(result, mustParseBinaryFromString(t, test.expected)) - require.Equal(t, 0, cmp) + require.Equal(t, 0, cmp, result.String()) } } @@ -418,6 +444,11 @@ func TestGetKeys(t *testing.T) { require.Equal(t, "[]", parsedBJ.GetKeys().String()) parsedBJ = mustParseBinaryFromString(t, "{}") require.Equal(t, "[]", parsedBJ.GetKeys().String()) + parsedBJ = mustParseBinaryFromString(t, "{\"comment\": \"1234\"}") + require.Equal(t, "[\"comment\"]", parsedBJ.GetKeys().String()) + parsedBJ = mustParseBinaryFromString(t, "{\"name\": \"Tom\", \"age\": 19}") + require.Equal(t, "[\"age\", \"name\"]", parsedBJ.GetKeys().String()) + require.Equal(t, 2, parsedBJ.GetKeys().GetElemCount()) b := strings.Builder{} b.WriteString("{\"") diff --git a/types/json_constants.go b/types/json_constants.go index 56ff6df1cd9f7..d7486d4025201 100644 --- a/types/json_constants.go +++ b/types/json_constants.go @@ -208,8 +208,10 @@ type JSONModifyType byte const ( // JSONModifyInsert is for insert a new element into a JSON. + // If an old elemList exists, it would NOT replace it. JSONModifyInsert JSONModifyType = 0x01 // JSONModifyReplace is for replace an old elemList from a JSON. + // If no elemList exists, it would NOT insert it. JSONModifyReplace JSONModifyType = 0x02 // JSONModifySet = JSONModifyInsert | JSONModifyReplace JSONModifySet JSONModifyType = 0x03 @@ -224,8 +226,8 @@ var ( ErrInvalidJSONCharset = dbterror.ClassJSON.NewStd(mysql.ErrInvalidJSONCharset) // ErrInvalidJSONData means invalid JSON data. ErrInvalidJSONData = dbterror.ClassJSON.NewStd(mysql.ErrInvalidJSONData) - // ErrInvalidJSONPathWildcard means invalid JSON path that contain wildcard characters. - ErrInvalidJSONPathWildcard = dbterror.ClassJSON.NewStd(mysql.ErrInvalidJSONPathWildcard) + // ErrInvalidJSONPathMultipleSelection means invalid JSON path that contain wildcard characters or range selection. + ErrInvalidJSONPathMultipleSelection = dbterror.ClassJSON.NewStd(mysql.ErrInvalidJSONPathMultipleSelection) // ErrInvalidJSONContainsPathType means invalid JSON contains path type. ErrInvalidJSONContainsPathType = dbterror.ClassJSON.NewStd(mysql.ErrInvalidJSONContainsPathType) // ErrJSONDocumentNULLKey means that json's key is null diff --git a/types/json_path_expr.go b/types/json_path_expr.go index 9c66b3254114c..e784155518da9 100644 --- a/types/json_path_expr.go +++ b/types/json_path_expr.go @@ -50,34 +50,113 @@ import ( select json_extract('{"a": "b", "c": [1, "2"]}', '$.*') -> ["b", [1, "2"]] */ +// if index is positive, it represents the [index] +// if index is negative, it represents the [len() + index] +// a normal index "5" will be parsed into "5", and the "last - 5" will be "-6" +type jsonPathArrayIndex int + +func (index jsonPathArrayIndex) getIndexFromStart(obj BinaryJSON) int { + if index < 0 { + return obj.GetElemCount() + int(index) + } + + return int(index) +} + +// validateIndexRange returns whether `a` could be less or equal than `b` +// if two indexes are all non-negative, or all negative, the comparison follows the number order +// if the sign of them differs, this function will still return true +func validateIndexRange(a jsonPathArrayIndex, b jsonPathArrayIndex) bool { + if (a >= 0 && b >= 0) || (a < 0 && b < 0) { + return a <= b + } + + return true +} + +func jsonPathArrayIndexFromStart(index int) jsonPathArrayIndex { + return jsonPathArrayIndex(index) +} + +func jsonPathArrayIndexFromLast(index int) jsonPathArrayIndex { + return jsonPathArrayIndex(-1 - index) +} + +type jsonPathArraySelection interface { + // returns the closed interval of the range it represents + // it ensures the `end` is less or equal than element count - 1 + // the caller should validate the return value through checking start <= end + getIndexRange(bj BinaryJSON) (int, int) +} + +var _ jsonPathArraySelection = jsonPathArraySelectionAsterisk{} +var _ jsonPathArraySelection = jsonPathArraySelectionIndex{} +var _ jsonPathArraySelection = jsonPathArraySelectionRange{} + +type jsonPathArraySelectionAsterisk struct{} + +func (jsonPathArraySelectionAsterisk) getIndexRange(bj BinaryJSON) (int, int) { + return 0, bj.GetElemCount() - 1 +} + +type jsonPathArraySelectionIndex struct { + index jsonPathArrayIndex +} + +func (i jsonPathArraySelectionIndex) getIndexRange(bj BinaryJSON) (int, int) { + end := i.index.getIndexFromStart(bj) + + // returns index, min(index, count - 1) + // so that the caller could only check the start <= end + elemCount := bj.GetElemCount() + if end >= elemCount { + end = elemCount - 1 + } + return i.index.getIndexFromStart(bj), end +} + +// jsonPathArraySelectionRange represents a closed interval +type jsonPathArraySelectionRange struct { + start jsonPathArrayIndex + end jsonPathArrayIndex +} + +func (i jsonPathArraySelectionRange) getIndexRange(bj BinaryJSON) (int, int) { + start := i.start.getIndexFromStart(bj) + end := i.end.getIndexFromStart(bj) + + elemCount := bj.GetElemCount() + if end >= elemCount { + end = elemCount - 1 + } + return start, end +} + type jsonPathLegType byte const ( // jsonPathLegKey indicates the path leg with '.key'. jsonPathLegKey jsonPathLegType = 0x01 - // jsonPathLegIndex indicates the path leg with form '[number]'. - jsonPathLegIndex jsonPathLegType = 0x02 + // jsonPathLegArraySelection indicates the path leg with form '[index]', '[index to index]'. + jsonPathLegArraySelection jsonPathLegType = 0x02 // jsonPathLegDoubleAsterisk indicates the path leg with form '**'. jsonPathLegDoubleAsterisk jsonPathLegType = 0x03 ) // jsonPathLeg is only used by JSONPathExpression. type jsonPathLeg struct { - typ jsonPathLegType - arrayIndex int // if typ is jsonPathLegIndex, the value should be parsed into here. - dotKey string // if typ is jsonPathLegKey, the key should be parsed into here. + typ jsonPathLegType + arraySelection jsonPathArraySelection // if typ is jsonPathLegArraySelection, the value should be parsed into here. + dotKey string // if typ is jsonPathLegKey, the key should be parsed into here. } -// arrayIndexAsterisk is for parsing `*` into a number. -// we need this number represent "all". -const arrayIndexAsterisk = -1 - // jsonPathExpressionFlag holds attributes of JSONPathExpression type jsonPathExpressionFlag byte const ( jsonPathExpressionContainsAsterisk jsonPathExpressionFlag = 0x01 jsonPathExpressionContainsDoubleAsterisk jsonPathExpressionFlag = 0x02 + jsonPathExpressionContainsRange jsonPathExpressionFlag = 0x04 ) // containsAnyAsterisk returns true if pef contains any asterisk. @@ -86,6 +165,12 @@ func (pef jsonPathExpressionFlag) containsAnyAsterisk() bool { return byte(pef) != 0 } +// containsAnyRange returns true if pef contains any range. +func (pef jsonPathExpressionFlag) containsAnyRange() bool { + pef &= jsonPathExpressionContainsRange + return byte(pef) != 0 +} + // JSONPathExpression is for JSON path expression. type JSONPathExpression struct { legs []jsonPathLeg @@ -119,8 +204,13 @@ func (pe JSONPathExpression) popOneLeg() (jsonPathLeg, JSONPathExpression) { flags: 0, } for _, leg := range newPe.legs { - if leg.typ == jsonPathLegIndex && leg.arrayIndex == -1 { - newPe.flags |= jsonPathExpressionContainsAsterisk + if leg.typ == jsonPathLegArraySelection { + switch leg.arraySelection.(type) { + case jsonPathArraySelectionAsterisk: + newPe.flags |= jsonPathExpressionContainsAsterisk + case jsonPathArraySelectionRange: + newPe.flags |= jsonPathExpressionContainsRange + } } else if leg.typ == jsonPathLegKey && leg.dotKey == "*" { newPe.flags |= jsonPathExpressionContainsAsterisk } else if leg.typ == jsonPathLegDoubleAsterisk { @@ -138,14 +228,17 @@ func (pe JSONPathExpression) popOneLastLeg() (JSONPathExpression, jsonPathLeg) { return JSONPathExpression{legs: pe.legs[:lastLegIdx]}, lastLeg } -// pushBackOneIndexLeg pushback one leg of INDEX type -func (pe JSONPathExpression) pushBackOneIndexLeg(index int) JSONPathExpression { +// pushBackOneArraySelectionLeg pushback one leg of INDEX type +func (pe JSONPathExpression) pushBackOneArraySelectionLeg(arraySelection jsonPathArraySelection) JSONPathExpression { newPe := JSONPathExpression{ - legs: append(pe.legs, jsonPathLeg{typ: jsonPathLegIndex, arrayIndex: index}), + legs: append(pe.legs, jsonPathLeg{typ: jsonPathLegArraySelection, arraySelection: arraySelection}), flags: pe.flags, } - if index == -1 { + switch arraySelection.(type) { + case jsonPathArraySelectionAsterisk: newPe.flags |= jsonPathExpressionContainsAsterisk + case jsonPathArraySelectionRange: + newPe.flags |= jsonPathExpressionContainsRange } return newPe } @@ -162,9 +255,9 @@ func (pe JSONPathExpression) pushBackOneKeyLeg(key string) JSONPathExpression { return newPe } -// ContainsAnyAsterisk returns true if pe contains any asterisk. -func (pe JSONPathExpression) ContainsAnyAsterisk() bool { - return pe.flags.containsAnyAsterisk() +// CouldMatchMultipleValues returns true if pe contains any asterisk or range selection. +func (pe JSONPathExpression) CouldMatchMultipleValues() bool { + return pe.flags.containsAnyAsterisk() || pe.flags.containsAnyRange() } type jsonPathStream struct { @@ -261,6 +354,85 @@ func parseJSONPathWildcard(s *jsonPathStream, p *JSONPathExpression) bool { return true } +func (s *jsonPathStream) tryReadString(expected string) bool { + recordPos := s.pos + + i := 0 + str, meetEnd := s.readWhile(func(b byte) bool { + i += 1 + return i <= len(expected) + }) + + if meetEnd || str != expected { + s.pos = recordPos + return false + } + return true +} + +func (s *jsonPathStream) tryReadIndexNumber() (int, bool) { + recordPos := s.pos + + str, meetEnd := s.readWhile(func(b byte) bool { + return b >= '0' && b <= '9' + }) + if meetEnd { + s.pos = recordPos + return 0, false + } + + index, err := strconv.Atoi(str) + if err != nil || index > math.MaxUint32 { + s.pos = recordPos + return 0, false + } + + return index, true +} + +// tryParseArrayIndex tries to read an arrayIndex, which is 'number', 'last' or 'last - number' +// if failed, the stream will not be pushed forward +func (s *jsonPathStream) tryParseArrayIndex() (jsonPathArrayIndex, bool) { + recordPos := s.pos + + s.skipWhiteSpace() + if s.exhausted() { + return 0, false + } + switch c := s.peek(); { + case c >= '0' && c <= '9': + index, ok := s.tryReadIndexNumber() + if !ok { + s.pos = recordPos + return 0, false + } + return jsonPathArrayIndexFromStart(index), true + case c == 'l': + if !s.tryReadString("last") { + s.pos = recordPos + return 0, false + } + s.skipWhiteSpace() + if s.exhausted() { + return jsonPathArrayIndexFromLast(0), true + } + + if s.peek() != '-' { + return jsonPathArrayIndexFromLast(0), true + } + s.skip(1) + s.skipWhiteSpace() + + index, ok := s.tryReadIndexNumber() + if !ok { + s.pos = recordPos + return 0, false + } + return jsonPathArrayIndexFromLast(index), true + } + return 0, false +} + func parseJSONPathArray(s *jsonPathStream, p *JSONPathExpression) bool { s.skip(1) s.skipWhiteSpace() @@ -271,20 +443,37 @@ func parseJSONPathArray(s *jsonPathStream, p *JSONPathExpression) bool { if s.peek() == '*' { s.skip(1) p.flags |= jsonPathExpressionContainsAsterisk - p.legs = append(p.legs, jsonPathLeg{typ: jsonPathLegIndex, arrayIndex: arrayIndexAsterisk}) + p.legs = append(p.legs, jsonPathLeg{typ: jsonPathLegArraySelection, arraySelection: jsonPathArraySelectionAsterisk{}}) } else { - // FIXME: only support an integer index for now. Need to support [last], [1 to 2]... in the future. - str, meetEnd := s.readWhile(func(b byte) bool { - return b >= '0' && b <= '9' - }) - if meetEnd { + start, ok := s.tryParseArrayIndex() + if !ok { return false } - index, err := strconv.Atoi(str) - if err != nil || index > math.MaxUint32 { - return false + + var selection jsonPathArraySelection + selection = jsonPathArraySelectionIndex{start} + // try to read " to " and the end + if unicode.IsSpace(rune(s.peek())) { + s.skipWhiteSpace() + if s.tryReadString("to") && unicode.IsSpace(rune(s.peek())) { + s.skipWhiteSpace() + if s.exhausted() { + return false + } + end, ok := s.tryParseArrayIndex() + if !ok { + return false + } + + if !validateIndexRange(start, end) { + return false + } + p.flags |= jsonPathExpressionContainsRange + selection = jsonPathArraySelectionRange{start, end} + } } - p.legs = append(p.legs, jsonPathLeg{typ: jsonPathLegIndex, arrayIndex: index}) + + p.legs = append(p.legs, jsonPathLeg{typ: jsonPathLegArraySelection, arraySelection: selection}) } s.skipWhiteSpace() @@ -381,18 +570,35 @@ func ParseJSONPathExpr(pathExpr string) (JSONPathExpression, error) { return pathExpression, err } +func (index jsonPathArrayIndex) String() string { + if index < 0 { + indexStr := strconv.Itoa(int(math.Abs(float64(index + 1)))) + return "last-" + indexStr + } + + indexStr := strconv.Itoa(int(index)) + return indexStr +} + func (pe JSONPathExpression) String() string { var s strings.Builder s.WriteString("$") for _, leg := range pe.legs { switch leg.typ { - case jsonPathLegIndex: - if leg.arrayIndex == -1 { + case jsonPathLegArraySelection: + switch selection := leg.arraySelection.(type) { + case jsonPathArraySelectionAsterisk: s.WriteString("[*]") - } else { + case jsonPathArraySelectionIndex: + s.WriteString("[") + s.WriteString(selection.index.String()) + s.WriteString("]") + case jsonPathArraySelectionRange: s.WriteString("[") - s.WriteString(strconv.Itoa(leg.arrayIndex)) + s.WriteString(selection.start.String()) + s.WriteString(" to ") + s.WriteString(selection.end.String()) s.WriteString("]") } case jsonPathLegKey: diff --git a/types/json_path_expr_test.go b/types/json_path_expr_test.go index 2de75ba8bd5d5..2fb0c50446d4a 100644 --- a/types/json_path_expr_test.go +++ b/types/json_path_expr_test.go @@ -53,6 +53,12 @@ func TestValidatePathExpr(t *testing.T) { {" $ . key1 [ 3 ]**[*].*.key3", true, 6}, {`$."key1 string"[ 3 ][*].*.key3`, true, 5}, {`$."hello \"escaped quotes\" world\\n"[3][*].*.key3`, true, 5}, + {`$[1 to 5]`, true, 1}, + {`$[2 to 1]`, false, 1}, + {`$[last]`, true, 1}, + {`$[1 to last]`, true, 1}, + {`$[1to3]`, false, 1}, + {`$[last - 5 to last - 10]`, false, 1}, {`$.\"escaped quotes\"[3][*].*.key3`, false, 0}, {`$.hello \"escaped quotes\" world[3][*].*.key3`, false, 0}, @@ -111,17 +117,19 @@ func TestPathExprToString(t *testing.T) { func TestPushBackOneIndexLeg(t *testing.T) { var tests = []struct { - expression string - index int - expected string - containsAnyAsterisk bool + expression string + index int + expected string + couldReturnMultipleValues bool }{ {"$", 1, "$[1]", false}, {"$.a[1]", 1, "$.a[1][1]", false}, - {"$.a[1]", -1, "$.a[1][*]", true}, {"$.a[*]", 10, "$.a[*][10]", true}, {"$.*[2]", 2, "$.*[2][2]", true}, {"$**.a[3]", 3, "$**.a[3][3]", true}, + {"$.a[1 to 3]", 3, "$.a[1 to 3][3]", true}, + {"$.a[last-3 to last-3]", 3, "$.a[last-3 to last-3][3]", true}, + {"$**.a[3]", -3, "$**.a[3][last-2]", true}, } for _, test := range tests { @@ -131,19 +139,19 @@ func TestPushBackOneIndexLeg(t *testing.T) { pe, err := ParseJSONPathExpr(test.expression) require.NoError(t, err) - pe = pe.pushBackOneIndexLeg(test.index) + pe = pe.pushBackOneArraySelectionLeg(jsonPathArraySelectionIndex{index: jsonPathArrayIndexFromStart(test.index)}) require.Equal(t, test.expected, pe.String()) - require.Equal(t, test.containsAnyAsterisk, pe.ContainsAnyAsterisk()) + require.Equal(t, test.couldReturnMultipleValues, pe.CouldMatchMultipleValues()) }) } } func TestPushBackOneKeyLeg(t *testing.T) { var tests = []struct { - expression string - key string - expected string - containsAnyAsterisk bool + expression string + key string + expected string + couldReturnMultipleValues bool }{ {"$", "aa", "$.aa", false}, {"$.a[1]", "aa", "$.a[1].aa", false}, @@ -160,7 +168,7 @@ func TestPushBackOneKeyLeg(t *testing.T) { pe = pe.pushBackOneKeyLeg(test.key) require.Equal(t, test.expected, pe.String()) - require.Equal(t, test.containsAnyAsterisk, pe.ContainsAnyAsterisk()) + require.Equal(t, test.couldReturnMultipleValues, pe.CouldMatchMultipleValues()) }) } } diff --git a/types/main_test.go b/types/main_test.go index 81069e118ea61..3e4fb3f087159 100644 --- a/types/main_test.go +++ b/types/main_test.go @@ -25,7 +25,9 @@ func TestMain(m *testing.M) { testsetup.SetupForCommonTest() opts := []goleak.Option{ goleak.IgnoreTopFunction("github.com/golang/glog.(*loggingT).flushDaemon"), + goleak.IgnoreTopFunction("github.com/lestrrat-go/httprc.runFetchWorker"), goleak.IgnoreTopFunction("go.etcd.io/etcd/client/pkg/v3/logutil.(*MergeLogger).outputLoop"), + goleak.IgnoreTopFunction("go.opencensus.io/stats/view.(*worker).start"), } goleak.VerifyTestMain(m, opts...) } diff --git a/types/parser_driver/main_test.go b/types/parser_driver/main_test.go index 19251613811d6..ebf7bf042bd54 100644 --- a/types/parser_driver/main_test.go +++ b/types/parser_driver/main_test.go @@ -25,6 +25,7 @@ func TestMain(m *testing.M) { testsetup.SetupForCommonTest() opts := []goleak.Option{ goleak.IgnoreTopFunction("github.com/golang/glog.(*loggingT).flushDaemon"), + goleak.IgnoreTopFunction("github.com/lestrrat-go/httprc.runFetchWorker"), goleak.IgnoreTopFunction("go.etcd.io/etcd/client/pkg/v3/logutil.(*MergeLogger).outputLoop"), } goleak.VerifyTestMain(m, opts...) diff --git a/util/BUILD.bazel b/util/BUILD.bazel index 879b7e86df089..b63581d187f66 100644 --- a/util/BUILD.bazel +++ b/util/BUILD.bazel @@ -33,8 +33,10 @@ go_library( "//session/txninfo", "//sessionctx/stmtctx", "//util/collate", + "//util/disk", "//util/execdetails", "//util/logutil", + "//util/memory", "//util/tls", "@com_github_pingcap_errors//:errors", "@com_github_pingcap_failpoint//:failpoint", diff --git a/util/admin/main_test.go b/util/admin/main_test.go index 949b636970e43..ee1f2d5f2f116 100644 --- a/util/admin/main_test.go +++ b/util/admin/main_test.go @@ -32,6 +32,7 @@ func TestMain(m *testing.M) { opts := []goleak.Option{ goleak.IgnoreTopFunction("github.com/golang/glog.(*loggingT).flushDaemon"), + goleak.IgnoreTopFunction("github.com/lestrrat-go/httprc.runFetchWorker"), goleak.IgnoreTopFunction("go.etcd.io/etcd/client/pkg/v3/logutil.(*MergeLogger).outputLoop"), } diff --git a/util/arena/main_test.go b/util/arena/main_test.go index e35c6f526bf57..a399ad116c1b6 100644 --- a/util/arena/main_test.go +++ b/util/arena/main_test.go @@ -25,6 +25,7 @@ func TestMain(m *testing.M) { testsetup.SetupForCommonTest() opts := []goleak.Option{ goleak.IgnoreTopFunction("github.com/golang/glog.(*loggingT).flushDaemon"), + goleak.IgnoreTopFunction("github.com/lestrrat-go/httprc.runFetchWorker"), goleak.IgnoreTopFunction("go.etcd.io/etcd/client/pkg/v3/logutil.(*MergeLogger).outputLoop"), } goleak.VerifyTestMain(m, opts...) diff --git a/util/benchdaily/main_test.go b/util/benchdaily/main_test.go index 6863e85113088..02836578e971d 100644 --- a/util/benchdaily/main_test.go +++ b/util/benchdaily/main_test.go @@ -25,6 +25,7 @@ func TestMain(m *testing.M) { testsetup.SetupForCommonTest() opts := []goleak.Option{ goleak.IgnoreTopFunction("github.com/golang/glog.(*loggingT).flushDaemon"), + goleak.IgnoreTopFunction("github.com/lestrrat-go/httprc.runFetchWorker"), goleak.IgnoreTopFunction("go.etcd.io/etcd/client/pkg/v3/logutil.(*MergeLogger).outputLoop"), } goleak.VerifyTestMain(m, opts...) diff --git a/util/bitmap/main_test.go b/util/bitmap/main_test.go index e5f42a15b9d78..e023854dbc74e 100644 --- a/util/bitmap/main_test.go +++ b/util/bitmap/main_test.go @@ -25,6 +25,7 @@ func TestMain(m *testing.M) { testsetup.SetupForCommonTest() opts := []goleak.Option{ goleak.IgnoreTopFunction("github.com/golang/glog.(*loggingT).flushDaemon"), + goleak.IgnoreTopFunction("github.com/lestrrat-go/httprc.runFetchWorker"), goleak.IgnoreTopFunction("go.etcd.io/etcd/client/pkg/v3/logutil.(*MergeLogger).outputLoop"), } goleak.VerifyTestMain(m, opts...) diff --git a/util/checksum/main_test.go b/util/checksum/main_test.go index e5465a5e61eec..4e41ef991f925 100644 --- a/util/checksum/main_test.go +++ b/util/checksum/main_test.go @@ -25,6 +25,7 @@ func TestMain(m *testing.M) { testsetup.SetupForCommonTest() opts := []goleak.Option{ goleak.IgnoreTopFunction("github.com/golang/glog.(*loggingT).flushDaemon"), + goleak.IgnoreTopFunction("github.com/lestrrat-go/httprc.runFetchWorker"), goleak.IgnoreTopFunction("go.etcd.io/etcd/client/pkg/v3/logutil.(*MergeLogger).outputLoop"), } goleak.VerifyTestMain(m, opts...) diff --git a/util/chunk/alloc.go b/util/chunk/alloc.go index 4b706e6297431..af3385a644389 100644 --- a/util/chunk/alloc.go +++ b/util/chunk/alloc.go @@ -15,6 +15,8 @@ package chunk import ( + "math" + "github.com/pingcap/tidb/types" "github.com/pingcap/tidb/util/mathutil" ) @@ -24,18 +26,37 @@ import ( // and Alloc() allocates from the pool. type Allocator interface { Alloc(fields []*types.FieldType, capacity, maxChunkSize int) *Chunk + CheckReuseAllocSize() bool Reset() } +var maxFreeChunks = 64 +var maxFreeColumnsPerType = 256 + +// InitChunkAllocSize init the maximum cache size +func InitChunkAllocSize(setMaxFreeChunks, setMaxFreeColumns uint32) { + if setMaxFreeChunks > math.MaxInt32 { + setMaxFreeChunks = math.MaxInt32 + } + if setMaxFreeColumns > math.MaxInt32 { + setMaxFreeColumns = math.MaxInt32 + } + maxFreeChunks = int(setMaxFreeChunks) + maxFreeColumnsPerType = int(setMaxFreeColumns) +} + // NewAllocator creates an Allocator. func NewAllocator() *allocator { - ret := &allocator{} + ret := &allocator{freeChunk: maxFreeChunks} ret.columnAlloc.init() return ret } var _ Allocator = &allocator{} +// MaxCachedLen Maximum cacheable length +var MaxCachedLen = 16 * 1024 + // allocator try to reuse objects. // It uses `poolColumnAllocator` to alloc chunk column objects. // The allocated chunks are recorded in the `allocated` array. @@ -45,6 +66,27 @@ type allocator struct { allocated []*Chunk free []*Chunk columnAlloc poolColumnAllocator + freeChunk int +} + +// columnList keep column +type columnList struct { + freeColumns []*Column + allocColumns []*Column +} + +func (cList *columnList) add(col *Column) { + cList.freeColumns = append(cList.freeColumns, col) +} + +// columnList Len Get the number of elements in the list +func (cList *columnList) Len() int { + return len(cList.freeColumns) + len(cList.allocColumns) +} + +// CheckReuseAllocSize return whether the cache can cache objects +func (a *allocator) CheckReuseAllocSize() bool { + return a.freeChunk > 0 || a.columnAlloc.freeColumnsPerType > 0 } // Alloc implements the Allocator interface. @@ -66,53 +108,101 @@ func (a *allocator) Alloc(fields []*types.FieldType, capacity, maxChunkSize int) chk.columns = append(chk.columns, a.columnAlloc.NewColumn(f, chk.capacity)) } - a.allocated = append(a.allocated, chk) + //avoid OOM + if a.freeChunk > len(a.allocated) { + a.allocated = append(a.allocated, chk) + } + return chk } -const ( - maxFreeChunks = 64 - maxFreeColumnsPerType = 256 -) - // Reset implements the Allocator interface. func (a *allocator) Reset() { - a.free = a.free[:0] for i, chk := range a.allocated { a.allocated[i] = nil - // Decouple chunk into chunk column objects and put them back to the column allocator for reuse. - for _, col := range chk.columns { - a.columnAlloc.put(col) - } - // Reset the chunk and put it to the free list for reuse. chk.resetForReuse() - - if len(a.free) < maxFreeChunks { // Don't cache too much data. + if len(a.free) < a.freeChunk { // Don't cache too much data. a.free = append(a.free, chk) } } a.allocated = a.allocated[:0] + + //column objects and put them to the column allocator for reuse. + for id, pool := range a.columnAlloc.pool { + for _, col := range pool.allocColumns { + if (len(pool.freeColumns) < a.columnAlloc.freeColumnsPerType) && checkColumnType(id, col) { + col.reset() + pool.freeColumns = append(pool.freeColumns, col) + } + } + pool.allocColumns = pool.allocColumns[:0] + } +} + +// checkColumnType check whether the conditions for entering the corresponding queue are met +// column Reset may change type +func checkColumnType(id int, col *Column) bool { + if col.avoidReusing { + return false + } + + if id == varElemLen { + //Take up too much memory, + if cap(col.data) > MaxCachedLen { + return false + } + return col.elemBuf == nil + } + + if col.elemBuf == nil { + return false + } + return id == cap(col.elemBuf) } var _ ColumnAllocator = &poolColumnAllocator{} type poolColumnAllocator struct { - pool map[int]freeList + pool map[int]*columnList + freeColumnsPerType int } // poolColumnAllocator implements the ColumnAllocator interface. func (alloc *poolColumnAllocator) NewColumn(ft *types.FieldType, count int) *Column { typeSize := getFixedLen(ft) + col := alloc.NewSizeColumn(typeSize, count) + + //column objects and put them back to the allocated column . + alloc.put(col) + return col +} + +// poolColumnAllocator implements the ColumnAllocator interface. +func (alloc *poolColumnAllocator) NewSizeColumn(typeSize int, count int) *Column { l := alloc.pool[typeSize] if l != nil && !l.empty() { col := l.pop() + + if cap(col.data) < count { + col = newColumn(typeSize, count) + } return col } return newColumn(typeSize, count) } +func (cList *columnList) pop() *Column { + if len(cList.freeColumns) == 0 { + return nil + } + col := cList.freeColumns[len(cList.freeColumns)-1] + cList.freeColumns = cList.freeColumns[:len(cList.freeColumns)-1] + return col +} + func (alloc *poolColumnAllocator) init() { - alloc.pool = make(map[int]freeList) + alloc.pool = make(map[int]*columnList) + alloc.freeColumnsPerType = maxFreeColumnsPerType } func (alloc *poolColumnAllocator) put(col *Column) { @@ -120,16 +210,20 @@ func (alloc *poolColumnAllocator) put(col *Column) { return } typeSize := col.typeSize() - if typeSize <= 0 { + if typeSize <= 0 && typeSize != varElemLen { return } l := alloc.pool[typeSize] if l == nil { - l = make(map[*Column]struct{}, 8) + l = &columnList{freeColumns: nil, allocColumns: nil} + l.freeColumns = make([]*Column, 0, alloc.freeColumnsPerType) + l.allocColumns = make([]*Column, 0, alloc.freeColumnsPerType) alloc.pool[typeSize] = l } - l.push(col) + if len(l.allocColumns) < alloc.freeColumnsPerType { + l.push(col) + } } // freeList is defined as a map, rather than a list, because when recycling chunk @@ -137,22 +231,12 @@ func (alloc *poolColumnAllocator) put(col *Column) { // reference to the others. type freeList map[*Column]struct{} -func (l freeList) empty() bool { - return len(l) == 0 +func (cList *columnList) empty() bool { + return len(cList.freeColumns) == 0 } -func (l freeList) pop() *Column { - for k := range l { - delete(l, k) - return k - } - return nil -} - -func (l freeList) push(c *Column) { - if len(l) >= maxFreeColumnsPerType { - // Don't cache too much to save memory. - return +func (cList *columnList) push(col *Column) { + if cap(col.data) < MaxCachedLen { + cList.allocColumns = append(cList.allocColumns, col) } - l[c] = struct{}{} } diff --git a/util/chunk/alloc_test.go b/util/chunk/alloc_test.go index 33b52590eab7c..7c09d818d1222 100644 --- a/util/chunk/alloc_test.go +++ b/util/chunk/alloc_test.go @@ -114,7 +114,7 @@ func TestColumnAllocator(t *testing.T) { // Check max column size. freeList := alloc1.pool[getFixedLen(ft)] require.NotNil(t, freeList) - require.Len(t, freeList, maxFreeColumnsPerType) + require.Equal(t, freeList.Len(), maxFreeColumnsPerType) } func TestNoDuplicateColumnReuse(t *testing.T) { @@ -202,3 +202,90 @@ func TestAvoidColumnReuse(t *testing.T) { require.True(t, col.avoidReusing) } } + +func TestColumnAllocatorLimit(t *testing.T) { + fieldTypes := []*types.FieldType{ + types.NewFieldTypeBuilder().SetType(mysql.TypeVarchar).BuildP(), + types.NewFieldTypeBuilder().SetType(mysql.TypeJSON).BuildP(), + types.NewFieldTypeBuilder().SetType(mysql.TypeFloat).BuildP(), + types.NewFieldTypeBuilder().SetType(mysql.TypeNewDecimal).BuildP(), + types.NewFieldTypeBuilder().SetType(mysql.TypeDouble).BuildP(), + types.NewFieldTypeBuilder().SetType(mysql.TypeLonglong).BuildP(), + types.NewFieldTypeBuilder().SetType(mysql.TypeDatetime).BuildP(), + } + + //set cache size + InitChunkAllocSize(10, 20) + alloc := NewAllocator() + require.True(t, alloc.CheckReuseAllocSize()) + for i := 0; i < maxFreeChunks+10; i++ { + alloc.Alloc(fieldTypes, 5, 10) + } + alloc.Reset() + require.Equal(t, len(alloc.free), 10) + for _, p := range alloc.columnAlloc.pool { + require.True(t, (p.Len() <= 20)) + } + + //Reduce capacity + InitChunkAllocSize(5, 10) + alloc = NewAllocator() + for i := 0; i < maxFreeChunks+10; i++ { + alloc.Alloc(fieldTypes, 5, 10) + } + alloc.Reset() + require.Equal(t, len(alloc.free), 5) + for _, p := range alloc.columnAlloc.pool { + require.True(t, (p.Len() <= 10)) + } + + //increase capacity + InitChunkAllocSize(50, 100) + alloc = NewAllocator() + for i := 0; i < maxFreeChunks+10; i++ { + alloc.Alloc(fieldTypes, 5, 10) + } + alloc.Reset() + require.Equal(t, len(alloc.free), 50) + for _, p := range alloc.columnAlloc.pool { + require.True(t, (p.Len() <= 100)) + } + + //long characters are not cached + alloc = NewAllocator() + rs := alloc.Alloc([]*types.FieldType{types.NewFieldTypeBuilder().SetType(mysql.TypeVarchar).BuildP()}, 1024, 1024) + nu := len(alloc.columnAlloc.pool[varElemLen].allocColumns) + require.Equal(t, nu, 1) + for _, col := range rs.columns { + for i := 0; i < 20480; i++ { + col.data = append(col.data, byte('a')) + } + } + alloc.Reset() + for _, p := range alloc.columnAlloc.pool { + require.True(t, (p.Len() == 0)) + } + + InitChunkAllocSize(0, 0) + alloc = NewAllocator() + require.False(t, alloc.CheckReuseAllocSize()) +} + +func TestColumnAllocatorCheck(t *testing.T) { + fieldTypes := []*types.FieldType{ + types.NewFieldTypeBuilder().SetType(mysql.TypeFloat).BuildP(), + types.NewFieldTypeBuilder().SetType(mysql.TypeDatetime).BuildP(), + } + InitChunkAllocSize(10, 20) + alloc := NewAllocator() + for i := 0; i < 4; i++ { + alloc.Alloc(fieldTypes, 5, 10) + } + col := alloc.columnAlloc.NewColumn(types.NewFieldTypeBuilder().SetType(mysql.TypeFloat).BuildP(), 10) + col.Reset(types.ETDatetime) + alloc.Reset() + num := alloc.columnAlloc.pool[getFixedLen(types.NewFieldTypeBuilder().SetType(mysql.TypeFloat).BuildP())].Len() + require.Equal(t, num, 4) + num = alloc.columnAlloc.pool[getFixedLen(types.NewFieldTypeBuilder().SetType(mysql.TypeDatetime).BuildP())].Len() + require.Equal(t, num, 4) +} diff --git a/util/chunk/iterator.go b/util/chunk/iterator.go index 2adebc5822c9f..74d78b9cb62ea 100644 --- a/util/chunk/iterator.go +++ b/util/chunk/iterator.go @@ -14,33 +14,17 @@ package chunk -import "sync" +import "golang.org/x/sys/cpu" var ( _ Iterator = (*Iterator4Chunk)(nil) _ Iterator = (*iterator4RowPtr)(nil) _ Iterator = (*iterator4List)(nil) - _ Iterator = (*iterator4Slice)(nil) + _ Iterator = (*Iterator4Slice)(nil) _ Iterator = (*iterator4RowContainer)(nil) _ Iterator = (*multiIterator)(nil) ) -var ( - iterator4SlicePool = &sync.Pool{New: func() any { return new(iterator4Slice) }} -) - -// FreeIterator try to free and reuse the iterator. -func FreeIterator(it any) { - switch it := it.(type) { - case *iterator4Slice: - it.rows = nil - it.cursor = 0 - iterator4SlicePool.Put(it) - default: - // Do Nothing. - } -} - // Iterator is used to iterate a number of rows. // // for row := it.Begin(); row != it.End(); row = it.Next() { @@ -71,19 +55,19 @@ type Iterator interface { // NewIterator4Slice returns a Iterator for Row slice. func NewIterator4Slice(rows []Row) Iterator { - it := iterator4SlicePool.Get().(*iterator4Slice) - it.rows = rows - it.cursor = 0 - return it + return &Iterator4Slice{rows: rows} } -type iterator4Slice struct { +// Iterator4Slice is used to iterate rows inside a slice. +type Iterator4Slice struct { + _ cpu.CacheLinePad rows []Row cursor int + _ cpu.CacheLinePad } // Begin implements the Iterator interface. -func (it *iterator4Slice) Begin() Row { +func (it *Iterator4Slice) Begin() Row { if it.Len() == 0 { return it.End() } @@ -92,7 +76,7 @@ func (it *iterator4Slice) Begin() Row { } // Next implements the Iterator interface. -func (it *iterator4Slice) Next() Row { +func (it *Iterator4Slice) Next() Row { if l := it.Len(); it.cursor >= l { it.cursor = l + 1 return it.End() @@ -103,7 +87,7 @@ func (it *iterator4Slice) Next() Row { } // Current implements the Iterator interface. -func (it *iterator4Slice) Current() Row { +func (it *Iterator4Slice) Current() Row { if it.cursor == 0 || it.cursor > it.Len() { return it.End() } @@ -111,22 +95,28 @@ func (it *iterator4Slice) Current() Row { } // End implements the Iterator interface. -func (*iterator4Slice) End() Row { +func (*Iterator4Slice) End() Row { return Row{} } // ReachEnd implements the Iterator interface. -func (it *iterator4Slice) ReachEnd() { +func (it *Iterator4Slice) ReachEnd() { it.cursor = it.Len() + 1 } // Len implements the Iterator interface. -func (it *iterator4Slice) Len() int { +func (it *Iterator4Slice) Len() int { return len(it.rows) } +// Reset iterator.rows and cursor. +func (it *Iterator4Slice) Reset(rows []Row) { + it.rows = rows + it.cursor = 0 +} + // Error returns none-nil error if anything wrong happens during the iteration. -func (*iterator4Slice) Error() error { +func (*Iterator4Slice) Error() error { return nil } diff --git a/util/chunk/row_container.go b/util/chunk/row_container.go index b4c73ae8e3cab..d40a9846c47ab 100644 --- a/util/chunk/row_container.go +++ b/util/chunk/row_container.go @@ -136,6 +136,7 @@ func (c *RowContainer) SpillToDisk() { defer c.actionSpill.setStatus(spilledYet) } var err error + memory.QueryForceDisk.Add(1) n := c.m.records.inMemory.NumChunks() c.m.records.inDisk = NewListInDisk(c.m.records.inMemory.FieldTypes()) c.m.records.inDisk.diskTracker.AttachTo(c.diskTracker) @@ -411,9 +412,6 @@ func (a *SpillDiskAction) Reset() { a.once = sync.Once{} } -// SetLogHook sets the hook, it does nothing just to form the memory.ActionOnExceed interface. -func (*SpillDiskAction) SetLogHook(_ func(uint64)) {} - // GetPriority get the priority of the Action. func (*SpillDiskAction) GetPriority() int64 { return memory.DefSpillPriority @@ -446,6 +444,10 @@ type SortedRowContainer struct { actionSpill *SortAndSpillDiskAction memTracker *memory.Tracker + + // Sort is a time-consuming operation, we need to set a checkpoint to detect + // the outside signal periodically. + timesOfRowCompare uint } // NewSortedRowContainer creates a new SortedRowContainer in memory. @@ -483,8 +485,22 @@ func (c *SortedRowContainer) lessRow(rowI, rowJ Row) bool { return false } +// SignalCheckpointForSort indicates the times of row comparation that a signal detection will be triggered. +const SignalCheckpointForSort uint = 10240 + // keyColumnsLess is the less function for key columns. func (c *SortedRowContainer) keyColumnsLess(i, j int) bool { + if c.timesOfRowCompare >= SignalCheckpointForSort { + // Trigger Consume for checking the NeedKill signal + c.memTracker.Consume(1) + c.timesOfRowCompare = 0 + } + failpoint.Inject("SignalCheckpointForSort", func(val failpoint.Value) { + if val.(bool) { + c.timesOfRowCompare += 1024 + } + }) + c.timesOfRowCompare++ rowI := c.m.records.inMemory.GetRow(c.ptrM.rowPtrs[i]) rowJ := c.m.records.inMemory.GetRow(c.ptrM.rowPtrs[j]) return c.lessRow(rowI, rowJ) @@ -607,9 +623,6 @@ func (a *SortAndSpillDiskAction) Action(t *memory.Tracker) { } } -// SetLogHook sets the hook, it does nothing just to form the memory.ActionOnExceed interface. -func (*SortAndSpillDiskAction) SetLogHook(_ func(uint64)) {} - // WaitForTest waits all goroutine have gone. func (a *SortAndSpillDiskAction) WaitForTest() { a.testWg.Wait() diff --git a/util/codec/main_test.go b/util/codec/main_test.go index 32c64581b07df..d754807331c7f 100644 --- a/util/codec/main_test.go +++ b/util/codec/main_test.go @@ -25,6 +25,7 @@ func TestMain(m *testing.M) { testsetup.SetupForCommonTest() opts := []goleak.Option{ goleak.IgnoreTopFunction("github.com/golang/glog.(*loggingT).flushDaemon"), + goleak.IgnoreTopFunction("github.com/lestrrat-go/httprc.runFetchWorker"), goleak.IgnoreTopFunction("go.etcd.io/etcd/client/pkg/v3/logutil.(*MergeLogger).outputLoop"), } goleak.VerifyTestMain(m, opts...) diff --git a/util/collate/main_test.go b/util/collate/main_test.go index 53916051ad294..42632ee9bd640 100644 --- a/util/collate/main_test.go +++ b/util/collate/main_test.go @@ -25,6 +25,7 @@ func TestMain(m *testing.M) { testsetup.SetupForCommonTest() opts := []goleak.Option{ goleak.IgnoreTopFunction("github.com/golang/glog.(*loggingT).flushDaemon"), + goleak.IgnoreTopFunction("github.com/lestrrat-go/httprc.runFetchWorker"), goleak.IgnoreTopFunction("go.etcd.io/etcd/client/pkg/v3/logutil.(*MergeLogger).outputLoop"), } goleak.VerifyTestMain(m, opts...) diff --git a/util/cteutil/main_test.go b/util/cteutil/main_test.go index 2c6bb6eed00fa..44a7aeb89bc09 100644 --- a/util/cteutil/main_test.go +++ b/util/cteutil/main_test.go @@ -25,6 +25,7 @@ func TestMain(m *testing.M) { testsetup.SetupForCommonTest() opts := []goleak.Option{ goleak.IgnoreTopFunction("github.com/golang/glog.(*loggingT).flushDaemon"), + goleak.IgnoreTopFunction("github.com/lestrrat-go/httprc.runFetchWorker"), goleak.IgnoreTopFunction("go.etcd.io/etcd/client/pkg/v3/logutil.(*MergeLogger).outputLoop"), } goleak.VerifyTestMain(m, opts...) diff --git a/util/dbterror/main_test.go b/util/dbterror/main_test.go index 133187cfb5e26..9e86cc8d329e3 100644 --- a/util/dbterror/main_test.go +++ b/util/dbterror/main_test.go @@ -25,6 +25,7 @@ func TestMain(m *testing.M) { testsetup.SetupForCommonTest() opts := []goleak.Option{ goleak.IgnoreTopFunction("github.com/golang/glog.(*loggingT).flushDaemon"), + goleak.IgnoreTopFunction("github.com/lestrrat-go/httprc.runFetchWorker"), } goleak.VerifyTestMain(m, opts...) } diff --git a/util/dbutil/common.go b/util/dbutil/common.go index 37b6da5fd1f49..df54e18bd6909 100644 --- a/util/dbutil/common.go +++ b/util/dbutil/common.go @@ -19,7 +19,7 @@ import ( "database/sql" "encoding/json" "fmt" - "net/url" + "net" "os" "strconv" "strings" @@ -107,26 +107,31 @@ func GetDBConfigFromEnv(schema string) DBConfig { // OpenDB opens a mysql connection FD func OpenDB(cfg DBConfig, vars map[string]string) (*sql.DB, error) { - var dbDSN string + driverCfg := mysql.NewConfig() + driverCfg.Params = make(map[string]string) + driverCfg.User = cfg.User + driverCfg.Passwd = cfg.Password + driverCfg.Net = "tcp" + driverCfg.Addr = net.JoinHostPort(cfg.Host, strconv.Itoa(cfg.Port)) + driverCfg.Params["charset"] = "utf8mb4" + if len(cfg.Snapshot) != 0 { log.Info("create connection with snapshot", zap.String("snapshot", cfg.Snapshot)) - dbDSN = fmt.Sprintf("%s:%s@tcp(%s:%d)/?charset=utf8mb4&tidb_snapshot=%s", cfg.User, cfg.Password, cfg.Host, cfg.Port, cfg.Snapshot) - } else { - dbDSN = fmt.Sprintf("%s:%s@tcp(%s:%d)/?charset=utf8mb4", cfg.User, cfg.Password, cfg.Host, cfg.Port) + driverCfg.Params["tidb_snapshot"] = cfg.Snapshot } for key, val := range vars { // key='val'. add single quote for better compatibility. - dbDSN += fmt.Sprintf("&%s=%%27%s%%27", key, url.QueryEscape(val)) + driverCfg.Params[key] = fmt.Sprintf("'%s'", val) } - dbConn, err := sql.Open("mysql", dbDSN) + c, err := mysql.NewConnector(driverCfg) if err != nil { return nil, errors.Trace(err) } - - err = dbConn.Ping() - return dbConn, errors.Trace(err) + db := sql.OpenDB(c) + err = db.Ping() + return db, errors.Trace(err) } // CloseDB closes the mysql fd diff --git a/util/deadlockhistory/main_test.go b/util/deadlockhistory/main_test.go index 6e21d6d732021..388b04f00bbf0 100644 --- a/util/deadlockhistory/main_test.go +++ b/util/deadlockhistory/main_test.go @@ -25,6 +25,7 @@ func TestMain(m *testing.M) { testsetup.SetupForCommonTest() opts := []goleak.Option{ goleak.IgnoreTopFunction("github.com/golang/glog.(*loggingT).flushDaemon"), + goleak.IgnoreTopFunction("github.com/lestrrat-go/httprc.runFetchWorker"), goleak.IgnoreTopFunction("go.etcd.io/etcd/client/pkg/v3/logutil.(*MergeLogger).outputLoop"), } goleak.VerifyTestMain(m, opts...) diff --git a/util/disjointset/main_test.go b/util/disjointset/main_test.go index 1b4460b26d17c..4c7620d69dc07 100644 --- a/util/disjointset/main_test.go +++ b/util/disjointset/main_test.go @@ -25,6 +25,7 @@ func TestMain(m *testing.M) { testsetup.SetupForCommonTest() opts := []goleak.Option{ goleak.IgnoreTopFunction("github.com/golang/glog.(*loggingT).flushDaemon"), + goleak.IgnoreTopFunction("github.com/lestrrat-go/httprc.runFetchWorker"), goleak.IgnoreTopFunction("go.etcd.io/etcd/client/pkg/v3/logutil.(*MergeLogger).outputLoop"), } goleak.VerifyTestMain(m, opts...) diff --git a/util/disk/main_test.go b/util/disk/main_test.go index 247e29ff0047d..b5dc84c28cf70 100644 --- a/util/disk/main_test.go +++ b/util/disk/main_test.go @@ -25,6 +25,7 @@ func TestMain(m *testing.M) { testsetup.SetupForCommonTest() opts := []goleak.Option{ goleak.IgnoreTopFunction("github.com/golang/glog.(*loggingT).flushDaemon"), + goleak.IgnoreTopFunction("github.com/lestrrat-go/httprc.runFetchWorker"), goleak.IgnoreTopFunction("go.etcd.io/etcd/client/pkg/v3/logutil.(*MergeLogger).outputLoop"), } goleak.VerifyTestMain(m, opts...) diff --git a/util/execdetails/execdetails.go b/util/execdetails/execdetails.go index 2d483e167df61..c1c65499ec288 100644 --- a/util/execdetails/execdetails.go +++ b/util/execdetails/execdetails.go @@ -32,17 +32,17 @@ import ( // ExecDetails contains execution detail information. type ExecDetails struct { - CalleeAddress string - CopTime time.Duration - BackoffTime time.Duration - LockKeysDuration time.Duration BackoffSleep map[string]time.Duration BackoffTimes map[string]int - RequestCount int CommitDetail *util.CommitDetails LockKeysDetail *util.LockKeysDetails ScanDetail *util.ScanDetail + CalleeAddress string TimeDetail util.TimeDetail + CopTime time.Duration + BackoffTime time.Duration + LockKeysDuration time.Duration + RequestCount int } type stmtExecDetailKeyType struct{} @@ -318,9 +318,9 @@ func (d ExecDetails) ToZapFields() (fields []zap.Field) { } type basicCopRuntimeStats struct { - BasicRuntimeStats - threads int32 storeType string + BasicRuntimeStats + threads int32 } // String implements the RuntimeStats interface. @@ -359,8 +359,6 @@ func (*basicCopRuntimeStats) Tp() int { // CopRuntimeStats collects cop tasks' execution info. type CopRuntimeStats struct { - sync.Mutex - // stats stores the runtime statistics of coprocessor tasks. // The key of the map is the tikv-server address. Because a tikv-server can // have many region leaders, several coprocessor tasks can be sent to the @@ -370,6 +368,7 @@ type CopRuntimeStats struct { scanDetail *util.ScanDetail // do not use kv.StoreType because it will meet cycle import error storeType string + sync.Mutex } // RecordOneCopTask records a specific cop tasks's execution detail. @@ -635,9 +634,9 @@ func (e *BasicRuntimeStats) GetTime() int64 { // RuntimeStatsColl collects executors's execution info. type RuntimeStatsColl struct { - mu sync.Mutex rootStats map[int]*RootRuntimeStats copStats map[int]*CopRuntimeStats + mu sync.Mutex } // NewRuntimeStatsColl creates new executor collector. @@ -786,10 +785,10 @@ func NewConcurrencyInfo(name string, num int) *ConcurrencyInfo { // RuntimeStatsWithConcurrencyInfo is the BasicRuntimeStats with ConcurrencyInfo. type RuntimeStatsWithConcurrencyInfo struct { - // protect concurrency - sync.Mutex // executor concurrency information concurrency []*ConcurrencyInfo + // protect concurrency + sync.Mutex } // Tp implements the RuntimeStats interface. @@ -840,8 +839,8 @@ func (*RuntimeStatsWithConcurrencyInfo) Merge(RuntimeStats) {} // RuntimeStatsWithCommit is the RuntimeStats with commit detail. type RuntimeStatsWithCommit struct { Commit *util.CommitDetails - TxnCnt int LockKeys *util.LockKeysDetails + TxnCnt int } // Tp implements the RuntimeStats interface. diff --git a/util/execdetails/main_test.go b/util/execdetails/main_test.go index ee97941b29a63..0299931b53e97 100644 --- a/util/execdetails/main_test.go +++ b/util/execdetails/main_test.go @@ -24,6 +24,7 @@ func TestMain(m *testing.M) { testsetup.SetupForCommonTest() opts := []goleak.Option{ goleak.IgnoreTopFunction("github.com/golang/glog.(*loggingT).flushDaemon"), + goleak.IgnoreTopFunction("github.com/lestrrat-go/httprc.runFetchWorker"), goleak.IgnoreTopFunction("go.etcd.io/etcd/client/pkg/v3/logutil.(*MergeLogger).outputLoop"), } goleak.VerifyTestMain(m, opts...) diff --git a/util/expensivequery/expensivequerey_test.go b/util/expensivequery/expensivequerey_test.go index 2d98435339d46..d7a83b14019fc 100644 --- a/util/expensivequery/expensivequerey_test.go +++ b/util/expensivequery/expensivequerey_test.go @@ -25,6 +25,7 @@ func TestMain(m *testing.M) { testsetup.SetupForCommonTest() opts := []goleak.Option{ goleak.IgnoreTopFunction("github.com/golang/glog.(*loggingT).flushDaemon"), + goleak.IgnoreTopFunction("github.com/lestrrat-go/httprc.runFetchWorker"), goleak.IgnoreTopFunction("go.etcd.io/etcd/client/pkg/v3/logutil.(*MergeLogger).outputLoop"), } goleak.VerifyTestMain(m, opts...) diff --git a/util/expensivequery/expensivequery.go b/util/expensivequery/expensivequery.go index 51513cdbe50b0..e761d98ab05a2 100644 --- a/util/expensivequery/expensivequery.go +++ b/util/expensivequery/expensivequery.go @@ -63,7 +63,7 @@ func (eqh *Handle) Run() { costTime := time.Since(info.Time) if !info.ExceedExpensiveTimeThresh && costTime >= time.Second*time.Duration(threshold) && log.GetLevel() <= zapcore.WarnLevel { - logExpensiveQuery(costTime, info) + logExpensiveQuery(costTime, info, "expensive_query") info.ExceedExpensiveTimeThresh = true } if info.MaxExecutionTime > 0 && costTime > time.Duration(info.MaxExecutionTime)*time.Millisecond { @@ -106,10 +106,10 @@ func (eqh *Handle) LogOnQueryExceedMemQuota(connID uint64) { if !ok { return } - logExpensiveQuery(time.Since(info.Time), info) + logExpensiveQuery(time.Since(info.Time), info, "memory exceeds quota") } // logExpensiveQuery logs the queries which exceed the time threshold or memory threshold. -func logExpensiveQuery(costTime time.Duration, info *util.ProcessInfo) { - logutil.BgLogger().Warn("expensive_query", util.GenLogFields(costTime, info, true)...) +func logExpensiveQuery(costTime time.Duration, info *util.ProcessInfo, msg string) { + logutil.BgLogger().Warn(msg, util.GenLogFields(costTime, info, true)...) } diff --git a/util/fastrand/main_test.go b/util/fastrand/main_test.go index cf275eca82116..3aadf6e7f0a25 100644 --- a/util/fastrand/main_test.go +++ b/util/fastrand/main_test.go @@ -25,6 +25,7 @@ func TestMain(m *testing.M) { testsetup.SetupForCommonTest() opts := []goleak.Option{ goleak.IgnoreTopFunction("github.com/golang/glog.(*loggingT).flushDaemon"), + goleak.IgnoreTopFunction("github.com/lestrrat-go/httprc.runFetchWorker"), goleak.IgnoreTopFunction("go.etcd.io/etcd/client/pkg/v3/logutil.(*MergeLogger).outputLoop"), } goleak.VerifyTestMain(m, opts...) diff --git a/util/format/main_test.go b/util/format/main_test.go index 4755a0230915c..080132ddf8844 100644 --- a/util/format/main_test.go +++ b/util/format/main_test.go @@ -25,6 +25,7 @@ func TestMain(m *testing.M) { testsetup.SetupForCommonTest() opts := []goleak.Option{ goleak.IgnoreTopFunction("github.com/golang/glog.(*loggingT).flushDaemon"), + goleak.IgnoreTopFunction("github.com/lestrrat-go/httprc.runFetchWorker"), goleak.IgnoreTopFunction("go.etcd.io/etcd/client/pkg/v3/logutil.(*MergeLogger).outputLoop"), } goleak.VerifyTestMain(m, opts...) diff --git a/util/gctuner/mem.go b/util/gctuner/mem.go index 68c02db8a7c66..9fb85f1d801cb 100644 --- a/util/gctuner/mem.go +++ b/util/gctuner/mem.go @@ -15,12 +15,10 @@ package gctuner import ( - "runtime" + "github.com/pingcap/tidb/util/memory" ) -var memStats runtime.MemStats - func readMemoryInuse() uint64 { - runtime.ReadMemStats(&memStats) + memStats := memory.ForceReadMemStats() return memStats.HeapInuse } diff --git a/util/gctuner/memory_limit_tuner.go b/util/gctuner/memory_limit_tuner.go index 7a9035a387b39..9dba1bd0bd546 100644 --- a/util/gctuner/memory_limit_tuner.go +++ b/util/gctuner/memory_limit_tuner.go @@ -16,7 +16,6 @@ package gctuner import ( "math" - "runtime" "runtime/debug" "time" @@ -45,8 +44,7 @@ func (t *memoryLimitTuner) tuning() { if !t.isTuning.Load() { return } - r := &runtime.MemStats{} - runtime.ReadMemStats(r) + r := memory.ForceReadMemStats() gogc := util.GetGOGC() ratio := float64(100+gogc) / 100 // This `if` checks whether the **last** GC was triggered by MemoryLimit as far as possible. @@ -61,6 +59,8 @@ func (t *memoryLimitTuner) tuning() { if float64(r.HeapInuse)*ratio > float64(debug.SetMemoryLimit(-1)) { if t.nextGCTriggeredByMemoryLimit.Load() && t.waitingReset.CompareAndSwap(false, true) { go func() { + memory.MemoryLimitGCLast.Store(time.Now()) + memory.MemoryLimitGCTotal.Add(1) debug.SetMemoryLimit(math.MaxInt64) resetInterval := 1 * time.Minute // Wait 1 minute and set back, to avoid frequent GC failpoint.Inject("testMemoryLimitTuner", func(val failpoint.Value) { @@ -74,18 +74,22 @@ func (t *memoryLimitTuner) tuning() { continue } }() + memory.TriggerMemoryLimitGC.Store(true) } t.nextGCTriggeredByMemoryLimit.Store(true) } else { t.nextGCTriggeredByMemoryLimit.Store(false) + memory.TriggerMemoryLimitGC.Store(false) } } -func (t *memoryLimitTuner) start() { - t.finalizer = newFinalizer(t.tuning) // start tuning +// Start starts the memory limit tuner. +func (t *memoryLimitTuner) Start() { + t.finalizer = newFinalizer(t.tuning) // Start tuning } -func (t *memoryLimitTuner) stop() { +// Stop stops the memory limit tuner. +func (t *memoryLimitTuner) Stop() { t.finalizer.stop() } @@ -102,10 +106,7 @@ func (t *memoryLimitTuner) GetPercentage() float64 { // UpdateMemoryLimit updates the memory limit. // This function should be called when `tidb_server_memory_limit` or `tidb_server_memory_limit_gc_trigger` is modified. func (t *memoryLimitTuner) UpdateMemoryLimit() { - var memoryLimit int64 = math.MaxInt64 - if !EnableGOGCTuner.Load() { - memoryLimit = t.calcMemoryLimit() - } + var memoryLimit = t.calcMemoryLimit() if memoryLimit == math.MaxInt64 { t.isTuning.Store(false) } else { @@ -123,5 +124,5 @@ func (t *memoryLimitTuner) calcMemoryLimit() int64 { } func init() { - GlobalMemoryLimitTuner.start() + GlobalMemoryLimitTuner.Start() } diff --git a/util/gctuner/tuner.go b/util/gctuner/tuner.go index 2ee3679ef2363..ec74f48ec4be0 100644 --- a/util/gctuner/tuner.go +++ b/util/gctuner/tuner.go @@ -23,22 +23,37 @@ import ( "github.com/pingcap/tidb/util" ) +var ( + maxGCPercent atomic.Uint32 + minGCPercent atomic.Uint32 + + // EnableGOGCTuner is to control whether enable the GOGC tuner. + EnableGOGCTuner atomic.Bool + + defaultGCPercent uint32 = 100 +) + const ( - // MaxGCPercent is the default max cost of memory. - MaxGCPercent uint32 = 500 - // MinGCPercent is the default min cost of memory. - MinGCPercent uint32 = 20 + defaultMaxGCPercent uint32 = 500 + defaultMinGCPercent uint32 = 100 ) -var defaultGCPercent uint32 = 100 +// SetMaxGCPercent sets the max cost of memory. +func SetMaxGCPercent(percent uint32) { + maxGCPercent.Store(percent) +} -// EnableGOGCTuner is to control whether enable the GOGC tuner. -var EnableGOGCTuner atomic.Bool +// SetMinGCPercent sets the max cost of memory. +func SetMinGCPercent(percent uint32) { + minGCPercent.Store(percent) +} func init() { if val, err := strconv.Atoi(os.Getenv("GOGC")); err == nil { defaultGCPercent = uint32(val) } + SetMinGCPercent(defaultMinGCPercent) + SetMaxGCPercent(defaultMaxGCPercent) } // SetDefaultGOGC is to set the default GOGC value. @@ -46,7 +61,7 @@ func SetDefaultGOGC() { util.SetGOGC(int(defaultGCPercent)) } -// Tuning sets the threshold of heap which will be respect by gc tuner. +// Tuning sets the threshold of heap which will be respect by gogc tuner. // When Tuning, the env GOGC will not be take effect. // threshold: disable tuning if threshold == 0 func Tuning(threshold uint64) { @@ -151,13 +166,13 @@ func calcGCPercent(inuse, threshold uint64) uint32 { } // inuse heap larger than threshold, use min percent if threshold <= inuse { - return MinGCPercent + return minGCPercent.Load() } gcPercent := uint32(math.Floor(float64(threshold-inuse) / float64(inuse) * 100)) - if gcPercent < MinGCPercent { - return MinGCPercent - } else if gcPercent > MaxGCPercent { - return MaxGCPercent + if gcPercent < minGCPercent.Load() { + return minGCPercent.Load() + } else if gcPercent > maxGCPercent.Load() { + return maxGCPercent.Load() } return gcPercent } diff --git a/util/gctuner/tuner_test.go b/util/gctuner/tuner_test.go index 153bf7368ab14..397f4a621c96a 100644 --- a/util/gctuner/tuner_test.go +++ b/util/gctuner/tuner_test.go @@ -25,7 +25,7 @@ var testHeap []byte func TestTuner(t *testing.T) { EnableGOGCTuner.Store(true) - memLimit := uint64(100 * 1024 * 1024) //100 MB + memLimit := uint64(1000 * 1024 * 1024) //1000 MB threshold := memLimit / 2 tn := newTuner(threshold) require.Equal(t, threshold, tn.threshold.Load()) @@ -37,15 +37,15 @@ func TestTuner(t *testing.T) { runtime.GC() for i := 0; i < 100; i++ { runtime.GC() - require.Equal(t, MaxGCPercent, tn.getGCPercent()) + require.Equal(t, maxGCPercent.Load(), tn.getGCPercent()) } // 1/4 threshold testHeap = make([]byte, threshold/4) for i := 0; i < 100; i++ { runtime.GC() - require.GreaterOrEqual(t, tn.getGCPercent(), uint32(100)) - require.LessOrEqual(t, tn.getGCPercent(), uint32(500)) + require.GreaterOrEqual(t, tn.getGCPercent(), maxGCPercent.Load()/2) + require.LessOrEqual(t, tn.getGCPercent(), maxGCPercent.Load()) } // 1/2 threshold @@ -53,8 +53,8 @@ func TestTuner(t *testing.T) { runtime.GC() for i := 0; i < 100; i++ { runtime.GC() - require.GreaterOrEqual(t, tn.getGCPercent(), uint32(50)) - require.LessOrEqual(t, tn.getGCPercent(), uint32(100)) + require.GreaterOrEqual(t, tn.getGCPercent(), minGCPercent.Load()) + require.LessOrEqual(t, tn.getGCPercent(), maxGCPercent.Load()/2) } // 3/4 threshold @@ -62,7 +62,7 @@ func TestTuner(t *testing.T) { runtime.GC() for i := 0; i < 100; i++ { runtime.GC() - require.Equal(t, MinGCPercent, tn.getGCPercent()) + require.Equal(t, minGCPercent.Load(), tn.getGCPercent()) } // out of threshold @@ -70,7 +70,7 @@ func TestTuner(t *testing.T) { runtime.GC() for i := 0; i < 100; i++ { runtime.GC() - require.Equal(t, MinGCPercent, tn.getGCPercent()) + require.Equal(t, minGCPercent.Load(), tn.getGCPercent()) } } @@ -81,13 +81,13 @@ func TestCalcGCPercent(t *testing.T) { require.Equal(t, defaultGCPercent, calcGCPercent(0, 1)) require.Equal(t, defaultGCPercent, calcGCPercent(1, 0)) - require.Equal(t, MaxGCPercent, calcGCPercent(1, 3*gb)) - require.Equal(t, MaxGCPercent, calcGCPercent(gb/10, 4*gb)) - require.Equal(t, MaxGCPercent, calcGCPercent(gb/2, 4*gb)) + require.Equal(t, maxGCPercent.Load(), calcGCPercent(1, 3*gb)) + require.Equal(t, maxGCPercent.Load(), calcGCPercent(gb/10, 4*gb)) + require.Equal(t, maxGCPercent.Load(), calcGCPercent(gb/2, 4*gb)) require.Equal(t, uint32(300), calcGCPercent(1*gb, 4*gb)) require.Equal(t, uint32(166), calcGCPercent(1.5*gb, 4*gb)) require.Equal(t, uint32(100), calcGCPercent(2*gb, 4*gb)) - require.Equal(t, uint32(33), calcGCPercent(3*gb, 4*gb)) - require.Equal(t, MinGCPercent, calcGCPercent(4*gb, 4*gb)) - require.Equal(t, MinGCPercent, calcGCPercent(5*gb, 4*gb)) + require.Equal(t, uint32(100), calcGCPercent(3*gb, 4*gb)) + require.Equal(t, minGCPercent.Load(), calcGCPercent(4*gb, 4*gb)) + require.Equal(t, minGCPercent.Load(), calcGCPercent(5*gb, 4*gb)) } diff --git a/util/gcutil/gcutil.go b/util/gcutil/gcutil.go index 0d3ae7da53ee2..9474cace52378 100644 --- a/util/gcutil/gcutil.go +++ b/util/gcutil/gcutil.go @@ -42,12 +42,12 @@ func CheckGCEnable(ctx sessionctx.Context) (enable bool, err error) { // DisableGC will disable GC enable variable. func DisableGC(ctx sessionctx.Context) error { - return ctx.GetSessionVars().GlobalVarsAccessor.SetGlobalSysVar(variable.TiDBGCEnable, variable.Off) + return ctx.GetSessionVars().GlobalVarsAccessor.SetGlobalSysVar(context.Background(), variable.TiDBGCEnable, variable.Off) } // EnableGC will enable GC enable variable. func EnableGC(ctx sessionctx.Context) error { - return ctx.GetSessionVars().GlobalVarsAccessor.SetGlobalSysVar(variable.TiDBGCEnable, variable.On) + return ctx.GetSessionVars().GlobalVarsAccessor.SetGlobalSysVar(context.Background(), variable.TiDBGCEnable, variable.On) } // ValidateSnapshot checks that the newly set snapshot time is after GC safe point time. diff --git a/util/generatedexpr/main_test.go b/util/generatedexpr/main_test.go index 13347ccf5d48d..fc8f011ecfa2b 100644 --- a/util/generatedexpr/main_test.go +++ b/util/generatedexpr/main_test.go @@ -25,6 +25,7 @@ func TestMain(m *testing.M) { testsetup.SetupForCommonTest() opts := []goleak.Option{ goleak.IgnoreTopFunction("github.com/golang/glog.(*loggingT).flushDaemon"), + goleak.IgnoreTopFunction("github.com/lestrrat-go/httprc.runFetchWorker"), goleak.IgnoreTopFunction("go.etcd.io/etcd/client/pkg/v3/logutil.(*MergeLogger).outputLoop"), } goleak.VerifyTestMain(m, opts...) diff --git a/util/hack/main_test.go b/util/hack/main_test.go index 7503891fc847b..152f4c57d6bb7 100644 --- a/util/hack/main_test.go +++ b/util/hack/main_test.go @@ -25,6 +25,7 @@ func TestMain(m *testing.M) { testsetup.SetupForCommonTest() opts := []goleak.Option{ goleak.IgnoreTopFunction("github.com/golang/glog.(*loggingT).flushDaemon"), + goleak.IgnoreTopFunction("github.com/lestrrat-go/httprc.runFetchWorker"), goleak.IgnoreTopFunction("go.etcd.io/etcd/client/pkg/v3/logutil.(*MergeLogger).outputLoop"), } goleak.VerifyTestMain(m, opts...) diff --git a/util/hint/hint_processor.go b/util/hint/hint_processor.go index ce61936aa1cf7..47613a429d99a 100644 --- a/util/hint/hint_processor.go +++ b/util/hint/hint_processor.go @@ -314,8 +314,13 @@ func extractHintWarns(warns []error) []error { // BlockHintProcessor processes hints at different level of sql statement. type BlockHintProcessor struct { - QbNameMap map[string]int // Map from query block name to select stmt offset. - QbHints map[int][]*ast.TableOptimizerHint // Group all hints at same query block. + QbNameMap map[string]int // Map from query block name to select stmt offset. + QbHints map[int][]*ast.TableOptimizerHint // Group all hints at same query block. + + // Used for the view's hint + QbNameMap4View map[string][]ast.HintTable // Map from view's query block name to view's table list. + QbHints4View map[string][]*ast.TableOptimizerHint // Group all hints at same query block for view hints. + Ctx sessionctx.Context selectStmtOffset int } @@ -334,8 +339,15 @@ func (p *BlockHintProcessor) Enter(in ast.Node) (ast.Node, bool) { p.checkQueryBlockHints(node.TableHints, 0) case *ast.SelectStmt: p.selectStmtOffset++ + // Only support view hints which appear in the outer select part + if p.selectStmtOffset == 1 { + // Handle the view hints and update the left hint. + node.TableHints = p.handleViewHints(node.TableHints) + } node.QueryBlockOffset = p.selectStmtOffset p.checkQueryBlockHints(node.TableHints, node.QueryBlockOffset) + case *ast.ExplainStmt: + return in, true } return in, false } @@ -354,9 +366,15 @@ func (p *BlockHintProcessor) checkQueryBlockHints(hints []*ast.TableOptimizerHin if hint.HintName.L != hintQBName { continue } + if offset > 1 && len(hint.Tables) > 0 { + if p.Ctx != nil { + p.Ctx.GetSessionVars().StmtCtx.AppendWarning(fmt.Errorf("The qb_name hint for view only supports to be defined in the first query block")) + } + continue + } if qbName != "" { if p.Ctx != nil { - p.Ctx.GetSessionVars().StmtCtx.AppendWarning(fmt.Errorf("There are more than two query names in same query block,, using the first one %s", qbName)) + p.Ctx.GetSessionVars().StmtCtx.AppendWarning(fmt.Errorf("There are more than two query names in same query block, using the first one %s", qbName)) } } else { qbName = hint.QBName.L @@ -377,6 +395,75 @@ func (p *BlockHintProcessor) checkQueryBlockHints(hints []*ast.TableOptimizerHin } } +func (p *BlockHintProcessor) handleViewHints(hints []*ast.TableOptimizerHint) (leftHints []*ast.TableOptimizerHint) { + if len(hints) == 0 { + return + } + + usedHints := make([]bool, len(hints)) + // handle the query block name hints for view + for i, hint := range hints { + if hint.HintName.L != hintQBName || len(hint.Tables) == 0 { + continue + } + usedHints[i] = true + if p.QbNameMap4View == nil { + p.QbNameMap4View = make(map[string][]ast.HintTable) + } + qbName := hint.QBName.L + if qbName == "" { + continue + } + if _, ok := p.QbNameMap4View[qbName]; ok { + if p.Ctx != nil { + p.Ctx.GetSessionVars().StmtCtx.AppendWarning(fmt.Errorf("Duplicate query block name %s for view's query block hint, only the first one is effective", qbName)) + } + } else { + p.QbNameMap4View[qbName] = hint.Tables + } + } + + // handle the view hints + for i, hint := range hints { + if usedHints[i] || hint.HintName.L == hintQBName { + continue + } + + ok := false + qbName := hint.QBName.L + if qbName != "" { + _, ok = p.QbNameMap4View[qbName] + } else if len(hint.Tables) > 0 { + // Only support to define the tables belong to the same query block in one view hint + qbName = hint.Tables[0].QBName.L + _, ok = p.QbNameMap4View[qbName] + if ok { + for _, table := range hint.Tables { + if table.QBName.L != qbName { + ok = false + break + } + } + } + } + + if ok { + if p.QbHints4View == nil { + p.QbHints4View = make(map[string][]*ast.TableOptimizerHint) + } + usedHints[i] = true + p.QbHints4View[qbName] = append(p.QbHints4View[qbName], hint) + } + } + + for i, hint := range hints { + if !usedHints[i] { + leftHints = append(leftHints, hint) + } + } + return +} + const ( defaultUpdateBlockName = "upd_1" defaultDeleteBlockName = "del_1" diff --git a/util/keydecoder/main_test.go b/util/keydecoder/main_test.go index 56d9e58ffea48..893be9ecbb29e 100644 --- a/util/keydecoder/main_test.go +++ b/util/keydecoder/main_test.go @@ -24,6 +24,7 @@ import ( func TestMain(m *testing.M) { opts := []goleak.Option{ goleak.IgnoreTopFunction("github.com/golang/glog.(*loggingT).flushDaemon"), + goleak.IgnoreTopFunction("github.com/lestrrat-go/httprc.runFetchWorker"), goleak.IgnoreTopFunction("go.etcd.io/etcd/client/pkg/v3/logutil.(*MergeLogger).outputLoop"), } testsetup.SetupForCommonTest() diff --git a/util/kvcache/main_test.go b/util/kvcache/main_test.go index ea0330d7ef031..b6b1f7ef92d8f 100644 --- a/util/kvcache/main_test.go +++ b/util/kvcache/main_test.go @@ -25,6 +25,7 @@ func TestMain(m *testing.M) { testsetup.SetupForCommonTest() opts := []goleak.Option{ goleak.IgnoreTopFunction("github.com/golang/glog.(*loggingT).flushDaemon"), + goleak.IgnoreTopFunction("github.com/lestrrat-go/httprc.runFetchWorker"), goleak.IgnoreTopFunction("go.etcd.io/etcd/client/pkg/v3/logutil.(*MergeLogger).outputLoop"), } goleak.VerifyTestMain(m, opts...) diff --git a/util/localpool/main_test.go b/util/localpool/main_test.go index 8e9efc8ad5ef3..10314587bb0a7 100644 --- a/util/localpool/main_test.go +++ b/util/localpool/main_test.go @@ -25,6 +25,7 @@ func TestMain(m *testing.M) { testsetup.SetupForCommonTest() opts := []goleak.Option{ goleak.IgnoreTopFunction("github.com/golang/glog.(*loggingT).flushDaemon"), + goleak.IgnoreTopFunction("github.com/lestrrat-go/httprc.runFetchWorker"), goleak.IgnoreTopFunction("go.etcd.io/etcd/client/pkg/v3/logutil.(*MergeLogger).outputLoop"), } goleak.VerifyTestMain(m, opts...) diff --git a/util/logutil/hex_test.go b/util/logutil/hex_test.go index 9351b0216cf52..fac76d0406ad9 100644 --- a/util/logutil/hex_test.go +++ b/util/logutil/hex_test.go @@ -32,7 +32,7 @@ func TestHex(t *testing.T) { region.StartKey = []byte{'t', 200, '\\', 000, 000, 000, '\\', 000, 000, 000, 37, '-', 000, 000, 000, 000, 000, 000, 000, 37} region.EndKey = []byte("3asg3asd") - expected := "{Id:6662 StartKey:74c85c0000005c000000252d0000000000000025 EndKey:3361736733617364 RegionEpoch: Peers:[] EncryptionMeta:}" + expected := "{Id:6662 StartKey:74c85c0000005c000000252d0000000000000025 EndKey:3361736733617364 RegionEpoch: Peers:[] EncryptionMeta: IsInFlashback:false}" require.Equal(t, expected, logutil.Hex(®ion).String()) } diff --git a/util/logutil/main_test.go b/util/logutil/main_test.go index b1ac511fec3c1..03fdc6cc0bc3c 100644 --- a/util/logutil/main_test.go +++ b/util/logutil/main_test.go @@ -37,6 +37,7 @@ func TestMain(m *testing.M) { testsetup.SetupForCommonTest() opts := []goleak.Option{ goleak.IgnoreTopFunction("github.com/golang/glog.(*loggingT).flushDaemon"), + goleak.IgnoreTopFunction("github.com/lestrrat-go/httprc.runFetchWorker"), goleak.IgnoreTopFunction("gopkg.in/natefinch/lumberjack%2ev2.(*Logger).millRun"), } goleak.VerifyTestMain(m, opts...) diff --git a/util/main_test.go b/util/main_test.go index 195cb2094222b..05ed110d044d6 100644 --- a/util/main_test.go +++ b/util/main_test.go @@ -25,6 +25,7 @@ func TestMain(m *testing.M) { testsetup.SetupForCommonTest() opts := []goleak.Option{ goleak.IgnoreTopFunction("github.com/golang/glog.(*loggingT).flushDaemon"), + goleak.IgnoreTopFunction("github.com/lestrrat-go/httprc.runFetchWorker"), goleak.IgnoreTopFunction("go.etcd.io/etcd/client/pkg/v3/logutil.(*MergeLogger).outputLoop"), } goleak.VerifyTestMain(m, opts...) diff --git a/util/mathutil/main_test.go b/util/mathutil/main_test.go index db09a75eb56af..3bdc670b7df19 100644 --- a/util/mathutil/main_test.go +++ b/util/mathutil/main_test.go @@ -25,6 +25,7 @@ func TestMain(m *testing.M) { testsetup.SetupForCommonTest() opts := []goleak.Option{ goleak.IgnoreTopFunction("github.com/golang/glog.(*loggingT).flushDaemon"), + goleak.IgnoreTopFunction("github.com/lestrrat-go/httprc.runFetchWorker"), goleak.IgnoreTopFunction("go.etcd.io/etcd/client/pkg/v3/logutil.(*MergeLogger).outputLoop"), } goleak.VerifyTestMain(m, opts...) diff --git a/util/memory/BUILD.bazel b/util/memory/BUILD.bazel index fd9a8ecb399ef..f2a98af689cc0 100644 --- a/util/memory/BUILD.bazel +++ b/util/memory/BUILD.bazel @@ -5,6 +5,7 @@ go_library( srcs = [ "action.go", "meminfo.go", + "memstats.go", "tracker.go", ], importpath = "github.com/pingcap/tidb/util/memory", @@ -16,6 +17,8 @@ go_library( "//util/cgroup", "//util/dbterror", "//util/logutil", + "//util/mathutil", + "@com_github_pingcap_failpoint//:failpoint", "@com_github_shirou_gopsutil_v3//mem", "@org_golang_x_exp//slices", "@org_uber_go_atomic//:atomic", diff --git a/util/memory/action.go b/util/memory/action.go index 2ad4f76dcb695..75b587e2157f9 100644 --- a/util/memory/action.go +++ b/util/memory/action.go @@ -31,9 +31,6 @@ type ActionOnExceed interface { // Action will be called when memory usage exceeds memory quota by the // corresponding Tracker. Action(t *Tracker) - // SetLogHook binds a log hook which will be triggered and log an detailed - // message for the out-of-memory sql. - SetLogHook(hook func(uint64)) // SetFallback sets a fallback action which will be triggered if itself has // already been triggered. SetFallback(a ActionOnExceed) @@ -134,15 +131,20 @@ func (a *PanicOnExceed) SetLogHook(hook func(uint64)) { } // Action panics when memory usage exceeds memory quota. -func (a *PanicOnExceed) Action(_ *Tracker) { +func (a *PanicOnExceed) Action(t *Tracker) { a.mutex.Lock() + defer func() { + a.mutex.Unlock() + }() if !a.acted { - if a.logHook != nil { + if a.logHook == nil { + logutil.BgLogger().Warn("memory exceeds quota", + zap.Uint64("connID", t.SessionID), zap.Error(errMemExceedThreshold.GenWithStackByArgs(t.label, t.BytesConsumed(), t.GetBytesLimit(), t.String()))) + } else { a.logHook(a.ConnID) } } a.acted = true - a.mutex.Unlock() panic(PanicMemoryExceed + fmt.Sprintf("[conn_id=%d]", a.ConnID)) } diff --git a/util/memory/meminfo.go b/util/memory/meminfo.go index b4efab9c769db..4db9ac67b07dc 100644 --- a/util/memory/meminfo.go +++ b/util/memory/meminfo.go @@ -15,12 +15,13 @@ package memory import ( - "runtime" "sync" "time" + "github.com/pingcap/failpoint" "github.com/pingcap/tidb/parser/terror" "github.com/pingcap/tidb/util/cgroup" + "github.com/pingcap/tidb/util/mathutil" "github.com/shirou/gopsutil/v3/mem" ) @@ -33,6 +34,11 @@ var MemUsed func() (uint64, error) // GetMemTotalIgnoreErr returns the total amount of RAM on this system/container. If error occurs, return 0. func GetMemTotalIgnoreErr() uint64 { if memTotal, err := MemTotal(); err == nil { + failpoint.Inject("GetMemTotalError", func(val failpoint.Value) { + if val, ok := val.(bool); val && ok { + memTotal = 0 + } + }) return memTotal } return 0 @@ -105,6 +111,11 @@ func MemTotalCGroup() (uint64, error) { if err != nil { return memo, err } + v, err := mem.VirtualMemory() + if err != nil { + return 0, err + } + memo = mathutil.Min(v.Total, memo) memLimit.set(memo, time.Now()) return memo, nil } @@ -119,6 +130,11 @@ func MemUsedCGroup() (uint64, error) { if err != nil { return memo, err } + v, err := mem.VirtualMemory() + if err != nil { + return 0, err + } + memo = mathutil.Min(v.Used, memo) memUsage.set(memo, time.Now()) return memo, nil } @@ -153,8 +169,7 @@ func InstanceMemUsed() (uint64, error) { return used, nil } var memoryUsage uint64 - instanceStats := &runtime.MemStats{} - runtime.ReadMemStats(instanceStats) + instanceStats := ReadMemStats() memoryUsage = instanceStats.HeapAlloc serverMemUsage.set(memoryUsage, time.Now()) return memoryUsage, nil diff --git a/util/memory/memstats.go b/util/memory/memstats.go new file mode 100644 index 0000000000000..cd0074ece52c7 --- /dev/null +++ b/util/memory/memstats.go @@ -0,0 +1,49 @@ +// Copyright 2018 PingCAP, Inc. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +package memory + +import ( + "runtime" + "sync/atomic" + "time" +) + +var stats atomic.Pointer[globalMstats] + +// ReadMemInterval controls the interval to read memory stats. +const ReadMemInterval = 300 * time.Millisecond + +// ReadMemStats read the mem stats from runtime.ReadMemStats +func ReadMemStats() *runtime.MemStats { + s := stats.Load() + if s != nil { + return &s.m + } + return ForceReadMemStats() +} + +// ForceReadMemStats is to force read memory stats. +func ForceReadMemStats() *runtime.MemStats { + var g globalMstats + g.ts = time.Now() + runtime.ReadMemStats(&g.m) + stats.Store(&g) + return &g.m +} + +type globalMstats struct { + ts time.Time + m runtime.MemStats +} diff --git a/util/memory/tracker.go b/util/memory/tracker.go index c967f47a05509..179aa66087497 100644 --- a/util/memory/tracker.go +++ b/util/memory/tracker.go @@ -21,6 +21,7 @@ import ( "strconv" "sync" "sync/atomic" + "time" "github.com/pingcap/tidb/metrics" atomicutil "go.uber.org/atomic" @@ -32,8 +33,14 @@ const TrackMemWhenExceeds = 104857600 // 100MB // Process global variables for memory limit. var ( + ServerMemoryLimitOriginText = atomicutil.NewString("0") ServerMemoryLimit = atomicutil.NewUint64(0) ServerMemoryLimitSessMinSize = atomicutil.NewUint64(128 << 20) + + QueryForceDisk = atomicutil.NewInt64(0) + TriggerMemoryLimitGC = atomicutil.NewBool(false) + MemoryLimitGCLast = atomicutil.NewTime(time.Time{}) + MemoryLimitGCTotal = atomicutil.NewInt64(0) ) // Tracker is used to track the memory usage during query execution. @@ -225,6 +232,17 @@ func (t *Tracker) GetFallbackForTest(ignoreFinishedAction bool) ActionOnExceed { return t.actionMuForHardLimit.actionOnExceed } +// UnbindActions unbinds actionForHardLimit and actionForSoftLimit. +func (t *Tracker) UnbindActions() { + t.actionMuForSoftLimit.Lock() + defer t.actionMuForSoftLimit.Unlock() + t.actionMuForSoftLimit.actionOnExceed = nil + + t.actionMuForHardLimit.Lock() + defer t.actionMuForHardLimit.Unlock() + t.actionMuForHardLimit.actionOnExceed = &LogOnExceed{} +} + // reArrangeFallback merge two action chains and rearrange them by priority in descending order. func reArrangeFallback(a ActionOnExceed, b ActionOnExceed) ActionOnExceed { if a == nil { @@ -288,6 +306,16 @@ func (t *Tracker) Detach() { t.DetachFromGlobalTracker() return } + if parent.IsRootTrackerOfSess { + parent.actionMuForHardLimit.Lock() + parent.actionMuForHardLimit.actionOnExceed = nil + parent.actionMuForHardLimit.Unlock() + + parent.actionMuForSoftLimit.Lock() + parent.actionMuForSoftLimit.actionOnExceed = nil + parent.actionMuForSoftLimit.Unlock() + parent.NeedKill.Store(false) + } parent.remove(t) t.mu.Lock() defer t.mu.Unlock() @@ -528,6 +556,11 @@ func (t *Tracker) MaxConsumed() int64 { return t.maxConsumed.Load() } +// ResetMaxConsumed should be invoked before executing a new statement in a session. +func (t *Tracker) ResetMaxConsumed() { + t.maxConsumed.Store(t.BytesConsumed()) +} + // SearchTrackerWithoutLock searches the specific tracker under this tracker without lock. func (t *Tracker) SearchTrackerWithoutLock(label int) *Tracker { if t.label == label { @@ -712,6 +745,28 @@ func (t *Tracker) setParent(parent *Tracker) { t.parMu.parent = parent } +// CountAllChildrenMemUse return memory used tree for the tracker +func (t *Tracker) CountAllChildrenMemUse() map[string]int64 { + trackerMemUseMap := make(map[string]int64, 1024) + countChildMem(t, "", trackerMemUseMap) + return trackerMemUseMap +} + +func countChildMem(t *Tracker, familyTreeName string, trackerMemUseMap map[string]int64) { + if len(familyTreeName) > 0 { + familyTreeName += " <- " + } + familyTreeName += "[" + strconv.Itoa(t.Label()) + "]" + trackerMemUseMap[familyTreeName] += t.BytesConsumed() + t.mu.Lock() + defer t.mu.Unlock() + for _, sli := range t.mu.children { + for _, tracker := range sli { + countChildMem(tracker, familyTreeName, trackerMemUseMap) + } + } +} + const ( // LabelForSQLText represents the label of the SQL Text LabelForSQLText int = -1 @@ -763,6 +818,10 @@ const ( LabelForAnalyzeMemory int = -24 // LabelForGlobalAnalyzeMemory represents the label of the global memory of all analyze jobs LabelForGlobalAnalyzeMemory int = -25 + // LabelForPreparedPlanCache represents the label of the prepared plan cache memory usage + LabelForPreparedPlanCache int = -26 + // LabelForSession represents the label of a session. + LabelForSession int = -27 ) // MetricsTypes is used to get label for metrics diff --git a/util/memory/tracker_test.go b/util/memory/tracker_test.go index baa6461ac76c5..cdfc4ff353435 100644 --- a/util/memory/tracker_test.go +++ b/util/memory/tracker_test.go @@ -251,9 +251,6 @@ type mockAction struct { priority int64 } -func (a *mockAction) SetLogHook(hook func(uint64)) { -} - func (a *mockAction) Action(t *Tracker) { if a.called && a.fallbackAction != nil { a.fallbackAction.Action(t) diff --git a/util/memoryusagealarm/BUILD.bazel b/util/memoryusagealarm/BUILD.bazel index 48c7910492ecc..80d092d6e4723 100644 --- a/util/memoryusagealarm/BUILD.bazel +++ b/util/memoryusagealarm/BUILD.bazel @@ -26,8 +26,8 @@ go_test( race = "on", deps = [ "//sessionctx/stmtctx", + "//sessionctx/variable", "//util", - "//util/execdetails", "//util/memory", "@com_github_stretchr_testify//assert", ], diff --git a/util/memoryusagealarm/memoryusagealarm.go b/util/memoryusagealarm/memoryusagealarm.go index b934d38e646c4..882d8462ef60b 100644 --- a/util/memoryusagealarm/memoryusagealarm.go +++ b/util/memoryusagealarm/memoryusagealarm.go @@ -18,7 +18,6 @@ import ( "fmt" "os" "path/filepath" - "runtime" rpprof "runtime/pprof" "strings" "sync/atomic" @@ -73,38 +72,42 @@ func (eqh *Handle) Run() { type memoryUsageAlarm struct { lastCheckTime time.Time + lastUpdateVariableTime time.Time err error baseRecordDir string lastRecordDirName []string lastRecordMemUsed uint64 memoryUsageAlarmRatio float64 memoryUsageAlarmKeepRecordNum int64 - serverMemoryQuota uint64 - isServerMemoryQuotaSet bool + serverMemoryLimit uint64 + isServerMemoryLimitSet bool initialized bool } func (record *memoryUsageAlarm) updateVariable() { + if time.Since(record.lastUpdateVariableTime) < 60*time.Second { + return + } record.memoryUsageAlarmRatio = variable.MemoryUsageAlarmRatio.Load() record.memoryUsageAlarmKeepRecordNum = variable.MemoryUsageAlarmKeepRecordNum.Load() -} - -func (record *memoryUsageAlarm) initMemoryUsageAlarmRecord() { - record.memoryUsageAlarmRatio = variable.MemoryUsageAlarmRatio.Load() - record.memoryUsageAlarmKeepRecordNum = variable.MemoryUsageAlarmKeepRecordNum.Load() - if quota := config.GetGlobalConfig().Performance.ServerMemoryQuota; quota != 0 { - record.serverMemoryQuota = quota - record.isServerMemoryQuotaSet = true + record.serverMemoryLimit = memory.ServerMemoryLimit.Load() + if record.serverMemoryLimit != 0 { + record.isServerMemoryLimitSet = true } else { - record.serverMemoryQuota, record.err = memory.MemTotal() + record.serverMemoryLimit, record.err = memory.MemTotal() if record.err != nil { logutil.BgLogger().Error("get system total memory fail", zap.Error(record.err)) return } - record.isServerMemoryQuotaSet = false + record.isServerMemoryLimitSet = false } + record.lastUpdateVariableTime = time.Now() +} + +func (record *memoryUsageAlarm) initMemoryUsageAlarmRecord() { record.lastCheckTime = time.Time{} - record.lastRecordMemUsed = uint64(float64(record.serverMemoryQuota) * record.memoryUsageAlarmRatio) + record.lastUpdateVariableTime = time.Time{} + record.updateVariable() tidbLogDir, _ := filepath.Split(config.GetGlobalConfig().Log.File.Filename) record.baseRecordDir = filepath.Join(tidbLogDir, "oom_record") if record.err = disk.CheckAndCreateDir(record.baseRecordDir); record.err != nil { @@ -140,9 +143,8 @@ func (record *memoryUsageAlarm) alarm4ExcessiveMemUsage(sm util.SessionManager) return } var memoryUsage uint64 - instanceStats := &runtime.MemStats{} - runtime.ReadMemStats(instanceStats) - if record.isServerMemoryQuotaSet { + instanceStats := memory.ReadMemStats() + if record.isServerMemoryLimitSet { memoryUsage = instanceStats.HeapAlloc } else { memoryUsage, record.err = memory.MemUsed() @@ -181,7 +183,7 @@ func (record *memoryUsageAlarm) needRecord(memoryUsage uint64) (bool, AlarmReaso // At least 60 seconds between two recordings that memory usage is less than threshold (default 70% system memory). // If the memory is still exceeded, only records once. // If the memory used ratio recorded this time is 0.1 higher than last time, we will force record this time. - if float64(memoryUsage) <= float64(record.serverMemoryQuota)*record.memoryUsageAlarmRatio { + if float64(memoryUsage) <= float64(record.serverMemoryLimit)*record.memoryUsageAlarmRatio { return false, NoReason } @@ -190,7 +192,7 @@ func (record *memoryUsageAlarm) needRecord(memoryUsage uint64) (bool, AlarmReaso if interval > 60*time.Second { return true, ExceedAlarmRatio } - if float64(memDiff) > 0.1*float64(record.serverMemoryQuota) { + if float64(memDiff) > 0.1*float64(record.serverMemoryLimit) { return true, GrowTooFast } return false, NoReason @@ -198,12 +200,12 @@ func (record *memoryUsageAlarm) needRecord(memoryUsage uint64) (bool, AlarmReaso func (record *memoryUsageAlarm) doRecord(memUsage uint64, instanceMemoryUsage uint64, sm util.SessionManager, alarmReason AlarmReason) { fields := make([]zap.Field, 0, 6) - fields = append(fields, zap.Bool("is server-memory-quota set", record.isServerMemoryQuotaSet)) - if record.isServerMemoryQuotaSet { - fields = append(fields, zap.Any("server-memory-quota", record.serverMemoryQuota)) + fields = append(fields, zap.Bool("is tidb_server_memory_limit set", record.isServerMemoryLimitSet)) + if record.isServerMemoryLimitSet { + fields = append(fields, zap.Any("tidb_server_memory_limit", record.serverMemoryLimit)) fields = append(fields, zap.Any("tidb-server memory usage", memUsage)) } else { - fields = append(fields, zap.Any("system memory total", record.serverMemoryQuota)) + fields = append(fields, zap.Any("system memory total", record.serverMemoryLimit)) fields = append(fields, zap.Any("system memory usage", memUsage)) fields = append(fields, zap.Any("tidb-server memory usage", instanceMemoryUsage)) } @@ -234,22 +236,12 @@ func (record *memoryUsageAlarm) tryRemoveRedundantRecords() { } } -func getRelevantSystemVariableBuf() string { - var buf strings.Builder - buf.WriteString("System variables : \n") - buf.WriteString(fmt.Sprintf("oom-action: %v \n", config.GetGlobalConfig().OOMAction)) - buf.WriteString(fmt.Sprintf("mem-quota-query : %v \n", config.GetGlobalConfig().MemQuotaQuery)) - buf.WriteString(fmt.Sprintf("server-memory-quota : %v \n", config.GetGlobalConfig().Performance.ServerMemoryQuota)) - buf.WriteString("\n") - return buf.String() -} - -func getCurrentAnalyzePlan(info *util.ProcessInfo) string { +func getPlanString(info *util.ProcessInfo) string { var buf strings.Builder - rows := info.CurrentAnalyzeRows(info.Plan, info.RuntimeStatsColl) - buf.WriteString(fmt.Sprintf("|%v|%v|%v|%v|%v|%v|%v|%v|%v|", "id", "estRows", "actRows", "task", "access object", "execution info", "operator info", "memory", "disk")) + rows := info.PlanExplainRows + buf.WriteString(fmt.Sprintf("|%v|%v|%v|%v|%v|", "id", "estRows", "task", "access object", "operator info")) for _, row := range rows { - buf.WriteString(fmt.Sprintf("\n|%v|%v|%v|%v|%v|%v|%v|%v|%v|", row[0], row[1], row[2], row[3], row[4], row[5], row[6], row[7], row[8])) + buf.WriteString(fmt.Sprintf("\n|%v|%v|%v|%v|%v|", row[0], row[1], row[2], row[3], row[4])) } return buf.String() } @@ -278,12 +270,17 @@ func (record *memoryUsageAlarm) getTop10SqlInfo(cmp func(i, j *util.ProcessInfo) list = list[:10] } var buf strings.Builder + oomAction := variable.OOMAction.Load() + serverMemoryLimit := memory.ServerMemoryLimit.Load() for i, info := range list { buf.WriteString(fmt.Sprintf("SQL %v: \n", i)) fields := util.GenLogFields(record.lastCheckTime.Sub(info.Time), info, false) - fields = append(fields, zap.Int("analyze-version", info.OOMAlarmVariablesInfo.SessionAnalyzeVersion)) + fields = append(fields, zap.String("tidb_mem_oom_action", oomAction)) + fields = append(fields, zap.Uint64("tidb_server_memory_limit", serverMemoryLimit)) + fields = append(fields, zap.Int64("tidb_mem_quota_query", info.OOMAlarmVariablesInfo.SessionMemQuotaQuery)) + fields = append(fields, zap.Int("tidb_analyze_version", info.OOMAlarmVariablesInfo.SessionAnalyzeVersion)) fields = append(fields, zap.Bool("tidb_enable_rate_limit_action", info.OOMAlarmVariablesInfo.SessionEnabledRateLimitAction)) - fields = append(fields, zap.String("current_analyze_plan", getCurrentAnalyzePlan(info))) + fields = append(fields, zap.String("current_analyze_plan", getPlanString(info))) for _, field := range fields { switch field.Type { case zapcore.StringType: @@ -304,7 +301,7 @@ func (record *memoryUsageAlarm) getTop10SqlInfo(cmp func(i, j *util.ProcessInfo) func (record *memoryUsageAlarm) getTop10SqlInfoByMemoryUsage(pinfo []*util.ProcessInfo) strings.Builder { return record.getTop10SqlInfo(func(i, j *util.ProcessInfo) bool { - return i.StmtCtx.MemTracker.MaxConsumed() > j.StmtCtx.MemTracker.MaxConsumed() + return i.MemTracker.MaxConsumed() > j.MemTracker.MaxConsumed() }, pinfo) } @@ -334,9 +331,6 @@ func (record *memoryUsageAlarm) recordSQL(sm util.SessionManager, recordDir stri logutil.BgLogger().Error("close oom record file fail", zap.Error(err)) } }() - if _, err = f.WriteString(getRelevantSystemVariableBuf()); err != nil { - logutil.BgLogger().Error("write oom record file fail", zap.Error(err)) - } record.printTop10SqlInfo(pinfo, f) return nil } diff --git a/util/memoryusagealarm/memoryusagealarm_test.go b/util/memoryusagealarm/memoryusagealarm_test.go index de40f228eea64..f0b0af6bd99ec 100644 --- a/util/memoryusagealarm/memoryusagealarm_test.go +++ b/util/memoryusagealarm/memoryusagealarm_test.go @@ -19,8 +19,8 @@ import ( "time" "github.com/pingcap/tidb/sessionctx/stmtctx" + "github.com/pingcap/tidb/sessionctx/variable" "github.com/pingcap/tidb/util" - "github.com/pingcap/tidb/util/execdetails" "github.com/pingcap/tidb/util/memory" "github.com/stretchr/testify/assert" ) @@ -30,13 +30,13 @@ func TestIfNeedDoRecord(t *testing.T) { record.initMemoryUsageAlarmRecord() // mem usage ratio < 70% will not be recorded - memUsed := 0.69 * float64(record.serverMemoryQuota) + memUsed := 0.69 * float64(record.serverMemoryLimit) needRecord, reason := record.needRecord(uint64(memUsed)) assert.False(t, needRecord) assert.Equal(t, NoReason, reason) // mem usage ratio > 70% will not be recorded - memUsed = 0.71 * float64(record.serverMemoryQuota) + memUsed = 0.71 * float64(record.serverMemoryLimit) needRecord, reason = record.needRecord(uint64(memUsed)) assert.True(t, needRecord) assert.Equal(t, ExceedAlarmRatio, reason) @@ -44,14 +44,14 @@ func TestIfNeedDoRecord(t *testing.T) { record.lastRecordMemUsed = uint64(memUsed) // check time - last record time < 60s will not be recorded - memUsed = 0.71 * float64(record.serverMemoryQuota) + memUsed = 0.71 * float64(record.serverMemoryLimit) needRecord, reason = record.needRecord(uint64(memUsed)) assert.False(t, needRecord) assert.Equal(t, NoReason, reason) // check time - last record time > 60s will be recorded record.lastCheckTime = record.lastCheckTime.Add(-60 * time.Second) - memUsed = 0.71 * float64(record.serverMemoryQuota) + memUsed = 0.71 * float64(record.serverMemoryLimit) needRecord, reason = record.needRecord(uint64(memUsed)) assert.True(t, needRecord) assert.Equal(t, ExceedAlarmRatio, reason) @@ -59,13 +59,13 @@ func TestIfNeedDoRecord(t *testing.T) { record.lastRecordMemUsed = uint64(memUsed) // mem usage ratio - last mem usage ratio < 10% will not be recorded - memUsed = 0.80 * float64(record.serverMemoryQuota) + memUsed = 0.80 * float64(record.serverMemoryLimit) needRecord, reason = record.needRecord(uint64(memUsed)) assert.False(t, needRecord) assert.Equal(t, NoReason, reason) // mem usage ratio - last mem usage ratio > 10% will not be recorded even though check time - last record time - memUsed = 0.82 * float64(record.serverMemoryQuota) + memUsed = 0.82 * float64(record.serverMemoryLimit) needRecord, reason = record.needRecord(uint64(memUsed)) assert.True(t, needRecord) assert.Equal(t, GrowTooFast, reason) @@ -85,18 +85,18 @@ func TestGetTop10Sql(t *testing.T) { []time.Time{genTime(1234), genTime(123456), genTime(12)}, 3) actual := record.getTop10SqlInfoByMemoryUsage(processInfoList) - assert.Equal(t, "SQL 0: \ncost_time: 0s\ntxn_start_ts: 0\nmem_max: 87263523 Bytes (83.2 MB)\nsql: \nanalyze-version: 0\ntidb_enable_rate_limit_action: false\ncurrent_analyze_plan: |id|estRows|actRows|task|access object|execution info|operator info|memory|disk|\nSQL 1: \ncost_time: 123444s\ntxn_start_ts: 0\nmem_max: 34223 Bytes (33.4 KB)\nsql: \nanalyze-version: 0\ntidb_enable_rate_limit_action: false\ncurrent_analyze_plan: |id|estRows|actRows|task|access object|execution info|operator info|memory|disk|\nSQL 2: \ncost_time: 122222s\ntxn_start_ts: 0\nmem_max: 1000 Bytes (1000 Bytes)\nsql: \nanalyze-version: 0\ntidb_enable_rate_limit_action: false\ncurrent_analyze_plan: |id|estRows|actRows|task|access object|execution info|operator info|memory|disk|\n\n", + assert.Equal(t, "SQL 0: \ncost_time: 0s\ntxn_start_ts: 0\nmem_max: 87263523 Bytes (83.2 MB)\nsql: \ntidb_mem_oom_action: CANCEL\ntidb_server_memory_limit: 0\ntidb_mem_quota_query: 0\ntidb_analyze_version: 0\ntidb_enable_rate_limit_action: false\ncurrent_analyze_plan: |id|estRows|task|access object|operator info|\nSQL 1: \ncost_time: 123444s\ntxn_start_ts: 0\nmem_max: 34223 Bytes (33.4 KB)\nsql: \ntidb_mem_oom_action: CANCEL\ntidb_server_memory_limit: 0\ntidb_mem_quota_query: 0\ntidb_analyze_version: 0\ntidb_enable_rate_limit_action: false\ncurrent_analyze_plan: |id|estRows|task|access object|operator info|\nSQL 2: \ncost_time: 122222s\ntxn_start_ts: 0\nmem_max: 1000 Bytes (1000 Bytes)\nsql: \ntidb_mem_oom_action: CANCEL\ntidb_server_memory_limit: 0\ntidb_mem_quota_query: 0\ntidb_analyze_version: 0\ntidb_enable_rate_limit_action: false\ncurrent_analyze_plan: |id|estRows|task|access object|operator info|\n\n", actual.String()) actual = record.getTop10SqlInfoByCostTime(processInfoList) - assert.Equal(t, "SQL 0: \ncost_time: 123444s\ntxn_start_ts: 0\nmem_max: 34223 Bytes (33.4 KB)\nsql: \nanalyze-version: 0\ntidb_enable_rate_limit_action: false\ncurrent_analyze_plan: |id|estRows|actRows|task|access object|execution info|operator info|memory|disk|\nSQL 1: \ncost_time: 122222s\ntxn_start_ts: 0\nmem_max: 1000 Bytes (1000 Bytes)\nsql: \nanalyze-version: 0\ntidb_enable_rate_limit_action: false\ncurrent_analyze_plan: |id|estRows|actRows|task|access object|execution info|operator info|memory|disk|\nSQL 2: \ncost_time: 0s\ntxn_start_ts: 0\nmem_max: 87263523 Bytes (83.2 MB)\nsql: \nanalyze-version: 0\ntidb_enable_rate_limit_action: false\ncurrent_analyze_plan: |id|estRows|actRows|task|access object|execution info|operator info|memory|disk|\n\n", actual.String()) + assert.Equal(t, "SQL 0: \ncost_time: 123444s\ntxn_start_ts: 0\nmem_max: 34223 Bytes (33.4 KB)\nsql: \ntidb_mem_oom_action: CANCEL\ntidb_server_memory_limit: 0\ntidb_mem_quota_query: 0\ntidb_analyze_version: 0\ntidb_enable_rate_limit_action: false\ncurrent_analyze_plan: |id|estRows|task|access object|operator info|\nSQL 1: \ncost_time: 122222s\ntxn_start_ts: 0\nmem_max: 1000 Bytes (1000 Bytes)\nsql: \ntidb_mem_oom_action: CANCEL\ntidb_server_memory_limit: 0\ntidb_mem_quota_query: 0\ntidb_analyze_version: 0\ntidb_enable_rate_limit_action: false\ncurrent_analyze_plan: |id|estRows|task|access object|operator info|\nSQL 2: \ncost_time: 0s\ntxn_start_ts: 0\nmem_max: 87263523 Bytes (83.2 MB)\nsql: \ntidb_mem_oom_action: CANCEL\ntidb_server_memory_limit: 0\ntidb_mem_quota_query: 0\ntidb_analyze_version: 0\ntidb_enable_rate_limit_action: false\ncurrent_analyze_plan: |id|estRows|task|access object|operator info|\n\n", actual.String()) processInfoList = genMockProcessInfoList([]int64{1000, 87263523, 34223, 532355, 123225151, 231231515, 12312, 12515134234, 232, 12414, 15263236, 123123123, 15}, []time.Time{genTime(1234), genTime(123456), genTime(12), genTime(3241), genTime(12515), genTime(3215), genTime(61314), genTime(12234), genTime(1123), genTime(512), genTime(11111), genTime(22222), genTime(5512)}, 13) actual = record.getTop10SqlInfoByMemoryUsage(processInfoList) - assert.Equal(t, "SQL 0: \ncost_time: 111222s\ntxn_start_ts: 0\nmem_max: 12515134234 Bytes (11.7 GB)\nsql: \nanalyze-version: 0\ntidb_enable_rate_limit_action: false\ncurrent_analyze_plan: |id|estRows|actRows|task|access object|execution info|operator info|memory|disk|\nSQL 1: \ncost_time: 120241s\ntxn_start_ts: 0\nmem_max: 231231515 Bytes (220.5 MB)\nsql: \nanalyze-version: 0\ntidb_enable_rate_limit_action: false\ncurrent_analyze_plan: |id|estRows|actRows|task|access object|execution info|operator info|memory|disk|\nSQL 2: \ncost_time: 110941s\ntxn_start_ts: 0\nmem_max: 123225151 Bytes (117.5 MB)\nsql: \nanalyze-version: 0\ntidb_enable_rate_limit_action: false\ncurrent_analyze_plan: |id|estRows|actRows|task|access object|execution info|operator info|memory|disk|\nSQL 3: \ncost_time: 101234s\ntxn_start_ts: 0\nmem_max: 123123123 Bytes (117.4 MB)\nsql: \nanalyze-version: 0\ntidb_enable_rate_limit_action: false\ncurrent_analyze_plan: |id|estRows|actRows|task|access object|execution info|operator info|memory|disk|\nSQL 4: \ncost_time: 0s\ntxn_start_ts: 0\nmem_max: 87263523 Bytes (83.2 MB)\nsql: \nanalyze-version: 0\ntidb_enable_rate_limit_action: false\ncurrent_analyze_plan: |id|estRows|actRows|task|access object|execution info|operator info|memory|disk|\nSQL 5: \ncost_time: 112345s\ntxn_start_ts: 0\nmem_max: 15263236 Bytes (14.6 MB)\nsql: \nanalyze-version: 0\ntidb_enable_rate_limit_action: false\ncurrent_analyze_plan: |id|estRows|actRows|task|access object|execution info|operator info|memory|disk|\nSQL 6: \ncost_time: 120215s\ntxn_start_ts: 0\nmem_max: 532355 Bytes (519.9 KB)\nsql: \nanalyze-version: 0\ntidb_enable_rate_limit_action: false\ncurrent_analyze_plan: |id|estRows|actRows|task|access object|execution info|operator info|memory|disk|\nSQL 7: \ncost_time: 123444s\ntxn_start_ts: 0\nmem_max: 34223 Bytes (33.4 KB)\nsql: \nanalyze-version: 0\ntidb_enable_rate_limit_action: false\ncurrent_analyze_plan: |id|estRows|actRows|task|access object|execution info|operator info|memory|disk|\nSQL 8: \ncost_time: 122944s\ntxn_start_ts: 0\nmem_max: 12414 Bytes (12.1 KB)\nsql: \nanalyze-version: 0\ntidb_enable_rate_limit_action: false\ncurrent_analyze_plan: |id|estRows|actRows|task|access object|execution info|operator info|memory|disk|\nSQL 9: \ncost_time: 62142s\ntxn_start_ts: 0\nmem_max: 12312 Bytes (12.0 KB)\nsql: \nanalyze-version: 0\ntidb_enable_rate_limit_action: false\ncurrent_analyze_plan: |id|estRows|actRows|task|access object|execution info|operator info|memory|disk|\n\n", actual.String()) + assert.Equal(t, "SQL 0: \ncost_time: 111222s\ntxn_start_ts: 0\nmem_max: 12515134234 Bytes (11.7 GB)\nsql: \ntidb_mem_oom_action: CANCEL\ntidb_server_memory_limit: 0\ntidb_mem_quota_query: 0\ntidb_analyze_version: 0\ntidb_enable_rate_limit_action: false\ncurrent_analyze_plan: |id|estRows|task|access object|operator info|\nSQL 1: \ncost_time: 120241s\ntxn_start_ts: 0\nmem_max: 231231515 Bytes (220.5 MB)\nsql: \ntidb_mem_oom_action: CANCEL\ntidb_server_memory_limit: 0\ntidb_mem_quota_query: 0\ntidb_analyze_version: 0\ntidb_enable_rate_limit_action: false\ncurrent_analyze_plan: |id|estRows|task|access object|operator info|\nSQL 2: \ncost_time: 110941s\ntxn_start_ts: 0\nmem_max: 123225151 Bytes (117.5 MB)\nsql: \ntidb_mem_oom_action: CANCEL\ntidb_server_memory_limit: 0\ntidb_mem_quota_query: 0\ntidb_analyze_version: 0\ntidb_enable_rate_limit_action: false\ncurrent_analyze_plan: |id|estRows|task|access object|operator info|\nSQL 3: \ncost_time: 101234s\ntxn_start_ts: 0\nmem_max: 123123123 Bytes (117.4 MB)\nsql: \ntidb_mem_oom_action: CANCEL\ntidb_server_memory_limit: 0\ntidb_mem_quota_query: 0\ntidb_analyze_version: 0\ntidb_enable_rate_limit_action: false\ncurrent_analyze_plan: |id|estRows|task|access object|operator info|\nSQL 4: \ncost_time: 0s\ntxn_start_ts: 0\nmem_max: 87263523 Bytes (83.2 MB)\nsql: \ntidb_mem_oom_action: CANCEL\ntidb_server_memory_limit: 0\ntidb_mem_quota_query: 0\ntidb_analyze_version: 0\ntidb_enable_rate_limit_action: false\ncurrent_analyze_plan: |id|estRows|task|access object|operator info|\nSQL 5: \ncost_time: 112345s\ntxn_start_ts: 0\nmem_max: 15263236 Bytes (14.6 MB)\nsql: \ntidb_mem_oom_action: CANCEL\ntidb_server_memory_limit: 0\ntidb_mem_quota_query: 0\ntidb_analyze_version: 0\ntidb_enable_rate_limit_action: false\ncurrent_analyze_plan: |id|estRows|task|access object|operator info|\nSQL 6: \ncost_time: 120215s\ntxn_start_ts: 0\nmem_max: 532355 Bytes (519.9 KB)\nsql: \ntidb_mem_oom_action: CANCEL\ntidb_server_memory_limit: 0\ntidb_mem_quota_query: 0\ntidb_analyze_version: 0\ntidb_enable_rate_limit_action: false\ncurrent_analyze_plan: |id|estRows|task|access object|operator info|\nSQL 7: \ncost_time: 123444s\ntxn_start_ts: 0\nmem_max: 34223 Bytes (33.4 KB)\nsql: \ntidb_mem_oom_action: CANCEL\ntidb_server_memory_limit: 0\ntidb_mem_quota_query: 0\ntidb_analyze_version: 0\ntidb_enable_rate_limit_action: false\ncurrent_analyze_plan: |id|estRows|task|access object|operator info|\nSQL 8: \ncost_time: 122944s\ntxn_start_ts: 0\nmem_max: 12414 Bytes (12.1 KB)\nsql: \ntidb_mem_oom_action: CANCEL\ntidb_server_memory_limit: 0\ntidb_mem_quota_query: 0\ntidb_analyze_version: 0\ntidb_enable_rate_limit_action: false\ncurrent_analyze_plan: |id|estRows|task|access object|operator info|\nSQL 9: \ncost_time: 62142s\ntxn_start_ts: 0\nmem_max: 12312 Bytes (12.0 KB)\nsql: \ntidb_mem_oom_action: CANCEL\ntidb_server_memory_limit: 0\ntidb_mem_quota_query: 0\ntidb_analyze_version: 0\ntidb_enable_rate_limit_action: false\ncurrent_analyze_plan: |id|estRows|task|access object|operator info|\n\n", actual.String()) actual = record.getTop10SqlInfoByCostTime(processInfoList) - assert.Equal(t, "SQL 0: \ncost_time: 123444s\ntxn_start_ts: 0\nmem_max: 34223 Bytes (33.4 KB)\nsql: \nanalyze-version: 0\ntidb_enable_rate_limit_action: false\ncurrent_analyze_plan: |id|estRows|actRows|task|access object|execution info|operator info|memory|disk|\nSQL 1: \ncost_time: 122944s\ntxn_start_ts: 0\nmem_max: 12414 Bytes (12.1 KB)\nsql: \nanalyze-version: 0\ntidb_enable_rate_limit_action: false\ncurrent_analyze_plan: |id|estRows|actRows|task|access object|execution info|operator info|memory|disk|\nSQL 2: \ncost_time: 122333s\ntxn_start_ts: 0\nmem_max: 232 Bytes (232 Bytes)\nsql: \nanalyze-version: 0\ntidb_enable_rate_limit_action: false\ncurrent_analyze_plan: |id|estRows|actRows|task|access object|execution info|operator info|memory|disk|\nSQL 3: \ncost_time: 122222s\ntxn_start_ts: 0\nmem_max: 1000 Bytes (1000 Bytes)\nsql: \nanalyze-version: 0\ntidb_enable_rate_limit_action: false\ncurrent_analyze_plan: |id|estRows|actRows|task|access object|execution info|operator info|memory|disk|\nSQL 4: \ncost_time: 120241s\ntxn_start_ts: 0\nmem_max: 231231515 Bytes (220.5 MB)\nsql: \nanalyze-version: 0\ntidb_enable_rate_limit_action: false\ncurrent_analyze_plan: |id|estRows|actRows|task|access object|execution info|operator info|memory|disk|\nSQL 5: \ncost_time: 120215s\ntxn_start_ts: 0\nmem_max: 532355 Bytes (519.9 KB)\nsql: \nanalyze-version: 0\ntidb_enable_rate_limit_action: false\ncurrent_analyze_plan: |id|estRows|actRows|task|access object|execution info|operator info|memory|disk|\nSQL 6: \ncost_time: 117944s\ntxn_start_ts: 0\nmem_max: 15 Bytes (15 Bytes)\nsql: \nanalyze-version: 0\ntidb_enable_rate_limit_action: false\ncurrent_analyze_plan: |id|estRows|actRows|task|access object|execution info|operator info|memory|disk|\nSQL 7: \ncost_time: 112345s\ntxn_start_ts: 0\nmem_max: 15263236 Bytes (14.6 MB)\nsql: \nanalyze-version: 0\ntidb_enable_rate_limit_action: false\ncurrent_analyze_plan: |id|estRows|actRows|task|access object|execution info|operator info|memory|disk|\nSQL 8: \ncost_time: 111222s\ntxn_start_ts: 0\nmem_max: 12515134234 Bytes (11.7 GB)\nsql: \nanalyze-version: 0\ntidb_enable_rate_limit_action: false\ncurrent_analyze_plan: |id|estRows|actRows|task|access object|execution info|operator info|memory|disk|\nSQL 9: \ncost_time: 110941s\ntxn_start_ts: 0\nmem_max: 123225151 Bytes (117.5 MB)\nsql: \nanalyze-version: 0\ntidb_enable_rate_limit_action: false\ncurrent_analyze_plan: |id|estRows|actRows|task|access object|execution info|operator info|memory|disk|\n\n", actual.String()) + assert.Equal(t, "SQL 0: \ncost_time: 123444s\ntxn_start_ts: 0\nmem_max: 34223 Bytes (33.4 KB)\nsql: \ntidb_mem_oom_action: CANCEL\ntidb_server_memory_limit: 0\ntidb_mem_quota_query: 0\ntidb_analyze_version: 0\ntidb_enable_rate_limit_action: false\ncurrent_analyze_plan: |id|estRows|task|access object|operator info|\nSQL 1: \ncost_time: 122944s\ntxn_start_ts: 0\nmem_max: 12414 Bytes (12.1 KB)\nsql: \ntidb_mem_oom_action: CANCEL\ntidb_server_memory_limit: 0\ntidb_mem_quota_query: 0\ntidb_analyze_version: 0\ntidb_enable_rate_limit_action: false\ncurrent_analyze_plan: |id|estRows|task|access object|operator info|\nSQL 2: \ncost_time: 122333s\ntxn_start_ts: 0\nmem_max: 232 Bytes (232 Bytes)\nsql: \ntidb_mem_oom_action: CANCEL\ntidb_server_memory_limit: 0\ntidb_mem_quota_query: 0\ntidb_analyze_version: 0\ntidb_enable_rate_limit_action: false\ncurrent_analyze_plan: |id|estRows|task|access object|operator info|\nSQL 3: \ncost_time: 122222s\ntxn_start_ts: 0\nmem_max: 1000 Bytes (1000 Bytes)\nsql: \ntidb_mem_oom_action: CANCEL\ntidb_server_memory_limit: 0\ntidb_mem_quota_query: 0\ntidb_analyze_version: 0\ntidb_enable_rate_limit_action: false\ncurrent_analyze_plan: |id|estRows|task|access object|operator info|\nSQL 4: \ncost_time: 120241s\ntxn_start_ts: 0\nmem_max: 231231515 Bytes (220.5 MB)\nsql: \ntidb_mem_oom_action: CANCEL\ntidb_server_memory_limit: 0\ntidb_mem_quota_query: 0\ntidb_analyze_version: 0\ntidb_enable_rate_limit_action: false\ncurrent_analyze_plan: |id|estRows|task|access object|operator info|\nSQL 5: \ncost_time: 120215s\ntxn_start_ts: 0\nmem_max: 532355 Bytes (519.9 KB)\nsql: \ntidb_mem_oom_action: CANCEL\ntidb_server_memory_limit: 0\ntidb_mem_quota_query: 0\ntidb_analyze_version: 0\ntidb_enable_rate_limit_action: false\ncurrent_analyze_plan: |id|estRows|task|access object|operator info|\nSQL 6: \ncost_time: 117944s\ntxn_start_ts: 0\nmem_max: 15 Bytes (15 Bytes)\nsql: \ntidb_mem_oom_action: CANCEL\ntidb_server_memory_limit: 0\ntidb_mem_quota_query: 0\ntidb_analyze_version: 0\ntidb_enable_rate_limit_action: false\ncurrent_analyze_plan: |id|estRows|task|access object|operator info|\nSQL 7: \ncost_time: 112345s\ntxn_start_ts: 0\nmem_max: 15263236 Bytes (14.6 MB)\nsql: \ntidb_mem_oom_action: CANCEL\ntidb_server_memory_limit: 0\ntidb_mem_quota_query: 0\ntidb_analyze_version: 0\ntidb_enable_rate_limit_action: false\ncurrent_analyze_plan: |id|estRows|task|access object|operator info|\nSQL 8: \ncost_time: 111222s\ntxn_start_ts: 0\nmem_max: 12515134234 Bytes (11.7 GB)\nsql: \ntidb_mem_oom_action: CANCEL\ntidb_server_memory_limit: 0\ntidb_mem_quota_query: 0\ntidb_analyze_version: 0\ntidb_enable_rate_limit_action: false\ncurrent_analyze_plan: |id|estRows|task|access object|operator info|\nSQL 9: \ncost_time: 110941s\ntxn_start_ts: 0\nmem_max: 123225151 Bytes (117.5 MB)\nsql: \ntidb_mem_oom_action: CANCEL\ntidb_server_memory_limit: 0\ntidb_mem_quota_query: 0\ntidb_analyze_version: 0\ntidb_enable_rate_limit_action: false\ncurrent_analyze_plan: |id|estRows|task|access object|operator info|\n\n", actual.String()) } func genMockProcessInfoList(memConsumeList []int64, startTimeList []time.Time, size int) []*util.ProcessInfo { @@ -105,15 +105,39 @@ func genMockProcessInfoList(memConsumeList []int64, startTimeList []time.Time, s tracker := memory.NewTracker(0, 0) tracker.Consume(memConsumeList[i]) processInfo := util.ProcessInfo{Time: startTimeList[i], - StmtCtx: &stmtctx.StatementContext{MemTracker: tracker}, + StmtCtx: &stmtctx.StatementContext{}, + MemTracker: tracker, StatsInfo: func(interface{}) map[string]uint64 { return map[string]uint64{} }, - CurrentAnalyzeRows: func(interface{}, *execdetails.RuntimeStatsColl) [][]string { - return [][]string{} - }, } processInfoList = append(processInfoList, &processInfo) } return processInfoList } + +func TestUpdateVariables(t *testing.T) { + variable.MemoryUsageAlarmRatio.Store(0.3) + variable.MemoryUsageAlarmKeepRecordNum.Store(3) + memory.ServerMemoryLimit.Store(1024) + + record := memoryUsageAlarm{} + + record.initMemoryUsageAlarmRecord() + assert.Equal(t, 0.3, record.memoryUsageAlarmRatio) + assert.Equal(t, int64(3), record.memoryUsageAlarmKeepRecordNum) + assert.Equal(t, uint64(1024), record.serverMemoryLimit) + variable.MemoryUsageAlarmRatio.Store(0.6) + variable.MemoryUsageAlarmKeepRecordNum.Store(6) + memory.ServerMemoryLimit.Store(2048) + + record.updateVariable() + assert.Equal(t, 0.3, record.memoryUsageAlarmRatio) + assert.Equal(t, int64(3), record.memoryUsageAlarmKeepRecordNum) + assert.Equal(t, uint64(1024), record.serverMemoryLimit) + record.lastUpdateVariableTime = record.lastUpdateVariableTime.Add(-60 * time.Second) + record.updateVariable() + assert.Equal(t, 0.6, record.memoryUsageAlarmRatio) + assert.Equal(t, int64(6), record.memoryUsageAlarmKeepRecordNum) + assert.Equal(t, uint64(2048), record.serverMemoryLimit) +} diff --git a/util/mock/BUILD.bazel b/util/mock/BUILD.bazel index 511678cb9ca60..78ba5291cbe8b 100644 --- a/util/mock/BUILD.bazel +++ b/util/mock/BUILD.bazel @@ -11,6 +11,7 @@ go_library( importpath = "github.com/pingcap/tidb/util/mock", visibility = ["//visibility:public"], deps = [ + "//extension", "//kv", "//parser/ast", "//parser/model", diff --git a/util/mock/context.go b/util/mock/context.go index fd4c4d8bef376..d555fbf86c6ff 100644 --- a/util/mock/context.go +++ b/util/mock/context.go @@ -22,6 +22,7 @@ import ( "github.com/pingcap/errors" "github.com/pingcap/kvproto/pkg/kvrpcpb" + "github.com/pingcap/tidb/extension" "github.com/pingcap/tidb/kv" "github.com/pingcap/tidb/parser/ast" "github.com/pingcap/tidb/parser/model" @@ -432,6 +433,11 @@ func (*Context) DecodeSessionStates(context.Context, sessionctx.Context, *sessio return errors.Errorf("Not Supported") } +// GetExtensions returns the `*extension.SessionExtensions` object +func (*Context) GetExtensions() *extension.SessionExtensions { + return nil +} + // Close implements the sessionctx.Context interface. func (*Context) Close() {} @@ -443,17 +449,21 @@ func NewContext() *Context { ctx: ctx, cancel: cancel, } - sctx.sessionVars = variable.NewSessionVars(sctx) - sctx.sessionVars.InitChunkSize = 2 - sctx.sessionVars.MaxChunkSize = 32 - sctx.sessionVars.StmtCtx.TimeZone = time.UTC - sctx.sessionVars.StmtCtx.MemTracker = memory.NewTracker(-1, -1) - sctx.sessionVars.StmtCtx.DiskTracker = disk.NewTracker(-1, -1) - sctx.sessionVars.GlobalVarsAccessor = variable.NewMockGlobalAccessor() - sctx.sessionVars.EnablePaging = variable.DefTiDBEnablePaging - sctx.sessionVars.MinPagingSize = variable.DefMinPagingSize - sctx.sessionVars.CostModelVersion = variable.DefTiDBCostModelVer - sctx.sessionVars.EnableChunkRPC = true + vars := variable.NewSessionVars(sctx) + sctx.sessionVars = vars + vars.InitChunkSize = 2 + vars.MaxChunkSize = 32 + vars.StmtCtx.TimeZone = time.UTC + vars.MemTracker.SetBytesLimit(-1) + vars.DiskTracker.SetBytesLimit(-1) + vars.StmtCtx.MemTracker, vars.StmtCtx.DiskTracker = memory.NewTracker(-1, -1), disk.NewTracker(-1, -1) + vars.MemTracker.AttachTo(vars.MemTracker) + vars.DiskTracker.AttachTo(vars.DiskTracker) + vars.GlobalVarsAccessor = variable.NewMockGlobalAccessor() + vars.EnablePaging = variable.DefTiDBEnablePaging + vars.MinPagingSize = variable.DefMinPagingSize + vars.CostModelVersion = variable.DefTiDBCostModelVer + vars.EnableChunkRPC = true if err := sctx.GetSessionVars().SetSystemVar(variable.MaxAllowedPacket, "67108864"); err != nil { panic(err) } diff --git a/util/mock/main_test.go b/util/mock/main_test.go index 52fd2c12574b3..4583bc43b0f13 100644 --- a/util/mock/main_test.go +++ b/util/mock/main_test.go @@ -25,6 +25,7 @@ func TestMain(m *testing.M) { testsetup.SetupForCommonTest() opts := []goleak.Option{ goleak.IgnoreTopFunction("github.com/golang/glog.(*loggingT).flushDaemon"), + goleak.IgnoreTopFunction("github.com/lestrrat-go/httprc.runFetchWorker"), goleak.IgnoreTopFunction("go.etcd.io/etcd/client/pkg/v3/logutil.(*MergeLogger).outputLoop"), } goleak.VerifyTestMain(m, opts...) diff --git a/util/mvmap/main_test.go b/util/mvmap/main_test.go index c2ff6e9dac75f..7a5f3a941f68c 100644 --- a/util/mvmap/main_test.go +++ b/util/mvmap/main_test.go @@ -25,6 +25,7 @@ func TestMain(m *testing.M) { testsetup.SetupForCommonTest() opts := []goleak.Option{ goleak.IgnoreTopFunction("github.com/golang/glog.(*loggingT).flushDaemon"), + goleak.IgnoreTopFunction("github.com/lestrrat-go/httprc.runFetchWorker"), goleak.IgnoreTopFunction("go.etcd.io/etcd/client/pkg/v3/logutil.(*MergeLogger).outputLoop"), } goleak.VerifyTestMain(m, opts...) diff --git a/util/paging/main_test.go b/util/paging/main_test.go index 52190006ff270..4fc9fe6e363ad 100644 --- a/util/paging/main_test.go +++ b/util/paging/main_test.go @@ -25,6 +25,7 @@ func TestMain(m *testing.M) { testsetup.SetupForCommonTest() opts := []goleak.Option{ goleak.IgnoreTopFunction("github.com/golang/glog.(*loggingT).flushDaemon"), + goleak.IgnoreTopFunction("github.com/lestrrat-go/httprc.runFetchWorker"), goleak.IgnoreTopFunction("go.etcd.io/etcd/client/pkg/v3/logutil.(*MergeLogger).outputLoop"), } goleak.VerifyTestMain(m, opts...) diff --git a/util/parser/main_test.go b/util/parser/main_test.go index 467ed06d6bbee..4b1832ae442a3 100644 --- a/util/parser/main_test.go +++ b/util/parser/main_test.go @@ -25,6 +25,7 @@ func TestMain(m *testing.M) { testsetup.SetupForCommonTest() opts := []goleak.Option{ goleak.IgnoreTopFunction("github.com/golang/glog.(*loggingT).flushDaemon"), + goleak.IgnoreTopFunction("github.com/lestrrat-go/httprc.runFetchWorker"), goleak.IgnoreTopFunction("go.etcd.io/etcd/client/pkg/v3/logutil.(*MergeLogger).outputLoop"), } goleak.VerifyTestMain(m, opts...) diff --git a/util/plancodec/main_test.go b/util/plancodec/main_test.go index b561ae2ab3141..e91a5c7442f47 100644 --- a/util/plancodec/main_test.go +++ b/util/plancodec/main_test.go @@ -25,6 +25,7 @@ func TestMain(m *testing.M) { testsetup.SetupForCommonTest() opts := []goleak.Option{ goleak.IgnoreTopFunction("github.com/golang/glog.(*loggingT).flushDaemon"), + goleak.IgnoreTopFunction("github.com/lestrrat-go/httprc.runFetchWorker"), goleak.IgnoreTopFunction("go.etcd.io/etcd/client/pkg/v3/logutil.(*MergeLogger).outputLoop"), } goleak.VerifyTestMain(m, opts...) diff --git a/util/printer/main_test.go b/util/printer/main_test.go index ce782dd021804..d56b58e4e2c77 100644 --- a/util/printer/main_test.go +++ b/util/printer/main_test.go @@ -25,6 +25,7 @@ func TestMain(m *testing.M) { testsetup.SetupForCommonTest() opts := []goleak.Option{ goleak.IgnoreTopFunction("github.com/golang/glog.(*loggingT).flushDaemon"), + goleak.IgnoreTopFunction("github.com/lestrrat-go/httprc.runFetchWorker"), goleak.IgnoreTopFunction("go.etcd.io/etcd/client/pkg/v3/logutil.(*MergeLogger).outputLoop"), } goleak.VerifyTestMain(m, opts...) diff --git a/util/processinfo.go b/util/processinfo.go index 27d79e517b2d4..6e379e49a8fe7 100644 --- a/util/processinfo.go +++ b/util/processinfo.go @@ -15,7 +15,6 @@ package util import ( - "context" "crypto/tls" "errors" "fmt" @@ -26,7 +25,9 @@ import ( "github.com/pingcap/tidb/parser/mysql" "github.com/pingcap/tidb/session/txninfo" "github.com/pingcap/tidb/sessionctx/stmtctx" + "github.com/pingcap/tidb/util/disk" "github.com/pingcap/tidb/util/execdetails" + "github.com/pingcap/tidb/util/memory" "github.com/tikv/client-go/v2/oracle" ) @@ -34,27 +35,30 @@ import ( type OOMAlarmVariablesInfo struct { SessionAnalyzeVersion int SessionEnabledRateLimitAction bool + SessionMemQuotaQuery int64 } // ProcessInfo is a struct used for show processlist statement. type ProcessInfo struct { - Time time.Time - Plan interface{} - ctx context.Context - StmtCtx *stmtctx.StatementContext - CurrentAnalyzeRows func(interface{}, *execdetails.RuntimeStatsColl) [][]string - RuntimeStatsColl *execdetails.RuntimeStatsColl - StatsInfo func(interface{}) map[string]uint64 - User string - Digest string - DB string - Port string - Host string - Info string - PlanExplainRows [][]string - OOMAlarmVariablesInfo OOMAlarmVariablesInfo - ID uint64 - CurTxnStartTS uint64 + Time time.Time + Plan interface{} + StmtCtx *stmtctx.StatementContext + MemTracker *memory.Tracker + DiskTracker *disk.Tracker + StatsInfo func(interface{}) map[string]uint64 + RuntimeStatsColl *execdetails.RuntimeStatsColl + DB string + Digest string + Host string + User string + Info string + Port string + PlanExplainRows [][]string + OOMAlarmVariablesInfo OOMAlarmVariablesInfo + ID uint64 + CurTxnStartTS uint64 + // MaxExecutionTime is the timeout for select statement, in milliseconds. + // If the query takes too long, kill it. MaxExecutionTime uint64 State uint16 Command byte @@ -114,11 +118,11 @@ func (pi *ProcessInfo) ToRow(tz *time.Location) []interface{} { bytesConsumed := int64(0) diskConsumed := int64(0) if pi.StmtCtx != nil { - if pi.StmtCtx.MemTracker != nil { - bytesConsumed = pi.StmtCtx.MemTracker.BytesConsumed() + if pi.MemTracker != nil { + bytesConsumed = pi.MemTracker.BytesConsumed() } - if pi.StmtCtx.DiskTracker != nil { - diskConsumed = pi.StmtCtx.DiskTracker.BytesConsumed() + if pi.DiskTracker != nil { + diskConsumed = pi.DiskTracker.BytesConsumed() } } return append(pi.ToRowForShow(true), pi.Digest, bytesConsumed, diskConsumed, pi.txnStartTs(tz)) @@ -190,6 +194,8 @@ type SessionManager interface { GetInternalSessionStartTSList() []uint64 // CheckOldRunningTxn checks if there is an old transaction running in the current sessions CheckOldRunningTxn(job2ver map[int64]int64, job2ids map[int64]string) + // KillNonFlashbackClusterConn kill all non flashback cluster connections. + KillNonFlashbackClusterConn() } // GlobalConnID is the global connection ID, providing UNIQUE connection IDs across the whole TiDB cluster. diff --git a/util/profile/main_test.go b/util/profile/main_test.go index 5c66882744193..f55422d993b8b 100644 --- a/util/profile/main_test.go +++ b/util/profile/main_test.go @@ -25,6 +25,7 @@ func TestMain(m *testing.M) { testsetup.SetupForCommonTest() opts := []goleak.Option{ goleak.IgnoreTopFunction("github.com/golang/glog.(*loggingT).flushDaemon"), + goleak.IgnoreTopFunction("github.com/lestrrat-go/httprc.runFetchWorker"), goleak.IgnoreTopFunction("go.etcd.io/etcd/client/pkg/v3/logutil.(*MergeLogger).outputLoop"), } goleak.VerifyTestMain(m, opts...) diff --git a/util/ranger/bench_test.go b/util/ranger/bench_test.go index e72a5caa31ee6..c980a806f6066 100644 --- a/util/ranger/bench_test.go +++ b/util/ranger/bench_test.go @@ -109,7 +109,7 @@ WHERE require.NoError(b, err) require.Len(b, stmts, 1) ret := &plannercore.PreprocessorReturn{} - err = plannercore.Preprocess(sctx, stmts[0], plannercore.WithPreprocessorReturn(ret)) + err = plannercore.Preprocess(context.Background(), sctx, stmts[0], plannercore.WithPreprocessorReturn(ret)) require.NoError(b, err) ctx := context.Background() p, _, err := plannercore.BuildLogicalPlanForTest(ctx, sctx, stmts[0], ret.InfoSchema) diff --git a/util/ranger/checker.go b/util/ranger/checker.go index 48f6e3a389a13..0468d3c92472e 100644 --- a/util/ranger/checker.go +++ b/util/ranger/checker.go @@ -24,57 +24,83 @@ import ( // conditionChecker checks if this condition can be pushed to index planner. type conditionChecker struct { - checkerCol *expression.Column - colUniqueID int64 - length int - shouldReserve bool // check if a access condition should be reserved in filter conditions. + checkerCol *expression.Column + length int + optPrefixIndexSingleScan bool } -func (c *conditionChecker) check(condition expression.Expression) bool { +func (c *conditionChecker) isFullLengthColumn() bool { + return c.length == types.UnspecifiedLength || c.length == c.checkerCol.GetType().GetFlen() +} + +// check returns two values, isAccessCond and shouldReserve. +// isAccessCond indicates whether the condition can be used to build ranges. +// shouldReserve indicates whether the condition should be reserved in filter conditions. +func (c *conditionChecker) check(condition expression.Expression) (isAccessCond, shouldReserve bool) { switch x := condition.(type) { case *expression.ScalarFunction: return c.checkScalarFunction(x) case *expression.Column: if x.RetType.EvalType() == types.ETString { - return false + return false, true } return c.checkColumn(x) case *expression.Constant: - return true + return true, false } - return false + return false, true } -func (c *conditionChecker) checkScalarFunction(scalar *expression.ScalarFunction) bool { +func (c *conditionChecker) checkScalarFunction(scalar *expression.ScalarFunction) (isAccessCond, shouldReserve bool) { _, collation := scalar.CharsetAndCollation() switch scalar.FuncName.L { case ast.LogicOr, ast.LogicAnd: - return c.check(scalar.GetArgs()[0]) && c.check(scalar.GetArgs()[1]) + isAccessCond0, shouldReserve0 := c.check(scalar.GetArgs()[0]) + isAccessCond1, shouldReserve1 := c.check(scalar.GetArgs()[1]) + if isAccessCond0 && isAccessCond1 { + return true, shouldReserve0 || shouldReserve1 + } + return false, true case ast.EQ, ast.NE, ast.GE, ast.GT, ast.LE, ast.LT, ast.NullEQ: if _, ok := scalar.GetArgs()[0].(*expression.Constant); ok { - if c.checkColumn(scalar.GetArgs()[1]) { + if c.matchColumn(scalar.GetArgs()[1]) { // Checks whether the scalar function is calculated use the collation compatible with the column. if scalar.GetArgs()[1].GetType().EvalType() == types.ETString && !collate.CompatibleCollate(scalar.GetArgs()[1].GetType().GetCollate(), collation) { - return false + return false, true } - return scalar.FuncName.L != ast.NE || c.length == types.UnspecifiedLength + isFullLength := c.isFullLengthColumn() + if scalar.FuncName.L == ast.NE { + return isFullLength, !isFullLength + } + return true, !isFullLength } } if _, ok := scalar.GetArgs()[1].(*expression.Constant); ok { - if c.checkColumn(scalar.GetArgs()[0]) { + if c.matchColumn(scalar.GetArgs()[0]) { // Checks whether the scalar function is calculated use the collation compatible with the column. if scalar.GetArgs()[0].GetType().EvalType() == types.ETString && !collate.CompatibleCollate(scalar.GetArgs()[0].GetType().GetCollate(), collation) { - return false + return false, true + } + isFullLength := c.isFullLengthColumn() + if scalar.FuncName.L == ast.NE { + return isFullLength, !isFullLength } - return scalar.FuncName.L != ast.NE || c.length == types.UnspecifiedLength + return true, !isFullLength } } case ast.IsNull: - return c.checkColumn(scalar.GetArgs()[0]) + if c.matchColumn(scalar.GetArgs()[0]) { + var isNullReserve bool // We can know whether the column is null from prefix column of any length. + if !c.optPrefixIndexSingleScan { + isNullReserve = !c.isFullLengthColumn() + } + return true, isNullReserve + } + return false, true case ast.IsTruthWithoutNull, ast.IsFalsity, ast.IsTruthWithNull: if s, ok := scalar.GetArgs()[0].(*expression.Column); ok { if s.RetType.EvalType() == types.ETString { - return false + return false, true } } return c.checkColumn(scalar.GetArgs()[0]) @@ -83,34 +109,35 @@ func (c *conditionChecker) checkScalarFunction(scalar *expression.ScalarFunction s, ok := scalar.GetArgs()[0].(*expression.ScalarFunction) if !ok { // "not column" or "not constant" can't lead to a range. - return false + return false, true } if s.FuncName.L == ast.Like || s.FuncName.L == ast.NullEQ { - return false + return false, true } return c.check(scalar.GetArgs()[0]) case ast.In: - if !c.checkColumn(scalar.GetArgs()[0]) { - return false + if !c.matchColumn(scalar.GetArgs()[0]) { + return false, true } if scalar.GetArgs()[0].GetType().EvalType() == types.ETString && !collate.CompatibleCollate(scalar.GetArgs()[0].GetType().GetCollate(), collation) { - return false + return false, true } for _, v := range scalar.GetArgs()[1:] { if _, ok := v.(*expression.Constant); !ok { - return false + return false, true } } - return true + return true, !c.isFullLengthColumn() case ast.Like: return c.checkLikeFunc(scalar) case ast.GetParam: - return true + // TODO + return true, false } - return false + return false, true } -func (c *conditionChecker) checkLikeFunc(scalar *expression.ScalarFunction) bool { +func (c *conditionChecker) checkLikeFunc(scalar *expression.ScalarFunction) (isAccessCond, shouldReserve bool) { _, collation := scalar.CharsetAndCollation() if collate.NewCollationEnabled() && !collate.IsBinCollation(collation) { // The algorithm constructs the range in byte-level: for example, ab% is mapped to [ab, ac] by adding 1 to the last byte. @@ -120,29 +147,30 @@ func (c *conditionChecker) checkLikeFunc(scalar *expression.ScalarFunction) bool // Finally, the range comes to be [`, A], which is actually an empty range. // See https://github.com/pingcap/tidb/issues/31174 for more details. // In short, when the column type is non-binary collation string, we cannot use `like` expressions to generate the range. - return false + return false, true } if !collate.CompatibleCollate(scalar.GetArgs()[0].GetType().GetCollate(), collation) { - return false + return false, true } - if !c.checkColumn(scalar.GetArgs()[0]) { - return false + if !c.matchColumn(scalar.GetArgs()[0]) { + return false, true } pattern, ok := scalar.GetArgs()[1].(*expression.Constant) if !ok { - return false + return false, true } if pattern.Value.IsNull() { - return false + return false, true } patternStr, err := pattern.Value.ToString() if err != nil { - return false + return false, true } if len(patternStr) == 0 { - return true + return true, !c.isFullLengthColumn() } escape := byte(scalar.GetArgs()[2].(*expression.Constant).Value.GetInt64()) + likeFuncReserve := !c.isFullLengthColumn() for i := 0; i < len(patternStr); i++ { if patternStr[i] == escape { i++ @@ -152,16 +180,16 @@ func (c *conditionChecker) checkLikeFunc(scalar *expression.ScalarFunction) bool break } if i == 0 && (patternStr[i] == '%' || patternStr[i] == '_') { - return false + return false, true } if patternStr[i] == '%' { // We currently do not support using `enum like 'xxx%'` to build range // see https://github.com/pingcap/tidb/issues/27130 for more details if scalar.GetArgs()[0].GetType().GetType() == mysql.TypeEnum { - return false + return false, true } if i != len(patternStr)-1 { - c.shouldReserve = true + likeFuncReserve = true } break } @@ -169,23 +197,26 @@ func (c *conditionChecker) checkLikeFunc(scalar *expression.ScalarFunction) bool // We currently do not support using `enum like 'xxx_'` to build range // see https://github.com/pingcap/tidb/issues/27130 for more details if scalar.GetArgs()[0].GetType().GetType() == mysql.TypeEnum { - return false + return false, true } - c.shouldReserve = true + likeFuncReserve = true break } } - return true + return true, likeFuncReserve } -func (c *conditionChecker) checkColumn(expr expression.Expression) bool { - col, ok := expr.(*expression.Column) - if !ok { - return false - } +func (c *conditionChecker) matchColumn(expr expression.Expression) bool { // Check if virtual expression column matched if c.checkerCol != nil { - return c.checkerCol.EqualByExprAndID(nil, col) + return c.checkerCol.EqualByExprAndID(nil, expr) + } + return false +} + +func (c *conditionChecker) checkColumn(expr expression.Expression) (isAccessCond, shouldReserve bool) { + if c.matchColumn(expr) { + return true, !c.isFullLengthColumn() } - return c.colUniqueID == col.UniqueID + return false, true } diff --git a/util/ranger/detacher.go b/util/ranger/detacher.go index cd47c50d3cce0..cbeed5b6364de 100644 --- a/util/ranger/detacher.go +++ b/util/ranger/detacher.go @@ -49,14 +49,14 @@ func detachColumnCNFConditions(sctx sessionctx.Context, conditions []expression. accessConditions = append(accessConditions, rebuildDNF) continue } - if !checker.check(cond) { + isAccessCond, shouldReserve := checker.check(cond) + if !isAccessCond { filterConditions = append(filterConditions, cond) continue } accessConditions = append(accessConditions, cond) - if checker.shouldReserve { + if shouldReserve { filterConditions = append(filterConditions, cond) - checker.shouldReserve = checker.length != types.UnspecifiedLength } } return accessConditions, filterConditions @@ -82,13 +82,14 @@ func detachColumnDNFConditions(sctx sessionctx.Context, conditions []expression. } rebuildCNF := expression.ComposeCNFCondition(sctx, columnCNFItems...) accessConditions = append(accessConditions, rebuildCNF) - } else if !checker.check(cond) { - return nil, true } else { + isAccessCond, shouldReserve := checker.check(cond) + if !isAccessCond { + return nil, true + } accessConditions = append(accessConditions, cond) - if checker.shouldReserve { + if shouldReserve { hasResidualConditions = true - checker.shouldReserve = checker.length != types.UnspecifiedLength } } } @@ -331,9 +332,9 @@ func (d *rangeDetacher) detachCNFCondAndBuildRangeForIndex(conditions []expressi return res, nil } checker := &conditionChecker{ - checkerCol: d.cols[eqOrInCount], - length: d.lengths[eqOrInCount], - shouldReserve: d.lengths[eqOrInCount] != types.UnspecifiedLength, + checkerCol: d.cols[eqOrInCount], + length: d.lengths[eqOrInCount], + optPrefixIndexSingleScan: d.sctx.GetSessionVars().OptPrefixIndexSingleScan, } if considerDNF { pointRes, offset, columnValues, err := extractIndexPointRangesForCNF(d.sctx, conditions, d.cols, d.lengths, d.rangeMaxSize) @@ -410,7 +411,8 @@ func (d *rangeDetacher) detachCNFCondAndBuildRangeForIndex(conditions []expressi return res, nil } for _, cond := range newConditions { - if !checker.check(cond) { + isAccessCond, _ := checker.check(cond) + if !isAccessCond { filterConds = append(filterConds, cond) continue } @@ -619,8 +621,8 @@ func ExtractEqAndInCondition(sctx sessionctx.Context, conditions []expression.Ex columnValues[i] = &valueInfo{mutable: true} } if expression.MaybeOverOptimized4PlanCache(sctx, conditions) { - // TODO: optimize it more elaborately, e.g. return [2 3, 2 3] as accesses for 'where a = 2 and b = 3 and c >= ? and c <= ?' - return nil, conditions, nil, nil, false + // `a=@x and a=@y` --> `a=@x if @x==@y` + sctx.GetSessionVars().StmtCtx.SkipPlanCache = true } } } @@ -642,7 +644,8 @@ func ExtractEqAndInCondition(sctx sessionctx.Context, conditions []expression.Ex // However, please notice that if you're implementing this, please (1) set StatementContext.OptimDependOnMutableConst to true, // or (2) don't do this optimization when StatementContext.UseCache is true. That's because this plan is affected by // flen of user variable, we cannot cache this plan. - if lengths[i] != types.UnspecifiedLength { + isFullLength := lengths[i] == types.UnspecifiedLength || lengths[i] == cols[i].GetType().GetFlen() + if !isFullLength { filters = append(filters, cond) } } @@ -655,9 +658,9 @@ func ExtractEqAndInCondition(sctx sessionctx.Context, conditions []expression.Ex // We will detach the conditions of every DNF items, then compose them to a DNF. func (d *rangeDetacher) detachDNFCondAndBuildRangeForIndex(condition *expression.ScalarFunction, newTpSlice []*types.FieldType) (Ranges, []expression.Expression, []*valueInfo, bool, error) { firstColumnChecker := &conditionChecker{ - checkerCol: d.cols[0], - shouldReserve: d.lengths[0] != types.UnspecifiedLength, - length: d.lengths[0], + checkerCol: d.cols[0], + length: d.lengths[0], + optPrefixIndexSingleScan: d.sctx.GetSessionVars().OptPrefixIndexSingleScan, } rb := builder{sc: d.sctx.GetSessionVars().StmtCtx} dnfItems := expression.FlattenDNFConditions(condition) @@ -709,12 +712,13 @@ func (d *rangeDetacher) detachDNFCondAndBuildRangeForIndex(condition *expression } } } - } else if !firstColumnChecker.check(item) { - return FullRange(), nil, nil, true, nil } else { - if firstColumnChecker.shouldReserve { + isAccessCond, shouldReserve := firstColumnChecker.check(item) + if !isAccessCond { + return FullRange(), nil, nil, true, nil + } + if shouldReserve { hasResidual = true - firstColumnChecker.shouldReserve = d.lengths[0] != types.UnspecifiedLength } points := rb.build(item, collate.GetCollator(newTpSlice[0].GetCollate())) // TODO: restrict the mem usage of ranges @@ -917,20 +921,26 @@ func AppendConditionsIfNotExist(conditions, condsToAppend []expression.Expressio // ExtractAccessConditionsForColumn extracts the access conditions used for range calculation. Since // we don't need to return the remained filter conditions, it is much simpler than DetachCondsForColumn. -func ExtractAccessConditionsForColumn(conds []expression.Expression, col *expression.Column) []expression.Expression { +func ExtractAccessConditionsForColumn(ctx sessionctx.Context, conds []expression.Expression, col *expression.Column) []expression.Expression { checker := conditionChecker{ - checkerCol: col, - length: types.UnspecifiedLength, + checkerCol: col, + length: types.UnspecifiedLength, + optPrefixIndexSingleScan: ctx.GetSessionVars().OptPrefixIndexSingleScan, } accessConds := make([]expression.Expression, 0, 8) - return expression.Filter(accessConds, conds, checker.check) + filter := func(expr expression.Expression) bool { + isAccessCond, _ := checker.check(expr) + return isAccessCond + } + return expression.Filter(accessConds, conds, filter) } // DetachCondsForColumn detaches access conditions for specified column from other filter conditions. func DetachCondsForColumn(sctx sessionctx.Context, conds []expression.Expression, col *expression.Column) (accessConditions, otherConditions []expression.Expression) { checker := &conditionChecker{ - checkerCol: col, - length: types.UnspecifiedLength, + checkerCol: col, + length: types.UnspecifiedLength, + optPrefixIndexSingleScan: sctx.GetSessionVars().OptPrefixIndexSingleScan, } return detachColumnCNFConditions(sctx, conds, checker) } @@ -951,14 +961,16 @@ func MergeDNFItems4Col(ctx sessionctx.Context, dnfItems []expression.Expression) uniqueID := cols[0].UniqueID checker := &conditionChecker{ - checkerCol: cols[0], - length: types.UnspecifiedLength, + checkerCol: cols[0], + length: types.UnspecifiedLength, + optPrefixIndexSingleScan: ctx.GetSessionVars().OptPrefixIndexSingleScan, } // If we can't use this condition to build range, we can't merge it. // Currently, we assume if every condition in a DNF expression can pass this check, then `Selectivity` must be able to // cover this entire DNF directly without recursively call `Selectivity`. If this doesn't hold in the future, this logic // may cause infinite recursion in `Selectivity`. - if !checker.check(dnfItem) { + isAccessCond, _ := checker.check(dnfItem) + if !isAccessCond { mergedDNFItems = append(mergedDNFItems, dnfItem) continue } diff --git a/util/ranger/main_test.go b/util/ranger/main_test.go index 92ffa6f422fc1..462007239334c 100644 --- a/util/ranger/main_test.go +++ b/util/ranger/main_test.go @@ -44,7 +44,9 @@ func TestMain(m *testing.M) { opts := []goleak.Option{ goleak.IgnoreTopFunction("github.com/golang/glog.(*loggingT).flushDaemon"), + goleak.IgnoreTopFunction("github.com/lestrrat-go/httprc.runFetchWorker"), goleak.IgnoreTopFunction("go.etcd.io/etcd/client/pkg/v3/logutil.(*MergeLogger).outputLoop"), + goleak.IgnoreTopFunction("go.opencensus.io/stats/view.(*worker).start"), } if err := goleak.Find(opts...); err != nil { diff --git a/util/ranger/ranger_test.go b/util/ranger/ranger_test.go index ccaba66b5e50d..74af841563b0f 100644 --- a/util/ranger/ranger_test.go +++ b/util/ranger/ranger_test.go @@ -31,6 +31,7 @@ import ( "github.com/pingcap/tidb/testkit" "github.com/pingcap/tidb/testkit/testdata" "github.com/pingcap/tidb/types" + "github.com/pingcap/tidb/util/collate" "github.com/pingcap/tidb/util/ranger" "github.com/stretchr/testify/require" ) @@ -264,7 +265,7 @@ func TestTableRange(t *testing.T) { require.NoError(t, err) require.Len(t, stmts, 1) ret := &plannercore.PreprocessorReturn{} - err = plannercore.Preprocess(sctx, stmts[0], plannercore.WithPreprocessorReturn(ret)) + err = plannercore.Preprocess(context.Background(), sctx, stmts[0], plannercore.WithPreprocessorReturn(ret)) require.NoError(t, err) p, _, err := plannercore.BuildLogicalPlanForTest(ctx, sctx, stmts[0], ret.InfoSchema) require.NoError(t, err) @@ -453,7 +454,7 @@ create table t( require.NoError(t, err) require.Len(t, stmts, 1) ret := &plannercore.PreprocessorReturn{} - err = plannercore.Preprocess(sctx, stmts[0], plannercore.WithPreprocessorReturn(ret)) + err = plannercore.Preprocess(context.Background(), sctx, stmts[0], plannercore.WithPreprocessorReturn(ret)) require.NoError(t, err) p, _, err := plannercore.BuildLogicalPlanForTest(ctx, sctx, stmts[0], ret.InfoSchema) require.NoError(t, err) @@ -814,7 +815,7 @@ func TestColumnRange(t *testing.T) { require.NoError(t, err) require.Len(t, stmts, 1) ret := &plannercore.PreprocessorReturn{} - err = plannercore.Preprocess(sctx, stmts[0], plannercore.WithPreprocessorReturn(ret)) + err = plannercore.Preprocess(context.Background(), sctx, stmts[0], plannercore.WithPreprocessorReturn(ret)) require.NoError(t, err) p, _, err := plannercore.BuildLogicalPlanForTest(ctx, sctx, stmts[0], ret.InfoSchema) require.NoError(t, err) @@ -827,7 +828,7 @@ func TestColumnRange(t *testing.T) { } col := expression.ColInfo2Col(sel.Schema().Columns, ds.TableInfo().Columns[tt.colPos]) require.NotNil(t, col) - conds = ranger.ExtractAccessConditionsForColumn(conds, col) + conds = ranger.ExtractAccessConditionsForColumn(sctx, conds, col) require.Equal(t, tt.accessConds, fmt.Sprintf("%s", conds)) result, _, _, err := ranger.BuildColumnRange(conds, sctx, col.RetType, tt.length, 0) require.NoError(t, err) @@ -865,6 +866,7 @@ func TestCompIndexInExprCorrCol(t *testing.T) { testKit := testkit.NewTestKit(t, store) testKit.MustExec("use test") + testKit.MustExec("set tidb_cost_model_version=2") testKit.MustExec("drop table if exists t") testKit.MustExec("create table t(a int primary key, b int, c int, d int, e int, index idx(b,c,d))") testKit.MustExec("insert into t values(1,1,1,1,2),(2,1,2,1,0)") @@ -890,6 +892,7 @@ func TestIndexStringIsTrueRange(t *testing.T) { testKit := testkit.NewTestKit(t, store) testKit.MustExec("use test") + testKit.MustExec("set tidb_cost_model_version=2") testKit.MustExec("drop table if exists t0") testKit.MustExec("CREATE TABLE t0(c0 TEXT(10));") testKit.MustExec("INSERT INTO t0(c0) VALUES (1);") @@ -1196,7 +1199,7 @@ func TestIndexRangeForYear(t *testing.T) { require.NoError(t, err) require.Len(t, stmts, 1) ret := &plannercore.PreprocessorReturn{} - err = plannercore.Preprocess(sctx, stmts[0], plannercore.WithPreprocessorReturn(ret)) + err = plannercore.Preprocess(context.Background(), sctx, stmts[0], plannercore.WithPreprocessorReturn(ret)) require.NoError(t, err) p, _, err := plannercore.BuildLogicalPlanForTest(ctx, sctx, stmts[0], ret.InfoSchema) require.NoError(t, err) @@ -1264,7 +1267,7 @@ func TestPrefixIndexRangeScan(t *testing.T) { require.NoError(t, err) require.Len(t, stmts, 1) ret := &plannercore.PreprocessorReturn{} - err = plannercore.Preprocess(sctx, stmts[0], plannercore.WithPreprocessorReturn(ret)) + err = plannercore.Preprocess(context.Background(), sctx, stmts[0], plannercore.WithPreprocessorReturn(ret)) require.NoError(t, err) p, _, err := plannercore.BuildLogicalPlanForTest(ctx, sctx, stmts[0], ret.InfoSchema) require.NoError(t, err) @@ -1673,7 +1676,7 @@ create table t( require.NoError(t, err) require.Len(t, stmts, 1) ret := &plannercore.PreprocessorReturn{} - err = plannercore.Preprocess(sctx, stmts[0], plannercore.WithPreprocessorReturn(ret)) + err = plannercore.Preprocess(context.Background(), sctx, stmts[0], plannercore.WithPreprocessorReturn(ret)) require.NoError(t, err) p, _, err := plannercore.BuildLogicalPlanForTest(ctx, sctx, stmts[0], ret.InfoSchema) require.NoError(t, err) @@ -1914,7 +1917,7 @@ func TestTableShardIndex(t *testing.T) { require.NoError(t, err) require.Len(t, stmts, 1) ret := &plannercore.PreprocessorReturn{} - err = plannercore.Preprocess(sctx, stmts[0], plannercore.WithPreprocessorReturn(ret)) + err = plannercore.Preprocess(context.Background(), sctx, stmts[0], plannercore.WithPreprocessorReturn(ret)) require.NoError(t, err) p, _, err := plannercore.BuildLogicalPlanForTest(ctx, sctx, stmts[0], ret.InfoSchema) require.NoError(t, err) @@ -1942,7 +1945,7 @@ func TestTableShardIndex(t *testing.T) { require.NoError(t, err) require.Len(t, stmts, 1) ret := &plannercore.PreprocessorReturn{} - err = plannercore.Preprocess(sctx, stmts[0], plannercore.WithPreprocessorReturn(ret)) + err = plannercore.Preprocess(context.Background(), sctx, stmts[0], plannercore.WithPreprocessorReturn(ret)) require.NoError(t, err) p, _, err := plannercore.BuildLogicalPlanForTest(ctx, sctx, stmts[0], ret.InfoSchema) require.NoError(t, err) @@ -1960,7 +1963,7 @@ func TestTableShardIndex(t *testing.T) { require.NoError(t, err) require.Len(t, stmts, 1) ret := &plannercore.PreprocessorReturn{} - err = plannercore.Preprocess(sctx, stmts[0], plannercore.WithPreprocessorReturn(ret)) + err = plannercore.Preprocess(context.Background(), sctx, stmts[0], plannercore.WithPreprocessorReturn(ret)) require.NoError(t, err) p, _, err := plannercore.BuildLogicalPlanForTest(ctx, sctx, stmts[0], ret.InfoSchema) require.NoError(t, err) @@ -2105,7 +2108,7 @@ func getSelectionFromQuery(t *testing.T, sctx sessionctx.Context, sql string) *p require.NoError(t, err) require.Len(t, stmts, 1) ret := &plannercore.PreprocessorReturn{} - err = plannercore.Preprocess(sctx, stmts[0], plannercore.WithPreprocessorReturn(ret)) + err = plannercore.Preprocess(context.Background(), sctx, stmts[0], plannercore.WithPreprocessorReturn(ret)) require.NoError(t, err) p, _, err := plannercore.BuildLogicalPlanForTest(ctx, sctx, stmts[0], ret.InfoSchema) require.NoError(t, err) @@ -2447,3 +2450,118 @@ func TestRangeFallbackForBuildColumnRange(t *testing.T) { require.Equal(t, "[]", fmt.Sprintf("%v", access)) require.Equal(t, "[in(test.t.b, 10, 20, 30)]", fmt.Sprintf("%v", remained)) } + +func TestPrefixIndexRange(t *testing.T) { + store := testkit.CreateMockStore(t) + tk := testkit.NewTestKit(t, store) + tk.MustExec("use test") + tk.MustExec("drop table if exists t") + tk.MustExec(` +create table t( + a varchar(50), + b varchar(50), + c text(50), + d varbinary(50), + index idx_a(a(2)), + index idx_ab(a(2), b(2)), + index idx_c(c(2)), + index idx_d(d(2)) +)`) + tk.MustExec("set tidb_opt_prefix_index_single_scan = 1") + + tests := []struct { + indexPos int + exprStr string + accessConds string + filterConds string + resultStr string + }{ + { + indexPos: 0, + exprStr: "a is null", + accessConds: "[isnull(test.t.a)]", + filterConds: "[]", + resultStr: "[[NULL,NULL]]", + }, + { + indexPos: 0, + exprStr: "a is not null", + accessConds: "[not(isnull(test.t.a))]", + filterConds: "[]", + resultStr: "[[-inf,+inf]]", + }, + { + indexPos: 1, + exprStr: "a = 'a' and b is null", + accessConds: "[eq(test.t.a, a) isnull(test.t.b)]", + filterConds: "[eq(test.t.a, a)]", + resultStr: "[[\"a\" NULL,\"a\" NULL]]", + }, + { + indexPos: 1, + exprStr: "a = 'a' and b is not null", + accessConds: "[eq(test.t.a, a) not(isnull(test.t.b))]", + filterConds: "[eq(test.t.a, a)]", + resultStr: "[[\"a\" -inf,\"a\" +inf]]", + }, + { + indexPos: 2, + exprStr: "c is null", + accessConds: "[isnull(test.t.c)]", + filterConds: "[]", + resultStr: "[[NULL,NULL]]", + }, + { + indexPos: 2, + exprStr: "c is not null", + accessConds: "[not(isnull(test.t.c))]", + filterConds: "[]", + resultStr: "[[-inf,+inf]]", + }, + { + indexPos: 3, + exprStr: "d is null", + accessConds: "[isnull(test.t.d)]", + filterConds: "[]", + resultStr: "[[NULL,NULL]]", + }, + { + indexPos: 3, + exprStr: "d is not null", + accessConds: "[not(isnull(test.t.d))]", + filterConds: "[]", + resultStr: "[[-inf,+inf]]", + }, + } + + collate.SetNewCollationEnabledForTest(true) + defer func() { collate.SetNewCollationEnabledForTest(false) }() + ctx := context.Background() + for _, tt := range tests { + sql := "select * from t where " + tt.exprStr + sctx := tk.Session() + stmts, err := session.Parse(sctx, sql) + require.NoError(t, err, fmt.Sprintf("error %v, for expr %s", err, tt.exprStr)) + require.Len(t, stmts, 1) + ret := &plannercore.PreprocessorReturn{} + err = plannercore.Preprocess(context.Background(), sctx, stmts[0], plannercore.WithPreprocessorReturn(ret)) + require.NoError(t, err, fmt.Sprintf("error %v, for resolve name, expr %s", err, tt.exprStr)) + p, _, err := plannercore.BuildLogicalPlanForTest(ctx, sctx, stmts[0], ret.InfoSchema) + require.NoError(t, err, fmt.Sprintf("error %v, for build plan, expr %s", err, tt.exprStr)) + selection := p.(plannercore.LogicalPlan).Children()[0].(*plannercore.LogicalSelection) + tbl := selection.Children()[0].(*plannercore.DataSource).TableInfo() + require.NotNil(t, selection, fmt.Sprintf("expr:%v", tt.exprStr)) + conds := make([]expression.Expression, len(selection.Conditions)) + for i, cond := range selection.Conditions { + conds[i] = expression.PushDownNot(sctx, cond) + } + cols, lengths := expression.IndexInfo2PrefixCols(tbl.Columns, selection.Schema().Columns, tbl.Indices[tt.indexPos]) + require.NotNil(t, cols) + res, err := ranger.DetachCondAndBuildRangeForIndex(sctx, conds, cols, lengths, 0) + require.NoError(t, err) + require.Equal(t, tt.accessConds, fmt.Sprintf("%s", res.AccessConds), fmt.Sprintf("wrong access conditions for expr: %s", tt.exprStr)) + require.Equal(t, tt.filterConds, fmt.Sprintf("%s", res.RemainedConds), fmt.Sprintf("wrong filter conditions for expr: %s", tt.exprStr)) + got := fmt.Sprintf("%v", res.Ranges) + require.Equal(t, tt.resultStr, got, fmt.Sprintf("different for expr %s", tt.exprStr)) + } +} diff --git a/util/ranger/testdata/ranger_suite_out.json b/util/ranger/testdata/ranger_suite_out.json index f9d4ede451753..3934ff2f7bad3 100644 --- a/util/ranger/testdata/ranger_suite_out.json +++ b/util/ranger/testdata/ranger_suite_out.json @@ -9,12 +9,12 @@ "└─Apply 2.00 root CARTESIAN left outer semi join, other cond:eq(test.t.e, Column#26)", " ├─TableReader(Build) 2.00 root data:TableFullScan", " │ └─TableFullScan 2.00 cop[tikv] table:t keep order:false", - " └─StreamAgg(Probe) 1.00 root funcs:count(1)->Column#26", - " └─HashJoin 2.00 root inner join, equal:[eq(test.t.a, test.t.a)]", - " ├─TableReader(Build) 2.00 root data:TableFullScan", - " │ └─TableFullScan 2.00 cop[tikv] table:t1 keep order:false", - " └─IndexReader(Probe) 2.00 root index:IndexRangeScan", - " └─IndexRangeScan 2.00 cop[tikv] table:s, index:idx(b, c, d) range: decided by [eq(test.t.b, 1) in(test.t.c, 1, 2) eq(test.t.d, test.t.a)], keep order:false" + " └─HashAgg(Probe) 2.00 root funcs:count(1)->Column#26", + " └─HashJoin 4.00 root inner join, equal:[eq(test.t.a, test.t.a)]", + " ├─IndexReader(Build) 4.00 root index:IndexFullScan", + " │ └─IndexFullScan 4.00 cop[tikv] table:t1, index:idx(b, c, d) keep order:false", + " └─IndexReader(Probe) 4.00 root index:IndexRangeScan", + " └─IndexRangeScan 4.00 cop[tikv] table:s, index:idx(b, c, d) range: decided by [eq(test.t.b, 1) in(test.t.c, 1, 2) eq(test.t.d, test.t.a)], keep order:false" ] }, { @@ -32,9 +32,9 @@ { "SQL": "explain format = 'brief' select * from t0 where c0", "Result": [ - "TableReader 0.80 root data:Selection", - "└─Selection 0.80 cop[tikv] test.t0.c0", - " └─TableFullScan 1.00 cop[tikv] table:t0 keep order:false" + "IndexReader 1.00 root index:Selection", + "└─Selection 1.00 cop[tikv] test.t0.c0", + " └─IndexFullScan 1.00 cop[tikv] table:t0, index:i0(c0) keep order:false" ] }, { @@ -56,17 +56,17 @@ { "SQL": "explain format = 'brief' select * from t0 where c0 is true", "Result": [ - "TableReader 0.80 root data:Selection", - "└─Selection 0.80 cop[tikv] istrue(cast(test.t0.c0, double BINARY))", - " └─TableFullScan 1.00 cop[tikv] table:t0 keep order:false" + "IndexReader 1.00 root index:Selection", + "└─Selection 1.00 cop[tikv] istrue(cast(test.t0.c0, double BINARY))", + " └─IndexFullScan 1.00 cop[tikv] table:t0, index:i0(c0) keep order:false" ] }, { "SQL": "explain format = 'brief' select * from t0 where c0 is false", "Result": [ - "TableReader 0.80 root data:Selection", - "└─Selection 0.80 cop[tikv] isfalse(cast(test.t0.c0, double BINARY))", - " └─TableFullScan 1.00 cop[tikv] table:t0 keep order:false" + "IndexReader 1.00 root index:Selection", + "└─Selection 1.00 cop[tikv] isfalse(cast(test.t0.c0, double BINARY))", + " └─IndexFullScan 1.00 cop[tikv] table:t0, index:i0(c0) keep order:false" ] }, { diff --git a/util/resourcegrouptag/main_test.go b/util/resourcegrouptag/main_test.go index 436c89e6a7c9b..3b661ec89f0c6 100644 --- a/util/resourcegrouptag/main_test.go +++ b/util/resourcegrouptag/main_test.go @@ -25,6 +25,7 @@ func TestMain(m *testing.M) { testsetup.SetupForCommonTest() opts := []goleak.Option{ goleak.IgnoreTopFunction("github.com/golang/glog.(*loggingT).flushDaemon"), + goleak.IgnoreTopFunction("github.com/lestrrat-go/httprc.runFetchWorker"), goleak.IgnoreTopFunction("go.etcd.io/etcd/client/pkg/v3/logutil.(*MergeLogger).outputLoop"), } goleak.VerifyTestMain(m, opts...) diff --git a/util/rowDecoder/main_test.go b/util/rowDecoder/main_test.go index e153efc436e7c..887a047796ea9 100644 --- a/util/rowDecoder/main_test.go +++ b/util/rowDecoder/main_test.go @@ -24,6 +24,7 @@ import ( func TestMain(m *testing.M) { opts := []goleak.Option{ goleak.IgnoreTopFunction("github.com/golang/glog.(*loggingT).flushDaemon"), + goleak.IgnoreTopFunction("github.com/lestrrat-go/httprc.runFetchWorker"), goleak.IgnoreTopFunction("go.etcd.io/etcd/client/pkg/v3/logutil.(*MergeLogger).outputLoop"), } testsetup.SetupForCommonTest() diff --git a/util/rowcodec/main_test.go b/util/rowcodec/main_test.go index 884964318ec8f..8a4515ed1c558 100644 --- a/util/rowcodec/main_test.go +++ b/util/rowcodec/main_test.go @@ -28,6 +28,7 @@ func TestMain(m *testing.M) { testsetup.SetupForCommonTest() opts := []goleak.Option{ goleak.IgnoreTopFunction("github.com/golang/glog.(*loggingT).flushDaemon"), + goleak.IgnoreTopFunction("github.com/lestrrat-go/httprc.runFetchWorker"), goleak.IgnoreTopFunction("go.etcd.io/etcd/client/pkg/v3/logutil.(*MergeLogger).outputLoop"), } goleak.VerifyTestMain(m, opts...) diff --git a/util/security.go b/util/security.go index 648c6c76fa435..ce89633cbad57 100644 --- a/util/security.go +++ b/util/security.go @@ -231,9 +231,21 @@ func NewTLSConfig(opts ...TLSConfigOption) (*tls.Config, error) { return err } + intermediates := x509.NewCertPool() + for _, certBytes := range rawCerts[1:] { + c, err2 := x509.ParseCertificate(certBytes) + if err2 != nil { + return err2 + } + intermediates.AddCert(c) + } + certPoolMu.RLock() defer certPoolMu.RUnlock() - if _, err = cert.Verify(x509.VerifyOptions{Roots: certPool}); err != nil { + if _, err = cert.Verify(x509.VerifyOptions{ + Roots: certPool, + Intermediates: intermediates, + }); err != nil { return errors.Wrap(err, "can't verify certificate, maybe different CA is used") } return nil diff --git a/util/selection/main_test.go b/util/selection/main_test.go index 1296c123f6bb7..74c14e7867157 100644 --- a/util/selection/main_test.go +++ b/util/selection/main_test.go @@ -25,6 +25,7 @@ func TestMain(m *testing.M) { testsetup.SetupForCommonTest() opts := []goleak.Option{ goleak.IgnoreTopFunction("github.com/golang/glog.(*loggingT).flushDaemon"), + goleak.IgnoreTopFunction("github.com/lestrrat-go/httprc.runFetchWorker"), goleak.IgnoreTopFunction("go.etcd.io/etcd/client/pkg/v3/logutil.(*MergeLogger).outputLoop"), } goleak.VerifyTestMain(m, opts...) diff --git a/util/sem/main_test.go b/util/sem/main_test.go index a3c39e71b6135..7f6d20b904741 100644 --- a/util/sem/main_test.go +++ b/util/sem/main_test.go @@ -25,6 +25,7 @@ func TestMain(m *testing.M) { testsetup.SetupForCommonTest() opts := []goleak.Option{ goleak.IgnoreTopFunction("github.com/golang/glog.(*loggingT).flushDaemon"), + goleak.IgnoreTopFunction("github.com/lestrrat-go/httprc.runFetchWorker"), goleak.IgnoreTopFunction("go.etcd.io/etcd/client/pkg/v3/logutil.(*MergeLogger).outputLoop"), } goleak.VerifyTestMain(m, opts...) diff --git a/util/servermemorylimit/BUILD.bazel b/util/servermemorylimit/BUILD.bazel index b03c059049567..9e144b820922e 100644 --- a/util/servermemorylimit/BUILD.bazel +++ b/util/servermemorylimit/BUILD.bazel @@ -1,4 +1,4 @@ -load("@io_bazel_rules_go//go:def.bzl", "go_library") +load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test") go_library( name = "servermemorylimit", @@ -6,7 +6,23 @@ go_library( importpath = "github.com/pingcap/tidb/util/servermemorylimit", visibility = ["//visibility:public"], deps = [ + "//parser/mysql", + "//types", "//util", "//util/memory", + "@org_uber_go_atomic//:atomic", + ], +) + +go_test( + name = "servermemorylimit_test", + srcs = ["servermemorylimit_test.go"], + embed = [":servermemorylimit"], + flaky = True, + race = "on", + deps = [ + "//types", + "//util", + "@com_github_stretchr_testify//require", ], ) diff --git a/util/servermemorylimit/servermemorylimit.go b/util/servermemorylimit/servermemorylimit.go index 2e60032d61da1..a13e2e8b0e081 100644 --- a/util/servermemorylimit/servermemorylimit.go +++ b/util/servermemorylimit/servermemorylimit.go @@ -15,12 +15,26 @@ package servermemorylimit import ( + "fmt" "runtime" + "sync" "sync/atomic" "time" + "github.com/pingcap/tidb/parser/mysql" + "github.com/pingcap/tidb/types" "github.com/pingcap/tidb/util" "github.com/pingcap/tidb/util/memory" + atomicutil "go.uber.org/atomic" +) + +// Process global Observation indicators for memory limit. +var ( + MemoryMaxUsed = atomicutil.NewUint64(0) + SessionKillLast = atomicutil.NewTime(time.Time{}) + SessionKillTotal = atomicutil.NewInt64(0) + IsKilling = atomicutil.NewBool(false) + GlobalMemoryOpsHistoryManager = &memoryOpsHistoryManager{} ) // Handle is the handler for server memory limit. @@ -63,9 +77,10 @@ func (smqh *Handle) Run() { } type sessionToBeKilled struct { - isKilling bool - sqlStartTime time.Time - sessionID uint64 + isKilling bool + sqlStartTime time.Time + sessionID uint64 + sessionTracker *memory.Tracker } func killSessIfNeeded(s *sessionToBeKilled, bt uint64, sm util.SessionManager) { @@ -76,6 +91,8 @@ func killSessIfNeeded(s *sessionToBeKilled, bt uint64, sm util.SessionManager) { } } s.isKilling = false + IsKilling.Store(false) + memory.MemUsageTop1Tracker.CompareAndSwap(s.sessionTracker, nil) //nolint: all_revive,revive runtime.GC() } @@ -83,8 +100,10 @@ func killSessIfNeeded(s *sessionToBeKilled, bt uint64, sm util.SessionManager) { if bt == 0 { return } - instanceStats := &runtime.MemStats{} - runtime.ReadMemStats(instanceStats) + instanceStats := memory.ReadMemStats() + if instanceStats.HeapInuse > MemoryMaxUsed.Load() { + MemoryMaxUsed.Store(instanceStats.HeapInuse) + } if instanceStats.HeapInuse > bt { t := memory.MemUsageTop1Tracker.Load() if t != nil { @@ -92,8 +111,85 @@ func killSessIfNeeded(s *sessionToBeKilled, bt uint64, sm util.SessionManager) { s.sessionID = t.SessionID s.sqlStartTime = info.Time s.isKilling = true + s.sessionTracker = t t.NeedKill.Store(true) + + killTime := time.Now() + SessionKillTotal.Add(1) + SessionKillLast.Store(killTime) + IsKilling.Store(true) + GlobalMemoryOpsHistoryManager.recordOne(info, killTime, bt, instanceStats.HeapInuse) } } } } + +type memoryOpsHistoryManager struct { + mu sync.Mutex + infos []memoryOpsHistory + offsets int +} + +type memoryOpsHistory struct { + killTime time.Time + memoryLimit uint64 + memoryCurrent uint64 + processInfoDatum []types.Datum // id,user,host,db,command,time,state,info,digest,mem,disk,txnStart +} + +func (m *memoryOpsHistoryManager) init() { + m.infos = make([]memoryOpsHistory, 50) + m.offsets = 0 +} + +func (m *memoryOpsHistoryManager) recordOne(info *util.ProcessInfo, killTime time.Time, memoryLimit uint64, memoryCurrent uint64) { + m.mu.Lock() + defer m.mu.Unlock() + op := memoryOpsHistory{killTime: killTime, memoryLimit: memoryLimit, memoryCurrent: memoryCurrent, processInfoDatum: types.MakeDatums(info.ToRow(time.UTC)...)} + sqlInfo := op.processInfoDatum[7] + sqlInfo.SetString(fmt.Sprintf("%.256v", sqlInfo.GetString()), mysql.DefaultCollationName) // Truncated + // Only record the last 50 history ops + m.infos[m.offsets] = op + m.offsets++ + if m.offsets >= 50 { + m.offsets = 0 + } +} + +func (m *memoryOpsHistoryManager) GetRows() [][]types.Datum { + m.mu.Lock() + defer m.mu.Unlock() + rows := make([][]types.Datum, 0, len(m.infos)) + getRowFromInfo := func(info memoryOpsHistory) { + killTime := types.NewTime(types.FromGoTime(info.killTime), mysql.TypeDatetime, 0) + op := "SessionKill" + rows = append(rows, []types.Datum{ + types.NewDatum(killTime), // TIME + types.NewDatum(op), // OPS + types.NewDatum(info.memoryLimit), // MEMORY_LIMIT + types.NewDatum(info.memoryCurrent), // MEMORY_CURRENT + info.processInfoDatum[0], // PROCESSID + info.processInfoDatum[9], // MEM + info.processInfoDatum[10], // DISK + info.processInfoDatum[2], // CLIENT + info.processInfoDatum[3], // DB + info.processInfoDatum[1], // USER + info.processInfoDatum[8], // SQL_DIGEST + info.processInfoDatum[7], // SQL_TEXT + }) + } + var zeroTime = time.Time{} + for i := 0; i < len(m.infos); i++ { + pos := (m.offsets + i) % len(m.infos) + info := m.infos[pos] + if info.killTime.Equal(zeroTime) { + continue + } + getRowFromInfo(info) + } + return rows +} + +func init() { + GlobalMemoryOpsHistoryManager.init() +} diff --git a/util/servermemorylimit/servermemorylimit_test.go b/util/servermemorylimit/servermemorylimit_test.go new file mode 100644 index 0000000000000..35c96942d29b5 --- /dev/null +++ b/util/servermemorylimit/servermemorylimit_test.go @@ -0,0 +1,71 @@ +// Copyright 2022 PingCAP, Inc. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +package servermemorylimit + +import ( + "strconv" + "testing" + "time" + + "github.com/pingcap/tidb/types" + "github.com/pingcap/tidb/util" + "github.com/stretchr/testify/require" +) + +func TestMemoryUsageOpsHistory(t *testing.T) { + info := util.ProcessInfo{} + genInfo := func(i int) { + info.ID = uint64(i) + info.DB = strconv.Itoa(2 * i) + info.User = strconv.Itoa(3 * i) + info.Host = strconv.Itoa(4 * i) + info.Digest = strconv.Itoa(5 * i) + info.Info = strconv.Itoa(6 * i) + } + + for i := 0; i < 3; i++ { + genInfo(i) + GlobalMemoryOpsHistoryManager.recordOne(&info, time.Now(), uint64(i), uint64(2*i)) + } + + checkResult := func(datums []types.Datum, i int) { + require.Equal(t, datums[1].GetString(), "SessionKill") + require.Equal(t, datums[2].GetInt64(), int64(i)) + require.Equal(t, datums[3].GetInt64(), int64(2*i)) + require.Equal(t, datums[4].GetInt64(), int64(i)) + require.Equal(t, datums[7].GetString(), strconv.Itoa(4*i)) + require.Equal(t, datums[8].GetString(), strconv.Itoa(2*i)) + require.Equal(t, datums[9].GetString(), strconv.Itoa(3*i)) + require.Equal(t, datums[10].GetString(), strconv.Itoa(5*i)) + require.Equal(t, datums[11].GetString(), strconv.Itoa(6*i)) + } + + rows := GlobalMemoryOpsHistoryManager.GetRows() + require.Equal(t, 3, len(rows)) + for i := 0; i < 3; i++ { + checkResult(rows[i], i) + } + // Test evict + for i := 3; i < 53; i++ { + genInfo(i) + GlobalMemoryOpsHistoryManager.recordOne(&info, time.Now(), uint64(i), uint64(2*i)) + } + rows = GlobalMemoryOpsHistoryManager.GetRows() + require.Equal(t, 50, len(rows)) + for i := 3; i < 53; i++ { + checkResult(rows[i-3], i) + } + require.Equal(t, GlobalMemoryOpsHistoryManager.offsets, 3) +} diff --git a/util/set/main_test.go b/util/set/main_test.go index 515b5d13fc265..59f224554513f 100644 --- a/util/set/main_test.go +++ b/util/set/main_test.go @@ -25,6 +25,7 @@ func TestMain(m *testing.M) { testsetup.SetupForCommonTest() opts := []goleak.Option{ goleak.IgnoreTopFunction("github.com/golang/glog.(*loggingT).flushDaemon"), + goleak.IgnoreTopFunction("github.com/lestrrat-go/httprc.runFetchWorker"), goleak.IgnoreTopFunction("go.etcd.io/etcd/client/pkg/v3/logutil.(*MergeLogger).outputLoop"), } goleak.VerifyTestMain(m, opts...) diff --git a/util/slice/main_test.go b/util/slice/main_test.go index cb09685762f55..3e886afa6be7b 100644 --- a/util/slice/main_test.go +++ b/util/slice/main_test.go @@ -25,6 +25,7 @@ func TestMain(m *testing.M) { testsetup.SetupForCommonTest() opts := []goleak.Option{ goleak.IgnoreTopFunction("github.com/golang/glog.(*loggingT).flushDaemon"), + goleak.IgnoreTopFunction("github.com/lestrrat-go/httprc.runFetchWorker"), goleak.IgnoreTopFunction("go.etcd.io/etcd/client/pkg/v3/logutil.(*MergeLogger).outputLoop"), } goleak.VerifyTestMain(m, opts...) diff --git a/util/sqlexec/main_test.go b/util/sqlexec/main_test.go index 4b62e457496cd..f6e80059c0bab 100644 --- a/util/sqlexec/main_test.go +++ b/util/sqlexec/main_test.go @@ -25,6 +25,7 @@ func TestMain(m *testing.M) { testsetup.SetupForCommonTest() opts := []goleak.Option{ goleak.IgnoreTopFunction("github.com/golang/glog.(*loggingT).flushDaemon"), + goleak.IgnoreTopFunction("github.com/lestrrat-go/httprc.runFetchWorker"), goleak.IgnoreTopFunction("go.etcd.io/etcd/client/pkg/v3/logutil.(*MergeLogger).outputLoop"), } goleak.VerifyTestMain(m, opts...) diff --git a/util/stmtsummary/main_test.go b/util/stmtsummary/main_test.go index 0b9a7e8d677f4..b2e92cd9a56ba 100644 --- a/util/stmtsummary/main_test.go +++ b/util/stmtsummary/main_test.go @@ -25,6 +25,7 @@ func TestMain(m *testing.M) { testsetup.SetupForCommonTest() opts := []goleak.Option{ goleak.IgnoreTopFunction("github.com/golang/glog.(*loggingT).flushDaemon"), + goleak.IgnoreTopFunction("github.com/lestrrat-go/httprc.runFetchWorker"), goleak.IgnoreTopFunction("go.etcd.io/etcd/client/pkg/v3/logutil.(*MergeLogger).outputLoop"), } goleak.VerifyTestMain(m, opts...) diff --git a/util/stringutil/main_test.go b/util/stringutil/main_test.go index 0ae6ce85d93ec..09b386feae213 100644 --- a/util/stringutil/main_test.go +++ b/util/stringutil/main_test.go @@ -25,6 +25,7 @@ func TestMain(m *testing.M) { testsetup.SetupForCommonTest() opts := []goleak.Option{ goleak.IgnoreTopFunction("github.com/golang/glog.(*loggingT).flushDaemon"), + goleak.IgnoreTopFunction("github.com/lestrrat-go/httprc.runFetchWorker"), goleak.IgnoreTopFunction("go.etcd.io/etcd/client/pkg/v3/logutil.(*MergeLogger).outputLoop"), } goleak.VerifyTestMain(m, opts...) diff --git a/util/sys/linux/main_test.go b/util/sys/linux/main_test.go index b021e636a64ed..88f9f2fdf24c3 100644 --- a/util/sys/linux/main_test.go +++ b/util/sys/linux/main_test.go @@ -25,6 +25,7 @@ func TestMain(m *testing.M) { testsetup.SetupForCommonTest() opts := []goleak.Option{ goleak.IgnoreTopFunction("github.com/golang/glog.(*loggingT).flushDaemon"), + goleak.IgnoreTopFunction("github.com/lestrrat-go/httprc.runFetchWorker"), goleak.IgnoreTopFunction("go.etcd.io/etcd/client/pkg/v3/logutil.(*MergeLogger).outputLoop"), } goleak.VerifyTestMain(m, opts...) diff --git a/util/sys/storage/main_test.go b/util/sys/storage/main_test.go index 7a24dde8259a0..ef6ea743450f3 100644 --- a/util/sys/storage/main_test.go +++ b/util/sys/storage/main_test.go @@ -25,6 +25,7 @@ func TestMain(m *testing.M) { testsetup.SetupForCommonTest() opts := []goleak.Option{ goleak.IgnoreTopFunction("github.com/golang/glog.(*loggingT).flushDaemon"), + goleak.IgnoreTopFunction("github.com/lestrrat-go/httprc.runFetchWorker"), goleak.IgnoreTopFunction("go.etcd.io/etcd/client/pkg/v3/logutil.(*MergeLogger).outputLoop"), } goleak.VerifyTestMain(m, opts...) diff --git a/util/systimemon/main_test.go b/util/systimemon/main_test.go index 7d9f1efd961c4..9539aca3a1096 100644 --- a/util/systimemon/main_test.go +++ b/util/systimemon/main_test.go @@ -26,6 +26,7 @@ func TestMain(m *testing.M) { opts := []goleak.Option{ goleak.IgnoreTopFunction("github.com/golang/glog.(*loggingT).flushDaemon"), + goleak.IgnoreTopFunction("github.com/lestrrat-go/httprc.runFetchWorker"), goleak.IgnoreTopFunction("github.com/pingcap/tidb/util/systimemon.StartMonitor"), } diff --git a/util/texttree/main_test.go b/util/texttree/main_test.go index 8516e5e769179..c73786745d798 100644 --- a/util/texttree/main_test.go +++ b/util/texttree/main_test.go @@ -25,6 +25,7 @@ func TestMain(m *testing.M) { testsetup.SetupForCommonTest() opts := []goleak.Option{ goleak.IgnoreTopFunction("github.com/golang/glog.(*loggingT).flushDaemon"), + goleak.IgnoreTopFunction("github.com/lestrrat-go/httprc.runFetchWorker"), goleak.IgnoreTopFunction("go.etcd.io/etcd/client/pkg/v3/logutil.(*MergeLogger).outputLoop"), } goleak.VerifyTestMain(m, opts...) diff --git a/util/timeutil/main_test.go b/util/timeutil/main_test.go index 2f09e2a8b84c6..add3ffbb50126 100644 --- a/util/timeutil/main_test.go +++ b/util/timeutil/main_test.go @@ -25,6 +25,7 @@ func TestMain(m *testing.M) { testsetup.SetupForCommonTest() opts := []goleak.Option{ goleak.IgnoreTopFunction("github.com/golang/glog.(*loggingT).flushDaemon"), + goleak.IgnoreTopFunction("github.com/lestrrat-go/httprc.runFetchWorker"), goleak.IgnoreTopFunction("go.etcd.io/etcd/client/pkg/v3/logutil.(*MergeLogger).outputLoop"), } goleak.VerifyTestMain(m, opts...) diff --git a/util/topsql/collector/main_test.go b/util/topsql/collector/main_test.go index 82eddcefd5a34..1177b5d4f9c16 100644 --- a/util/topsql/collector/main_test.go +++ b/util/topsql/collector/main_test.go @@ -31,6 +31,7 @@ func TestMain(m *testing.M) { testsetup.SetupForCommonTest() opts := []goleak.Option{ goleak.IgnoreTopFunction("github.com/golang/glog.(*loggingT).flushDaemon"), + goleak.IgnoreTopFunction("github.com/lestrrat-go/httprc.runFetchWorker"), goleak.IgnoreTopFunction("go.etcd.io/etcd/client/pkg/v3/logutil.(*MergeLogger).outputLoop"), } goleak.VerifyTestMain(m, opts...) diff --git a/util/topsql/main_test.go b/util/topsql/main_test.go index e5867303db32b..7317f50b2001b 100644 --- a/util/topsql/main_test.go +++ b/util/topsql/main_test.go @@ -25,6 +25,7 @@ func TestMain(m *testing.M) { testsetup.SetupForCommonTest() opts := []goleak.Option{ goleak.IgnoreTopFunction("github.com/golang/glog.(*loggingT).flushDaemon"), + goleak.IgnoreTopFunction("github.com/lestrrat-go/httprc.runFetchWorker"), goleak.IgnoreTopFunction("go.etcd.io/etcd/client/pkg/v3/logutil.(*MergeLogger).outputLoop"), } goleak.VerifyTestMain(m, opts...) diff --git a/util/topsql/reporter/main_test.go b/util/topsql/reporter/main_test.go index cc46791c945df..f5f17f44ac7a6 100644 --- a/util/topsql/reporter/main_test.go +++ b/util/topsql/reporter/main_test.go @@ -25,6 +25,7 @@ func TestMain(m *testing.M) { testsetup.SetupForCommonTest() opts := []goleak.Option{ goleak.IgnoreTopFunction("github.com/golang/glog.(*loggingT).flushDaemon"), + goleak.IgnoreTopFunction("github.com/lestrrat-go/httprc.runFetchWorker"), goleak.IgnoreTopFunction("go.etcd.io/etcd/client/pkg/v3/logutil.(*MergeLogger).outputLoop"), } goleak.VerifyTestMain(m, opts...) diff --git a/util/topsql/stmtstats/main_test.go b/util/topsql/stmtstats/main_test.go index c5d1ac3b50560..e75153cf9141f 100644 --- a/util/topsql/stmtstats/main_test.go +++ b/util/topsql/stmtstats/main_test.go @@ -25,6 +25,7 @@ func TestMain(m *testing.M) { testsetup.SetupForCommonTest() opts := []goleak.Option{ goleak.IgnoreTopFunction("github.com/golang/glog.(*loggingT).flushDaemon"), + goleak.IgnoreTopFunction("github.com/lestrrat-go/httprc.runFetchWorker"), goleak.IgnoreTopFunction("go.etcd.io/etcd/client/pkg/v3/logutil.(*MergeLogger).outputLoop"), } goleak.VerifyTestMain(m, opts...) diff --git a/util/tracing/main_test.go b/util/tracing/main_test.go index 207e2e1b7b8e8..02cf4faecadb9 100644 --- a/util/tracing/main_test.go +++ b/util/tracing/main_test.go @@ -25,6 +25,7 @@ func TestMain(m *testing.M) { testsetup.SetupForCommonTest() opts := []goleak.Option{ goleak.IgnoreTopFunction("github.com/golang/glog.(*loggingT).flushDaemon"), + goleak.IgnoreTopFunction("github.com/lestrrat-go/httprc.runFetchWorker"), goleak.IgnoreTopFunction("go.etcd.io/etcd/client/pkg/v3/logutil.(*MergeLogger).outputLoop"), } goleak.VerifyTestMain(m, opts...) diff --git a/util/util.go b/util/util.go index 485869adae2e3..8af2876240486 100644 --- a/util/util.go +++ b/util/util.go @@ -151,7 +151,7 @@ func GenLogFields(costTime time.Duration, info *ProcessInfo, needTruncateSQL boo logFields = append(logFields, zap.String("index_names", indexNames)) } logFields = append(logFields, zap.Uint64("txn_start_ts", info.CurTxnStartTS)) - if memTracker := info.StmtCtx.MemTracker; memTracker != nil { + if memTracker := info.MemTracker; memTracker != nil { logFields = append(logFields, zap.String("mem_max", fmt.Sprintf("%d Bytes (%v)", memTracker.MaxConsumed(), memTracker.FormatBytes(memTracker.MaxConsumed())))) } diff --git a/util/util_test.go b/util/util_test.go index 152d5fe3e651f..7eb06e1071073 100644 --- a/util/util_test.go +++ b/util/util_test.go @@ -38,10 +38,9 @@ func TestLogFormat(t *testing.T) { StatsInfo: func(interface{}) map[string]uint64 { return nil }, - StmtCtx: &stmtctx.StatementContext{ - MemTracker: mem, - }, - RedactSQL: false, + StmtCtx: &stmtctx.StatementContext{}, + MemTracker: mem, + RedactSQL: false, } costTime := time.Second * 233 logSQLTruncateLen := 1024 * 8 diff --git a/util/vitess/main_test.go b/util/vitess/main_test.go index 498274e846fcf..b5f91d4df1535 100644 --- a/util/vitess/main_test.go +++ b/util/vitess/main_test.go @@ -25,6 +25,7 @@ func TestMain(m *testing.M) { testsetup.SetupForCommonTest() opts := []goleak.Option{ goleak.IgnoreTopFunction("github.com/golang/glog.(*loggingT).flushDaemon"), + goleak.IgnoreTopFunction("github.com/lestrrat-go/httprc.runFetchWorker"), goleak.IgnoreTopFunction("go.etcd.io/etcd/client/pkg/v3/logutil.(*MergeLogger).outputLoop"), } goleak.VerifyTestMain(m, opts...) diff --git a/util/wait_group_wrapper.go b/util/wait_group_wrapper.go index 16c8704920a28..3fb72049f1365 100644 --- a/util/wait_group_wrapper.go +++ b/util/wait_group_wrapper.go @@ -43,7 +43,7 @@ func (w *WaitGroupWrapper) RunWithRecover(exec func(), recoverFn func(r interfac go func() { defer func() { r := recover() - if r != nil && recoverFn != nil { + if recoverFn != nil { recoverFn(r) } w.Done()